@azure/msal-browser 5.0.1 → 5.0.2

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 (271) hide show
  1. package/dist/app/IPublicClientApplication.mjs +1 -1
  2. package/dist/app/PublicClientApplication.mjs +1 -1
  3. package/dist/broker/nativeBroker/NativeStatusCodes.mjs +1 -1
  4. package/dist/broker/nativeBroker/PlatformAuthDOMHandler.mjs +1 -1
  5. package/dist/broker/nativeBroker/PlatformAuthExtensionHandler.mjs +1 -1
  6. package/dist/broker/nativeBroker/PlatformAuthProvider.mjs +1 -1
  7. package/dist/cache/AccountManager.mjs +1 -1
  8. package/dist/cache/AsyncMemoryStorage.mjs +1 -1
  9. package/dist/cache/BrowserCacheManager.mjs +1 -1
  10. package/dist/cache/CacheHelpers.mjs +1 -1
  11. package/dist/cache/CacheKeys.mjs +1 -1
  12. package/dist/cache/CookieStorage.mjs +1 -1
  13. package/dist/cache/DatabaseStorage.mjs +1 -1
  14. package/dist/cache/EncryptedData.mjs +1 -1
  15. package/dist/cache/LocalStorage.mjs +1 -1
  16. package/dist/cache/MemoryStorage.mjs +1 -1
  17. package/dist/cache/SessionStorage.mjs +1 -1
  18. package/dist/cache/TokenCache.mjs +1 -1
  19. package/dist/config/Configuration.mjs +1 -1
  20. package/dist/controllers/NestedAppAuthController.mjs +1 -1
  21. package/dist/controllers/StandardController.mjs +1 -1
  22. package/dist/crypto/BrowserCrypto.mjs +1 -1
  23. package/dist/crypto/CryptoOps.mjs +1 -1
  24. package/dist/crypto/PkceGenerator.mjs +1 -1
  25. package/dist/crypto/SignedHttpRequest.mjs +1 -1
  26. package/dist/custom-auth-path/app/PublicClientApplication.mjs +1 -1
  27. package/dist/custom-auth-path/broker/nativeBroker/NativeStatusCodes.mjs +1 -1
  28. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.mjs +1 -1
  29. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.mjs +1 -1
  30. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.mjs +1 -1
  31. package/dist/custom-auth-path/cache/AccountManager.mjs +1 -1
  32. package/dist/custom-auth-path/cache/AsyncMemoryStorage.mjs +1 -1
  33. package/dist/custom-auth-path/cache/BrowserCacheManager.mjs +1 -1
  34. package/dist/custom-auth-path/cache/CacheHelpers.mjs +1 -1
  35. package/dist/custom-auth-path/cache/CacheKeys.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/EncryptedData.mjs +1 -1
  39. package/dist/custom-auth-path/cache/LocalStorage.mjs +1 -1
  40. package/dist/custom-auth-path/cache/MemoryStorage.mjs +1 -1
  41. package/dist/custom-auth-path/cache/SessionStorage.mjs +1 -1
  42. package/dist/custom-auth-path/config/Configuration.mjs +1 -1
  43. package/dist/custom-auth-path/controllers/StandardController.mjs +1 -1
  44. package/dist/custom-auth-path/crypto/BrowserCrypto.mjs +1 -1
  45. package/dist/custom-auth-path/crypto/CryptoOps.mjs +1 -1
  46. package/dist/custom-auth-path/crypto/PkceGenerator.mjs +1 -1
  47. package/dist/custom-auth-path/custom_auth/CustomAuthConstants.d.ts +1 -1
  48. package/dist/custom-auth-path/custom_auth/CustomAuthConstants.mjs +1 -1
  49. package/dist/custom-auth-path/custom_auth/CustomAuthPublicClientApplication.mjs +1 -1
  50. package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.mjs +1 -1
  51. package/dist/custom-auth-path/custom_auth/core/CustomAuthAuthority.mjs +1 -1
  52. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs +1 -1
  53. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowResultBase.mjs +1 -1
  54. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowState.mjs +1 -1
  55. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowStateTypes.mjs +1 -1
  56. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.mjs +1 -1
  57. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.mjs +1 -1
  58. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.mjs +1 -1
  59. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.mjs +1 -1
  60. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.mjs +1 -1
  61. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.mjs +1 -1
  62. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/error_type/MfaError.mjs +1 -1
  63. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.mjs +1 -1
  64. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.mjs +1 -1
  65. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.mjs +1 -1
  66. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaFailedState.mjs +1 -1
  67. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaState.mjs +1 -1
  68. package/dist/custom-auth-path/custom_auth/core/error/CustomAuthApiError.mjs +1 -1
  69. package/dist/custom-auth-path/custom_auth/core/error/CustomAuthError.mjs +1 -1
  70. package/dist/custom-auth-path/custom_auth/core/error/HttpError.mjs +1 -1
  71. package/dist/custom-auth-path/custom_auth/core/error/HttpErrorCodes.mjs +1 -1
  72. package/dist/custom-auth-path/custom_auth/core/error/InvalidArgumentError.mjs +1 -1
  73. package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationError.mjs +1 -1
  74. package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationErrorCodes.mjs +1 -1
  75. package/dist/custom-auth-path/custom_auth/core/error/MethodNotImplementedError.mjs +1 -1
  76. package/dist/custom-auth-path/custom_auth/core/error/MsalCustomAuthError.mjs +1 -1
  77. package/dist/custom-auth-path/custom_auth/core/error/NoCachedAccountFoundError.mjs +1 -1
  78. package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlError.mjs +1 -1
  79. package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlErrorCodes.mjs +1 -1
  80. package/dist/custom-auth-path/custom_auth/core/error/UnexpectedError.mjs +1 -1
  81. package/dist/custom-auth-path/custom_auth/core/error/UnsupportedEnvironmentError.mjs +1 -1
  82. package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeError.mjs +1 -1
  83. package/dist/custom-auth-path/custom_auth/core/error/UserAlreadySignedInError.mjs +1 -1
  84. package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.mjs +1 -1
  85. package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.mjs +1 -1
  86. package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/JitClient.mjs +1 -1
  87. package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/result/JitActionResult.mjs +1 -1
  88. package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/MfaClient.mjs +1 -1
  89. package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/result/MfaActionResult.mjs +1 -1
  90. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs +1 -1
  91. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs +1 -1
  92. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.mjs +1 -1
  93. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.mjs +1 -1
  94. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs +1 -1
  95. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs +1 -1
  96. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs +1 -1
  97. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.mjs +1 -1
  98. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.mjs +1 -1
  99. package/dist/custom-auth-path/custom_auth/core/network_client/http_client/FetchHttpClient.mjs +1 -1
  100. package/dist/custom-auth-path/custom_auth/core/network_client/http_client/IHttpClient.mjs +1 -1
  101. package/dist/custom-auth-path/custom_auth/core/telemetry/PublicApiId.mjs +1 -1
  102. package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.mjs +1 -1
  103. package/dist/custom-auth-path/custom_auth/core/utils/UrlUtils.mjs +1 -1
  104. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs +1 -1
  105. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/error_type/GetAccountError.mjs +1 -1
  106. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.mjs +1 -1
  107. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccountResult.mjs +1 -1
  108. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/SignOutResult.mjs +1 -1
  109. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccessTokenState.mjs +1 -1
  110. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccountState.mjs +1 -1
  111. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/SignOutState.mjs +1 -1
  112. package/dist/custom-auth-path/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.mjs +1 -1
  113. package/dist/custom-auth-path/custom_auth/index.mjs +1 -1
  114. package/dist/custom-auth-path/custom_auth/operating_context/CustomAuthOperatingContext.mjs +1 -1
  115. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.mjs +1 -1
  116. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.mjs +1 -1
  117. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.mjs +1 -1
  118. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.mjs +1 -1
  119. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.mjs +1 -1
  120. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.mjs +1 -1
  121. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.mjs +1 -1
  122. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.mjs +1 -1
  123. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.mjs +1 -1
  124. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordState.mjs +1 -1
  125. package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/ResetPasswordClient.mjs +1 -1
  126. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/SignInScenario.mjs +1 -1
  127. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs +1 -1
  128. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.mjs +1 -1
  129. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResult.mjs +1 -1
  130. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.mjs +1 -1
  131. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.mjs +1 -1
  132. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs +1 -1
  133. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCompletedState.mjs +1 -1
  134. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs +1 -1
  135. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInFailedState.mjs +1 -1
  136. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs +1 -1
  137. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInState.mjs +1 -1
  138. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.mjs +1 -1
  139. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/result/SignInActionResult.mjs +1 -1
  140. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/error_type/SignUpError.mjs +1 -1
  141. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.mjs +1 -1
  142. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResult.mjs +1 -1
  143. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.mjs +1 -1
  144. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.mjs +1 -1
  145. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.mjs +1 -1
  146. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.mjs +1 -1
  147. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.mjs +1 -1
  148. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.mjs +1 -1
  149. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpFailedState.mjs +1 -1
  150. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.mjs +1 -1
  151. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpState.mjs +1 -1
  152. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/SignUpClient.mjs +1 -1
  153. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/result/SignUpActionResult.mjs +1 -1
  154. package/dist/custom-auth-path/encode/Base64Decode.mjs +1 -1
  155. package/dist/custom-auth-path/encode/Base64Encode.mjs +1 -1
  156. package/dist/custom-auth-path/error/BrowserAuthError.mjs +1 -1
  157. package/dist/custom-auth-path/error/BrowserAuthErrorCodes.mjs +1 -1
  158. package/dist/custom-auth-path/error/BrowserConfigurationAuthError.mjs +1 -1
  159. package/dist/custom-auth-path/error/BrowserConfigurationAuthErrorCodes.mjs +1 -1
  160. package/dist/custom-auth-path/error/NativeAuthError.mjs +1 -1
  161. package/dist/custom-auth-path/error/NativeAuthErrorCodes.mjs +1 -1
  162. package/dist/custom-auth-path/event/EventHandler.mjs +1 -1
  163. package/dist/custom-auth-path/event/EventType.mjs +1 -1
  164. package/dist/custom-auth-path/interaction_client/BaseInteractionClient.mjs +1 -1
  165. package/dist/custom-auth-path/interaction_client/HybridSpaAuthorizationCodeClient.mjs +1 -1
  166. package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.mjs +1 -1
  167. package/dist/custom-auth-path/interaction_client/PopupClient.mjs +1 -1
  168. package/dist/custom-auth-path/interaction_client/RedirectClient.mjs +1 -1
  169. package/dist/custom-auth-path/interaction_client/SilentAuthCodeClient.mjs +1 -1
  170. package/dist/custom-auth-path/interaction_client/SilentCacheClient.mjs +1 -1
  171. package/dist/custom-auth-path/interaction_client/SilentIframeClient.mjs +1 -1
  172. package/dist/custom-auth-path/interaction_client/SilentRefreshClient.mjs +1 -1
  173. package/dist/custom-auth-path/interaction_client/StandardInteractionClient.mjs +1 -1
  174. package/dist/custom-auth-path/interaction_handler/InteractionHandler.mjs +1 -1
  175. package/dist/custom-auth-path/interaction_handler/SilentHandler.mjs +1 -1
  176. package/dist/custom-auth-path/log-strings-mapping.json +2 -2
  177. package/dist/custom-auth-path/navigation/NavigationClient.mjs +1 -1
  178. package/dist/custom-auth-path/network/FetchClient.mjs +1 -1
  179. package/dist/custom-auth-path/operatingcontext/BaseOperatingContext.mjs +1 -1
  180. package/dist/custom-auth-path/operatingcontext/StandardOperatingContext.mjs +1 -1
  181. package/dist/custom-auth-path/packageMetadata.d.ts +1 -1
  182. package/dist/custom-auth-path/packageMetadata.mjs +2 -2
  183. package/dist/custom-auth-path/protocol/Authorize.mjs +1 -1
  184. package/dist/custom-auth-path/request/RequestHelpers.mjs +1 -1
  185. package/dist/custom-auth-path/response/ResponseHandler.mjs +1 -1
  186. package/dist/custom-auth-path/telemetry/BrowserPerformanceEvents.mjs +1 -1
  187. package/dist/custom-auth-path/telemetry/BrowserRootPerformanceEvents.mjs +1 -1
  188. package/dist/custom-auth-path/utils/BrowserConstants.mjs +1 -1
  189. package/dist/custom-auth-path/utils/BrowserProtocolUtils.mjs +1 -1
  190. package/dist/custom-auth-path/utils/BrowserUtils.mjs +1 -1
  191. package/dist/custom-auth-path/utils/Helpers.mjs +1 -1
  192. package/dist/custom-auth-path/utils/MsalFrameStatsUtils.mjs +1 -1
  193. package/dist/custom_auth/CustomAuthConstants.d.ts +1 -1
  194. package/dist/encode/Base64Decode.mjs +1 -1
  195. package/dist/encode/Base64Encode.mjs +1 -1
  196. package/dist/error/BrowserAuthError.mjs +1 -1
  197. package/dist/error/BrowserAuthErrorCodes.mjs +1 -1
  198. package/dist/error/BrowserConfigurationAuthError.mjs +1 -1
  199. package/dist/error/BrowserConfigurationAuthErrorCodes.mjs +1 -1
  200. package/dist/error/NativeAuthError.mjs +1 -1
  201. package/dist/error/NativeAuthErrorCodes.mjs +1 -1
  202. package/dist/error/NestedAppAuthError.mjs +1 -1
  203. package/dist/event/EventHandler.mjs +1 -1
  204. package/dist/event/EventMessage.mjs +1 -1
  205. package/dist/event/EventType.mjs +1 -1
  206. package/dist/index.mjs +1 -1
  207. package/dist/interaction_client/BaseInteractionClient.mjs +1 -1
  208. package/dist/interaction_client/HybridSpaAuthorizationCodeClient.mjs +1 -1
  209. package/dist/interaction_client/PlatformAuthInteractionClient.mjs +1 -1
  210. package/dist/interaction_client/PopupClient.mjs +1 -1
  211. package/dist/interaction_client/RedirectClient.mjs +1 -1
  212. package/dist/interaction_client/SilentAuthCodeClient.mjs +1 -1
  213. package/dist/interaction_client/SilentCacheClient.mjs +1 -1
  214. package/dist/interaction_client/SilentIframeClient.mjs +1 -1
  215. package/dist/interaction_client/SilentRefreshClient.mjs +1 -1
  216. package/dist/interaction_client/StandardInteractionClient.mjs +1 -1
  217. package/dist/interaction_handler/InteractionHandler.mjs +1 -1
  218. package/dist/interaction_handler/SilentHandler.mjs +1 -1
  219. package/dist/log-strings-mapping.json +2 -2
  220. package/dist/naa/BridgeError.mjs +1 -1
  221. package/dist/naa/BridgeProxy.mjs +1 -1
  222. package/dist/naa/BridgeStatusCode.mjs +1 -1
  223. package/dist/naa/mapping/NestedAppAuthAdapter.mjs +1 -1
  224. package/dist/navigation/NavigationClient.mjs +1 -1
  225. package/dist/network/FetchClient.mjs +1 -1
  226. package/dist/operatingcontext/BaseOperatingContext.mjs +1 -1
  227. package/dist/operatingcontext/NestedAppOperatingContext.mjs +1 -1
  228. package/dist/operatingcontext/StandardOperatingContext.mjs +1 -1
  229. package/dist/packageMetadata.d.ts +1 -1
  230. package/dist/packageMetadata.mjs +2 -2
  231. package/dist/protocol/Authorize.mjs +1 -1
  232. package/dist/redirect-bridge/cache/CacheKeys.mjs +1 -1
  233. package/dist/redirect-bridge/config/Configuration.mjs +1 -1
  234. package/dist/redirect-bridge/custom_auth/CustomAuthConstants.d.ts +1 -1
  235. package/dist/redirect-bridge/encode/Base64Decode.mjs +1 -1
  236. package/dist/redirect-bridge/error/BrowserAuthError.mjs +1 -1
  237. package/dist/redirect-bridge/error/BrowserAuthErrorCodes.mjs +1 -1
  238. package/dist/redirect-bridge/navigation/NavigationClient.mjs +1 -1
  239. package/dist/redirect-bridge/packageMetadata.d.ts +1 -1
  240. package/dist/redirect-bridge/redirect_bridge/index.mjs +1 -1
  241. package/dist/redirect-bridge/utils/BrowserConstants.mjs +1 -1
  242. package/dist/redirect-bridge/utils/BrowserUtils.mjs +1 -1
  243. package/dist/request/RequestHelpers.mjs +1 -1
  244. package/dist/response/ResponseHandler.mjs +1 -1
  245. package/dist/telemetry/BrowserPerformanceClient.mjs +1 -1
  246. package/dist/telemetry/BrowserPerformanceEvents.mjs +1 -1
  247. package/dist/telemetry/BrowserPerformanceMeasurement.mjs +1 -1
  248. package/dist/telemetry/BrowserRootPerformanceEvents.mjs +1 -1
  249. package/dist/utils/BrowserConstants.mjs +1 -1
  250. package/dist/utils/BrowserProtocolUtils.mjs +1 -1
  251. package/dist/utils/BrowserUtils.mjs +1 -1
  252. package/dist/utils/Helpers.mjs +1 -1
  253. package/dist/utils/MsalFrameStatsUtils.mjs +1 -1
  254. package/lib/custom-auth-path/log-strings-mapping.json +2 -2
  255. package/lib/custom-auth-path/msal-custom-auth.cjs +66 -66
  256. package/lib/custom-auth-path/msal-custom-auth.cjs.map +1 -1
  257. package/lib/custom-auth-path/types/custom_auth/CustomAuthConstants.d.ts +1 -1
  258. package/lib/custom-auth-path/types/packageMetadata.d.ts +1 -1
  259. package/lib/log-strings-mapping.json +2 -2
  260. package/lib/msal-browser.cjs +68 -68
  261. package/lib/msal-browser.cjs.map +1 -1
  262. package/lib/msal-browser.js +68 -68
  263. package/lib/msal-browser.js.map +1 -1
  264. package/lib/msal-browser.min.js +2 -2
  265. package/lib/redirect-bridge/msal-redirect-bridge.js +10 -10
  266. package/lib/redirect-bridge/msal-redirect-bridge.js.map +1 -1
  267. package/lib/redirect-bridge/msal-redirect-bridge.min.js +1 -1
  268. package/lib/types/custom_auth/CustomAuthConstants.d.ts +1 -1
  269. package/lib/types/packageMetadata.d.ts +1 -1
  270. package/package.json +2 -2
  271. package/src/packageMetadata.ts +1 -1
@@ -19,7 +19,7 @@ export declare const HttpHeaderKeys: {
19
19
  };
20
20
  export declare const DefaultPackageInfo: {
21
21
  readonly SKU: "msal.browser";
22
- readonly VERSION: "5.0.1";
22
+ readonly VERSION: "5.0.2";
23
23
  readonly OS: "";
24
24
  readonly CPU: "";
25
25
  };
@@ -1,3 +1,3 @@
1
1
  export declare const name = "@azure/msal-browser";
2
- export declare const version = "5.0.1";
2
+ export declare const version = "5.0.2";
3
3
  //# sourceMappingURL=packageMetadata.d.ts.map
@@ -1,6 +1,6 @@
1
1
  {
2
- "timestamp": "2026-01-16T20:38:28.451Z",
3
- "packageVersion": "5.0.1",
2
+ "timestamp": "2026-01-17T03:15:20.638Z",
3
+ "packageVersion": "5.0.2",
4
4
  "totalStrings": 282,
5
5
  "mappings": {
6
6
  "1rf6em": {
@@ -1,8 +1,8 @@
1
- /*! @azure/msal-browser v5.0.1 2026-01-16 */
1
+ /*! @azure/msal-browser v5.0.2 2026-01-17 */
2
2
  'use strict';
3
3
  'use strict';
4
4
 
5
- /*! @azure/msal-common v16.0.1 2026-01-16 */
5
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
6
6
  /*
7
7
  * Copyright (c) Microsoft Corporation. All rights reserved.
8
8
  * Licensed under the MIT License.
@@ -234,7 +234,7 @@ const JsonWebTokenTypes$1 = {
234
234
  // Token renewal offset default in seconds
235
235
  const DEFAULT_TOKEN_RENEWAL_OFFSET_SEC = 300;
236
236
 
237
- /*! @azure/msal-common v16.0.1 2026-01-16 */
237
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
238
238
  /*
239
239
  * Copyright (c) Microsoft Corporation. All rights reserved.
240
240
  * Licensed under the MIT License.
@@ -284,7 +284,7 @@ const INSTANCE_AWARE = "instance_aware";
284
284
  const EAR_JWK = "ear_jwk";
285
285
  const EAR_JWE_CRYPTO = "ear_jwe_crypto";
286
286
 
287
- /*! @azure/msal-common v16.0.1 2026-01-16 */
287
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
288
288
  /*
289
289
  * Copyright (c) Microsoft Corporation. All rights reserved.
290
290
  * Licensed under the MIT License.
@@ -315,7 +315,7 @@ function createAuthError(code, additionalMessage) {
315
315
  return new AuthError(code, additionalMessage || getDefaultErrorMessage$1(code));
316
316
  }
317
317
 
318
- /*! @azure/msal-common v16.0.1 2026-01-16 */
318
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
319
319
 
320
320
  /*
321
321
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -335,7 +335,7 @@ function createClientConfigurationError(errorCode) {
335
335
  return new ClientConfigurationError(errorCode);
336
336
  }
337
337
 
338
- /*! @azure/msal-common v16.0.1 2026-01-16 */
338
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
339
339
  /*
340
340
  * Copyright (c) Microsoft Corporation. All rights reserved.
341
341
  * Licensed under the MIT License.
@@ -432,7 +432,7 @@ class StringUtils {
432
432
  }
433
433
  }
434
434
 
435
- /*! @azure/msal-common v16.0.1 2026-01-16 */
435
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
436
436
 
437
437
  /*
438
438
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -455,7 +455,7 @@ function createClientAuthError(errorCode, additionalMessage) {
455
455
  return new ClientAuthError(errorCode, additionalMessage);
456
456
  }
457
457
 
458
- /*! @azure/msal-common v16.0.1 2026-01-16 */
458
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
459
459
  /*
460
460
  * Copyright (c) Microsoft Corporation. All rights reserved.
461
461
  * Licensed under the MIT License.
@@ -509,7 +509,7 @@ var ClientConfigurationErrorCodes = /*#__PURE__*/Object.freeze({
509
509
  urlParseError: urlParseError
510
510
  });
511
511
 
512
- /*! @azure/msal-common v16.0.1 2026-01-16 */
512
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
513
513
  /*
514
514
  * Copyright (c) Microsoft Corporation. All rights reserved.
515
515
  * Licensed under the MIT License.
@@ -593,7 +593,7 @@ var ClientAuthErrorCodes = /*#__PURE__*/Object.freeze({
593
593
  userCanceled: userCanceled
594
594
  });
595
595
 
596
- /*! @azure/msal-common v16.0.1 2026-01-16 */
596
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
597
597
 
598
598
  /*
599
599
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -788,7 +788,7 @@ class ScopeSet {
788
788
  }
789
789
  }
790
790
 
791
- /*! @azure/msal-common v16.0.1 2026-01-16 */
791
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
792
792
 
793
793
  /*
794
794
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1155,7 +1155,7 @@ function addEARParameters(parameters, jwk) {
1155
1155
  parameters.set(EAR_JWE_CRYPTO, jweCryptoB64Encoded);
1156
1156
  }
1157
1157
 
1158
- /*! @azure/msal-common v16.0.1 2026-01-16 */
1158
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
1159
1159
 
1160
1160
  /*
1161
1161
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1264,7 +1264,7 @@ function normalizeUrlForComparison(url) {
1264
1264
  }
1265
1265
  }
1266
1266
 
1267
- /*! @azure/msal-common v16.0.1 2026-01-16 */
1267
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
1268
1268
 
1269
1269
  /*
1270
1270
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1303,7 +1303,7 @@ const DEFAULT_CRYPTO_IMPLEMENTATION = {
1303
1303
  },
1304
1304
  };
1305
1305
 
1306
- /*! @azure/msal-common v16.0.1 2026-01-16 */
1306
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
1307
1307
  /*
1308
1308
  * Copyright (c) Microsoft Corporation. All rights reserved.
1309
1309
  * Licensed under the MIT License.
@@ -1578,12 +1578,12 @@ class Logger {
1578
1578
  }
1579
1579
  }
1580
1580
 
1581
- /*! @azure/msal-common v16.0.1 2026-01-16 */
1581
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
1582
1582
  /* eslint-disable header/header */
1583
1583
  const name$1 = "@azure/msal-common";
1584
- const version$1 = "16.0.1";
1584
+ const version$1 = "16.0.2";
1585
1585
 
1586
- /*! @azure/msal-common v16.0.1 2026-01-16 */
1586
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
1587
1587
  /*
1588
1588
  * Copyright (c) Microsoft Corporation. All rights reserved.
1589
1589
  * Licensed under the MIT License.
@@ -1603,7 +1603,7 @@ const AzureCloudInstance = {
1603
1603
  AzureUsGovernment: "https://login.microsoftonline.us",
1604
1604
  };
1605
1605
 
1606
- /*! @azure/msal-common v16.0.1 2026-01-16 */
1606
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
1607
1607
  /*
1608
1608
  * Copyright (c) Microsoft Corporation. All rights reserved.
1609
1609
  * Licensed under the MIT License.
@@ -1685,7 +1685,7 @@ function updateAccountTenantProfileData(baseAccountInfo, tenantProfile, idTokenC
1685
1685
  return updatedAccountInfo;
1686
1686
  }
1687
1687
 
1688
- /*! @azure/msal-common v16.0.1 2026-01-16 */
1688
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
1689
1689
 
1690
1690
  /*
1691
1691
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1765,7 +1765,7 @@ function checkMaxAge(authTime, maxAge) {
1765
1765
  }
1766
1766
  }
1767
1767
 
1768
- /*! @azure/msal-common v16.0.1 2026-01-16 */
1768
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
1769
1769
 
1770
1770
  /*
1771
1771
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1922,7 +1922,7 @@ class UrlString {
1922
1922
  }
1923
1923
  }
1924
1924
 
1925
- /*! @azure/msal-common v16.0.1 2026-01-16 */
1925
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
1926
1926
 
1927
1927
  /*
1928
1928
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2064,7 +2064,7 @@ function getCloudDiscoveryMetadataFromNetworkResponse(response, authorityHost) {
2064
2064
  return null;
2065
2065
  }
2066
2066
 
2067
- /*! @azure/msal-common v16.0.1 2026-01-16 */
2067
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
2068
2068
  /*
2069
2069
  * Copyright (c) Microsoft Corporation. All rights reserved.
2070
2070
  * Licensed under the MIT License.
@@ -2072,7 +2072,7 @@ function getCloudDiscoveryMetadataFromNetworkResponse(response, authorityHost) {
2072
2072
  const cacheQuotaExceeded = "cache_quota_exceeded";
2073
2073
  const cacheErrorUnknown = "cache_error_unknown";
2074
2074
 
2075
- /*! @azure/msal-common v16.0.1 2026-01-16 */
2075
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
2076
2076
 
2077
2077
  /*
2078
2078
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2110,7 +2110,7 @@ function createCacheError(e) {
2110
2110
  }
2111
2111
  }
2112
2112
 
2113
- /*! @azure/msal-common v16.0.1 2026-01-16 */
2113
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
2114
2114
 
2115
2115
  /*
2116
2116
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2148,7 +2148,7 @@ function buildClientInfoFromHomeAccountId(homeAccountId) {
2148
2148
  };
2149
2149
  }
2150
2150
 
2151
- /*! @azure/msal-common v16.0.1 2026-01-16 */
2151
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
2152
2152
  /*
2153
2153
  * Copyright (c) Microsoft Corporation. All rights reserved.
2154
2154
  * Licensed under the MIT License.
@@ -2163,7 +2163,7 @@ const AuthorityType = {
2163
2163
  Ciam: 3,
2164
2164
  };
2165
2165
 
2166
- /*! @azure/msal-common v16.0.1 2026-01-16 */
2166
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
2167
2167
  /*
2168
2168
  * Copyright (c) Microsoft Corporation. All rights reserved.
2169
2169
  * Licensed under the MIT License.
@@ -2185,7 +2185,7 @@ function getTenantIdFromIdTokenClaims(idTokenClaims) {
2185
2185
  return null;
2186
2186
  }
2187
2187
 
2188
- /*! @azure/msal-common v16.0.1 2026-01-16 */
2188
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
2189
2189
  /*
2190
2190
  * Copyright (c) Microsoft Corporation. All rights reserved.
2191
2191
  * Licensed under the MIT License.
@@ -2209,7 +2209,7 @@ const ProtocolMode = {
2209
2209
  EAR: "EAR",
2210
2210
  };
2211
2211
 
2212
- /*! @azure/msal-common v16.0.1 2026-01-16 */
2212
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
2213
2213
  /**
2214
2214
  * Returns the AccountInfo interface for this account.
2215
2215
  */
@@ -2369,7 +2369,7 @@ function isAccountEntity(entity) {
2369
2369
  entity.hasOwnProperty("authorityType"));
2370
2370
  }
2371
2371
 
2372
- /*! @azure/msal-common v16.0.1 2026-01-16 */
2372
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
2373
2373
 
2374
2374
  /*
2375
2375
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3466,7 +3466,7 @@ class DefaultStorageClass extends CacheManager {
3466
3466
  }
3467
3467
  }
3468
3468
 
3469
- /*! @azure/msal-common v16.0.1 2026-01-16 */
3469
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
3470
3470
  /*
3471
3471
  * Copyright (c) Microsoft Corporation. All rights reserved.
3472
3472
  * Licensed under the MIT License.
@@ -3507,7 +3507,7 @@ const IntFields = new Set([
3507
3507
  "upgradedCacheCount",
3508
3508
  ]);
3509
3509
 
3510
- /*! @azure/msal-common v16.0.1 2026-01-16 */
3510
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
3511
3511
 
3512
3512
  /*
3513
3513
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3562,7 +3562,7 @@ class StubPerformanceClient {
3562
3562
  }
3563
3563
  }
3564
3564
 
3565
- /*! @azure/msal-common v16.0.1 2026-01-16 */
3565
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
3566
3566
 
3567
3567
  /*
3568
3568
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3656,7 +3656,7 @@ function isOidcProtocolMode(config) {
3656
3656
  return (config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC);
3657
3657
  }
3658
3658
 
3659
- /*! @azure/msal-common v16.0.1 2026-01-16 */
3659
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
3660
3660
 
3661
3661
  /*
3662
3662
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3675,7 +3675,7 @@ class ServerError extends AuthError {
3675
3675
  }
3676
3676
  }
3677
3677
 
3678
- /*! @azure/msal-common v16.0.1 2026-01-16 */
3678
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
3679
3679
  /*
3680
3680
  * Copyright (c) Microsoft Corporation. All rights reserved.
3681
3681
  * Licensed under the MIT License.
@@ -3703,7 +3703,7 @@ var InteractionRequiredAuthErrorCodes = /*#__PURE__*/Object.freeze({
3703
3703
  uxNotAllowed: uxNotAllowed
3704
3704
  });
3705
3705
 
3706
- /*! @azure/msal-common v16.0.1 2026-01-16 */
3706
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
3707
3707
 
3708
3708
  /*
3709
3709
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3769,7 +3769,7 @@ function createInteractionRequiredAuthError(errorCode, errorMessage) {
3769
3769
  return new InteractionRequiredAuthError(errorCode, errorMessage);
3770
3770
  }
3771
3771
 
3772
- /*! @azure/msal-common v16.0.1 2026-01-16 */
3772
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
3773
3773
 
3774
3774
  /*
3775
3775
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3837,7 +3837,7 @@ function parseRequestState(base64Decode, state) {
3837
3837
  }
3838
3838
  }
3839
3839
 
3840
- /*! @azure/msal-common v16.0.1 2026-01-16 */
3840
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
3841
3841
  /*
3842
3842
  * Copyright (c) Microsoft Corporation. All rights reserved.
3843
3843
  * Licensed under the MIT License.
@@ -3902,7 +3902,7 @@ function wasClockTurnedBack(cachedAt) {
3902
3902
  return cachedAtSec > nowSeconds();
3903
3903
  }
3904
3904
 
3905
- /*! @azure/msal-common v16.0.1 2026-01-16 */
3905
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
3906
3906
  /*
3907
3907
  * Copyright (c) Microsoft Corporation. All rights reserved.
3908
3908
  * Licensed under the MIT License.
@@ -3973,7 +3973,7 @@ const RegionDiscoveryGetCurrentVersion = "regionDiscoveryGetCurrentVersion";
3973
3973
  const CacheManagerGetRefreshToken = "cacheManagerGetRefreshToken";
3974
3974
  const SetUserData = "setUserData";
3975
3975
 
3976
- /*! @azure/msal-common v16.0.1 2026-01-16 */
3976
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
3977
3977
  /*
3978
3978
  * Copyright (c) Microsoft Corporation. All rights reserved.
3979
3979
  * Licensed under the MIT License.
@@ -4068,7 +4068,7 @@ const invokeAsync = (callback, eventName, logger, telemetryClient, correlationId
4068
4068
  };
4069
4069
  };
4070
4070
 
4071
- /*! @azure/msal-common v16.0.1 2026-01-16 */
4071
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
4072
4072
 
4073
4073
  /*
4074
4074
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4148,7 +4148,7 @@ class PopTokenGenerator {
4148
4148
  }
4149
4149
  }
4150
4150
 
4151
- /*! @azure/msal-common v16.0.1 2026-01-16 */
4151
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
4152
4152
  /*
4153
4153
  * Copyright (c) Microsoft Corporation. All rights reserved.
4154
4154
  * Licensed under the MIT License.
@@ -4175,7 +4175,7 @@ class PopTokenGenerator {
4175
4175
  }
4176
4176
  }
4177
4177
 
4178
- /*! @azure/msal-common v16.0.1 2026-01-16 */
4178
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
4179
4179
 
4180
4180
  /*
4181
4181
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4434,7 +4434,7 @@ function isAuthorityMetadataExpired(metadata) {
4434
4434
  return metadata.expiresAt <= nowSeconds();
4435
4435
  }
4436
4436
 
4437
- /*! @azure/msal-common v16.0.1 2026-01-16 */
4437
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
4438
4438
 
4439
4439
  /*
4440
4440
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4765,7 +4765,7 @@ function buildAccountToCache(cacheStorage, authority, homeAccountId, base64Decod
4765
4765
  return baseAccount;
4766
4766
  }
4767
4767
 
4768
- /*! @azure/msal-common v16.0.1 2026-01-16 */
4768
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
4769
4769
  /*
4770
4770
  * Copyright (c) Microsoft Corporation. All rights reserved.
4771
4771
  * Licensed under the MIT License.
@@ -4775,7 +4775,7 @@ const CcsCredentialType = {
4775
4775
  UPN: "UPN",
4776
4776
  };
4777
4777
 
4778
- /*! @azure/msal-common v16.0.1 2026-01-16 */
4778
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
4779
4779
  /*
4780
4780
  * Copyright (c) Microsoft Corporation. All rights reserved.
4781
4781
  * Licensed under the MIT License.
@@ -4793,7 +4793,7 @@ async function getClientAssertion(clientAssertion, clientId, tokenEndpoint) {
4793
4793
  }
4794
4794
  }
4795
4795
 
4796
- /*! @azure/msal-common v16.0.1 2026-01-16 */
4796
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
4797
4797
  /*
4798
4798
  * Copyright (c) Microsoft Corporation. All rights reserved.
4799
4799
  * Licensed under the MIT License.
@@ -4814,7 +4814,7 @@ function getRequestThumbprint(clientId, request, homeAccountId) {
4814
4814
  };
4815
4815
  }
4816
4816
 
4817
- /*! @azure/msal-common v16.0.1 2026-01-16 */
4817
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
4818
4818
 
4819
4819
  /*
4820
4820
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4900,7 +4900,7 @@ class ThrottlingUtils {
4900
4900
  }
4901
4901
  }
4902
4902
 
4903
- /*! @azure/msal-common v16.0.1 2026-01-16 */
4903
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
4904
4904
 
4905
4905
  /*
4906
4906
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4931,7 +4931,7 @@ function createNetworkError(error, httpStatus, responseHeaders, additionalError)
4931
4931
  return new NetworkError(error, httpStatus, responseHeaders);
4932
4932
  }
4933
4933
 
4934
- /*! @azure/msal-common v16.0.1 2026-01-16 */
4934
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
4935
4935
 
4936
4936
  /*
4937
4937
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5045,7 +5045,7 @@ async function sendPostRequest(thumbprint, tokenEndpoint, options, correlationId
5045
5045
  return response;
5046
5046
  }
5047
5047
 
5048
- /*! @azure/msal-common v16.0.1 2026-01-16 */
5048
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
5049
5049
  /*
5050
5050
  * Copyright (c) Microsoft Corporation. All rights reserved.
5051
5051
  * Licensed under the MIT License.
@@ -5057,7 +5057,7 @@ function isOpenIdConfigResponse(response) {
5057
5057
  response.hasOwnProperty("jwks_uri"));
5058
5058
  }
5059
5059
 
5060
- /*! @azure/msal-common v16.0.1 2026-01-16 */
5060
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
5061
5061
  /*
5062
5062
  * Copyright (c) Microsoft Corporation. All rights reserved.
5063
5063
  * Licensed under the MIT License.
@@ -5067,7 +5067,7 @@ function isCloudInstanceDiscoveryResponse(response) {
5067
5067
  response.hasOwnProperty("metadata"));
5068
5068
  }
5069
5069
 
5070
- /*! @azure/msal-common v16.0.1 2026-01-16 */
5070
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
5071
5071
  /*
5072
5072
  * Copyright (c) Microsoft Corporation. All rights reserved.
5073
5073
  * Licensed under the MIT License.
@@ -5077,7 +5077,7 @@ function isCloudInstanceDiscoveryErrorResponse(response) {
5077
5077
  response.hasOwnProperty("error_description"));
5078
5078
  }
5079
5079
 
5080
- /*! @azure/msal-common v16.0.1 2026-01-16 */
5080
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
5081
5081
 
5082
5082
  /*
5083
5083
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5182,7 +5182,7 @@ RegionDiscovery.IMDS_OPTIONS = {
5182
5182
  },
5183
5183
  };
5184
5184
 
5185
- /*! @azure/msal-common v16.0.1 2026-01-16 */
5185
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
5186
5186
 
5187
5187
  /*
5188
5188
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6002,7 +6002,7 @@ function buildStaticAuthorityOptions(authOptions) {
6002
6002
  };
6003
6003
  }
6004
6004
 
6005
- /*! @azure/msal-common v16.0.1 2026-01-16 */
6005
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
6006
6006
 
6007
6007
  /*
6008
6008
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6036,7 +6036,7 @@ async function createDiscoveredInstance(authorityUri, networkClient, cacheManage
6036
6036
  }
6037
6037
  }
6038
6038
 
6039
- /*! @azure/msal-common v16.0.1 2026-01-16 */
6039
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
6040
6040
 
6041
6041
  /*
6042
6042
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6296,7 +6296,7 @@ class AuthorizationCodeClient {
6296
6296
  }
6297
6297
  }
6298
6298
 
6299
- /*! @azure/msal-common v16.0.1 2026-01-16 */
6299
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
6300
6300
 
6301
6301
  /*
6302
6302
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6521,7 +6521,7 @@ class RefreshTokenClient {
6521
6521
  }
6522
6522
  }
6523
6523
 
6524
- /*! @azure/msal-common v16.0.1 2026-01-16 */
6524
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
6525
6525
 
6526
6526
  /*
6527
6527
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6630,7 +6630,7 @@ class SilentFlowClient {
6630
6630
  }
6631
6631
  }
6632
6632
 
6633
- /*! @azure/msal-common v16.0.1 2026-01-16 */
6633
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
6634
6634
 
6635
6635
  /*
6636
6636
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6645,7 +6645,7 @@ const StubbedNetworkModule = {
6645
6645
  },
6646
6646
  };
6647
6647
 
6648
- /*! @azure/msal-common v16.0.1 2026-01-16 */
6648
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
6649
6649
 
6650
6650
  /*
6651
6651
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6869,7 +6869,7 @@ function extractLoginHint(account) {
6869
6869
  return account.loginHint || account.idTokenClaims?.login_hint || null;
6870
6870
  }
6871
6871
 
6872
- /*! @azure/msal-common v16.0.1 2026-01-16 */
6872
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
6873
6873
 
6874
6874
  /*
6875
6875
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6927,7 +6927,7 @@ class AuthenticationHeaderParser {
6927
6927
  }
6928
6928
  }
6929
6929
 
6930
- /*! @azure/msal-common v16.0.1 2026-01-16 */
6930
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
6931
6931
  /*
6932
6932
  * Copyright (c) Microsoft Corporation. All rights reserved.
6933
6933
  * Licensed under the MIT License.
@@ -6944,7 +6944,7 @@ var AuthErrorCodes = /*#__PURE__*/Object.freeze({
6944
6944
  unexpectedError: unexpectedError
6945
6945
  });
6946
6946
 
6947
- /*! @azure/msal-common v16.0.1 2026-01-16 */
6947
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
6948
6948
 
6949
6949
  /*
6950
6950
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7205,7 +7205,7 @@ class ServerTelemetryManager {
7205
7205
  }
7206
7206
  }
7207
7207
 
7208
- /*! @azure/msal-common v16.0.1 2026-01-16 */
7208
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
7209
7209
 
7210
7210
  /*
7211
7211
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7226,7 +7226,7 @@ function createJoseHeaderError(code) {
7226
7226
  return new JoseHeaderError(code);
7227
7227
  }
7228
7228
 
7229
- /*! @azure/msal-common v16.0.1 2026-01-16 */
7229
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
7230
7230
  /*
7231
7231
  * Copyright (c) Microsoft Corporation. All rights reserved.
7232
7232
  * Licensed under the MIT License.
@@ -7234,7 +7234,7 @@ function createJoseHeaderError(code) {
7234
7234
  const missingKidError = "missing_kid_error";
7235
7235
  const missingAlgError = "missing_alg_error";
7236
7236
 
7237
- /*! @azure/msal-common v16.0.1 2026-01-16 */
7237
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
7238
7238
 
7239
7239
  /*
7240
7240
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7274,7 +7274,7 @@ class JoseHeader {
7274
7274
  }
7275
7275
  }
7276
7276
 
7277
- /*! @azure/msal-common v16.0.1 2026-01-16 */
7277
+ /*! @azure/msal-common v16.0.2 2026-01-17 */
7278
7278
 
7279
7279
  /*
7280
7280
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -10075,7 +10075,7 @@ const EventType = {
10075
10075
 
10076
10076
  /* eslint-disable header/header */
10077
10077
  const name = "@azure/msal-browser";
10078
- const version = "5.0.1";
10078
+ const version = "5.0.2";
10079
10079
 
10080
10080
  /*
10081
10081
  * Copyright (c) Microsoft Corporation. All rights reserved.