@firebase/auth 0.19.5 → 0.19.6-canary.4983f4d5a
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 +8 -0
- package/dist/auth-public.d.ts +2 -2
- package/dist/auth.d.ts +2 -2
- package/dist/cordova/index.js +2 -2
- package/dist/cordova/internal.js +2 -2
- package/dist/cordova/{popup_redirect-83272a5f.js → popup_redirect-e5a6c774.js} +5 -5
- package/dist/cordova/popup_redirect-e5a6c774.js.map +1 -0
- package/dist/cordova/src/core/strategies/email_link.d.ts +2 -2
- package/dist/esm2017/{index-1679a2b2.js → index-6f263c78.js} +5 -5
- package/dist/esm2017/index-6f263c78.js.map +1 -0
- package/dist/esm2017/index.js +1 -1
- package/dist/esm2017/internal.js +2 -2
- package/dist/esm2017/src/core/strategies/email_link.d.ts +2 -2
- package/dist/esm5/{index-db6f49fb.js → index-b8ac8aa5.js} +5 -5
- package/dist/esm5/index-b8ac8aa5.js.map +1 -0
- package/dist/esm5/index.js +1 -1
- package/dist/esm5/internal.js +2 -2
- package/dist/esm5/src/core/strategies/email_link.d.ts +2 -2
- package/dist/index.webworker.esm5.js +4 -4
- package/dist/index.webworker.esm5.js.map +1 -1
- package/dist/node/{index-bb2c0266.js → index-6baaf933.js} +5 -5
- package/dist/node/index-6baaf933.js.map +1 -0
- package/dist/node/index.js +1 -1
- package/dist/node/internal.js +1 -1
- package/dist/node/src/core/strategies/email_link.d.ts +2 -2
- package/dist/node-esm/{index-45f4ca88.js → index-936d0290.js} +5 -5
- package/dist/node-esm/index-936d0290.js.map +1 -0
- package/dist/node-esm/index.js +1 -1
- package/dist/node-esm/internal.js +2 -2
- package/dist/node-esm/src/core/strategies/email_link.d.ts +2 -2
- package/dist/rn/index.js +1 -1
- package/dist/rn/internal.js +1 -1
- package/dist/rn/{phone-e20c697b.js → phone-a6df5e0d.js} +5 -5
- package/dist/rn/phone-a6df5e0d.js.map +1 -0
- package/dist/rn/src/core/strategies/email_link.d.ts +2 -2
- package/dist/src/core/strategies/email_link.d.ts +2 -2
- package/package.json +9 -7
- package/dist/cordova/popup_redirect-83272a5f.js.map +0 -1
- package/dist/esm2017/index-1679a2b2.js.map +0 -1
- package/dist/esm5/index-db6f49fb.js.map +0 -1
- package/dist/node/index-bb2c0266.js.map +0 -1
- package/dist/node-esm/index-45f4ca88.js.map +0 -1
- package/dist/rn/phone-e20c697b.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @firebase/auth
|
|
2
2
|
|
|
3
|
+
## 0.19.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`67b6decbb`](https://github.com/firebase/firebase-js-sdk/commit/67b6decbb9b5ee806d4109b9b6c188c4933e1270) [#5908](https://github.com/firebase/firebase-js-sdk/pull/5908) - Add cordova and react-native paths to auth package.json exports field.
|
|
8
|
+
|
|
9
|
+
* [`922e9ed9a`](https://github.com/firebase/firebase-js-sdk/commit/922e9ed9a68c130aefa0cdb9b27720b73011c397) [#5892](https://github.com/firebase/firebase-js-sdk/pull/5892) (fixes [#5874](https://github.com/firebase/firebase-js-sdk/issues/5874)) - Fix error code thrown when the network times out
|
|
10
|
+
|
|
3
11
|
## 0.19.5
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/dist/auth-public.d.ts
CHANGED
|
@@ -2822,7 +2822,7 @@ export declare function sendPasswordResetEmail(auth: Auth, email: string, action
|
|
|
2822
2822
|
* await sendSignInLinkToEmail(auth, 'user@example.com', actionCodeSettings);
|
|
2823
2823
|
* // Obtain emailLink from the user.
|
|
2824
2824
|
* if(isSignInWithEmailLink(auth, emailLink)) {
|
|
2825
|
-
* await signInWithEmailLink(
|
|
2825
|
+
* await signInWithEmailLink(auth, 'user@example.com', emailLink);
|
|
2826
2826
|
* }
|
|
2827
2827
|
* ```
|
|
2828
2828
|
*
|
|
@@ -2968,7 +2968,7 @@ export declare function signInWithEmailAndPassword(auth: Auth, email: string, pa
|
|
|
2968
2968
|
* await sendSignInLinkToEmail(auth, 'user@example.com', actionCodeSettings);
|
|
2969
2969
|
* // Obtain emailLink from the user.
|
|
2970
2970
|
* if(isSignInWithEmailLink(auth, emailLink)) {
|
|
2971
|
-
* await signInWithEmailLink(
|
|
2971
|
+
* await signInWithEmailLink(auth, 'user@example.com', emailLink);
|
|
2972
2972
|
* }
|
|
2973
2973
|
* ```
|
|
2974
2974
|
*
|
package/dist/auth.d.ts
CHANGED
|
@@ -3215,7 +3215,7 @@ export declare function sendPasswordResetEmail(auth: Auth, email: string, action
|
|
|
3215
3215
|
* await sendSignInLinkToEmail(auth, 'user@example.com', actionCodeSettings);
|
|
3216
3216
|
* // Obtain emailLink from the user.
|
|
3217
3217
|
* if(isSignInWithEmailLink(auth, emailLink)) {
|
|
3218
|
-
* await signInWithEmailLink(
|
|
3218
|
+
* await signInWithEmailLink(auth, 'user@example.com', emailLink);
|
|
3219
3219
|
* }
|
|
3220
3220
|
* ```
|
|
3221
3221
|
*
|
|
@@ -3361,7 +3361,7 @@ export declare function signInWithEmailAndPassword(auth: Auth, email: string, pa
|
|
|
3361
3361
|
* await sendSignInLinkToEmail(auth, 'user@example.com', actionCodeSettings);
|
|
3362
3362
|
* // Obtain emailLink from the user.
|
|
3363
3363
|
* if(isSignInWithEmailLink(auth, emailLink)) {
|
|
3364
|
-
* await signInWithEmailLink(
|
|
3364
|
+
* await signInWithEmailLink(auth, 'user@example.com', emailLink);
|
|
3365
3365
|
* }
|
|
3366
3366
|
* ```
|
|
3367
3367
|
*
|
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-e5a6c774.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-e5a6c774.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-e5a6c774.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-e5a6c774.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';
|
|
@@ -1891,7 +1891,7 @@ var NetworkTimeout = /** @class */ (function () {
|
|
|
1891
1891
|
this.timer = null;
|
|
1892
1892
|
this.promise = new Promise(function (_, reject) {
|
|
1893
1893
|
_this.timer = setTimeout(function () {
|
|
1894
|
-
return reject(_createError(_this.auth, "
|
|
1894
|
+
return reject(_createError(_this.auth, "network-request-failed" /* NETWORK_REQUEST_FAILED */));
|
|
1895
1895
|
}, DEFAULT_API_TIMEOUT_MS.get());
|
|
1896
1896
|
});
|
|
1897
1897
|
}
|
|
@@ -6697,7 +6697,7 @@ function signInWithEmailAndPassword(auth, email, password) {
|
|
|
6697
6697
|
* await sendSignInLinkToEmail(auth, 'user@example.com', actionCodeSettings);
|
|
6698
6698
|
* // Obtain emailLink from the user.
|
|
6699
6699
|
* if(isSignInWithEmailLink(auth, emailLink)) {
|
|
6700
|
-
* await signInWithEmailLink(
|
|
6700
|
+
* await signInWithEmailLink(auth, 'user@example.com', emailLink);
|
|
6701
6701
|
* }
|
|
6702
6702
|
* ```
|
|
6703
6703
|
*
|
|
@@ -6769,7 +6769,7 @@ function isSignInWithEmailLink(auth, emailLink) {
|
|
|
6769
6769
|
* await sendSignInLinkToEmail(auth, 'user@example.com', actionCodeSettings);
|
|
6770
6770
|
* // Obtain emailLink from the user.
|
|
6771
6771
|
* if(isSignInWithEmailLink(auth, emailLink)) {
|
|
6772
|
-
* await signInWithEmailLink(
|
|
6772
|
+
* await signInWithEmailLink(auth, 'user@example.com', emailLink);
|
|
6773
6773
|
* }
|
|
6774
6774
|
* ```
|
|
6775
6775
|
*
|
|
@@ -7701,7 +7701,7 @@ function multiFactor(user) {
|
|
|
7701
7701
|
}
|
|
7702
7702
|
|
|
7703
7703
|
var name = "@firebase/auth";
|
|
7704
|
-
var version = "0.19.
|
|
7704
|
+
var version = "0.19.6-canary.4983f4d5a";
|
|
7705
7705
|
|
|
7706
7706
|
/**
|
|
7707
7707
|
* @license
|
|
@@ -9843,4 +9843,4 @@ function generateNoEvent() {
|
|
|
9843
9843
|
}
|
|
9844
9844
|
|
|
9845
9845
|
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 };
|
|
9846
|
-
//# sourceMappingURL=popup_redirect-
|
|
9846
|
+
//# sourceMappingURL=popup_redirect-e5a6c774.js.map
|