update api reports
Signed-off-by: headphonejames <generalfuzz@gmail.com>
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user