From 91a0095f1020db60477fc0495baa98acf10cc74c Mon Sep 17 00:00:00 2001 From: chicoribas Date: Tue, 13 Jul 2021 11:34:45 -0300 Subject: [PATCH] Api Reporty Signed-off-by: chicoribas --- plugins/auth-backend/api-report.md | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) 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)