@firebase/auth 0.21.0-canary.a7622d49f → 0.21.0-canary.cd92522a4
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.
- package/dist/auth-public.d.ts +9 -2
- package/dist/auth.d.ts +9 -2
- package/dist/cordova/index.js +2 -2
- package/dist/cordova/internal.js +2 -2
- package/dist/cordova/{popup_redirect-865c7b3e.js → popup_redirect-af49241a.js} +11 -4
- package/dist/cordova/{popup_redirect-865c7b3e.js.map → popup_redirect-af49241a.js.map} +1 -1
- package/dist/cordova/src/platform_browser/strategies/redirect.d.ts +9 -2
- package/dist/esm2017/{index-26dedbfe.js → index-4f2acbe9.js} +11 -4
- package/dist/esm2017/{index-26dedbfe.js.map → index-4f2acbe9.js.map} +1 -1
- package/dist/esm2017/index.js +1 -1
- package/dist/esm2017/internal.js +2 -2
- package/dist/esm2017/src/platform_browser/strategies/redirect.d.ts +9 -2
- package/dist/esm5/{index-bde4c2e3.js → index-08e2d632.js} +11 -4
- package/dist/esm5/{index-bde4c2e3.js.map → index-08e2d632.js.map} +1 -1
- package/dist/esm5/index.js +1 -1
- package/dist/esm5/internal.js +2 -2
- package/dist/esm5/src/platform_browser/strategies/redirect.d.ts +9 -2
- package/dist/index.webworker.esm5.js +1 -1
- package/dist/node/{index-8e9d96f6.js → index-1615d0d5.js} +2 -2
- package/dist/node/{index-8e9d96f6.js.map → index-1615d0d5.js.map} +1 -1
- package/dist/node/index.js +1 -1
- package/dist/node/internal.js +1 -1
- package/dist/node/internal.js.map +1 -1
- package/dist/node/src/platform_browser/strategies/redirect.d.ts +9 -2
- package/dist/node-esm/{index-8e3579ee.js → index-2bd267db.js} +2 -2
- package/dist/node-esm/{index-8e3579ee.js.map → index-2bd267db.js.map} +1 -1
- package/dist/node-esm/index.js +1 -1
- package/dist/node-esm/internal.js +2 -2
- package/dist/node-esm/internal.js.map +1 -1
- package/dist/node-esm/src/platform_browser/strategies/redirect.d.ts +9 -2
- package/dist/rn/index.js +1 -1
- package/dist/rn/internal.js +10 -3
- package/dist/rn/internal.js.map +1 -1
- package/dist/rn/{phone-3fc9bbdb.js → phone-0119503c.js} +2 -2
- package/dist/rn/{phone-3fc9bbdb.js.map → phone-0119503c.js.map} +1 -1
- package/dist/rn/src/platform_browser/strategies/redirect.d.ts +9 -2
- package/dist/src/platform_browser/strategies/redirect.d.ts +9 -2
- package/package.json +6 -6
package/dist/auth-public.d.ts
CHANGED
|
@@ -1627,6 +1627,9 @@ export declare function linkWithPopup(user: User, provider: AuthProvider, resolv
|
|
|
1627
1627
|
|
|
1628
1628
|
/**
|
|
1629
1629
|
* Links the {@link OAuthProvider} to the user account using a full-page redirect flow.
|
|
1630
|
+
* @remarks
|
|
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}.
|
|
1630
1633
|
*
|
|
1631
1634
|
* @example
|
|
1632
1635
|
* ```javascript
|
|
@@ -2593,6 +2596,9 @@ export declare function reauthenticateWithPopup(user: User, provider: AuthProvid
|
|
|
2593
2596
|
|
|
2594
2597
|
/**
|
|
2595
2598
|
* Reauthenticates the current user with the specified {@link OAuthProvider} using a full-page redirect flow.
|
|
2599
|
+
* @remarks
|
|
2600
|
+
* To handle the results and errors for this operation, refer to {@link getRedirectResult}.
|
|
2601
|
+
* Follow the [best practices](https://firebase.google.com/docs/auth/web/redirect-best-practices) when using {@link reauthenticateWithRedirect}.
|
|
2596
2602
|
*
|
|
2597
2603
|
* @example
|
|
2598
2604
|
* ```javascript
|
|
@@ -2603,8 +2609,8 @@ export declare function reauthenticateWithPopup(user: User, provider: AuthProvid
|
|
|
2603
2609
|
*
|
|
2604
2610
|
* // After returning from the redirect when your app initializes you can obtain the result
|
|
2605
2611
|
* const result = await getRedirectResult(auth);
|
|
2606
|
-
* //
|
|
2607
|
-
* await
|
|
2612
|
+
* // Reauthenticate using a redirect.
|
|
2613
|
+
* await reauthenticateWithRedirect(result.user, provider);
|
|
2608
2614
|
* // This will again trigger a full page redirect away from your app
|
|
2609
2615
|
*
|
|
2610
2616
|
* // After returning from the redirect when your app initializes you can obtain the result
|
|
@@ -3092,6 +3098,7 @@ export declare function signInWithPopup(auth: Auth, provider: AuthProvider, reso
|
|
|
3092
3098
|
*
|
|
3093
3099
|
* @remarks
|
|
3094
3100
|
* To handle the results and errors for this operation, refer to {@link getRedirectResult}.
|
|
3101
|
+
* Follow the [best practices](https://firebase.google.com/docs/auth/web/redirect-best-practices) when using {@link signInWithRedirect}.
|
|
3095
3102
|
*
|
|
3096
3103
|
* @example
|
|
3097
3104
|
* ```javascript
|
package/dist/auth.d.ts
CHANGED
|
@@ -1948,6 +1948,9 @@ export declare function linkWithPopup(user: User, provider: AuthProvider, resolv
|
|
|
1948
1948
|
|
|
1949
1949
|
/**
|
|
1950
1950
|
* Links the {@link OAuthProvider} to the user account using a full-page redirect flow.
|
|
1951
|
+
* @remarks
|
|
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}.
|
|
1951
1954
|
*
|
|
1952
1955
|
* @example
|
|
1953
1956
|
* ```javascript
|
|
@@ -2982,6 +2985,9 @@ export declare function reauthenticateWithPopup(user: User, provider: AuthProvid
|
|
|
2982
2985
|
|
|
2983
2986
|
/**
|
|
2984
2987
|
* Reauthenticates the current user with the specified {@link OAuthProvider} using a full-page redirect flow.
|
|
2988
|
+
* @remarks
|
|
2989
|
+
* To handle the results and errors for this operation, refer to {@link getRedirectResult}.
|
|
2990
|
+
* Follow the [best practices](https://firebase.google.com/docs/auth/web/redirect-best-practices) when using {@link reauthenticateWithRedirect}.
|
|
2985
2991
|
*
|
|
2986
2992
|
* @example
|
|
2987
2993
|
* ```javascript
|
|
@@ -2992,8 +2998,8 @@ export declare function reauthenticateWithPopup(user: User, provider: AuthProvid
|
|
|
2992
2998
|
*
|
|
2993
2999
|
* // After returning from the redirect when your app initializes you can obtain the result
|
|
2994
3000
|
* const result = await getRedirectResult(auth);
|
|
2995
|
-
* //
|
|
2996
|
-
* await
|
|
3001
|
+
* // Reauthenticate using a redirect.
|
|
3002
|
+
* await reauthenticateWithRedirect(result.user, provider);
|
|
2997
3003
|
* // This will again trigger a full page redirect away from your app
|
|
2998
3004
|
*
|
|
2999
3005
|
* // After returning from the redirect when your app initializes you can obtain the result
|
|
@@ -3516,6 +3522,7 @@ export declare function signInWithPopup(auth: Auth, provider: AuthProvider, reso
|
|
|
3516
3522
|
*
|
|
3517
3523
|
* @remarks
|
|
3518
3524
|
* To handle the results and errors for this operation, refer to {@link getRedirectResult}.
|
|
3525
|
+
* Follow the [best practices](https://firebase.google.com/docs/auth/web/redirect-best-practices) when using {@link signInWithRedirect}.
|
|
3519
3526
|
*
|
|
3520
3527
|
* @example
|
|
3521
3528
|
* ```javascript
|
package/dist/cordova/index.js
CHANGED
|
@@ -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-
|
|
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-
|
|
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-af49241a.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-af49241a.js';
|
|
4
4
|
import 'tslib';
|
|
5
5
|
import '@firebase/util';
|
|
6
6
|
import '@firebase/component';
|
package/dist/cordova/internal.js
CHANGED
|
@@ -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-
|
|
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-
|
|
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-af49241a.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-af49241a.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';
|
|
@@ -7887,7 +7887,7 @@ function multiFactor(user) {
|
|
|
7887
7887
|
}
|
|
7888
7888
|
|
|
7889
7889
|
var name = "@firebase/auth";
|
|
7890
|
-
var version = "0.21.0-canary.
|
|
7890
|
+
var version = "0.21.0-canary.cd92522a4";
|
|
7891
7891
|
|
|
7892
7892
|
/**
|
|
7893
7893
|
* @license
|
|
@@ -8908,6 +8908,7 @@ function pendingRedirectKey(auth) {
|
|
|
8908
8908
|
*
|
|
8909
8909
|
* @remarks
|
|
8910
8910
|
* To handle the results and errors for this operation, refer to {@link getRedirectResult}.
|
|
8911
|
+
* Follow the [best practices](https://firebase.google.com/docs/auth/web/redirect-best-practices) when using {@link signInWithRedirect}.
|
|
8911
8912
|
*
|
|
8912
8913
|
* @example
|
|
8913
8914
|
* ```javascript
|
|
@@ -8964,6 +8965,9 @@ function _signInWithRedirect(auth, provider, resolver) {
|
|
|
8964
8965
|
}
|
|
8965
8966
|
/**
|
|
8966
8967
|
* Reauthenticates the current user with the specified {@link OAuthProvider} using a full-page redirect flow.
|
|
8968
|
+
* @remarks
|
|
8969
|
+
* To handle the results and errors for this operation, refer to {@link getRedirectResult}.
|
|
8970
|
+
* Follow the [best practices](https://firebase.google.com/docs/auth/web/redirect-best-practices) when using {@link reauthenticateWithRedirect}.
|
|
8967
8971
|
*
|
|
8968
8972
|
* @example
|
|
8969
8973
|
* ```javascript
|
|
@@ -8974,8 +8978,8 @@ function _signInWithRedirect(auth, provider, resolver) {
|
|
|
8974
8978
|
*
|
|
8975
8979
|
* // After returning from the redirect when your app initializes you can obtain the result
|
|
8976
8980
|
* const result = await getRedirectResult(auth);
|
|
8977
|
-
* //
|
|
8978
|
-
* await
|
|
8981
|
+
* // Reauthenticate using a redirect.
|
|
8982
|
+
* await reauthenticateWithRedirect(result.user, provider);
|
|
8979
8983
|
* // This will again trigger a full page redirect away from your app
|
|
8980
8984
|
*
|
|
8981
8985
|
* // After returning from the redirect when your app initializes you can obtain the result
|
|
@@ -9015,6 +9019,9 @@ function _reauthenticateWithRedirect(user, provider, resolver) {
|
|
|
9015
9019
|
}
|
|
9016
9020
|
/**
|
|
9017
9021
|
* Links the {@link OAuthProvider} to the user account using a full-page redirect flow.
|
|
9022
|
+
* @remarks
|
|
9023
|
+
* To handle the results and errors for this operation, refer to {@link getRedirectResult}.
|
|
9024
|
+
* Follow the [best practices](https://firebase.google.com/docs/auth/web/redirect-best-practices) when using {@link linkWithRedirect}.
|
|
9018
9025
|
*
|
|
9019
9026
|
* @example
|
|
9020
9027
|
* ```javascript
|
|
@@ -10032,4 +10039,4 @@ function generateNoEvent() {
|
|
|
10032
10039
|
}
|
|
10033
10040
|
|
|
10034
10041
|
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 };
|
|
10035
|
-
//# sourceMappingURL=popup_redirect-
|
|
10042
|
+
//# sourceMappingURL=popup_redirect-af49241a.js.map
|