@azure/msal-browser 3.24.0 → 3.25.0

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 (79) hide show
  1. package/README.md +1 -1
  2. package/dist/app/IPublicClientApplication.mjs +1 -1
  3. package/dist/app/PublicClientApplication.mjs +1 -1
  4. package/dist/app/PublicClientNext.mjs +1 -1
  5. package/dist/broker/nativeBroker/NativeMessageHandler.mjs +1 -1
  6. package/dist/broker/nativeBroker/NativeStatusCodes.mjs +1 -1
  7. package/dist/cache/AccountManager.mjs +1 -1
  8. package/dist/cache/AsyncMemoryStorage.mjs +1 -1
  9. package/dist/cache/BrowserCacheManager.mjs +1 -1
  10. package/dist/cache/BrowserStorage.mjs +1 -1
  11. package/dist/cache/DatabaseStorage.mjs +1 -1
  12. package/dist/cache/MemoryStorage.mjs +1 -1
  13. package/dist/cache/TokenCache.mjs +1 -1
  14. package/dist/config/Configuration.mjs +1 -1
  15. package/dist/controllers/ControllerFactory.mjs +1 -1
  16. package/dist/controllers/NestedAppAuthController.mjs +1 -1
  17. package/dist/controllers/StandardController.mjs +1 -1
  18. package/dist/controllers/UnknownOperatingContextController.mjs +1 -1
  19. package/dist/crypto/BrowserCrypto.mjs +1 -1
  20. package/dist/crypto/CryptoOps.mjs +1 -1
  21. package/dist/crypto/PkceGenerator.mjs +1 -1
  22. package/dist/crypto/SignedHttpRequest.mjs +1 -1
  23. package/dist/encode/Base64Decode.mjs +1 -1
  24. package/dist/encode/Base64Encode.mjs +1 -1
  25. package/dist/error/BrowserAuthError.mjs +1 -1
  26. package/dist/error/BrowserAuthErrorCodes.mjs +1 -1
  27. package/dist/error/BrowserConfigurationAuthError.mjs +1 -1
  28. package/dist/error/BrowserConfigurationAuthErrorCodes.mjs +1 -1
  29. package/dist/error/NativeAuthError.mjs +1 -1
  30. package/dist/error/NativeAuthErrorCodes.mjs +1 -1
  31. package/dist/error/NestedAppAuthError.mjs +1 -1
  32. package/dist/event/EventHandler.mjs +1 -1
  33. package/dist/event/EventMessage.mjs +1 -1
  34. package/dist/event/EventType.mjs +1 -1
  35. package/dist/index.mjs +1 -1
  36. package/dist/interaction_client/BaseInteractionClient.mjs +1 -1
  37. package/dist/interaction_client/HybridSpaAuthorizationCodeClient.mjs +1 -1
  38. package/dist/interaction_client/NativeInteractionClient.mjs +1 -1
  39. package/dist/interaction_client/PopupClient.mjs +1 -1
  40. package/dist/interaction_client/RedirectClient.d.ts.map +1 -1
  41. package/dist/interaction_client/RedirectClient.mjs +20 -2
  42. package/dist/interaction_client/RedirectClient.mjs.map +1 -1
  43. package/dist/interaction_client/SilentAuthCodeClient.mjs +1 -1
  44. package/dist/interaction_client/SilentCacheClient.mjs +1 -1
  45. package/dist/interaction_client/SilentIframeClient.mjs +1 -1
  46. package/dist/interaction_client/SilentRefreshClient.mjs +1 -1
  47. package/dist/interaction_client/StandardInteractionClient.mjs +1 -1
  48. package/dist/interaction_handler/InteractionHandler.mjs +1 -1
  49. package/dist/interaction_handler/RedirectHandler.mjs +1 -1
  50. package/dist/interaction_handler/SilentHandler.mjs +1 -1
  51. package/dist/naa/BridgeError.mjs +1 -1
  52. package/dist/naa/BridgeProxy.mjs +1 -1
  53. package/dist/naa/BridgeStatusCode.mjs +1 -1
  54. package/dist/naa/mapping/NestedAppAuthAdapter.mjs +1 -1
  55. package/dist/navigation/NavigationClient.mjs +1 -1
  56. package/dist/network/FetchClient.mjs +1 -1
  57. package/dist/operatingcontext/BaseOperatingContext.mjs +1 -1
  58. package/dist/operatingcontext/NestedAppOperatingContext.mjs +1 -1
  59. package/dist/operatingcontext/StandardOperatingContext.mjs +1 -1
  60. package/dist/operatingcontext/UnknownOperatingContext.mjs +1 -1
  61. package/dist/packageMetadata.d.ts +1 -1
  62. package/dist/packageMetadata.mjs +2 -2
  63. package/dist/request/RequestHelpers.mjs +1 -1
  64. package/dist/response/ResponseHandler.mjs +1 -1
  65. package/dist/telemetry/BrowserPerformanceClient.mjs +1 -1
  66. package/dist/telemetry/BrowserPerformanceMeasurement.mjs +1 -1
  67. package/dist/utils/BrowserConstants.mjs +1 -1
  68. package/dist/utils/BrowserProtocolUtils.mjs +1 -1
  69. package/dist/utils/BrowserUtils.mjs +1 -1
  70. package/lib/msal-browser.cjs +84 -66
  71. package/lib/msal-browser.cjs.map +1 -1
  72. package/lib/msal-browser.js +84 -66
  73. package/lib/msal-browser.js.map +1 -1
  74. package/lib/msal-browser.min.js +61 -61
  75. package/lib/types/interaction_client/RedirectClient.d.ts.map +1 -1
  76. package/lib/types/packageMetadata.d.ts +1 -1
  77. package/package.json +2 -4
  78. package/src/interaction_client/RedirectClient.ts +25 -1
  79. package/src/packageMetadata.ts +1 -1
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.24.0 2024-09-20 */
1
+ /*! @azure/msal-browser v3.25.0 2024-10-03 */
2
2
  'use strict';
3
3
  import { ProtocolUtils, createClientAuthError, ClientAuthErrorCodes } from '@azure/msal-common/browser';
4
4
 
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.24.0 2024-09-20 */
1
+ /*! @azure/msal-browser v3.25.0 2024-10-03 */
2
2
  'use strict';
3
3
  import { UrlString } from '@azure/msal-common/browser';
4
4
  export { invoke, invokeAsync } from '@azure/msal-common/browser';
@@ -1,8 +1,8 @@
1
- /*! @azure/msal-browser v3.24.0 2024-09-20 */
1
+ /*! @azure/msal-browser v3.25.0 2024-10-03 */
2
2
  'use strict';
3
3
  'use strict';
4
4
 
5
- /*! @azure/msal-common v14.15.0 2024-09-20 */
5
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
6
6
  /*
7
7
  * Copyright (c) Microsoft Corporation. All rights reserved.
8
8
  * Licensed under the MIT License.
@@ -311,7 +311,7 @@ const JsonWebTokenTypes = {
311
311
  // Token renewal offset default in seconds
312
312
  const DEFAULT_TOKEN_RENEWAL_OFFSET_SEC = 300;
313
313
 
314
- /*! @azure/msal-common v14.15.0 2024-09-20 */
314
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
315
315
  /*
316
316
  * Copyright (c) Microsoft Corporation. All rights reserved.
317
317
  * Licensed under the MIT License.
@@ -328,7 +328,7 @@ var AuthErrorCodes = /*#__PURE__*/Object.freeze({
328
328
  unexpectedError: unexpectedError
329
329
  });
330
330
 
331
- /*! @azure/msal-common v14.15.0 2024-09-20 */
331
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
332
332
 
333
333
  /*
334
334
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -377,7 +377,7 @@ function createAuthError(code, additionalMessage) {
377
377
  : AuthErrorMessages[code]);
378
378
  }
379
379
 
380
- /*! @azure/msal-common v14.15.0 2024-09-20 */
380
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
381
381
  /*
382
382
  * Copyright (c) Microsoft Corporation. All rights reserved.
383
383
  * Licensed under the MIT License.
@@ -475,7 +475,7 @@ var ClientAuthErrorCodes = /*#__PURE__*/Object.freeze({
475
475
  userTimeoutReached: userTimeoutReached
476
476
  });
477
477
 
478
- /*! @azure/msal-common v14.15.0 2024-09-20 */
478
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
479
479
 
480
480
  /*
481
481
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -727,7 +727,7 @@ function createClientAuthError(errorCode, additionalMessage) {
727
727
  return new ClientAuthError(errorCode, additionalMessage);
728
728
  }
729
729
 
730
- /*! @azure/msal-common v14.15.0 2024-09-20 */
730
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
731
731
 
732
732
  /*
733
733
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -766,7 +766,7 @@ const DEFAULT_CRYPTO_IMPLEMENTATION = {
766
766
  },
767
767
  };
768
768
 
769
- /*! @azure/msal-common v14.15.0 2024-09-20 */
769
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
770
770
 
771
771
  /*
772
772
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -957,12 +957,12 @@ class Logger {
957
957
  }
958
958
  }
959
959
 
960
- /*! @azure/msal-common v14.15.0 2024-09-20 */
960
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
961
961
  /* eslint-disable header/header */
962
962
  const name$1 = "@azure/msal-common";
963
963
  const version$1 = "14.15.0";
964
964
 
965
- /*! @azure/msal-common v14.15.0 2024-09-20 */
965
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
966
966
  /*
967
967
  * Copyright (c) Microsoft Corporation. All rights reserved.
968
968
  * Licensed under the MIT License.
@@ -982,7 +982,7 @@ const AzureCloudInstance = {
982
982
  AzureUsGovernment: "https://login.microsoftonline.us",
983
983
  };
984
984
 
985
- /*! @azure/msal-common v14.15.0 2024-09-20 */
985
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
986
986
 
987
987
  /*
988
988
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1043,7 +1043,7 @@ function checkMaxAge(authTime, maxAge) {
1043
1043
  }
1044
1044
  }
1045
1045
 
1046
- /*! @azure/msal-common v14.15.0 2024-09-20 */
1046
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
1047
1047
  /*
1048
1048
  * Copyright (c) Microsoft Corporation. All rights reserved.
1049
1049
  * Licensed under the MIT License.
@@ -1080,7 +1080,7 @@ function wasClockTurnedBack(cachedAt) {
1080
1080
  return cachedAtSec > nowSeconds();
1081
1081
  }
1082
1082
 
1083
- /*! @azure/msal-common v14.15.0 2024-09-20 */
1083
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
1084
1084
 
1085
1085
  /*
1086
1086
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1407,7 +1407,7 @@ function isAuthorityMetadataExpired(metadata) {
1407
1407
  return metadata.expiresAt <= nowSeconds();
1408
1408
  }
1409
1409
 
1410
- /*! @azure/msal-common v14.15.0 2024-09-20 */
1410
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
1411
1411
  /*
1412
1412
  * Copyright (c) Microsoft Corporation. All rights reserved.
1413
1413
  * Licensed under the MIT License.
@@ -1461,7 +1461,7 @@ var ClientConfigurationErrorCodes = /*#__PURE__*/Object.freeze({
1461
1461
  urlParseError: urlParseError
1462
1462
  });
1463
1463
 
1464
- /*! @azure/msal-common v14.15.0 2024-09-20 */
1464
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
1465
1465
 
1466
1466
  /*
1467
1467
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1599,7 +1599,7 @@ function createClientConfigurationError(errorCode) {
1599
1599
  return new ClientConfigurationError(errorCode);
1600
1600
  }
1601
1601
 
1602
- /*! @azure/msal-common v14.15.0 2024-09-20 */
1602
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
1603
1603
  /*
1604
1604
  * Copyright (c) Microsoft Corporation. All rights reserved.
1605
1605
  * Licensed under the MIT License.
@@ -1696,7 +1696,7 @@ class StringUtils {
1696
1696
  }
1697
1697
  }
1698
1698
 
1699
- /*! @azure/msal-common v14.15.0 2024-09-20 */
1699
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
1700
1700
 
1701
1701
  /*
1702
1702
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1896,7 +1896,7 @@ class ScopeSet {
1896
1896
  }
1897
1897
  }
1898
1898
 
1899
- /*! @azure/msal-common v14.15.0 2024-09-20 */
1899
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
1900
1900
 
1901
1901
  /*
1902
1902
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1936,7 +1936,7 @@ function buildClientInfoFromHomeAccountId(homeAccountId) {
1936
1936
  };
1937
1937
  }
1938
1938
 
1939
- /*! @azure/msal-common v14.15.0 2024-09-20 */
1939
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
1940
1940
  /*
1941
1941
  * Copyright (c) Microsoft Corporation. All rights reserved.
1942
1942
  * Licensed under the MIT License.
@@ -2015,7 +2015,7 @@ function updateAccountTenantProfileData(baseAccountInfo, tenantProfile, idTokenC
2015
2015
  return updatedAccountInfo;
2016
2016
  }
2017
2017
 
2018
- /*! @azure/msal-common v14.15.0 2024-09-20 */
2018
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
2019
2019
  /*
2020
2020
  * Copyright (c) Microsoft Corporation. All rights reserved.
2021
2021
  * Licensed under the MIT License.
@@ -2030,7 +2030,7 @@ const AuthorityType = {
2030
2030
  Ciam: 3,
2031
2031
  };
2032
2032
 
2033
- /*! @azure/msal-common v14.15.0 2024-09-20 */
2033
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
2034
2034
  /*
2035
2035
  * Copyright (c) Microsoft Corporation. All rights reserved.
2036
2036
  * Licensed under the MIT License.
@@ -2052,7 +2052,7 @@ function getTenantIdFromIdTokenClaims(idTokenClaims) {
2052
2052
  return null;
2053
2053
  }
2054
2054
 
2055
- /*! @azure/msal-common v14.15.0 2024-09-20 */
2055
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
2056
2056
  /*
2057
2057
  * Copyright (c) Microsoft Corporation. All rights reserved.
2058
2058
  * Licensed under the MIT License.
@@ -2065,7 +2065,7 @@ const ProtocolMode = {
2065
2065
  OIDC: "OIDC",
2066
2066
  };
2067
2067
 
2068
- /*! @azure/msal-common v14.15.0 2024-09-20 */
2068
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
2069
2069
 
2070
2070
  /*
2071
2071
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2308,7 +2308,7 @@ class AccountEntity {
2308
2308
  }
2309
2309
  }
2310
2310
 
2311
- /*! @azure/msal-common v14.15.0 2024-09-20 */
2311
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
2312
2312
 
2313
2313
  /*
2314
2314
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2355,7 +2355,7 @@ function getDeserializedResponse(responseString) {
2355
2355
  return null;
2356
2356
  }
2357
2357
 
2358
- /*! @azure/msal-common v14.15.0 2024-09-20 */
2358
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
2359
2359
 
2360
2360
  /*
2361
2361
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2519,7 +2519,7 @@ class UrlString {
2519
2519
  }
2520
2520
  }
2521
2521
 
2522
- /*! @azure/msal-common v14.15.0 2024-09-20 */
2522
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
2523
2523
 
2524
2524
  /*
2525
2525
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2659,7 +2659,7 @@ function getCloudDiscoveryMetadataFromNetworkResponse(response, authorityHost) {
2659
2659
  return null;
2660
2660
  }
2661
2661
 
2662
- /*! @azure/msal-common v14.15.0 2024-09-20 */
2662
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
2663
2663
  /*
2664
2664
  * Copyright (c) Microsoft Corporation. All rights reserved.
2665
2665
  * Licensed under the MIT License.
@@ -2667,7 +2667,7 @@ function getCloudDiscoveryMetadataFromNetworkResponse(response, authorityHost) {
2667
2667
  const cacheQuotaExceededErrorCode = "cache_quota_exceeded";
2668
2668
  const cacheUnknownErrorCode = "cache_error_unknown";
2669
2669
 
2670
- /*! @azure/msal-common v14.15.0 2024-09-20 */
2670
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
2671
2671
 
2672
2672
  /*
2673
2673
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2694,7 +2694,7 @@ class CacheError extends Error {
2694
2694
  }
2695
2695
  }
2696
2696
 
2697
- /*! @azure/msal-common v14.15.0 2024-09-20 */
2697
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
2698
2698
 
2699
2699
  /*
2700
2700
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3946,7 +3946,7 @@ class DefaultStorageClass extends CacheManager {
3946
3946
  }
3947
3947
  }
3948
3948
 
3949
- /*! @azure/msal-common v14.15.0 2024-09-20 */
3949
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
3950
3950
 
3951
3951
  /*
3952
3952
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4045,7 +4045,7 @@ function isOidcProtocolMode(config) {
4045
4045
  return (config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC);
4046
4046
  }
4047
4047
 
4048
- /*! @azure/msal-common v14.15.0 2024-09-20 */
4048
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
4049
4049
 
4050
4050
  /*
4051
4051
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4064,7 +4064,7 @@ class ServerError extends AuthError {
4064
4064
  }
4065
4065
  }
4066
4066
 
4067
- /*! @azure/msal-common v14.15.0 2024-09-20 */
4067
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
4068
4068
 
4069
4069
  /*
4070
4070
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4162,7 +4162,7 @@ class ThrottlingUtils {
4162
4162
  }
4163
4163
  }
4164
4164
 
4165
- /*! @azure/msal-common v14.15.0 2024-09-20 */
4165
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
4166
4166
 
4167
4167
  /*
4168
4168
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4199,7 +4199,7 @@ class NetworkManager {
4199
4199
  }
4200
4200
  }
4201
4201
 
4202
- /*! @azure/msal-common v14.15.0 2024-09-20 */
4202
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
4203
4203
  /*
4204
4204
  * Copyright (c) Microsoft Corporation. All rights reserved.
4205
4205
  * Licensed under the MIT License.
@@ -4209,7 +4209,7 @@ const CcsCredentialType = {
4209
4209
  UPN: "UPN",
4210
4210
  };
4211
4211
 
4212
- /*! @azure/msal-common v14.15.0 2024-09-20 */
4212
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
4213
4213
  /*
4214
4214
  * Copyright (c) Microsoft Corporation. All rights reserved.
4215
4215
  * Licensed under the MIT License.
@@ -4257,7 +4257,7 @@ const LOGIN_HINT = "login_hint";
4257
4257
  const DOMAIN_HINT = "domain_hint";
4258
4258
  const X_CLIENT_EXTRA_SKU = "x-client-xtra-sku";
4259
4259
 
4260
- /*! @azure/msal-common v14.15.0 2024-09-20 */
4260
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
4261
4261
 
4262
4262
  /*
4263
4263
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4324,7 +4324,7 @@ class RequestValidator {
4324
4324
  }
4325
4325
  }
4326
4326
 
4327
- /*! @azure/msal-common v14.15.0 2024-09-20 */
4327
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
4328
4328
 
4329
4329
  /*
4330
4330
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4709,7 +4709,7 @@ class RequestParameterBuilder {
4709
4709
  }
4710
4710
  }
4711
4711
 
4712
- /*! @azure/msal-common v14.15.0 2024-09-20 */
4712
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
4713
4713
  /*
4714
4714
  * Copyright (c) Microsoft Corporation. All rights reserved.
4715
4715
  * Licensed under the MIT License.
@@ -4721,7 +4721,7 @@ function isOpenIdConfigResponse(response) {
4721
4721
  response.hasOwnProperty("jwks_uri"));
4722
4722
  }
4723
4723
 
4724
- /*! @azure/msal-common v14.15.0 2024-09-20 */
4724
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
4725
4725
  /*
4726
4726
  * Copyright (c) Microsoft Corporation. All rights reserved.
4727
4727
  * Licensed under the MIT License.
@@ -4731,7 +4731,7 @@ function isCloudInstanceDiscoveryResponse(response) {
4731
4731
  response.hasOwnProperty("metadata"));
4732
4732
  }
4733
4733
 
4734
- /*! @azure/msal-common v14.15.0 2024-09-20 */
4734
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
4735
4735
  /*
4736
4736
  * Copyright (c) Microsoft Corporation. All rights reserved.
4737
4737
  * Licensed under the MIT License.
@@ -4741,7 +4741,7 @@ function isCloudInstanceDiscoveryErrorResponse(response) {
4741
4741
  response.hasOwnProperty("error_description"));
4742
4742
  }
4743
4743
 
4744
- /*! @azure/msal-common v14.15.0 2024-09-20 */
4744
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
4745
4745
  /*
4746
4746
  * Copyright (c) Microsoft Corporation. All rights reserved.
4747
4747
  * Licensed under the MIT License.
@@ -5223,7 +5223,7 @@ const IntFields = new Set([
5223
5223
  "multiMatchedRT",
5224
5224
  ]);
5225
5225
 
5226
- /*! @azure/msal-common v14.15.0 2024-09-20 */
5226
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
5227
5227
  /*
5228
5228
  * Copyright (c) Microsoft Corporation. All rights reserved.
5229
5229
  * Licensed under the MIT License.
@@ -5319,7 +5319,7 @@ const invokeAsync = (callback, eventName, logger, telemetryClient, correlationId
5319
5319
  };
5320
5320
  };
5321
5321
 
5322
- /*! @azure/msal-common v14.15.0 2024-09-20 */
5322
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
5323
5323
 
5324
5324
  /*
5325
5325
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5428,7 +5428,7 @@ RegionDiscovery.IMDS_OPTIONS = {
5428
5428
  },
5429
5429
  };
5430
5430
 
5431
- /*! @azure/msal-common v14.15.0 2024-09-20 */
5431
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
5432
5432
 
5433
5433
  /*
5434
5434
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6267,7 +6267,7 @@ function buildStaticAuthorityOptions(authOptions) {
6267
6267
  };
6268
6268
  }
6269
6269
 
6270
- /*! @azure/msal-common v14.15.0 2024-09-20 */
6270
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
6271
6271
 
6272
6272
  /*
6273
6273
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6298,7 +6298,7 @@ async function createDiscoveredInstance(authorityUri, networkClient, cacheManage
6298
6298
  }
6299
6299
  }
6300
6300
 
6301
- /*! @azure/msal-common v14.15.0 2024-09-20 */
6301
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
6302
6302
 
6303
6303
  /*
6304
6304
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6401,7 +6401,7 @@ class BaseClient {
6401
6401
  }
6402
6402
  }
6403
6403
 
6404
- /*! @azure/msal-common v14.15.0 2024-09-20 */
6404
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
6405
6405
  /*
6406
6406
  * Copyright (c) Microsoft Corporation. All rights reserved.
6407
6407
  * Licensed under the MIT License.
@@ -6427,7 +6427,7 @@ var InteractionRequiredAuthErrorCodes = /*#__PURE__*/Object.freeze({
6427
6427
  refreshTokenExpired: refreshTokenExpired
6428
6428
  });
6429
6429
 
6430
- /*! @azure/msal-common v14.15.0 2024-09-20 */
6430
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
6431
6431
 
6432
6432
  /*
6433
6433
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6515,7 +6515,7 @@ function createInteractionRequiredAuthError(errorCode) {
6515
6515
  return new InteractionRequiredAuthError(errorCode, InteractionRequiredAuthErrorMessages[errorCode]);
6516
6516
  }
6517
6517
 
6518
- /*! @azure/msal-common v14.15.0 2024-09-20 */
6518
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
6519
6519
 
6520
6520
  /*
6521
6521
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6587,7 +6587,7 @@ class ProtocolUtils {
6587
6587
  }
6588
6588
  }
6589
6589
 
6590
- /*! @azure/msal-common v14.15.0 2024-09-20 */
6590
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
6591
6591
 
6592
6592
  /*
6593
6593
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6671,7 +6671,7 @@ class PopTokenGenerator {
6671
6671
  }
6672
6672
  }
6673
6673
 
6674
- /*! @azure/msal-common v14.15.0 2024-09-20 */
6674
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
6675
6675
  /*
6676
6676
  * Copyright (c) Microsoft Corporation. All rights reserved.
6677
6677
  * Licensed under the MIT License.
@@ -6698,7 +6698,7 @@ class PopTokenGenerator {
6698
6698
  }
6699
6699
  }
6700
6700
 
6701
- /*! @azure/msal-common v14.15.0 2024-09-20 */
6701
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
6702
6702
 
6703
6703
  /*
6704
6704
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7075,7 +7075,7 @@ function buildAccountToCache(cacheStorage, authority, homeAccountId, base64Decod
7075
7075
  return baseAccount;
7076
7076
  }
7077
7077
 
7078
- /*! @azure/msal-common v14.15.0 2024-09-20 */
7078
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
7079
7079
  /*
7080
7080
  * Copyright (c) Microsoft Corporation. All rights reserved.
7081
7081
  * Licensed under the MIT License.
@@ -7093,7 +7093,7 @@ async function getClientAssertion(clientAssertion, clientId, tokenEndpoint) {
7093
7093
  }
7094
7094
  }
7095
7095
 
7096
- /*! @azure/msal-common v14.15.0 2024-09-20 */
7096
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
7097
7097
 
7098
7098
  /*
7099
7099
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7524,7 +7524,7 @@ class AuthorizationCodeClient extends BaseClient {
7524
7524
  }
7525
7525
  }
7526
7526
 
7527
- /*! @azure/msal-common v14.15.0 2024-09-20 */
7527
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
7528
7528
 
7529
7529
  /*
7530
7530
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7738,7 +7738,7 @@ class RefreshTokenClient extends BaseClient {
7738
7738
  }
7739
7739
  }
7740
7740
 
7741
- /*! @azure/msal-common v14.15.0 2024-09-20 */
7741
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
7742
7742
 
7743
7743
  /*
7744
7744
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7874,7 +7874,7 @@ class SilentFlowClient extends BaseClient {
7874
7874
  }
7875
7875
  }
7876
7876
 
7877
- /*! @azure/msal-common v14.15.0 2024-09-20 */
7877
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
7878
7878
 
7879
7879
  /*
7880
7880
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7889,7 +7889,7 @@ const StubbedNetworkModule = {
7889
7889
  },
7890
7890
  };
7891
7891
 
7892
- /*! @azure/msal-common v14.15.0 2024-09-20 */
7892
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
7893
7893
 
7894
7894
  /*
7895
7895
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7947,7 +7947,7 @@ class AuthenticationHeaderParser {
7947
7947
  }
7948
7948
  }
7949
7949
 
7950
- /*! @azure/msal-common v14.15.0 2024-09-20 */
7950
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
7951
7951
 
7952
7952
  /*
7953
7953
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -8210,7 +8210,7 @@ class ServerTelemetryManager {
8210
8210
  }
8211
8211
  }
8212
8212
 
8213
- /*! @azure/msal-common v14.15.0 2024-09-20 */
8213
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
8214
8214
  /*
8215
8215
  * Copyright (c) Microsoft Corporation. All rights reserved.
8216
8216
  * Licensed under the MIT License.
@@ -8218,7 +8218,7 @@ class ServerTelemetryManager {
8218
8218
  const missingKidError = "missing_kid_error";
8219
8219
  const missingAlgError = "missing_alg_error";
8220
8220
 
8221
- /*! @azure/msal-common v14.15.0 2024-09-20 */
8221
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
8222
8222
 
8223
8223
  /*
8224
8224
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -8243,7 +8243,7 @@ function createJoseHeaderError(code) {
8243
8243
  return new JoseHeaderError(code, JoseHeaderErrorMessages[code]);
8244
8244
  }
8245
8245
 
8246
- /*! @azure/msal-common v14.15.0 2024-09-20 */
8246
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
8247
8247
 
8248
8248
  /*
8249
8249
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -8283,7 +8283,7 @@ class JoseHeader {
8283
8283
  }
8284
8284
  }
8285
8285
 
8286
- /*! @azure/msal-common v14.15.0 2024-09-20 */
8286
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
8287
8287
 
8288
8288
  /*
8289
8289
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -8362,7 +8362,7 @@ class StubPerformanceClient {
8362
8362
  }
8363
8363
  }
8364
8364
 
8365
- /*! @azure/msal-common v14.15.0 2024-09-20 */
8365
+ /*! @azure/msal-common v14.15.0 2024-10-03 */
8366
8366
 
8367
8367
  /*
8368
8368
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -10234,7 +10234,7 @@ function buildConfiguration({ auth: userInputAuth, cache: userInputCache, system
10234
10234
 
10235
10235
  /* eslint-disable header/header */
10236
10236
  const name = "@azure/msal-browser";
10237
- const version = "3.24.0";
10237
+ const version = "3.25.0";
10238
10238
 
10239
10239
  /*
10240
10240
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -14988,6 +14988,18 @@ class RedirectHandler {
14988
14988
  * Copyright (c) Microsoft Corporation. All rights reserved.
14989
14989
  * Licensed under the MIT License.
14990
14990
  */
14991
+ function getNavigationType() {
14992
+ if (typeof window === "undefined" ||
14993
+ typeof window.performance === "undefined" ||
14994
+ typeof window.performance.getEntriesByType !== "function") {
14995
+ return undefined;
14996
+ }
14997
+ const navigationEntries = window.performance.getEntriesByType("navigation");
14998
+ const navigation = navigationEntries.length
14999
+ ? navigationEntries[0]
15000
+ : undefined;
15001
+ return navigation?.type;
15002
+ }
14991
15003
  class RedirectClient extends StandardInteractionClient {
14992
15004
  constructor(config, storageImpl, browserCrypto, logger, eventHandler, navigationClient, performanceClient, nativeStorageImpl, nativeMessageHandler, correlationId) {
14993
15005
  super(config, storageImpl, browserCrypto, logger, eventHandler, navigationClient, performanceClient, nativeMessageHandler, correlationId);
@@ -15069,7 +15081,13 @@ class RedirectClient extends StandardInteractionClient {
15069
15081
  // Not a recognized server response hash or hash not associated with a redirect request
15070
15082
  this.logger.info("handleRedirectPromise did not detect a response as a result of a redirect. Cleaning temporary cache.");
15071
15083
  this.browserStorage.cleanRequestByInteractionType(exports.InteractionType.Redirect);
15072
- parentMeasurement.event.errorCode = "no_server_response";
15084
+ // Do not instrument "no_server_response" if user clicked back button
15085
+ if (getNavigationType() !== "back_forward") {
15086
+ parentMeasurement.event.errorCode = "no_server_response";
15087
+ }
15088
+ else {
15089
+ this.logger.verbose("Back navigation event detected. Muting no_server_response error");
15090
+ }
15073
15091
  return null;
15074
15092
  }
15075
15093
  // If navigateToLoginRequestUrl is true, get the url where the redirect request was initiated