@azure/msal-browser 3.11.0 → 3.11.1

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 (72) hide show
  1. package/dist/app/IPublicClientApplication.mjs +1 -1
  2. package/dist/app/PublicClientApplication.mjs +1 -1
  3. package/dist/app/PublicClientNext.mjs +1 -1
  4. package/dist/broker/nativeBroker/NativeMessageHandler.mjs +1 -1
  5. package/dist/broker/nativeBroker/NativeStatusCodes.mjs +1 -1
  6. package/dist/cache/AsyncMemoryStorage.mjs +1 -1
  7. package/dist/cache/BrowserCacheManager.mjs +1 -1
  8. package/dist/cache/BrowserStorage.mjs +1 -1
  9. package/dist/cache/DatabaseStorage.mjs +1 -1
  10. package/dist/cache/MemoryStorage.mjs +1 -1
  11. package/dist/cache/TokenCache.mjs +1 -1
  12. package/dist/config/Configuration.mjs +1 -1
  13. package/dist/controllers/ControllerFactory.mjs +1 -1
  14. package/dist/controllers/NestedAppAuthController.mjs +1 -1
  15. package/dist/controllers/StandardController.mjs +1 -1
  16. package/dist/controllers/UnknownOperatingContextController.mjs +1 -1
  17. package/dist/crypto/BrowserCrypto.mjs +1 -1
  18. package/dist/crypto/CryptoOps.mjs +1 -1
  19. package/dist/crypto/PkceGenerator.mjs +1 -1
  20. package/dist/crypto/SignedHttpRequest.mjs +1 -1
  21. package/dist/encode/Base64Decode.mjs +1 -1
  22. package/dist/encode/Base64Encode.mjs +1 -1
  23. package/dist/error/BrowserAuthError.mjs +1 -1
  24. package/dist/error/BrowserAuthErrorCodes.mjs +1 -1
  25. package/dist/error/BrowserConfigurationAuthError.mjs +1 -1
  26. package/dist/error/BrowserConfigurationAuthErrorCodes.mjs +1 -1
  27. package/dist/error/NativeAuthError.mjs +1 -1
  28. package/dist/error/NativeAuthErrorCodes.mjs +1 -1
  29. package/dist/error/NestedAppAuthError.mjs +1 -1
  30. package/dist/event/EventHandler.mjs +1 -1
  31. package/dist/event/EventMessage.mjs +1 -1
  32. package/dist/event/EventType.mjs +1 -1
  33. package/dist/index.mjs +1 -1
  34. package/dist/interaction_client/BaseInteractionClient.mjs +1 -1
  35. package/dist/interaction_client/HybridSpaAuthorizationCodeClient.mjs +1 -1
  36. package/dist/interaction_client/NativeInteractionClient.mjs +1 -1
  37. package/dist/interaction_client/PopupClient.mjs +1 -1
  38. package/dist/interaction_client/RedirectClient.mjs +1 -1
  39. package/dist/interaction_client/SilentAuthCodeClient.mjs +1 -1
  40. package/dist/interaction_client/SilentCacheClient.mjs +1 -1
  41. package/dist/interaction_client/SilentIframeClient.mjs +1 -1
  42. package/dist/interaction_client/SilentRefreshClient.mjs +1 -1
  43. package/dist/interaction_client/StandardInteractionClient.mjs +1 -1
  44. package/dist/interaction_handler/InteractionHandler.mjs +1 -1
  45. package/dist/interaction_handler/RedirectHandler.mjs +1 -1
  46. package/dist/interaction_handler/SilentHandler.mjs +1 -1
  47. package/dist/naa/BridgeError.mjs +1 -1
  48. package/dist/naa/BridgeProxy.mjs +1 -1
  49. package/dist/naa/BridgeStatusCode.mjs +1 -1
  50. package/dist/naa/mapping/NestedAppAuthAdapter.mjs +1 -1
  51. package/dist/navigation/NavigationClient.mjs +1 -1
  52. package/dist/network/FetchClient.mjs +1 -1
  53. package/dist/operatingcontext/BaseOperatingContext.mjs +1 -1
  54. package/dist/operatingcontext/StandardOperatingContext.mjs +1 -1
  55. package/dist/operatingcontext/TeamsAppOperatingContext.mjs +1 -1
  56. package/dist/operatingcontext/UnknownOperatingContext.mjs +1 -1
  57. package/dist/packageMetadata.d.ts +1 -1
  58. package/dist/packageMetadata.mjs +2 -2
  59. package/dist/request/RequestHelpers.mjs +1 -1
  60. package/dist/response/ResponseHandler.mjs +1 -1
  61. package/dist/telemetry/BrowserPerformanceClient.mjs +1 -1
  62. package/dist/telemetry/BrowserPerformanceMeasurement.mjs +1 -1
  63. package/dist/utils/BrowserConstants.mjs +1 -1
  64. package/dist/utils/BrowserProtocolUtils.mjs +1 -1
  65. package/dist/utils/BrowserUtils.mjs +1 -1
  66. package/lib/msal-browser.cjs +65 -65
  67. package/lib/msal-browser.cjs.map +1 -1
  68. package/lib/msal-browser.js +65 -65
  69. package/lib/msal-browser.js.map +1 -1
  70. package/lib/msal-browser.min.js +58 -58
  71. package/package.json +2 -2
  72. package/src/packageMetadata.ts +1 -1
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v3.11.0 2024-03-22 */
1
+ /*! @azure/msal-browser v3.11.1 2024-03-27 */
2
2
  'use strict';
3
3
  (function (global, factory) {
4
4
  typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
@@ -6,7 +6,7 @@
6
6
  (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.msal = {}));
7
7
  })(this, (function (exports) { 'use strict';
8
8
 
9
- /*! @azure/msal-common v14.8.0 2024-03-22 */
9
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
10
10
  /*
11
11
  * Copyright (c) Microsoft Corporation. All rights reserved.
12
12
  * Licensed under the MIT License.
@@ -301,7 +301,7 @@
301
301
  Pop: "pop",
302
302
  };
303
303
 
304
- /*! @azure/msal-common v14.8.0 2024-03-22 */
304
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
305
305
  /*
306
306
  * Copyright (c) Microsoft Corporation. All rights reserved.
307
307
  * Licensed under the MIT License.
@@ -318,7 +318,7 @@
318
318
  unexpectedError: unexpectedError
319
319
  });
320
320
 
321
- /*! @azure/msal-common v14.8.0 2024-03-22 */
321
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
322
322
 
323
323
  /*
324
324
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -367,7 +367,7 @@
367
367
  : AuthErrorMessages[code]);
368
368
  }
369
369
 
370
- /*! @azure/msal-common v14.8.0 2024-03-22 */
370
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
371
371
  /*
372
372
  * Copyright (c) Microsoft Corporation. All rights reserved.
373
373
  * Licensed under the MIT License.
@@ -465,7 +465,7 @@
465
465
  userTimeoutReached: userTimeoutReached
466
466
  });
467
467
 
468
- /*! @azure/msal-common v14.8.0 2024-03-22 */
468
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
469
469
 
470
470
  /*
471
471
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -717,7 +717,7 @@
717
717
  return new ClientAuthError(errorCode, additionalMessage);
718
718
  }
719
719
 
720
- /*! @azure/msal-common v14.8.0 2024-03-22 */
720
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
721
721
 
722
722
  /*
723
723
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -750,7 +750,7 @@
750
750
  },
751
751
  };
752
752
 
753
- /*! @azure/msal-common v14.8.0 2024-03-22 */
753
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
754
754
 
755
755
  /*
756
756
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -941,12 +941,12 @@
941
941
  }
942
942
  }
943
943
 
944
- /*! @azure/msal-common v14.8.0 2024-03-22 */
944
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
945
945
  /* eslint-disable header/header */
946
946
  const name$1 = "@azure/msal-common";
947
- const version$1 = "14.8.0";
947
+ const version$1 = "14.8.1";
948
948
 
949
- /*! @azure/msal-common v14.8.0 2024-03-22 */
949
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
950
950
  /*
951
951
  * Copyright (c) Microsoft Corporation. All rights reserved.
952
952
  * Licensed under the MIT License.
@@ -966,7 +966,7 @@
966
966
  AzureUsGovernment: "https://login.microsoftonline.us",
967
967
  };
968
968
 
969
- /*! @azure/msal-common v14.8.0 2024-03-22 */
969
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
970
970
 
971
971
  /*
972
972
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1027,7 +1027,7 @@
1027
1027
  }
1028
1028
  }
1029
1029
 
1030
- /*! @azure/msal-common v14.8.0 2024-03-22 */
1030
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
1031
1031
  /*
1032
1032
  * Copyright (c) Microsoft Corporation. All rights reserved.
1033
1033
  * Licensed under the MIT License.
@@ -1064,7 +1064,7 @@
1064
1064
  return cachedAtSec > nowSeconds();
1065
1065
  }
1066
1066
 
1067
- /*! @azure/msal-common v14.8.0 2024-03-22 */
1067
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
1068
1068
 
1069
1069
  /*
1070
1070
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1391,7 +1391,7 @@
1391
1391
  return metadata.expiresAt <= nowSeconds();
1392
1392
  }
1393
1393
 
1394
- /*! @azure/msal-common v14.8.0 2024-03-22 */
1394
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
1395
1395
  /*
1396
1396
  * Copyright (c) Microsoft Corporation. All rights reserved.
1397
1397
  * Licensed under the MIT License.
@@ -1445,7 +1445,7 @@
1445
1445
  urlParseError: urlParseError
1446
1446
  });
1447
1447
 
1448
- /*! @azure/msal-common v14.8.0 2024-03-22 */
1448
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
1449
1449
 
1450
1450
  /*
1451
1451
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1583,7 +1583,7 @@
1583
1583
  return new ClientConfigurationError(errorCode);
1584
1584
  }
1585
1585
 
1586
- /*! @azure/msal-common v14.8.0 2024-03-22 */
1586
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
1587
1587
  /*
1588
1588
  * Copyright (c) Microsoft Corporation. All rights reserved.
1589
1589
  * Licensed under the MIT License.
@@ -1680,7 +1680,7 @@
1680
1680
  }
1681
1681
  }
1682
1682
 
1683
- /*! @azure/msal-common v14.8.0 2024-03-22 */
1683
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
1684
1684
 
1685
1685
  /*
1686
1686
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1880,7 +1880,7 @@
1880
1880
  }
1881
1881
  }
1882
1882
 
1883
- /*! @azure/msal-common v14.8.0 2024-03-22 */
1883
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
1884
1884
 
1885
1885
  /*
1886
1886
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1920,7 +1920,7 @@
1920
1920
  };
1921
1921
  }
1922
1922
 
1923
- /*! @azure/msal-common v14.8.0 2024-03-22 */
1923
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
1924
1924
  /*
1925
1925
  * Copyright (c) Microsoft Corporation. All rights reserved.
1926
1926
  * Licensed under the MIT License.
@@ -1982,7 +1982,7 @@
1982
1982
  return updatedAccountInfo;
1983
1983
  }
1984
1984
 
1985
- /*! @azure/msal-common v14.8.0 2024-03-22 */
1985
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
1986
1986
  /*
1987
1987
  * Copyright (c) Microsoft Corporation. All rights reserved.
1988
1988
  * Licensed under the MIT License.
@@ -1997,7 +1997,7 @@
1997
1997
  Ciam: 3,
1998
1998
  };
1999
1999
 
2000
- /*! @azure/msal-common v14.8.0 2024-03-22 */
2000
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
2001
2001
  /*
2002
2002
  * Copyright (c) Microsoft Corporation. All rights reserved.
2003
2003
  * Licensed under the MIT License.
@@ -2019,7 +2019,7 @@
2019
2019
  return null;
2020
2020
  }
2021
2021
 
2022
- /*! @azure/msal-common v14.8.0 2024-03-22 */
2022
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
2023
2023
  /*
2024
2024
  * Copyright (c) Microsoft Corporation. All rights reserved.
2025
2025
  * Licensed under the MIT License.
@@ -2032,7 +2032,7 @@
2032
2032
  OIDC: "OIDC",
2033
2033
  };
2034
2034
 
2035
- /*! @azure/msal-common v14.8.0 2024-03-22 */
2035
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
2036
2036
 
2037
2037
  /*
2038
2038
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2279,7 +2279,7 @@
2279
2279
  }
2280
2280
  }
2281
2281
 
2282
- /*! @azure/msal-common v14.8.0 2024-03-22 */
2282
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
2283
2283
 
2284
2284
  /*
2285
2285
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2326,7 +2326,7 @@
2326
2326
  return null;
2327
2327
  }
2328
2328
 
2329
- /*! @azure/msal-common v14.8.0 2024-03-22 */
2329
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
2330
2330
 
2331
2331
  /*
2332
2332
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2490,7 +2490,7 @@
2490
2490
  }
2491
2491
  }
2492
2492
 
2493
- /*! @azure/msal-common v14.8.0 2024-03-22 */
2493
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
2494
2494
 
2495
2495
  /*
2496
2496
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2630,7 +2630,7 @@
2630
2630
  return null;
2631
2631
  }
2632
2632
 
2633
- /*! @azure/msal-common v14.8.0 2024-03-22 */
2633
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
2634
2634
 
2635
2635
  /*
2636
2636
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3861,7 +3861,7 @@
3861
3861
  }
3862
3862
  }
3863
3863
 
3864
- /*! @azure/msal-common v14.8.0 2024-03-22 */
3864
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
3865
3865
 
3866
3866
  /*
3867
3867
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3961,7 +3961,7 @@
3961
3961
  return (config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC);
3962
3962
  }
3963
3963
 
3964
- /*! @azure/msal-common v14.8.0 2024-03-22 */
3964
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
3965
3965
 
3966
3966
  /*
3967
3967
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3978,7 +3978,7 @@
3978
3978
  }
3979
3979
  }
3980
3980
 
3981
- /*! @azure/msal-common v14.8.0 2024-03-22 */
3981
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
3982
3982
 
3983
3983
  /*
3984
3984
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4076,7 +4076,7 @@
4076
4076
  }
4077
4077
  }
4078
4078
 
4079
- /*! @azure/msal-common v14.8.0 2024-03-22 */
4079
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
4080
4080
 
4081
4081
  /*
4082
4082
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4113,7 +4113,7 @@
4113
4113
  }
4114
4114
  }
4115
4115
 
4116
- /*! @azure/msal-common v14.8.0 2024-03-22 */
4116
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
4117
4117
  /*
4118
4118
  * Copyright (c) Microsoft Corporation. All rights reserved.
4119
4119
  * Licensed under the MIT License.
@@ -4123,7 +4123,7 @@
4123
4123
  UPN: "UPN",
4124
4124
  };
4125
4125
 
4126
- /*! @azure/msal-common v14.8.0 2024-03-22 */
4126
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
4127
4127
  /*
4128
4128
  * Copyright (c) Microsoft Corporation. All rights reserved.
4129
4129
  * Licensed under the MIT License.
@@ -4170,7 +4170,7 @@
4170
4170
  const LOGIN_HINT = "login_hint";
4171
4171
  const DOMAIN_HINT = "domain_hint";
4172
4172
 
4173
- /*! @azure/msal-common v14.8.0 2024-03-22 */
4173
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
4174
4174
 
4175
4175
  /*
4176
4176
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4254,7 +4254,7 @@
4254
4254
  }
4255
4255
  }
4256
4256
 
4257
- /*! @azure/msal-common v14.8.0 2024-03-22 */
4257
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
4258
4258
 
4259
4259
  /*
4260
4260
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4638,7 +4638,7 @@
4638
4638
  }
4639
4639
  }
4640
4640
 
4641
- /*! @azure/msal-common v14.8.0 2024-03-22 */
4641
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
4642
4642
  /*
4643
4643
  * Copyright (c) Microsoft Corporation. All rights reserved.
4644
4644
  * Licensed under the MIT License.
@@ -4650,7 +4650,7 @@
4650
4650
  response.hasOwnProperty("jwks_uri"));
4651
4651
  }
4652
4652
 
4653
- /*! @azure/msal-common v14.8.0 2024-03-22 */
4653
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
4654
4654
  /*
4655
4655
  * Copyright (c) Microsoft Corporation. All rights reserved.
4656
4656
  * Licensed under the MIT License.
@@ -4660,7 +4660,7 @@
4660
4660
  response.hasOwnProperty("metadata"));
4661
4661
  }
4662
4662
 
4663
- /*! @azure/msal-common v14.8.0 2024-03-22 */
4663
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
4664
4664
  /*
4665
4665
  * Copyright (c) Microsoft Corporation. All rights reserved.
4666
4666
  * Licensed under the MIT License.
@@ -4670,7 +4670,7 @@
4670
4670
  response.hasOwnProperty("error_description"));
4671
4671
  }
4672
4672
 
4673
- /*! @azure/msal-common v14.8.0 2024-03-22 */
4673
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
4674
4674
  /*
4675
4675
  * Copyright (c) Microsoft Corporation. All rights reserved.
4676
4676
  * Licensed under the MIT License.
@@ -5144,7 +5144,7 @@
5144
5144
  "multiMatchedRT",
5145
5145
  ]);
5146
5146
 
5147
- /*! @azure/msal-common v14.8.0 2024-03-22 */
5147
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
5148
5148
  /*
5149
5149
  * Copyright (c) Microsoft Corporation. All rights reserved.
5150
5150
  * Licensed under the MIT License.
@@ -5240,7 +5240,7 @@
5240
5240
  };
5241
5241
  };
5242
5242
 
5243
- /*! @azure/msal-common v14.8.0 2024-03-22 */
5243
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
5244
5244
 
5245
5245
  /*
5246
5246
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5349,7 +5349,7 @@
5349
5349
  },
5350
5350
  };
5351
5351
 
5352
- /*! @azure/msal-common v14.8.0 2024-03-22 */
5352
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
5353
5353
 
5354
5354
  /*
5355
5355
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6184,7 +6184,7 @@
6184
6184
  };
6185
6185
  }
6186
6186
 
6187
- /*! @azure/msal-common v14.8.0 2024-03-22 */
6187
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
6188
6188
 
6189
6189
  /*
6190
6190
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6215,7 +6215,7 @@
6215
6215
  }
6216
6216
  }
6217
6217
 
6218
- /*! @azure/msal-common v14.8.0 2024-03-22 */
6218
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
6219
6219
 
6220
6220
  /*
6221
6221
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6318,7 +6318,7 @@
6318
6318
  }
6319
6319
  }
6320
6320
 
6321
- /*! @azure/msal-common v14.8.0 2024-03-22 */
6321
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
6322
6322
  /*
6323
6323
  * Copyright (c) Microsoft Corporation. All rights reserved.
6324
6324
  * Licensed under the MIT License.
@@ -6344,7 +6344,7 @@
6344
6344
  refreshTokenExpired: refreshTokenExpired
6345
6345
  });
6346
6346
 
6347
- /*! @azure/msal-common v14.8.0 2024-03-22 */
6347
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
6348
6348
 
6349
6349
  /*
6350
6350
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6431,7 +6431,7 @@
6431
6431
  return new InteractionRequiredAuthError(errorCode, InteractionRequiredAuthErrorMessages[errorCode]);
6432
6432
  }
6433
6433
 
6434
- /*! @azure/msal-common v14.8.0 2024-03-22 */
6434
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
6435
6435
  /*
6436
6436
  * Copyright (c) Microsoft Corporation. All rights reserved.
6437
6437
  * Licensed under the MIT License.
@@ -6447,7 +6447,7 @@
6447
6447
  }
6448
6448
  }
6449
6449
 
6450
- /*! @azure/msal-common v14.8.0 2024-03-22 */
6450
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
6451
6451
 
6452
6452
  /*
6453
6453
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6519,7 +6519,7 @@
6519
6519
  }
6520
6520
  }
6521
6521
 
6522
- /*! @azure/msal-common v14.8.0 2024-03-22 */
6522
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
6523
6523
 
6524
6524
  /*
6525
6525
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6604,7 +6604,7 @@
6604
6604
  }
6605
6605
  }
6606
6606
 
6607
- /*! @azure/msal-common v14.8.0 2024-03-22 */
6607
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
6608
6608
  /*
6609
6609
  * Copyright (c) Microsoft Corporation. All rights reserved.
6610
6610
  * Licensed under the MIT License.
@@ -6631,7 +6631,7 @@
6631
6631
  }
6632
6632
  }
6633
6633
 
6634
- /*! @azure/msal-common v14.8.0 2024-03-22 */
6634
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
6635
6635
 
6636
6636
  /*
6637
6637
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6984,7 +6984,7 @@
6984
6984
  return baseAccount;
6985
6985
  }
6986
6986
 
6987
- /*! @azure/msal-common v14.8.0 2024-03-22 */
6987
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
6988
6988
 
6989
6989
  /*
6990
6990
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7389,7 +7389,7 @@
7389
7389
  }
7390
7390
  }
7391
7391
 
7392
- /*! @azure/msal-common v14.8.0 2024-03-22 */
7392
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
7393
7393
 
7394
7394
  /*
7395
7395
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7596,7 +7596,7 @@
7596
7596
  }
7597
7597
  }
7598
7598
 
7599
- /*! @azure/msal-common v14.8.0 2024-03-22 */
7599
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
7600
7600
 
7601
7601
  /*
7602
7602
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7732,7 +7732,7 @@
7732
7732
  }
7733
7733
  }
7734
7734
 
7735
- /*! @azure/msal-common v14.8.0 2024-03-22 */
7735
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
7736
7736
 
7737
7737
  /*
7738
7738
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7747,7 +7747,7 @@
7747
7747
  },
7748
7748
  };
7749
7749
 
7750
- /*! @azure/msal-common v14.8.0 2024-03-22 */
7750
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
7751
7751
  /*
7752
7752
  * Copyright (c) Microsoft Corporation. All rights reserved.
7753
7753
  * Licensed under the MIT License.
@@ -7755,7 +7755,7 @@
7755
7755
  const missingKidError = "missing_kid_error";
7756
7756
  const missingAlgError = "missing_alg_error";
7757
7757
 
7758
- /*! @azure/msal-common v14.8.0 2024-03-22 */
7758
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
7759
7759
 
7760
7760
  /*
7761
7761
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7780,7 +7780,7 @@
7780
7780
  return new JoseHeaderError(code, JoseHeaderErrorMessages[code]);
7781
7781
  }
7782
7782
 
7783
- /*! @azure/msal-common v14.8.0 2024-03-22 */
7783
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
7784
7784
 
7785
7785
  /*
7786
7786
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7820,7 +7820,7 @@
7820
7820
  }
7821
7821
  }
7822
7822
 
7823
- /*! @azure/msal-common v14.8.0 2024-03-22 */
7823
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
7824
7824
 
7825
7825
  /*
7826
7826
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7878,7 +7878,7 @@
7878
7878
  }
7879
7879
  }
7880
7880
 
7881
- /*! @azure/msal-common v14.8.0 2024-03-22 */
7881
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
7882
7882
 
7883
7883
  /*
7884
7884
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -8082,7 +8082,7 @@
8082
8082
  }
8083
8083
  }
8084
8084
 
8085
- /*! @azure/msal-common v14.8.0 2024-03-22 */
8085
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
8086
8086
 
8087
8087
  /*
8088
8088
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -8161,7 +8161,7 @@
8161
8161
  }
8162
8162
  }
8163
8163
 
8164
- /*! @azure/msal-common v14.8.0 2024-03-22 */
8164
+ /*! @azure/msal-common v14.8.1 2024-03-27 */
8165
8165
 
8166
8166
  /*
8167
8167
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -8534,7 +8534,7 @@
8534
8534
  manuallyCompletedCount: 0,
8535
8535
  };
8536
8536
  event.durationMs = Math.round(event.durationMs || this.getDurationMs(event.startTimeMs));
8537
- const context = endContext(event, this.abbreviations, this.eventStack.get(rootEvent.correlationId), error);
8537
+ const context = JSON.stringify(endContext(event, this.abbreviations, this.eventStack.get(rootEvent.correlationId), error));
8538
8538
  if (isRoot) {
8539
8539
  queueInfo = this.getQueueInfo(event.correlationId);
8540
8540
  this.discardCache(rootEvent.correlationId);
@@ -10017,7 +10017,7 @@
10017
10017
 
10018
10018
  /* eslint-disable header/header */
10019
10019
  const name = "@azure/msal-browser";
10020
- const version = "3.11.0";
10020
+ const version = "3.11.1";
10021
10021
 
10022
10022
  /*
10023
10023
  * Copyright (c) Microsoft Corporation. All rights reserved.