@firebase/auth 0.18.1 → 0.18.2-canary.5c9ad7e0b
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/CHANGELOG.md +12 -0
- package/dist/auth-public.d.ts +1 -1
- package/dist/auth.d.ts +1 -2
- package/dist/cordova/index.js +2 -2
- package/dist/cordova/internal.js +2 -2
- package/dist/cordova/{popup_redirect-d25c8345.js → popup_redirect-84c74ca6.js} +17 -9
- package/dist/cordova/popup_redirect-84c74ca6.js.map +1 -0
- package/dist/cordova/src/core/credentials/oauth.d.ts +1 -2
- package/dist/esm2017/{index-d81b283a.js → index-1870bc0f.js} +17 -9
- package/dist/esm2017/index-1870bc0f.js.map +1 -0
- package/dist/esm2017/index.js +1 -1
- package/dist/esm2017/internal.js +2 -2
- package/dist/esm2017/src/core/credentials/oauth.d.ts +1 -2
- package/dist/esm5/{index-f7c7b945.js → index-58572547.js} +17 -9
- package/dist/esm5/index-58572547.js.map +1 -0
- package/dist/esm5/index.js +1 -1
- package/dist/esm5/internal.js +2 -2
- package/dist/esm5/src/core/credentials/oauth.d.ts +1 -2
- package/dist/index.webworker.esm5.js +16 -8
- package/dist/index.webworker.esm5.js.map +1 -1
- package/dist/node/{index-7fb95db8.js → index-53f145f0.js} +17 -9
- package/dist/node/index-53f145f0.js.map +1 -0
- package/dist/node/index.js +1 -1
- package/dist/node/internal.js +1 -1
- package/dist/node/src/core/credentials/oauth.d.ts +1 -2
- package/dist/rn/{enum_maps-dfd404fa.js → enum_maps-b8531d74.js} +17 -9
- package/dist/rn/enum_maps-b8531d74.js.map +1 -0
- package/dist/rn/index.js +1 -1
- package/dist/rn/internal.js +1 -1
- package/dist/rn/src/core/credentials/oauth.d.ts +1 -2
- package/dist/src/core/credentials/oauth.d.ts +1 -2
- package/package.json +6 -6
- package/dist/cordova/popup_redirect-d25c8345.js.map +0 -1
- package/dist/esm2017/index-d81b283a.js.map +0 -1
- package/dist/esm5/index-f7c7b945.js.map +0 -1
- package/dist/node/index-7fb95db8.js.map +0 -1
- package/dist/rn/enum_maps-dfd404fa.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @firebase/auth
|
|
2
2
|
|
|
3
|
+
## 0.18.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`1b0e7af13`](https://github.com/firebase/firebase-js-sdk/commit/1b0e7af130c59b867e84b3f2615248fedad5b83d) [#5564](https://github.com/firebase/firebase-js-sdk/pull/5564) - Calls to `connectAuthEmulator` with the `disableWarnings` flag set to true will no longer cause a `console.info` warning to be printed
|
|
8
|
+
|
|
9
|
+
* [`e1d551ddb`](https://github.com/firebase/firebase-js-sdk/commit/e1d551ddb29db0f1fdf25c986cfcae6804bc8e79) [#5574](https://github.com/firebase/firebase-js-sdk/pull/5574) (fixes [#5553](https://github.com/firebase/firebase-js-sdk/issues/5553)) - Fix bug in the `OAuthProvider.prototype.credential` method that was preventing the `rawNonce` field from being populated in the returned `OAuthCredential`.
|
|
10
|
+
|
|
11
|
+
- [`f7d8324a1`](https://github.com/firebase/firebase-js-sdk/commit/f7d8324a188f013f7875cf6c35fc4beb2c78c0ae) [#5562](https://github.com/firebase/firebase-js-sdk/pull/5562) - Attempt to fix bug in compatability layer in Safari ("Right side of assignment cannot be destructured")
|
|
12
|
+
|
|
13
|
+
* [`e456d00a7`](https://github.com/firebase/firebase-js-sdk/commit/e456d00a7d054b2e95476562a087f2b12301e800) [#5577](https://github.com/firebase/firebase-js-sdk/pull/5577) - Fix bug where `user.tenantId` wasn't being carried over in `updateCurrentUser` function
|
|
14
|
+
|
|
3
15
|
## 0.18.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/auth-public.d.ts
CHANGED
|
@@ -1929,7 +1929,7 @@ export declare class OAuthCredential extends AuthCredential {
|
|
|
1929
1929
|
* @readonly
|
|
1930
1930
|
*/
|
|
1931
1931
|
secret?: string;
|
|
1932
|
-
|
|
1932
|
+
private nonce?;
|
|
1933
1933
|
private pendingToken;
|
|
1934
1934
|
/* Excluded from this release type: _fromParams */
|
|
1935
1935
|
/** {@inheritdoc AuthCredential.toJSON} */
|
package/dist/auth.d.ts
CHANGED
|
@@ -2244,8 +2244,7 @@ export declare class OAuthCredential extends AuthCredential {
|
|
|
2244
2244
|
* @readonly
|
|
2245
2245
|
*/
|
|
2246
2246
|
secret?: string;
|
|
2247
|
-
|
|
2248
|
-
nonce?: string;
|
|
2247
|
+
private nonce?;
|
|
2249
2248
|
private pendingToken;
|
|
2250
2249
|
/** @internal */
|
|
2251
2250
|
static _fromParams(params: OAuthCredentialParams): OAuthCredential;
|
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, a2 as ActionCodeURL, t as AuthCredential, n as AuthErrorCodes, E as EmailAuthCredential, y as EmailAuthProvider, z as FacebookAuthProvider, F as FactorId, B as GithubAuthProvider, G as GoogleAuthProvider, v as OAuthCredential, C as OAuthProvider, O as OperationType, w as PhoneAuthCredential, P as ProviderId, D as SAMLAuthProvider, S as SignInMethod, T as TwitterAuthProvider, Q as applyActionCode, e as browserLocalPersistence, f as browserSessionPersistence, R as checkActionCode, N as confirmPasswordReset, q as connectAuthEmulator, d as cordovaPopupRedirectResolver, V as createUserWithEmailAndPassword, m as debugErrorMap, l as deleteUser, $ as fetchSignInMethodsForEmail, aa as getAdditionalUserInfo, a7 as getIdToken, a8 as getIdTokenResult, ac as getMultiFactorResolver, g as getRedirectResult, x as inMemoryPersistence, c as indexedDBLocalPersistence, i as initializeAuth, Y as isSignInWithEmailLink, J as linkWithCredential, ad as multiFactor, h as onAuthStateChanged, o as onIdTokenChanged, a3 as parseActionCodeURL, p as prodErrorMap, K as reauthenticateWithCredential, ab as reload, a0 as sendEmailVerification, M as sendPasswordResetEmail, X as sendSignInLinkToEmail, s as setPersistence, H as signInAnonymously, I as signInWithCredential, L as signInWithCustomToken, W as signInWithEmailAndPassword, Z as signInWithEmailLink, k as signOut, a9 as unlink, j as updateCurrentUser, a5 as updateEmail, a6 as updatePassword, a4 as updateProfile, u as useDeviceLanguage, a1 as verifyBeforeUpdateEmail, U 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-84c74ca6.js';
|
|
3
|
+
export { A as ActionCodeOperation, a2 as ActionCodeURL, t as AuthCredential, n as AuthErrorCodes, E as EmailAuthCredential, y as EmailAuthProvider, z as FacebookAuthProvider, F as FactorId, B as GithubAuthProvider, G as GoogleAuthProvider, v as OAuthCredential, C as OAuthProvider, O as OperationType, w as PhoneAuthCredential, P as ProviderId, D as SAMLAuthProvider, S as SignInMethod, T as TwitterAuthProvider, Q as applyActionCode, e as browserLocalPersistence, f as browserSessionPersistence, R as checkActionCode, N as confirmPasswordReset, q as connectAuthEmulator, d as cordovaPopupRedirectResolver, V as createUserWithEmailAndPassword, m as debugErrorMap, l as deleteUser, $ as fetchSignInMethodsForEmail, aa as getAdditionalUserInfo, a7 as getIdToken, a8 as getIdTokenResult, ac as getMultiFactorResolver, g as getRedirectResult, x as inMemoryPersistence, c as indexedDBLocalPersistence, i as initializeAuth, Y as isSignInWithEmailLink, J as linkWithCredential, ad as multiFactor, h as onAuthStateChanged, o as onIdTokenChanged, a3 as parseActionCodeURL, p as prodErrorMap, K as reauthenticateWithCredential, ab as reload, a0 as sendEmailVerification, M as sendPasswordResetEmail, X as sendSignInLinkToEmail, s as setPersistence, H as signInAnonymously, I as signInWithCredential, L as signInWithCustomToken, W as signInWithEmailAndPassword, Z as signInWithEmailLink, k as signOut, a9 as unlink, j as updateCurrentUser, a5 as updateEmail, a6 as updatePassword, a4 as updateProfile, u as useDeviceLanguage, a1 as verifyBeforeUpdateEmail, U as verifyPasswordResetCode } from './popup_redirect-84c74ca6.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 { ae as _performApiRequest, af as _addTidIfNecessary, ag as _createError, ah as _assert, ai as Delay, aj as _window, ak as _isHttpOrHttps, al as _isWorker, am as _castAuth, I as signInWithCredential, an as sendPhoneVerificationCode, ao as startEnrollPhoneMfa, J as linkWithCredential, ap as _assertLinkedStatus, K as reauthenticateWithCredential, aq as _link, w as PhoneAuthCredential, ar as debugAssert, as as _generateEventId, at as AbstractPopupRedirectOperation, au as _assertInstanceOf, av as _withDefaultResolver, aw as FederatedAuthProvider, ax as _fail, ay as _getProjectConfig, az as _getCurrentUrl, aA as _emulatorUrl, aB as _isChromeIOS, aC as _isFirefox, aD as _isIOSStandalone, aE as _isMobileBrowser, aF as _isSafari, aG as _isIOS, f as browserSessionPersistence, aH as _getRedirectResult, aI as _getRedirectUrl, aJ as _setWindowLocation, aK as AuthEventManager, aL as debugFail, aM as finalizeEnrollPhoneMfa, r as registerAuth, i as initializeAuth, c as indexedDBLocalPersistence, e as browserLocalPersistence } from './popup_redirect-
|
|
2
|
-
export { A as ActionCodeOperation, a2 as ActionCodeURL, t as AuthCredential, n as AuthErrorCodes, aQ as AuthImpl, E as EmailAuthCredential, y as EmailAuthProvider, z as FacebookAuthProvider, F as FactorId, aS as FetchProvider, B as GithubAuthProvider, G as GoogleAuthProvider, v as OAuthCredential, C as OAuthProvider, O as OperationType, w as PhoneAuthCredential, P as ProviderId, aT as SAMLAuthCredential, D as SAMLAuthProvider, S as SignInMethod, T as TwitterAuthProvider, aO as UserImpl, ah as _assert, am as _castAuth, ax as _fail, as as _generateEventId, aR as _getClientVersion, aP as _getInstance, aH as _getRedirectResult, aN as _persistenceKeyName, Q as applyActionCode, e as browserLocalPersistence, f as browserSessionPersistence, R as checkActionCode, N as confirmPasswordReset, q as connectAuthEmulator, d as cordovaPopupRedirectResolver, V as createUserWithEmailAndPassword, m as debugErrorMap, l as deleteUser, $ as fetchSignInMethodsForEmail, aa as getAdditionalUserInfo, a7 as getIdToken, a8 as getIdTokenResult, ac as getMultiFactorResolver, g as getRedirectResult, x as inMemoryPersistence, c as indexedDBLocalPersistence, i as initializeAuth, Y as isSignInWithEmailLink, J as linkWithCredential, aV as linkWithRedirect, ad as multiFactor, h as onAuthStateChanged, o as onIdTokenChanged, a3 as parseActionCodeURL, p as prodErrorMap, K as reauthenticateWithCredential, aW as reauthenticateWithRedirect, ab as reload, a0 as sendEmailVerification, M as sendPasswordResetEmail, X as sendSignInLinkToEmail, s as setPersistence, H as signInAnonymously, I as signInWithCredential, L as signInWithCustomToken, W as signInWithEmailAndPassword, Z as signInWithEmailLink, aU as signInWithRedirect, k as signOut, a9 as unlink, j as updateCurrentUser, a5 as updateEmail, a6 as updatePassword, a4 as updateProfile, u as useDeviceLanguage, a1 as verifyBeforeUpdateEmail, U as verifyPasswordResetCode } from './popup_redirect-
|
|
1
|
+
import { ae as _performApiRequest, af as _addTidIfNecessary, ag as _createError, ah as _assert, ai as Delay, aj as _window, ak as _isHttpOrHttps, al as _isWorker, am as _castAuth, I as signInWithCredential, an as sendPhoneVerificationCode, ao as startEnrollPhoneMfa, J as linkWithCredential, ap as _assertLinkedStatus, K as reauthenticateWithCredential, aq as _link, w as PhoneAuthCredential, ar as debugAssert, as as _generateEventId, at as AbstractPopupRedirectOperation, au as _assertInstanceOf, av as _withDefaultResolver, aw as FederatedAuthProvider, ax as _fail, ay as _getProjectConfig, az as _getCurrentUrl, aA as _emulatorUrl, aB as _isChromeIOS, aC as _isFirefox, aD as _isIOSStandalone, aE as _isMobileBrowser, aF as _isSafari, aG as _isIOS, f as browserSessionPersistence, aH as _getRedirectResult, aI as _getRedirectUrl, aJ as _setWindowLocation, aK as AuthEventManager, aL as debugFail, aM as finalizeEnrollPhoneMfa, r as registerAuth, i as initializeAuth, c as indexedDBLocalPersistence, e as browserLocalPersistence } from './popup_redirect-84c74ca6.js';
|
|
2
|
+
export { A as ActionCodeOperation, a2 as ActionCodeURL, t as AuthCredential, n as AuthErrorCodes, aQ as AuthImpl, E as EmailAuthCredential, y as EmailAuthProvider, z as FacebookAuthProvider, F as FactorId, aS as FetchProvider, B as GithubAuthProvider, G as GoogleAuthProvider, v as OAuthCredential, C as OAuthProvider, O as OperationType, w as PhoneAuthCredential, P as ProviderId, aT as SAMLAuthCredential, D as SAMLAuthProvider, S as SignInMethod, T as TwitterAuthProvider, aO as UserImpl, ah as _assert, am as _castAuth, ax as _fail, as as _generateEventId, aR as _getClientVersion, aP as _getInstance, aH as _getRedirectResult, aN as _persistenceKeyName, Q as applyActionCode, e as browserLocalPersistence, f as browserSessionPersistence, R as checkActionCode, N as confirmPasswordReset, q as connectAuthEmulator, d as cordovaPopupRedirectResolver, V as createUserWithEmailAndPassword, m as debugErrorMap, l as deleteUser, $ as fetchSignInMethodsForEmail, aa as getAdditionalUserInfo, a7 as getIdToken, a8 as getIdTokenResult, ac as getMultiFactorResolver, g as getRedirectResult, x as inMemoryPersistence, c as indexedDBLocalPersistence, i as initializeAuth, Y as isSignInWithEmailLink, J as linkWithCredential, aV as linkWithRedirect, ad as multiFactor, h as onAuthStateChanged, o as onIdTokenChanged, a3 as parseActionCodeURL, p as prodErrorMap, K as reauthenticateWithCredential, aW as reauthenticateWithRedirect, ab as reload, a0 as sendEmailVerification, M as sendPasswordResetEmail, X as sendSignInLinkToEmail, s as setPersistence, H as signInAnonymously, I as signInWithCredential, L as signInWithCustomToken, W as signInWithEmailAndPassword, Z as signInWithEmailLink, aU as signInWithRedirect, k as signOut, a9 as unlink, j as updateCurrentUser, a5 as updateEmail, a6 as updatePassword, a4 as updateProfile, u as useDeviceLanguage, a1 as verifyBeforeUpdateEmail, U as verifyPasswordResetCode } from './popup_redirect-84c74ca6.js';
|
|
3
3
|
import { __awaiter, __generator, __assign, __extends, __spreadArray } from 'tslib';
|
|
4
4
|
import { querystring, getModularInstance, getUA } from '@firebase/util';
|
|
5
5
|
import { SDK_VERSION, getApp, _getProvider } from '@firebase/app';
|
|
@@ -2614,6 +2614,7 @@ var UserImpl = /** @class */ (function () {
|
|
|
2614
2614
|
this.phoneNumber = opt.phoneNumber || null;
|
|
2615
2615
|
this.photoURL = opt.photoURL || null;
|
|
2616
2616
|
this.isAnonymous = opt.isAnonymous || false;
|
|
2617
|
+
this.tenantId = opt.tenantId || null;
|
|
2617
2618
|
this.metadata = new UserMetadata(opt.createdAt || undefined, opt.lastLoginAt || undefined);
|
|
2618
2619
|
}
|
|
2619
2620
|
UserImpl.prototype.getIdToken = function (forceRefresh) {
|
|
@@ -3872,7 +3873,9 @@ function connectAuthEmulator(auth, url, options) {
|
|
|
3872
3873
|
protocol: protocol.replace(':', ''),
|
|
3873
3874
|
options: Object.freeze({ disableWarnings: disableWarnings })
|
|
3874
3875
|
});
|
|
3875
|
-
|
|
3876
|
+
if (!disableWarnings) {
|
|
3877
|
+
emitEmulatorWarning();
|
|
3878
|
+
}
|
|
3876
3879
|
}
|
|
3877
3880
|
function extractProtocol(url) {
|
|
3878
3881
|
var protocolEnd = url.indexOf(':');
|
|
@@ -3905,7 +3908,7 @@ function parsePort(portStr) {
|
|
|
3905
3908
|
}
|
|
3906
3909
|
return port;
|
|
3907
3910
|
}
|
|
3908
|
-
function emitEmulatorWarning(
|
|
3911
|
+
function emitEmulatorWarning() {
|
|
3909
3912
|
function attachBanner() {
|
|
3910
3913
|
var el = document.createElement('p');
|
|
3911
3914
|
var sty = el.style;
|
|
@@ -3930,8 +3933,7 @@ function emitEmulatorWarning(disableBanner) {
|
|
|
3930
3933
|
' production credentials.');
|
|
3931
3934
|
}
|
|
3932
3935
|
if (typeof window !== 'undefined' &&
|
|
3933
|
-
typeof document !== 'undefined'
|
|
3934
|
-
!disableBanner) {
|
|
3936
|
+
typeof document !== 'undefined') {
|
|
3935
3937
|
if (document.readyState === 'loading') {
|
|
3936
3938
|
window.addEventListener('DOMContentLoaded', attachBanner);
|
|
3937
3939
|
}
|
|
@@ -4387,7 +4389,11 @@ var OAuthCredential = /** @class */ (function (_super) {
|
|
|
4387
4389
|
return null;
|
|
4388
4390
|
}
|
|
4389
4391
|
var cred = new OAuthCredential(providerId, signInMethod);
|
|
4390
|
-
|
|
4392
|
+
cred.idToken = rest.idToken || undefined;
|
|
4393
|
+
cred.accessToken = rest.accessToken || undefined;
|
|
4394
|
+
cred.secret = rest.secret;
|
|
4395
|
+
cred.nonce = rest.nonce;
|
|
4396
|
+
cred.pendingToken = rest.pendingToken || null;
|
|
4391
4397
|
return cred;
|
|
4392
4398
|
};
|
|
4393
4399
|
/** @internal */
|
|
@@ -4996,7 +5002,7 @@ var OAuthProvider = /** @class */ (function (_super) {
|
|
|
4996
5002
|
* or the ID token string.
|
|
4997
5003
|
*/
|
|
4998
5004
|
OAuthProvider.prototype.credential = function (params) {
|
|
4999
|
-
return this._credential(params);
|
|
5005
|
+
return this._credential(__assign(__assign({}, params), { nonce: params.rawNonce }));
|
|
5000
5006
|
};
|
|
5001
5007
|
/** An internal credential method that accepts more permissive options */
|
|
5002
5008
|
OAuthProvider.prototype._credential = function (params) {
|
|
@@ -5040,7 +5046,7 @@ var OAuthProvider = /** @class */ (function (_super) {
|
|
|
5040
5046
|
return new OAuthProvider(providerId)._credential({
|
|
5041
5047
|
idToken: oauthIdToken,
|
|
5042
5048
|
accessToken: oauthAccessToken,
|
|
5043
|
-
|
|
5049
|
+
nonce: nonce,
|
|
5044
5050
|
pendingToken: pendingToken
|
|
5045
5051
|
});
|
|
5046
5052
|
}
|
|
@@ -7659,7 +7665,7 @@ function multiFactor(user) {
|
|
|
7659
7665
|
}
|
|
7660
7666
|
|
|
7661
7667
|
var name = "@firebase/auth";
|
|
7662
|
-
var version = "0.18.
|
|
7668
|
+
var version = "0.18.2-canary.5c9ad7e0b";
|
|
7663
7669
|
|
|
7664
7670
|
/**
|
|
7665
7671
|
* @license
|
|
@@ -7818,6 +7824,8 @@ function registerAuth(clientPlatform) {
|
|
|
7818
7824
|
return (function (auth) { return new AuthInterop(auth); })(auth);
|
|
7819
7825
|
}, "PRIVATE" /* PRIVATE */).setInstantiationMode("EXPLICIT" /* EXPLICIT */));
|
|
7820
7826
|
registerVersion(name, version, getVersionForPlatform(clientPlatform));
|
|
7827
|
+
// BUILD_TARGET will be replaced by values like esm5, esm2017, cjs5, etc during the compilation
|
|
7828
|
+
registerVersion(name, version, 'esm5');
|
|
7821
7829
|
}
|
|
7822
7830
|
|
|
7823
7831
|
/**
|
|
@@ -9780,4 +9788,4 @@ function generateNoEvent() {
|
|
|
9780
9788
|
}
|
|
9781
9789
|
|
|
9782
9790
|
export { fetchSignInMethodsForEmail as $, ActionCodeOperation as A, GithubAuthProvider as B, OAuthProvider as C, SAMLAuthProvider as D, EmailAuthCredential as E, FactorId as F, GoogleAuthProvider as G, signInAnonymously as H, signInWithCredential as I, linkWithCredential as J, reauthenticateWithCredential as K, signInWithCustomToken as L, sendPasswordResetEmail as M, confirmPasswordReset as N, OperationType as O, ProviderId as P, applyActionCode as Q, checkActionCode as R, SignInMethod as S, TwitterAuthProvider as T, verifyPasswordResetCode as U, createUserWithEmailAndPassword as V, signInWithEmailAndPassword as W, sendSignInLinkToEmail as X, isSignInWithEmailLink as Y, signInWithEmailLink as Z, _signInWithRedirect as _, _reauthenticateWithRedirect as a, sendEmailVerification as a0, verifyBeforeUpdateEmail as a1, ActionCodeURL as a2, parseActionCodeURL as a3, updateProfile as a4, updateEmail as a5, updatePassword as a6, getIdToken as a7, getIdTokenResult as a8, unlink as a9, _emulatorUrl as aA, _isChromeIOS as aB, _isFirefox as aC, _isIOSStandalone as aD, _isMobileBrowser as aE, _isSafari as aF, _isIOS as aG, _getRedirectResult as aH, _getRedirectUrl as aI, _setWindowLocation as aJ, AuthEventManager as aK, debugFail as aL, finalizeEnrollPhoneMfa as aM, _persistenceKeyName as aN, UserImpl as aO, _getInstance as aP, AuthImpl as aQ, _getClientVersion as aR, FetchProvider as aS, SAMLAuthCredential as aT, signInWithRedirect as aU, linkWithRedirect as aV, reauthenticateWithRedirect as aW, getAdditionalUserInfo as aa, reload as ab, getMultiFactorResolver as ac, multiFactor as ad, _performApiRequest as ae, _addTidIfNecessary as af, _createError as ag, _assert as ah, Delay as ai, _window as aj, _isHttpOrHttps as ak, _isWorker as al, _castAuth as am, sendPhoneVerificationCode as an, startEnrollPhoneMfa as ao, _assertLinkedStatus as ap, _link$1 as aq, debugAssert as ar, _generateEventId as as, AbstractPopupRedirectOperation as at, _assertInstanceOf as au, _withDefaultResolver as av, FederatedAuthProvider as aw, _fail as ax, _getProjectConfig as ay, _getCurrentUrl as az, _linkWithRedirect as b, indexedDBLocalPersistence as c, cordovaPopupRedirectResolver as d, browserLocalPersistence as e, browserSessionPersistence as f, getRedirectResult as g, onAuthStateChanged as h, initializeAuth as i, updateCurrentUser as j, signOut as k, deleteUser as l, debugErrorMap as m, AUTH_ERROR_CODES_MAP_DO_NOT_USE_INTERNALLY as n, onIdTokenChanged as o, prodErrorMap as p, connectAuthEmulator as q, registerAuth as r, setPersistence as s, AuthCredential as t, useDeviceLanguage as u, OAuthCredential as v, PhoneAuthCredential as w, inMemoryPersistence as x, EmailAuthProvider as y, FacebookAuthProvider as z };
|
|
9783
|
-
//# sourceMappingURL=popup_redirect-
|
|
9791
|
+
//# sourceMappingURL=popup_redirect-84c74ca6.js.map
|