From 3ae55c4a8d9a057233b7f8cc1e87dd9123697595 Mon Sep 17 00:00:00 2001 From: headphonejames Date: Tue, 21 Feb 2023 19:48:35 -0800 Subject: [PATCH] api reports Signed-off-by: headphonejames --- packages/core-app-api/api-report.md | 2 ++ packages/core-plugin-api/api-report.md | 2 ++ plugins/auth-backend/api-report.md | 5 ++--- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/packages/core-app-api/api-report.md b/packages/core-app-api/api-report.md index d0890bfca8..f8d5a99cd6 100644 --- a/packages/core-app-api/api-report.md +++ b/packages/core-app-api/api-report.md @@ -545,7 +545,9 @@ export class SamlAuth // @public export type SignInPageProps = { + onSignInStarted(): void; onSignInSuccess(identityApi: IdentityApi): void; + onSignInFailure(): void; }; // @public diff --git a/packages/core-plugin-api/api-report.md b/packages/core-plugin-api/api-report.md index d5f9bcbc60..17278d4cc5 100644 --- a/packages/core-plugin-api/api-report.md +++ b/packages/core-plugin-api/api-report.md @@ -695,7 +695,9 @@ export enum SessionState { // @public export type SignInPageProps = { + onSignInStarted(): void; onSignInSuccess(identityApi: IdentityApi_2): void; + onSignInFailure(): void; }; // @public diff --git a/plugins/auth-backend/api-report.md b/plugins/auth-backend/api-report.md index 68852626a9..5caea64b33 100644 --- a/plugins/auth-backend/api-report.md +++ b/plugins/auth-backend/api-report.md @@ -268,7 +268,7 @@ export class OAuthAdapter implements AuthProviderRouteHandlers { handlers: OAuthHandlers, options: Pick< OAuthAdapterOptions, - 'providerId' | 'persistScopes' | 'callbackUrl' | 'redirectUrl' + 'providerId' | 'persistScopes' | 'callbackUrl' >, ): OAuthAdapter; // (undocumented) @@ -284,7 +284,6 @@ export type OAuthAdapterOptions = { providerId: string; persistScopes?: boolean; appOrigin: string; - redirectUrl?: string; baseUrl: string; cookieConfigurer: CookieConfigurer; isOriginAllowed: (origin: string) => boolean; @@ -387,7 +386,7 @@ export type OAuthState = { origin?: string; scope?: string; redirectUrl?: string; - authFlow?: string; + flow?: string; }; // @public