Skip to content

Commit f45096e

Browse files
committed
Merge branch 'dataconnect' of https://github.com/firebase/firebase-js-sdk into dataconnect
2 parents b482715 + 86456bd commit f45096e

File tree

2 files changed

+11
-31
lines changed

2 files changed

+11
-31
lines changed

common/api-review/auth.api.md

Lines changed: 11 additions & 17 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.doc.d.ts
108-
// Warning: (ae-forgotten-export) The symbol "PhoneOrOauthTokenResponse" needs to be exported by the entry point index.doc.d.ts
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
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.doc.d.ts
114+
// Warning: (ae-forgotten-export) The symbol "IdTokenResponse" needs to be exported by the entry point index.d.ts
115115
//
116116
// @internal (undocumented)
117117
_linkToIdToken(_auth: AuthInternal, _idToken: string): Promise<IdTokenResponse>;
@@ -293,9 +293,6 @@ export function connectAuthEmulator(auth: Auth, url: string, options?: {
293293
disableWarnings: boolean;
294294
}): void;
295295

296-
// @public
297-
export const cordovaPopupRedirectResolver: PopupRedirectResolver;
298-
299296
// @public
300297
export function createUserWithEmailAndPassword(auth: Auth, email: string, password: string): Promise<UserCredential>;
301298

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

360357
export { ErrorFn }
361358

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

398-
// @public
399-
export function getReactNativePersistence(storage: ReactNativeAsyncStorage): Persistence;
400-
401395
// @public
402396
export function getRedirectResult(auth: Auth, resolver?: PopupRedirectResolver): Promise<UserCredential | null>;
403397

@@ -510,7 +504,7 @@ export type NextOrObserver<T> = NextFn<T | null> | Observer<T | null>;
510504
export class OAuthCredential extends AuthCredential {
511505
accessToken?: string;
512506
static fromJSON(json: string | object): OAuthCredential | null;
513-
// Warning: (ae-forgotten-export) The symbol "OAuthCredentialParams" needs to be exported by the entry point index.doc.d.ts
507+
// Warning: (ae-forgotten-export) The symbol "OAuthCredentialParams" needs to be exported by the entry point index.d.ts
514508
//
515509
// @internal (undocumented)
516510
static _fromParams(params: OAuthCredentialParams): OAuthCredential;
@@ -615,7 +609,7 @@ export class PhoneAuthCredential extends AuthCredential {
615609
_getReauthenticationResolver(auth: AuthInternal): Promise<IdTokenResponse>;
616610
// @internal (undocumented)
617611
_linkToIdToken(auth: AuthInternal, idToken: string): Promise<IdTokenResponse>;
618-
// Warning: (ae-forgotten-export) The symbol "SignInWithPhoneNumberRequest" needs to be exported by the entry point index.doc.d.ts
612+
// Warning: (ae-forgotten-export) The symbol "SignInWithPhoneNumberRequest" needs to be exported by the entry point index.d.ts
619613
//
620614
// @internal (undocumented)
621615
_makeVerificationRequest(): SignInWithPhoneNumberRequest;
@@ -712,13 +706,13 @@ export interface RecaptchaParameters {
712706
[key: string]: any;
713707
}
714708

715-
// Warning: (ae-forgotten-export) The symbol "ApplicationVerifierInternal" needs to be exported by the entry point index.doc.d.ts
709+
// Warning: (ae-forgotten-export) The symbol "ApplicationVerifierInternal" needs to be exported by the entry point index.d.ts
716710
//
717711
// @public
718712
export class RecaptchaVerifier implements ApplicationVerifierInternal {
719713
constructor(authExtern: Auth, containerOrId: HTMLElement | string, parameters?: RecaptchaParameters);
720714
clear(): void;
721-
// Warning: (ae-forgotten-export) The symbol "ReCaptchaLoader" needs to be exported by the entry point index.doc.d.ts
715+
// Warning: (ae-forgotten-export) The symbol "ReCaptchaLoader" needs to be exported by the entry point index.d.ts
722716
//
723717
// @internal (undocumented)
724718
readonly _recaptchaLoader: ReCaptchaLoader;
@@ -735,7 +729,7 @@ export function reload(user: User): Promise<void>;
735729
// @public
736730
export function revokeAccessToken(auth: Auth, token: string): Promise<void>;
737731

738-
// Warning: (ae-forgotten-export) The symbol "FederatedAuthProvider" needs to be exported by the entry point index.doc.d.ts
732+
// Warning: (ae-forgotten-export) The symbol "FederatedAuthProvider" needs to be exported by the entry point index.d.ts
739733
//
740734
// @public
741735
export class SAMLAuthProvider extends FederatedAuthProvider {
@@ -816,13 +810,13 @@ export class TotpSecret {
816810
readonly codeIntervalSeconds: number;
817811
readonly codeLength: number;
818812
readonly enrollmentCompletionDeadline: string;
819-
// Warning: (ae-forgotten-export) The symbol "StartTotpMfaEnrollmentResponse" needs to be exported by the entry point index.doc.d.ts
813+
// Warning: (ae-forgotten-export) The symbol "StartTotpMfaEnrollmentResponse" needs to be exported by the entry point index.d.ts
820814
//
821815
// @internal (undocumented)
822816
static _fromStartTotpMfaEnrollmentResponse(response: StartTotpMfaEnrollmentResponse, auth: AuthInternal): TotpSecret;
823817
generateQrCodeUrl(accountName?: string, issuer?: string): string;
824818
readonly hashingAlgorithm: string;
825-
// Warning: (ae-forgotten-export) The symbol "TotpVerificationInfo" needs to be exported by the entry point index.doc.d.ts
819+
// Warning: (ae-forgotten-export) The symbol "TotpVerificationInfo" needs to be exported by the entry point index.d.ts
826820
//
827821
// @internal (undocumented)
828822
_makeTotpVerificationInfo(otp: string): TotpVerificationInfo;

common/api-review/util.api.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -189,20 +189,6 @@ export type ExperimentalKey = 'authTokenSyncURL' | 'authIdTokenMaxAge';
189189
// @public
190190
export function extractQuerystring(url: string): string;
191191

192-
// Warning: (ae-missing-release-tag) "FetchProvider" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
193-
//
194-
// @public
195-
export class FetchProvider {
196-
// (undocumented)
197-
static fetch(): typeof fetch;
198-
// (undocumented)
199-
static headers(): typeof Headers;
200-
// (undocumented)
201-
static initialize(fetchImpl: typeof fetch, headersImpl?: typeof Headers, responseImpl?: typeof Response): void;
202-
// (undocumented)
203-
static response(): typeof Response;
204-
}
205-
206192
// @public
207193
export interface FirebaseDefaults {
208194
// (undocumented)

0 commit comments

Comments
 (0)