@azure/msal-browser 3.5.1-beta.0 → 3.5.1-beta.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 (74) 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.mjs +1 -1
  32. package/dist/event/EventMessage.mjs +1 -1
  33. package/dist/event/EventType.mjs +1 -1
  34. package/dist/index.mjs +1 -1
  35. package/dist/interaction_client/BaseInteractionClient.mjs +1 -1
  36. package/dist/interaction_client/HybridSpaAuthorizationCodeClient.mjs +1 -1
  37. package/dist/interaction_client/NativeInteractionClient.mjs +1 -1
  38. package/dist/interaction_client/PopupClient.mjs +1 -1
  39. package/dist/interaction_client/RedirectClient.mjs +1 -1
  40. package/dist/interaction_client/SilentAuthCodeClient.mjs +1 -1
  41. package/dist/interaction_client/SilentCacheClient.mjs +1 -1
  42. package/dist/interaction_client/SilentIframeClient.mjs +1 -1
  43. package/dist/interaction_client/SilentRefreshClient.mjs +1 -1
  44. package/dist/interaction_client/StandardInteractionClient.mjs +1 -1
  45. package/dist/interaction_handler/InteractionHandler.mjs +1 -1
  46. package/dist/interaction_handler/RedirectHandler.mjs +1 -1
  47. package/dist/interaction_handler/SilentHandler.mjs +1 -1
  48. package/dist/naa/BridgeError.mjs +1 -1
  49. package/dist/naa/BridgeProxy.mjs +1 -1
  50. package/dist/naa/BridgeStatusCode.mjs +1 -1
  51. package/dist/naa/mapping/NestedAppAuthAdapter.mjs +1 -1
  52. package/dist/navigation/NavigationClient.mjs +1 -1
  53. package/dist/network/FetchClient.mjs +1 -1
  54. package/dist/operatingcontext/BaseOperatingContext.mjs +1 -1
  55. package/dist/operatingcontext/StandardOperatingContext.mjs +1 -1
  56. package/dist/operatingcontext/TeamsAppOperatingContext.mjs +1 -1
  57. package/dist/operatingcontext/UnknownOperatingContext.mjs +1 -1
  58. package/dist/packageMetadata.d.ts +1 -1
  59. package/dist/packageMetadata.d.ts.map +1 -1
  60. package/dist/packageMetadata.mjs +2 -2
  61. package/dist/packageMetadata.mjs.map +1 -1
  62. package/dist/response/ResponseHandler.mjs +1 -1
  63. package/dist/telemetry/BrowserPerformanceClient.mjs +1 -1
  64. package/dist/telemetry/BrowserPerformanceMeasurement.mjs +1 -1
  65. package/dist/utils/BrowserConstants.mjs +1 -1
  66. package/dist/utils/BrowserProtocolUtils.mjs +1 -1
  67. package/dist/utils/BrowserUtils.mjs +1 -1
  68. package/lib/msal-browser.cjs +64 -64
  69. package/lib/msal-browser.cjs.map +1 -1
  70. package/lib/msal-browser.js +64 -64
  71. package/lib/msal-browser.js.map +1 -1
  72. package/lib/msal-browser.min.js +58 -58
  73. package/package.json +2 -2
  74. package/src/packageMetadata.ts +1 -1
@@ -1,8 +1,8 @@
1
- /*! @azure/msal-browser v3.5.1-beta.0 2023-11-14 */
1
+ /*! @azure/msal-browser v3.5.1-beta.1 2023-11-14 */
2
2
  'use strict';
3
3
  'use strict';
4
4
 
5
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
5
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
6
6
  /*
7
7
  * Copyright (c) Microsoft Corporation. All rights reserved.
8
8
  * Licensed under the MIT License.
@@ -364,7 +364,7 @@ const JsonWebTokenTypes = {
364
364
  Pop: "pop",
365
365
  };
366
366
 
367
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
367
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
368
368
  /*
369
369
  * Copyright (c) Microsoft Corporation. All rights reserved.
370
370
  * Licensed under the MIT License.
@@ -381,7 +381,7 @@ var AuthErrorCodes = /*#__PURE__*/Object.freeze({
381
381
  unexpectedError: unexpectedError
382
382
  });
383
383
 
384
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
384
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
385
385
 
386
386
  /*
387
387
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -430,7 +430,7 @@ function createAuthError(code, additionalMessage) {
430
430
  : AuthErrorMessages[code]);
431
431
  }
432
432
 
433
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
433
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
434
434
  /*
435
435
  * Copyright (c) Microsoft Corporation. All rights reserved.
436
436
  * Licensed under the MIT License.
@@ -528,7 +528,7 @@ var ClientAuthErrorCodes = /*#__PURE__*/Object.freeze({
528
528
  userTimeoutReached: userTimeoutReached
529
529
  });
530
530
 
531
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
531
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
532
532
 
533
533
  /*
534
534
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -780,7 +780,7 @@ function createClientAuthError(errorCode, additionalMessage) {
780
780
  return new ClientAuthError(errorCode, additionalMessage);
781
781
  }
782
782
 
783
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
783
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
784
784
 
785
785
  /*
786
786
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -813,7 +813,7 @@ const DEFAULT_CRYPTO_IMPLEMENTATION = {
813
813
  },
814
814
  };
815
815
 
816
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
816
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
817
817
 
818
818
  /*
819
819
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1004,12 +1004,12 @@ class Logger {
1004
1004
  }
1005
1005
  }
1006
1006
 
1007
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
1007
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
1008
1008
  /* eslint-disable header/header */
1009
1009
  const name$1 = "@azure/msal-common";
1010
- const version$1 = "14.4.0";
1010
+ const version$1 = "14.4.1-beta.1";
1011
1011
 
1012
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
1012
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
1013
1013
  /*
1014
1014
  * Copyright (c) Microsoft Corporation. All rights reserved.
1015
1015
  * Licensed under the MIT License.
@@ -1029,7 +1029,7 @@ const AzureCloudInstance = {
1029
1029
  AzureUsGovernment: "https://login.microsoftonline.us",
1030
1030
  };
1031
1031
 
1032
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
1032
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
1033
1033
 
1034
1034
  /*
1035
1035
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1090,7 +1090,7 @@ function checkMaxAge(authTime, maxAge) {
1090
1090
  }
1091
1091
  }
1092
1092
 
1093
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
1093
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
1094
1094
  /*
1095
1095
  * Copyright (c) Microsoft Corporation. All rights reserved.
1096
1096
  * Licensed under the MIT License.
@@ -1137,7 +1137,7 @@ class TimeUtils {
1137
1137
  }
1138
1138
  }
1139
1139
 
1140
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
1140
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
1141
1141
 
1142
1142
  /*
1143
1143
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1374,7 +1374,7 @@ function isServerTelemetryEntity(key, entity) {
1374
1374
  return validateKey && validateEntity;
1375
1375
  }
1376
1376
 
1377
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
1377
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
1378
1378
  /*
1379
1379
  * Copyright (c) Microsoft Corporation. All rights reserved.
1380
1380
  * Licensed under the MIT License.
@@ -1428,7 +1428,7 @@ var ClientConfigurationErrorCodes = /*#__PURE__*/Object.freeze({
1428
1428
  urlParseError: urlParseError
1429
1429
  });
1430
1430
 
1431
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
1431
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
1432
1432
 
1433
1433
  /*
1434
1434
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1566,7 +1566,7 @@ function createClientConfigurationError(errorCode) {
1566
1566
  return new ClientConfigurationError(errorCode);
1567
1567
  }
1568
1568
 
1569
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
1569
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
1570
1570
  /*
1571
1571
  * Copyright (c) Microsoft Corporation. All rights reserved.
1572
1572
  * Licensed under the MIT License.
@@ -1663,7 +1663,7 @@ class StringUtils {
1663
1663
  }
1664
1664
  }
1665
1665
 
1666
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
1666
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
1667
1667
 
1668
1668
  /*
1669
1669
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1863,7 +1863,7 @@ class ScopeSet {
1863
1863
  }
1864
1864
  }
1865
1865
 
1866
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
1866
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
1867
1867
 
1868
1868
  /*
1869
1869
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1903,7 +1903,7 @@ function buildClientInfoFromHomeAccountId(homeAccountId) {
1903
1903
  };
1904
1904
  }
1905
1905
 
1906
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
1906
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
1907
1907
  /*
1908
1908
  * Copyright (c) Microsoft Corporation. All rights reserved.
1909
1909
  * Licensed under the MIT License.
@@ -1918,7 +1918,7 @@ const AuthorityType = {
1918
1918
  Ciam: 3,
1919
1919
  };
1920
1920
 
1921
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
1921
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
1922
1922
  /*
1923
1923
  * Copyright (c) Microsoft Corporation. All rights reserved.
1924
1924
  * Licensed under the MIT License.
@@ -1931,7 +1931,7 @@ const ProtocolMode = {
1931
1931
  OIDC: "OIDC",
1932
1932
  };
1933
1933
 
1934
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
1934
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
1935
1935
 
1936
1936
  /*
1937
1937
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2152,7 +2152,7 @@ class AccountEntity {
2152
2152
  }
2153
2153
  }
2154
2154
 
2155
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
2155
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
2156
2156
 
2157
2157
  /*
2158
2158
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2199,7 +2199,7 @@ function getDeserializedResponse(responseString) {
2199
2199
  return null;
2200
2200
  }
2201
2201
 
2202
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
2202
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
2203
2203
 
2204
2204
  /*
2205
2205
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2363,7 +2363,7 @@ class UrlString {
2363
2363
  }
2364
2364
  }
2365
2365
 
2366
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
2366
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
2367
2367
 
2368
2368
  /*
2369
2369
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2969,7 +2969,7 @@ function getCloudDiscoveryMetadataFromNetworkResponse(response, authorityHost) {
2969
2969
  return null;
2970
2970
  }
2971
2971
 
2972
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
2972
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
2973
2973
 
2974
2974
  /*
2975
2975
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4074,7 +4074,7 @@ class DefaultStorageClass extends CacheManager {
4074
4074
  }
4075
4075
  }
4076
4076
 
4077
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
4077
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
4078
4078
 
4079
4079
  /*
4080
4080
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4174,7 +4174,7 @@ function isOidcProtocolMode(config) {
4174
4174
  return (config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC);
4175
4175
  }
4176
4176
 
4177
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
4177
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
4178
4178
 
4179
4179
  /*
4180
4180
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4191,7 +4191,7 @@ class ServerError extends AuthError {
4191
4191
  }
4192
4192
  }
4193
4193
 
4194
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
4194
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
4195
4195
 
4196
4196
  /*
4197
4197
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4289,7 +4289,7 @@ class ThrottlingUtils {
4289
4289
  }
4290
4290
  }
4291
4291
 
4292
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
4292
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
4293
4293
 
4294
4294
  /*
4295
4295
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4326,7 +4326,7 @@ class NetworkManager {
4326
4326
  }
4327
4327
  }
4328
4328
 
4329
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
4329
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
4330
4330
  /*
4331
4331
  * Copyright (c) Microsoft Corporation. All rights reserved.
4332
4332
  * Licensed under the MIT License.
@@ -4336,7 +4336,7 @@ const CcsCredentialType = {
4336
4336
  UPN: "UPN",
4337
4337
  };
4338
4338
 
4339
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
4339
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
4340
4340
 
4341
4341
  /*
4342
4342
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4420,7 +4420,7 @@ class RequestValidator {
4420
4420
  }
4421
4421
  }
4422
4422
 
4423
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
4423
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
4424
4424
 
4425
4425
  /*
4426
4426
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4804,7 +4804,7 @@ class RequestParameterBuilder {
4804
4804
  }
4805
4805
  }
4806
4806
 
4807
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
4807
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
4808
4808
  /*
4809
4809
  * Copyright (c) Microsoft Corporation. All rights reserved.
4810
4810
  * Licensed under the MIT License.
@@ -4816,7 +4816,7 @@ function isOpenIdConfigResponse(response) {
4816
4816
  response.hasOwnProperty("jwks_uri"));
4817
4817
  }
4818
4818
 
4819
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
4819
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
4820
4820
 
4821
4821
  /*
4822
4822
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4897,7 +4897,7 @@ class AuthorityMetadataEntity {
4897
4897
  }
4898
4898
  }
4899
4899
 
4900
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
4900
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
4901
4901
  /*
4902
4902
  * Copyright (c) Microsoft Corporation. All rights reserved.
4903
4903
  * Licensed under the MIT License.
@@ -4907,7 +4907,7 @@ function isCloudInstanceDiscoveryResponse(response) {
4907
4907
  response.hasOwnProperty("metadata"));
4908
4908
  }
4909
4909
 
4910
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
4910
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
4911
4911
  /*
4912
4912
  * Copyright (c) Microsoft Corporation. All rights reserved.
4913
4913
  * Licensed under the MIT License.
@@ -4917,7 +4917,7 @@ function isCloudInstanceDiscoveryErrorResponse(response) {
4917
4917
  response.hasOwnProperty("error_description"));
4918
4918
  }
4919
4919
 
4920
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
4920
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
4921
4921
  /*
4922
4922
  * Copyright (c) Microsoft Corporation. All rights reserved.
4923
4923
  * Licensed under the MIT License.
@@ -5172,7 +5172,7 @@ const IntFields = new Set([
5172
5172
  "multiMatchedRT",
5173
5173
  ]);
5174
5174
 
5175
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
5175
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
5176
5176
  /*
5177
5177
  * Copyright (c) Microsoft Corporation. All rights reserved.
5178
5178
  * Licensed under the MIT License.
@@ -5258,7 +5258,7 @@ const invokeAsync = (callback, eventName, logger, telemetryClient, correlationId
5258
5258
  };
5259
5259
  };
5260
5260
 
5261
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
5261
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
5262
5262
 
5263
5263
  /*
5264
5264
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5367,7 +5367,7 @@ RegionDiscovery.IMDS_OPTIONS = {
5367
5367
  },
5368
5368
  };
5369
5369
 
5370
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
5370
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
5371
5371
 
5372
5372
  /*
5373
5373
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6158,7 +6158,7 @@ function buildStaticAuthorityOptions(authOptions) {
6158
6158
  };
6159
6159
  }
6160
6160
 
6161
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
6161
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
6162
6162
 
6163
6163
  /*
6164
6164
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6208,7 +6208,7 @@ class AuthorityFactory {
6208
6208
  }
6209
6209
  }
6210
6210
 
6211
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
6211
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
6212
6212
 
6213
6213
  /*
6214
6214
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6311,7 +6311,7 @@ class BaseClient {
6311
6311
  }
6312
6312
  }
6313
6313
 
6314
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
6314
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
6315
6315
  /*
6316
6316
  * Copyright (c) Microsoft Corporation. All rights reserved.
6317
6317
  * Licensed under the MIT License.
@@ -6335,7 +6335,7 @@ var InteractionRequiredAuthErrorCodes = /*#__PURE__*/Object.freeze({
6335
6335
  refreshTokenExpired: refreshTokenExpired
6336
6336
  });
6337
6337
 
6338
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
6338
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
6339
6339
 
6340
6340
  /*
6341
6341
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6415,7 +6415,7 @@ function createInteractionRequiredAuthError(errorCode) {
6415
6415
  return new InteractionRequiredAuthError(errorCode, InteractionRequiredAuthErrorMessages[errorCode]);
6416
6416
  }
6417
6417
 
6418
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
6418
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
6419
6419
  /*
6420
6420
  * Copyright (c) Microsoft Corporation. All rights reserved.
6421
6421
  * Licensed under the MIT License.
@@ -6431,7 +6431,7 @@ class CacheRecord {
6431
6431
  }
6432
6432
  }
6433
6433
 
6434
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
6434
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
6435
6435
 
6436
6436
  /*
6437
6437
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6503,7 +6503,7 @@ class ProtocolUtils {
6503
6503
  }
6504
6504
  }
6505
6505
 
6506
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
6506
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
6507
6507
 
6508
6508
  /*
6509
6509
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6588,7 +6588,7 @@ class PopTokenGenerator {
6588
6588
  }
6589
6589
  }
6590
6590
 
6591
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
6591
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
6592
6592
 
6593
6593
  /*
6594
6594
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6657,7 +6657,7 @@ class AppMetadataEntity {
6657
6657
  }
6658
6658
  }
6659
6659
 
6660
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
6660
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
6661
6661
  /*
6662
6662
  * Copyright (c) Microsoft Corporation. All rights reserved.
6663
6663
  * Licensed under the MIT License.
@@ -6684,7 +6684,7 @@ class AppMetadataEntity {
6684
6684
  }
6685
6685
  }
6686
6686
 
6687
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
6687
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
6688
6688
 
6689
6689
  /*
6690
6690
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6999,7 +6999,7 @@ class ResponseHandler {
6999
6999
  }
7000
7000
  }
7001
7001
 
7002
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
7002
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
7003
7003
 
7004
7004
  /*
7005
7005
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7404,7 +7404,7 @@ class AuthorizationCodeClient extends BaseClient {
7404
7404
  }
7405
7405
  }
7406
7406
 
7407
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
7407
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
7408
7408
 
7409
7409
  /*
7410
7410
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7599,7 +7599,7 @@ class RefreshTokenClient extends BaseClient {
7599
7599
  }
7600
7600
  }
7601
7601
 
7602
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
7602
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
7603
7603
 
7604
7604
  /*
7605
7605
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7720,7 +7720,7 @@ class SilentFlowClient extends BaseClient {
7720
7720
  }
7721
7721
  }
7722
7722
 
7723
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
7723
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
7724
7724
 
7725
7725
  /*
7726
7726
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7746,7 +7746,7 @@ class ThrottlingEntity {
7746
7746
  }
7747
7747
  }
7748
7748
 
7749
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
7749
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
7750
7750
 
7751
7751
  /*
7752
7752
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7761,7 +7761,7 @@ const StubbedNetworkModule = {
7761
7761
  },
7762
7762
  };
7763
7763
 
7764
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
7764
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
7765
7765
  /*
7766
7766
  * Copyright (c) Microsoft Corporation. All rights reserved.
7767
7767
  * Licensed under the MIT License.
@@ -7769,7 +7769,7 @@ const StubbedNetworkModule = {
7769
7769
  const missingKidError = "missing_kid_error";
7770
7770
  const missingAlgError = "missing_alg_error";
7771
7771
 
7772
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
7772
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
7773
7773
 
7774
7774
  /*
7775
7775
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7794,7 +7794,7 @@ function createJoseHeaderError(code) {
7794
7794
  return new JoseHeaderError(code, JoseHeaderErrorMessages[code]);
7795
7795
  }
7796
7796
 
7797
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
7797
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
7798
7798
 
7799
7799
  /*
7800
7800
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7834,7 +7834,7 @@ class JoseHeader {
7834
7834
  }
7835
7835
  }
7836
7836
 
7837
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
7837
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
7838
7838
 
7839
7839
  /*
7840
7840
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7892,7 +7892,7 @@ class AuthenticationHeaderParser {
7892
7892
  }
7893
7893
  }
7894
7894
 
7895
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
7895
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
7896
7896
 
7897
7897
  /*
7898
7898
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -8096,7 +8096,7 @@ class ServerTelemetryManager {
8096
8096
  }
8097
8097
  }
8098
8098
 
8099
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
8099
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
8100
8100
 
8101
8101
  /*
8102
8102
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -8508,7 +8508,7 @@ class PerformanceClient {
8508
8508
  }
8509
8509
  }
8510
8510
 
8511
- /*! @azure/msal-common v14.4.1-beta.0 2023-11-14 */
8511
+ /*! @azure/msal-common v14.4.1-beta.1 2023-11-14 */
8512
8512
 
8513
8513
  /*
8514
8514
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -9564,7 +9564,7 @@ function buildConfiguration({ auth: userInputAuth, cache: userInputCache, system
9564
9564
 
9565
9565
  /* eslint-disable header/header */
9566
9566
  const name = "@azure/msal-browser";
9567
- const version = "3.5.0";
9567
+ const version = "3.5.1-beta.1";
9568
9568
 
9569
9569
  /*
9570
9570
  * Copyright (c) Microsoft Corporation. All rights reserved.