@firebase/auth 0.21.1-canary.68369740a → 0.21.1-canary.f8ddadba9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/dist/auth-public.d.ts +6 -3
  2. package/dist/auth.d.ts +6 -3
  3. package/dist/cordova/index.js +2 -2
  4. package/dist/cordova/internal.js +2 -2
  5. package/dist/cordova/{popup_redirect-616e0b14.js → popup_redirect-b7790bbf.js} +8 -5
  6. package/dist/cordova/{popup_redirect-616e0b14.js.map → popup_redirect-b7790bbf.js.map} +1 -1
  7. package/dist/cordova/src/platform_browser/strategies/redirect.d.ts +6 -3
  8. package/dist/esm2017/{index-af761b12.js → index-3e2d663e.js} +8 -5
  9. package/dist/esm2017/{index-af761b12.js.map → index-3e2d663e.js.map} +1 -1
  10. package/dist/esm2017/index.js +1 -1
  11. package/dist/esm2017/internal.js +2 -2
  12. package/dist/esm2017/src/platform_browser/strategies/redirect.d.ts +6 -3
  13. package/dist/esm5/{index-4e4377a9.js → index-3f3665b5.js} +8 -5
  14. package/dist/esm5/{index-4e4377a9.js.map → index-3f3665b5.js.map} +1 -1
  15. package/dist/esm5/index.js +1 -1
  16. package/dist/esm5/internal.js +2 -2
  17. package/dist/esm5/src/platform_browser/strategies/redirect.d.ts +6 -3
  18. package/dist/index.webworker.esm5.js +1 -1
  19. package/dist/node/{index-edd1794a.js → index-4edf5696.js} +2 -2
  20. package/dist/node/{index-edd1794a.js.map → index-4edf5696.js.map} +1 -1
  21. package/dist/node/index.js +1 -1
  22. package/dist/node/internal.js +1 -1
  23. package/dist/node/internal.js.map +1 -1
  24. package/dist/node/src/platform_browser/strategies/redirect.d.ts +6 -3
  25. package/dist/node-esm/{index-d458390f.js → index-fcd9269c.js} +2 -2
  26. package/dist/node-esm/{index-d458390f.js.map → index-fcd9269c.js.map} +1 -1
  27. package/dist/node-esm/index.js +1 -1
  28. package/dist/node-esm/internal.js +2 -2
  29. package/dist/node-esm/internal.js.map +1 -1
  30. package/dist/node-esm/src/platform_browser/strategies/redirect.d.ts +6 -3
  31. package/dist/rn/index.js +1 -1
  32. package/dist/rn/internal.js +7 -4
  33. package/dist/rn/internal.js.map +1 -1
  34. package/dist/rn/{phone-8afa33ea.js → phone-525ca016.js} +2 -2
  35. package/dist/rn/{phone-8afa33ea.js.map → phone-525ca016.js.map} +1 -1
  36. package/dist/rn/src/platform_browser/strategies/redirect.d.ts +6 -3
  37. package/dist/src/platform_browser/strategies/redirect.d.ts +6 -3
  38. package/package.json +6 -6
@@ -1629,7 +1629,8 @@ export declare function linkWithPopup(user: User, provider: AuthProvider, resolv
1629
1629
  * Links the {@link OAuthProvider} to the user account using a full-page redirect flow.
1630
1630
  * @remarks
1631
1631
  * To handle the results and errors for this operation, refer to {@link getRedirectResult}.
1632
- * Follow the [best practices](https://firebase.google.com/docs/auth/web/redirect-best-practices) when using {@link linkWithRedirect}.
1632
+ * Follow the {@link https://firebase.google.com/docs/auth/web/redirect-best-practices
1633
+ * | best practices} when using {@link linkWithRedirect}.
1633
1634
  *
1634
1635
  * @example
1635
1636
  * ```javascript
@@ -2599,7 +2600,8 @@ export declare function reauthenticateWithPopup(user: User, provider: AuthProvid
2599
2600
  * Reauthenticates the current user with the specified {@link OAuthProvider} using a full-page redirect flow.
2600
2601
  * @remarks
2601
2602
  * To handle the results and errors for this operation, refer to {@link getRedirectResult}.
2602
- * Follow the [best practices](https://firebase.google.com/docs/auth/web/redirect-best-practices) when using {@link reauthenticateWithRedirect}.
2603
+ * Follow the {@link https://firebase.google.com/docs/auth/web/redirect-best-practices
2604
+ * | best practices} when using {@link reauthenticateWithRedirect}.
2603
2605
  *
2604
2606
  * @example
2605
2607
  * ```javascript
@@ -3099,7 +3101,8 @@ export declare function signInWithPopup(auth: Auth, provider: AuthProvider, reso
3099
3101
  *
3100
3102
  * @remarks
3101
3103
  * To handle the results and errors for this operation, refer to {@link getRedirectResult}.
3102
- * Follow the [best practices](https://firebase.google.com/docs/auth/web/redirect-best-practices) when using {@link signInWithRedirect}.
3104
+ * Follow the {@link https://firebase.google.com/docs/auth/web/redirect-best-practices
3105
+ * | best practices} when using {@link signInWithRedirect}.
3103
3106
  *
3104
3107
  * @example
3105
3108
  * ```javascript
package/dist/auth.d.ts CHANGED
@@ -1950,7 +1950,8 @@ export declare function linkWithPopup(user: User, provider: AuthProvider, resolv
1950
1950
  * Links the {@link OAuthProvider} to the user account using a full-page redirect flow.
1951
1951
  * @remarks
1952
1952
  * To handle the results and errors for this operation, refer to {@link getRedirectResult}.
1953
- * Follow the [best practices](https://firebase.google.com/docs/auth/web/redirect-best-practices) when using {@link linkWithRedirect}.
1953
+ * Follow the {@link https://firebase.google.com/docs/auth/web/redirect-best-practices
1954
+ * | best practices} when using {@link linkWithRedirect}.
1954
1955
  *
1955
1956
  * @example
1956
1957
  * ```javascript
@@ -2988,7 +2989,8 @@ export declare function reauthenticateWithPopup(user: User, provider: AuthProvid
2988
2989
  * Reauthenticates the current user with the specified {@link OAuthProvider} using a full-page redirect flow.
2989
2990
  * @remarks
2990
2991
  * To handle the results and errors for this operation, refer to {@link getRedirectResult}.
2991
- * Follow the [best practices](https://firebase.google.com/docs/auth/web/redirect-best-practices) when using {@link reauthenticateWithRedirect}.
2992
+ * Follow the {@link https://firebase.google.com/docs/auth/web/redirect-best-practices
2993
+ * | best practices} when using {@link reauthenticateWithRedirect}.
2992
2994
  *
2993
2995
  * @example
2994
2996
  * ```javascript
@@ -3523,7 +3525,8 @@ export declare function signInWithPopup(auth: Auth, provider: AuthProvider, reso
3523
3525
  *
3524
3526
  * @remarks
3525
3527
  * To handle the results and errors for this operation, refer to {@link getRedirectResult}.
3526
- * Follow the [best practices](https://firebase.google.com/docs/auth/web/redirect-best-practices) when using {@link signInWithRedirect}.
3528
+ * Follow the {@link https://firebase.google.com/docs/auth/web/redirect-best-practices
3529
+ * | best practices} when using {@link signInWithRedirect}.
3527
3530
  *
3528
3531
  * @example
3529
3532
  * ```javascript
@@ -1,6 +1,6 @@
1
1
  import { getApp, _getProvider } from '@firebase/app';
2
- import { _ as _signInWithRedirect, a as _reauthenticateWithRedirect, b as _linkWithRedirect, r as registerAuth, i as initializeAuth, c as indexedDBLocalPersistence, d as cordovaPopupRedirectResolver } from './popup_redirect-616e0b14.js';
3
- export { A as ActionCodeOperation, a3 as ActionCodeURL, v as AuthCredential, q as AuthErrorCodes, E as EmailAuthCredential, z as EmailAuthProvider, B as FacebookAuthProvider, F as FactorId, C as GithubAuthProvider, G as GoogleAuthProvider, w as OAuthCredential, D as OAuthProvider, O as OperationType, x as PhoneAuthCredential, P as ProviderId, H as SAMLAuthProvider, S as SignInMethod, T as TwitterAuthProvider, R as applyActionCode, h as beforeAuthStateChanged, e as browserLocalPersistence, f as browserSessionPersistence, U as checkActionCode, Q as confirmPasswordReset, t as connectAuthEmulator, d as cordovaPopupRedirectResolver, W as createUserWithEmailAndPassword, n as debugErrorMap, m as deleteUser, a0 as fetchSignInMethodsForEmail, ab as getAdditionalUserInfo, a8 as getIdToken, a9 as getIdTokenResult, ad as getMultiFactorResolver, g as getRedirectResult, y as inMemoryPersistence, c as indexedDBLocalPersistence, i as initializeAuth, Z as isSignInWithEmailLink, K as linkWithCredential, ae as multiFactor, j as onAuthStateChanged, o as onIdTokenChanged, a4 as parseActionCodeURL, p as prodErrorMap, L as reauthenticateWithCredential, ac as reload, a1 as sendEmailVerification, N as sendPasswordResetEmail, Y as sendSignInLinkToEmail, s as setPersistence, I as signInAnonymously, J as signInWithCredential, M as signInWithCustomToken, X as signInWithEmailAndPassword, $ as signInWithEmailLink, l as signOut, aa as unlink, k as updateCurrentUser, a6 as updateEmail, a7 as updatePassword, a5 as updateProfile, u as useDeviceLanguage, a2 as verifyBeforeUpdateEmail, V as verifyPasswordResetCode } from './popup_redirect-616e0b14.js';
2
+ import { _ as _signInWithRedirect, a as _reauthenticateWithRedirect, b as _linkWithRedirect, r as registerAuth, i as initializeAuth, c as indexedDBLocalPersistence, d as cordovaPopupRedirectResolver } from './popup_redirect-b7790bbf.js';
3
+ export { A as ActionCodeOperation, a3 as ActionCodeURL, v as AuthCredential, q as AuthErrorCodes, E as EmailAuthCredential, z as EmailAuthProvider, B as FacebookAuthProvider, F as FactorId, C as GithubAuthProvider, G as GoogleAuthProvider, w as OAuthCredential, D as OAuthProvider, O as OperationType, x as PhoneAuthCredential, P as ProviderId, H as SAMLAuthProvider, S as SignInMethod, T as TwitterAuthProvider, R as applyActionCode, h as beforeAuthStateChanged, e as browserLocalPersistence, f as browserSessionPersistence, U as checkActionCode, Q as confirmPasswordReset, t as connectAuthEmulator, d as cordovaPopupRedirectResolver, W as createUserWithEmailAndPassword, n as debugErrorMap, m as deleteUser, a0 as fetchSignInMethodsForEmail, ab as getAdditionalUserInfo, a8 as getIdToken, a9 as getIdTokenResult, ad as getMultiFactorResolver, g as getRedirectResult, y as inMemoryPersistence, c as indexedDBLocalPersistence, i as initializeAuth, Z as isSignInWithEmailLink, K as linkWithCredential, ae as multiFactor, j as onAuthStateChanged, o as onIdTokenChanged, a4 as parseActionCodeURL, p as prodErrorMap, L as reauthenticateWithCredential, ac as reload, a1 as sendEmailVerification, N as sendPasswordResetEmail, Y as sendSignInLinkToEmail, s as setPersistence, I as signInAnonymously, J as signInWithCredential, M as signInWithCustomToken, X as signInWithEmailAndPassword, $ as signInWithEmailLink, l as signOut, aa as unlink, k as updateCurrentUser, a6 as updateEmail, a7 as updatePassword, a5 as updateProfile, u as useDeviceLanguage, a2 as verifyBeforeUpdateEmail, V as verifyPasswordResetCode } from './popup_redirect-b7790bbf.js';
4
4
  import 'tslib';
5
5
  import '@firebase/util';
6
6
  import '@firebase/component';
@@ -1,5 +1,5 @@
1
- import { af as _performApiRequest, ag as _addTidIfNecessary, ah as _createError, ai as _assert, aj as Delay, ak as _window, al as _isHttpOrHttps, am as _isWorker, an as _castAuth, J as signInWithCredential, K as linkWithCredential, ao as _assertLinkedStatus, L as reauthenticateWithCredential, ap as sendPhoneVerificationCode, aq as startEnrollPhoneMfa, ar as _link, x as PhoneAuthCredential, as as debugAssert, at as _generateEventId, au as AbstractPopupRedirectOperation, av as _assertInstanceOf, aw as _withDefaultResolver, ax as FederatedAuthProvider, ay as _fail, az as _getProjectConfig, aA as _getCurrentUrl, aB as _emulatorUrl, aC as _isChromeIOS, aD as _isFirefox, aE as _isIOSStandalone, aF as _getRedirectUrl, aG as _setWindowLocation, aH as _isMobileBrowser, aI as _isSafari, aJ as _isIOS, f as browserSessionPersistence, aK as _getRedirectResult, aL as _overrideRedirectResult, aM as AuthEventManager, aN as debugFail, aO as finalizeEnrollPhoneMfa, r as registerAuth, i as initializeAuth, c as indexedDBLocalPersistence, e as browserLocalPersistence, h as beforeAuthStateChanged, o as onIdTokenChanged, t as connectAuthEmulator } from './popup_redirect-616e0b14.js';
2
- export { A as ActionCodeOperation, a3 as ActionCodeURL, v as AuthCredential, q as AuthErrorCodes, aS as AuthImpl, E as EmailAuthCredential, z as EmailAuthProvider, B as FacebookAuthProvider, F as FactorId, aU as FetchProvider, C as GithubAuthProvider, G as GoogleAuthProvider, w as OAuthCredential, D as OAuthProvider, O as OperationType, x as PhoneAuthCredential, P as ProviderId, aV as SAMLAuthCredential, H as SAMLAuthProvider, S as SignInMethod, T as TwitterAuthProvider, aQ as UserImpl, ai as _assert, an as _castAuth, ay as _fail, at as _generateEventId, aT as _getClientVersion, aR as _getInstance, aK as _getRedirectResult, aL as _overrideRedirectResult, aP as _persistenceKeyName, R as applyActionCode, h as beforeAuthStateChanged, e as browserLocalPersistence, f as browserSessionPersistence, U as checkActionCode, Q as confirmPasswordReset, t as connectAuthEmulator, d as cordovaPopupRedirectResolver, W as createUserWithEmailAndPassword, n as debugErrorMap, m as deleteUser, a0 as fetchSignInMethodsForEmail, ab as getAdditionalUserInfo, a8 as getIdToken, a9 as getIdTokenResult, ad as getMultiFactorResolver, g as getRedirectResult, y as inMemoryPersistence, c as indexedDBLocalPersistence, i as initializeAuth, Z as isSignInWithEmailLink, K as linkWithCredential, aX as linkWithRedirect, ae as multiFactor, j as onAuthStateChanged, o as onIdTokenChanged, a4 as parseActionCodeURL, p as prodErrorMap, L as reauthenticateWithCredential, aY as reauthenticateWithRedirect, ac as reload, a1 as sendEmailVerification, N as sendPasswordResetEmail, Y as sendSignInLinkToEmail, s as setPersistence, I as signInAnonymously, J as signInWithCredential, M as signInWithCustomToken, X as signInWithEmailAndPassword, $ as signInWithEmailLink, aW as signInWithRedirect, l as signOut, aa as unlink, k as updateCurrentUser, a6 as updateEmail, a7 as updatePassword, a5 as updateProfile, u as useDeviceLanguage, a2 as verifyBeforeUpdateEmail, V as verifyPasswordResetCode } from './popup_redirect-616e0b14.js';
1
+ import { af as _performApiRequest, ag as _addTidIfNecessary, ah as _createError, ai as _assert, aj as Delay, ak as _window, al as _isHttpOrHttps, am as _isWorker, an as _castAuth, J as signInWithCredential, K as linkWithCredential, ao as _assertLinkedStatus, L as reauthenticateWithCredential, ap as sendPhoneVerificationCode, aq as startEnrollPhoneMfa, ar as _link, x as PhoneAuthCredential, as as debugAssert, at as _generateEventId, au as AbstractPopupRedirectOperation, av as _assertInstanceOf, aw as _withDefaultResolver, ax as FederatedAuthProvider, ay as _fail, az as _getProjectConfig, aA as _getCurrentUrl, aB as _emulatorUrl, aC as _isChromeIOS, aD as _isFirefox, aE as _isIOSStandalone, aF as _getRedirectUrl, aG as _setWindowLocation, aH as _isMobileBrowser, aI as _isSafari, aJ as _isIOS, f as browserSessionPersistence, aK as _getRedirectResult, aL as _overrideRedirectResult, aM as AuthEventManager, aN as debugFail, aO as finalizeEnrollPhoneMfa, r as registerAuth, i as initializeAuth, c as indexedDBLocalPersistence, e as browserLocalPersistence, h as beforeAuthStateChanged, o as onIdTokenChanged, t as connectAuthEmulator } from './popup_redirect-b7790bbf.js';
2
+ export { A as ActionCodeOperation, a3 as ActionCodeURL, v as AuthCredential, q as AuthErrorCodes, aS as AuthImpl, E as EmailAuthCredential, z as EmailAuthProvider, B as FacebookAuthProvider, F as FactorId, aU as FetchProvider, C as GithubAuthProvider, G as GoogleAuthProvider, w as OAuthCredential, D as OAuthProvider, O as OperationType, x as PhoneAuthCredential, P as ProviderId, aV as SAMLAuthCredential, H as SAMLAuthProvider, S as SignInMethod, T as TwitterAuthProvider, aQ as UserImpl, ai as _assert, an as _castAuth, ay as _fail, at as _generateEventId, aT as _getClientVersion, aR as _getInstance, aK as _getRedirectResult, aL as _overrideRedirectResult, aP as _persistenceKeyName, R as applyActionCode, h as beforeAuthStateChanged, e as browserLocalPersistence, f as browserSessionPersistence, U as checkActionCode, Q as confirmPasswordReset, t as connectAuthEmulator, d as cordovaPopupRedirectResolver, W as createUserWithEmailAndPassword, n as debugErrorMap, m as deleteUser, a0 as fetchSignInMethodsForEmail, ab as getAdditionalUserInfo, a8 as getIdToken, a9 as getIdTokenResult, ad as getMultiFactorResolver, g as getRedirectResult, y as inMemoryPersistence, c as indexedDBLocalPersistence, i as initializeAuth, Z as isSignInWithEmailLink, K as linkWithCredential, aX as linkWithRedirect, ae as multiFactor, j as onAuthStateChanged, o as onIdTokenChanged, a4 as parseActionCodeURL, p as prodErrorMap, L as reauthenticateWithCredential, aY as reauthenticateWithRedirect, ac as reload, a1 as sendEmailVerification, N as sendPasswordResetEmail, Y as sendSignInLinkToEmail, s as setPersistence, I as signInAnonymously, J as signInWithCredential, M as signInWithCustomToken, X as signInWithEmailAndPassword, $ as signInWithEmailLink, aW as signInWithRedirect, l as signOut, aa as unlink, k as updateCurrentUser, a6 as updateEmail, a7 as updatePassword, a5 as updateProfile, u as useDeviceLanguage, a2 as verifyBeforeUpdateEmail, V as verifyPasswordResetCode } from './popup_redirect-b7790bbf.js';
3
3
  import { __awaiter, __generator, __assign, __extends, __spreadArray } from 'tslib';
4
4
  import { querystring, getModularInstance, getUA, getExperimentalSetting, getDefaultEmulatorHost } from '@firebase/util';
5
5
  import { SDK_VERSION, getApp, _getProvider } from '@firebase/app';
@@ -7885,7 +7885,7 @@ function multiFactor(user) {
7885
7885
  }
7886
7886
 
7887
7887
  var name = "@firebase/auth";
7888
- var version = "0.21.1-canary.68369740a";
7888
+ var version = "0.21.1-canary.f8ddadba9";
7889
7889
 
7890
7890
  /**
7891
7891
  * @license
@@ -8906,7 +8906,8 @@ function pendingRedirectKey(auth) {
8906
8906
  *
8907
8907
  * @remarks
8908
8908
  * To handle the results and errors for this operation, refer to {@link getRedirectResult}.
8909
- * Follow the [best practices](https://firebase.google.com/docs/auth/web/redirect-best-practices) when using {@link signInWithRedirect}.
8909
+ * Follow the {@link https://firebase.google.com/docs/auth/web/redirect-best-practices
8910
+ * | best practices} when using {@link signInWithRedirect}.
8910
8911
  *
8911
8912
  * @example
8912
8913
  * ```javascript
@@ -8974,7 +8975,8 @@ function _signInWithRedirect(auth, provider, resolver) {
8974
8975
  * Reauthenticates the current user with the specified {@link OAuthProvider} using a full-page redirect flow.
8975
8976
  * @remarks
8976
8977
  * To handle the results and errors for this operation, refer to {@link getRedirectResult}.
8977
- * Follow the [best practices](https://firebase.google.com/docs/auth/web/redirect-best-practices) when using {@link reauthenticateWithRedirect}.
8978
+ * Follow the {@link https://firebase.google.com/docs/auth/web/redirect-best-practices
8979
+ * | best practices} when using {@link reauthenticateWithRedirect}.
8978
8980
  *
8979
8981
  * @example
8980
8982
  * ```javascript
@@ -9037,7 +9039,8 @@ function _reauthenticateWithRedirect(user, provider, resolver) {
9037
9039
  * Links the {@link OAuthProvider} to the user account using a full-page redirect flow.
9038
9040
  * @remarks
9039
9041
  * To handle the results and errors for this operation, refer to {@link getRedirectResult}.
9040
- * Follow the [best practices](https://firebase.google.com/docs/auth/web/redirect-best-practices) when using {@link linkWithRedirect}.
9042
+ * Follow the {@link https://firebase.google.com/docs/auth/web/redirect-best-practices
9043
+ * | best practices} when using {@link linkWithRedirect}.
9041
9044
  *
9042
9045
  * @example
9043
9046
  * ```javascript
@@ -10064,4 +10067,4 @@ function generateNoEvent() {
10064
10067
  }
10065
10068
 
10066
10069
  export { signInWithEmailLink as $, ActionCodeOperation as A, FacebookAuthProvider as B, GithubAuthProvider as C, OAuthProvider as D, EmailAuthCredential as E, FactorId as F, GoogleAuthProvider as G, SAMLAuthProvider as H, signInAnonymously as I, signInWithCredential as J, linkWithCredential as K, reauthenticateWithCredential as L, signInWithCustomToken as M, sendPasswordResetEmail as N, OperationType as O, ProviderId as P, confirmPasswordReset as Q, applyActionCode as R, SignInMethod as S, TwitterAuthProvider as T, checkActionCode as U, verifyPasswordResetCode as V, createUserWithEmailAndPassword as W, signInWithEmailAndPassword as X, sendSignInLinkToEmail as Y, isSignInWithEmailLink as Z, _signInWithRedirect as _, _reauthenticateWithRedirect as a, fetchSignInMethodsForEmail as a0, sendEmailVerification as a1, verifyBeforeUpdateEmail as a2, ActionCodeURL as a3, parseActionCodeURL as a4, updateProfile as a5, updateEmail as a6, updatePassword as a7, getIdToken as a8, getIdTokenResult as a9, _getCurrentUrl as aA, _emulatorUrl as aB, _isChromeIOS as aC, _isFirefox as aD, _isIOSStandalone as aE, _getRedirectUrl as aF, _setWindowLocation as aG, _isMobileBrowser as aH, _isSafari as aI, _isIOS as aJ, _getRedirectResult as aK, _overrideRedirectResult as aL, AuthEventManager as aM, debugFail as aN, finalizeEnrollPhoneMfa as aO, _persistenceKeyName as aP, UserImpl as aQ, _getInstance as aR, AuthImpl as aS, _getClientVersion as aT, FetchProvider as aU, SAMLAuthCredential as aV, signInWithRedirect as aW, linkWithRedirect as aX, reauthenticateWithRedirect as aY, unlink as aa, getAdditionalUserInfo as ab, reload as ac, getMultiFactorResolver as ad, multiFactor as ae, _performApiRequest as af, _addTidIfNecessary as ag, _createError as ah, _assert as ai, Delay as aj, _window as ak, _isHttpOrHttps as al, _isWorker as am, _castAuth as an, _assertLinkedStatus as ao, sendPhoneVerificationCode as ap, startEnrollPhoneMfa as aq, _link$1 as ar, debugAssert as as, _generateEventId as at, AbstractPopupRedirectOperation as au, _assertInstanceOf as av, _withDefaultResolver as aw, FederatedAuthProvider as ax, _fail as ay, _getProjectConfig as az, _linkWithRedirect as b, indexedDBLocalPersistence as c, cordovaPopupRedirectResolver as d, browserLocalPersistence as e, browserSessionPersistence as f, getRedirectResult as g, beforeAuthStateChanged as h, initializeAuth as i, onAuthStateChanged as j, updateCurrentUser as k, signOut as l, deleteUser as m, debugErrorMap as n, onIdTokenChanged as o, prodErrorMap as p, AUTH_ERROR_CODES_MAP_DO_NOT_USE_INTERNALLY as q, registerAuth as r, setPersistence as s, connectAuthEmulator as t, useDeviceLanguage as u, AuthCredential as v, OAuthCredential as w, PhoneAuthCredential as x, inMemoryPersistence as y, EmailAuthProvider as z };
10067
- //# sourceMappingURL=popup_redirect-616e0b14.js.map
10070
+ //# sourceMappingURL=popup_redirect-b7790bbf.js.map