@firebase/auth 1.13.3 → 1.13.4-20260728185501

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 (48) hide show
  1. package/dist/browser-cjs/{index-80e3689c.js → index-TiyvRZm6.js} +119 -26
  2. package/dist/browser-cjs/{index-80e3689c.js.map → index-TiyvRZm6.js.map} +1 -1
  3. package/dist/browser-cjs/index.js +1 -1
  4. package/dist/browser-cjs/internal.js +1 -1
  5. package/dist/browser-cjs/internal.js.map +1 -1
  6. package/dist/cordova/index.js +9 -3
  7. package/dist/cordova/index.js.map +1 -1
  8. package/dist/cordova/internal.js +3 -3
  9. package/dist/cordova/internal.js.map +1 -1
  10. package/dist/cordova/{popup_redirect-167cbb8f.js → popup_redirect-Be0Melsy.js} +148 -55
  11. package/dist/cordova/popup_redirect-Be0Melsy.js.map +1 -0
  12. package/dist/esm/{index-d90d2ee5.js → index-DqtyKhzu.js} +120 -27
  13. package/dist/esm/{index-d90d2ee5.js.map → index-DqtyKhzu.js.map} +1 -1
  14. package/dist/esm/index.js +1 -1
  15. package/dist/esm/internal.js +3 -3
  16. package/dist/esm/internal.js.map +1 -1
  17. package/dist/index.webworker.js +124 -70
  18. package/dist/index.webworker.js.map +1 -1
  19. package/dist/node/index.js +1 -1
  20. package/dist/node/internal.js +1 -1
  21. package/dist/node/internal.js.map +1 -1
  22. package/dist/node/{totp-9e84e53d.js → totp-D8cjDKiH.js} +30 -47
  23. package/dist/node/{totp-9e84e53d.js.map → totp-D8cjDKiH.js.map} +1 -1
  24. package/dist/node-esm/index.js +1 -1
  25. package/dist/node-esm/internal.js +3 -3
  26. package/dist/node-esm/internal.js.map +1 -1
  27. package/dist/node-esm/{totp-65577477.js → totp-BkwAJFrn.js} +31 -48
  28. package/dist/node-esm/{totp-65577477.js.map → totp-BkwAJFrn.js.map} +1 -1
  29. package/dist/rn/{index-7d302f10.js → index-BzcHGbdh.js} +24 -2
  30. package/dist/rn/{index-7d302f10.js.map → index-BzcHGbdh.js.map} +1 -1
  31. package/dist/rn/index.js +7 -1
  32. package/dist/rn/index.js.map +1 -1
  33. package/dist/rn/internal.js +96 -25
  34. package/dist/rn/internal.js.map +1 -1
  35. package/dist/web-extension-cjs/index.js +2 -1
  36. package/dist/web-extension-cjs/index.js.map +1 -1
  37. package/dist/web-extension-cjs/internal.js +1 -1
  38. package/dist/web-extension-cjs/internal.js.map +1 -1
  39. package/dist/web-extension-cjs/{register-1fdfc769.js → register-Bk5zU3vt.js} +119 -26
  40. package/dist/{web-extension-esm/register-293ebff1.js.map → web-extension-cjs/register-Bk5zU3vt.js.map} +1 -1
  41. package/dist/web-extension-esm/index.js +4 -3
  42. package/dist/web-extension-esm/index.js.map +1 -1
  43. package/dist/web-extension-esm/internal.js +3 -3
  44. package/dist/web-extension-esm/internal.js.map +1 -1
  45. package/dist/web-extension-esm/{register-293ebff1.js → register-CGKCII54.js} +120 -27
  46. package/dist/{web-extension-cjs/register-1fdfc769.js.map → web-extension-esm/register-CGKCII54.js.map} +1 -1
  47. package/package.json +13 -12
  48. package/dist/cordova/popup_redirect-167cbb8f.js.map +0 -1
@@ -1478,6 +1478,7 @@ function extractProviderData(providers) {
1478
1478
  * See the License for the specific language governing permissions and
1479
1479
  * limitations under the License.
1480
1480
  */
1481
+ /* eslint-disable camelcase */
1481
1482
  async function requestStsToken(auth, refreshToken) {
1482
1483
  const response = await _performFetchWithErrorHandling(auth, {}, async () => {
1483
1484
  const body = util.querystring({
@@ -3330,6 +3331,22 @@ function generateRandomAlphaNumericString(len) {
3330
3331
  }
3331
3332
 
3332
3333
  /* eslint-disable @typescript-eslint/no-require-imports */
3334
+ /**
3335
+ * @license
3336
+ * Copyright 2022 Google LLC
3337
+ *
3338
+ * Licensed under the Apache License, Version 2.0 (the "License");
3339
+ * you may not use this file except in compliance with the License.
3340
+ * You may obtain a copy of the License at
3341
+ *
3342
+ * http://www.apache.org/licenses/LICENSE-2.0
3343
+ *
3344
+ * Unless required by applicable law or agreed to in writing, software
3345
+ * distributed under the License is distributed on an "AS IS" BASIS,
3346
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3347
+ * See the License for the specific language governing permissions and
3348
+ * limitations under the License.
3349
+ */
3333
3350
  const RECAPTCHA_ENTERPRISE_VERIFIER_TYPE = 'recaptcha-enterprise';
3334
3351
  const FAKE_TOKEN = 'NO_RECAPTCHA';
3335
3352
  const RECAPTCHA_ENTERPRISE_ONLOAD_CALLBACK_NAME = 'onFirebaseAuthREInstanceReady';
@@ -5193,6 +5210,11 @@ GithubAuthProvider.PROVIDER_ID = "github.com" /* ProviderId.GITHUB */;
5193
5210
  * See the License for the specific language governing permissions and
5194
5211
  * limitations under the License.
5195
5212
  */
5213
+ /**
5214
+ * Represents the SAML credentials returned by an {@link SAMLAuthProvider}.
5215
+ *
5216
+ * @public
5217
+ */
5196
5218
  const IDP_REQUEST_URI = 'http://localhost';
5197
5219
  /**
5198
5220
  * @public
@@ -7253,7 +7275,7 @@ function multiFactor(user) {
7253
7275
  }
7254
7276
 
7255
7277
  var name = "@firebase/auth";
7256
- var version = "1.13.3";
7278
+ var version = "1.13.4-20260728185501";
7257
7279
 
7258
7280
  /**
7259
7281
  * @license
@@ -8708,4 +8730,4 @@ exports.useDeviceLanguage = useDeviceLanguage;
8708
8730
  exports.validatePassword = validatePassword;
8709
8731
  exports.verifyBeforeUpdateEmail = verifyBeforeUpdateEmail;
8710
8732
  exports.verifyPasswordResetCode = verifyPasswordResetCode;
8711
- //# sourceMappingURL=index-7d302f10.js.map
8733
+ //# sourceMappingURL=index-BzcHGbdh.js.map