Fix Api Report

Signed-off-by: Alex Crome <afscrome@users.noreply.github.com>
This commit is contained in:
Alex Crome
2023-03-27 00:53:19 +01:00
parent a0ef1ec734
commit 7019734333
4 changed files with 22 additions and 1 deletions
+19
View File
@@ -229,6 +229,12 @@ export const defaultAuthProviderFactories: {
[providerId: string]: AuthProviderFactory;
};
// @public (undocumented)
export type EasyAuthResult = {
fullProfile: Profile;
accessToken?: string;
};
// @public (undocumented)
export const encodeState: (state: OAuthState) => string;
@@ -694,6 +700,19 @@ export const providers: Readonly<{
nameIdMatchingUserEntityName(): SignInResolver<SamlAuthResult>;
}>;
}>;
easyAuth: Readonly<{
create: (
options?:
| {
authHandler?: AuthHandler<EasyAuthResult> | undefined;
signIn: {
resolver: SignInResolver<EasyAuthResult>;
};
}
| undefined,
) => AuthProviderFactory;
resolvers: never;
}>;
}>;
// @public (undocumented)
@@ -15,4 +15,4 @@
*/
export { easyAuth } from './provider';
export type { EasyAuthResponse } from './provider';
export type { EasyAuthResult } from './provider';
@@ -38,6 +38,7 @@ type Options = {
resolverContext: AuthResolverContext;
};
/** @public */
export type EasyAuthResult = {
fullProfile: Profile;
accessToken?: string;
@@ -15,6 +15,7 @@
*/
export type { AwsAlbResult } from './aws-alb';
export type { EasyAuthResult } from './azure-easyauth';
export type {
BitbucketOAuthResult,
BitbucketPassportProfile,