@azure/msal-browser 5.10.1 → 5.11.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 (255) hide show
  1. package/dist/app/IPublicClientApplication.mjs +1 -1
  2. package/dist/app/PublicClientApplication.mjs +1 -1
  3. package/dist/broker/nativeBroker/NativeStatusCodes.mjs +1 -1
  4. package/dist/broker/nativeBroker/PlatformAuthDOMHandler.mjs +1 -1
  5. package/dist/broker/nativeBroker/PlatformAuthExtensionHandler.mjs +1 -1
  6. package/dist/broker/nativeBroker/PlatformAuthProvider.mjs +18 -32
  7. package/dist/broker/nativeBroker/PlatformAuthProvider.mjs.map +1 -1
  8. package/dist/cache/AccountManager.mjs +1 -1
  9. package/dist/cache/AsyncMemoryStorage.mjs +1 -1
  10. package/dist/cache/BrowserCacheManager.mjs +1 -1
  11. package/dist/cache/CacheHelpers.mjs +1 -1
  12. package/dist/cache/CacheKeys.mjs +2 -3
  13. package/dist/cache/CacheKeys.mjs.map +1 -1
  14. package/dist/cache/CookieStorage.mjs +1 -1
  15. package/dist/cache/DatabaseStorage.mjs +1 -1
  16. package/dist/cache/EncryptedData.mjs +1 -1
  17. package/dist/cache/LocalStorage.mjs +1 -1
  18. package/dist/cache/MemoryStorage.mjs +1 -1
  19. package/dist/cache/SessionStorage.mjs +1 -1
  20. package/dist/cache/TokenCache.mjs +1 -1
  21. package/dist/config/Configuration.mjs +2 -1
  22. package/dist/config/Configuration.mjs.map +1 -1
  23. package/dist/controllers/NestedAppAuthController.mjs +1 -1
  24. package/dist/controllers/StandardController.mjs +2 -2
  25. package/dist/controllers/StandardController.mjs.map +1 -1
  26. package/dist/crypto/BrowserCrypto.mjs +1 -1
  27. package/dist/crypto/CryptoOps.mjs +1 -1
  28. package/dist/crypto/PkceGenerator.mjs +1 -1
  29. package/dist/crypto/SignedHttpRequest.mjs +1 -1
  30. package/dist/custom_auth/CustomAuthConstants.mjs +11 -2
  31. package/dist/custom_auth/CustomAuthConstants.mjs.map +1 -1
  32. package/dist/custom_auth/CustomAuthPublicClientApplication.mjs +1 -1
  33. package/dist/custom_auth/controller/CustomAuthStandardController.mjs +2 -2
  34. package/dist/custom_auth/controller/CustomAuthStandardController.mjs.map +1 -1
  35. package/dist/custom_auth/core/CustomAuthAuthority.mjs +1 -1
  36. package/dist/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs +1 -1
  37. package/dist/custom_auth/core/auth_flow/AuthFlowResultBase.mjs +1 -1
  38. package/dist/custom_auth/core/auth_flow/AuthFlowState.mjs +1 -1
  39. package/dist/custom_auth/core/auth_flow/AuthFlowStateTypes.mjs +1 -1
  40. package/dist/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.mjs +1 -1
  41. package/dist/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.mjs +1 -1
  42. package/dist/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.mjs +1 -1
  43. package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.mjs +1 -1
  44. package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.mjs +1 -1
  45. package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.mjs +1 -1
  46. package/dist/custom_auth/core/auth_flow/mfa/error_type/MfaError.mjs +1 -1
  47. package/dist/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.mjs +1 -1
  48. package/dist/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.mjs +1 -1
  49. package/dist/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.mjs +1 -1
  50. package/dist/custom_auth/core/auth_flow/mfa/state/MfaFailedState.mjs +1 -1
  51. package/dist/custom_auth/core/auth_flow/mfa/state/MfaState.mjs +1 -1
  52. package/dist/custom_auth/core/error/CustomAuthApiError.mjs +1 -1
  53. package/dist/custom_auth/core/error/CustomAuthError.mjs +1 -1
  54. package/dist/custom_auth/core/error/HttpError.mjs +1 -1
  55. package/dist/custom_auth/core/error/HttpErrorCodes.mjs +1 -1
  56. package/dist/custom_auth/core/error/InvalidArgumentError.mjs +1 -1
  57. package/dist/custom_auth/core/error/InvalidConfigurationError.mjs +1 -1
  58. package/dist/custom_auth/core/error/InvalidConfigurationErrorCodes.mjs +1 -1
  59. package/dist/custom_auth/core/error/MethodNotImplementedError.mjs +1 -1
  60. package/dist/custom_auth/core/error/MsalCustomAuthError.mjs +1 -1
  61. package/dist/custom_auth/core/error/NoCachedAccountFoundError.mjs +1 -1
  62. package/dist/custom_auth/core/error/ParsedUrlError.mjs +1 -1
  63. package/dist/custom_auth/core/error/ParsedUrlErrorCodes.mjs +1 -1
  64. package/dist/custom_auth/core/error/UnexpectedError.mjs +1 -1
  65. package/dist/custom_auth/core/error/UnsupportedEnvironmentError.mjs +1 -1
  66. package/dist/custom_auth/core/error/UserAccountAttributeError.mjs +1 -1
  67. package/dist/custom_auth/core/error/UserAlreadySignedInError.mjs +1 -1
  68. package/dist/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.mjs +1 -1
  69. package/dist/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.mjs +1 -1
  70. package/dist/custom_auth/core/interaction_client/jit/JitClient.mjs +1 -1
  71. package/dist/custom_auth/core/interaction_client/jit/result/JitActionResult.mjs +1 -1
  72. package/dist/custom_auth/core/interaction_client/mfa/MfaClient.mjs +1 -1
  73. package/dist/custom_auth/core/interaction_client/mfa/result/MfaActionResult.mjs +1 -1
  74. package/dist/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs +21 -3
  75. package/dist/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs.map +1 -1
  76. package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs +6 -6
  77. package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs.map +1 -1
  78. package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.mjs +1 -1
  79. package/dist/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.mjs +1 -1
  80. package/dist/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs +3 -3
  81. package/dist/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs.map +1 -1
  82. package/dist/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs +3 -3
  83. package/dist/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs.map +1 -1
  84. package/dist/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs +3 -3
  85. package/dist/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs.map +1 -1
  86. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.mjs +1 -1
  87. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.mjs +1 -1
  88. package/dist/custom_auth/core/network_client/http_client/FetchHttpClient.mjs +1 -1
  89. package/dist/custom_auth/core/network_client/http_client/IHttpClient.mjs +1 -1
  90. package/dist/custom_auth/core/telemetry/PublicApiId.mjs +1 -1
  91. package/dist/custom_auth/core/utils/ArgumentValidator.mjs +1 -1
  92. package/dist/custom_auth/core/utils/CustomHeaderUtils.mjs +56 -0
  93. package/dist/custom_auth/core/utils/CustomHeaderUtils.mjs.map +1 -0
  94. package/dist/custom_auth/core/utils/UrlUtils.mjs +1 -1
  95. package/dist/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs +1 -1
  96. package/dist/custom_auth/get_account/auth_flow/error_type/GetAccountError.mjs +1 -1
  97. package/dist/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.mjs +1 -1
  98. package/dist/custom_auth/get_account/auth_flow/result/GetAccountResult.mjs +1 -1
  99. package/dist/custom_auth/get_account/auth_flow/result/SignOutResult.mjs +1 -1
  100. package/dist/custom_auth/get_account/auth_flow/state/GetAccessTokenState.mjs +1 -1
  101. package/dist/custom_auth/get_account/auth_flow/state/GetAccountState.mjs +1 -1
  102. package/dist/custom_auth/get_account/auth_flow/state/SignOutState.mjs +1 -1
  103. package/dist/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.mjs +1 -1
  104. package/dist/custom_auth/index.mjs +1 -1
  105. package/dist/custom_auth/operating_context/CustomAuthOperatingContext.mjs +1 -1
  106. package/dist/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.mjs +1 -1
  107. package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.mjs +1 -1
  108. package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.mjs +1 -1
  109. package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.mjs +1 -1
  110. package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.mjs +1 -1
  111. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.mjs +1 -1
  112. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.mjs +1 -1
  113. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.mjs +1 -1
  114. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.mjs +1 -1
  115. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordState.mjs +1 -1
  116. package/dist/custom_auth/reset_password/interaction_client/ResetPasswordClient.mjs +1 -1
  117. package/dist/custom_auth/sign_in/auth_flow/SignInScenario.mjs +1 -1
  118. package/dist/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs +1 -1
  119. package/dist/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.mjs +1 -1
  120. package/dist/custom_auth/sign_in/auth_flow/result/SignInResult.mjs +1 -1
  121. package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.mjs +1 -1
  122. package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.mjs +1 -1
  123. package/dist/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs +1 -1
  124. package/dist/custom_auth/sign_in/auth_flow/state/SignInCompletedState.mjs +1 -1
  125. package/dist/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs +1 -1
  126. package/dist/custom_auth/sign_in/auth_flow/state/SignInFailedState.mjs +1 -1
  127. package/dist/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs +1 -1
  128. package/dist/custom_auth/sign_in/auth_flow/state/SignInState.mjs +1 -1
  129. package/dist/custom_auth/sign_in/interaction_client/SignInClient.mjs +1 -1
  130. package/dist/custom_auth/sign_in/interaction_client/result/SignInActionResult.mjs +1 -1
  131. package/dist/custom_auth/sign_up/auth_flow/error_type/SignUpError.mjs +1 -1
  132. package/dist/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.mjs +1 -1
  133. package/dist/custom_auth/sign_up/auth_flow/result/SignUpResult.mjs +1 -1
  134. package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.mjs +1 -1
  135. package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.mjs +1 -1
  136. package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.mjs +1 -1
  137. package/dist/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.mjs +1 -1
  138. package/dist/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.mjs +1 -1
  139. package/dist/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.mjs +1 -1
  140. package/dist/custom_auth/sign_up/auth_flow/state/SignUpFailedState.mjs +1 -1
  141. package/dist/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.mjs +1 -1
  142. package/dist/custom_auth/sign_up/auth_flow/state/SignUpState.mjs +1 -1
  143. package/dist/custom_auth/sign_up/interaction_client/SignUpClient.mjs +1 -1
  144. package/dist/custom_auth/sign_up/interaction_client/result/SignUpActionResult.mjs +1 -1
  145. package/dist/encode/Base64Decode.mjs +1 -1
  146. package/dist/encode/Base64Encode.mjs +1 -1
  147. package/dist/error/BrowserAuthError.mjs +1 -1
  148. package/dist/error/BrowserAuthErrorCodes.mjs +1 -1
  149. package/dist/error/BrowserConfigurationAuthError.mjs +1 -1
  150. package/dist/error/BrowserConfigurationAuthErrorCodes.mjs +1 -1
  151. package/dist/error/NativeAuthError.mjs +1 -1
  152. package/dist/error/NativeAuthErrorCodes.mjs +1 -1
  153. package/dist/error/NestedAppAuthError.mjs +1 -1
  154. package/dist/event/EventHandler.mjs +1 -1
  155. package/dist/event/EventMessage.mjs +1 -1
  156. package/dist/event/EventType.mjs +1 -1
  157. package/dist/index.mjs +1 -1
  158. package/dist/interaction_client/BaseInteractionClient.mjs +1 -1
  159. package/dist/interaction_client/HybridSpaAuthorizationCodeClient.mjs +1 -1
  160. package/dist/interaction_client/PlatformAuthInteractionClient.mjs +1 -1
  161. package/dist/interaction_client/PopupClient.mjs +1 -1
  162. package/dist/interaction_client/RedirectClient.mjs +1 -1
  163. package/dist/interaction_client/SilentAuthCodeClient.mjs +1 -1
  164. package/dist/interaction_client/SilentCacheClient.mjs +1 -1
  165. package/dist/interaction_client/SilentIframeClient.mjs +1 -1
  166. package/dist/interaction_client/SilentRefreshClient.mjs +1 -1
  167. package/dist/interaction_client/StandardInteractionClient.mjs +6 -4
  168. package/dist/interaction_client/StandardInteractionClient.mjs.map +1 -1
  169. package/dist/interaction_handler/InteractionHandler.mjs +1 -1
  170. package/dist/interaction_handler/SilentHandler.mjs +1 -1
  171. package/dist/log-strings-mapping.json +1200 -1188
  172. package/dist/naa/BridgeError.mjs +1 -1
  173. package/dist/naa/BridgeProxy.mjs +1 -1
  174. package/dist/naa/BridgeStatusCode.mjs +1 -1
  175. package/dist/naa/mapping/NestedAppAuthAdapter.mjs +1 -1
  176. package/dist/navigation/NavigationClient.mjs +1 -1
  177. package/dist/network/FetchClient.mjs +1 -1
  178. package/dist/operatingcontext/BaseOperatingContext.mjs +1 -1
  179. package/dist/operatingcontext/NestedAppOperatingContext.mjs +1 -1
  180. package/dist/operatingcontext/StandardOperatingContext.mjs +1 -1
  181. package/dist/packageMetadata.mjs +2 -2
  182. package/dist/protocol/Authorize.mjs +1 -1
  183. package/dist/redirect_bridge/index.mjs +1 -1
  184. package/dist/request/RequestHelpers.mjs +1 -1
  185. package/dist/response/ResponseHandler.mjs +1 -1
  186. package/dist/telemetry/BrowserPerformanceClient.mjs +1 -1
  187. package/dist/telemetry/BrowserPerformanceEvents.mjs +1 -1
  188. package/dist/telemetry/BrowserPerformanceMeasurement.mjs +1 -1
  189. package/dist/telemetry/BrowserRootPerformanceEvents.mjs +1 -1
  190. package/dist/utils/BrowserConstants.mjs +1 -1
  191. package/dist/utils/BrowserProtocolUtils.mjs +1 -1
  192. package/dist/utils/BrowserUtils.mjs +1 -1
  193. package/dist/utils/Helpers.mjs +1 -1
  194. package/dist/utils/MsalFrameStatsUtils.mjs +1 -1
  195. package/lib/custom-auth-path/log-strings-mapping.json +21 -9
  196. package/lib/custom-auth-path/msal-custom-auth.cjs +171 -104
  197. package/lib/custom-auth-path/msal-custom-auth.cjs.map +1 -1
  198. package/lib/custom-auth-path/msal-custom-auth.js +171 -104
  199. package/lib/custom-auth-path/msal-custom-auth.js.map +1 -1
  200. package/lib/log-strings-mapping.json +8 -8
  201. package/lib/msal-browser.cjs +92 -101
  202. package/lib/msal-browser.cjs.map +1 -1
  203. package/lib/msal-browser.js +92 -101
  204. package/lib/msal-browser.js.map +1 -1
  205. package/lib/msal-browser.min.js +2 -2
  206. package/lib/redirect-bridge/msal-redirect-bridge.cjs +10 -10
  207. package/lib/redirect-bridge/msal-redirect-bridge.cjs.map +1 -1
  208. package/lib/redirect-bridge/msal-redirect-bridge.js +10 -10
  209. package/lib/redirect-bridge/msal-redirect-bridge.js.map +1 -1
  210. package/lib/redirect-bridge/msal-redirect-bridge.min.js +1 -1
  211. package/package.json +2 -2
  212. package/src/broker/nativeBroker/PlatformAuthProvider.ts +34 -30
  213. package/src/config/Configuration.ts +5 -0
  214. package/src/controllers/StandardController.ts +2 -1
  215. package/src/custom_auth/CustomAuthConstants.ts +10 -0
  216. package/src/custom_auth/configuration/CustomAuthConfiguration.ts +2 -0
  217. package/src/custom_auth/configuration/CustomAuthRequestInterceptor.ts +54 -0
  218. package/src/custom_auth/controller/CustomAuthStandardController.ts +3 -1
  219. package/src/custom_auth/core/network_client/custom_auth_api/BaseApiClient.ts +41 -2
  220. package/src/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.ts +17 -5
  221. package/src/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.ts +8 -2
  222. package/src/custom_auth/core/network_client/custom_auth_api/SignInApiClient.ts +8 -3
  223. package/src/custom_auth/core/network_client/custom_auth_api/SignupApiClient.ts +8 -2
  224. package/src/custom_auth/core/utils/CustomHeaderUtils.ts +75 -0
  225. package/src/custom_auth/index.ts +4 -0
  226. package/src/interaction_client/StandardInteractionClient.ts +11 -5
  227. package/src/packageMetadata.ts +1 -1
  228. package/types/broker/nativeBroker/PlatformAuthProvider.d.ts +7 -12
  229. package/types/broker/nativeBroker/PlatformAuthProvider.d.ts.map +1 -1
  230. package/types/config/Configuration.d.ts +4 -0
  231. package/types/config/Configuration.d.ts.map +1 -1
  232. package/types/controllers/StandardController.d.ts.map +1 -1
  233. package/types/custom_auth/CustomAuthConstants.d.ts +5 -1
  234. package/types/custom_auth/CustomAuthConstants.d.ts.map +1 -1
  235. package/types/custom_auth/configuration/CustomAuthConfiguration.d.ts +2 -0
  236. package/types/custom_auth/configuration/CustomAuthConfiguration.d.ts.map +1 -1
  237. package/types/custom_auth/configuration/CustomAuthRequestInterceptor.d.ts +42 -0
  238. package/types/custom_auth/configuration/CustomAuthRequestInterceptor.d.ts.map +1 -0
  239. package/types/custom_auth/controller/CustomAuthStandardController.d.ts.map +1 -1
  240. package/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts +6 -2
  241. package/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts.map +1 -1
  242. package/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts +3 -1
  243. package/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts.map +1 -1
  244. package/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts +3 -1
  245. package/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts.map +1 -1
  246. package/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +3 -1
  247. package/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +1 -1
  248. package/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts +3 -1
  249. package/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts.map +1 -1
  250. package/types/custom_auth/core/utils/CustomHeaderUtils.d.ts +21 -0
  251. package/types/custom_auth/core/utils/CustomHeaderUtils.d.ts.map +1 -0
  252. package/types/custom_auth/index.d.ts +1 -0
  253. package/types/custom_auth/index.d.ts.map +1 -1
  254. package/types/interaction_client/StandardInteractionClient.d.ts.map +1 -1
  255. package/types/packageMetadata.d.ts +1 -1
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v5.10.1 2026-05-11 */
1
+ /*! @azure/msal-browser v5.11.0 2026-05-19 */
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 v16.6.1 2026-05-11 */
9
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
10
10
  /*
11
11
  * Copyright (c) Microsoft Corporation. All rights reserved.
12
12
  * Licensed under the MIT License.
@@ -238,7 +238,7 @@
238
238
  // Token renewal offset default in seconds
239
239
  const DEFAULT_TOKEN_RENEWAL_OFFSET_SEC = 300;
240
240
 
241
- /*! @azure/msal-common v16.6.1 2026-05-11 */
241
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
242
242
  /*
243
243
  * Copyright (c) Microsoft Corporation. All rights reserved.
244
244
  * Licensed under the MIT License.
@@ -290,7 +290,7 @@
290
290
  const RESOURCE = "resource";
291
291
  const CLI_DATA = "clidata";
292
292
 
293
- /*! @azure/msal-common v16.6.1 2026-05-11 */
293
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
294
294
  /*
295
295
  * Copyright (c) Microsoft Corporation. All rights reserved.
296
296
  * Licensed under the MIT License.
@@ -321,7 +321,7 @@
321
321
  return new AuthError(code, additionalMessage || getDefaultErrorMessage$1(code));
322
322
  }
323
323
 
324
- /*! @azure/msal-common v16.6.1 2026-05-11 */
324
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
325
325
 
326
326
  /*
327
327
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -341,7 +341,7 @@
341
341
  return new ClientConfigurationError(errorCode);
342
342
  }
343
343
 
344
- /*! @azure/msal-common v16.6.1 2026-05-11 */
344
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
345
345
  /*
346
346
  * Copyright (c) Microsoft Corporation. All rights reserved.
347
347
  * Licensed under the MIT License.
@@ -421,7 +421,7 @@
421
421
  }
422
422
  }
423
423
 
424
- /*! @azure/msal-common v16.6.1 2026-05-11 */
424
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
425
425
 
426
426
  /*
427
427
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -444,7 +444,7 @@
444
444
  return new ClientAuthError(errorCode, additionalMessage);
445
445
  }
446
446
 
447
- /*! @azure/msal-common v16.6.1 2026-05-11 */
447
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
448
448
  /*
449
449
  * Copyright (c) Microsoft Corporation. All rights reserved.
450
450
  * Licensed under the MIT License.
@@ -471,6 +471,7 @@
471
471
  const cannotAllowPlatformBroker = "cannot_allow_platform_broker";
472
472
  const authorityMismatch = "authority_mismatch";
473
473
  const invalidRequestMethodForEAR = "invalid_request_method_for_EAR";
474
+ const invalidPlatformBrokerConfiguration = "invalid_platform_broker_configuration";
474
475
  const issuerValidationFailed = "issuer_validation_failed";
475
476
 
476
477
  var ClientConfigurationErrorCodes = /*#__PURE__*/Object.freeze({
@@ -486,6 +487,7 @@
486
487
  invalidClaims: invalidClaims,
487
488
  invalidCloudDiscoveryMetadata: invalidCloudDiscoveryMetadata,
488
489
  invalidCodeChallengeMethod: invalidCodeChallengeMethod,
490
+ invalidPlatformBrokerConfiguration: invalidPlatformBrokerConfiguration,
489
491
  invalidRequestMethodForEAR: invalidRequestMethodForEAR,
490
492
  issuerValidationFailed: issuerValidationFailed,
491
493
  logoutRequestEmpty: logoutRequestEmpty,
@@ -500,7 +502,7 @@
500
502
  urlParseError: urlParseError
501
503
  });
502
504
 
503
- /*! @azure/msal-common v16.6.1 2026-05-11 */
505
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
504
506
  /*
505
507
  * Copyright (c) Microsoft Corporation. All rights reserved.
506
508
  * Licensed under the MIT License.
@@ -588,7 +590,7 @@
588
590
  userCanceled: userCanceled
589
591
  });
590
592
 
591
- /*! @azure/msal-common v16.6.1 2026-05-11 */
593
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
592
594
 
593
595
  /*
594
596
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -783,7 +785,7 @@
783
785
  }
784
786
  }
785
787
 
786
- /*! @azure/msal-common v16.6.1 2026-05-11 */
788
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
787
789
 
788
790
  /*
789
791
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1172,7 +1174,7 @@
1172
1174
  }
1173
1175
  }
1174
1176
 
1175
- /*! @azure/msal-common v16.6.1 2026-05-11 */
1177
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
1176
1178
 
1177
1179
  /*
1178
1180
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1281,7 +1283,7 @@
1281
1283
  }
1282
1284
  }
1283
1285
 
1284
- /*! @azure/msal-common v16.6.1 2026-05-11 */
1286
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
1285
1287
 
1286
1288
  /*
1287
1289
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1320,7 +1322,7 @@
1320
1322
  },
1321
1323
  };
1322
1324
 
1323
- /*! @azure/msal-common v16.6.1 2026-05-11 */
1325
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
1324
1326
  /*
1325
1327
  * Copyright (c) Microsoft Corporation. All rights reserved.
1326
1328
  * Licensed under the MIT License.
@@ -1595,12 +1597,12 @@
1595
1597
  }
1596
1598
  }
1597
1599
 
1598
- /*! @azure/msal-common v16.6.1 2026-05-11 */
1600
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
1599
1601
  /* eslint-disable header/header */
1600
1602
  const name$1 = "@azure/msal-common";
1601
- const version$1 = "16.6.1";
1603
+ const version$1 = "16.6.2";
1602
1604
 
1603
- /*! @azure/msal-common v16.6.1 2026-05-11 */
1605
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
1604
1606
  /*
1605
1607
  * Copyright (c) Microsoft Corporation. All rights reserved.
1606
1608
  * Licensed under the MIT License.
@@ -1620,7 +1622,7 @@
1620
1622
  AzureUsGovernment: "https://login.microsoftonline.us",
1621
1623
  };
1622
1624
 
1623
- /*! @azure/msal-common v16.6.1 2026-05-11 */
1625
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
1624
1626
  /*
1625
1627
  * Copyright (c) Microsoft Corporation. All rights reserved.
1626
1628
  * Licensed under the MIT License.
@@ -1703,7 +1705,7 @@
1703
1705
  return updatedAccountInfo;
1704
1706
  }
1705
1707
 
1706
- /*! @azure/msal-common v16.6.1 2026-05-11 */
1708
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
1707
1709
 
1708
1710
  /*
1709
1711
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1783,7 +1785,7 @@
1783
1785
  }
1784
1786
  }
1785
1787
 
1786
- /*! @azure/msal-common v16.6.1 2026-05-11 */
1788
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
1787
1789
 
1788
1790
  /*
1789
1791
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1940,7 +1942,7 @@
1940
1942
  }
1941
1943
  }
1942
1944
 
1943
- /*! @azure/msal-common v16.6.1 2026-05-11 */
1945
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
1944
1946
 
1945
1947
  /*
1946
1948
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2106,7 +2108,7 @@
2106
2108
  return null;
2107
2109
  }
2108
2110
 
2109
- /*! @azure/msal-common v16.6.1 2026-05-11 */
2111
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
2110
2112
  /*
2111
2113
  * Copyright (c) Microsoft Corporation. All rights reserved.
2112
2114
  * Licensed under the MIT License.
@@ -2114,7 +2116,7 @@
2114
2116
  const cacheQuotaExceeded = "cache_quota_exceeded";
2115
2117
  const cacheErrorUnknown = "cache_error_unknown";
2116
2118
 
2117
- /*! @azure/msal-common v16.6.1 2026-05-11 */
2119
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
2118
2120
 
2119
2121
  /*
2120
2122
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2152,7 +2154,7 @@
2152
2154
  }
2153
2155
  }
2154
2156
 
2155
- /*! @azure/msal-common v16.6.1 2026-05-11 */
2157
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
2156
2158
 
2157
2159
  /*
2158
2160
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2190,7 +2192,7 @@
2190
2192
  };
2191
2193
  }
2192
2194
 
2193
- /*! @azure/msal-common v16.6.1 2026-05-11 */
2195
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
2194
2196
  /*
2195
2197
  * Copyright (c) Microsoft Corporation. All rights reserved.
2196
2198
  * Licensed under the MIT License.
@@ -2205,7 +2207,7 @@
2205
2207
  Ciam: 3,
2206
2208
  };
2207
2209
 
2208
- /*! @azure/msal-common v16.6.1 2026-05-11 */
2210
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
2209
2211
  /*
2210
2212
  * Copyright (c) Microsoft Corporation. All rights reserved.
2211
2213
  * Licensed under the MIT License.
@@ -2227,7 +2229,7 @@
2227
2229
  return null;
2228
2230
  }
2229
2231
 
2230
- /*! @azure/msal-common v16.6.1 2026-05-11 */
2232
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
2231
2233
  /*
2232
2234
  * Copyright (c) Microsoft Corporation. All rights reserved.
2233
2235
  * Licensed under the MIT License.
@@ -2251,7 +2253,7 @@
2251
2253
  EAR: "EAR",
2252
2254
  };
2253
2255
 
2254
- /*! @azure/msal-common v16.6.1 2026-05-11 */
2256
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
2255
2257
  /**
2256
2258
  * Returns the AccountInfo interface for this account.
2257
2259
  */
@@ -2426,7 +2428,7 @@
2426
2428
  entity.hasOwnProperty("authorityType"));
2427
2429
  }
2428
2430
 
2429
- /*! @azure/msal-common v16.6.1 2026-05-11 */
2431
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
2430
2432
 
2431
2433
  /*
2432
2434
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3558,7 +3560,7 @@
3558
3560
  }
3559
3561
  }
3560
3562
 
3561
- /*! @azure/msal-common v16.6.1 2026-05-11 */
3563
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
3562
3564
  /*
3563
3565
  * Copyright (c) Microsoft Corporation. All rights reserved.
3564
3566
  * Licensed under the MIT License.
@@ -3609,7 +3611,7 @@
3609
3611
  "redirectBridgeMessageVersion",
3610
3612
  ]);
3611
3613
 
3612
- /*! @azure/msal-common v16.6.1 2026-05-11 */
3614
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
3613
3615
 
3614
3616
  /*
3615
3617
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3664,7 +3666,7 @@
3664
3666
  }
3665
3667
  }
3666
3668
 
3667
- /*! @azure/msal-common v16.6.1 2026-05-11 */
3669
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
3668
3670
 
3669
3671
  /*
3670
3672
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3759,7 +3761,7 @@
3759
3761
  return (config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC);
3760
3762
  }
3761
3763
 
3762
- /*! @azure/msal-common v16.6.1 2026-05-11 */
3764
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
3763
3765
  /*
3764
3766
  * Copyright (c) Microsoft Corporation. All rights reserved.
3765
3767
  * Licensed under the MIT License.
@@ -3786,7 +3788,7 @@
3786
3788
  }
3787
3789
  }
3788
3790
 
3789
- /*! @azure/msal-common v16.6.1 2026-05-11 */
3791
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
3790
3792
  /*
3791
3793
  * Copyright (c) Microsoft Corporation. All rights reserved.
3792
3794
  * Licensed under the MIT License.
@@ -3851,7 +3853,7 @@
3851
3853
  return cachedAtSec > nowSeconds();
3852
3854
  }
3853
3855
 
3854
- /*! @azure/msal-common v16.6.1 2026-05-11 */
3856
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
3855
3857
 
3856
3858
  /*
3857
3859
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4110,7 +4112,7 @@
4110
4112
  return metadata.expiresAt <= nowSeconds();
4111
4113
  }
4112
4114
 
4113
- /*! @azure/msal-common v16.6.1 2026-05-11 */
4115
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
4114
4116
  /*
4115
4117
  * Copyright (c) Microsoft Corporation. All rights reserved.
4116
4118
  * Licensed under the MIT License.
@@ -4181,7 +4183,7 @@
4181
4183
  const CacheManagerGetRefreshToken = "cacheManagerGetRefreshToken";
4182
4184
  const SetUserData = "setUserData";
4183
4185
 
4184
- /*! @azure/msal-common v16.6.1 2026-05-11 */
4186
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
4185
4187
  /*
4186
4188
  * Copyright (c) Microsoft Corporation. All rights reserved.
4187
4189
  * Licensed under the MIT License.
@@ -4274,7 +4276,7 @@
4274
4276
  };
4275
4277
  };
4276
4278
 
4277
- /*! @azure/msal-common v16.6.1 2026-05-11 */
4279
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
4278
4280
 
4279
4281
  /*
4280
4282
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4354,7 +4356,7 @@
4354
4356
  }
4355
4357
  }
4356
4358
 
4357
- /*! @azure/msal-common v16.6.1 2026-05-11 */
4359
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
4358
4360
  /*
4359
4361
  * Copyright (c) Microsoft Corporation. All rights reserved.
4360
4362
  * Licensed under the MIT License.
@@ -4418,7 +4420,7 @@
4418
4420
  uxNotAllowed: uxNotAllowed
4419
4421
  });
4420
4422
 
4421
- /*! @azure/msal-common v16.6.1 2026-05-11 */
4423
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
4422
4424
 
4423
4425
  /*
4424
4426
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4486,7 +4488,7 @@
4486
4488
  return new InteractionRequiredAuthError(errorCode, errorMessage);
4487
4489
  }
4488
4490
 
4489
- /*! @azure/msal-common v16.6.1 2026-05-11 */
4491
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
4490
4492
 
4491
4493
  /*
4492
4494
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4505,7 +4507,7 @@
4505
4507
  }
4506
4508
  }
4507
4509
 
4508
- /*! @azure/msal-common v16.6.1 2026-05-11 */
4510
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
4509
4511
 
4510
4512
  /*
4511
4513
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4573,7 +4575,7 @@
4573
4575
  }
4574
4576
  }
4575
4577
 
4576
- /*! @azure/msal-common v16.6.1 2026-05-11 */
4578
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
4577
4579
 
4578
4580
  /*
4579
4581
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4921,7 +4923,7 @@
4921
4923
  return baseAccount;
4922
4924
  }
4923
4925
 
4924
- /*! @azure/msal-common v16.6.1 2026-05-11 */
4926
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
4925
4927
  /*
4926
4928
  * Copyright (c) Microsoft Corporation. All rights reserved.
4927
4929
  * Licensed under the MIT License.
@@ -4931,7 +4933,7 @@
4931
4933
  UPN: "UPN",
4932
4934
  };
4933
4935
 
4934
- /*! @azure/msal-common v16.6.1 2026-05-11 */
4936
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
4935
4937
  /*
4936
4938
  * Copyright (c) Microsoft Corporation. All rights reserved.
4937
4939
  * Licensed under the MIT License.
@@ -4949,7 +4951,7 @@
4949
4951
  }
4950
4952
  }
4951
4953
 
4952
- /*! @azure/msal-common v16.6.1 2026-05-11 */
4954
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
4953
4955
  /*
4954
4956
  * Copyright (c) Microsoft Corporation. All rights reserved.
4955
4957
  * Licensed under the MIT License.
@@ -4970,7 +4972,7 @@
4970
4972
  };
4971
4973
  }
4972
4974
 
4973
- /*! @azure/msal-common v16.6.1 2026-05-11 */
4975
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
4974
4976
 
4975
4977
  /*
4976
4978
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5056,7 +5058,7 @@
5056
5058
  }
5057
5059
  }
5058
5060
 
5059
- /*! @azure/msal-common v16.6.1 2026-05-11 */
5061
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
5060
5062
 
5061
5063
  /*
5062
5064
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5087,7 +5089,7 @@
5087
5089
  return new NetworkError(error, httpStatus, responseHeaders);
5088
5090
  }
5089
5091
 
5090
- /*! @azure/msal-common v16.6.1 2026-05-11 */
5092
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
5091
5093
 
5092
5094
  /*
5093
5095
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5201,7 +5203,7 @@
5201
5203
  return response;
5202
5204
  }
5203
5205
 
5204
- /*! @azure/msal-common v16.6.1 2026-05-11 */
5206
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
5205
5207
  /*
5206
5208
  * Copyright (c) Microsoft Corporation. All rights reserved.
5207
5209
  * Licensed under the MIT License.
@@ -5213,7 +5215,7 @@
5213
5215
  response.hasOwnProperty("jwks_uri"));
5214
5216
  }
5215
5217
 
5216
- /*! @azure/msal-common v16.6.1 2026-05-11 */
5218
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
5217
5219
  /*
5218
5220
  * Copyright (c) Microsoft Corporation. All rights reserved.
5219
5221
  * Licensed under the MIT License.
@@ -5223,7 +5225,7 @@
5223
5225
  response.hasOwnProperty("metadata"));
5224
5226
  }
5225
5227
 
5226
- /*! @azure/msal-common v16.6.1 2026-05-11 */
5228
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
5227
5229
  /*
5228
5230
  * Copyright (c) Microsoft Corporation. All rights reserved.
5229
5231
  * Licensed under the MIT License.
@@ -5233,7 +5235,7 @@
5233
5235
  response.hasOwnProperty("error_description"));
5234
5236
  }
5235
5237
 
5236
- /*! @azure/msal-common v16.6.1 2026-05-11 */
5238
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
5237
5239
 
5238
5240
  /*
5239
5241
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5338,7 +5340,7 @@
5338
5340
  },
5339
5341
  };
5340
5342
 
5341
- /*! @azure/msal-common v16.6.1 2026-05-11 */
5343
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
5342
5344
 
5343
5345
  /*
5344
5346
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6293,7 +6295,7 @@
6293
6295
  };
6294
6296
  }
6295
6297
 
6296
- /*! @azure/msal-common v16.6.1 2026-05-11 */
6298
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
6297
6299
 
6298
6300
  /*
6299
6301
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6327,7 +6329,7 @@
6327
6329
  }
6328
6330
  }
6329
6331
 
6330
- /*! @azure/msal-common v16.6.1 2026-05-11 */
6332
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
6331
6333
 
6332
6334
  /*
6333
6335
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6584,7 +6586,7 @@
6584
6586
  }
6585
6587
  }
6586
6588
 
6587
- /*! @azure/msal-common v16.6.1 2026-05-11 */
6589
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
6588
6590
 
6589
6591
  /*
6590
6592
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6805,7 +6807,7 @@
6805
6807
  }
6806
6808
  }
6807
6809
 
6808
- /*! @azure/msal-common v16.6.1 2026-05-11 */
6810
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
6809
6811
 
6810
6812
  /*
6811
6813
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6921,7 +6923,7 @@
6921
6923
  }
6922
6924
  }
6923
6925
 
6924
- /*! @azure/msal-common v16.6.1 2026-05-11 */
6926
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
6925
6927
 
6926
6928
  /*
6927
6929
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6936,7 +6938,7 @@
6936
6938
  },
6937
6939
  };
6938
6940
 
6939
- /*! @azure/msal-common v16.6.1 2026-05-11 */
6941
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
6940
6942
 
6941
6943
  /*
6942
6944
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7159,7 +7161,7 @@
7159
7161
  return account.loginHint || account.idTokenClaims?.login_hint || null;
7160
7162
  }
7161
7163
 
7162
- /*! @azure/msal-common v16.6.1 2026-05-11 */
7164
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
7163
7165
 
7164
7166
  /*
7165
7167
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7192,7 +7194,7 @@
7192
7194
  return Object.prototype.hasOwnProperty.call(params, "resource");
7193
7195
  }
7194
7196
 
7195
- /*! @azure/msal-common v16.6.1 2026-05-11 */
7197
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
7196
7198
 
7197
7199
  /*
7198
7200
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7250,7 +7252,7 @@
7250
7252
  }
7251
7253
  }
7252
7254
 
7253
- /*! @azure/msal-common v16.6.1 2026-05-11 */
7255
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
7254
7256
  /*
7255
7257
  * Copyright (c) Microsoft Corporation. All rights reserved.
7256
7258
  * Licensed under the MIT License.
@@ -7267,7 +7269,7 @@
7267
7269
  unexpectedError: unexpectedError
7268
7270
  });
7269
7271
 
7270
- /*! @azure/msal-common v16.6.1 2026-05-11 */
7272
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
7271
7273
 
7272
7274
  /*
7273
7275
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7528,7 +7530,7 @@
7528
7530
  }
7529
7531
  }
7530
7532
 
7531
- /*! @azure/msal-common v16.6.1 2026-05-11 */
7533
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
7532
7534
 
7533
7535
  /*
7534
7536
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7549,7 +7551,7 @@
7549
7551
  return new JoseHeaderError(code);
7550
7552
  }
7551
7553
 
7552
- /*! @azure/msal-common v16.6.1 2026-05-11 */
7554
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
7553
7555
  /*
7554
7556
  * Copyright (c) Microsoft Corporation. All rights reserved.
7555
7557
  * Licensed under the MIT License.
@@ -7557,7 +7559,7 @@
7557
7559
  const missingKidError = "missing_kid_error";
7558
7560
  const missingAlgError = "missing_alg_error";
7559
7561
 
7560
- /*! @azure/msal-common v16.6.1 2026-05-11 */
7562
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
7561
7563
 
7562
7564
  /*
7563
7565
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7597,7 +7599,7 @@
7597
7599
  }
7598
7600
  }
7599
7601
 
7600
- /*! @azure/msal-common v16.6.1 2026-05-11 */
7602
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
7601
7603
 
7602
7604
  /*
7603
7605
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -10019,7 +10021,6 @@
10019
10021
  const LOG_LEVEL_CACHE_KEY = `${PREFIX}.${BROWSER_PREFIX}.log.level`;
10020
10022
  const LOG_PII_CACHE_KEY = `${PREFIX}.${BROWSER_PREFIX}.log.pii`;
10021
10023
  const BROWSER_PERF_ENABLED_KEY = `${PREFIX}.${BROWSER_PREFIX}.performance.enabled`;
10022
- const PLATFORM_AUTH_DOM_SUPPORT = `${PREFIX}.${BROWSER_PREFIX}.platform.auth.dom`;
10023
10024
  const VERSION_CACHE_KEY = `${PREFIX}.version`;
10024
10025
  const ACCOUNT_KEYS = "account.keys";
10025
10026
  const TOKEN_KEYS = "token.keys";
@@ -10535,7 +10536,7 @@
10535
10536
 
10536
10537
  /* eslint-disable header/header */
10537
10538
  const name = "@azure/msal-browser";
10538
- const version = "5.10.1";
10539
+ const version = "5.11.0";
10539
10540
 
10540
10541
  /*
10541
10542
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -12283,12 +12284,13 @@
12283
12284
  * and logoutHint attribute wasn't manually set in logout request
12284
12285
  */
12285
12286
  if (logoutRequest) {
12286
- // If logoutHint isn't set and an account was passed in, try to extract logoutHint from ID Token Claims
12287
+ // If logoutHint isn't set and an account was passed in, try to extract logoutHint from account loginHint or ID Token Claims
12287
12288
  if (!logoutRequest.logoutHint) {
12288
12289
  if (logoutRequest.account) {
12289
- const logoutHint = this.getLogoutHintFromIdTokenClaims(logoutRequest.account);
12290
+ const logoutHint = logoutRequest.account.loginHint ||
12291
+ this.getLogoutHintFromIdTokenClaims(logoutRequest.account);
12290
12292
  if (logoutHint) {
12291
- this.logger.verbose("0st5di", this.correlationId);
12293
+ this.logger.verbose("0d7s8p", this.correlationId);
12292
12294
  validLogoutRequest.logoutHint = logoutHint;
12293
12295
  }
12294
12296
  }
@@ -12341,6 +12343,7 @@
12341
12343
  const idTokenClaims = account.idTokenClaims;
12342
12344
  if (idTokenClaims) {
12343
12345
  if (idTokenClaims.login_hint) {
12346
+ this.logger.verbose("0u5bmc", this.correlationId);
12344
12347
  return idTokenClaims.login_hint;
12345
12348
  }
12346
12349
  else {
@@ -13969,6 +13972,7 @@
13969
13972
  };
13970
13973
  const DEFAULT_EXPERIMENTAL_OPTIONS = {
13971
13974
  iframeTimeoutTelemetry: false,
13975
+ allowPlatformBrokerWithDOM: false,
13972
13976
  };
13973
13977
  // Throw an error if user has set OIDCOptions without being in OIDC protocol mode
13974
13978
  if (userInputSystem?.protocolMode !== ProtocolMode.OIDC &&
@@ -14415,25 +14419,23 @@
14415
14419
  */
14416
14420
  /**
14417
14421
  * Checks if the platform broker is available in the current environment.
14418
- * @param loggerOptions
14419
- * @param perfClient
14420
- * @param correlationId
14421
- * @returns
14422
+ * @param domConfig - Whether to enable platform broker DOM API support (required)
14423
+ * @param loggerOptions - Optional logger options
14424
+ * @param perfClient - Optional performance client
14425
+ * @param correlationId - Optional correlation ID
14426
+ * @returns Promise<boolean> indicating if platform broker is available
14422
14427
  */
14423
- async function isPlatformBrokerAvailable(loggerOptions, perfClient, correlationId) {
14428
+ async function isPlatformBrokerAvailable(domConfig, loggerOptions, perfClient, correlationId) {
14424
14429
  const logger = new Logger(loggerOptions || {}, name, version);
14425
- const cid = correlationId || "";
14426
- logger.trace("07660b", cid);
14427
14430
  const performanceClient = perfClient || new StubPerformanceClient();
14428
14431
  if (typeof window === "undefined") {
14429
- logger.trace("082ed3", cid);
14432
+ logger.trace("082ed3", correlationId || createNewGuid());
14430
14433
  return false;
14431
14434
  }
14432
- return !!(await getPlatformAuthProvider(logger, performanceClient, cid));
14435
+ return !!(await getPlatformAuthProvider(logger, performanceClient, correlationId || createNewGuid(), undefined, domConfig));
14433
14436
  }
14434
- async function getPlatformAuthProvider(logger, performanceClient, correlationId, nativeBrokerHandshakeTimeout) {
14437
+ async function getPlatformAuthProvider(logger, performanceClient, correlationId, nativeBrokerHandshakeTimeout, enablePlatformBrokerDOMSupport) {
14435
14438
  logger.trace("134j0v", correlationId);
14436
- const enablePlatformBrokerDOMSupport = isDomEnabledForPlatformAuth();
14437
14439
  logger.trace("04c81g", correlationId);
14438
14440
  let platformAuthProvider;
14439
14441
  try {
@@ -14457,22 +14459,6 @@
14457
14459
  }
14458
14460
  return platformAuthProvider;
14459
14461
  }
14460
- /**
14461
- * Returns true if the DOM API support for platform auth is enabled in session storage
14462
- * @returns boolean
14463
- * @deprecated
14464
- */
14465
- function isDomEnabledForPlatformAuth() {
14466
- let sessionStorage;
14467
- try {
14468
- sessionStorage = window[BrowserCacheLocation.SessionStorage];
14469
- // Mute errors if it's a non-browser environment or cookies are blocked.
14470
- return sessionStorage?.getItem(PLATFORM_AUTH_DOM_SUPPORT) === "true";
14471
- }
14472
- catch (e) {
14473
- return false;
14474
- }
14475
- }
14476
14462
  /**
14477
14463
  * Returns boolean indicating whether or not the request should attempt to use platform broker
14478
14464
  * @param logger
@@ -14483,6 +14469,11 @@
14483
14469
  */
14484
14470
  function isPlatformAuthAllowed(config, logger, correlationId, platformAuthProvider, authenticationScheme) {
14485
14471
  logger.trace("0uko3r", correlationId);
14472
+ // throw an error if allowPlatformBroker is not enabled and allowPlatformBrokerWithDOM is enabled
14473
+ if (!config.system.allowPlatformBroker &&
14474
+ config.experimental.allowPlatformBrokerWithDOM) {
14475
+ throw createClientConfigurationError(invalidPlatformBrokerConfiguration);
14476
+ }
14486
14477
  if (!config.system.allowPlatformBroker) {
14487
14478
  logger.trace("04hozs", correlationId);
14488
14479
  // Developer disabled WAM
@@ -15942,7 +15933,7 @@
15942
15933
  if (allowPlatformBroker) {
15943
15934
  try {
15944
15935
  // check if platform authentication is available via DOM or browser extension and create relevant handlers
15945
- this.platformAuthProvider = await getPlatformAuthProvider(this.logger, this.performanceClient, correlationId, this.config.system.nativeBrokerHandshakeTimeout);
15936
+ this.platformAuthProvider = await getPlatformAuthProvider(this.logger, this.performanceClient, correlationId, this.config.system.nativeBrokerHandshakeTimeout, this.config.experimental.allowPlatformBrokerWithDOM);
15946
15937
  }
15947
15938
  catch (e) {
15948
15939
  this.logger.verbose(e, correlationId);