Skip to content

Commit bd6dcba

Browse files
committed
Update API reports
1 parent 137908f commit bd6dcba

File tree

1 file changed

+9
-15
lines changed

1 file changed

+9
-15
lines changed

common/api-review/auth.api.md

Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -101,14 +101,14 @@ export class AuthCredential {
101101
protected constructor(
102102
providerId: string,
103103
signInMethod: string);
104-
// Warning: (ae-forgotten-export) The symbol "AuthInternal" needs to be exported by the entry point index.doc.d.ts
105-
// Warning: (ae-forgotten-export) The symbol "PhoneOrOauthTokenResponse" needs to be exported by the entry point index.doc.d.ts
104+
// Warning: (ae-forgotten-export) The symbol "AuthInternal" needs to be exported by the entry point index.d.ts
105+
// Warning: (ae-forgotten-export) The symbol "PhoneOrOauthTokenResponse" needs to be exported by the entry point index.d.ts
106106
//
107107
// @internal (undocumented)
108108
_getIdTokenResponse(_auth: AuthInternal): Promise<PhoneOrOauthTokenResponse>;
109109
// @internal (undocumented)
110110
_getReauthenticationResolver(_auth: AuthInternal): Promise<IdTokenResponse>;
111-
// Warning: (ae-forgotten-export) The symbol "IdTokenResponse" needs to be exported by the entry point index.doc.d.ts
111+
// Warning: (ae-forgotten-export) The symbol "IdTokenResponse" needs to be exported by the entry point index.d.ts
112112
//
113113
// @internal (undocumented)
114114
_linkToIdToken(_auth: AuthInternal, _idToken: string): Promise<IdTokenResponse>;
@@ -276,9 +276,6 @@ export function connectAuthEmulator(auth: Auth, url: string, options?: {
276276
disableWarnings: boolean;
277277
}): void;
278278

279-
// @public
280-
export const cordovaPopupRedirectResolver: PopupRedirectResolver;
281-
282279
// @public
283280
export function createUserWithEmailAndPassword(auth: Auth, email: string, password: string): Promise<UserCredential>;
284281

@@ -342,7 +339,7 @@ export interface EmulatorConfig {
342339

343340
export { ErrorFn }
344341

345-
// Warning: (ae-forgotten-export) The symbol "BaseOAuthProvider" needs to be exported by the entry point index.doc.d.ts
342+
// Warning: (ae-forgotten-export) The symbol "BaseOAuthProvider" needs to be exported by the entry point index.d.ts
346343
//
347344
// @public
348345
export class FacebookAuthProvider extends BaseOAuthProvider {
@@ -484,7 +481,7 @@ export type NextOrObserver<T> = NextFn<T | null> | Observer<T | null>;
484481
export class OAuthCredential extends AuthCredential {
485482
accessToken?: string;
486483
static fromJSON(json: string | object): OAuthCredential | null;
487-
// Warning: (ae-forgotten-export) The symbol "OAuthCredentialParams" needs to be exported by the entry point index.doc.d.ts
484+
// Warning: (ae-forgotten-export) The symbol "OAuthCredentialParams" needs to be exported by the entry point index.d.ts
488485
//
489486
// @internal (undocumented)
490487
static _fromParams(params: OAuthCredentialParams): OAuthCredential;
@@ -563,7 +560,7 @@ export class PhoneAuthCredential extends AuthCredential {
563560
_getReauthenticationResolver(auth: AuthInternal): Promise<IdTokenResponse>;
564561
// @internal (undocumented)
565562
_linkToIdToken(auth: AuthInternal, idToken: string): Promise<IdTokenResponse>;
566-
// Warning: (ae-forgotten-export) The symbol "SignInWithPhoneNumberRequest" needs to be exported by the entry point index.doc.d.ts
563+
// Warning: (ae-forgotten-export) The symbol "SignInWithPhoneNumberRequest" needs to be exported by the entry point index.d.ts
567564
//
568565
// @internal (undocumented)
569566
_makeVerificationRequest(): SignInWithPhoneNumberRequest;
@@ -636,9 +633,6 @@ export interface ReactNativeAsyncStorage {
636633
setItem(key: string, value: string): Promise<void>;
637634
}
638635

639-
// @public
640-
export const reactNativeLocalPersistence: Persistence;
641-
642636
// @public
643637
export function reauthenticateWithCredential(user: User, credential: AuthCredential): Promise<UserCredential>;
644638

@@ -657,13 +651,13 @@ export interface RecaptchaParameters {
657651
[key: string]: any;
658652
}
659653

660-
// Warning: (ae-forgotten-export) The symbol "ApplicationVerifierInternal" needs to be exported by the entry point index.doc.d.ts
654+
// Warning: (ae-forgotten-export) The symbol "ApplicationVerifierInternal" needs to be exported by the entry point index.d.ts
661655
//
662656
// @public
663657
export class RecaptchaVerifier implements ApplicationVerifierInternal {
664658
constructor(containerOrId: HTMLElement | string, parameters: RecaptchaParameters, authExtern: Auth);
665659
clear(): void;
666-
// Warning: (ae-forgotten-export) The symbol "ReCaptchaLoader" needs to be exported by the entry point index.doc.d.ts
660+
// Warning: (ae-forgotten-export) The symbol "ReCaptchaLoader" needs to be exported by the entry point index.d.ts
667661
//
668662
// @internal (undocumented)
669663
readonly _recaptchaLoader: ReCaptchaLoader;
@@ -677,7 +671,7 @@ export class RecaptchaVerifier implements ApplicationVerifierInternal {
677671
// @public
678672
export function reload(user: User): Promise<void>;
679673

680-
// Warning: (ae-forgotten-export) The symbol "FederatedAuthProvider" needs to be exported by the entry point index.doc.d.ts
674+
// Warning: (ae-forgotten-export) The symbol "FederatedAuthProvider" needs to be exported by the entry point index.d.ts
681675
//
682676
// @public
683677
export class SAMLAuthProvider extends FederatedAuthProvider {

0 commit comments

Comments
 (0)