update api reports

Signed-off-by: headphonejames <generalfuzz@gmail.com>
This commit is contained in:
headphonejames
2023-02-03 13:35:28 -08:00
parent 167f457803
commit 564de00947
3 changed files with 7 additions and 11 deletions
+4 -2
View File
@@ -263,7 +263,7 @@ export type AuthApiCreateOptions = {
discoveryApi: DiscoveryApi;
environment?: string;
provider?: AuthProviderInfo;
usePopup?: boolean;
authFlow?: string;
};
// @public
@@ -492,6 +492,8 @@ export type OAuthApiCreateOptions = AuthApiCreateOptions & {
// @public
export class OAuthRequestManager implements OAuthRequestApi {
// (undocumented)
authFlow(): string;
// (undocumented)
authRequest$(): Observable<PendingOAuthRequest[]>;
// (undocumented)
@@ -517,7 +519,7 @@ export type OneLoginAuthCreateOptions = {
discoveryApi: DiscoveryApi;
oauthRequestApi: OAuthRequestApi;
environment?: string;
usePopup?: boolean;
authFlow?: string;
provider?: AuthProviderInfo;
};
+2 -1
View File
@@ -193,7 +193,6 @@ export type AuthProviderInfo = {
id: string;
title: string;
icon: IconComponent;
provider_id?: string;
};
// @public
@@ -549,6 +548,7 @@ export type OAuthRequestApi = {
options: OAuthRequesterOptions<OAuthResponse>,
): OAuthRequester<OAuthResponse>;
authRequest$(): Observable<PendingOAuthRequest[]>;
authFlow(): string;
};
// @public
@@ -563,6 +563,7 @@ export type OAuthRequester<TAuthResponse> = (
export type OAuthRequesterOptions<TOAuthResponse> = {
provider: AuthProviderInfo;
onAuthRequest(scopes: Set<string>): Promise<TOAuthResponse>;
authFlow: string;
};
// @public
+1 -8
View File
@@ -41,7 +41,6 @@ export type AuthProviderConfig = {
appUrl: string;
isOriginAllowed: (origin: string) => boolean;
cookieConfigurer?: CookieConfigurer;
isPopupAuthenticationRequest: boolean;
};
// @public (undocumented)
@@ -290,7 +289,6 @@ export type OAuthAdapterOptions = {
cookieConfigurer: CookieConfigurer;
isOriginAllowed: (origin: string) => boolean;
callbackUrl: string;
isPopupAuthenticationRequest: boolean;
};
// @public (undocumented)
@@ -389,6 +387,7 @@ export type OAuthState = {
origin?: string;
scope?: string;
redirectUrl?: string;
authFlow?: string;
};
// @public
@@ -671,12 +670,6 @@ export const providers: Readonly<{
// @public (undocumented)
export const readState: (stateString: string) => OAuthState;
// @public (undocumented)
export const redirectMessageResponse: (
res: express.Response,
redirectUrl: string,
) => void;
// @public (undocumented)
export interface RouterOptions {
// (undocumented)