| 5 | */ |
| 6 | |
| 7 | export interface DispatchAuthConfig { |
| 8 | /** |
| 9 | * When true, only Google OAuth is shown on the login screen and other |
| 10 | * providers are hidden. Used by Builder's own workspace, which enforces |
| 11 | * Google SSO for its org. |
| 12 | */ |
| 13 | googleOnly?: boolean; |
| 14 | /** Marketing/branding copy passed straight through to `createAuthPlugin`. */ |
| 15 | marketing?: Record<string, unknown>; |
| 16 | } |
| 17 | |
| 18 | export interface DispatchIntegrationsConfig { |
| 19 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected