diff --git a/plugins/auth-backend/api-report.md b/plugins/auth-backend/api-report.md index e2ee1a6352..50341c0392 100644 --- a/plugins/auth-backend/api-report.md +++ b/plugins/auth-backend/api-report.md @@ -60,10 +60,18 @@ export const createGoogleProvider: ( ) => AuthProviderFactory; // @public (undocumented) -export const createMicrosoftProvider: (options?: MicrosoftProviderOptions | undefined) => AuthProviderFactory; +export const createMicrosoftProvider: ( + options?: MicrosoftProviderOptions | undefined, +) => AuthProviderFactory; // @public (undocumented) -export function createRouter({ logger, config, discovery, database, providerFactories, }: RouterOptions): Promise; +export function createRouter({ + logger, + config, + discovery, + database, + providerFactories, +}: RouterOptions): Promise; // @public (undocumented) export const defaultAuthProviderFactories: { @@ -104,10 +112,10 @@ export const microsoftEmailSignInResolver: SignInResolver; // @public (undocumented) export type MicrosoftProviderOptions = { - authHandler?: AuthHandler; - signIn?: { - resolver?: SignInResolver; - }; + authHandler?: AuthHandler; + signIn?: { + resolver?: SignInResolver; + }; }; // @public (undocumented)