@azure/msal-browser 4.29.1 → 4.30.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 (275) hide show
  1. package/dist/app/IPublicClientApplication.mjs +1 -1
  2. package/dist/app/PublicClientApplication.mjs +1 -1
  3. package/dist/app/PublicClientNext.mjs +1 -1
  4. package/dist/broker/nativeBroker/NativeStatusCodes.mjs +1 -1
  5. package/dist/broker/nativeBroker/PlatformAuthDOMHandler.mjs +1 -1
  6. package/dist/broker/nativeBroker/PlatformAuthExtensionHandler.mjs +1 -1
  7. package/dist/broker/nativeBroker/PlatformAuthProvider.mjs +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 +1 -1
  13. package/dist/cache/CookieStorage.mjs +1 -1
  14. package/dist/cache/DatabaseStorage.mjs +1 -1
  15. package/dist/cache/EncryptedData.mjs +1 -1
  16. package/dist/cache/LocalStorage.mjs +1 -1
  17. package/dist/cache/MemoryStorage.mjs +1 -1
  18. package/dist/cache/SessionStorage.mjs +1 -1
  19. package/dist/cache/TokenCache.mjs +1 -1
  20. package/dist/config/Configuration.mjs +1 -1
  21. package/dist/controllers/ControllerFactory.mjs +1 -1
  22. package/dist/controllers/NestedAppAuthController.mjs +1 -1
  23. package/dist/controllers/StandardController.mjs +1 -1
  24. package/dist/controllers/UnknownOperatingContextController.mjs +1 -1
  25. package/dist/crypto/BrowserCrypto.mjs +1 -1
  26. package/dist/crypto/CryptoOps.mjs +1 -1
  27. package/dist/crypto/PkceGenerator.mjs +1 -1
  28. package/dist/crypto/SignedHttpRequest.mjs +1 -1
  29. package/dist/custom-auth-path/app/PublicClientApplication.mjs +1 -1
  30. package/dist/custom-auth-path/broker/nativeBroker/NativeStatusCodes.mjs +1 -1
  31. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.mjs +1 -1
  32. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.mjs +1 -1
  33. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.mjs +1 -1
  34. package/dist/custom-auth-path/cache/AccountManager.mjs +1 -1
  35. package/dist/custom-auth-path/cache/AsyncMemoryStorage.mjs +1 -1
  36. package/dist/custom-auth-path/cache/BrowserCacheManager.mjs +1 -1
  37. package/dist/custom-auth-path/cache/CacheHelpers.mjs +1 -1
  38. package/dist/custom-auth-path/cache/CacheKeys.mjs +1 -1
  39. package/dist/custom-auth-path/cache/CookieStorage.mjs +1 -1
  40. package/dist/custom-auth-path/cache/DatabaseStorage.mjs +1 -1
  41. package/dist/custom-auth-path/cache/EncryptedData.mjs +1 -1
  42. package/dist/custom-auth-path/cache/LocalStorage.mjs +1 -1
  43. package/dist/custom-auth-path/cache/MemoryStorage.mjs +1 -1
  44. package/dist/custom-auth-path/cache/SessionStorage.mjs +1 -1
  45. package/dist/custom-auth-path/cache/TokenCache.mjs +1 -1
  46. package/dist/custom-auth-path/config/Configuration.mjs +1 -1
  47. package/dist/custom-auth-path/controllers/ControllerFactory.mjs +1 -1
  48. package/dist/custom-auth-path/controllers/StandardController.mjs +1 -1
  49. package/dist/custom-auth-path/crypto/BrowserCrypto.mjs +1 -1
  50. package/dist/custom-auth-path/crypto/CryptoOps.mjs +1 -1
  51. package/dist/custom-auth-path/crypto/PkceGenerator.mjs +1 -1
  52. package/dist/custom-auth-path/custom_auth/CustomAuthConstants.d.ts +1 -1
  53. package/dist/custom-auth-path/custom_auth/CustomAuthConstants.mjs +1 -1
  54. package/dist/custom-auth-path/custom_auth/CustomAuthPublicClientApplication.mjs +1 -1
  55. package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.mjs +1 -1
  56. package/dist/custom-auth-path/custom_auth/core/CustomAuthAuthority.mjs +1 -1
  57. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs +1 -1
  58. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowResultBase.mjs +1 -1
  59. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowState.mjs +1 -1
  60. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowStateTypes.mjs +1 -1
  61. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.mjs +1 -1
  62. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.mjs +1 -1
  63. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.mjs +1 -1
  64. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.mjs +1 -1
  65. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.mjs +1 -1
  66. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.mjs +1 -1
  67. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/error_type/MfaError.mjs +1 -1
  68. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.mjs +1 -1
  69. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.mjs +1 -1
  70. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.mjs +1 -1
  71. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaFailedState.mjs +1 -1
  72. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaState.mjs +1 -1
  73. package/dist/custom-auth-path/custom_auth/core/error/CustomAuthApiError.mjs +1 -1
  74. package/dist/custom-auth-path/custom_auth/core/error/CustomAuthError.mjs +1 -1
  75. package/dist/custom-auth-path/custom_auth/core/error/HttpError.mjs +1 -1
  76. package/dist/custom-auth-path/custom_auth/core/error/HttpErrorCodes.mjs +1 -1
  77. package/dist/custom-auth-path/custom_auth/core/error/InvalidArgumentError.mjs +1 -1
  78. package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationError.mjs +1 -1
  79. package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationErrorCodes.mjs +1 -1
  80. package/dist/custom-auth-path/custom_auth/core/error/MethodNotImplementedError.mjs +1 -1
  81. package/dist/custom-auth-path/custom_auth/core/error/MsalCustomAuthError.mjs +1 -1
  82. package/dist/custom-auth-path/custom_auth/core/error/NoCachedAccountFoundError.mjs +1 -1
  83. package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlError.mjs +1 -1
  84. package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlErrorCodes.mjs +1 -1
  85. package/dist/custom-auth-path/custom_auth/core/error/UnexpectedError.mjs +1 -1
  86. package/dist/custom-auth-path/custom_auth/core/error/UnsupportedEnvironmentError.mjs +1 -1
  87. package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeError.mjs +1 -1
  88. package/dist/custom-auth-path/custom_auth/core/error/UserAlreadySignedInError.mjs +1 -1
  89. package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.mjs +1 -1
  90. package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.mjs +1 -1
  91. package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/JitClient.mjs +1 -1
  92. package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/result/JitActionResult.mjs +1 -1
  93. package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/MfaClient.mjs +1 -1
  94. package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/result/MfaActionResult.mjs +1 -1
  95. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs +1 -1
  96. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs +1 -1
  97. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.mjs +1 -1
  98. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.mjs +1 -1
  99. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs +1 -1
  100. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs +1 -1
  101. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs +1 -1
  102. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.mjs +1 -1
  103. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.mjs +1 -1
  104. package/dist/custom-auth-path/custom_auth/core/network_client/http_client/FetchHttpClient.mjs +1 -1
  105. package/dist/custom-auth-path/custom_auth/core/network_client/http_client/IHttpClient.mjs +1 -1
  106. package/dist/custom-auth-path/custom_auth/core/telemetry/PublicApiId.mjs +1 -1
  107. package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.mjs +1 -1
  108. package/dist/custom-auth-path/custom_auth/core/utils/UrlUtils.mjs +1 -1
  109. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs +1 -1
  110. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/error_type/GetAccountError.mjs +1 -1
  111. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.mjs +1 -1
  112. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccountResult.mjs +1 -1
  113. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/SignOutResult.mjs +1 -1
  114. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccessTokenState.mjs +1 -1
  115. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccountState.mjs +1 -1
  116. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/SignOutState.mjs +1 -1
  117. package/dist/custom-auth-path/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.mjs +1 -1
  118. package/dist/custom-auth-path/custom_auth/index.mjs +1 -1
  119. package/dist/custom-auth-path/custom_auth/operating_context/CustomAuthOperatingContext.mjs +1 -1
  120. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.mjs +1 -1
  121. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.mjs +1 -1
  122. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.mjs +1 -1
  123. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.mjs +1 -1
  124. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.mjs +1 -1
  125. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.mjs +1 -1
  126. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.mjs +1 -1
  127. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.mjs +1 -1
  128. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.mjs +1 -1
  129. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordState.mjs +1 -1
  130. package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/ResetPasswordClient.mjs +1 -1
  131. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/SignInScenario.mjs +1 -1
  132. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs +1 -1
  133. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.mjs +1 -1
  134. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResult.mjs +1 -1
  135. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.mjs +1 -1
  136. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.mjs +1 -1
  137. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs +1 -1
  138. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCompletedState.mjs +1 -1
  139. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs +1 -1
  140. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInFailedState.mjs +1 -1
  141. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs +1 -1
  142. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInState.mjs +1 -1
  143. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.mjs +1 -1
  144. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/result/SignInActionResult.mjs +1 -1
  145. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/error_type/SignUpError.mjs +1 -1
  146. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.mjs +1 -1
  147. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResult.mjs +1 -1
  148. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.mjs +1 -1
  149. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.mjs +1 -1
  150. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.mjs +1 -1
  151. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.mjs +1 -1
  152. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.mjs +1 -1
  153. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.mjs +1 -1
  154. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpFailedState.mjs +1 -1
  155. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.mjs +1 -1
  156. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpState.mjs +1 -1
  157. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/SignUpClient.mjs +1 -1
  158. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/result/SignUpActionResult.mjs +1 -1
  159. package/dist/custom-auth-path/encode/Base64Decode.mjs +1 -1
  160. package/dist/custom-auth-path/encode/Base64Encode.mjs +1 -1
  161. package/dist/custom-auth-path/error/BrowserAuthError.mjs +1 -1
  162. package/dist/custom-auth-path/error/BrowserAuthErrorCodes.mjs +1 -1
  163. package/dist/custom-auth-path/error/BrowserConfigurationAuthError.mjs +1 -1
  164. package/dist/custom-auth-path/error/BrowserConfigurationAuthErrorCodes.mjs +1 -1
  165. package/dist/custom-auth-path/error/NativeAuthError.mjs +1 -1
  166. package/dist/custom-auth-path/error/NativeAuthErrorCodes.mjs +1 -1
  167. package/dist/custom-auth-path/event/EventHandler.mjs +1 -1
  168. package/dist/custom-auth-path/event/EventType.mjs +1 -1
  169. package/dist/custom-auth-path/interaction_client/BaseInteractionClient.mjs +1 -1
  170. package/dist/custom-auth-path/interaction_client/HybridSpaAuthorizationCodeClient.mjs +1 -1
  171. package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.d.ts.map +1 -1
  172. package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.mjs +11 -3
  173. package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.mjs.map +1 -1
  174. package/dist/custom-auth-path/interaction_client/PopupClient.mjs +1 -1
  175. package/dist/custom-auth-path/interaction_client/RedirectClient.mjs +1 -1
  176. package/dist/custom-auth-path/interaction_client/SilentAuthCodeClient.mjs +1 -1
  177. package/dist/custom-auth-path/interaction_client/SilentCacheClient.mjs +1 -1
  178. package/dist/custom-auth-path/interaction_client/SilentIframeClient.mjs +1 -1
  179. package/dist/custom-auth-path/interaction_client/SilentRefreshClient.mjs +1 -1
  180. package/dist/custom-auth-path/interaction_client/StandardInteractionClient.mjs +1 -1
  181. package/dist/custom-auth-path/interaction_handler/InteractionHandler.mjs +1 -1
  182. package/dist/custom-auth-path/interaction_handler/SilentHandler.mjs +1 -1
  183. package/dist/custom-auth-path/navigation/NavigationClient.mjs +1 -1
  184. package/dist/custom-auth-path/network/FetchClient.mjs +1 -1
  185. package/dist/custom-auth-path/operatingcontext/BaseOperatingContext.mjs +1 -1
  186. package/dist/custom-auth-path/operatingcontext/StandardOperatingContext.mjs +1 -1
  187. package/dist/custom-auth-path/packageMetadata.d.ts +1 -1
  188. package/dist/custom-auth-path/packageMetadata.mjs +2 -2
  189. package/dist/custom-auth-path/protocol/Authorize.d.ts +28 -0
  190. package/dist/custom-auth-path/protocol/Authorize.d.ts.map +1 -1
  191. package/dist/custom-auth-path/protocol/Authorize.mjs +53 -2
  192. package/dist/custom-auth-path/protocol/Authorize.mjs.map +1 -1
  193. package/dist/custom-auth-path/request/RequestHelpers.mjs +1 -1
  194. package/dist/custom-auth-path/response/ResponseHandler.mjs +1 -1
  195. package/dist/custom-auth-path/utils/BrowserConstants.mjs +1 -1
  196. package/dist/custom-auth-path/utils/BrowserProtocolUtils.mjs +1 -1
  197. package/dist/custom-auth-path/utils/BrowserUtils.mjs +1 -1
  198. package/dist/custom-auth-path/utils/Helpers.mjs +1 -1
  199. package/dist/custom-auth-path/utils/MsalFrameStatsUtils.mjs +1 -1
  200. package/dist/custom_auth/CustomAuthConstants.d.ts +1 -1
  201. package/dist/encode/Base64Decode.mjs +1 -1
  202. package/dist/encode/Base64Encode.mjs +1 -1
  203. package/dist/error/BrowserAuthError.mjs +1 -1
  204. package/dist/error/BrowserAuthErrorCodes.mjs +1 -1
  205. package/dist/error/BrowserConfigurationAuthError.mjs +1 -1
  206. package/dist/error/BrowserConfigurationAuthErrorCodes.mjs +1 -1
  207. package/dist/error/NativeAuthError.mjs +1 -1
  208. package/dist/error/NativeAuthErrorCodes.mjs +1 -1
  209. package/dist/error/NestedAppAuthError.mjs +1 -1
  210. package/dist/event/EventHandler.mjs +1 -1
  211. package/dist/event/EventMessage.mjs +1 -1
  212. package/dist/event/EventType.mjs +1 -1
  213. package/dist/index.mjs +1 -1
  214. package/dist/interaction_client/BaseInteractionClient.mjs +1 -1
  215. package/dist/interaction_client/HybridSpaAuthorizationCodeClient.mjs +1 -1
  216. package/dist/interaction_client/PlatformAuthInteractionClient.d.ts.map +1 -1
  217. package/dist/interaction_client/PlatformAuthInteractionClient.mjs +11 -3
  218. package/dist/interaction_client/PlatformAuthInteractionClient.mjs.map +1 -1
  219. package/dist/interaction_client/PopupClient.mjs +1 -1
  220. package/dist/interaction_client/RedirectClient.mjs +1 -1
  221. package/dist/interaction_client/SilentAuthCodeClient.mjs +1 -1
  222. package/dist/interaction_client/SilentCacheClient.mjs +1 -1
  223. package/dist/interaction_client/SilentIframeClient.mjs +1 -1
  224. package/dist/interaction_client/SilentRefreshClient.mjs +1 -1
  225. package/dist/interaction_client/StandardInteractionClient.mjs +1 -1
  226. package/dist/interaction_handler/InteractionHandler.mjs +1 -1
  227. package/dist/interaction_handler/SilentHandler.mjs +1 -1
  228. package/dist/naa/BridgeError.mjs +1 -1
  229. package/dist/naa/BridgeProxy.mjs +1 -1
  230. package/dist/naa/BridgeStatusCode.mjs +1 -1
  231. package/dist/naa/mapping/NestedAppAuthAdapter.mjs +1 -1
  232. package/dist/navigation/NavigationClient.mjs +1 -1
  233. package/dist/network/FetchClient.mjs +1 -1
  234. package/dist/operatingcontext/BaseOperatingContext.mjs +1 -1
  235. package/dist/operatingcontext/NestedAppOperatingContext.mjs +1 -1
  236. package/dist/operatingcontext/StandardOperatingContext.mjs +1 -1
  237. package/dist/operatingcontext/UnknownOperatingContext.mjs +1 -1
  238. package/dist/packageMetadata.d.ts +1 -1
  239. package/dist/packageMetadata.mjs +2 -2
  240. package/dist/protocol/Authorize.d.ts +28 -0
  241. package/dist/protocol/Authorize.d.ts.map +1 -1
  242. package/dist/protocol/Authorize.mjs +53 -2
  243. package/dist/protocol/Authorize.mjs.map +1 -1
  244. package/dist/request/RequestHelpers.mjs +1 -1
  245. package/dist/response/ResponseHandler.mjs +1 -1
  246. package/dist/telemetry/BrowserPerformanceClient.mjs +1 -1
  247. package/dist/telemetry/BrowserPerformanceMeasurement.mjs +1 -1
  248. package/dist/utils/BrowserConstants.mjs +1 -1
  249. package/dist/utils/BrowserProtocolUtils.mjs +1 -1
  250. package/dist/utils/BrowserUtils.mjs +1 -1
  251. package/dist/utils/Helpers.mjs +1 -1
  252. package/dist/utils/MsalFrameStatsUtils.mjs +1 -1
  253. package/lib/custom-auth-path/msal-custom-auth.cjs +135 -67
  254. package/lib/custom-auth-path/msal-custom-auth.cjs.map +1 -1
  255. package/lib/custom-auth-path/msal-custom-auth.js +135 -67
  256. package/lib/custom-auth-path/msal-custom-auth.js.map +1 -1
  257. package/lib/custom-auth-path/types/custom_auth/CustomAuthConstants.d.ts +1 -1
  258. package/lib/custom-auth-path/types/interaction_client/PlatformAuthInteractionClient.d.ts.map +1 -1
  259. package/lib/custom-auth-path/types/packageMetadata.d.ts +1 -1
  260. package/lib/custom-auth-path/types/protocol/Authorize.d.ts +28 -0
  261. package/lib/custom-auth-path/types/protocol/Authorize.d.ts.map +1 -1
  262. package/lib/msal-browser.cjs +141 -71
  263. package/lib/msal-browser.cjs.map +1 -1
  264. package/lib/msal-browser.js +141 -71
  265. package/lib/msal-browser.js.map +1 -1
  266. package/lib/msal-browser.min.js +64 -64
  267. package/lib/types/custom_auth/CustomAuthConstants.d.ts +1 -1
  268. package/lib/types/interaction_client/PlatformAuthInteractionClient.d.ts.map +1 -1
  269. package/lib/types/packageMetadata.d.ts +1 -1
  270. package/lib/types/protocol/Authorize.d.ts +28 -0
  271. package/lib/types/protocol/Authorize.d.ts.map +1 -1
  272. package/package.json +2 -2
  273. package/src/interaction_client/PlatformAuthInteractionClient.ts +17 -1
  274. package/src/packageMetadata.ts +1 -1
  275. package/src/protocol/Authorize.ts +91 -0
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v4.29.1 2026-03-13 */
1
+ /*! @azure/msal-browser v4.30.0 2026-03-18 */
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.msalCustomAuth = {}));
7
7
  })(this, (function (exports) { 'use strict';
8
8
 
9
- /*! @azure/msal-common v15.16.1 2026-03-13 */
9
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
10
10
  /*
11
11
  * Copyright (c) Microsoft Corporation. All rights reserved.
12
12
  * Licensed under the MIT License.
@@ -280,7 +280,7 @@
280
280
  // Token renewal offset default in seconds
281
281
  const DEFAULT_TOKEN_RENEWAL_OFFSET_SEC = 300;
282
282
 
283
- /*! @azure/msal-common v15.16.1 2026-03-13 */
283
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
284
284
  /*
285
285
  * Copyright (c) Microsoft Corporation. All rights reserved.
286
286
  * Licensed under the MIT License.
@@ -291,7 +291,7 @@
291
291
  const unexpectedError = "unexpected_error";
292
292
  const postRequestFailed$1 = "post_request_failed";
293
293
 
294
- /*! @azure/msal-common v15.16.1 2026-03-13 */
294
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
295
295
 
296
296
  /*
297
297
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -326,7 +326,7 @@
326
326
  : AuthErrorMessages[code]);
327
327
  }
328
328
 
329
- /*! @azure/msal-common v15.16.1 2026-03-13 */
329
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
330
330
  /*
331
331
  * Copyright (c) Microsoft Corporation. All rights reserved.
332
332
  * Licensed under the MIT License.
@@ -377,7 +377,7 @@
377
377
  const nestedAppAuthBridgeDisabled = "nested_app_auth_bridge_disabled";
378
378
  const platformBrokerError = "platform_broker_error";
379
379
 
380
- /*! @azure/msal-common v15.16.1 2026-03-13 */
380
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
381
381
 
382
382
  /*
383
383
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -452,7 +452,7 @@
452
452
  return new ClientAuthError(errorCode, additionalMessage);
453
453
  }
454
454
 
455
- /*! @azure/msal-common v15.16.1 2026-03-13 */
455
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
456
456
 
457
457
  /*
458
458
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -491,7 +491,7 @@
491
491
  },
492
492
  };
493
493
 
494
- /*! @azure/msal-common v15.16.1 2026-03-13 */
494
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
495
495
 
496
496
  /*
497
497
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -682,12 +682,12 @@
682
682
  }
683
683
  }
684
684
 
685
- /*! @azure/msal-common v15.16.1 2026-03-13 */
685
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
686
686
  /* eslint-disable header/header */
687
687
  const name$1 = "@azure/msal-common";
688
- const version$1 = "15.16.1";
688
+ const version$1 = "15.17.0";
689
689
 
690
- /*! @azure/msal-common v15.16.1 2026-03-13 */
690
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
691
691
  /*
692
692
  * Copyright (c) Microsoft Corporation. All rights reserved.
693
693
  * Licensed under the MIT License.
@@ -696,7 +696,7 @@
696
696
  // AzureCloudInstance is not specified.
697
697
  None: "none"};
698
698
 
699
- /*! @azure/msal-common v15.16.1 2026-03-13 */
699
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
700
700
  /*
701
701
  * Copyright (c) Microsoft Corporation. All rights reserved.
702
702
  * Licensed under the MIT License.
@@ -726,7 +726,7 @@
726
726
  const invalidAuthorizePostBodyParameters = "invalid_authorize_post_body_parameters";
727
727
  const invalidPlatformBrokerConfiguration = "invalid_platform_broker_configuration";
728
728
 
729
- /*! @azure/msal-common v15.16.1 2026-03-13 */
729
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
730
730
 
731
731
  /*
732
732
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -772,7 +772,7 @@
772
772
  return new ClientConfigurationError(errorCode);
773
773
  }
774
774
 
775
- /*! @azure/msal-common v15.16.1 2026-03-13 */
775
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
776
776
  /*
777
777
  * Copyright (c) Microsoft Corporation. All rights reserved.
778
778
  * Licensed under the MIT License.
@@ -908,7 +908,7 @@
908
908
  }
909
909
  }
910
910
 
911
- /*! @azure/msal-common v15.16.1 2026-03-13 */
911
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
912
912
 
913
913
  /*
914
914
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1103,7 +1103,7 @@
1103
1103
  }
1104
1104
  }
1105
1105
 
1106
- /*! @azure/msal-common v15.16.1 2026-03-13 */
1106
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
1107
1107
 
1108
1108
  /*
1109
1109
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1143,7 +1143,7 @@
1143
1143
  };
1144
1144
  }
1145
1145
 
1146
- /*! @azure/msal-common v15.16.1 2026-03-13 */
1146
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
1147
1147
  /*
1148
1148
  * Copyright (c) Microsoft Corporation. All rights reserved.
1149
1149
  * Licensed under the MIT License.
@@ -1225,7 +1225,7 @@
1225
1225
  return updatedAccountInfo;
1226
1226
  }
1227
1227
 
1228
- /*! @azure/msal-common v15.16.1 2026-03-13 */
1228
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
1229
1229
  /*
1230
1230
  * Copyright (c) Microsoft Corporation. All rights reserved.
1231
1231
  * Licensed under the MIT License.
@@ -1240,7 +1240,7 @@
1240
1240
  Ciam: 3,
1241
1241
  };
1242
1242
 
1243
- /*! @azure/msal-common v15.16.1 2026-03-13 */
1243
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
1244
1244
  /*
1245
1245
  * Copyright (c) Microsoft Corporation. All rights reserved.
1246
1246
  * Licensed under the MIT License.
@@ -1262,7 +1262,7 @@
1262
1262
  return null;
1263
1263
  }
1264
1264
 
1265
- /*! @azure/msal-common v15.16.1 2026-03-13 */
1265
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
1266
1266
  /*
1267
1267
  * Copyright (c) Microsoft Corporation. All rights reserved.
1268
1268
  * Licensed under the MIT License.
@@ -1286,7 +1286,7 @@
1286
1286
  EAR: "EAR",
1287
1287
  };
1288
1288
 
1289
- /*! @azure/msal-common v15.16.1 2026-03-13 */
1289
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
1290
1290
 
1291
1291
  /*
1292
1292
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1521,7 +1521,7 @@
1521
1521
  }
1522
1522
  }
1523
1523
 
1524
- /*! @azure/msal-common v15.16.1 2026-03-13 */
1524
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
1525
1525
 
1526
1526
  /*
1527
1527
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1602,7 +1602,7 @@
1602
1602
  }
1603
1603
  }
1604
1604
 
1605
- /*! @azure/msal-common v15.16.1 2026-03-13 */
1605
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
1606
1606
 
1607
1607
  /*
1608
1608
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1718,7 +1718,7 @@
1718
1718
  }
1719
1719
  }
1720
1720
 
1721
- /*! @azure/msal-common v15.16.1 2026-03-13 */
1721
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
1722
1722
 
1723
1723
  /*
1724
1724
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1882,7 +1882,7 @@
1882
1882
  }
1883
1883
  }
1884
1884
 
1885
- /*! @azure/msal-common v15.16.1 2026-03-13 */
1885
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
1886
1886
 
1887
1887
  /*
1888
1888
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2057,7 +2057,7 @@
2057
2057
  return null;
2058
2058
  }
2059
2059
 
2060
- /*! @azure/msal-common v15.16.1 2026-03-13 */
2060
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
2061
2061
  /*
2062
2062
  * Copyright (c) Microsoft Corporation. All rights reserved.
2063
2063
  * Licensed under the MIT License.
@@ -2065,7 +2065,7 @@
2065
2065
  const cacheQuotaExceeded = "cache_quota_exceeded";
2066
2066
  const cacheErrorUnknown = "cache_error_unknown";
2067
2067
 
2068
- /*! @azure/msal-common v15.16.1 2026-03-13 */
2068
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
2069
2069
 
2070
2070
  /*
2071
2071
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2110,7 +2110,7 @@
2110
2110
  }
2111
2111
  }
2112
2112
 
2113
- /*! @azure/msal-common v15.16.1 2026-03-13 */
2113
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
2114
2114
 
2115
2115
  /*
2116
2116
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3220,7 +3220,7 @@
3220
3220
  }
3221
3221
  }
3222
3222
 
3223
- /*! @azure/msal-common v15.16.1 2026-03-13 */
3223
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
3224
3224
  /*
3225
3225
  * Copyright (c) Microsoft Corporation. All rights reserved.
3226
3226
  * Licensed under the MIT License.
@@ -3497,7 +3497,7 @@
3497
3497
  const PerformanceEventStatus = {
3498
3498
  InProgress: 1};
3499
3499
 
3500
- /*! @azure/msal-common v15.16.1 2026-03-13 */
3500
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
3501
3501
 
3502
3502
  /*
3503
3503
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3576,7 +3576,7 @@
3576
3576
  }
3577
3577
  }
3578
3578
 
3579
- /*! @azure/msal-common v15.16.1 2026-03-13 */
3579
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
3580
3580
 
3581
3581
  /*
3582
3582
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3676,7 +3676,7 @@
3676
3676
  return (config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC);
3677
3677
  }
3678
3678
 
3679
- /*! @azure/msal-common v15.16.1 2026-03-13 */
3679
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
3680
3680
  /*
3681
3681
  * Copyright (c) Microsoft Corporation. All rights reserved.
3682
3682
  * Licensed under the MIT License.
@@ -3686,7 +3686,7 @@
3686
3686
  UPN: "UPN",
3687
3687
  };
3688
3688
 
3689
- /*! @azure/msal-common v15.16.1 2026-03-13 */
3689
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
3690
3690
  /*
3691
3691
  * Copyright (c) Microsoft Corporation. All rights reserved.
3692
3692
  * Licensed under the MIT License.
@@ -3734,9 +3734,10 @@
3734
3734
  const BROKER_REDIRECT_URI = "brk_redirect_uri";
3735
3735
  const INSTANCE_AWARE = "instance_aware";
3736
3736
  const EAR_JWK = "ear_jwk";
3737
- const EAR_JWE_CRYPTO = "ear_jwe_crypto";
3737
+ const EAR_JWE_CRYPTO = "ear_jwe_crypto";
3738
+ const CLI_DATA = "clidata";
3738
3739
 
3739
- /*! @azure/msal-common v15.16.1 2026-03-13 */
3740
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
3740
3741
 
3741
3742
  /*
3742
3743
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4002,6 +4003,12 @@
4002
4003
  function addClientInfo(parameters) {
4003
4004
  parameters.set(CLIENT_INFO, "1");
4004
4005
  }
4006
+ /**
4007
+ * add clidata=1 to request to indicate client data support
4008
+ */
4009
+ function addCliData(parameters) {
4010
+ parameters.set(CLI_DATA, "1");
4011
+ }
4005
4012
  function addInstanceAware(parameters) {
4006
4013
  if (!parameters.has(INSTANCE_AWARE)) {
4007
4014
  parameters.set(INSTANCE_AWARE, "true");
@@ -4116,7 +4123,7 @@
4116
4123
  });
4117
4124
  }
4118
4125
 
4119
- /*! @azure/msal-common v15.16.1 2026-03-13 */
4126
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
4120
4127
  /*
4121
4128
  * Copyright (c) Microsoft Corporation. All rights reserved.
4122
4129
  * Licensed under the MIT License.
@@ -4128,7 +4135,7 @@
4128
4135
  response.hasOwnProperty("jwks_uri"));
4129
4136
  }
4130
4137
 
4131
- /*! @azure/msal-common v15.16.1 2026-03-13 */
4138
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
4132
4139
  /*
4133
4140
  * Copyright (c) Microsoft Corporation. All rights reserved.
4134
4141
  * Licensed under the MIT License.
@@ -4138,7 +4145,7 @@
4138
4145
  response.hasOwnProperty("metadata"));
4139
4146
  }
4140
4147
 
4141
- /*! @azure/msal-common v15.16.1 2026-03-13 */
4148
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
4142
4149
  /*
4143
4150
  * Copyright (c) Microsoft Corporation. All rights reserved.
4144
4151
  * Licensed under the MIT License.
@@ -4148,7 +4155,7 @@
4148
4155
  response.hasOwnProperty("error_description"));
4149
4156
  }
4150
4157
 
4151
- /*! @azure/msal-common v15.16.1 2026-03-13 */
4158
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
4152
4159
  /*
4153
4160
  * Copyright (c) Microsoft Corporation. All rights reserved.
4154
4161
  * Licensed under the MIT License.
@@ -4244,7 +4251,7 @@
4244
4251
  };
4245
4252
  };
4246
4253
 
4247
- /*! @azure/msal-common v15.16.1 2026-03-13 */
4254
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
4248
4255
 
4249
4256
  /*
4250
4257
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4350,7 +4357,7 @@
4350
4357
  },
4351
4358
  };
4352
4359
 
4353
- /*! @azure/msal-common v15.16.1 2026-03-13 */
4360
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
4354
4361
  /*
4355
4362
  * Copyright (c) Microsoft Corporation. All rights reserved.
4356
4363
  * Licensed under the MIT License.
@@ -4415,7 +4422,7 @@
4415
4422
  return cachedAtSec > nowSeconds();
4416
4423
  }
4417
4424
 
4418
- /*! @azure/msal-common v15.16.1 2026-03-13 */
4425
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
4419
4426
 
4420
4427
  /*
4421
4428
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4677,7 +4684,7 @@
4677
4684
  return metadata.expiresAt <= nowSeconds();
4678
4685
  }
4679
4686
 
4680
- /*! @azure/msal-common v15.16.1 2026-03-13 */
4687
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
4681
4688
 
4682
4689
  /*
4683
4690
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5516,7 +5523,7 @@
5516
5523
  };
5517
5524
  }
5518
5525
 
5519
- /*! @azure/msal-common v15.16.1 2026-03-13 */
5526
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
5520
5527
 
5521
5528
  /*
5522
5529
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5547,7 +5554,7 @@
5547
5554
  }
5548
5555
  }
5549
5556
 
5550
- /*! @azure/msal-common v15.16.1 2026-03-13 */
5557
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
5551
5558
 
5552
5559
  /*
5553
5560
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5566,7 +5573,7 @@
5566
5573
  }
5567
5574
  }
5568
5575
 
5569
- /*! @azure/msal-common v15.16.1 2026-03-13 */
5576
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
5570
5577
  /*
5571
5578
  * Copyright (c) Microsoft Corporation. All rights reserved.
5572
5579
  * Licensed under the MIT License.
@@ -5587,7 +5594,7 @@
5587
5594
  };
5588
5595
  }
5589
5596
 
5590
- /*! @azure/msal-common v15.16.1 2026-03-13 */
5597
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
5591
5598
 
5592
5599
  /*
5593
5600
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5674,7 +5681,7 @@
5674
5681
  }
5675
5682
  }
5676
5683
 
5677
- /*! @azure/msal-common v15.16.1 2026-03-13 */
5684
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
5678
5685
 
5679
5686
  /*
5680
5687
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5705,7 +5712,7 @@
5705
5712
  return new NetworkError(error, httpStatus, responseHeaders);
5706
5713
  }
5707
5714
 
5708
- /*! @azure/msal-common v15.16.1 2026-03-13 */
5715
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
5709
5716
 
5710
5717
  /*
5711
5718
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5853,7 +5860,7 @@
5853
5860
  }
5854
5861
  }
5855
5862
 
5856
- /*! @azure/msal-common v15.16.1 2026-03-13 */
5863
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
5857
5864
  /*
5858
5865
  * Copyright (c) Microsoft Corporation. All rights reserved.
5859
5866
  * Licensed under the MIT License.
@@ -5904,7 +5911,7 @@
5904
5911
  */
5905
5912
  const interruptedUser = "interrupted_user";
5906
5913
 
5907
- /*! @azure/msal-common v15.16.1 2026-03-13 */
5914
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
5908
5915
 
5909
5916
  /*
5910
5917
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5979,7 +5986,7 @@
5979
5986
  return new InteractionRequiredAuthError(errorCode, InteractionRequiredAuthErrorMessages[errorCode]);
5980
5987
  }
5981
5988
 
5982
- /*! @azure/msal-common v15.16.1 2026-03-13 */
5989
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
5983
5990
 
5984
5991
  /*
5985
5992
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6051,7 +6058,7 @@
6051
6058
  }
6052
6059
  }
6053
6060
 
6054
- /*! @azure/msal-common v15.16.1 2026-03-13 */
6061
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
6055
6062
 
6056
6063
  /*
6057
6064
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6133,7 +6140,7 @@
6133
6140
  }
6134
6141
  }
6135
6142
 
6136
- /*! @azure/msal-common v15.16.1 2026-03-13 */
6143
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
6137
6144
  /*
6138
6145
  * Copyright (c) Microsoft Corporation. All rights reserved.
6139
6146
  * Licensed under the MIT License.
@@ -6160,7 +6167,7 @@
6160
6167
  }
6161
6168
  }
6162
6169
 
6163
- /*! @azure/msal-common v15.16.1 2026-03-13 */
6170
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
6164
6171
 
6165
6172
  /*
6166
6173
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6499,7 +6506,7 @@
6499
6506
  return baseAccount;
6500
6507
  }
6501
6508
 
6502
- /*! @azure/msal-common v15.16.1 2026-03-13 */
6509
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
6503
6510
  /*
6504
6511
  * Copyright (c) Microsoft Corporation. All rights reserved.
6505
6512
  * Licensed under the MIT License.
@@ -6517,7 +6524,7 @@
6517
6524
  }
6518
6525
  }
6519
6526
 
6520
- /*! @azure/msal-common v15.16.1 2026-03-13 */
6527
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
6521
6528
 
6522
6529
  /*
6523
6530
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6757,7 +6764,7 @@
6757
6764
  }
6758
6765
  }
6759
6766
 
6760
- /*! @azure/msal-common v15.16.1 2026-03-13 */
6767
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
6761
6768
 
6762
6769
  /*
6763
6770
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6973,7 +6980,7 @@
6973
6980
  }
6974
6981
  }
6975
6982
 
6976
- /*! @azure/msal-common v15.16.1 2026-03-13 */
6983
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
6977
6984
 
6978
6985
  /*
6979
6986
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7071,7 +7078,7 @@
7071
7078
  }
7072
7079
  }
7073
7080
 
7074
- /*! @azure/msal-common v15.16.1 2026-03-13 */
7081
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
7075
7082
 
7076
7083
  /*
7077
7084
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7086,7 +7093,7 @@
7086
7093
  },
7087
7094
  };
7088
7095
 
7089
- /*! @azure/msal-common v15.16.1 2026-03-13 */
7096
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
7090
7097
 
7091
7098
  /*
7092
7099
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7118,6 +7125,8 @@
7118
7125
  addResponseMode(parameters, request.responseMode);
7119
7126
  // add client_info=1
7120
7127
  addClientInfo(parameters);
7128
+ // add clidata=1
7129
+ addCliData(parameters);
7121
7130
  if (request.prompt) {
7122
7131
  addPrompt(parameters, request.prompt);
7123
7132
  performanceClient?.addFields({ prompt: request.prompt }, correlationId);
@@ -7313,7 +7322,7 @@
7313
7322
  return account.loginHint || account.idTokenClaims?.login_hint || null;
7314
7323
  }
7315
7324
 
7316
- /*! @azure/msal-common v15.16.1 2026-03-13 */
7325
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
7317
7326
 
7318
7327
  /*
7319
7328
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7576,7 +7585,7 @@
7576
7585
  }
7577
7586
  }
7578
7587
 
7579
- /*! @azure/msal-common v15.16.1 2026-03-13 */
7588
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
7580
7589
  /*
7581
7590
  * Copyright (c) Microsoft Corporation. All rights reserved.
7582
7591
  * Licensed under the MIT License.
@@ -7584,7 +7593,7 @@
7584
7593
  const missingKidError = "missing_kid_error";
7585
7594
  const missingAlgError = "missing_alg_error";
7586
7595
 
7587
- /*! @azure/msal-common v15.16.1 2026-03-13 */
7596
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
7588
7597
 
7589
7598
  /*
7590
7599
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7609,7 +7618,7 @@
7609
7618
  return new JoseHeaderError(code, JoseHeaderErrorMessages[code]);
7610
7619
  }
7611
7620
 
7612
- /*! @azure/msal-common v15.16.1 2026-03-13 */
7621
+ /*! @azure/msal-common v15.17.0 2026-03-18 */
7613
7622
 
7614
7623
  /*
7615
7624
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -8044,7 +8053,7 @@
8044
8053
 
8045
8054
  /* eslint-disable header/header */
8046
8055
  const name = "@azure/msal-browser";
8047
- const version = "4.29.1";
8056
+ const version = "4.30.0";
8048
8057
 
8049
8058
  /*
8050
8059
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -17281,11 +17290,19 @@
17281
17290
  this.logger.trace("NativeInteractionClient - initializeNativeRequest called");
17282
17291
  const canonicalAuthority = await this.getCanonicalAuthority(request);
17283
17292
  // scopes are expected to be received by the native broker as "scope" and will be added to the request below. Other properties that should be dropped from the request to the native broker can be included in the object destructuring here.
17284
- const { scopes, ...remainingProperties } = request;
17293
+ const { scopes, claims, ...remainingProperties } = request;
17285
17294
  const scopeSet = new ScopeSet(scopes || []);
17286
17295
  scopeSet.appendScopes(OIDC_DEFAULT_SCOPES);
17296
+ // ignore config claims if skipBrokerClaims is set to true and this is a brokered authentication flow
17297
+ const configClaims = request.skipBrokerClaims && !!request.embeddedClientId
17298
+ ? undefined
17299
+ : this.config.auth.clientCapabilities;
17300
+ const mergedClaims = configClaims && configClaims.length
17301
+ ? addClientCapabilitiesToClaims(claims, configClaims)
17302
+ : claims;
17287
17303
  const validatedRequest = {
17288
17304
  ...remainingProperties,
17305
+ claims: mergedClaims,
17289
17306
  accountId: this.accountId,
17290
17307
  clientId: this.config.auth.clientId,
17291
17308
  authority: canonicalAuthority.urlString,
@@ -17418,6 +17435,53 @@
17418
17435
  * Copyright (c) Microsoft Corporation. All rights reserved.
17419
17436
  * Licensed under the MIT License.
17420
17437
  */
17438
+ const clientDataAccountTypeMapping = new Map([
17439
+ ["e", "AAD"],
17440
+ ["m", "MSA"],
17441
+ ]);
17442
+ /**
17443
+ * Parses the clientdata response parameter from the /authorize endpoint.
17444
+ *
17445
+ * The clientdata value is URL-encoded and pipe-delimited:
17446
+ * urlencoded(account_type | error | sub_error | cloud_instance | caller_data_boundary)
17447
+ *
17448
+ * @param clientdata - The raw clientdata string from the authorize response
17449
+ * @returns Parsed ClientData object, or null if the input is empty/invalid
17450
+ */
17451
+ function parseClientData(clientdata) {
17452
+ if (!clientdata) {
17453
+ return null;
17454
+ }
17455
+ try {
17456
+ const decoded = decodeURIComponent(clientdata);
17457
+ const parts = decoded.split("|");
17458
+ if (parts.length < 5) {
17459
+ return null;
17460
+ }
17461
+ return {
17462
+ accountType: clientDataAccountTypeMapping.get(parts[0]?.trim() || "") || "",
17463
+ error: parts[1]?.trim() || "",
17464
+ subError: parts[2]?.trim() || "",
17465
+ cloudInstance: parts[3]?.trim() || "",
17466
+ callerDataBoundary: parts[4]?.trim() || "",
17467
+ };
17468
+ }
17469
+ catch {
17470
+ return null;
17471
+ }
17472
+ }
17473
+ /**
17474
+ * Instruments account type, error, and suberror from clientdata
17475
+ */
17476
+ function instrumentClientData(response, correlationId, performanceClient) {
17477
+ const parsed = parseClientData(response.clientdata);
17478
+ parsed?.accountType &&
17479
+ performanceClient.addFields({ accountType: parsed.accountType }, correlationId);
17480
+ parsed?.error &&
17481
+ performanceClient.addFields({ serverErrorNo: parsed.error }, correlationId);
17482
+ parsed?.subError &&
17483
+ performanceClient.addFields({ serverSubErrorNo: parsed.subError }, correlationId);
17484
+ }
17421
17485
  /**
17422
17486
  * Returns map of parameters that are applicable to all calls to /authorize whether using PKCE or EAR
17423
17487
  * @param config
@@ -17580,6 +17644,8 @@
17580
17644
  async function handleResponseCode(request, response, codeVerifier, apiId, config, authClient, browserStorage, nativeStorage, eventHandler, logger, performanceClient, platformAuthProvider) {
17581
17645
  // Remove throttle if it exists
17582
17646
  ThrottlingUtils.removeThrottle(browserStorage, config.auth.clientId, request);
17647
+ // Instrument clientdata telemetry fields from the authorize response
17648
+ instrumentClientData(response, request.correlationId, performanceClient);
17583
17649
  if (response.accountId) {
17584
17650
  return invokeAsync(handleResponsePlatformBroker, PerformanceEvents.HandleResponsePlatformBroker, logger, performanceClient, request.correlationId)(request, response.accountId, apiId, config, browserStorage, nativeStorage, eventHandler, logger, performanceClient, platformAuthProvider);
17585
17651
  }
@@ -17612,6 +17678,8 @@
17612
17678
  async function handleResponseEAR(request, response, apiId, config, authority, browserStorage, nativeStorage, eventHandler, logger, performanceClient, platformAuthProvider) {
17613
17679
  // Remove throttle if it exists
17614
17680
  ThrottlingUtils.removeThrottle(browserStorage, config.auth.clientId, request);
17681
+ // Instrument clientdata telemetry fields from the authorize response
17682
+ instrumentClientData(response, request.correlationId, performanceClient);
17615
17683
  // Validate state & check response for errors
17616
17684
  validateAuthorizationResponse(response, request.state);
17617
17685
  if (!response.ear_jwe) {