Skip to content

Commit 97194ae

Browse files
committed
Update API reports
1 parent 6660f98 commit 97194ae

File tree

1 file changed

+17
-11
lines changed

1 file changed

+17
-11
lines changed

common/api-review/auth.api.md

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -104,14 +104,14 @@ export class AuthCredential {
104104
protected constructor(
105105
providerId: string,
106106
signInMethod: string);
107-
// Warning: (ae-forgotten-export) The symbol "AuthInternal" needs to be exported by the entry point index.d.ts
108-
// Warning: (ae-forgotten-export) The symbol "PhoneOrOauthTokenResponse" needs to be exported by the entry point index.d.ts
107+
// Warning: (ae-forgotten-export) The symbol "AuthInternal" needs to be exported by the entry point index.doc.d.ts
108+
// Warning: (ae-forgotten-export) The symbol "PhoneOrOauthTokenResponse" needs to be exported by the entry point index.doc.d.ts
109109
//
110110
// @internal (undocumented)
111111
_getIdTokenResponse(_auth: AuthInternal): Promise<PhoneOrOauthTokenResponse>;
112112
// @internal (undocumented)
113113
_getReauthenticationResolver(_auth: AuthInternal): Promise<IdTokenResponse>;
114-
// Warning: (ae-forgotten-export) The symbol "IdTokenResponse" needs to be exported by the entry point index.d.ts
114+
// Warning: (ae-forgotten-export) The symbol "IdTokenResponse" needs to be exported by the entry point index.doc.d.ts
115115
//
116116
// @internal (undocumented)
117117
_linkToIdToken(_auth: AuthInternal, _idToken: string): Promise<IdTokenResponse>;
@@ -293,6 +293,9 @@ export function connectAuthEmulator(auth: Auth, url: string, options?: {
293293
disableWarnings: boolean;
294294
}): void;
295295

296+
// @public
297+
export const cordovaPopupRedirectResolver: PopupRedirectResolver;
298+
296299
// @public
297300
export function createUserWithEmailAndPassword(auth: Auth, email: string, password: string): Promise<UserCredential>;
298301

@@ -356,7 +359,7 @@ export interface EmulatorConfig {
356359

357360
export { ErrorFn }
358361

359-
// Warning: (ae-forgotten-export) The symbol "BaseOAuthProvider" needs to be exported by the entry point index.d.ts
362+
// Warning: (ae-forgotten-export) The symbol "BaseOAuthProvider" needs to be exported by the entry point index.doc.d.ts
360363
//
361364
// @public
362365
export class FacebookAuthProvider extends BaseOAuthProvider {
@@ -392,6 +395,9 @@ export function getIdTokenResult(user: User, forceRefresh?: boolean): Promise<Id
392395
// @public
393396
export function getMultiFactorResolver(auth: Auth, error: MultiFactorError): MultiFactorResolver;
394397

398+
// @public
399+
export function getReactNativePersistence(storage: ReactNativeAsyncStorage): Persistence;
400+
395401
// @public
396402
export function getRedirectResult(auth: Auth, resolver?: PopupRedirectResolver): Promise<UserCredential | null>;
397403

@@ -504,7 +510,7 @@ export type NextOrObserver<T> = NextFn<T | null> | Observer<T | null>;
504510
export class OAuthCredential extends AuthCredential {
505511
accessToken?: string;
506512
static fromJSON(json: string | object): OAuthCredential | null;
507-
// Warning: (ae-forgotten-export) The symbol "OAuthCredentialParams" needs to be exported by the entry point index.d.ts
513+
// Warning: (ae-forgotten-export) The symbol "OAuthCredentialParams" needs to be exported by the entry point index.doc.d.ts
508514
//
509515
// @internal (undocumented)
510516
static _fromParams(params: OAuthCredentialParams): OAuthCredential;
@@ -609,7 +615,7 @@ export class PhoneAuthCredential extends AuthCredential {
609615
_getReauthenticationResolver(auth: AuthInternal): Promise<IdTokenResponse>;
610616
// @internal (undocumented)
611617
_linkToIdToken(auth: AuthInternal, idToken: string): Promise<IdTokenResponse>;
612-
// Warning: (ae-forgotten-export) The symbol "SignInWithPhoneNumberRequest" needs to be exported by the entry point index.d.ts
618+
// Warning: (ae-forgotten-export) The symbol "SignInWithPhoneNumberRequest" needs to be exported by the entry point index.doc.d.ts
613619
//
614620
// @internal (undocumented)
615621
_makeVerificationRequest(): SignInWithPhoneNumberRequest;
@@ -706,13 +712,13 @@ export interface RecaptchaParameters {
706712
[key: string]: any;
707713
}
708714

709-
// Warning: (ae-forgotten-export) The symbol "ApplicationVerifierInternal" needs to be exported by the entry point index.d.ts
715+
// Warning: (ae-forgotten-export) The symbol "ApplicationVerifierInternal" needs to be exported by the entry point index.doc.d.ts
710716
//
711717
// @public
712718
export class RecaptchaVerifier implements ApplicationVerifierInternal {
713719
constructor(authExtern: Auth, containerOrId: HTMLElement | string, parameters?: RecaptchaParameters);
714720
clear(): void;
715-
// Warning: (ae-forgotten-export) The symbol "ReCaptchaLoader" needs to be exported by the entry point index.d.ts
721+
// Warning: (ae-forgotten-export) The symbol "ReCaptchaLoader" needs to be exported by the entry point index.doc.d.ts
716722
//
717723
// @internal (undocumented)
718724
readonly _recaptchaLoader: ReCaptchaLoader;
@@ -729,7 +735,7 @@ export function reload(user: User): Promise<void>;
729735
// @public
730736
export function revokeAccessToken(auth: Auth, token: string): Promise<void>;
731737

732-
// Warning: (ae-forgotten-export) The symbol "FederatedAuthProvider" needs to be exported by the entry point index.d.ts
738+
// Warning: (ae-forgotten-export) The symbol "FederatedAuthProvider" needs to be exported by the entry point index.doc.d.ts
733739
//
734740
// @public
735741
export class SAMLAuthProvider extends FederatedAuthProvider {
@@ -810,13 +816,13 @@ export class TotpSecret {
810816
readonly codeIntervalSeconds: number;
811817
readonly codeLength: number;
812818
readonly enrollmentCompletionDeadline: string;
813-
// Warning: (ae-forgotten-export) The symbol "StartTotpMfaEnrollmentResponse" needs to be exported by the entry point index.d.ts
819+
// Warning: (ae-forgotten-export) The symbol "StartTotpMfaEnrollmentResponse" needs to be exported by the entry point index.doc.d.ts
814820
//
815821
// @internal (undocumented)
816822
static _fromStartTotpMfaEnrollmentResponse(response: StartTotpMfaEnrollmentResponse, auth: AuthInternal): TotpSecret;
817823
generateQrCodeUrl(accountName?: string, issuer?: string): string;
818824
readonly hashingAlgorithm: string;
819-
// Warning: (ae-forgotten-export) The symbol "TotpVerificationInfo" needs to be exported by the entry point index.d.ts
825+
// Warning: (ae-forgotten-export) The symbol "TotpVerificationInfo" needs to be exported by the entry point index.doc.d.ts
820826
//
821827
// @internal (undocumented)
822828
_makeTotpVerificationInfo(otp: string): TotpVerificationInfo;

0 commit comments

Comments
 (0)