@firebase/auth 1.10.2 → 1.10.3-20250512211235
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/browser-cjs/{index-cdd9f4d9.js → index-421084a7.js} +10 -6
- package/dist/browser-cjs/index-421084a7.js.map +1 -0
- package/dist/browser-cjs/index.js +1 -1
- package/dist/browser-cjs/internal.js +1 -1
- package/dist/cordova/index.js +2 -2
- package/dist/cordova/internal.js +6 -3
- package/dist/cordova/internal.js.map +1 -1
- package/dist/cordova/{popup_redirect-29a29390.js → popup_redirect-ae663fde.js} +8 -7
- package/dist/cordova/popup_redirect-ae663fde.js.map +1 -0
- package/dist/esm2017/{index-68039fd7.js → index-9b022a8f.js} +11 -7
- package/dist/esm2017/index-9b022a8f.js.map +1 -0
- package/dist/esm2017/index.js +1 -1
- package/dist/esm2017/internal.js +2 -2
- package/dist/index.webworker.js +7 -6
- package/dist/index.webworker.js.map +1 -1
- package/dist/node/index.js +1 -1
- package/dist/node/internal.js +1 -1
- package/dist/node/{totp-2100a748.js → totp-b2fea68c.js} +7 -6
- package/dist/node/totp-b2fea68c.js.map +1 -0
- package/dist/node-esm/index.js +1 -1
- package/dist/node-esm/internal.js +2 -2
- package/dist/node-esm/{totp-623ce67b.js → totp-1f07d367.js} +8 -7
- package/dist/node-esm/totp-1f07d367.js.map +1 -0
- package/dist/rn/{index-25ca5d1a.js → index-123947b0.js} +7 -6
- package/dist/rn/index-123947b0.js.map +1 -0
- package/dist/rn/index.js +1 -1
- package/dist/rn/internal.js +4 -1
- package/dist/rn/internal.js.map +1 -1
- package/dist/web-extension-cjs/index.js +1 -1
- package/dist/web-extension-cjs/internal.js +4 -1
- package/dist/web-extension-cjs/internal.js.map +1 -1
- package/dist/web-extension-cjs/{register-6f3f23c9.js → register-5ff87d3c.js} +7 -6
- package/dist/web-extension-cjs/register-5ff87d3c.js.map +1 -0
- package/dist/web-extension-esm2017/index.js +2 -2
- package/dist/web-extension-esm2017/internal.js +6 -3
- package/dist/web-extension-esm2017/internal.js.map +1 -1
- package/dist/web-extension-esm2017/{register-df079504.js → register-abc15b1e.js} +8 -7
- package/dist/web-extension-esm2017/register-abc15b1e.js.map +1 -0
- package/package.json +5 -5
- package/dist/browser-cjs/index-cdd9f4d9.js.map +0 -1
- package/dist/cordova/popup_redirect-29a29390.js.map +0 -1
- package/dist/esm2017/index-68039fd7.js.map +0 -1
- package/dist/node/totp-2100a748.js.map +0 -1
- package/dist/node-esm/totp-623ce67b.js.map +0 -1
- package/dist/rn/index-25ca5d1a.js.map +0 -1
- package/dist/web-extension-cjs/register-6f3f23c9.js.map +0 -1
- package/dist/web-extension-esm2017/register-df079504.js.map +0 -1
|
@@ -3775,13 +3775,14 @@ function connectAuthEmulator(auth, url, options) {
|
|
|
3775
3775
|
authInternal.config.emulator = emulator;
|
|
3776
3776
|
authInternal.emulatorConfig = emulatorConfig;
|
|
3777
3777
|
authInternal.settings.appVerificationDisabledForTesting = true;
|
|
3778
|
-
if (!disableWarnings) {
|
|
3779
|
-
emitEmulatorWarning();
|
|
3780
|
-
}
|
|
3781
|
-
// Workaround to get cookies in Firebase Studio
|
|
3782
3778
|
if (util.isCloudWorkstation(host)) {
|
|
3779
|
+
util.updateEmulatorBanner('Auth', true);
|
|
3780
|
+
// Workaround to get cookies in Firebase Studio
|
|
3783
3781
|
void util.pingServer(`${protocol}//${host}${portStr}`);
|
|
3784
3782
|
}
|
|
3783
|
+
else if (!disableWarnings) {
|
|
3784
|
+
emitEmulatorWarning();
|
|
3785
|
+
}
|
|
3785
3786
|
}
|
|
3786
3787
|
function extractProtocol(url) {
|
|
3787
3788
|
const protocolEnd = url.indexOf(':');
|
|
@@ -10883,7 +10884,7 @@ function _isEmptyString(input) {
|
|
|
10883
10884
|
}
|
|
10884
10885
|
|
|
10885
10886
|
var name = "@firebase/auth";
|
|
10886
|
-
var version = "1.10.
|
|
10887
|
+
var version = "1.10.3-20250512211235";
|
|
10887
10888
|
|
|
10888
10889
|
/**
|
|
10889
10890
|
* @license
|
|
@@ -11108,6 +11109,9 @@ function getAuth(app$1 = app.getApp()) {
|
|
|
11108
11109
|
if (authEmulatorHost) {
|
|
11109
11110
|
connectAuthEmulator(auth, `http://${authEmulatorHost}`);
|
|
11110
11111
|
}
|
|
11112
|
+
else {
|
|
11113
|
+
util.updateEmulatorBanner('Auth', false);
|
|
11114
|
+
}
|
|
11111
11115
|
return auth;
|
|
11112
11116
|
}
|
|
11113
11117
|
function getScriptParentElement() {
|
|
@@ -11245,4 +11249,4 @@ exports.useDeviceLanguage = useDeviceLanguage;
|
|
|
11245
11249
|
exports.validatePassword = validatePassword;
|
|
11246
11250
|
exports.verifyBeforeUpdateEmail = verifyBeforeUpdateEmail;
|
|
11247
11251
|
exports.verifyPasswordResetCode = verifyPasswordResetCode;
|
|
11248
|
-
//# sourceMappingURL=index-
|
|
11252
|
+
//# sourceMappingURL=index-421084a7.js.map
|