@azure/msal-browser 4.26.0 → 4.26.1

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 (258) hide show
  1. package/dist/app/IPublicClientApplication.mjs +1 -1
  2. package/dist/app/PublicClientApplication.mjs +1 -1
  3. package/dist/app/PublicClientNext.mjs +1 -1
  4. package/dist/broker/nativeBroker/NativeStatusCodes.mjs +1 -1
  5. package/dist/broker/nativeBroker/PlatformAuthDOMHandler.mjs +1 -1
  6. package/dist/broker/nativeBroker/PlatformAuthExtensionHandler.mjs +1 -1
  7. package/dist/broker/nativeBroker/PlatformAuthProvider.mjs +1 -1
  8. package/dist/cache/AccountManager.mjs +1 -1
  9. package/dist/cache/AsyncMemoryStorage.mjs +1 -1
  10. package/dist/cache/BrowserCacheManager.mjs +1 -1
  11. package/dist/cache/CacheHelpers.mjs +1 -1
  12. package/dist/cache/CacheKeys.mjs +1 -1
  13. package/dist/cache/CookieStorage.mjs +1 -1
  14. package/dist/cache/DatabaseStorage.mjs +1 -1
  15. package/dist/cache/EncryptedData.mjs +1 -1
  16. package/dist/cache/LocalStorage.mjs +1 -1
  17. package/dist/cache/MemoryStorage.mjs +1 -1
  18. package/dist/cache/SessionStorage.mjs +1 -1
  19. package/dist/cache/TokenCache.mjs +1 -1
  20. package/dist/config/Configuration.mjs +1 -1
  21. package/dist/controllers/ControllerFactory.mjs +1 -1
  22. package/dist/controllers/NestedAppAuthController.mjs +1 -1
  23. package/dist/controllers/StandardController.mjs +1 -1
  24. package/dist/controllers/UnknownOperatingContextController.mjs +1 -1
  25. package/dist/crypto/BrowserCrypto.mjs +1 -1
  26. package/dist/crypto/CryptoOps.mjs +1 -1
  27. package/dist/crypto/PkceGenerator.mjs +1 -1
  28. package/dist/crypto/SignedHttpRequest.mjs +1 -1
  29. package/dist/custom-auth-path/app/PublicClientApplication.mjs +1 -1
  30. package/dist/custom-auth-path/broker/nativeBroker/NativeStatusCodes.mjs +1 -1
  31. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.mjs +1 -1
  32. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.mjs +1 -1
  33. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.mjs +1 -1
  34. package/dist/custom-auth-path/cache/AccountManager.mjs +1 -1
  35. package/dist/custom-auth-path/cache/AsyncMemoryStorage.mjs +1 -1
  36. package/dist/custom-auth-path/cache/BrowserCacheManager.mjs +1 -1
  37. package/dist/custom-auth-path/cache/CacheHelpers.mjs +1 -1
  38. package/dist/custom-auth-path/cache/CacheKeys.mjs +1 -1
  39. package/dist/custom-auth-path/cache/CookieStorage.mjs +1 -1
  40. package/dist/custom-auth-path/cache/DatabaseStorage.mjs +1 -1
  41. package/dist/custom-auth-path/cache/EncryptedData.mjs +1 -1
  42. package/dist/custom-auth-path/cache/LocalStorage.mjs +1 -1
  43. package/dist/custom-auth-path/cache/MemoryStorage.mjs +1 -1
  44. package/dist/custom-auth-path/cache/SessionStorage.mjs +1 -1
  45. package/dist/custom-auth-path/cache/TokenCache.mjs +1 -1
  46. package/dist/custom-auth-path/config/Configuration.mjs +1 -1
  47. package/dist/custom-auth-path/controllers/ControllerFactory.mjs +1 -1
  48. package/dist/custom-auth-path/controllers/StandardController.mjs +1 -1
  49. package/dist/custom-auth-path/crypto/BrowserCrypto.mjs +1 -1
  50. package/dist/custom-auth-path/crypto/CryptoOps.mjs +1 -1
  51. package/dist/custom-auth-path/crypto/PkceGenerator.mjs +1 -1
  52. package/dist/custom-auth-path/custom_auth/CustomAuthConstants.d.ts +1 -1
  53. package/dist/custom-auth-path/custom_auth/CustomAuthConstants.mjs +1 -1
  54. package/dist/custom-auth-path/custom_auth/CustomAuthPublicClientApplication.mjs +1 -1
  55. package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.mjs +1 -1
  56. package/dist/custom-auth-path/custom_auth/core/CustomAuthAuthority.mjs +1 -1
  57. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs +1 -1
  58. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowResultBase.mjs +1 -1
  59. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowState.mjs +1 -1
  60. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowStateTypes.mjs +1 -1
  61. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.mjs +1 -1
  62. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.mjs +1 -1
  63. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.mjs +1 -1
  64. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.mjs +1 -1
  65. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.mjs +1 -1
  66. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.mjs +1 -1
  67. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/error_type/MfaError.mjs +1 -1
  68. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.mjs +1 -1
  69. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.mjs +1 -1
  70. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.mjs +1 -1
  71. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaFailedState.mjs +1 -1
  72. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaState.mjs +1 -1
  73. package/dist/custom-auth-path/custom_auth/core/error/CustomAuthApiError.mjs +1 -1
  74. package/dist/custom-auth-path/custom_auth/core/error/CustomAuthError.mjs +1 -1
  75. package/dist/custom-auth-path/custom_auth/core/error/HttpError.mjs +1 -1
  76. package/dist/custom-auth-path/custom_auth/core/error/HttpErrorCodes.mjs +1 -1
  77. package/dist/custom-auth-path/custom_auth/core/error/InvalidArgumentError.mjs +1 -1
  78. package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationError.mjs +1 -1
  79. package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationErrorCodes.mjs +1 -1
  80. package/dist/custom-auth-path/custom_auth/core/error/MethodNotImplementedError.mjs +1 -1
  81. package/dist/custom-auth-path/custom_auth/core/error/MsalCustomAuthError.mjs +1 -1
  82. package/dist/custom-auth-path/custom_auth/core/error/NoCachedAccountFoundError.mjs +1 -1
  83. package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlError.mjs +1 -1
  84. package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlErrorCodes.mjs +1 -1
  85. package/dist/custom-auth-path/custom_auth/core/error/UnexpectedError.mjs +1 -1
  86. package/dist/custom-auth-path/custom_auth/core/error/UnsupportedEnvironmentError.mjs +1 -1
  87. package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeError.mjs +1 -1
  88. package/dist/custom-auth-path/custom_auth/core/error/UserAlreadySignedInError.mjs +1 -1
  89. package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.mjs +1 -1
  90. package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.mjs +1 -1
  91. package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/JitClient.mjs +1 -1
  92. package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/result/JitActionResult.mjs +1 -1
  93. package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/MfaClient.mjs +1 -1
  94. package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/result/MfaActionResult.mjs +1 -1
  95. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs +1 -1
  96. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs +1 -1
  97. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.mjs +1 -1
  98. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.mjs +1 -1
  99. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs +1 -1
  100. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs +1 -1
  101. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs +1 -1
  102. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.mjs +1 -1
  103. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.mjs +1 -1
  104. package/dist/custom-auth-path/custom_auth/core/network_client/http_client/FetchHttpClient.mjs +1 -1
  105. package/dist/custom-auth-path/custom_auth/core/network_client/http_client/IHttpClient.mjs +1 -1
  106. package/dist/custom-auth-path/custom_auth/core/telemetry/PublicApiId.mjs +1 -1
  107. package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.mjs +1 -1
  108. package/dist/custom-auth-path/custom_auth/core/utils/UrlUtils.mjs +1 -1
  109. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs +1 -1
  110. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/error_type/GetAccountError.mjs +1 -1
  111. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.mjs +1 -1
  112. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccountResult.mjs +1 -1
  113. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/SignOutResult.mjs +1 -1
  114. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccessTokenState.mjs +1 -1
  115. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccountState.mjs +1 -1
  116. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/SignOutState.mjs +1 -1
  117. package/dist/custom-auth-path/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.mjs +1 -1
  118. package/dist/custom-auth-path/custom_auth/index.mjs +1 -1
  119. package/dist/custom-auth-path/custom_auth/operating_context/CustomAuthOperatingContext.mjs +1 -1
  120. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.mjs +1 -1
  121. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.mjs +1 -1
  122. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.mjs +1 -1
  123. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.mjs +1 -1
  124. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.mjs +1 -1
  125. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.mjs +1 -1
  126. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.mjs +1 -1
  127. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.mjs +1 -1
  128. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.mjs +1 -1
  129. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordState.mjs +1 -1
  130. package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/ResetPasswordClient.mjs +1 -1
  131. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/SignInScenario.mjs +1 -1
  132. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs +1 -1
  133. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.mjs +1 -1
  134. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResult.mjs +1 -1
  135. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.mjs +1 -1
  136. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.mjs +1 -1
  137. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs +1 -1
  138. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCompletedState.mjs +1 -1
  139. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs +1 -1
  140. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInFailedState.mjs +1 -1
  141. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs +1 -1
  142. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInState.mjs +1 -1
  143. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.mjs +1 -1
  144. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/result/SignInActionResult.mjs +1 -1
  145. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/error_type/SignUpError.mjs +1 -1
  146. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.mjs +1 -1
  147. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResult.mjs +1 -1
  148. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.mjs +1 -1
  149. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.mjs +1 -1
  150. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.mjs +1 -1
  151. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.mjs +1 -1
  152. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.mjs +1 -1
  153. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.mjs +1 -1
  154. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpFailedState.mjs +1 -1
  155. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.mjs +1 -1
  156. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpState.mjs +1 -1
  157. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/SignUpClient.mjs +1 -1
  158. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/result/SignUpActionResult.mjs +1 -1
  159. package/dist/custom-auth-path/encode/Base64Decode.mjs +1 -1
  160. package/dist/custom-auth-path/encode/Base64Encode.mjs +1 -1
  161. package/dist/custom-auth-path/error/BrowserAuthError.mjs +1 -1
  162. package/dist/custom-auth-path/error/BrowserAuthErrorCodes.mjs +1 -1
  163. package/dist/custom-auth-path/error/BrowserConfigurationAuthError.mjs +1 -1
  164. package/dist/custom-auth-path/error/BrowserConfigurationAuthErrorCodes.mjs +1 -1
  165. package/dist/custom-auth-path/error/NativeAuthError.mjs +1 -1
  166. package/dist/custom-auth-path/error/NativeAuthErrorCodes.mjs +1 -1
  167. package/dist/custom-auth-path/event/EventHandler.mjs +1 -1
  168. package/dist/custom-auth-path/event/EventType.mjs +1 -1
  169. package/dist/custom-auth-path/interaction_client/BaseInteractionClient.mjs +1 -1
  170. package/dist/custom-auth-path/interaction_client/HybridSpaAuthorizationCodeClient.mjs +1 -1
  171. package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.mjs +1 -1
  172. package/dist/custom-auth-path/interaction_client/PopupClient.mjs +1 -1
  173. package/dist/custom-auth-path/interaction_client/RedirectClient.mjs +1 -1
  174. package/dist/custom-auth-path/interaction_client/SilentAuthCodeClient.mjs +1 -1
  175. package/dist/custom-auth-path/interaction_client/SilentCacheClient.mjs +1 -1
  176. package/dist/custom-auth-path/interaction_client/SilentIframeClient.mjs +1 -1
  177. package/dist/custom-auth-path/interaction_client/SilentRefreshClient.mjs +1 -1
  178. package/dist/custom-auth-path/interaction_client/StandardInteractionClient.mjs +1 -1
  179. package/dist/custom-auth-path/interaction_handler/InteractionHandler.mjs +1 -1
  180. package/dist/custom-auth-path/interaction_handler/SilentHandler.mjs +2 -1
  181. package/dist/custom-auth-path/interaction_handler/SilentHandler.mjs.map +1 -1
  182. package/dist/custom-auth-path/navigation/NavigationClient.mjs +1 -1
  183. package/dist/custom-auth-path/network/FetchClient.mjs +1 -1
  184. package/dist/custom-auth-path/operatingcontext/BaseOperatingContext.mjs +1 -1
  185. package/dist/custom-auth-path/operatingcontext/StandardOperatingContext.mjs +1 -1
  186. package/dist/custom-auth-path/packageMetadata.d.ts +1 -1
  187. package/dist/custom-auth-path/packageMetadata.mjs +2 -2
  188. package/dist/custom-auth-path/protocol/Authorize.mjs +1 -1
  189. package/dist/custom-auth-path/request/RequestHelpers.mjs +1 -1
  190. package/dist/custom-auth-path/response/ResponseHandler.mjs +1 -1
  191. package/dist/custom-auth-path/utils/BrowserConstants.mjs +1 -1
  192. package/dist/custom-auth-path/utils/BrowserProtocolUtils.mjs +1 -1
  193. package/dist/custom-auth-path/utils/BrowserUtils.mjs +1 -1
  194. package/dist/custom-auth-path/utils/Helpers.mjs +1 -1
  195. package/dist/custom-auth-path/utils/MsalFrameStatsUtils.mjs +1 -1
  196. package/dist/custom_auth/CustomAuthConstants.d.ts +1 -1
  197. package/dist/encode/Base64Decode.mjs +1 -1
  198. package/dist/encode/Base64Encode.mjs +1 -1
  199. package/dist/error/BrowserAuthError.mjs +1 -1
  200. package/dist/error/BrowserAuthErrorCodes.mjs +1 -1
  201. package/dist/error/BrowserConfigurationAuthError.mjs +1 -1
  202. package/dist/error/BrowserConfigurationAuthErrorCodes.mjs +1 -1
  203. package/dist/error/NativeAuthError.mjs +1 -1
  204. package/dist/error/NativeAuthErrorCodes.mjs +1 -1
  205. package/dist/error/NestedAppAuthError.mjs +1 -1
  206. package/dist/event/EventHandler.mjs +1 -1
  207. package/dist/event/EventMessage.mjs +1 -1
  208. package/dist/event/EventType.mjs +1 -1
  209. package/dist/index.mjs +1 -1
  210. package/dist/interaction_client/BaseInteractionClient.mjs +1 -1
  211. package/dist/interaction_client/HybridSpaAuthorizationCodeClient.mjs +1 -1
  212. package/dist/interaction_client/PlatformAuthInteractionClient.mjs +1 -1
  213. package/dist/interaction_client/PopupClient.mjs +1 -1
  214. package/dist/interaction_client/RedirectClient.mjs +1 -1
  215. package/dist/interaction_client/SilentAuthCodeClient.mjs +1 -1
  216. package/dist/interaction_client/SilentCacheClient.mjs +1 -1
  217. package/dist/interaction_client/SilentIframeClient.mjs +1 -1
  218. package/dist/interaction_client/SilentRefreshClient.mjs +1 -1
  219. package/dist/interaction_client/StandardInteractionClient.mjs +1 -1
  220. package/dist/interaction_handler/InteractionHandler.mjs +1 -1
  221. package/dist/interaction_handler/SilentHandler.mjs +2 -1
  222. package/dist/interaction_handler/SilentHandler.mjs.map +1 -1
  223. package/dist/naa/BridgeError.mjs +1 -1
  224. package/dist/naa/BridgeProxy.mjs +1 -1
  225. package/dist/naa/BridgeStatusCode.mjs +1 -1
  226. package/dist/naa/mapping/NestedAppAuthAdapter.mjs +1 -1
  227. package/dist/navigation/NavigationClient.mjs +1 -1
  228. package/dist/network/FetchClient.mjs +1 -1
  229. package/dist/operatingcontext/BaseOperatingContext.mjs +1 -1
  230. package/dist/operatingcontext/NestedAppOperatingContext.mjs +1 -1
  231. package/dist/operatingcontext/StandardOperatingContext.mjs +1 -1
  232. package/dist/operatingcontext/UnknownOperatingContext.mjs +1 -1
  233. package/dist/packageMetadata.d.ts +1 -1
  234. package/dist/packageMetadata.mjs +2 -2
  235. package/dist/protocol/Authorize.mjs +1 -1
  236. package/dist/request/RequestHelpers.mjs +1 -1
  237. package/dist/response/ResponseHandler.mjs +1 -1
  238. package/dist/telemetry/BrowserPerformanceClient.mjs +1 -1
  239. package/dist/telemetry/BrowserPerformanceMeasurement.mjs +1 -1
  240. package/dist/utils/BrowserConstants.mjs +1 -1
  241. package/dist/utils/BrowserProtocolUtils.mjs +1 -1
  242. package/dist/utils/BrowserUtils.mjs +1 -1
  243. package/dist/utils/Helpers.mjs +1 -1
  244. package/dist/utils/MsalFrameStatsUtils.mjs +1 -1
  245. package/lib/custom-auth-path/msal-custom-auth.cjs +65 -64
  246. package/lib/custom-auth-path/msal-custom-auth.cjs.map +1 -1
  247. package/lib/custom-auth-path/types/custom_auth/CustomAuthConstants.d.ts +1 -1
  248. package/lib/custom-auth-path/types/packageMetadata.d.ts +1 -1
  249. package/lib/msal-browser.cjs +67 -66
  250. package/lib/msal-browser.cjs.map +1 -1
  251. package/lib/msal-browser.js +67 -66
  252. package/lib/msal-browser.js.map +1 -1
  253. package/lib/msal-browser.min.js +60 -60
  254. package/lib/types/custom_auth/CustomAuthConstants.d.ts +1 -1
  255. package/lib/types/packageMetadata.d.ts +1 -1
  256. package/package.json +1 -1
  257. package/src/interaction_handler/SilentHandler.ts +1 -0
  258. package/src/packageMetadata.ts +1 -1
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v4.26.0 2025-10-29 */
1
+ /*! @azure/msal-browser v4.26.1 2025-11-06 */
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.13.1 2025-10-29 */
9
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
10
10
  /*
11
11
  * Copyright (c) Microsoft Corporation. All rights reserved.
12
12
  * Licensed under the MIT License.
@@ -283,7 +283,7 @@
283
283
  // Token renewal offset default in seconds
284
284
  const DEFAULT_TOKEN_RENEWAL_OFFSET_SEC = 300;
285
285
 
286
- /*! @azure/msal-common v15.13.1 2025-10-29 */
286
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
287
287
  /*
288
288
  * Copyright (c) Microsoft Corporation. All rights reserved.
289
289
  * Licensed under the MIT License.
@@ -300,7 +300,7 @@
300
300
  unexpectedError: unexpectedError
301
301
  });
302
302
 
303
- /*! @azure/msal-common v15.13.1 2025-10-29 */
303
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
304
304
 
305
305
  /*
306
306
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -349,7 +349,7 @@
349
349
  : AuthErrorMessages[code]);
350
350
  }
351
351
 
352
- /*! @azure/msal-common v15.13.1 2025-10-29 */
352
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
353
353
  /*
354
354
  * Copyright (c) Microsoft Corporation. All rights reserved.
355
355
  * Licensed under the MIT License.
@@ -447,7 +447,7 @@
447
447
  userTimeoutReached: userTimeoutReached
448
448
  });
449
449
 
450
- /*! @azure/msal-common v15.13.1 2025-10-29 */
450
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
451
451
 
452
452
  /*
453
453
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -699,7 +699,7 @@
699
699
  return new ClientAuthError(errorCode, additionalMessage);
700
700
  }
701
701
 
702
- /*! @azure/msal-common v15.13.1 2025-10-29 */
702
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
703
703
 
704
704
  /*
705
705
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -738,7 +738,7 @@
738
738
  },
739
739
  };
740
740
 
741
- /*! @azure/msal-common v15.13.1 2025-10-29 */
741
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
742
742
 
743
743
  /*
744
744
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -929,12 +929,12 @@
929
929
  }
930
930
  }
931
931
 
932
- /*! @azure/msal-common v15.13.1 2025-10-29 */
932
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
933
933
  /* eslint-disable header/header */
934
934
  const name$1 = "@azure/msal-common";
935
935
  const version$1 = "15.13.1";
936
936
 
937
- /*! @azure/msal-common v15.13.1 2025-10-29 */
937
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
938
938
  /*
939
939
  * Copyright (c) Microsoft Corporation. All rights reserved.
940
940
  * Licensed under the MIT License.
@@ -954,7 +954,7 @@
954
954
  AzureUsGovernment: "https://login.microsoftonline.us",
955
955
  };
956
956
 
957
- /*! @azure/msal-common v15.13.1 2025-10-29 */
957
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
958
958
  /*
959
959
  * Copyright (c) Microsoft Corporation. All rights reserved.
960
960
  * Licensed under the MIT License.
@@ -1010,7 +1010,7 @@
1010
1010
  urlParseError: urlParseError
1011
1011
  });
1012
1012
 
1013
- /*! @azure/msal-common v15.13.1 2025-10-29 */
1013
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
1014
1014
 
1015
1015
  /*
1016
1016
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1153,7 +1153,7 @@
1153
1153
  return new ClientConfigurationError(errorCode);
1154
1154
  }
1155
1155
 
1156
- /*! @azure/msal-common v15.13.1 2025-10-29 */
1156
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
1157
1157
  /*
1158
1158
  * Copyright (c) Microsoft Corporation. All rights reserved.
1159
1159
  * Licensed under the MIT License.
@@ -1250,7 +1250,7 @@
1250
1250
  }
1251
1251
  }
1252
1252
 
1253
- /*! @azure/msal-common v15.13.1 2025-10-29 */
1253
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
1254
1254
 
1255
1255
  /*
1256
1256
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1445,7 +1445,7 @@
1445
1445
  }
1446
1446
  }
1447
1447
 
1448
- /*! @azure/msal-common v15.13.1 2025-10-29 */
1448
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
1449
1449
 
1450
1450
  /*
1451
1451
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1485,7 +1485,7 @@
1485
1485
  };
1486
1486
  }
1487
1487
 
1488
- /*! @azure/msal-common v15.13.1 2025-10-29 */
1488
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
1489
1489
  /*
1490
1490
  * Copyright (c) Microsoft Corporation. All rights reserved.
1491
1491
  * Licensed under the MIT License.
@@ -1567,7 +1567,7 @@
1567
1567
  return updatedAccountInfo;
1568
1568
  }
1569
1569
 
1570
- /*! @azure/msal-common v15.13.1 2025-10-29 */
1570
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
1571
1571
  /*
1572
1572
  * Copyright (c) Microsoft Corporation. All rights reserved.
1573
1573
  * Licensed under the MIT License.
@@ -1582,7 +1582,7 @@
1582
1582
  Ciam: 3,
1583
1583
  };
1584
1584
 
1585
- /*! @azure/msal-common v15.13.1 2025-10-29 */
1585
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
1586
1586
  /*
1587
1587
  * Copyright (c) Microsoft Corporation. All rights reserved.
1588
1588
  * Licensed under the MIT License.
@@ -1604,7 +1604,7 @@
1604
1604
  return null;
1605
1605
  }
1606
1606
 
1607
- /*! @azure/msal-common v15.13.1 2025-10-29 */
1607
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
1608
1608
  /*
1609
1609
  * Copyright (c) Microsoft Corporation. All rights reserved.
1610
1610
  * Licensed under the MIT License.
@@ -1628,7 +1628,7 @@
1628
1628
  EAR: "EAR",
1629
1629
  };
1630
1630
 
1631
- /*! @azure/msal-common v15.13.1 2025-10-29 */
1631
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
1632
1632
 
1633
1633
  /*
1634
1634
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1849,7 +1849,7 @@
1849
1849
  }
1850
1850
  }
1851
1851
 
1852
- /*! @azure/msal-common v15.13.1 2025-10-29 */
1852
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
1853
1853
 
1854
1854
  /*
1855
1855
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1930,7 +1930,7 @@
1930
1930
  }
1931
1931
  }
1932
1932
 
1933
- /*! @azure/msal-common v15.13.1 2025-10-29 */
1933
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
1934
1934
 
1935
1935
  /*
1936
1936
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2046,7 +2046,7 @@
2046
2046
  }
2047
2047
  }
2048
2048
 
2049
- /*! @azure/msal-common v15.13.1 2025-10-29 */
2049
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
2050
2050
 
2051
2051
  /*
2052
2052
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2210,7 +2210,7 @@
2210
2210
  }
2211
2211
  }
2212
2212
 
2213
- /*! @azure/msal-common v15.13.1 2025-10-29 */
2213
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
2214
2214
 
2215
2215
  /*
2216
2216
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2349,7 +2349,7 @@
2349
2349
  return null;
2350
2350
  }
2351
2351
 
2352
- /*! @azure/msal-common v15.13.1 2025-10-29 */
2352
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
2353
2353
  /*
2354
2354
  * Copyright (c) Microsoft Corporation. All rights reserved.
2355
2355
  * Licensed under the MIT License.
@@ -2357,7 +2357,7 @@
2357
2357
  const cacheQuotaExceeded = "cache_quota_exceeded";
2358
2358
  const cacheErrorUnknown = "cache_error_unknown";
2359
2359
 
2360
- /*! @azure/msal-common v15.13.1 2025-10-29 */
2360
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
2361
2361
 
2362
2362
  /*
2363
2363
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2402,7 +2402,7 @@
2402
2402
  }
2403
2403
  }
2404
2404
 
2405
- /*! @azure/msal-common v15.13.1 2025-10-29 */
2405
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
2406
2406
 
2407
2407
  /*
2408
2408
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3512,7 +3512,7 @@
3512
3512
  }
3513
3513
  }
3514
3514
 
3515
- /*! @azure/msal-common v15.13.1 2025-10-29 */
3515
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
3516
3516
  /*
3517
3517
  * Copyright (c) Microsoft Corporation. All rights reserved.
3518
3518
  * Licensed under the MIT License.
@@ -4034,7 +4034,7 @@
4034
4034
  "upgradedCacheCount",
4035
4035
  ]);
4036
4036
 
4037
- /*! @azure/msal-common v15.13.1 2025-10-29 */
4037
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
4038
4038
 
4039
4039
  /*
4040
4040
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4113,7 +4113,7 @@
4113
4113
  }
4114
4114
  }
4115
4115
 
4116
- /*! @azure/msal-common v15.13.1 2025-10-29 */
4116
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
4117
4117
 
4118
4118
  /*
4119
4119
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4213,7 +4213,7 @@
4213
4213
  return (config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC);
4214
4214
  }
4215
4215
 
4216
- /*! @azure/msal-common v15.13.1 2025-10-29 */
4216
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
4217
4217
  /*
4218
4218
  * Copyright (c) Microsoft Corporation. All rights reserved.
4219
4219
  * Licensed under the MIT License.
@@ -4223,7 +4223,7 @@
4223
4223
  UPN: "UPN",
4224
4224
  };
4225
4225
 
4226
- /*! @azure/msal-common v15.13.1 2025-10-29 */
4226
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
4227
4227
  /*
4228
4228
  * Copyright (c) Microsoft Corporation. All rights reserved.
4229
4229
  * Licensed under the MIT License.
@@ -4273,7 +4273,7 @@
4273
4273
  const EAR_JWK = "ear_jwk";
4274
4274
  const EAR_JWE_CRYPTO = "ear_jwe_crypto";
4275
4275
 
4276
- /*! @azure/msal-common v15.13.1 2025-10-29 */
4276
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
4277
4277
 
4278
4278
  /*
4279
4279
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4653,7 +4653,7 @@
4653
4653
  });
4654
4654
  }
4655
4655
 
4656
- /*! @azure/msal-common v15.13.1 2025-10-29 */
4656
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
4657
4657
  /*
4658
4658
  * Copyright (c) Microsoft Corporation. All rights reserved.
4659
4659
  * Licensed under the MIT License.
@@ -4665,7 +4665,7 @@
4665
4665
  response.hasOwnProperty("jwks_uri"));
4666
4666
  }
4667
4667
 
4668
- /*! @azure/msal-common v15.13.1 2025-10-29 */
4668
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
4669
4669
  /*
4670
4670
  * Copyright (c) Microsoft Corporation. All rights reserved.
4671
4671
  * Licensed under the MIT License.
@@ -4675,7 +4675,7 @@
4675
4675
  response.hasOwnProperty("metadata"));
4676
4676
  }
4677
4677
 
4678
- /*! @azure/msal-common v15.13.1 2025-10-29 */
4678
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
4679
4679
  /*
4680
4680
  * Copyright (c) Microsoft Corporation. All rights reserved.
4681
4681
  * Licensed under the MIT License.
@@ -4685,7 +4685,7 @@
4685
4685
  response.hasOwnProperty("error_description"));
4686
4686
  }
4687
4687
 
4688
- /*! @azure/msal-common v15.13.1 2025-10-29 */
4688
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
4689
4689
  /*
4690
4690
  * Copyright (c) Microsoft Corporation. All rights reserved.
4691
4691
  * Licensed under the MIT License.
@@ -4781,7 +4781,7 @@
4781
4781
  };
4782
4782
  };
4783
4783
 
4784
- /*! @azure/msal-common v15.13.1 2025-10-29 */
4784
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
4785
4785
 
4786
4786
  /*
4787
4787
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4887,7 +4887,7 @@
4887
4887
  },
4888
4888
  };
4889
4889
 
4890
- /*! @azure/msal-common v15.13.1 2025-10-29 */
4890
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
4891
4891
  /*
4892
4892
  * Copyright (c) Microsoft Corporation. All rights reserved.
4893
4893
  * Licensed under the MIT License.
@@ -4952,7 +4952,7 @@
4952
4952
  return cachedAtSec > nowSeconds();
4953
4953
  }
4954
4954
 
4955
- /*! @azure/msal-common v15.13.1 2025-10-29 */
4955
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
4956
4956
 
4957
4957
  /*
4958
4958
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5214,7 +5214,7 @@
5214
5214
  return metadata.expiresAt <= nowSeconds();
5215
5215
  }
5216
5216
 
5217
- /*! @azure/msal-common v15.13.1 2025-10-29 */
5217
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
5218
5218
 
5219
5219
  /*
5220
5220
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6053,7 +6053,7 @@
6053
6053
  };
6054
6054
  }
6055
6055
 
6056
- /*! @azure/msal-common v15.13.1 2025-10-29 */
6056
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
6057
6057
 
6058
6058
  /*
6059
6059
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6084,7 +6084,7 @@
6084
6084
  }
6085
6085
  }
6086
6086
 
6087
- /*! @azure/msal-common v15.13.1 2025-10-29 */
6087
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
6088
6088
 
6089
6089
  /*
6090
6090
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6103,7 +6103,7 @@
6103
6103
  }
6104
6104
  }
6105
6105
 
6106
- /*! @azure/msal-common v15.13.1 2025-10-29 */
6106
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
6107
6107
  /*
6108
6108
  * Copyright (c) Microsoft Corporation. All rights reserved.
6109
6109
  * Licensed under the MIT License.
@@ -6124,7 +6124,7 @@
6124
6124
  };
6125
6125
  }
6126
6126
 
6127
- /*! @azure/msal-common v15.13.1 2025-10-29 */
6127
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
6128
6128
 
6129
6129
  /*
6130
6130
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6211,7 +6211,7 @@
6211
6211
  }
6212
6212
  }
6213
6213
 
6214
- /*! @azure/msal-common v15.13.1 2025-10-29 */
6214
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
6215
6215
 
6216
6216
  /*
6217
6217
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6242,7 +6242,7 @@
6242
6242
  return new NetworkError(error, httpStatus, responseHeaders);
6243
6243
  }
6244
6244
 
6245
- /*! @azure/msal-common v15.13.1 2025-10-29 */
6245
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
6246
6246
 
6247
6247
  /*
6248
6248
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6390,7 +6390,7 @@
6390
6390
  }
6391
6391
  }
6392
6392
 
6393
- /*! @azure/msal-common v15.13.1 2025-10-29 */
6393
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
6394
6394
  /*
6395
6395
  * Copyright (c) Microsoft Corporation. All rights reserved.
6396
6396
  * Licensed under the MIT License.
@@ -6418,7 +6418,7 @@
6418
6418
  uxNotAllowed: uxNotAllowed
6419
6419
  });
6420
6420
 
6421
- /*! @azure/msal-common v15.13.1 2025-10-29 */
6421
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
6422
6422
 
6423
6423
  /*
6424
6424
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6508,7 +6508,7 @@
6508
6508
  return new InteractionRequiredAuthError(errorCode, InteractionRequiredAuthErrorMessages[errorCode]);
6509
6509
  }
6510
6510
 
6511
- /*! @azure/msal-common v15.13.1 2025-10-29 */
6511
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
6512
6512
 
6513
6513
  /*
6514
6514
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6580,7 +6580,7 @@
6580
6580
  }
6581
6581
  }
6582
6582
 
6583
- /*! @azure/msal-common v15.13.1 2025-10-29 */
6583
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
6584
6584
 
6585
6585
  /*
6586
6586
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6662,7 +6662,7 @@
6662
6662
  }
6663
6663
  }
6664
6664
 
6665
- /*! @azure/msal-common v15.13.1 2025-10-29 */
6665
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
6666
6666
  /*
6667
6667
  * Copyright (c) Microsoft Corporation. All rights reserved.
6668
6668
  * Licensed under the MIT License.
@@ -6689,7 +6689,7 @@
6689
6689
  }
6690
6690
  }
6691
6691
 
6692
- /*! @azure/msal-common v15.13.1 2025-10-29 */
6692
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
6693
6693
 
6694
6694
  /*
6695
6695
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7020,7 +7020,7 @@
7020
7020
  return baseAccount;
7021
7021
  }
7022
7022
 
7023
- /*! @azure/msal-common v15.13.1 2025-10-29 */
7023
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
7024
7024
  /*
7025
7025
  * Copyright (c) Microsoft Corporation. All rights reserved.
7026
7026
  * Licensed under the MIT License.
@@ -7038,7 +7038,7 @@
7038
7038
  }
7039
7039
  }
7040
7040
 
7041
- /*! @azure/msal-common v15.13.1 2025-10-29 */
7041
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
7042
7042
 
7043
7043
  /*
7044
7044
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7273,7 +7273,7 @@
7273
7273
  }
7274
7274
  }
7275
7275
 
7276
- /*! @azure/msal-common v15.13.1 2025-10-29 */
7276
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
7277
7277
 
7278
7278
  /*
7279
7279
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7482,7 +7482,7 @@
7482
7482
  }
7483
7483
  }
7484
7484
 
7485
- /*! @azure/msal-common v15.13.1 2025-10-29 */
7485
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
7486
7486
 
7487
7487
  /*
7488
7488
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7580,7 +7580,7 @@
7580
7580
  }
7581
7581
  }
7582
7582
 
7583
- /*! @azure/msal-common v15.13.1 2025-10-29 */
7583
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
7584
7584
 
7585
7585
  /*
7586
7586
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7595,7 +7595,7 @@
7595
7595
  },
7596
7596
  };
7597
7597
 
7598
- /*! @azure/msal-common v15.13.1 2025-10-29 */
7598
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
7599
7599
 
7600
7600
  /*
7601
7601
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7819,7 +7819,7 @@
7819
7819
  return account.loginHint || account.idTokenClaims?.login_hint || null;
7820
7820
  }
7821
7821
 
7822
- /*! @azure/msal-common v15.13.1 2025-10-29 */
7822
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
7823
7823
 
7824
7824
  /*
7825
7825
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7877,7 +7877,7 @@
7877
7877
  }
7878
7878
  }
7879
7879
 
7880
- /*! @azure/msal-common v15.13.1 2025-10-29 */
7880
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
7881
7881
 
7882
7882
  /*
7883
7883
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -8140,7 +8140,7 @@
8140
8140
  }
8141
8141
  }
8142
8142
 
8143
- /*! @azure/msal-common v15.13.1 2025-10-29 */
8143
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
8144
8144
  /*
8145
8145
  * Copyright (c) Microsoft Corporation. All rights reserved.
8146
8146
  * Licensed under the MIT License.
@@ -8148,7 +8148,7 @@
8148
8148
  const missingKidError = "missing_kid_error";
8149
8149
  const missingAlgError = "missing_alg_error";
8150
8150
 
8151
- /*! @azure/msal-common v15.13.1 2025-10-29 */
8151
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
8152
8152
 
8153
8153
  /*
8154
8154
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -8173,7 +8173,7 @@
8173
8173
  return new JoseHeaderError(code, JoseHeaderErrorMessages[code]);
8174
8174
  }
8175
8175
 
8176
- /*! @azure/msal-common v15.13.1 2025-10-29 */
8176
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
8177
8177
 
8178
8178
  /*
8179
8179
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -8213,7 +8213,7 @@
8213
8213
  }
8214
8214
  }
8215
8215
 
8216
- /*! @azure/msal-common v15.13.1 2025-10-29 */
8216
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
8217
8217
 
8218
8218
  /*
8219
8219
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -10329,7 +10329,7 @@
10329
10329
 
10330
10330
  /* eslint-disable header/header */
10331
10331
  const name = "@azure/msal-browser";
10332
- const version = "4.26.0";
10332
+ const version = "4.26.1";
10333
10333
 
10334
10334
  /*
10335
10335
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -16563,6 +16563,7 @@
16563
16563
  authFrame.style.width = authFrame.style.height = "0";
16564
16564
  authFrame.style.border = "0";
16565
16565
  authFrame.setAttribute("sandbox", "allow-scripts allow-same-origin allow-forms");
16566
+ authFrame.setAttribute("allow", "local-network-access *");
16566
16567
  document.body.appendChild(authFrame);
16567
16568
  return authFrame;
16568
16569
  }