@azure/msal-common 15.13.2 → 15.13.3

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 (90) hide show
  1. package/dist/account/AccountInfo.mjs +1 -1
  2. package/dist/account/AuthToken.mjs +1 -1
  3. package/dist/account/CcsCredential.mjs +1 -1
  4. package/dist/account/ClientInfo.mjs +1 -1
  5. package/dist/account/TokenClaims.mjs +1 -1
  6. package/dist/authority/Authority.mjs +1 -1
  7. package/dist/authority/AuthorityFactory.mjs +1 -1
  8. package/dist/authority/AuthorityMetadata.mjs +1 -1
  9. package/dist/authority/AuthorityOptions.mjs +1 -1
  10. package/dist/authority/AuthorityType.mjs +1 -1
  11. package/dist/authority/CloudInstanceDiscoveryErrorResponse.mjs +1 -1
  12. package/dist/authority/CloudInstanceDiscoveryResponse.mjs +1 -1
  13. package/dist/authority/OpenIdConfigResponse.mjs +1 -1
  14. package/dist/authority/ProtocolMode.mjs +1 -1
  15. package/dist/authority/RegionDiscovery.mjs +1 -1
  16. package/dist/cache/CacheManager.mjs +1 -1
  17. package/dist/cache/entities/AccountEntity.mjs +1 -1
  18. package/dist/cache/persistence/TokenCacheContext.mjs +1 -1
  19. package/dist/cache/utils/CacheHelpers.mjs +1 -1
  20. package/dist/client/AuthorizationCodeClient.mjs +1 -1
  21. package/dist/client/BaseClient.mjs +1 -1
  22. package/dist/client/RefreshTokenClient.mjs +1 -1
  23. package/dist/client/SilentFlowClient.mjs +1 -1
  24. package/dist/config/ClientConfiguration.mjs +1 -1
  25. package/dist/constants/AADServerParamKeys.mjs +1 -1
  26. package/dist/crypto/ICrypto.mjs +1 -1
  27. package/dist/crypto/JoseHeader.mjs +1 -1
  28. package/dist/crypto/PopTokenGenerator.mjs +1 -1
  29. package/dist/error/AuthError.mjs +1 -1
  30. package/dist/error/AuthErrorCodes.mjs +1 -1
  31. package/dist/error/CacheError.mjs +1 -1
  32. package/dist/error/CacheErrorCodes.mjs +1 -1
  33. package/dist/error/ClientAuthError.mjs +1 -1
  34. package/dist/error/ClientAuthErrorCodes.mjs +1 -1
  35. package/dist/error/ClientConfigurationError.d.ts +5 -0
  36. package/dist/error/ClientConfigurationError.d.ts.map +1 -1
  37. package/dist/error/ClientConfigurationError.mjs +7 -2
  38. package/dist/error/ClientConfigurationError.mjs.map +1 -1
  39. package/dist/error/ClientConfigurationErrorCodes.d.ts +1 -0
  40. package/dist/error/ClientConfigurationErrorCodes.d.ts.map +1 -1
  41. package/dist/error/ClientConfigurationErrorCodes.mjs +4 -3
  42. package/dist/error/ClientConfigurationErrorCodes.mjs.map +1 -1
  43. package/dist/error/InteractionRequiredAuthError.mjs +1 -1
  44. package/dist/error/InteractionRequiredAuthErrorCodes.mjs +1 -1
  45. package/dist/error/JoseHeaderError.mjs +1 -1
  46. package/dist/error/JoseHeaderErrorCodes.mjs +1 -1
  47. package/dist/error/NetworkError.mjs +1 -1
  48. package/dist/error/PlatformBrokerError.mjs +1 -1
  49. package/dist/error/ServerError.mjs +1 -1
  50. package/dist/index-browser.mjs +1 -1
  51. package/dist/index-node.mjs +1 -1
  52. package/dist/index.mjs +1 -1
  53. package/dist/logger/Logger.mjs +1 -1
  54. package/dist/network/INetworkModule.mjs +1 -1
  55. package/dist/network/RequestThumbprint.mjs +1 -1
  56. package/dist/network/ThrottlingUtils.mjs +1 -1
  57. package/dist/packageMetadata.d.ts +1 -1
  58. package/dist/packageMetadata.mjs +2 -2
  59. package/dist/protocol/Authorize.mjs +1 -1
  60. package/dist/request/AuthenticationHeaderParser.mjs +1 -1
  61. package/dist/request/RequestParameterBuilder.mjs +1 -1
  62. package/dist/request/ScopeSet.mjs +1 -1
  63. package/dist/response/ResponseHandler.mjs +1 -1
  64. package/dist/telemetry/performance/PerformanceClient.mjs +1 -1
  65. package/dist/telemetry/performance/PerformanceEvent.mjs +1 -1
  66. package/dist/telemetry/performance/StubPerformanceClient.mjs +1 -1
  67. package/dist/telemetry/server/ServerTelemetryManager.mjs +1 -1
  68. package/dist/url/UrlString.mjs +1 -1
  69. package/dist/utils/ClientAssertionUtils.mjs +1 -1
  70. package/dist/utils/Constants.mjs +1 -1
  71. package/dist/utils/FunctionWrappers.mjs +1 -1
  72. package/dist/utils/ProtocolUtils.mjs +1 -1
  73. package/dist/utils/StringUtils.mjs +1 -1
  74. package/dist/utils/TimeUtils.mjs +1 -1
  75. package/dist/utils/UrlUtils.mjs +1 -1
  76. package/lib/index-browser.cjs +2 -2
  77. package/lib/{index-node-BF0Vz18w.js → index-node-4Jss3kYh.js} +11 -4
  78. package/lib/index-node-4Jss3kYh.js.map +1 -0
  79. package/lib/index-node.cjs +2 -2
  80. package/lib/index.cjs +2 -2
  81. package/lib/types/error/ClientConfigurationError.d.ts +5 -0
  82. package/lib/types/error/ClientConfigurationError.d.ts.map +1 -1
  83. package/lib/types/error/ClientConfigurationErrorCodes.d.ts +1 -0
  84. package/lib/types/error/ClientConfigurationErrorCodes.d.ts.map +1 -1
  85. package/lib/types/packageMetadata.d.ts +1 -1
  86. package/package.json +1 -1
  87. package/src/error/ClientConfigurationError.ts +8 -0
  88. package/src/error/ClientConfigurationErrorCodes.ts +2 -0
  89. package/src/packageMetadata.ts +1 -1
  90. package/lib/index-node-BF0Vz18w.js.map +0 -1
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-common v15.13.2 2025-11-19 */
1
+ /*! @azure/msal-common v15.13.3 2025-12-04 */
2
2
  'use strict';
3
3
  /*
4
4
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-common v15.13.2 2025-11-19 */
1
+ /*! @azure/msal-common v15.13.3 2025-12-04 */
2
2
  'use strict';
3
3
  import { Constants } from './Constants.mjs';
4
4
  import { createClientAuthError } from '../error/ClientAuthError.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-common v15.13.2 2025-11-19 */
1
+ /*! @azure/msal-common v15.13.3 2025-12-04 */
2
2
  'use strict';
3
3
  /*
4
4
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-common v15.13.2 2025-11-19 */
1
+ /*! @azure/msal-common v15.13.3 2025-12-04 */
2
2
  'use strict';
3
3
  /*
4
4
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-common v15.13.2 2025-11-19 */
1
+ /*! @azure/msal-common v15.13.3 2025-12-04 */
2
2
  'use strict';
3
3
  import { createClientAuthError } from '../error/ClientAuthError.mjs';
4
4
  import { StringUtils } from './StringUtils.mjs';
@@ -1,8 +1,8 @@
1
- /*! @azure/msal-common v15.13.2 2025-11-19 */
1
+ /*! @azure/msal-common v15.13.3 2025-12-04 */
2
2
  'use strict';
3
3
  'use strict';
4
4
 
5
- var indexNode = require('./index-node-BF0Vz18w.js');
5
+ var indexNode = require('./index-node-4Jss3kYh.js');
6
6
 
7
7
  /*
8
8
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-common v15.13.2 2025-11-19 */
1
+ /*! @azure/msal-common v15.13.3 2025-12-04 */
2
2
  'use strict';
3
3
  'use strict';
4
4
 
@@ -878,7 +878,8 @@ const cannotSetOIDCOptions = "cannot_set_OIDCOptions";
878
878
  const cannotAllowPlatformBroker = "cannot_allow_platform_broker";
879
879
  const authorityMismatch = "authority_mismatch";
880
880
  const invalidRequestMethodForEAR = "invalid_request_method_for_EAR";
881
- const invalidAuthorizePostBodyParameters = "invalid_authorize_post_body_parameters";
881
+ const invalidAuthorizePostBodyParameters = "invalid_authorize_post_body_parameters";
882
+ const invalidPlatformBrokerConfiguration = "invalid_platform_broker_configuration";
882
883
 
883
884
  var ClientConfigurationErrorCodes = /*#__PURE__*/Object.freeze({
884
885
  __proto__: null,
@@ -894,6 +895,7 @@ var ClientConfigurationErrorCodes = /*#__PURE__*/Object.freeze({
894
895
  invalidClaims: invalidClaims,
895
896
  invalidCloudDiscoveryMetadata: invalidCloudDiscoveryMetadata,
896
897
  invalidCodeChallengeMethod: invalidCodeChallengeMethod,
898
+ invalidPlatformBrokerConfiguration: invalidPlatformBrokerConfiguration,
897
899
  invalidRequestMethodForEAR: invalidRequestMethodForEAR,
898
900
  logoutRequestEmpty: logoutRequestEmpty,
899
901
  missingNonceAuthenticationHeader: missingNonceAuthenticationHeader,
@@ -935,6 +937,7 @@ const ClientConfigurationErrorMessages = {
935
937
  [authorityMismatch]: "Authority mismatch error. Authority provided in login request or PublicClientApplication config does not match the environment of the provided account. Please use a matching account or make an interactive request to login to this authority.",
936
938
  [invalidAuthorizePostBodyParameters]: "Invalid authorize post body parameters provided. If you are using authorizePostBodyParameters, the request method must be POST. Please check the request method and parameters.",
937
939
  [invalidRequestMethodForEAR]: "Invalid request method for EAR protocol mode. The request method cannot be GET when using EAR protocol mode. Please change the request method to POST.",
940
+ [invalidPlatformBrokerConfiguration]: "Invalid platform broker configuration. `allowPlatformBrokerWithDOM` can only be enabled when `allowPlatformBroker` is enabled.",
938
941
  };
939
942
  /**
940
943
  * ClientConfigurationErrorMessage class containing string constants used by error codes and messages.
@@ -1033,6 +1036,10 @@ const ClientConfigurationErrorMessage = {
1033
1036
  code: invalidRequestMethodForEAR,
1034
1037
  desc: ClientConfigurationErrorMessages[invalidRequestMethodForEAR],
1035
1038
  },
1039
+ invalidPlatformBrokerConfiguration: {
1040
+ code: invalidPlatformBrokerConfiguration,
1041
+ desc: ClientConfigurationErrorMessages[invalidPlatformBrokerConfiguration],
1042
+ },
1036
1043
  };
1037
1044
  /**
1038
1045
  * Error thrown when there is an error in configuration of the MSAL.js library.
@@ -3933,7 +3940,7 @@ class Logger {
3933
3940
 
3934
3941
  /* eslint-disable header/header */
3935
3942
  const name = "@azure/msal-common";
3936
- const version = "15.13.2";
3943
+ const version = "15.13.3";
3937
3944
 
3938
3945
  /*
3939
3946
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -8480,4 +8487,4 @@ exports.invokeAsync = invokeAsync;
8480
8487
  exports.tenantIdMatchesHomeTenant = tenantIdMatchesHomeTenant;
8481
8488
  exports.updateAccountTenantProfileData = updateAccountTenantProfileData;
8482
8489
  exports.version = version;
8483
- //# sourceMappingURL=index-node-BF0Vz18w.js.map
8490
+ //# sourceMappingURL=index-node-4Jss3kYh.js.map