@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,8 +1,8 @@
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
  'use strict';
4
4
 
5
- /*! @azure/msal-common v16.6.1 2026-05-11 */
5
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
6
6
  /*
7
7
  * Copyright (c) Microsoft Corporation. All rights reserved.
8
8
  * Licensed under the MIT License.
@@ -234,7 +234,7 @@ const JsonWebTokenTypes$1 = {
234
234
  // Token renewal offset default in seconds
235
235
  const DEFAULT_TOKEN_RENEWAL_OFFSET_SEC = 300;
236
236
 
237
- /*! @azure/msal-common v16.6.1 2026-05-11 */
237
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
238
238
  /*
239
239
  * Copyright (c) Microsoft Corporation. All rights reserved.
240
240
  * Licensed under the MIT License.
@@ -286,7 +286,7 @@ const EAR_JWE_CRYPTO = "ear_jwe_crypto";
286
286
  const RESOURCE = "resource";
287
287
  const CLI_DATA = "clidata";
288
288
 
289
- /*! @azure/msal-common v16.6.1 2026-05-11 */
289
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
290
290
  /*
291
291
  * Copyright (c) Microsoft Corporation. All rights reserved.
292
292
  * Licensed under the MIT License.
@@ -317,7 +317,7 @@ function createAuthError(code, additionalMessage) {
317
317
  return new AuthError(code, additionalMessage || getDefaultErrorMessage$1(code));
318
318
  }
319
319
 
320
- /*! @azure/msal-common v16.6.1 2026-05-11 */
320
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
321
321
 
322
322
  /*
323
323
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -337,7 +337,7 @@ function createClientConfigurationError(errorCode) {
337
337
  return new ClientConfigurationError(errorCode);
338
338
  }
339
339
 
340
- /*! @azure/msal-common v16.6.1 2026-05-11 */
340
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
341
341
  /*
342
342
  * Copyright (c) Microsoft Corporation. All rights reserved.
343
343
  * Licensed under the MIT License.
@@ -417,7 +417,7 @@ class StringUtils {
417
417
  }
418
418
  }
419
419
 
420
- /*! @azure/msal-common v16.6.1 2026-05-11 */
420
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
421
421
 
422
422
  /*
423
423
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -440,7 +440,7 @@ function createClientAuthError(errorCode, additionalMessage) {
440
440
  return new ClientAuthError(errorCode, additionalMessage);
441
441
  }
442
442
 
443
- /*! @azure/msal-common v16.6.1 2026-05-11 */
443
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
444
444
  /*
445
445
  * Copyright (c) Microsoft Corporation. All rights reserved.
446
446
  * Licensed under the MIT License.
@@ -467,6 +467,7 @@ const cannotSetOIDCOptions = "cannot_set_OIDCOptions";
467
467
  const cannotAllowPlatformBroker = "cannot_allow_platform_broker";
468
468
  const authorityMismatch = "authority_mismatch";
469
469
  const invalidRequestMethodForEAR = "invalid_request_method_for_EAR";
470
+ const invalidPlatformBrokerConfiguration = "invalid_platform_broker_configuration";
470
471
  const issuerValidationFailed = "issuer_validation_failed";
471
472
 
472
473
  var ClientConfigurationErrorCodes = /*#__PURE__*/Object.freeze({
@@ -482,6 +483,7 @@ var ClientConfigurationErrorCodes = /*#__PURE__*/Object.freeze({
482
483
  invalidClaims: invalidClaims,
483
484
  invalidCloudDiscoveryMetadata: invalidCloudDiscoveryMetadata,
484
485
  invalidCodeChallengeMethod: invalidCodeChallengeMethod,
486
+ invalidPlatformBrokerConfiguration: invalidPlatformBrokerConfiguration,
485
487
  invalidRequestMethodForEAR: invalidRequestMethodForEAR,
486
488
  issuerValidationFailed: issuerValidationFailed,
487
489
  logoutRequestEmpty: logoutRequestEmpty,
@@ -496,7 +498,7 @@ var ClientConfigurationErrorCodes = /*#__PURE__*/Object.freeze({
496
498
  urlParseError: urlParseError
497
499
  });
498
500
 
499
- /*! @azure/msal-common v16.6.1 2026-05-11 */
501
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
500
502
  /*
501
503
  * Copyright (c) Microsoft Corporation. All rights reserved.
502
504
  * Licensed under the MIT License.
@@ -584,7 +586,7 @@ var ClientAuthErrorCodes = /*#__PURE__*/Object.freeze({
584
586
  userCanceled: userCanceled
585
587
  });
586
588
 
587
- /*! @azure/msal-common v16.6.1 2026-05-11 */
589
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
588
590
 
589
591
  /*
590
592
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -779,7 +781,7 @@ class ScopeSet {
779
781
  }
780
782
  }
781
783
 
782
- /*! @azure/msal-common v16.6.1 2026-05-11 */
784
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
783
785
 
784
786
  /*
785
787
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1168,7 +1170,7 @@ function addResource(parameters, resource) {
1168
1170
  }
1169
1171
  }
1170
1172
 
1171
- /*! @azure/msal-common v16.6.1 2026-05-11 */
1173
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
1172
1174
 
1173
1175
  /*
1174
1176
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1277,7 +1279,7 @@ function normalizeUrlForComparison(url) {
1277
1279
  }
1278
1280
  }
1279
1281
 
1280
- /*! @azure/msal-common v16.6.1 2026-05-11 */
1282
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
1281
1283
 
1282
1284
  /*
1283
1285
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1316,7 +1318,7 @@ const DEFAULT_CRYPTO_IMPLEMENTATION = {
1316
1318
  },
1317
1319
  };
1318
1320
 
1319
- /*! @azure/msal-common v16.6.1 2026-05-11 */
1321
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
1320
1322
  /*
1321
1323
  * Copyright (c) Microsoft Corporation. All rights reserved.
1322
1324
  * Licensed under the MIT License.
@@ -1591,12 +1593,12 @@ class Logger {
1591
1593
  }
1592
1594
  }
1593
1595
 
1594
- /*! @azure/msal-common v16.6.1 2026-05-11 */
1596
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
1595
1597
  /* eslint-disable header/header */
1596
1598
  const name$1 = "@azure/msal-common";
1597
- const version$1 = "16.6.1";
1599
+ const version$1 = "16.6.2";
1598
1600
 
1599
- /*! @azure/msal-common v16.6.1 2026-05-11 */
1601
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
1600
1602
  /*
1601
1603
  * Copyright (c) Microsoft Corporation. All rights reserved.
1602
1604
  * Licensed under the MIT License.
@@ -1616,7 +1618,7 @@ const AzureCloudInstance = {
1616
1618
  AzureUsGovernment: "https://login.microsoftonline.us",
1617
1619
  };
1618
1620
 
1619
- /*! @azure/msal-common v16.6.1 2026-05-11 */
1621
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
1620
1622
  /*
1621
1623
  * Copyright (c) Microsoft Corporation. All rights reserved.
1622
1624
  * Licensed under the MIT License.
@@ -1699,7 +1701,7 @@ function updateAccountTenantProfileData(baseAccountInfo, tenantProfile, idTokenC
1699
1701
  return updatedAccountInfo;
1700
1702
  }
1701
1703
 
1702
- /*! @azure/msal-common v16.6.1 2026-05-11 */
1704
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
1703
1705
 
1704
1706
  /*
1705
1707
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1779,7 +1781,7 @@ function checkMaxAge(authTime, maxAge) {
1779
1781
  }
1780
1782
  }
1781
1783
 
1782
- /*! @azure/msal-common v16.6.1 2026-05-11 */
1784
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
1783
1785
 
1784
1786
  /*
1785
1787
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1936,7 +1938,7 @@ class UrlString {
1936
1938
  }
1937
1939
  }
1938
1940
 
1939
- /*! @azure/msal-common v16.6.1 2026-05-11 */
1941
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
1940
1942
 
1941
1943
  /*
1942
1944
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2102,7 +2104,7 @@ function getCloudDiscoveryMetadataFromNetworkResponse(response, authorityHost) {
2102
2104
  return null;
2103
2105
  }
2104
2106
 
2105
- /*! @azure/msal-common v16.6.1 2026-05-11 */
2107
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
2106
2108
  /*
2107
2109
  * Copyright (c) Microsoft Corporation. All rights reserved.
2108
2110
  * Licensed under the MIT License.
@@ -2110,7 +2112,7 @@ function getCloudDiscoveryMetadataFromNetworkResponse(response, authorityHost) {
2110
2112
  const cacheQuotaExceeded = "cache_quota_exceeded";
2111
2113
  const cacheErrorUnknown = "cache_error_unknown";
2112
2114
 
2113
- /*! @azure/msal-common v16.6.1 2026-05-11 */
2115
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
2114
2116
 
2115
2117
  /*
2116
2118
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2148,7 +2150,7 @@ function createCacheError(e) {
2148
2150
  }
2149
2151
  }
2150
2152
 
2151
- /*! @azure/msal-common v16.6.1 2026-05-11 */
2153
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
2152
2154
 
2153
2155
  /*
2154
2156
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2186,7 +2188,7 @@ function buildClientInfoFromHomeAccountId(homeAccountId) {
2186
2188
  };
2187
2189
  }
2188
2190
 
2189
- /*! @azure/msal-common v16.6.1 2026-05-11 */
2191
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
2190
2192
  /*
2191
2193
  * Copyright (c) Microsoft Corporation. All rights reserved.
2192
2194
  * Licensed under the MIT License.
@@ -2201,7 +2203,7 @@ const AuthorityType = {
2201
2203
  Ciam: 3,
2202
2204
  };
2203
2205
 
2204
- /*! @azure/msal-common v16.6.1 2026-05-11 */
2206
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
2205
2207
  /*
2206
2208
  * Copyright (c) Microsoft Corporation. All rights reserved.
2207
2209
  * Licensed under the MIT License.
@@ -2223,7 +2225,7 @@ function getTenantIdFromIdTokenClaims(idTokenClaims) {
2223
2225
  return null;
2224
2226
  }
2225
2227
 
2226
- /*! @azure/msal-common v16.6.1 2026-05-11 */
2228
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
2227
2229
  /*
2228
2230
  * Copyright (c) Microsoft Corporation. All rights reserved.
2229
2231
  * Licensed under the MIT License.
@@ -2247,7 +2249,7 @@ const ProtocolMode = {
2247
2249
  EAR: "EAR",
2248
2250
  };
2249
2251
 
2250
- /*! @azure/msal-common v16.6.1 2026-05-11 */
2252
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
2251
2253
  /**
2252
2254
  * Returns the AccountInfo interface for this account.
2253
2255
  */
@@ -2422,7 +2424,7 @@ function isAccountEntity(entity) {
2422
2424
  entity.hasOwnProperty("authorityType"));
2423
2425
  }
2424
2426
 
2425
- /*! @azure/msal-common v16.6.1 2026-05-11 */
2427
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
2426
2428
 
2427
2429
  /*
2428
2430
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3554,7 +3556,7 @@ class DefaultStorageClass extends CacheManager {
3554
3556
  }
3555
3557
  }
3556
3558
 
3557
- /*! @azure/msal-common v16.6.1 2026-05-11 */
3559
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
3558
3560
  /*
3559
3561
  * Copyright (c) Microsoft Corporation. All rights reserved.
3560
3562
  * Licensed under the MIT License.
@@ -3605,7 +3607,7 @@ const IntFields = new Set([
3605
3607
  "redirectBridgeMessageVersion",
3606
3608
  ]);
3607
3609
 
3608
- /*! @azure/msal-common v16.6.1 2026-05-11 */
3610
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
3609
3611
 
3610
3612
  /*
3611
3613
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3660,7 +3662,7 @@ class StubPerformanceClient {
3660
3662
  }
3661
3663
  }
3662
3664
 
3663
- /*! @azure/msal-common v16.6.1 2026-05-11 */
3665
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
3664
3666
 
3665
3667
  /*
3666
3668
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3755,7 +3757,7 @@ function isOidcProtocolMode(config) {
3755
3757
  return (config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC);
3756
3758
  }
3757
3759
 
3758
- /*! @azure/msal-common v16.6.1 2026-05-11 */
3760
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
3759
3761
  /*
3760
3762
  * Copyright (c) Microsoft Corporation. All rights reserved.
3761
3763
  * Licensed under the MIT License.
@@ -3782,7 +3784,7 @@ function isOidcProtocolMode(config) {
3782
3784
  }
3783
3785
  }
3784
3786
 
3785
- /*! @azure/msal-common v16.6.1 2026-05-11 */
3787
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
3786
3788
  /*
3787
3789
  * Copyright (c) Microsoft Corporation. All rights reserved.
3788
3790
  * Licensed under the MIT License.
@@ -3847,7 +3849,7 @@ function wasClockTurnedBack(cachedAt) {
3847
3849
  return cachedAtSec > nowSeconds();
3848
3850
  }
3849
3851
 
3850
- /*! @azure/msal-common v16.6.1 2026-05-11 */
3852
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
3851
3853
 
3852
3854
  /*
3853
3855
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4106,7 +4108,7 @@ function isAuthorityMetadataExpired(metadata) {
4106
4108
  return metadata.expiresAt <= nowSeconds();
4107
4109
  }
4108
4110
 
4109
- /*! @azure/msal-common v16.6.1 2026-05-11 */
4111
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
4110
4112
  /*
4111
4113
  * Copyright (c) Microsoft Corporation. All rights reserved.
4112
4114
  * Licensed under the MIT License.
@@ -4177,7 +4179,7 @@ const RegionDiscoveryGetCurrentVersion = "regionDiscoveryGetCurrentVersion";
4177
4179
  const CacheManagerGetRefreshToken = "cacheManagerGetRefreshToken";
4178
4180
  const SetUserData = "setUserData";
4179
4181
 
4180
- /*! @azure/msal-common v16.6.1 2026-05-11 */
4182
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
4181
4183
  /*
4182
4184
  * Copyright (c) Microsoft Corporation. All rights reserved.
4183
4185
  * Licensed under the MIT License.
@@ -4270,7 +4272,7 @@ const invokeAsync = (callback, eventName, logger, telemetryClient, correlationId
4270
4272
  };
4271
4273
  };
4272
4274
 
4273
- /*! @azure/msal-common v16.6.1 2026-05-11 */
4275
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
4274
4276
 
4275
4277
  /*
4276
4278
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4350,7 +4352,7 @@ class PopTokenGenerator {
4350
4352
  }
4351
4353
  }
4352
4354
 
4353
- /*! @azure/msal-common v16.6.1 2026-05-11 */
4355
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
4354
4356
  /*
4355
4357
  * Copyright (c) Microsoft Corporation. All rights reserved.
4356
4358
  * Licensed under the MIT License.
@@ -4414,7 +4416,7 @@ var InteractionRequiredAuthErrorCodes = /*#__PURE__*/Object.freeze({
4414
4416
  uxNotAllowed: uxNotAllowed
4415
4417
  });
4416
4418
 
4417
- /*! @azure/msal-common v16.6.1 2026-05-11 */
4419
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
4418
4420
 
4419
4421
  /*
4420
4422
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4482,7 +4484,7 @@ function createInteractionRequiredAuthError(errorCode, errorMessage) {
4482
4484
  return new InteractionRequiredAuthError(errorCode, errorMessage);
4483
4485
  }
4484
4486
 
4485
- /*! @azure/msal-common v16.6.1 2026-05-11 */
4487
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
4486
4488
 
4487
4489
  /*
4488
4490
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4501,7 +4503,7 @@ class ServerError extends AuthError {
4501
4503
  }
4502
4504
  }
4503
4505
 
4504
- /*! @azure/msal-common v16.6.1 2026-05-11 */
4506
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
4505
4507
 
4506
4508
  /*
4507
4509
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4569,7 +4571,7 @@ function parseRequestState(base64Decode, state) {
4569
4571
  }
4570
4572
  }
4571
4573
 
4572
- /*! @azure/msal-common v16.6.1 2026-05-11 */
4574
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
4573
4575
 
4574
4576
  /*
4575
4577
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4917,7 +4919,7 @@ function buildAccountToCache(cacheStorage, authority, homeAccountId, base64Decod
4917
4919
  return baseAccount;
4918
4920
  }
4919
4921
 
4920
- /*! @azure/msal-common v16.6.1 2026-05-11 */
4922
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
4921
4923
  /*
4922
4924
  * Copyright (c) Microsoft Corporation. All rights reserved.
4923
4925
  * Licensed under the MIT License.
@@ -4927,7 +4929,7 @@ const CcsCredentialType = {
4927
4929
  UPN: "UPN",
4928
4930
  };
4929
4931
 
4930
- /*! @azure/msal-common v16.6.1 2026-05-11 */
4932
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
4931
4933
  /*
4932
4934
  * Copyright (c) Microsoft Corporation. All rights reserved.
4933
4935
  * Licensed under the MIT License.
@@ -4945,7 +4947,7 @@ async function getClientAssertion(clientAssertion, clientId, tokenEndpoint) {
4945
4947
  }
4946
4948
  }
4947
4949
 
4948
- /*! @azure/msal-common v16.6.1 2026-05-11 */
4950
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
4949
4951
  /*
4950
4952
  * Copyright (c) Microsoft Corporation. All rights reserved.
4951
4953
  * Licensed under the MIT License.
@@ -4966,7 +4968,7 @@ function getRequestThumbprint(clientId, request, homeAccountId) {
4966
4968
  };
4967
4969
  }
4968
4970
 
4969
- /*! @azure/msal-common v16.6.1 2026-05-11 */
4971
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
4970
4972
 
4971
4973
  /*
4972
4974
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5052,7 +5054,7 @@ class ThrottlingUtils {
5052
5054
  }
5053
5055
  }
5054
5056
 
5055
- /*! @azure/msal-common v16.6.1 2026-05-11 */
5057
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
5056
5058
 
5057
5059
  /*
5058
5060
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5083,7 +5085,7 @@ function createNetworkError(error, httpStatus, responseHeaders, additionalError)
5083
5085
  return new NetworkError(error, httpStatus, responseHeaders);
5084
5086
  }
5085
5087
 
5086
- /*! @azure/msal-common v16.6.1 2026-05-11 */
5088
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
5087
5089
 
5088
5090
  /*
5089
5091
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5197,7 +5199,7 @@ async function sendPostRequest(thumbprint, tokenEndpoint, options, correlationId
5197
5199
  return response;
5198
5200
  }
5199
5201
 
5200
- /*! @azure/msal-common v16.6.1 2026-05-11 */
5202
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
5201
5203
  /*
5202
5204
  * Copyright (c) Microsoft Corporation. All rights reserved.
5203
5205
  * Licensed under the MIT License.
@@ -5209,7 +5211,7 @@ function isOpenIdConfigResponse(response) {
5209
5211
  response.hasOwnProperty("jwks_uri"));
5210
5212
  }
5211
5213
 
5212
- /*! @azure/msal-common v16.6.1 2026-05-11 */
5214
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
5213
5215
  /*
5214
5216
  * Copyright (c) Microsoft Corporation. All rights reserved.
5215
5217
  * Licensed under the MIT License.
@@ -5219,7 +5221,7 @@ function isCloudInstanceDiscoveryResponse(response) {
5219
5221
  response.hasOwnProperty("metadata"));
5220
5222
  }
5221
5223
 
5222
- /*! @azure/msal-common v16.6.1 2026-05-11 */
5224
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
5223
5225
  /*
5224
5226
  * Copyright (c) Microsoft Corporation. All rights reserved.
5225
5227
  * Licensed under the MIT License.
@@ -5229,7 +5231,7 @@ function isCloudInstanceDiscoveryErrorResponse(response) {
5229
5231
  response.hasOwnProperty("error_description"));
5230
5232
  }
5231
5233
 
5232
- /*! @azure/msal-common v16.6.1 2026-05-11 */
5234
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
5233
5235
 
5234
5236
  /*
5235
5237
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5334,7 +5336,7 @@ RegionDiscovery.IMDS_OPTIONS = {
5334
5336
  },
5335
5337
  };
5336
5338
 
5337
- /*! @azure/msal-common v16.6.1 2026-05-11 */
5339
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
5338
5340
 
5339
5341
  /*
5340
5342
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6289,7 +6291,7 @@ function buildStaticAuthorityOptions(authOptions) {
6289
6291
  };
6290
6292
  }
6291
6293
 
6292
- /*! @azure/msal-common v16.6.1 2026-05-11 */
6294
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
6293
6295
 
6294
6296
  /*
6295
6297
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6323,7 +6325,7 @@ async function createDiscoveredInstance(authorityUri, networkClient, cacheManage
6323
6325
  }
6324
6326
  }
6325
6327
 
6326
- /*! @azure/msal-common v16.6.1 2026-05-11 */
6328
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
6327
6329
 
6328
6330
  /*
6329
6331
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6580,7 +6582,7 @@ class AuthorizationCodeClient {
6580
6582
  }
6581
6583
  }
6582
6584
 
6583
- /*! @azure/msal-common v16.6.1 2026-05-11 */
6585
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
6584
6586
 
6585
6587
  /*
6586
6588
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6801,7 +6803,7 @@ class RefreshTokenClient {
6801
6803
  }
6802
6804
  }
6803
6805
 
6804
- /*! @azure/msal-common v16.6.1 2026-05-11 */
6806
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
6805
6807
 
6806
6808
  /*
6807
6809
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6917,7 +6919,7 @@ class SilentFlowClient {
6917
6919
  }
6918
6920
  }
6919
6921
 
6920
- /*! @azure/msal-common v16.6.1 2026-05-11 */
6922
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
6921
6923
 
6922
6924
  /*
6923
6925
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6932,7 +6934,7 @@ const StubbedNetworkModule = {
6932
6934
  },
6933
6935
  };
6934
6936
 
6935
- /*! @azure/msal-common v16.6.1 2026-05-11 */
6937
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
6936
6938
 
6937
6939
  /*
6938
6940
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7155,7 +7157,7 @@ function extractLoginHint(account) {
7155
7157
  return account.loginHint || account.idTokenClaims?.login_hint || null;
7156
7158
  }
7157
7159
 
7158
- /*! @azure/msal-common v16.6.1 2026-05-11 */
7160
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
7159
7161
 
7160
7162
  /*
7161
7163
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7188,7 +7190,7 @@ function containsResourceParam(params) {
7188
7190
  return Object.prototype.hasOwnProperty.call(params, "resource");
7189
7191
  }
7190
7192
 
7191
- /*! @azure/msal-common v16.6.1 2026-05-11 */
7193
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
7192
7194
 
7193
7195
  /*
7194
7196
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7246,7 +7248,7 @@ class AuthenticationHeaderParser {
7246
7248
  }
7247
7249
  }
7248
7250
 
7249
- /*! @azure/msal-common v16.6.1 2026-05-11 */
7251
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
7250
7252
  /*
7251
7253
  * Copyright (c) Microsoft Corporation. All rights reserved.
7252
7254
  * Licensed under the MIT License.
@@ -7263,7 +7265,7 @@ var AuthErrorCodes = /*#__PURE__*/Object.freeze({
7263
7265
  unexpectedError: unexpectedError
7264
7266
  });
7265
7267
 
7266
- /*! @azure/msal-common v16.6.1 2026-05-11 */
7268
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
7267
7269
 
7268
7270
  /*
7269
7271
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7524,7 +7526,7 @@ class ServerTelemetryManager {
7524
7526
  }
7525
7527
  }
7526
7528
 
7527
- /*! @azure/msal-common v16.6.1 2026-05-11 */
7529
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
7528
7530
 
7529
7531
  /*
7530
7532
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7545,7 +7547,7 @@ function createJoseHeaderError(code) {
7545
7547
  return new JoseHeaderError(code);
7546
7548
  }
7547
7549
 
7548
- /*! @azure/msal-common v16.6.1 2026-05-11 */
7550
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
7549
7551
  /*
7550
7552
  * Copyright (c) Microsoft Corporation. All rights reserved.
7551
7553
  * Licensed under the MIT License.
@@ -7553,7 +7555,7 @@ function createJoseHeaderError(code) {
7553
7555
  const missingKidError = "missing_kid_error";
7554
7556
  const missingAlgError = "missing_alg_error";
7555
7557
 
7556
- /*! @azure/msal-common v16.6.1 2026-05-11 */
7558
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
7557
7559
 
7558
7560
  /*
7559
7561
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7593,7 +7595,7 @@ class JoseHeader {
7593
7595
  }
7594
7596
  }
7595
7597
 
7596
- /*! @azure/msal-common v16.6.1 2026-05-11 */
7598
+ /*! @azure/msal-common v16.6.2 2026-05-19 */
7597
7599
 
7598
7600
  /*
7599
7601
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -10015,7 +10017,6 @@ const ACCOUNT_SCHEMA_VERSION = 3;
10015
10017
  const LOG_LEVEL_CACHE_KEY = `${PREFIX}.${BROWSER_PREFIX}.log.level`;
10016
10018
  const LOG_PII_CACHE_KEY = `${PREFIX}.${BROWSER_PREFIX}.log.pii`;
10017
10019
  const BROWSER_PERF_ENABLED_KEY = `${PREFIX}.${BROWSER_PREFIX}.performance.enabled`;
10018
- const PLATFORM_AUTH_DOM_SUPPORT = `${PREFIX}.${BROWSER_PREFIX}.platform.auth.dom`;
10019
10020
  const VERSION_CACHE_KEY = `${PREFIX}.version`;
10020
10021
  const ACCOUNT_KEYS = "account.keys";
10021
10022
  const TOKEN_KEYS = "token.keys";
@@ -10531,7 +10532,7 @@ const EventType = {
10531
10532
 
10532
10533
  /* eslint-disable header/header */
10533
10534
  const name = "@azure/msal-browser";
10534
- const version = "5.10.1";
10535
+ const version = "5.11.0";
10535
10536
 
10536
10537
  /*
10537
10538
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -12279,12 +12280,13 @@ class StandardInteractionClient extends BaseInteractionClient {
12279
12280
  * and logoutHint attribute wasn't manually set in logout request
12280
12281
  */
12281
12282
  if (logoutRequest) {
12282
- // If logoutHint isn't set and an account was passed in, try to extract logoutHint from ID Token Claims
12283
+ // If logoutHint isn't set and an account was passed in, try to extract logoutHint from account loginHint or ID Token Claims
12283
12284
  if (!logoutRequest.logoutHint) {
12284
12285
  if (logoutRequest.account) {
12285
- const logoutHint = this.getLogoutHintFromIdTokenClaims(logoutRequest.account);
12286
+ const logoutHint = logoutRequest.account.loginHint ||
12287
+ this.getLogoutHintFromIdTokenClaims(logoutRequest.account);
12286
12288
  if (logoutHint) {
12287
- this.logger.verbose("0st5di", this.correlationId);
12289
+ this.logger.verbose("0d7s8p", this.correlationId);
12288
12290
  validLogoutRequest.logoutHint = logoutHint;
12289
12291
  }
12290
12292
  }
@@ -12337,6 +12339,7 @@ class StandardInteractionClient extends BaseInteractionClient {
12337
12339
  const idTokenClaims = account.idTokenClaims;
12338
12340
  if (idTokenClaims) {
12339
12341
  if (idTokenClaims.login_hint) {
12342
+ this.logger.verbose("0u5bmc", this.correlationId);
12340
12343
  return idTokenClaims.login_hint;
12341
12344
  }
12342
12345
  else {
@@ -13965,6 +13968,7 @@ function buildConfiguration({ auth: userInputAuth, cache: userInputCache, system
13965
13968
  };
13966
13969
  const DEFAULT_EXPERIMENTAL_OPTIONS = {
13967
13970
  iframeTimeoutTelemetry: false,
13971
+ allowPlatformBrokerWithDOM: false,
13968
13972
  };
13969
13973
  // Throw an error if user has set OIDCOptions without being in OIDC protocol mode
13970
13974
  if (userInputSystem?.protocolMode !== ProtocolMode.OIDC &&
@@ -14411,25 +14415,23 @@ class PlatformAuthDOMHandler {
14411
14415
  */
14412
14416
  /**
14413
14417
  * Checks if the platform broker is available in the current environment.
14414
- * @param loggerOptions
14415
- * @param perfClient
14416
- * @param correlationId
14417
- * @returns
14418
+ * @param domConfig - Whether to enable platform broker DOM API support (required)
14419
+ * @param loggerOptions - Optional logger options
14420
+ * @param perfClient - Optional performance client
14421
+ * @param correlationId - Optional correlation ID
14422
+ * @returns Promise<boolean> indicating if platform broker is available
14418
14423
  */
14419
- async function isPlatformBrokerAvailable(loggerOptions, perfClient, correlationId) {
14424
+ async function isPlatformBrokerAvailable(domConfig, loggerOptions, perfClient, correlationId) {
14420
14425
  const logger = new Logger(loggerOptions || {}, name, version);
14421
- const cid = correlationId || "";
14422
- logger.trace("07660b", cid);
14423
14426
  const performanceClient = perfClient || new StubPerformanceClient();
14424
14427
  if (typeof window === "undefined") {
14425
- logger.trace("082ed3", cid);
14428
+ logger.trace("082ed3", correlationId || createNewGuid());
14426
14429
  return false;
14427
14430
  }
14428
- return !!(await getPlatformAuthProvider(logger, performanceClient, cid));
14431
+ return !!(await getPlatformAuthProvider(logger, performanceClient, correlationId || createNewGuid(), undefined, domConfig));
14429
14432
  }
14430
- async function getPlatformAuthProvider(logger, performanceClient, correlationId, nativeBrokerHandshakeTimeout) {
14433
+ async function getPlatformAuthProvider(logger, performanceClient, correlationId, nativeBrokerHandshakeTimeout, enablePlatformBrokerDOMSupport) {
14431
14434
  logger.trace("134j0v", correlationId);
14432
- const enablePlatformBrokerDOMSupport = isDomEnabledForPlatformAuth();
14433
14435
  logger.trace("04c81g", correlationId);
14434
14436
  let platformAuthProvider;
14435
14437
  try {
@@ -14453,22 +14455,6 @@ async function getPlatformAuthProvider(logger, performanceClient, correlationId,
14453
14455
  }
14454
14456
  return platformAuthProvider;
14455
14457
  }
14456
- /**
14457
- * Returns true if the DOM API support for platform auth is enabled in session storage
14458
- * @returns boolean
14459
- * @deprecated
14460
- */
14461
- function isDomEnabledForPlatformAuth() {
14462
- let sessionStorage;
14463
- try {
14464
- sessionStorage = window[BrowserCacheLocation.SessionStorage];
14465
- // Mute errors if it's a non-browser environment or cookies are blocked.
14466
- return sessionStorage?.getItem(PLATFORM_AUTH_DOM_SUPPORT) === "true";
14467
- }
14468
- catch (e) {
14469
- return false;
14470
- }
14471
- }
14472
14458
  /**
14473
14459
  * Returns boolean indicating whether or not the request should attempt to use platform broker
14474
14460
  * @param logger
@@ -14479,6 +14465,11 @@ function isDomEnabledForPlatformAuth() {
14479
14465
  */
14480
14466
  function isPlatformAuthAllowed(config, logger, correlationId, platformAuthProvider, authenticationScheme) {
14481
14467
  logger.trace("0uko3r", correlationId);
14468
+ // throw an error if allowPlatformBroker is not enabled and allowPlatformBrokerWithDOM is enabled
14469
+ if (!config.system.allowPlatformBroker &&
14470
+ config.experimental.allowPlatformBrokerWithDOM) {
14471
+ throw createClientConfigurationError(invalidPlatformBrokerConfiguration);
14472
+ }
14482
14473
  if (!config.system.allowPlatformBroker) {
14483
14474
  logger.trace("04hozs", correlationId);
14484
14475
  // Developer disabled WAM
@@ -15938,7 +15929,7 @@ class StandardController {
15938
15929
  if (allowPlatformBroker) {
15939
15930
  try {
15940
15931
  // check if platform authentication is available via DOM or browser extension and create relevant handlers
15941
- this.platformAuthProvider = await getPlatformAuthProvider(this.logger, this.performanceClient, correlationId, this.config.system.nativeBrokerHandshakeTimeout);
15932
+ this.platformAuthProvider = await getPlatformAuthProvider(this.logger, this.performanceClient, correlationId, this.config.system.nativeBrokerHandshakeTimeout, this.config.experimental.allowPlatformBrokerWithDOM);
15942
15933
  }
15943
15934
  catch (e) {
15944
15935
  this.logger.verbose(e, correlationId);