export type AuthScope = 'openid' | 'profile' | 'email'; export interface OpenIdProvider { clientId: string; authUrl: string; authScopes: AuthScope[]; configUrl: string; redirectUrl: string; }