api reports

Signed-off-by: headphonejames <generalfuzz@gmail.com>
This commit is contained in:
headphonejames
2023-02-21 19:48:35 -08:00
parent 0354c9fb0d
commit 3ae55c4a8d
3 changed files with 6 additions and 3 deletions
+2
View File
@@ -545,7 +545,9 @@ export class SamlAuth
// @public
export type SignInPageProps = {
onSignInStarted(): void;
onSignInSuccess(identityApi: IdentityApi): void;
onSignInFailure(): void;
};
// @public
+2
View File
@@ -695,7 +695,9 @@ export enum SessionState {
// @public
export type SignInPageProps = {
onSignInStarted(): void;
onSignInSuccess(identityApi: IdentityApi_2): void;
onSignInFailure(): void;
};
// @public
+2 -3
View File
@@ -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