Skip to content

Commit 26b8d00

Browse files
committed
rever md
1 parent c2d6596 commit 26b8d00

File tree

1 file changed

+9
-18
lines changed

1 file changed

+9
-18
lines changed

common/api-review/auth.api.md

+9-18
Original file line numberDiff line numberDiff line change
@@ -103,14 +103,14 @@ export class AuthCredential {
103103
protected constructor(
104104
providerId: string,
105105
signInMethod: string);
106-
// Warning: (ae-forgotten-export) The symbol "AuthInternal" needs to be exported by the entry point index.doc.d.ts
107-
// Warning: (ae-forgotten-export) The symbol "PhoneOrOauthTokenResponse" needs to be exported by the entry point index.doc.d.ts
106+
// Warning: (ae-forgotten-export) The symbol "AuthInternal" needs to be exported by the entry point index.d.ts
107+
// Warning: (ae-forgotten-export) The symbol "PhoneOrOauthTokenResponse" needs to be exported by the entry point index.d.ts
108108
//
109109
// @internal (undocumented)
110110
_getIdTokenResponse(_auth: AuthInternal): Promise<PhoneOrOauthTokenResponse>;
111111
// @internal (undocumented)
112112
_getReauthenticationResolver(_auth: AuthInternal): Promise<IdTokenResponse>;
113-
// Warning: (ae-forgotten-export) The symbol "IdTokenResponse" needs to be exported by the entry point index.doc.d.ts
113+
// Warning: (ae-forgotten-export) The symbol "IdTokenResponse" needs to be exported by the entry point index.d.ts
114114
//
115115
// @internal (undocumented)
116116
_linkToIdToken(_auth: AuthInternal, _idToken: string): Promise<IdTokenResponse>;
@@ -283,9 +283,6 @@ export function connectAuthEmulator(auth: Auth, url: string, options?: {
283283
disableWarnings: boolean;
284284
}): void;
285285

286-
// @public
287-
export const cordovaPopupRedirectResolver: PopupRedirectResolver;
288-
289286
// @public
290287
export function createUserWithEmailAndPassword(auth: Auth, email: string, password: string): Promise<UserCredential>;
291288

@@ -349,7 +346,7 @@ export interface EmulatorConfig {
349346

350347
export { ErrorFn }
351348

352-
// Warning: (ae-forgotten-export) The symbol "BaseOAuthProvider" needs to be exported by the entry point index.doc.d.ts
349+
// Warning: (ae-forgotten-export) The symbol "BaseOAuthProvider" needs to be exported by the entry point index.d.ts
353350
//
354351
// @public
355352
export class FacebookAuthProvider extends BaseOAuthProvider {
@@ -384,9 +381,6 @@ export function getIdTokenResult(user: User, forceRefresh?: boolean): Promise<Id
384381
// @public
385382
export function getMultiFactorResolver(auth: Auth, error: MultiFactorError): MultiFactorResolver;
386383

387-
// @public
388-
export function getReactNativePersistence(storage: ReactNativeAsyncStorage): Persistence;
389-
390384
// @public
391385
export function getRedirectResult(auth: Auth, resolver?: PopupRedirectResolver): Promise<UserCredential | null>;
392386

@@ -496,7 +490,7 @@ export type NextOrObserver<T> = NextFn<T | null> | Observer<T | null>;
496490
export class OAuthCredential extends AuthCredential {
497491
accessToken?: string;
498492
static fromJSON(json: string | object): OAuthCredential | null;
499-
// Warning: (ae-forgotten-export) The symbol "OAuthCredentialParams" needs to be exported by the entry point index.doc.d.ts
493+
// Warning: (ae-forgotten-export) The symbol "OAuthCredentialParams" needs to be exported by the entry point index.d.ts
500494
//
501495
// @internal (undocumented)
502496
static _fromParams(params: OAuthCredentialParams): OAuthCredential;
@@ -574,7 +568,7 @@ export class PhoneAuthCredential extends AuthCredential {
574568
_getReauthenticationResolver(auth: AuthInternal): Promise<IdTokenResponse>;
575569
// @internal (undocumented)
576570
_linkToIdToken(auth: AuthInternal, idToken: string): Promise<IdTokenResponse>;
577-
// Warning: (ae-forgotten-export) The symbol "SignInWithPhoneNumberRequest" needs to be exported by the entry point index.doc.d.ts
571+
// Warning: (ae-forgotten-export) The symbol "SignInWithPhoneNumberRequest" needs to be exported by the entry point index.d.ts
578572
//
579573
// @internal (undocumented)
580574
_makeVerificationRequest(): SignInWithPhoneNumberRequest;
@@ -653,9 +647,6 @@ export interface ReactNativeAsyncStorage {
653647
setItem(key: string, value: string): Promise<void>;
654648
}
655649

656-
// @public
657-
export const reactNativeLocalPersistence: Persistence;
658-
659650
// @public
660651
export function reauthenticateWithCredential(user: User, credential: AuthCredential): Promise<UserCredential>;
661652

@@ -674,13 +665,13 @@ export interface RecaptchaParameters {
674665
[key: string]: any;
675666
}
676667

677-
// Warning: (ae-forgotten-export) The symbol "ApplicationVerifierInternal" needs to be exported by the entry point index.doc.d.ts
668+
// Warning: (ae-forgotten-export) The symbol "ApplicationVerifierInternal" needs to be exported by the entry point index.d.ts
678669
//
679670
// @public
680671
export class RecaptchaVerifier implements ApplicationVerifierInternal {
681672
constructor(containerOrId: HTMLElement | string, parameters: RecaptchaParameters, authExtern: Auth);
682673
clear(): void;
683-
// Warning: (ae-forgotten-export) The symbol "ReCaptchaLoader" needs to be exported by the entry point index.doc.d.ts
674+
// Warning: (ae-forgotten-export) The symbol "ReCaptchaLoader" needs to be exported by the entry point index.d.ts
684675
//
685676
// @internal (undocumented)
686677
readonly _recaptchaLoader: ReCaptchaLoader;
@@ -694,7 +685,7 @@ export class RecaptchaVerifier implements ApplicationVerifierInternal {
694685
// @public
695686
export function reload(user: User): Promise<void>;
696687

697-
// Warning: (ae-forgotten-export) The symbol "FederatedAuthProvider" needs to be exported by the entry point index.doc.d.ts
688+
// Warning: (ae-forgotten-export) The symbol "FederatedAuthProvider" needs to be exported by the entry point index.d.ts
698689
//
699690
// @public
700691
export class SAMLAuthProvider extends FederatedAuthProvider {

0 commit comments

Comments
 (0)