@azure/msal-browser 4.16.0 → 4.18.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 (340) 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/CookieStorage.mjs +1 -1
  13. package/dist/cache/DatabaseStorage.mjs +1 -1
  14. package/dist/cache/LocalStorage.mjs +1 -1
  15. package/dist/cache/MemoryStorage.mjs +1 -1
  16. package/dist/cache/SessionStorage.mjs +1 -1
  17. package/dist/cache/TokenCache.mjs +1 -1
  18. package/dist/config/Configuration.mjs +1 -1
  19. package/dist/controllers/ControllerFactory.mjs +1 -1
  20. package/dist/controllers/NestedAppAuthController.mjs +1 -1
  21. package/dist/controllers/StandardController.mjs +1 -1
  22. package/dist/controllers/UnknownOperatingContextController.mjs +1 -1
  23. package/dist/crypto/BrowserCrypto.mjs +1 -1
  24. package/dist/crypto/CryptoOps.mjs +1 -1
  25. package/dist/crypto/PkceGenerator.mjs +1 -1
  26. package/dist/crypto/SignedHttpRequest.mjs +1 -1
  27. package/dist/custom-auth-path/app/PublicClientApplication.mjs +1 -1
  28. package/dist/custom-auth-path/broker/nativeBroker/NativeStatusCodes.mjs +1 -1
  29. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.mjs +1 -1
  30. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.mjs +1 -1
  31. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.mjs +1 -1
  32. package/dist/custom-auth-path/cache/AccountManager.mjs +1 -1
  33. package/dist/custom-auth-path/cache/AsyncMemoryStorage.mjs +1 -1
  34. package/dist/custom-auth-path/cache/BrowserCacheManager.mjs +1 -1
  35. package/dist/custom-auth-path/cache/CacheHelpers.mjs +1 -1
  36. package/dist/custom-auth-path/cache/CookieStorage.mjs +1 -1
  37. package/dist/custom-auth-path/cache/DatabaseStorage.mjs +1 -1
  38. package/dist/custom-auth-path/cache/LocalStorage.mjs +1 -1
  39. package/dist/custom-auth-path/cache/MemoryStorage.mjs +1 -1
  40. package/dist/custom-auth-path/cache/SessionStorage.mjs +1 -1
  41. package/dist/custom-auth-path/cache/TokenCache.mjs +1 -1
  42. package/dist/custom-auth-path/config/Configuration.mjs +1 -1
  43. package/dist/custom-auth-path/controllers/ControllerFactory.mjs +1 -1
  44. package/dist/custom-auth-path/controllers/StandardController.mjs +1 -1
  45. package/dist/custom-auth-path/crypto/BrowserCrypto.mjs +1 -1
  46. package/dist/custom-auth-path/crypto/CryptoOps.mjs +1 -1
  47. package/dist/custom-auth-path/crypto/PkceGenerator.mjs +1 -1
  48. package/dist/custom-auth-path/custom_auth/CustomAuthActionInputs.d.ts +3 -0
  49. package/dist/custom-auth-path/custom_auth/CustomAuthActionInputs.d.ts.map +1 -1
  50. package/dist/custom-auth-path/custom_auth/CustomAuthConstants.d.ts +1 -1
  51. package/dist/custom-auth-path/custom_auth/CustomAuthConstants.mjs +1 -1
  52. package/dist/custom-auth-path/custom_auth/CustomAuthPublicClientApplication.mjs +1 -1
  53. package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.d.ts.map +1 -1
  54. package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.mjs +8 -2
  55. package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.mjs.map +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.d.ts +5 -0
  58. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +1 -1
  59. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs +10 -1
  60. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs.map +1 -1
  61. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowResultBase.mjs +1 -1
  62. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowState.mjs +1 -1
  63. package/dist/custom-auth-path/custom_auth/core/error/CustomAuthApiError.mjs +1 -1
  64. package/dist/custom-auth-path/custom_auth/core/error/CustomAuthError.mjs +1 -1
  65. package/dist/custom-auth-path/custom_auth/core/error/HttpError.mjs +1 -1
  66. package/dist/custom-auth-path/custom_auth/core/error/HttpErrorCodes.mjs +1 -1
  67. package/dist/custom-auth-path/custom_auth/core/error/InvalidArgumentError.mjs +1 -1
  68. package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationError.mjs +1 -1
  69. package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationErrorCodes.mjs +1 -1
  70. package/dist/custom-auth-path/custom_auth/core/error/MethodNotImplementedError.mjs +1 -1
  71. package/dist/custom-auth-path/custom_auth/core/error/MsalCustomAuthError.mjs +1 -1
  72. package/dist/custom-auth-path/custom_auth/core/error/NoCachedAccountFoundError.mjs +1 -1
  73. package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlError.mjs +1 -1
  74. package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlErrorCodes.mjs +1 -1
  75. package/dist/custom-auth-path/custom_auth/core/error/UnexpectedError.mjs +1 -1
  76. package/dist/custom-auth-path/custom_auth/core/error/UnsupportedEnvironmentError.mjs +1 -1
  77. package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeError.mjs +1 -1
  78. package/dist/custom-auth-path/custom_auth/core/error/UserAlreadySignedInError.mjs +1 -1
  79. package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.mjs +1 -1
  80. package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.mjs +1 -1
  81. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs +1 -1
  82. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs +1 -1
  83. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.mjs +1 -1
  84. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs +1 -1
  85. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +1 -1
  86. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs +4 -1
  87. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs.map +1 -1
  88. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs +1 -1
  89. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.mjs +1 -1
  90. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +1 -0
  91. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +1 -1
  92. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.mjs +1 -1
  93. package/dist/custom-auth-path/custom_auth/core/network_client/http_client/FetchHttpClient.mjs +1 -1
  94. package/dist/custom-auth-path/custom_auth/core/network_client/http_client/IHttpClient.mjs +1 -1
  95. package/dist/custom-auth-path/custom_auth/core/telemetry/PublicApiId.mjs +1 -1
  96. package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.d.ts +1 -0
  97. package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.d.ts.map +1 -1
  98. package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.mjs +18 -2
  99. package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.mjs.map +1 -1
  100. package/dist/custom-auth-path/custom_auth/core/utils/UrlUtils.mjs +1 -1
  101. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +1 -1
  102. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs +8 -4
  103. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs.map +1 -1
  104. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/error_type/GetAccountError.mjs +1 -1
  105. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.mjs +1 -1
  106. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccountResult.mjs +1 -1
  107. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/SignOutResult.mjs +1 -1
  108. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccessTokenState.mjs +1 -1
  109. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccountState.mjs +1 -1
  110. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/SignOutState.mjs +1 -1
  111. package/dist/custom-auth-path/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.mjs +1 -1
  112. package/dist/custom-auth-path/custom_auth/index.mjs +1 -1
  113. package/dist/custom-auth-path/custom_auth/operating_context/CustomAuthOperatingContext.mjs +1 -1
  114. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.mjs +1 -1
  115. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.mjs +1 -1
  116. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.mjs +1 -1
  117. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.mjs +1 -1
  118. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.mjs +1 -1
  119. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.mjs +1 -1
  120. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.mjs +1 -1
  121. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.mjs +1 -1
  122. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.mjs +1 -1
  123. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordState.mjs +1 -1
  124. package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/ResetPasswordClient.mjs +1 -1
  125. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/SignInScenario.mjs +1 -1
  126. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +5 -0
  127. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +1 -1
  128. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs +8 -1
  129. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs.map +1 -1
  130. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.mjs +1 -1
  131. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResult.mjs +1 -1
  132. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.mjs +1 -1
  133. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCredentialResult.mjs +1 -1
  134. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.mjs +1 -1
  135. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +1 -1
  136. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs +2 -1
  137. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs.map +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.d.ts.map +1 -1
  140. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs +6 -1
  141. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs.map +1 -1
  142. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInFailedState.mjs +1 -1
  143. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +1 -1
  144. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs +2 -1
  145. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs.map +1 -1
  146. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInState.mjs +1 -1
  147. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +1 -0
  148. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +1 -1
  149. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +1 -1
  150. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.mjs +10 -1
  151. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.mjs.map +1 -1
  152. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +3 -0
  153. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +1 -1
  154. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/result/SignInActionResult.mjs +1 -1
  155. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/error_type/SignUpError.mjs +1 -1
  156. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.mjs +1 -1
  157. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResult.mjs +1 -1
  158. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.mjs +1 -1
  159. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.mjs +1 -1
  160. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.mjs +1 -1
  161. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.mjs +1 -1
  162. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.mjs +1 -1
  163. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.mjs +1 -1
  164. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpFailedState.mjs +1 -1
  165. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.mjs +1 -1
  166. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpState.mjs +1 -1
  167. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/SignUpClient.mjs +1 -1
  168. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/result/SignUpActionResult.mjs +1 -1
  169. package/dist/custom-auth-path/encode/Base64Decode.mjs +1 -1
  170. package/dist/custom-auth-path/encode/Base64Encode.mjs +1 -1
  171. package/dist/custom-auth-path/error/BrowserAuthError.mjs +1 -1
  172. package/dist/custom-auth-path/error/BrowserAuthErrorCodes.mjs +1 -1
  173. package/dist/custom-auth-path/error/BrowserConfigurationAuthError.mjs +1 -1
  174. package/dist/custom-auth-path/error/BrowserConfigurationAuthErrorCodes.mjs +1 -1
  175. package/dist/custom-auth-path/error/NativeAuthError.mjs +1 -1
  176. package/dist/custom-auth-path/error/NativeAuthErrorCodes.mjs +1 -1
  177. package/dist/custom-auth-path/event/EventHandler.mjs +1 -1
  178. package/dist/custom-auth-path/event/EventType.mjs +1 -1
  179. package/dist/custom-auth-path/interaction_client/BaseInteractionClient.mjs +1 -1
  180. package/dist/custom-auth-path/interaction_client/HybridSpaAuthorizationCodeClient.mjs +1 -1
  181. package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.mjs +1 -1
  182. package/dist/custom-auth-path/interaction_client/PopupClient.mjs +1 -1
  183. package/dist/custom-auth-path/interaction_client/RedirectClient.mjs +1 -1
  184. package/dist/custom-auth-path/interaction_client/SilentAuthCodeClient.mjs +1 -1
  185. package/dist/custom-auth-path/interaction_client/SilentCacheClient.mjs +1 -1
  186. package/dist/custom-auth-path/interaction_client/SilentIframeClient.mjs +1 -1
  187. package/dist/custom-auth-path/interaction_client/SilentRefreshClient.mjs +1 -1
  188. package/dist/custom-auth-path/interaction_client/StandardInteractionClient.mjs +1 -1
  189. package/dist/custom-auth-path/interaction_handler/InteractionHandler.mjs +1 -1
  190. package/dist/custom-auth-path/interaction_handler/SilentHandler.mjs +1 -1
  191. package/dist/custom-auth-path/navigation/NavigationClient.mjs +1 -1
  192. package/dist/custom-auth-path/network/FetchClient.mjs +1 -1
  193. package/dist/custom-auth-path/operatingcontext/BaseOperatingContext.mjs +1 -1
  194. package/dist/custom-auth-path/operatingcontext/StandardOperatingContext.mjs +1 -1
  195. package/dist/custom-auth-path/packageMetadata.d.ts +1 -1
  196. package/dist/custom-auth-path/packageMetadata.mjs +2 -2
  197. package/dist/custom-auth-path/protocol/Authorize.mjs +1 -1
  198. package/dist/custom-auth-path/request/RequestHelpers.mjs +1 -1
  199. package/dist/custom-auth-path/response/ResponseHandler.mjs +1 -1
  200. package/dist/custom-auth-path/utils/BrowserConstants.mjs +1 -1
  201. package/dist/custom-auth-path/utils/BrowserProtocolUtils.mjs +1 -1
  202. package/dist/custom-auth-path/utils/BrowserUtils.mjs +1 -1
  203. package/dist/custom-auth-path/utils/MsalFrameStatsUtils.mjs +1 -1
  204. package/dist/custom_auth/CustomAuthActionInputs.d.ts +3 -0
  205. package/dist/custom_auth/CustomAuthActionInputs.d.ts.map +1 -1
  206. package/dist/custom_auth/CustomAuthConstants.d.ts +1 -1
  207. package/dist/custom_auth/controller/CustomAuthStandardController.d.ts.map +1 -1
  208. package/dist/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +5 -0
  209. package/dist/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +1 -1
  210. package/dist/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +1 -1
  211. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +1 -0
  212. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +1 -1
  213. package/dist/custom_auth/core/utils/ArgumentValidator.d.ts +1 -0
  214. package/dist/custom_auth/core/utils/ArgumentValidator.d.ts.map +1 -1
  215. package/dist/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +1 -1
  216. package/dist/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +5 -0
  217. package/dist/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +1 -1
  218. package/dist/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +1 -1
  219. package/dist/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +1 -1
  220. package/dist/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +1 -1
  221. package/dist/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +1 -0
  222. package/dist/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +1 -1
  223. package/dist/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +1 -1
  224. package/dist/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +3 -0
  225. package/dist/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +1 -1
  226. package/dist/encode/Base64Decode.mjs +1 -1
  227. package/dist/encode/Base64Encode.mjs +1 -1
  228. package/dist/error/BrowserAuthError.mjs +1 -1
  229. package/dist/error/BrowserAuthErrorCodes.mjs +1 -1
  230. package/dist/error/BrowserConfigurationAuthError.mjs +1 -1
  231. package/dist/error/BrowserConfigurationAuthErrorCodes.mjs +1 -1
  232. package/dist/error/NativeAuthError.mjs +1 -1
  233. package/dist/error/NativeAuthErrorCodes.mjs +1 -1
  234. package/dist/error/NestedAppAuthError.mjs +1 -1
  235. package/dist/event/EventHandler.mjs +1 -1
  236. package/dist/event/EventMessage.mjs +1 -1
  237. package/dist/event/EventType.mjs +1 -1
  238. package/dist/index.mjs +1 -1
  239. package/dist/interaction_client/BaseInteractionClient.mjs +1 -1
  240. package/dist/interaction_client/HybridSpaAuthorizationCodeClient.mjs +1 -1
  241. package/dist/interaction_client/PlatformAuthInteractionClient.mjs +1 -1
  242. package/dist/interaction_client/PopupClient.mjs +1 -1
  243. package/dist/interaction_client/RedirectClient.mjs +1 -1
  244. package/dist/interaction_client/SilentAuthCodeClient.mjs +1 -1
  245. package/dist/interaction_client/SilentCacheClient.mjs +1 -1
  246. package/dist/interaction_client/SilentIframeClient.mjs +1 -1
  247. package/dist/interaction_client/SilentRefreshClient.mjs +1 -1
  248. package/dist/interaction_client/StandardInteractionClient.mjs +1 -1
  249. package/dist/interaction_handler/InteractionHandler.mjs +1 -1
  250. package/dist/interaction_handler/SilentHandler.mjs +1 -1
  251. package/dist/naa/BridgeError.mjs +1 -1
  252. package/dist/naa/BridgeProxy.mjs +1 -1
  253. package/dist/naa/BridgeStatusCode.mjs +1 -1
  254. package/dist/naa/mapping/NestedAppAuthAdapter.mjs +1 -1
  255. package/dist/navigation/NavigationClient.mjs +1 -1
  256. package/dist/network/FetchClient.mjs +1 -1
  257. package/dist/operatingcontext/BaseOperatingContext.mjs +1 -1
  258. package/dist/operatingcontext/NestedAppOperatingContext.mjs +1 -1
  259. package/dist/operatingcontext/StandardOperatingContext.mjs +1 -1
  260. package/dist/operatingcontext/UnknownOperatingContext.mjs +1 -1
  261. package/dist/packageMetadata.d.ts +1 -1
  262. package/dist/packageMetadata.mjs +2 -2
  263. package/dist/protocol/Authorize.mjs +1 -1
  264. package/dist/request/RequestHelpers.mjs +1 -1
  265. package/dist/response/ResponseHandler.mjs +1 -1
  266. package/dist/telemetry/BrowserPerformanceClient.mjs +1 -1
  267. package/dist/telemetry/BrowserPerformanceMeasurement.mjs +1 -1
  268. package/dist/utils/BrowserConstants.mjs +1 -1
  269. package/dist/utils/BrowserProtocolUtils.mjs +1 -1
  270. package/dist/utils/BrowserUtils.mjs +1 -1
  271. package/dist/utils/MsalFrameStatsUtils.mjs +1 -1
  272. package/lib/custom-auth-path/msal-custom-auth.cjs +126 -66
  273. package/lib/custom-auth-path/msal-custom-auth.cjs.map +1 -1
  274. package/lib/custom-auth-path/types/custom_auth/CustomAuthActionInputs.d.ts +3 -0
  275. package/lib/custom-auth-path/types/custom_auth/CustomAuthActionInputs.d.ts.map +1 -1
  276. package/lib/custom-auth-path/types/custom_auth/CustomAuthConstants.d.ts +1 -1
  277. package/lib/custom-auth-path/types/custom_auth/controller/CustomAuthStandardController.d.ts.map +1 -1
  278. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +5 -0
  279. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +1 -1
  280. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +1 -1
  281. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +1 -0
  282. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +1 -1
  283. package/lib/custom-auth-path/types/custom_auth/core/utils/ArgumentValidator.d.ts +1 -0
  284. package/lib/custom-auth-path/types/custom_auth/core/utils/ArgumentValidator.d.ts.map +1 -1
  285. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +1 -1
  286. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +5 -0
  287. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +1 -1
  288. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +1 -1
  289. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +1 -1
  290. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +1 -1
  291. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +1 -0
  292. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +1 -1
  293. package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +1 -1
  294. package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +3 -0
  295. package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +1 -1
  296. package/lib/custom-auth-path/types/packageMetadata.d.ts +1 -1
  297. package/lib/msal-browser.cjs +66 -66
  298. package/lib/msal-browser.cjs.map +1 -1
  299. package/lib/msal-browser.js +66 -66
  300. package/lib/msal-browser.js.map +1 -1
  301. package/lib/msal-browser.min.js +61 -61
  302. package/lib/types/custom_auth/CustomAuthActionInputs.d.ts +3 -0
  303. package/lib/types/custom_auth/CustomAuthActionInputs.d.ts.map +1 -1
  304. package/lib/types/custom_auth/CustomAuthConstants.d.ts +1 -1
  305. package/lib/types/custom_auth/controller/CustomAuthStandardController.d.ts.map +1 -1
  306. package/lib/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +5 -0
  307. package/lib/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +1 -1
  308. package/lib/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +1 -1
  309. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +1 -0
  310. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +1 -1
  311. package/lib/types/custom_auth/core/utils/ArgumentValidator.d.ts +1 -0
  312. package/lib/types/custom_auth/core/utils/ArgumentValidator.d.ts.map +1 -1
  313. package/lib/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +1 -1
  314. package/lib/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +5 -0
  315. package/lib/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +1 -1
  316. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +1 -1
  317. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +1 -1
  318. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +1 -1
  319. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +1 -0
  320. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +1 -1
  321. package/lib/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +1 -1
  322. package/lib/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +3 -0
  323. package/lib/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +1 -1
  324. package/lib/types/packageMetadata.d.ts +1 -1
  325. package/package.json +1 -1
  326. package/src/custom_auth/CustomAuthActionInputs.ts +3 -0
  327. package/src/custom_auth/controller/CustomAuthStandardController.ts +18 -10
  328. package/src/custom_auth/core/auth_flow/AuthFlowErrorBase.ts +12 -0
  329. package/src/custom_auth/core/network_client/custom_auth_api/SignInApiClient.ts +3 -0
  330. package/src/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.ts +1 -0
  331. package/src/custom_auth/core/utils/ArgumentValidator.ts +22 -0
  332. package/src/custom_auth/get_account/auth_flow/CustomAuthAccountData.ts +24 -9
  333. package/src/custom_auth/sign_in/auth_flow/error_type/SignInError.ts +8 -0
  334. package/src/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.ts +1 -0
  335. package/src/custom_auth/sign_in/auth_flow/state/SignInContinuationState.ts +10 -0
  336. package/src/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.ts +1 -0
  337. package/src/custom_auth/sign_in/auth_flow/state/SignInStateParameters.ts +1 -0
  338. package/src/custom_auth/sign_in/interaction_client/SignInClient.ts +9 -0
  339. package/src/custom_auth/sign_in/interaction_client/parameter/SignInParams.ts +3 -0
  340. package/src/packageMetadata.ts +1 -1
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v4.16.0 2025-07-23 */
1
+ /*! @azure/msal-browser v4.18.0 2025-07-30 */
2
2
  'use strict';
3
3
  (function (global, factory) {
4
4
  typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
@@ -6,7 +6,7 @@
6
6
  (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.msal = {}));
7
7
  })(this, (function (exports) { 'use strict';
8
8
 
9
- /*! @azure/msal-common v15.9.0 2025-07-23 */
9
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
10
10
  /*
11
11
  * Copyright (c) Microsoft Corporation. All rights reserved.
12
12
  * Licensed under the MIT License.
@@ -285,7 +285,7 @@
285
285
  // Token renewal offset default in seconds
286
286
  const DEFAULT_TOKEN_RENEWAL_OFFSET_SEC = 300;
287
287
 
288
- /*! @azure/msal-common v15.9.0 2025-07-23 */
288
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
289
289
  /*
290
290
  * Copyright (c) Microsoft Corporation. All rights reserved.
291
291
  * Licensed under the MIT License.
@@ -302,7 +302,7 @@
302
302
  unexpectedError: unexpectedError
303
303
  });
304
304
 
305
- /*! @azure/msal-common v15.9.0 2025-07-23 */
305
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
306
306
 
307
307
  /*
308
308
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -351,7 +351,7 @@
351
351
  : AuthErrorMessages[code]);
352
352
  }
353
353
 
354
- /*! @azure/msal-common v15.9.0 2025-07-23 */
354
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
355
355
  /*
356
356
  * Copyright (c) Microsoft Corporation. All rights reserved.
357
357
  * Licensed under the MIT License.
@@ -449,7 +449,7 @@
449
449
  userTimeoutReached: userTimeoutReached
450
450
  });
451
451
 
452
- /*! @azure/msal-common v15.9.0 2025-07-23 */
452
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
453
453
 
454
454
  /*
455
455
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -701,7 +701,7 @@
701
701
  return new ClientAuthError(errorCode, additionalMessage);
702
702
  }
703
703
 
704
- /*! @azure/msal-common v15.9.0 2025-07-23 */
704
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
705
705
 
706
706
  /*
707
707
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -740,7 +740,7 @@
740
740
  },
741
741
  };
742
742
 
743
- /*! @azure/msal-common v15.9.0 2025-07-23 */
743
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
744
744
 
745
745
  /*
746
746
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -931,12 +931,12 @@
931
931
  }
932
932
  }
933
933
 
934
- /*! @azure/msal-common v15.9.0 2025-07-23 */
934
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
935
935
  /* eslint-disable header/header */
936
936
  const name$1 = "@azure/msal-common";
937
937
  const version$1 = "15.9.0";
938
938
 
939
- /*! @azure/msal-common v15.9.0 2025-07-23 */
939
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
940
940
  /*
941
941
  * Copyright (c) Microsoft Corporation. All rights reserved.
942
942
  * Licensed under the MIT License.
@@ -956,7 +956,7 @@
956
956
  AzureUsGovernment: "https://login.microsoftonline.us",
957
957
  };
958
958
 
959
- /*! @azure/msal-common v15.9.0 2025-07-23 */
959
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
960
960
 
961
961
  /*
962
962
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1017,7 +1017,7 @@
1017
1017
  }
1018
1018
  }
1019
1019
 
1020
- /*! @azure/msal-common v15.9.0 2025-07-23 */
1020
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
1021
1021
  /*
1022
1022
  * Copyright (c) Microsoft Corporation. All rights reserved.
1023
1023
  * Licensed under the MIT License.
@@ -1072,7 +1072,7 @@
1072
1072
  return cachedAtSec > nowSeconds();
1073
1073
  }
1074
1074
 
1075
- /*! @azure/msal-common v15.9.0 2025-07-23 */
1075
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
1076
1076
 
1077
1077
  /*
1078
1078
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1399,7 +1399,7 @@
1399
1399
  return metadata.expiresAt <= nowSeconds();
1400
1400
  }
1401
1401
 
1402
- /*! @azure/msal-common v15.9.0 2025-07-23 */
1402
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
1403
1403
  /*
1404
1404
  * Copyright (c) Microsoft Corporation. All rights reserved.
1405
1405
  * Licensed under the MIT License.
@@ -1455,7 +1455,7 @@
1455
1455
  urlParseError: urlParseError
1456
1456
  });
1457
1457
 
1458
- /*! @azure/msal-common v15.9.0 2025-07-23 */
1458
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
1459
1459
 
1460
1460
  /*
1461
1461
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1598,7 +1598,7 @@
1598
1598
  return new ClientConfigurationError(errorCode);
1599
1599
  }
1600
1600
 
1601
- /*! @azure/msal-common v15.9.0 2025-07-23 */
1601
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
1602
1602
  /*
1603
1603
  * Copyright (c) Microsoft Corporation. All rights reserved.
1604
1604
  * Licensed under the MIT License.
@@ -1695,7 +1695,7 @@
1695
1695
  }
1696
1696
  }
1697
1697
 
1698
- /*! @azure/msal-common v15.9.0 2025-07-23 */
1698
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
1699
1699
 
1700
1700
  /*
1701
1701
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1886,7 +1886,7 @@
1886
1886
  }
1887
1887
  }
1888
1888
 
1889
- /*! @azure/msal-common v15.9.0 2025-07-23 */
1889
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
1890
1890
 
1891
1891
  /*
1892
1892
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1926,7 +1926,7 @@
1926
1926
  };
1927
1927
  }
1928
1928
 
1929
- /*! @azure/msal-common v15.9.0 2025-07-23 */
1929
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
1930
1930
  /*
1931
1931
  * Copyright (c) Microsoft Corporation. All rights reserved.
1932
1932
  * Licensed under the MIT License.
@@ -2005,7 +2005,7 @@
2005
2005
  return updatedAccountInfo;
2006
2006
  }
2007
2007
 
2008
- /*! @azure/msal-common v15.9.0 2025-07-23 */
2008
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
2009
2009
  /*
2010
2010
  * Copyright (c) Microsoft Corporation. All rights reserved.
2011
2011
  * Licensed under the MIT License.
@@ -2020,7 +2020,7 @@
2020
2020
  Ciam: 3,
2021
2021
  };
2022
2022
 
2023
- /*! @azure/msal-common v15.9.0 2025-07-23 */
2023
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
2024
2024
  /*
2025
2025
  * Copyright (c) Microsoft Corporation. All rights reserved.
2026
2026
  * Licensed under the MIT License.
@@ -2042,7 +2042,7 @@
2042
2042
  return null;
2043
2043
  }
2044
2044
 
2045
- /*! @azure/msal-common v15.9.0 2025-07-23 */
2045
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
2046
2046
  /*
2047
2047
  * Copyright (c) Microsoft Corporation. All rights reserved.
2048
2048
  * Licensed under the MIT License.
@@ -2066,7 +2066,7 @@
2066
2066
  EAR: "EAR",
2067
2067
  };
2068
2068
 
2069
- /*! @azure/msal-common v15.9.0 2025-07-23 */
2069
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
2070
2070
 
2071
2071
  /*
2072
2072
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2309,7 +2309,7 @@
2309
2309
  }
2310
2310
  }
2311
2311
 
2312
- /*! @azure/msal-common v15.9.0 2025-07-23 */
2312
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
2313
2313
 
2314
2314
  /*
2315
2315
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2374,7 +2374,7 @@
2374
2374
  return queryParameterArray.join("&");
2375
2375
  }
2376
2376
 
2377
- /*! @azure/msal-common v15.9.0 2025-07-23 */
2377
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
2378
2378
 
2379
2379
  /*
2380
2380
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2538,7 +2538,7 @@
2538
2538
  }
2539
2539
  }
2540
2540
 
2541
- /*! @azure/msal-common v15.9.0 2025-07-23 */
2541
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
2542
2542
 
2543
2543
  /*
2544
2544
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2677,7 +2677,7 @@
2677
2677
  return null;
2678
2678
  }
2679
2679
 
2680
- /*! @azure/msal-common v15.9.0 2025-07-23 */
2680
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
2681
2681
  /*
2682
2682
  * Copyright (c) Microsoft Corporation. All rights reserved.
2683
2683
  * Licensed under the MIT License.
@@ -2685,7 +2685,7 @@
2685
2685
  const cacheQuotaExceeded = "cache_quota_exceeded";
2686
2686
  const cacheErrorUnknown = "cache_error_unknown";
2687
2687
 
2688
- /*! @azure/msal-common v15.9.0 2025-07-23 */
2688
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
2689
2689
 
2690
2690
  /*
2691
2691
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2730,7 +2730,7 @@
2730
2730
  }
2731
2731
  }
2732
2732
 
2733
- /*! @azure/msal-common v15.9.0 2025-07-23 */
2733
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
2734
2734
 
2735
2735
  /*
2736
2736
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3897,7 +3897,7 @@
3897
3897
  }
3898
3898
  }
3899
3899
 
3900
- /*! @azure/msal-common v15.9.0 2025-07-23 */
3900
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
3901
3901
  /*
3902
3902
  * Copyright (c) Microsoft Corporation. All rights reserved.
3903
3903
  * Licensed under the MIT License.
@@ -4409,7 +4409,7 @@
4409
4409
  "encryptedCacheExpiredCount",
4410
4410
  ]);
4411
4411
 
4412
- /*! @azure/msal-common v15.9.0 2025-07-23 */
4412
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
4413
4413
 
4414
4414
  /*
4415
4415
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4488,7 +4488,7 @@
4488
4488
  }
4489
4489
  }
4490
4490
 
4491
- /*! @azure/msal-common v15.9.0 2025-07-23 */
4491
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
4492
4492
 
4493
4493
  /*
4494
4494
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4588,7 +4588,7 @@
4588
4588
  return (config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC);
4589
4589
  }
4590
4590
 
4591
- /*! @azure/msal-common v15.9.0 2025-07-23 */
4591
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
4592
4592
  /*
4593
4593
  * Copyright (c) Microsoft Corporation. All rights reserved.
4594
4594
  * Licensed under the MIT License.
@@ -4598,7 +4598,7 @@
4598
4598
  UPN: "UPN",
4599
4599
  };
4600
4600
 
4601
- /*! @azure/msal-common v15.9.0 2025-07-23 */
4601
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
4602
4602
  /*
4603
4603
  * Copyright (c) Microsoft Corporation. All rights reserved.
4604
4604
  * Licensed under the MIT License.
@@ -4648,7 +4648,7 @@
4648
4648
  const EAR_JWK = "ear_jwk";
4649
4649
  const EAR_JWE_CRYPTO = "ear_jwe_crypto";
4650
4650
 
4651
- /*! @azure/msal-common v15.9.0 2025-07-23 */
4651
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
4652
4652
 
4653
4653
  /*
4654
4654
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5028,7 +5028,7 @@
5028
5028
  });
5029
5029
  }
5030
5030
 
5031
- /*! @azure/msal-common v15.9.0 2025-07-23 */
5031
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
5032
5032
  /*
5033
5033
  * Copyright (c) Microsoft Corporation. All rights reserved.
5034
5034
  * Licensed under the MIT License.
@@ -5040,7 +5040,7 @@
5040
5040
  response.hasOwnProperty("jwks_uri"));
5041
5041
  }
5042
5042
 
5043
- /*! @azure/msal-common v15.9.0 2025-07-23 */
5043
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
5044
5044
  /*
5045
5045
  * Copyright (c) Microsoft Corporation. All rights reserved.
5046
5046
  * Licensed under the MIT License.
@@ -5050,7 +5050,7 @@
5050
5050
  response.hasOwnProperty("metadata"));
5051
5051
  }
5052
5052
 
5053
- /*! @azure/msal-common v15.9.0 2025-07-23 */
5053
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
5054
5054
  /*
5055
5055
  * Copyright (c) Microsoft Corporation. All rights reserved.
5056
5056
  * Licensed under the MIT License.
@@ -5060,7 +5060,7 @@
5060
5060
  response.hasOwnProperty("error_description"));
5061
5061
  }
5062
5062
 
5063
- /*! @azure/msal-common v15.9.0 2025-07-23 */
5063
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
5064
5064
  /*
5065
5065
  * Copyright (c) Microsoft Corporation. All rights reserved.
5066
5066
  * Licensed under the MIT License.
@@ -5156,7 +5156,7 @@
5156
5156
  };
5157
5157
  };
5158
5158
 
5159
- /*! @azure/msal-common v15.9.0 2025-07-23 */
5159
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
5160
5160
 
5161
5161
  /*
5162
5162
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5262,7 +5262,7 @@
5262
5262
  },
5263
5263
  };
5264
5264
 
5265
- /*! @azure/msal-common v15.9.0 2025-07-23 */
5265
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
5266
5266
 
5267
5267
  /*
5268
5268
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6101,7 +6101,7 @@
6101
6101
  };
6102
6102
  }
6103
6103
 
6104
- /*! @azure/msal-common v15.9.0 2025-07-23 */
6104
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
6105
6105
 
6106
6106
  /*
6107
6107
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6132,7 +6132,7 @@
6132
6132
  }
6133
6133
  }
6134
6134
 
6135
- /*! @azure/msal-common v15.9.0 2025-07-23 */
6135
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
6136
6136
 
6137
6137
  /*
6138
6138
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6151,7 +6151,7 @@
6151
6151
  }
6152
6152
  }
6153
6153
 
6154
- /*! @azure/msal-common v15.9.0 2025-07-23 */
6154
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
6155
6155
  /*
6156
6156
  * Copyright (c) Microsoft Corporation. All rights reserved.
6157
6157
  * Licensed under the MIT License.
@@ -6172,7 +6172,7 @@
6172
6172
  };
6173
6173
  }
6174
6174
 
6175
- /*! @azure/msal-common v15.9.0 2025-07-23 */
6175
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
6176
6176
 
6177
6177
  /*
6178
6178
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6259,7 +6259,7 @@
6259
6259
  }
6260
6260
  }
6261
6261
 
6262
- /*! @azure/msal-common v15.9.0 2025-07-23 */
6262
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
6263
6263
 
6264
6264
  /*
6265
6265
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6290,7 +6290,7 @@
6290
6290
  return new NetworkError(error, httpStatus, responseHeaders);
6291
6291
  }
6292
6292
 
6293
- /*! @azure/msal-common v15.9.0 2025-07-23 */
6293
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
6294
6294
 
6295
6295
  /*
6296
6296
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6438,7 +6438,7 @@
6438
6438
  }
6439
6439
  }
6440
6440
 
6441
- /*! @azure/msal-common v15.9.0 2025-07-23 */
6441
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
6442
6442
  /*
6443
6443
  * Copyright (c) Microsoft Corporation. All rights reserved.
6444
6444
  * Licensed under the MIT License.
@@ -6466,7 +6466,7 @@
6466
6466
  uxNotAllowed: uxNotAllowed
6467
6467
  });
6468
6468
 
6469
- /*! @azure/msal-common v15.9.0 2025-07-23 */
6469
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
6470
6470
 
6471
6471
  /*
6472
6472
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6556,7 +6556,7 @@
6556
6556
  return new InteractionRequiredAuthError(errorCode, InteractionRequiredAuthErrorMessages[errorCode]);
6557
6557
  }
6558
6558
 
6559
- /*! @azure/msal-common v15.9.0 2025-07-23 */
6559
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
6560
6560
 
6561
6561
  /*
6562
6562
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6628,7 +6628,7 @@
6628
6628
  }
6629
6629
  }
6630
6630
 
6631
- /*! @azure/msal-common v15.9.0 2025-07-23 */
6631
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
6632
6632
 
6633
6633
  /*
6634
6634
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6710,7 +6710,7 @@
6710
6710
  }
6711
6711
  }
6712
6712
 
6713
- /*! @azure/msal-common v15.9.0 2025-07-23 */
6713
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
6714
6714
  /*
6715
6715
  * Copyright (c) Microsoft Corporation. All rights reserved.
6716
6716
  * Licensed under the MIT License.
@@ -6737,7 +6737,7 @@
6737
6737
  }
6738
6738
  }
6739
6739
 
6740
- /*! @azure/msal-common v15.9.0 2025-07-23 */
6740
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
6741
6741
 
6742
6742
  /*
6743
6743
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7068,7 +7068,7 @@
7068
7068
  return baseAccount;
7069
7069
  }
7070
7070
 
7071
- /*! @azure/msal-common v15.9.0 2025-07-23 */
7071
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
7072
7072
  /*
7073
7073
  * Copyright (c) Microsoft Corporation. All rights reserved.
7074
7074
  * Licensed under the MIT License.
@@ -7086,7 +7086,7 @@
7086
7086
  }
7087
7087
  }
7088
7088
 
7089
- /*! @azure/msal-common v15.9.0 2025-07-23 */
7089
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
7090
7090
 
7091
7091
  /*
7092
7092
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7321,7 +7321,7 @@
7321
7321
  }
7322
7322
  }
7323
7323
 
7324
- /*! @azure/msal-common v15.9.0 2025-07-23 */
7324
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
7325
7325
 
7326
7326
  /*
7327
7327
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7530,7 +7530,7 @@
7530
7530
  }
7531
7531
  }
7532
7532
 
7533
- /*! @azure/msal-common v15.9.0 2025-07-23 */
7533
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
7534
7534
 
7535
7535
  /*
7536
7536
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7628,7 +7628,7 @@
7628
7628
  }
7629
7629
  }
7630
7630
 
7631
- /*! @azure/msal-common v15.9.0 2025-07-23 */
7631
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
7632
7632
 
7633
7633
  /*
7634
7634
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7643,7 +7643,7 @@
7643
7643
  },
7644
7644
  };
7645
7645
 
7646
- /*! @azure/msal-common v15.9.0 2025-07-23 */
7646
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
7647
7647
 
7648
7648
  /*
7649
7649
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7867,7 +7867,7 @@
7867
7867
  return account.idTokenClaims?.login_hint || null;
7868
7868
  }
7869
7869
 
7870
- /*! @azure/msal-common v15.9.0 2025-07-23 */
7870
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
7871
7871
 
7872
7872
  /*
7873
7873
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7925,7 +7925,7 @@
7925
7925
  }
7926
7926
  }
7927
7927
 
7928
- /*! @azure/msal-common v15.9.0 2025-07-23 */
7928
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
7929
7929
 
7930
7930
  /*
7931
7931
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -8188,7 +8188,7 @@
8188
8188
  }
8189
8189
  }
8190
8190
 
8191
- /*! @azure/msal-common v15.9.0 2025-07-23 */
8191
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
8192
8192
  /*
8193
8193
  * Copyright (c) Microsoft Corporation. All rights reserved.
8194
8194
  * Licensed under the MIT License.
@@ -8196,7 +8196,7 @@
8196
8196
  const missingKidError = "missing_kid_error";
8197
8197
  const missingAlgError = "missing_alg_error";
8198
8198
 
8199
- /*! @azure/msal-common v15.9.0 2025-07-23 */
8199
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
8200
8200
 
8201
8201
  /*
8202
8202
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -8221,7 +8221,7 @@
8221
8221
  return new JoseHeaderError(code, JoseHeaderErrorMessages[code]);
8222
8222
  }
8223
8223
 
8224
- /*! @azure/msal-common v15.9.0 2025-07-23 */
8224
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
8225
8225
 
8226
8226
  /*
8227
8227
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -8261,7 +8261,7 @@
8261
8261
  }
8262
8262
  }
8263
8263
 
8264
- /*! @azure/msal-common v15.9.0 2025-07-23 */
8264
+ /*! @azure/msal-common v15.9.0 2025-07-30 */
8265
8265
 
8266
8266
  /*
8267
8267
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -10365,7 +10365,7 @@
10365
10365
 
10366
10366
  /* eslint-disable header/header */
10367
10367
  const name = "@azure/msal-browser";
10368
- const version = "4.16.0";
10368
+ const version = "4.18.0";
10369
10369
 
10370
10370
  /*
10371
10371
  * Copyright (c) Microsoft Corporation. All rights reserved.