@azure/msal-browser 5.3.0 → 5.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (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 +68 -70
  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 +133 -82
  261. package/lib/msal-browser.cjs.map +1 -1
  262. package/lib/msal-browser.js +133 -82
  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
@@ -1,8 +1,8 @@
1
- /*! @azure/msal-browser v5.3.0 2026-02-24 */
1
+ /*! @azure/msal-browser v5.4.0 2026-03-02 */
2
2
  'use strict';
3
3
  'use strict';
4
4
 
5
- /*! @azure/msal-common v16.1.0 2026-02-24 */
5
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
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.1.0 2026-02-24 */
237
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
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.1.0 2026-02-24 */
287
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
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.1.0 2026-02-24 */
318
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
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.1.0 2026-02-24 */
338
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
339
339
  /*
340
340
  * Copyright (c) Microsoft Corporation. All rights reserved.
341
341
  * Licensed under the MIT License.
@@ -415,7 +415,7 @@ class StringUtils {
415
415
  }
416
416
  }
417
417
 
418
- /*! @azure/msal-common v16.1.0 2026-02-24 */
418
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
419
419
 
420
420
  /*
421
421
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -438,7 +438,7 @@ function createClientAuthError(errorCode, additionalMessage) {
438
438
  return new ClientAuthError(errorCode, additionalMessage);
439
439
  }
440
440
 
441
- /*! @azure/msal-common v16.1.0 2026-02-24 */
441
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
442
442
  /*
443
443
  * Copyright (c) Microsoft Corporation. All rights reserved.
444
444
  * Licensed under the MIT License.
@@ -492,7 +492,7 @@ var ClientConfigurationErrorCodes = /*#__PURE__*/Object.freeze({
492
492
  urlParseError: urlParseError
493
493
  });
494
494
 
495
- /*! @azure/msal-common v16.1.0 2026-02-24 */
495
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
496
496
  /*
497
497
  * Copyright (c) Microsoft Corporation. All rights reserved.
498
498
  * Licensed under the MIT License.
@@ -576,7 +576,7 @@ var ClientAuthErrorCodes = /*#__PURE__*/Object.freeze({
576
576
  userCanceled: userCanceled
577
577
  });
578
578
 
579
- /*! @azure/msal-common v16.1.0 2026-02-24 */
579
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
580
580
 
581
581
  /*
582
582
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -771,7 +771,7 @@ class ScopeSet {
771
771
  }
772
772
  }
773
773
 
774
- /*! @azure/msal-common v16.1.0 2026-02-24 */
774
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
775
775
 
776
776
  /*
777
777
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1138,7 +1138,7 @@ function addEARParameters(parameters, jwk) {
1138
1138
  parameters.set(EAR_JWE_CRYPTO, jweCryptoB64Encoded);
1139
1139
  }
1140
1140
 
1141
- /*! @azure/msal-common v16.1.0 2026-02-24 */
1141
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
1142
1142
 
1143
1143
  /*
1144
1144
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1247,7 +1247,7 @@ function normalizeUrlForComparison(url) {
1247
1247
  }
1248
1248
  }
1249
1249
 
1250
- /*! @azure/msal-common v16.1.0 2026-02-24 */
1250
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
1251
1251
 
1252
1252
  /*
1253
1253
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1286,7 +1286,7 @@ const DEFAULT_CRYPTO_IMPLEMENTATION = {
1286
1286
  },
1287
1287
  };
1288
1288
 
1289
- /*! @azure/msal-common v16.1.0 2026-02-24 */
1289
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
1290
1290
  /*
1291
1291
  * Copyright (c) Microsoft Corporation. All rights reserved.
1292
1292
  * Licensed under the MIT License.
@@ -1561,12 +1561,12 @@ class Logger {
1561
1561
  }
1562
1562
  }
1563
1563
 
1564
- /*! @azure/msal-common v16.1.0 2026-02-24 */
1564
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
1565
1565
  /* eslint-disable header/header */
1566
1566
  const name$1 = "@azure/msal-common";
1567
- const version$1 = "16.1.0";
1567
+ const version$1 = "16.2.0";
1568
1568
 
1569
- /*! @azure/msal-common v16.1.0 2026-02-24 */
1569
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
1570
1570
  /*
1571
1571
  * Copyright (c) Microsoft Corporation. All rights reserved.
1572
1572
  * Licensed under the MIT License.
@@ -1586,7 +1586,7 @@ const AzureCloudInstance = {
1586
1586
  AzureUsGovernment: "https://login.microsoftonline.us",
1587
1587
  };
1588
1588
 
1589
- /*! @azure/msal-common v16.1.0 2026-02-24 */
1589
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
1590
1590
  /*
1591
1591
  * Copyright (c) Microsoft Corporation. All rights reserved.
1592
1592
  * Licensed under the MIT License.
@@ -1668,7 +1668,7 @@ function updateAccountTenantProfileData(baseAccountInfo, tenantProfile, idTokenC
1668
1668
  return updatedAccountInfo;
1669
1669
  }
1670
1670
 
1671
- /*! @azure/msal-common v16.1.0 2026-02-24 */
1671
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
1672
1672
 
1673
1673
  /*
1674
1674
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1748,7 +1748,7 @@ function checkMaxAge(authTime, maxAge) {
1748
1748
  }
1749
1749
  }
1750
1750
 
1751
- /*! @azure/msal-common v16.1.0 2026-02-24 */
1751
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
1752
1752
 
1753
1753
  /*
1754
1754
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1905,7 +1905,7 @@ class UrlString {
1905
1905
  }
1906
1906
  }
1907
1907
 
1908
- /*! @azure/msal-common v16.1.0 2026-02-24 */
1908
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
1909
1909
 
1910
1910
  /*
1911
1911
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2062,7 +2062,7 @@ function getCloudDiscoveryMetadataFromNetworkResponse(response, authorityHost) {
2062
2062
  return null;
2063
2063
  }
2064
2064
 
2065
- /*! @azure/msal-common v16.1.0 2026-02-24 */
2065
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
2066
2066
  /*
2067
2067
  * Copyright (c) Microsoft Corporation. All rights reserved.
2068
2068
  * Licensed under the MIT License.
@@ -2070,7 +2070,7 @@ function getCloudDiscoveryMetadataFromNetworkResponse(response, authorityHost) {
2070
2070
  const cacheQuotaExceeded = "cache_quota_exceeded";
2071
2071
  const cacheErrorUnknown = "cache_error_unknown";
2072
2072
 
2073
- /*! @azure/msal-common v16.1.0 2026-02-24 */
2073
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
2074
2074
 
2075
2075
  /*
2076
2076
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2108,7 +2108,7 @@ function createCacheError(e) {
2108
2108
  }
2109
2109
  }
2110
2110
 
2111
- /*! @azure/msal-common v16.1.0 2026-02-24 */
2111
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
2112
2112
 
2113
2113
  /*
2114
2114
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2146,7 +2146,7 @@ function buildClientInfoFromHomeAccountId(homeAccountId) {
2146
2146
  };
2147
2147
  }
2148
2148
 
2149
- /*! @azure/msal-common v16.1.0 2026-02-24 */
2149
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
2150
2150
  /*
2151
2151
  * Copyright (c) Microsoft Corporation. All rights reserved.
2152
2152
  * Licensed under the MIT License.
@@ -2161,7 +2161,7 @@ const AuthorityType = {
2161
2161
  Ciam: 3,
2162
2162
  };
2163
2163
 
2164
- /*! @azure/msal-common v16.1.0 2026-02-24 */
2164
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
2165
2165
  /*
2166
2166
  * Copyright (c) Microsoft Corporation. All rights reserved.
2167
2167
  * Licensed under the MIT License.
@@ -2183,7 +2183,7 @@ function getTenantIdFromIdTokenClaims(idTokenClaims) {
2183
2183
  return null;
2184
2184
  }
2185
2185
 
2186
- /*! @azure/msal-common v16.1.0 2026-02-24 */
2186
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
2187
2187
  /*
2188
2188
  * Copyright (c) Microsoft Corporation. All rights reserved.
2189
2189
  * Licensed under the MIT License.
@@ -2207,7 +2207,7 @@ const ProtocolMode = {
2207
2207
  EAR: "EAR",
2208
2208
  };
2209
2209
 
2210
- /*! @azure/msal-common v16.1.0 2026-02-24 */
2210
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
2211
2211
  /**
2212
2212
  * Returns the AccountInfo interface for this account.
2213
2213
  */
@@ -2382,7 +2382,7 @@ function isAccountEntity(entity) {
2382
2382
  entity.hasOwnProperty("authorityType"));
2383
2383
  }
2384
2384
 
2385
- /*! @azure/msal-common v16.1.0 2026-02-24 */
2385
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
2386
2386
 
2387
2387
  /*
2388
2388
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3479,7 +3479,7 @@ class DefaultStorageClass extends CacheManager {
3479
3479
  }
3480
3480
  }
3481
3481
 
3482
- /*! @azure/msal-common v16.1.0 2026-02-24 */
3482
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
3483
3483
  /*
3484
3484
  * Copyright (c) Microsoft Corporation. All rights reserved.
3485
3485
  * Licensed under the MIT License.
@@ -3494,6 +3494,12 @@ const PerformanceEventStatus = {
3494
3494
  InProgress: 1,
3495
3495
  Completed: 2,
3496
3496
  };
3497
+ /**
3498
+ * Prefix used to mark telemetry field names as dynamic.
3499
+ * Fields with this prefix in addFields/incrementFields calls will be routed
3500
+ * to the PerformanceEvent.ext sub-object.
3501
+ */
3502
+ const EXT_FIELD_PREFIX = "ext.";
3497
3503
  const IntFields = new Set([
3498
3504
  "accessTokenSize",
3499
3505
  "durationMs",
@@ -3520,7 +3526,7 @@ const IntFields = new Set([
3520
3526
  "upgradedCacheCount",
3521
3527
  ]);
3522
3528
 
3523
- /*! @azure/msal-common v16.1.0 2026-02-24 */
3529
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
3524
3530
 
3525
3531
  /*
3526
3532
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3575,7 +3581,7 @@ class StubPerformanceClient {
3575
3581
  }
3576
3582
  }
3577
3583
 
3578
- /*! @azure/msal-common v16.1.0 2026-02-24 */
3584
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
3579
3585
 
3580
3586
  /*
3581
3587
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3669,7 +3675,7 @@ function isOidcProtocolMode(config) {
3669
3675
  return (config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC);
3670
3676
  }
3671
3677
 
3672
- /*! @azure/msal-common v16.1.0 2026-02-24 */
3678
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
3673
3679
 
3674
3680
  /*
3675
3681
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3688,7 +3694,7 @@ class ServerError extends AuthError {
3688
3694
  }
3689
3695
  }
3690
3696
 
3691
- /*! @azure/msal-common v16.1.0 2026-02-24 */
3697
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
3692
3698
  /*
3693
3699
  * Copyright (c) Microsoft Corporation. All rights reserved.
3694
3700
  * Licensed under the MIT License.
@@ -3752,7 +3758,7 @@ var InteractionRequiredAuthErrorCodes = /*#__PURE__*/Object.freeze({
3752
3758
  uxNotAllowed: uxNotAllowed
3753
3759
  });
3754
3760
 
3755
- /*! @azure/msal-common v16.1.0 2026-02-24 */
3761
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
3756
3762
 
3757
3763
  /*
3758
3764
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3820,7 +3826,7 @@ function createInteractionRequiredAuthError(errorCode, errorMessage) {
3820
3826
  return new InteractionRequiredAuthError(errorCode, errorMessage);
3821
3827
  }
3822
3828
 
3823
- /*! @azure/msal-common v16.1.0 2026-02-24 */
3829
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
3824
3830
 
3825
3831
  /*
3826
3832
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3888,7 +3894,7 @@ function parseRequestState(base64Decode, state) {
3888
3894
  }
3889
3895
  }
3890
3896
 
3891
- /*! @azure/msal-common v16.1.0 2026-02-24 */
3897
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
3892
3898
  /*
3893
3899
  * Copyright (c) Microsoft Corporation. All rights reserved.
3894
3900
  * Licensed under the MIT License.
@@ -3953,7 +3959,7 @@ function wasClockTurnedBack(cachedAt) {
3953
3959
  return cachedAtSec > nowSeconds();
3954
3960
  }
3955
3961
 
3956
- /*! @azure/msal-common v16.1.0 2026-02-24 */
3962
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
3957
3963
  /*
3958
3964
  * Copyright (c) Microsoft Corporation. All rights reserved.
3959
3965
  * Licensed under the MIT License.
@@ -4024,7 +4030,7 @@ const RegionDiscoveryGetCurrentVersion = "regionDiscoveryGetCurrentVersion";
4024
4030
  const CacheManagerGetRefreshToken = "cacheManagerGetRefreshToken";
4025
4031
  const SetUserData = "setUserData";
4026
4032
 
4027
- /*! @azure/msal-common v16.1.0 2026-02-24 */
4033
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
4028
4034
  /*
4029
4035
  * Copyright (c) Microsoft Corporation. All rights reserved.
4030
4036
  * Licensed under the MIT License.
@@ -4047,8 +4053,7 @@ const invoke = (callback, eventName, logger, telemetryClient, correlationId) =>
4047
4053
  const inProgressEvent = telemetryClient.startMeasurement(eventName, correlationId);
4048
4054
  if (correlationId) {
4049
4055
  // Track number of times this API is called in a single request
4050
- const eventCount = eventName + "CallCount";
4051
- telemetryClient.incrementFields({ [eventCount]: 1 }, correlationId);
4056
+ telemetryClient.incrementFields({ [`ext.${eventName}CallCount`]: 1 }, correlationId);
4052
4057
  }
4053
4058
  try {
4054
4059
  const result = callback(...args);
@@ -4092,8 +4097,7 @@ const invokeAsync = (callback, eventName, logger, telemetryClient, correlationId
4092
4097
  const inProgressEvent = telemetryClient.startMeasurement(eventName, correlationId);
4093
4098
  if (correlationId) {
4094
4099
  // Track number of times this API is called in a single request
4095
- const eventCount = eventName + "CallCount";
4096
- telemetryClient.incrementFields({ [eventCount]: 1 }, correlationId);
4100
+ telemetryClient.incrementFields({ [`ext.${eventName}CallCount`]: 1 }, correlationId);
4097
4101
  }
4098
4102
  return callback(...args)
4099
4103
  .then((response) => {
@@ -4119,7 +4123,7 @@ const invokeAsync = (callback, eventName, logger, telemetryClient, correlationId
4119
4123
  };
4120
4124
  };
4121
4125
 
4122
- /*! @azure/msal-common v16.1.0 2026-02-24 */
4126
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
4123
4127
 
4124
4128
  /*
4125
4129
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4199,7 +4203,7 @@ class PopTokenGenerator {
4199
4203
  }
4200
4204
  }
4201
4205
 
4202
- /*! @azure/msal-common v16.1.0 2026-02-24 */
4206
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
4203
4207
  /*
4204
4208
  * Copyright (c) Microsoft Corporation. All rights reserved.
4205
4209
  * Licensed under the MIT License.
@@ -4226,7 +4230,7 @@ class PopTokenGenerator {
4226
4230
  }
4227
4231
  }
4228
4232
 
4229
- /*! @azure/msal-common v16.1.0 2026-02-24 */
4233
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
4230
4234
 
4231
4235
  /*
4232
4236
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4485,7 +4489,7 @@ function isAuthorityMetadataExpired(metadata) {
4485
4489
  return metadata.expiresAt <= nowSeconds();
4486
4490
  }
4487
4491
 
4488
- /*! @azure/msal-common v16.1.0 2026-02-24 */
4492
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
4489
4493
 
4490
4494
  /*
4491
4495
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4821,7 +4825,7 @@ function buildAccountToCache(cacheStorage, authority, homeAccountId, base64Decod
4821
4825
  return baseAccount;
4822
4826
  }
4823
4827
 
4824
- /*! @azure/msal-common v16.1.0 2026-02-24 */
4828
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
4825
4829
  /*
4826
4830
  * Copyright (c) Microsoft Corporation. All rights reserved.
4827
4831
  * Licensed under the MIT License.
@@ -4831,7 +4835,7 @@ const CcsCredentialType = {
4831
4835
  UPN: "UPN",
4832
4836
  };
4833
4837
 
4834
- /*! @azure/msal-common v16.1.0 2026-02-24 */
4838
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
4835
4839
  /*
4836
4840
  * Copyright (c) Microsoft Corporation. All rights reserved.
4837
4841
  * Licensed under the MIT License.
@@ -4849,7 +4853,7 @@ async function getClientAssertion(clientAssertion, clientId, tokenEndpoint) {
4849
4853
  }
4850
4854
  }
4851
4855
 
4852
- /*! @azure/msal-common v16.1.0 2026-02-24 */
4856
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
4853
4857
  /*
4854
4858
  * Copyright (c) Microsoft Corporation. All rights reserved.
4855
4859
  * Licensed under the MIT License.
@@ -4870,7 +4874,7 @@ function getRequestThumbprint(clientId, request, homeAccountId) {
4870
4874
  };
4871
4875
  }
4872
4876
 
4873
- /*! @azure/msal-common v16.1.0 2026-02-24 */
4877
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
4874
4878
 
4875
4879
  /*
4876
4880
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4956,7 +4960,7 @@ class ThrottlingUtils {
4956
4960
  }
4957
4961
  }
4958
4962
 
4959
- /*! @azure/msal-common v16.1.0 2026-02-24 */
4963
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
4960
4964
 
4961
4965
  /*
4962
4966
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4987,7 +4991,7 @@ function createNetworkError(error, httpStatus, responseHeaders, additionalError)
4987
4991
  return new NetworkError(error, httpStatus, responseHeaders);
4988
4992
  }
4989
4993
 
4990
- /*! @azure/msal-common v16.1.0 2026-02-24 */
4994
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
4991
4995
 
4992
4996
  /*
4993
4997
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5101,7 +5105,7 @@ async function sendPostRequest(thumbprint, tokenEndpoint, options, correlationId
5101
5105
  return response;
5102
5106
  }
5103
5107
 
5104
- /*! @azure/msal-common v16.1.0 2026-02-24 */
5108
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
5105
5109
  /*
5106
5110
  * Copyright (c) Microsoft Corporation. All rights reserved.
5107
5111
  * Licensed under the MIT License.
@@ -5113,7 +5117,7 @@ function isOpenIdConfigResponse(response) {
5113
5117
  response.hasOwnProperty("jwks_uri"));
5114
5118
  }
5115
5119
 
5116
- /*! @azure/msal-common v16.1.0 2026-02-24 */
5120
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
5117
5121
  /*
5118
5122
  * Copyright (c) Microsoft Corporation. All rights reserved.
5119
5123
  * Licensed under the MIT License.
@@ -5123,7 +5127,7 @@ function isCloudInstanceDiscoveryResponse(response) {
5123
5127
  response.hasOwnProperty("metadata"));
5124
5128
  }
5125
5129
 
5126
- /*! @azure/msal-common v16.1.0 2026-02-24 */
5130
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
5127
5131
  /*
5128
5132
  * Copyright (c) Microsoft Corporation. All rights reserved.
5129
5133
  * Licensed under the MIT License.
@@ -5133,7 +5137,7 @@ function isCloudInstanceDiscoveryErrorResponse(response) {
5133
5137
  response.hasOwnProperty("error_description"));
5134
5138
  }
5135
5139
 
5136
- /*! @azure/msal-common v16.1.0 2026-02-24 */
5140
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
5137
5141
 
5138
5142
  /*
5139
5143
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5238,7 +5242,7 @@ RegionDiscovery.IMDS_OPTIONS = {
5238
5242
  },
5239
5243
  };
5240
5244
 
5241
- /*! @azure/msal-common v16.1.0 2026-02-24 */
5245
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
5242
5246
 
5243
5247
  /*
5244
5248
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6058,7 +6062,7 @@ function buildStaticAuthorityOptions(authOptions) {
6058
6062
  };
6059
6063
  }
6060
6064
 
6061
- /*! @azure/msal-common v16.1.0 2026-02-24 */
6065
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
6062
6066
 
6063
6067
  /*
6064
6068
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6092,7 +6096,7 @@ async function createDiscoveredInstance(authorityUri, networkClient, cacheManage
6092
6096
  }
6093
6097
  }
6094
6098
 
6095
- /*! @azure/msal-common v16.1.0 2026-02-24 */
6099
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
6096
6100
 
6097
6101
  /*
6098
6102
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6352,7 +6356,7 @@ class AuthorizationCodeClient {
6352
6356
  }
6353
6357
  }
6354
6358
 
6355
- /*! @azure/msal-common v16.1.0 2026-02-24 */
6359
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
6356
6360
 
6357
6361
  /*
6358
6362
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6577,7 +6581,7 @@ class RefreshTokenClient {
6577
6581
  }
6578
6582
  }
6579
6583
 
6580
- /*! @azure/msal-common v16.1.0 2026-02-24 */
6584
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
6581
6585
 
6582
6586
  /*
6583
6587
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6686,7 +6690,7 @@ class SilentFlowClient {
6686
6690
  }
6687
6691
  }
6688
6692
 
6689
- /*! @azure/msal-common v16.1.0 2026-02-24 */
6693
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
6690
6694
 
6691
6695
  /*
6692
6696
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6701,7 +6705,7 @@ const StubbedNetworkModule = {
6701
6705
  },
6702
6706
  };
6703
6707
 
6704
- /*! @azure/msal-common v16.1.0 2026-02-24 */
6708
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
6705
6709
 
6706
6710
  /*
6707
6711
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6925,7 +6929,7 @@ function extractLoginHint(account) {
6925
6929
  return account.loginHint || account.idTokenClaims?.login_hint || null;
6926
6930
  }
6927
6931
 
6928
- /*! @azure/msal-common v16.1.0 2026-02-24 */
6932
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
6929
6933
 
6930
6934
  /*
6931
6935
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6983,7 +6987,7 @@ class AuthenticationHeaderParser {
6983
6987
  }
6984
6988
  }
6985
6989
 
6986
- /*! @azure/msal-common v16.1.0 2026-02-24 */
6990
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
6987
6991
  /*
6988
6992
  * Copyright (c) Microsoft Corporation. All rights reserved.
6989
6993
  * Licensed under the MIT License.
@@ -7000,7 +7004,7 @@ var AuthErrorCodes = /*#__PURE__*/Object.freeze({
7000
7004
  unexpectedError: unexpectedError
7001
7005
  });
7002
7006
 
7003
- /*! @azure/msal-common v16.1.0 2026-02-24 */
7007
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
7004
7008
 
7005
7009
  /*
7006
7010
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7261,7 +7265,7 @@ class ServerTelemetryManager {
7261
7265
  }
7262
7266
  }
7263
7267
 
7264
- /*! @azure/msal-common v16.1.0 2026-02-24 */
7268
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
7265
7269
 
7266
7270
  /*
7267
7271
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7282,7 +7286,7 @@ function createJoseHeaderError(code) {
7282
7286
  return new JoseHeaderError(code);
7283
7287
  }
7284
7288
 
7285
- /*! @azure/msal-common v16.1.0 2026-02-24 */
7289
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
7286
7290
  /*
7287
7291
  * Copyright (c) Microsoft Corporation. All rights reserved.
7288
7292
  * Licensed under the MIT License.
@@ -7290,7 +7294,7 @@ function createJoseHeaderError(code) {
7290
7294
  const missingKidError = "missing_kid_error";
7291
7295
  const missingAlgError = "missing_alg_error";
7292
7296
 
7293
- /*! @azure/msal-common v16.1.0 2026-02-24 */
7297
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
7294
7298
 
7295
7299
  /*
7296
7300
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7330,7 +7334,7 @@ class JoseHeader {
7330
7334
  }
7331
7335
  }
7332
7336
 
7333
- /*! @azure/msal-common v16.1.0 2026-02-24 */
7337
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
7334
7338
 
7335
7339
  /*
7336
7340
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7629,9 +7633,13 @@ class PerformanceClient {
7629
7633
  if (error) {
7630
7634
  addError(error, this.logger, rootEvent);
7631
7635
  }
7632
- // Add sub-measurement attribute to root event.
7636
+ // Add sub-measurement attribute to root event's ext field.
7633
7637
  if (!isRoot) {
7634
- rootEvent[event.name + "DurationMs"] = Math.floor(event.durationMs);
7638
+ rootEvent.ext = {
7639
+ ...rootEvent.ext,
7640
+ ...event.ext,
7641
+ };
7642
+ rootEvent.ext[event.name + "DurationMs"] = Math.floor(event.durationMs);
7635
7643
  return { ...rootEvent };
7636
7644
  }
7637
7645
  if (isRoot &&
@@ -7677,10 +7685,32 @@ class PerformanceClient {
7677
7685
  addFields(fields, correlationId) {
7678
7686
  const event = this.eventsByCorrelationId.get(correlationId);
7679
7687
  if (event) {
7680
- this.eventsByCorrelationId.set(correlationId, {
7688
+ const staticFields = {};
7689
+ const dynamicFields = {};
7690
+ for (const key in fields) {
7691
+ if (key.startsWith(EXT_FIELD_PREFIX)) {
7692
+ const dynamicKey = key.slice(EXT_FIELD_PREFIX.length);
7693
+ const value = fields[key];
7694
+ if (typeof value === "string" ||
7695
+ typeof value === "number") {
7696
+ dynamicFields[dynamicKey] = value;
7697
+ }
7698
+ }
7699
+ else {
7700
+ staticFields[key] = fields[key];
7701
+ }
7702
+ }
7703
+ const updatedEvent = {
7681
7704
  ...event,
7682
- ...fields,
7683
- });
7705
+ ...staticFields,
7706
+ };
7707
+ if (Object.keys(dynamicFields).length) {
7708
+ updatedEvent.ext = {
7709
+ ...updatedEvent.ext,
7710
+ ...dynamicFields,
7711
+ };
7712
+ }
7713
+ this.eventsByCorrelationId.set(correlationId, updatedEvent);
7684
7714
  }
7685
7715
  else {
7686
7716
  this.logger.trace("0thl6s", correlationId);
@@ -7695,13 +7725,32 @@ class PerformanceClient {
7695
7725
  const event = this.eventsByCorrelationId.get(correlationId);
7696
7726
  if (event) {
7697
7727
  for (const counter in fields) {
7698
- if (!event.hasOwnProperty(counter)) {
7699
- event[counter] = 0;
7728
+ if (counter.startsWith(EXT_FIELD_PREFIX)) {
7729
+ event.ext = event.ext || {};
7730
+ // Route to ext sub-object
7731
+ const dynamicKey = counter.slice(EXT_FIELD_PREFIX.length);
7732
+ const currentValue = event.ext[dynamicKey];
7733
+ if (currentValue === undefined) {
7734
+ event.ext[dynamicKey] = 0;
7735
+ }
7736
+ else if (isNaN(Number(currentValue))) {
7737
+ return;
7738
+ }
7739
+ event.ext[dynamicKey] =
7740
+ (Number(event.ext[dynamicKey]) || 0) +
7741
+ (fields[counter] ?? 0);
7700
7742
  }
7701
- else if (isNaN(Number(event[counter]))) {
7702
- return;
7743
+ else {
7744
+ /* eslint-disable custom-msal/no-dynamic-telemetry-fields -- internal dispatching of static fields by name */
7745
+ if (!event.hasOwnProperty(counter)) {
7746
+ event[counter] = 0;
7747
+ }
7748
+ else if (isNaN(Number(event[counter]))) {
7749
+ return;
7750
+ }
7751
+ event[counter] += fields[counter];
7752
+ /* eslint-enable custom-msal/no-dynamic-telemetry-fields */
7703
7753
  }
7704
- event[counter] += fields[counter];
7705
7754
  }
7706
7755
  }
7707
7756
  else {
@@ -7794,9 +7843,11 @@ class PerformanceClient {
7794
7843
  */
7795
7844
  truncateIntegralFields(event) {
7796
7845
  this.intFields.forEach((key) => {
7846
+ /* eslint-disable custom-msal/no-dynamic-telemetry-fields -- internal truncation of known integer fields */
7797
7847
  if (key in event && typeof event[key] === "number") {
7798
7848
  event[key] = Math.floor(event[key]);
7799
7849
  }
7850
+ /* eslint-enable custom-msal/no-dynamic-telemetry-fields */
7800
7851
  });
7801
7852
  }
7802
7853
  /**
@@ -10156,7 +10207,7 @@ const EventType = {
10156
10207
 
10157
10208
  /* eslint-disable header/header */
10158
10209
  const name = "@azure/msal-browser";
10159
- const version = "5.3.0";
10210
+ const version = "5.4.0";
10160
10211
 
10161
10212
  /*
10162
10213
  * Copyright (c) Microsoft Corporation. All rights reserved.