@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
@@ -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: "4.26.0";
22
+ readonly VERSION: "4.26.1";
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 = "4.26.0";
2
+ export declare const version = "4.26.1";
3
3
  //# sourceMappingURL=packageMetadata.d.ts.map
@@ -1,8 +1,8 @@
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
  'use strict';
4
4
 
5
- /*! @azure/msal-common v15.13.1 2025-10-29 */
5
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
6
6
  /*
7
7
  * Copyright (c) Microsoft Corporation. All rights reserved.
8
8
  * Licensed under the MIT License.
@@ -279,7 +279,7 @@ const JsonWebTokenTypes = {
279
279
  // Token renewal offset default in seconds
280
280
  const DEFAULT_TOKEN_RENEWAL_OFFSET_SEC = 300;
281
281
 
282
- /*! @azure/msal-common v15.13.1 2025-10-29 */
282
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
283
283
  /*
284
284
  * Copyright (c) Microsoft Corporation. All rights reserved.
285
285
  * Licensed under the MIT License.
@@ -296,7 +296,7 @@ var AuthErrorCodes = /*#__PURE__*/Object.freeze({
296
296
  unexpectedError: unexpectedError
297
297
  });
298
298
 
299
- /*! @azure/msal-common v15.13.1 2025-10-29 */
299
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
300
300
 
301
301
  /*
302
302
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -345,7 +345,7 @@ function createAuthError(code, additionalMessage) {
345
345
  : AuthErrorMessages[code]);
346
346
  }
347
347
 
348
- /*! @azure/msal-common v15.13.1 2025-10-29 */
348
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
349
349
  /*
350
350
  * Copyright (c) Microsoft Corporation. All rights reserved.
351
351
  * Licensed under the MIT License.
@@ -443,7 +443,7 @@ var ClientAuthErrorCodes = /*#__PURE__*/Object.freeze({
443
443
  userTimeoutReached: userTimeoutReached
444
444
  });
445
445
 
446
- /*! @azure/msal-common v15.13.1 2025-10-29 */
446
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
447
447
 
448
448
  /*
449
449
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -695,7 +695,7 @@ function createClientAuthError(errorCode, additionalMessage) {
695
695
  return new ClientAuthError(errorCode, additionalMessage);
696
696
  }
697
697
 
698
- /*! @azure/msal-common v15.13.1 2025-10-29 */
698
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
699
699
 
700
700
  /*
701
701
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -734,7 +734,7 @@ const DEFAULT_CRYPTO_IMPLEMENTATION = {
734
734
  },
735
735
  };
736
736
 
737
- /*! @azure/msal-common v15.13.1 2025-10-29 */
737
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
738
738
 
739
739
  /*
740
740
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -925,12 +925,12 @@ class Logger {
925
925
  }
926
926
  }
927
927
 
928
- /*! @azure/msal-common v15.13.1 2025-10-29 */
928
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
929
929
  /* eslint-disable header/header */
930
930
  const name$1 = "@azure/msal-common";
931
931
  const version$1 = "15.13.1";
932
932
 
933
- /*! @azure/msal-common v15.13.1 2025-10-29 */
933
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
934
934
  /*
935
935
  * Copyright (c) Microsoft Corporation. All rights reserved.
936
936
  * Licensed under the MIT License.
@@ -950,7 +950,7 @@ const AzureCloudInstance = {
950
950
  AzureUsGovernment: "https://login.microsoftonline.us",
951
951
  };
952
952
 
953
- /*! @azure/msal-common v15.13.1 2025-10-29 */
953
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
954
954
  /*
955
955
  * Copyright (c) Microsoft Corporation. All rights reserved.
956
956
  * Licensed under the MIT License.
@@ -1006,7 +1006,7 @@ var ClientConfigurationErrorCodes = /*#__PURE__*/Object.freeze({
1006
1006
  urlParseError: urlParseError
1007
1007
  });
1008
1008
 
1009
- /*! @azure/msal-common v15.13.1 2025-10-29 */
1009
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
1010
1010
 
1011
1011
  /*
1012
1012
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1149,7 +1149,7 @@ function createClientConfigurationError(errorCode) {
1149
1149
  return new ClientConfigurationError(errorCode);
1150
1150
  }
1151
1151
 
1152
- /*! @azure/msal-common v15.13.1 2025-10-29 */
1152
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
1153
1153
  /*
1154
1154
  * Copyright (c) Microsoft Corporation. All rights reserved.
1155
1155
  * Licensed under the MIT License.
@@ -1246,7 +1246,7 @@ class StringUtils {
1246
1246
  }
1247
1247
  }
1248
1248
 
1249
- /*! @azure/msal-common v15.13.1 2025-10-29 */
1249
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
1250
1250
 
1251
1251
  /*
1252
1252
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1441,7 +1441,7 @@ class ScopeSet {
1441
1441
  }
1442
1442
  }
1443
1443
 
1444
- /*! @azure/msal-common v15.13.1 2025-10-29 */
1444
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
1445
1445
 
1446
1446
  /*
1447
1447
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1481,7 +1481,7 @@ function buildClientInfoFromHomeAccountId(homeAccountId) {
1481
1481
  };
1482
1482
  }
1483
1483
 
1484
- /*! @azure/msal-common v15.13.1 2025-10-29 */
1484
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
1485
1485
  /*
1486
1486
  * Copyright (c) Microsoft Corporation. All rights reserved.
1487
1487
  * Licensed under the MIT License.
@@ -1563,7 +1563,7 @@ function updateAccountTenantProfileData(baseAccountInfo, tenantProfile, idTokenC
1563
1563
  return updatedAccountInfo;
1564
1564
  }
1565
1565
 
1566
- /*! @azure/msal-common v15.13.1 2025-10-29 */
1566
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
1567
1567
  /*
1568
1568
  * Copyright (c) Microsoft Corporation. All rights reserved.
1569
1569
  * Licensed under the MIT License.
@@ -1578,7 +1578,7 @@ const AuthorityType = {
1578
1578
  Ciam: 3,
1579
1579
  };
1580
1580
 
1581
- /*! @azure/msal-common v15.13.1 2025-10-29 */
1581
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
1582
1582
  /*
1583
1583
  * Copyright (c) Microsoft Corporation. All rights reserved.
1584
1584
  * Licensed under the MIT License.
@@ -1600,7 +1600,7 @@ function getTenantIdFromIdTokenClaims(idTokenClaims) {
1600
1600
  return null;
1601
1601
  }
1602
1602
 
1603
- /*! @azure/msal-common v15.13.1 2025-10-29 */
1603
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
1604
1604
  /*
1605
1605
  * Copyright (c) Microsoft Corporation. All rights reserved.
1606
1606
  * Licensed under the MIT License.
@@ -1624,7 +1624,7 @@ const ProtocolMode = {
1624
1624
  EAR: "EAR",
1625
1625
  };
1626
1626
 
1627
- /*! @azure/msal-common v15.13.1 2025-10-29 */
1627
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
1628
1628
 
1629
1629
  /*
1630
1630
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1845,7 +1845,7 @@ class AccountEntity {
1845
1845
  }
1846
1846
  }
1847
1847
 
1848
- /*! @azure/msal-common v15.13.1 2025-10-29 */
1848
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
1849
1849
 
1850
1850
  /*
1851
1851
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1926,7 +1926,7 @@ function checkMaxAge(authTime, maxAge) {
1926
1926
  }
1927
1927
  }
1928
1928
 
1929
- /*! @azure/msal-common v15.13.1 2025-10-29 */
1929
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
1930
1930
 
1931
1931
  /*
1932
1932
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2042,7 +2042,7 @@ function normalizeUrlForComparison(url) {
2042
2042
  }
2043
2043
  }
2044
2044
 
2045
- /*! @azure/msal-common v15.13.1 2025-10-29 */
2045
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
2046
2046
 
2047
2047
  /*
2048
2048
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2206,7 +2206,7 @@ class UrlString {
2206
2206
  }
2207
2207
  }
2208
2208
 
2209
- /*! @azure/msal-common v15.13.1 2025-10-29 */
2209
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
2210
2210
 
2211
2211
  /*
2212
2212
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2345,7 +2345,7 @@ function getCloudDiscoveryMetadataFromNetworkResponse(response, authorityHost) {
2345
2345
  return null;
2346
2346
  }
2347
2347
 
2348
- /*! @azure/msal-common v15.13.1 2025-10-29 */
2348
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
2349
2349
  /*
2350
2350
  * Copyright (c) Microsoft Corporation. All rights reserved.
2351
2351
  * Licensed under the MIT License.
@@ -2353,7 +2353,7 @@ function getCloudDiscoveryMetadataFromNetworkResponse(response, authorityHost) {
2353
2353
  const cacheQuotaExceeded = "cache_quota_exceeded";
2354
2354
  const cacheErrorUnknown = "cache_error_unknown";
2355
2355
 
2356
- /*! @azure/msal-common v15.13.1 2025-10-29 */
2356
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
2357
2357
 
2358
2358
  /*
2359
2359
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2398,7 +2398,7 @@ function createCacheError(e) {
2398
2398
  }
2399
2399
  }
2400
2400
 
2401
- /*! @azure/msal-common v15.13.1 2025-10-29 */
2401
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
2402
2402
 
2403
2403
  /*
2404
2404
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3508,7 +3508,7 @@ class DefaultStorageClass extends CacheManager {
3508
3508
  }
3509
3509
  }
3510
3510
 
3511
- /*! @azure/msal-common v15.13.1 2025-10-29 */
3511
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
3512
3512
  /*
3513
3513
  * Copyright (c) Microsoft Corporation. All rights reserved.
3514
3514
  * Licensed under the MIT License.
@@ -4030,7 +4030,7 @@ const IntFields = new Set([
4030
4030
  "upgradedCacheCount",
4031
4031
  ]);
4032
4032
 
4033
- /*! @azure/msal-common v15.13.1 2025-10-29 */
4033
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
4034
4034
 
4035
4035
  /*
4036
4036
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4109,7 +4109,7 @@ class StubPerformanceClient {
4109
4109
  }
4110
4110
  }
4111
4111
 
4112
- /*! @azure/msal-common v15.13.1 2025-10-29 */
4112
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
4113
4113
 
4114
4114
  /*
4115
4115
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4209,7 +4209,7 @@ function isOidcProtocolMode(config) {
4209
4209
  return (config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC);
4210
4210
  }
4211
4211
 
4212
- /*! @azure/msal-common v15.13.1 2025-10-29 */
4212
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
4213
4213
  /*
4214
4214
  * Copyright (c) Microsoft Corporation. All rights reserved.
4215
4215
  * Licensed under the MIT License.
@@ -4219,7 +4219,7 @@ const CcsCredentialType = {
4219
4219
  UPN: "UPN",
4220
4220
  };
4221
4221
 
4222
- /*! @azure/msal-common v15.13.1 2025-10-29 */
4222
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
4223
4223
  /*
4224
4224
  * Copyright (c) Microsoft Corporation. All rights reserved.
4225
4225
  * Licensed under the MIT License.
@@ -4269,7 +4269,7 @@ const INSTANCE_AWARE = "instance_aware";
4269
4269
  const EAR_JWK = "ear_jwk";
4270
4270
  const EAR_JWE_CRYPTO = "ear_jwe_crypto";
4271
4271
 
4272
- /*! @azure/msal-common v15.13.1 2025-10-29 */
4272
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
4273
4273
 
4274
4274
  /*
4275
4275
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4649,7 +4649,7 @@ function addPostBodyParameters(parameters, bodyParameters) {
4649
4649
  });
4650
4650
  }
4651
4651
 
4652
- /*! @azure/msal-common v15.13.1 2025-10-29 */
4652
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
4653
4653
  /*
4654
4654
  * Copyright (c) Microsoft Corporation. All rights reserved.
4655
4655
  * Licensed under the MIT License.
@@ -4661,7 +4661,7 @@ function isOpenIdConfigResponse(response) {
4661
4661
  response.hasOwnProperty("jwks_uri"));
4662
4662
  }
4663
4663
 
4664
- /*! @azure/msal-common v15.13.1 2025-10-29 */
4664
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
4665
4665
  /*
4666
4666
  * Copyright (c) Microsoft Corporation. All rights reserved.
4667
4667
  * Licensed under the MIT License.
@@ -4671,7 +4671,7 @@ function isCloudInstanceDiscoveryResponse(response) {
4671
4671
  response.hasOwnProperty("metadata"));
4672
4672
  }
4673
4673
 
4674
- /*! @azure/msal-common v15.13.1 2025-10-29 */
4674
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
4675
4675
  /*
4676
4676
  * Copyright (c) Microsoft Corporation. All rights reserved.
4677
4677
  * Licensed under the MIT License.
@@ -4681,7 +4681,7 @@ function isCloudInstanceDiscoveryErrorResponse(response) {
4681
4681
  response.hasOwnProperty("error_description"));
4682
4682
  }
4683
4683
 
4684
- /*! @azure/msal-common v15.13.1 2025-10-29 */
4684
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
4685
4685
  /*
4686
4686
  * Copyright (c) Microsoft Corporation. All rights reserved.
4687
4687
  * Licensed under the MIT License.
@@ -4777,7 +4777,7 @@ const invokeAsync = (callback, eventName, logger, telemetryClient, correlationId
4777
4777
  };
4778
4778
  };
4779
4779
 
4780
- /*! @azure/msal-common v15.13.1 2025-10-29 */
4780
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
4781
4781
 
4782
4782
  /*
4783
4783
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4883,7 +4883,7 @@ RegionDiscovery.IMDS_OPTIONS = {
4883
4883
  },
4884
4884
  };
4885
4885
 
4886
- /*! @azure/msal-common v15.13.1 2025-10-29 */
4886
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
4887
4887
  /*
4888
4888
  * Copyright (c) Microsoft Corporation. All rights reserved.
4889
4889
  * Licensed under the MIT License.
@@ -4948,7 +4948,7 @@ function wasClockTurnedBack(cachedAt) {
4948
4948
  return cachedAtSec > nowSeconds();
4949
4949
  }
4950
4950
 
4951
- /*! @azure/msal-common v15.13.1 2025-10-29 */
4951
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
4952
4952
 
4953
4953
  /*
4954
4954
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5210,7 +5210,7 @@ function isAuthorityMetadataExpired(metadata) {
5210
5210
  return metadata.expiresAt <= nowSeconds();
5211
5211
  }
5212
5212
 
5213
- /*! @azure/msal-common v15.13.1 2025-10-29 */
5213
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
5214
5214
 
5215
5215
  /*
5216
5216
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6049,7 +6049,7 @@ function buildStaticAuthorityOptions(authOptions) {
6049
6049
  };
6050
6050
  }
6051
6051
 
6052
- /*! @azure/msal-common v15.13.1 2025-10-29 */
6052
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
6053
6053
 
6054
6054
  /*
6055
6055
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6080,7 +6080,7 @@ async function createDiscoveredInstance(authorityUri, networkClient, cacheManage
6080
6080
  }
6081
6081
  }
6082
6082
 
6083
- /*! @azure/msal-common v15.13.1 2025-10-29 */
6083
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
6084
6084
 
6085
6085
  /*
6086
6086
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6099,7 +6099,7 @@ class ServerError extends AuthError {
6099
6099
  }
6100
6100
  }
6101
6101
 
6102
- /*! @azure/msal-common v15.13.1 2025-10-29 */
6102
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
6103
6103
  /*
6104
6104
  * Copyright (c) Microsoft Corporation. All rights reserved.
6105
6105
  * Licensed under the MIT License.
@@ -6120,7 +6120,7 @@ function getRequestThumbprint(clientId, request, homeAccountId) {
6120
6120
  };
6121
6121
  }
6122
6122
 
6123
- /*! @azure/msal-common v15.13.1 2025-10-29 */
6123
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
6124
6124
 
6125
6125
  /*
6126
6126
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6207,7 +6207,7 @@ class ThrottlingUtils {
6207
6207
  }
6208
6208
  }
6209
6209
 
6210
- /*! @azure/msal-common v15.13.1 2025-10-29 */
6210
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
6211
6211
 
6212
6212
  /*
6213
6213
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6238,7 +6238,7 @@ function createNetworkError(error, httpStatus, responseHeaders, additionalError)
6238
6238
  return new NetworkError(error, httpStatus, responseHeaders);
6239
6239
  }
6240
6240
 
6241
- /*! @azure/msal-common v15.13.1 2025-10-29 */
6241
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
6242
6242
 
6243
6243
  /*
6244
6244
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6386,7 +6386,7 @@ class BaseClient {
6386
6386
  }
6387
6387
  }
6388
6388
 
6389
- /*! @azure/msal-common v15.13.1 2025-10-29 */
6389
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
6390
6390
  /*
6391
6391
  * Copyright (c) Microsoft Corporation. All rights reserved.
6392
6392
  * Licensed under the MIT License.
@@ -6414,7 +6414,7 @@ var InteractionRequiredAuthErrorCodes = /*#__PURE__*/Object.freeze({
6414
6414
  uxNotAllowed: uxNotAllowed
6415
6415
  });
6416
6416
 
6417
- /*! @azure/msal-common v15.13.1 2025-10-29 */
6417
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
6418
6418
 
6419
6419
  /*
6420
6420
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6504,7 +6504,7 @@ function createInteractionRequiredAuthError(errorCode) {
6504
6504
  return new InteractionRequiredAuthError(errorCode, InteractionRequiredAuthErrorMessages[errorCode]);
6505
6505
  }
6506
6506
 
6507
- /*! @azure/msal-common v15.13.1 2025-10-29 */
6507
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
6508
6508
 
6509
6509
  /*
6510
6510
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6576,7 +6576,7 @@ class ProtocolUtils {
6576
6576
  }
6577
6577
  }
6578
6578
 
6579
- /*! @azure/msal-common v15.13.1 2025-10-29 */
6579
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
6580
6580
 
6581
6581
  /*
6582
6582
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6658,7 +6658,7 @@ class PopTokenGenerator {
6658
6658
  }
6659
6659
  }
6660
6660
 
6661
- /*! @azure/msal-common v15.13.1 2025-10-29 */
6661
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
6662
6662
  /*
6663
6663
  * Copyright (c) Microsoft Corporation. All rights reserved.
6664
6664
  * Licensed under the MIT License.
@@ -6685,7 +6685,7 @@ class PopTokenGenerator {
6685
6685
  }
6686
6686
  }
6687
6687
 
6688
- /*! @azure/msal-common v15.13.1 2025-10-29 */
6688
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
6689
6689
 
6690
6690
  /*
6691
6691
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7016,7 +7016,7 @@ function buildAccountToCache(cacheStorage, authority, homeAccountId, base64Decod
7016
7016
  return baseAccount;
7017
7017
  }
7018
7018
 
7019
- /*! @azure/msal-common v15.13.1 2025-10-29 */
7019
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
7020
7020
  /*
7021
7021
  * Copyright (c) Microsoft Corporation. All rights reserved.
7022
7022
  * Licensed under the MIT License.
@@ -7034,7 +7034,7 @@ async function getClientAssertion(clientAssertion, clientId, tokenEndpoint) {
7034
7034
  }
7035
7035
  }
7036
7036
 
7037
- /*! @azure/msal-common v15.13.1 2025-10-29 */
7037
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
7038
7038
 
7039
7039
  /*
7040
7040
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7269,7 +7269,7 @@ class AuthorizationCodeClient extends BaseClient {
7269
7269
  }
7270
7270
  }
7271
7271
 
7272
- /*! @azure/msal-common v15.13.1 2025-10-29 */
7272
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
7273
7273
 
7274
7274
  /*
7275
7275
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7478,7 +7478,7 @@ class RefreshTokenClient extends BaseClient {
7478
7478
  }
7479
7479
  }
7480
7480
 
7481
- /*! @azure/msal-common v15.13.1 2025-10-29 */
7481
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
7482
7482
 
7483
7483
  /*
7484
7484
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7576,7 +7576,7 @@ class SilentFlowClient extends BaseClient {
7576
7576
  }
7577
7577
  }
7578
7578
 
7579
- /*! @azure/msal-common v15.13.1 2025-10-29 */
7579
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
7580
7580
 
7581
7581
  /*
7582
7582
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7591,7 +7591,7 @@ const StubbedNetworkModule = {
7591
7591
  },
7592
7592
  };
7593
7593
 
7594
- /*! @azure/msal-common v15.13.1 2025-10-29 */
7594
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
7595
7595
 
7596
7596
  /*
7597
7597
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7815,7 +7815,7 @@ function extractLoginHint(account) {
7815
7815
  return account.loginHint || account.idTokenClaims?.login_hint || null;
7816
7816
  }
7817
7817
 
7818
- /*! @azure/msal-common v15.13.1 2025-10-29 */
7818
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
7819
7819
 
7820
7820
  /*
7821
7821
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7873,7 +7873,7 @@ class AuthenticationHeaderParser {
7873
7873
  }
7874
7874
  }
7875
7875
 
7876
- /*! @azure/msal-common v15.13.1 2025-10-29 */
7876
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
7877
7877
 
7878
7878
  /*
7879
7879
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -8136,7 +8136,7 @@ class ServerTelemetryManager {
8136
8136
  }
8137
8137
  }
8138
8138
 
8139
- /*! @azure/msal-common v15.13.1 2025-10-29 */
8139
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
8140
8140
  /*
8141
8141
  * Copyright (c) Microsoft Corporation. All rights reserved.
8142
8142
  * Licensed under the MIT License.
@@ -8144,7 +8144,7 @@ class ServerTelemetryManager {
8144
8144
  const missingKidError = "missing_kid_error";
8145
8145
  const missingAlgError = "missing_alg_error";
8146
8146
 
8147
- /*! @azure/msal-common v15.13.1 2025-10-29 */
8147
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
8148
8148
 
8149
8149
  /*
8150
8150
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -8169,7 +8169,7 @@ function createJoseHeaderError(code) {
8169
8169
  return new JoseHeaderError(code, JoseHeaderErrorMessages[code]);
8170
8170
  }
8171
8171
 
8172
- /*! @azure/msal-common v15.13.1 2025-10-29 */
8172
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
8173
8173
 
8174
8174
  /*
8175
8175
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -8209,7 +8209,7 @@ class JoseHeader {
8209
8209
  }
8210
8210
  }
8211
8211
 
8212
- /*! @azure/msal-common v15.13.1 2025-10-29 */
8212
+ /*! @azure/msal-common v15.13.1 2025-11-06 */
8213
8213
 
8214
8214
  /*
8215
8215
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -10325,7 +10325,7 @@ function buildConfiguration({ auth: userInputAuth, cache: userInputCache, system
10325
10325
 
10326
10326
  /* eslint-disable header/header */
10327
10327
  const name = "@azure/msal-browser";
10328
- const version = "4.26.0";
10328
+ const version = "4.26.1";
10329
10329
 
10330
10330
  /*
10331
10331
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -16559,6 +16559,7 @@ function createHiddenIframe() {
16559
16559
  authFrame.style.width = authFrame.style.height = "0";
16560
16560
  authFrame.style.border = "0";
16561
16561
  authFrame.setAttribute("sandbox", "allow-scripts allow-same-origin allow-forms");
16562
+ authFrame.setAttribute("allow", "local-network-access *");
16562
16563
  document.body.appendChild(authFrame);
16563
16564
  return authFrame;
16564
16565
  }