@azure/msal-browser 3.7.2-alpha.0 → 3.7.2-alpha.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 (79) 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/CryptoKeyStore.mjs +1 -1
  10. package/dist/cache/DatabaseStorage.mjs +1 -1
  11. package/dist/cache/MemoryStorage.mjs +1 -1
  12. package/dist/cache/TokenCache.mjs +1 -1
  13. package/dist/config/Configuration.mjs +1 -1
  14. package/dist/controllers/ControllerFactory.mjs +1 -1
  15. package/dist/controllers/NestedAppAuthController.mjs +1 -1
  16. package/dist/controllers/StandardController.mjs +1 -1
  17. package/dist/controllers/UnknownOperatingContextController.mjs +1 -1
  18. package/dist/crypto/BrowserCrypto.mjs +1 -1
  19. package/dist/crypto/CryptoOps.mjs +1 -1
  20. package/dist/crypto/PkceGenerator.mjs +1 -1
  21. package/dist/crypto/SignedHttpRequest.mjs +1 -1
  22. package/dist/encode/Base64Decode.mjs +1 -1
  23. package/dist/encode/Base64Encode.mjs +1 -1
  24. package/dist/error/BrowserAuthError.mjs +1 -1
  25. package/dist/error/BrowserAuthErrorCodes.mjs +1 -1
  26. package/dist/error/BrowserConfigurationAuthError.mjs +1 -1
  27. package/dist/error/BrowserConfigurationAuthErrorCodes.mjs +1 -1
  28. package/dist/error/NativeAuthError.mjs +1 -1
  29. package/dist/error/NativeAuthErrorCodes.mjs +1 -1
  30. package/dist/error/NestedAppAuthError.mjs +1 -1
  31. package/dist/event/EventHandler.d.ts.map +1 -1
  32. package/dist/event/EventHandler.mjs +8 -2
  33. package/dist/event/EventHandler.mjs.map +1 -1
  34. package/dist/event/EventMessage.mjs +1 -1
  35. package/dist/event/EventType.d.ts +1 -0
  36. package/dist/event/EventType.d.ts.map +1 -1
  37. package/dist/event/EventType.mjs +2 -1
  38. package/dist/event/EventType.mjs.map +1 -1
  39. package/dist/index.mjs +1 -1
  40. package/dist/interaction_client/BaseInteractionClient.mjs +1 -1
  41. package/dist/interaction_client/HybridSpaAuthorizationCodeClient.mjs +1 -1
  42. package/dist/interaction_client/NativeInteractionClient.mjs +1 -1
  43. package/dist/interaction_client/PopupClient.mjs +1 -1
  44. package/dist/interaction_client/RedirectClient.mjs +1 -1
  45. package/dist/interaction_client/SilentAuthCodeClient.mjs +1 -1
  46. package/dist/interaction_client/SilentCacheClient.mjs +1 -1
  47. package/dist/interaction_client/SilentIframeClient.mjs +1 -1
  48. package/dist/interaction_client/SilentRefreshClient.mjs +1 -1
  49. package/dist/interaction_client/StandardInteractionClient.mjs +1 -1
  50. package/dist/interaction_handler/InteractionHandler.mjs +1 -1
  51. package/dist/interaction_handler/RedirectHandler.mjs +1 -1
  52. package/dist/interaction_handler/SilentHandler.mjs +1 -1
  53. package/dist/naa/BridgeError.mjs +1 -1
  54. package/dist/naa/BridgeProxy.mjs +1 -1
  55. package/dist/naa/BridgeStatusCode.mjs +1 -1
  56. package/dist/naa/mapping/NestedAppAuthAdapter.mjs +1 -1
  57. package/dist/navigation/NavigationClient.mjs +1 -1
  58. package/dist/network/FetchClient.mjs +1 -1
  59. package/dist/operatingcontext/BaseOperatingContext.mjs +1 -1
  60. package/dist/operatingcontext/StandardOperatingContext.mjs +1 -1
  61. package/dist/operatingcontext/TeamsAppOperatingContext.mjs +1 -1
  62. package/dist/operatingcontext/UnknownOperatingContext.mjs +1 -1
  63. package/dist/packageMetadata.d.ts +1 -1
  64. package/dist/packageMetadata.mjs +2 -2
  65. package/dist/response/ResponseHandler.mjs +1 -1
  66. package/dist/telemetry/BrowserPerformanceClient.mjs +1 -1
  67. package/dist/telemetry/BrowserPerformanceMeasurement.mjs +1 -1
  68. package/dist/utils/BrowserConstants.mjs +1 -1
  69. package/dist/utils/BrowserProtocolUtils.mjs +1 -1
  70. package/dist/utils/BrowserUtils.mjs +1 -1
  71. package/lib/msal-browser.cjs +71 -64
  72. package/lib/msal-browser.cjs.map +1 -1
  73. package/lib/msal-browser.js +71 -64
  74. package/lib/msal-browser.js.map +1 -1
  75. package/lib/msal-browser.min.js +58 -58
  76. package/package.json +2 -2
  77. package/src/event/EventHandler.ts +8 -0
  78. package/src/event/EventType.ts +1 -0
  79. package/src/packageMetadata.ts +1 -1
@@ -1,8 +1,8 @@
1
- /*! @azure/msal-browser v3.7.2-alpha.0 2024-01-30 */
1
+ /*! @azure/msal-browser v3.7.2-alpha.1 2024-01-30 */
2
2
  'use strict';
3
3
  'use strict';
4
4
 
5
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
5
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
6
6
  /*
7
7
  * Copyright (c) Microsoft Corporation. All rights reserved.
8
8
  * Licensed under the MIT License.
@@ -297,7 +297,7 @@ const JsonWebTokenTypes = {
297
297
  Pop: "pop",
298
298
  };
299
299
 
300
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
300
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
301
301
  /*
302
302
  * Copyright (c) Microsoft Corporation. All rights reserved.
303
303
  * Licensed under the MIT License.
@@ -314,7 +314,7 @@ var AuthErrorCodes = /*#__PURE__*/Object.freeze({
314
314
  unexpectedError: unexpectedError
315
315
  });
316
316
 
317
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
317
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
318
318
 
319
319
  /*
320
320
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -363,7 +363,7 @@ function createAuthError(code, additionalMessage) {
363
363
  : AuthErrorMessages[code]);
364
364
  }
365
365
 
366
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
366
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
367
367
  /*
368
368
  * Copyright (c) Microsoft Corporation. All rights reserved.
369
369
  * Licensed under the MIT License.
@@ -461,7 +461,7 @@ var ClientAuthErrorCodes = /*#__PURE__*/Object.freeze({
461
461
  userTimeoutReached: userTimeoutReached
462
462
  });
463
463
 
464
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
464
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
465
465
 
466
466
  /*
467
467
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -713,7 +713,7 @@ function createClientAuthError(errorCode, additionalMessage) {
713
713
  return new ClientAuthError(errorCode, additionalMessage);
714
714
  }
715
715
 
716
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
716
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
717
717
 
718
718
  /*
719
719
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -746,7 +746,7 @@ const DEFAULT_CRYPTO_IMPLEMENTATION = {
746
746
  },
747
747
  };
748
748
 
749
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
749
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
750
750
 
751
751
  /*
752
752
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -937,12 +937,12 @@ class Logger {
937
937
  }
938
938
  }
939
939
 
940
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
940
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
941
941
  /* eslint-disable header/header */
942
942
  const name$1 = "@azure/msal-common";
943
- const version$1 = "14.6.2-alpha.0";
943
+ const version$1 = "14.6.2-alpha.1";
944
944
 
945
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
945
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
946
946
  /*
947
947
  * Copyright (c) Microsoft Corporation. All rights reserved.
948
948
  * Licensed under the MIT License.
@@ -962,7 +962,7 @@ const AzureCloudInstance = {
962
962
  AzureUsGovernment: "https://login.microsoftonline.us",
963
963
  };
964
964
 
965
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
965
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
966
966
 
967
967
  /*
968
968
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1023,7 +1023,7 @@ function checkMaxAge(authTime, maxAge) {
1023
1023
  }
1024
1024
  }
1025
1025
 
1026
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
1026
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
1027
1027
  /*
1028
1028
  * Copyright (c) Microsoft Corporation. All rights reserved.
1029
1029
  * Licensed under the MIT License.
@@ -1060,7 +1060,7 @@ function wasClockTurnedBack(cachedAt) {
1060
1060
  return cachedAtSec > nowSeconds();
1061
1061
  }
1062
1062
 
1063
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
1063
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
1064
1064
 
1065
1065
  /*
1066
1066
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1387,7 +1387,7 @@ function isAuthorityMetadataExpired(metadata) {
1387
1387
  return metadata.expiresAt <= nowSeconds();
1388
1388
  }
1389
1389
 
1390
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
1390
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
1391
1391
  /*
1392
1392
  * Copyright (c) Microsoft Corporation. All rights reserved.
1393
1393
  * Licensed under the MIT License.
@@ -1441,7 +1441,7 @@ var ClientConfigurationErrorCodes = /*#__PURE__*/Object.freeze({
1441
1441
  urlParseError: urlParseError
1442
1442
  });
1443
1443
 
1444
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
1444
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
1445
1445
 
1446
1446
  /*
1447
1447
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1579,7 +1579,7 @@ function createClientConfigurationError(errorCode) {
1579
1579
  return new ClientConfigurationError(errorCode);
1580
1580
  }
1581
1581
 
1582
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
1582
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
1583
1583
  /*
1584
1584
  * Copyright (c) Microsoft Corporation. All rights reserved.
1585
1585
  * Licensed under the MIT License.
@@ -1676,7 +1676,7 @@ class StringUtils {
1676
1676
  }
1677
1677
  }
1678
1678
 
1679
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
1679
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
1680
1680
 
1681
1681
  /*
1682
1682
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1876,7 +1876,7 @@ class ScopeSet {
1876
1876
  }
1877
1877
  }
1878
1878
 
1879
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
1879
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
1880
1880
 
1881
1881
  /*
1882
1882
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1916,7 +1916,7 @@ function buildClientInfoFromHomeAccountId(homeAccountId) {
1916
1916
  };
1917
1917
  }
1918
1918
 
1919
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
1919
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
1920
1920
  /*
1921
1921
  * Copyright (c) Microsoft Corporation. All rights reserved.
1922
1922
  * Licensed under the MIT License.
@@ -1977,7 +1977,7 @@ function updateAccountTenantProfileData(baseAccountInfo, tenantProfile, idTokenC
1977
1977
  return updatedAccountInfo;
1978
1978
  }
1979
1979
 
1980
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
1980
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
1981
1981
  /*
1982
1982
  * Copyright (c) Microsoft Corporation. All rights reserved.
1983
1983
  * Licensed under the MIT License.
@@ -1992,7 +1992,7 @@ const AuthorityType = {
1992
1992
  Ciam: 3,
1993
1993
  };
1994
1994
 
1995
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
1995
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
1996
1996
  /*
1997
1997
  * Copyright (c) Microsoft Corporation. All rights reserved.
1998
1998
  * Licensed under the MIT License.
@@ -2014,7 +2014,7 @@ function getTenantIdFromIdTokenClaims(idTokenClaims) {
2014
2014
  return null;
2015
2015
  }
2016
2016
 
2017
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
2017
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
2018
2018
  /*
2019
2019
  * Copyright (c) Microsoft Corporation. All rights reserved.
2020
2020
  * Licensed under the MIT License.
@@ -2027,7 +2027,7 @@ const ProtocolMode = {
2027
2027
  OIDC: "OIDC",
2028
2028
  };
2029
2029
 
2030
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
2030
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
2031
2031
 
2032
2032
  /*
2033
2033
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2274,7 +2274,7 @@ class AccountEntity {
2274
2274
  }
2275
2275
  }
2276
2276
 
2277
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
2277
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
2278
2278
 
2279
2279
  /*
2280
2280
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2321,7 +2321,7 @@ function getDeserializedResponse(responseString) {
2321
2321
  return null;
2322
2322
  }
2323
2323
 
2324
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
2324
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
2325
2325
 
2326
2326
  /*
2327
2327
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2485,7 +2485,7 @@ class UrlString {
2485
2485
  }
2486
2486
  }
2487
2487
 
2488
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
2488
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
2489
2489
 
2490
2490
  /*
2491
2491
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2625,7 +2625,7 @@ function getCloudDiscoveryMetadataFromNetworkResponse(response, authorityHost) {
2625
2625
  return null;
2626
2626
  }
2627
2627
 
2628
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
2628
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
2629
2629
 
2630
2630
  /*
2631
2631
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3865,7 +3865,7 @@ class DefaultStorageClass extends CacheManager {
3865
3865
  }
3866
3866
  }
3867
3867
 
3868
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
3868
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
3869
3869
 
3870
3870
  /*
3871
3871
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3965,7 +3965,7 @@ function isOidcProtocolMode(config) {
3965
3965
  return (config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC);
3966
3966
  }
3967
3967
 
3968
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
3968
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
3969
3969
 
3970
3970
  /*
3971
3971
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3982,7 +3982,7 @@ class ServerError extends AuthError {
3982
3982
  }
3983
3983
  }
3984
3984
 
3985
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
3985
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
3986
3986
 
3987
3987
  /*
3988
3988
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4080,7 +4080,7 @@ class ThrottlingUtils {
4080
4080
  }
4081
4081
  }
4082
4082
 
4083
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
4083
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
4084
4084
 
4085
4085
  /*
4086
4086
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4117,7 +4117,7 @@ class NetworkManager {
4117
4117
  }
4118
4118
  }
4119
4119
 
4120
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
4120
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
4121
4121
  /*
4122
4122
  * Copyright (c) Microsoft Corporation. All rights reserved.
4123
4123
  * Licensed under the MIT License.
@@ -4127,7 +4127,7 @@ const CcsCredentialType = {
4127
4127
  UPN: "UPN",
4128
4128
  };
4129
4129
 
4130
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
4130
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
4131
4131
  /*
4132
4132
  * Copyright (c) Microsoft Corporation. All rights reserved.
4133
4133
  * Licensed under the MIT License.
@@ -4174,7 +4174,7 @@ const SID = "sid";
4174
4174
  const LOGIN_HINT = "login_hint";
4175
4175
  const DOMAIN_HINT = "domain_hint";
4176
4176
 
4177
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
4177
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
4178
4178
 
4179
4179
  /*
4180
4180
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4258,7 +4258,7 @@ class RequestValidator {
4258
4258
  }
4259
4259
  }
4260
4260
 
4261
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
4261
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
4262
4262
 
4263
4263
  /*
4264
4264
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4642,7 +4642,7 @@ class RequestParameterBuilder {
4642
4642
  }
4643
4643
  }
4644
4644
 
4645
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
4645
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
4646
4646
  /*
4647
4647
  * Copyright (c) Microsoft Corporation. All rights reserved.
4648
4648
  * Licensed under the MIT License.
@@ -4654,7 +4654,7 @@ function isOpenIdConfigResponse(response) {
4654
4654
  response.hasOwnProperty("jwks_uri"));
4655
4655
  }
4656
4656
 
4657
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
4657
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
4658
4658
  /*
4659
4659
  * Copyright (c) Microsoft Corporation. All rights reserved.
4660
4660
  * Licensed under the MIT License.
@@ -4664,7 +4664,7 @@ function isCloudInstanceDiscoveryResponse(response) {
4664
4664
  response.hasOwnProperty("metadata"));
4665
4665
  }
4666
4666
 
4667
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
4667
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
4668
4668
  /*
4669
4669
  * Copyright (c) Microsoft Corporation. All rights reserved.
4670
4670
  * Licensed under the MIT License.
@@ -4674,7 +4674,7 @@ function isCloudInstanceDiscoveryErrorResponse(response) {
4674
4674
  response.hasOwnProperty("error_description"));
4675
4675
  }
4676
4676
 
4677
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
4677
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
4678
4678
  /*
4679
4679
  * Copyright (c) Microsoft Corporation. All rights reserved.
4680
4680
  * Licensed under the MIT License.
@@ -4929,7 +4929,7 @@ const IntFields = new Set([
4929
4929
  "multiMatchedRT",
4930
4930
  ]);
4931
4931
 
4932
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
4932
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
4933
4933
  /*
4934
4934
  * Copyright (c) Microsoft Corporation. All rights reserved.
4935
4935
  * Licensed under the MIT License.
@@ -5025,7 +5025,7 @@ const invokeAsync = (callback, eventName, logger, telemetryClient, correlationId
5025
5025
  };
5026
5026
  };
5027
5027
 
5028
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
5028
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
5029
5029
 
5030
5030
  /*
5031
5031
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5134,7 +5134,7 @@ RegionDiscovery.IMDS_OPTIONS = {
5134
5134
  },
5135
5135
  };
5136
5136
 
5137
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
5137
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
5138
5138
 
5139
5139
  /*
5140
5140
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5967,7 +5967,7 @@ function buildStaticAuthorityOptions(authOptions) {
5967
5967
  };
5968
5968
  }
5969
5969
 
5970
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
5970
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
5971
5971
 
5972
5972
  /*
5973
5973
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5998,7 +5998,7 @@ async function createDiscoveredInstance(authorityUri, networkClient, cacheManage
5998
5998
  }
5999
5999
  }
6000
6000
 
6001
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
6001
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
6002
6002
 
6003
6003
  /*
6004
6004
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6101,7 +6101,7 @@ class BaseClient {
6101
6101
  }
6102
6102
  }
6103
6103
 
6104
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
6104
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
6105
6105
  /*
6106
6106
  * Copyright (c) Microsoft Corporation. All rights reserved.
6107
6107
  * Licensed under the MIT License.
@@ -6127,7 +6127,7 @@ var InteractionRequiredAuthErrorCodes = /*#__PURE__*/Object.freeze({
6127
6127
  refreshTokenExpired: refreshTokenExpired
6128
6128
  });
6129
6129
 
6130
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
6130
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
6131
6131
 
6132
6132
  /*
6133
6133
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6214,7 +6214,7 @@ function createInteractionRequiredAuthError(errorCode) {
6214
6214
  return new InteractionRequiredAuthError(errorCode, InteractionRequiredAuthErrorMessages[errorCode]);
6215
6215
  }
6216
6216
 
6217
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
6217
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
6218
6218
  /*
6219
6219
  * Copyright (c) Microsoft Corporation. All rights reserved.
6220
6220
  * Licensed under the MIT License.
@@ -6230,7 +6230,7 @@ class CacheRecord {
6230
6230
  }
6231
6231
  }
6232
6232
 
6233
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
6233
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
6234
6234
 
6235
6235
  /*
6236
6236
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6302,7 +6302,7 @@ class ProtocolUtils {
6302
6302
  }
6303
6303
  }
6304
6304
 
6305
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
6305
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
6306
6306
 
6307
6307
  /*
6308
6308
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6387,7 +6387,7 @@ class PopTokenGenerator {
6387
6387
  }
6388
6388
  }
6389
6389
 
6390
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
6390
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
6391
6391
  /*
6392
6392
  * Copyright (c) Microsoft Corporation. All rights reserved.
6393
6393
  * Licensed under the MIT License.
@@ -6414,7 +6414,7 @@ class PopTokenGenerator {
6414
6414
  }
6415
6415
  }
6416
6416
 
6417
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
6417
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
6418
6418
 
6419
6419
  /*
6420
6420
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6767,7 +6767,7 @@ function buildAccountToCache(cacheStorage, authority, homeAccountId, idTokenClai
6767
6767
  return baseAccount;
6768
6768
  }
6769
6769
 
6770
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
6770
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
6771
6771
 
6772
6772
  /*
6773
6773
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7172,7 +7172,7 @@ class AuthorizationCodeClient extends BaseClient {
7172
7172
  }
7173
7173
  }
7174
7174
 
7175
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
7175
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
7176
7176
 
7177
7177
  /*
7178
7178
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7379,7 +7379,7 @@ class RefreshTokenClient extends BaseClient {
7379
7379
  }
7380
7380
  }
7381
7381
 
7382
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
7382
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
7383
7383
 
7384
7384
  /*
7385
7385
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7510,7 +7510,7 @@ class SilentFlowClient extends BaseClient {
7510
7510
  }
7511
7511
  }
7512
7512
 
7513
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
7513
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
7514
7514
 
7515
7515
  /*
7516
7516
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7525,7 +7525,7 @@ const StubbedNetworkModule = {
7525
7525
  },
7526
7526
  };
7527
7527
 
7528
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
7528
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
7529
7529
  /*
7530
7530
  * Copyright (c) Microsoft Corporation. All rights reserved.
7531
7531
  * Licensed under the MIT License.
@@ -7533,7 +7533,7 @@ const StubbedNetworkModule = {
7533
7533
  const missingKidError = "missing_kid_error";
7534
7534
  const missingAlgError = "missing_alg_error";
7535
7535
 
7536
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
7536
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
7537
7537
 
7538
7538
  /*
7539
7539
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7558,7 +7558,7 @@ function createJoseHeaderError(code) {
7558
7558
  return new JoseHeaderError(code, JoseHeaderErrorMessages[code]);
7559
7559
  }
7560
7560
 
7561
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
7561
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
7562
7562
 
7563
7563
  /*
7564
7564
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7598,7 +7598,7 @@ class JoseHeader {
7598
7598
  }
7599
7599
  }
7600
7600
 
7601
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
7601
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
7602
7602
 
7603
7603
  /*
7604
7604
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7656,7 +7656,7 @@ class AuthenticationHeaderParser {
7656
7656
  }
7657
7657
  }
7658
7658
 
7659
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
7659
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
7660
7660
 
7661
7661
  /*
7662
7662
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7860,7 +7860,7 @@ class ServerTelemetryManager {
7860
7860
  }
7861
7861
  }
7862
7862
 
7863
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
7863
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
7864
7864
 
7865
7865
  /*
7866
7866
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7939,7 +7939,7 @@ class StubPerformanceClient {
7939
7939
  }
7940
7940
  }
7941
7941
 
7942
- /*! @azure/msal-common v14.6.2-alpha.0 2024-01-30 */
7942
+ /*! @azure/msal-common v14.6.2-alpha.1 2024-01-30 */
7943
7943
 
7944
7944
  /*
7945
7945
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -9339,7 +9339,7 @@ function buildConfiguration({ auth: userInputAuth, cache: userInputCache, system
9339
9339
 
9340
9340
  /* eslint-disable header/header */
9341
9341
  const name = "@azure/msal-browser";
9342
- const version = "3.7.2-alpha.0";
9342
+ const version = "3.7.2-alpha.1";
9343
9343
 
9344
9344
  /*
9345
9345
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -11936,6 +11936,7 @@ const EventType = {
11936
11936
  INITIALIZE_END: "msal:initializeEnd",
11937
11937
  ACCOUNT_ADDED: "msal:accountAdded",
11938
11938
  ACCOUNT_REMOVED: "msal:accountRemoved",
11939
+ ACTIVE_ACCOUNT_CHANGED: "msal:activeAccountChanged",
11939
11940
  LOGIN_START: "msal:loginStart",
11940
11941
  LOGIN_SUCCESS: "msal:loginSuccess",
11941
11942
  LOGIN_FAILURE: "msal:loginFailure",
@@ -12053,6 +12054,12 @@ class EventHandler {
12053
12054
  */
12054
12055
  handleAccountCacheChange(e) {
12055
12056
  try {
12057
+ // Handle active account filter change
12058
+ if (e.key?.includes(PersistentCacheKeys.ACTIVE_ACCOUNT_FILTERS)) {
12059
+ // This event has no payload, it only signals cross-tab app instances that the results of calling getActiveAccount() will have changed
12060
+ this.emitEvent(EventType.ACTIVE_ACCOUNT_CHANGED);
12061
+ }
12062
+ // Handle account object change
12056
12063
  const cacheValue = e.newValue || e.oldValue;
12057
12064
  if (!cacheValue) {
12058
12065
  return;