@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,4 +1,4 @@
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
  (function (global, factory) {
4
4
  typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
@@ -6,7 +6,7 @@
6
6
  (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.msal = {}));
7
7
  })(this, (function (exports) { 'use strict';
8
8
 
9
- /*! @azure/msal-common v16.1.0 2026-02-24 */
9
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
10
10
  /*
11
11
  * Copyright (c) Microsoft Corporation. All rights reserved.
12
12
  * Licensed under the MIT License.
@@ -238,7 +238,7 @@
238
238
  // Token renewal offset default in seconds
239
239
  const DEFAULT_TOKEN_RENEWAL_OFFSET_SEC = 300;
240
240
 
241
- /*! @azure/msal-common v16.1.0 2026-02-24 */
241
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
242
242
  /*
243
243
  * Copyright (c) Microsoft Corporation. All rights reserved.
244
244
  * Licensed under the MIT License.
@@ -288,7 +288,7 @@
288
288
  const EAR_JWK = "ear_jwk";
289
289
  const EAR_JWE_CRYPTO = "ear_jwe_crypto";
290
290
 
291
- /*! @azure/msal-common v16.1.0 2026-02-24 */
291
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
292
292
  /*
293
293
  * Copyright (c) Microsoft Corporation. All rights reserved.
294
294
  * Licensed under the MIT License.
@@ -319,7 +319,7 @@
319
319
  return new AuthError(code, additionalMessage || getDefaultErrorMessage$1(code));
320
320
  }
321
321
 
322
- /*! @azure/msal-common v16.1.0 2026-02-24 */
322
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
323
323
 
324
324
  /*
325
325
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -339,7 +339,7 @@
339
339
  return new ClientConfigurationError(errorCode);
340
340
  }
341
341
 
342
- /*! @azure/msal-common v16.1.0 2026-02-24 */
342
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
343
343
  /*
344
344
  * Copyright (c) Microsoft Corporation. All rights reserved.
345
345
  * Licensed under the MIT License.
@@ -419,7 +419,7 @@
419
419
  }
420
420
  }
421
421
 
422
- /*! @azure/msal-common v16.1.0 2026-02-24 */
422
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
423
423
 
424
424
  /*
425
425
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -442,7 +442,7 @@
442
442
  return new ClientAuthError(errorCode, additionalMessage);
443
443
  }
444
444
 
445
- /*! @azure/msal-common v16.1.0 2026-02-24 */
445
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
446
446
  /*
447
447
  * Copyright (c) Microsoft Corporation. All rights reserved.
448
448
  * Licensed under the MIT License.
@@ -496,7 +496,7 @@
496
496
  urlParseError: urlParseError
497
497
  });
498
498
 
499
- /*! @azure/msal-common v16.1.0 2026-02-24 */
499
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
500
500
  /*
501
501
  * Copyright (c) Microsoft Corporation. All rights reserved.
502
502
  * Licensed under the MIT License.
@@ -580,7 +580,7 @@
580
580
  userCanceled: userCanceled
581
581
  });
582
582
 
583
- /*! @azure/msal-common v16.1.0 2026-02-24 */
583
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
584
584
 
585
585
  /*
586
586
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -775,7 +775,7 @@
775
775
  }
776
776
  }
777
777
 
778
- /*! @azure/msal-common v16.1.0 2026-02-24 */
778
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
779
779
 
780
780
  /*
781
781
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1142,7 +1142,7 @@
1142
1142
  parameters.set(EAR_JWE_CRYPTO, jweCryptoB64Encoded);
1143
1143
  }
1144
1144
 
1145
- /*! @azure/msal-common v16.1.0 2026-02-24 */
1145
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
1146
1146
 
1147
1147
  /*
1148
1148
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1251,7 +1251,7 @@
1251
1251
  }
1252
1252
  }
1253
1253
 
1254
- /*! @azure/msal-common v16.1.0 2026-02-24 */
1254
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
1255
1255
 
1256
1256
  /*
1257
1257
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1290,7 +1290,7 @@
1290
1290
  },
1291
1291
  };
1292
1292
 
1293
- /*! @azure/msal-common v16.1.0 2026-02-24 */
1293
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
1294
1294
  /*
1295
1295
  * Copyright (c) Microsoft Corporation. All rights reserved.
1296
1296
  * Licensed under the MIT License.
@@ -1565,12 +1565,12 @@
1565
1565
  }
1566
1566
  }
1567
1567
 
1568
- /*! @azure/msal-common v16.1.0 2026-02-24 */
1568
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
1569
1569
  /* eslint-disable header/header */
1570
1570
  const name$1 = "@azure/msal-common";
1571
- const version$1 = "16.1.0";
1571
+ const version$1 = "16.2.0";
1572
1572
 
1573
- /*! @azure/msal-common v16.1.0 2026-02-24 */
1573
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
1574
1574
  /*
1575
1575
  * Copyright (c) Microsoft Corporation. All rights reserved.
1576
1576
  * Licensed under the MIT License.
@@ -1590,7 +1590,7 @@
1590
1590
  AzureUsGovernment: "https://login.microsoftonline.us",
1591
1591
  };
1592
1592
 
1593
- /*! @azure/msal-common v16.1.0 2026-02-24 */
1593
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
1594
1594
  /*
1595
1595
  * Copyright (c) Microsoft Corporation. All rights reserved.
1596
1596
  * Licensed under the MIT License.
@@ -1672,7 +1672,7 @@
1672
1672
  return updatedAccountInfo;
1673
1673
  }
1674
1674
 
1675
- /*! @azure/msal-common v16.1.0 2026-02-24 */
1675
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
1676
1676
 
1677
1677
  /*
1678
1678
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1752,7 +1752,7 @@
1752
1752
  }
1753
1753
  }
1754
1754
 
1755
- /*! @azure/msal-common v16.1.0 2026-02-24 */
1755
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
1756
1756
 
1757
1757
  /*
1758
1758
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1909,7 +1909,7 @@
1909
1909
  }
1910
1910
  }
1911
1911
 
1912
- /*! @azure/msal-common v16.1.0 2026-02-24 */
1912
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
1913
1913
 
1914
1914
  /*
1915
1915
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2066,7 +2066,7 @@
2066
2066
  return null;
2067
2067
  }
2068
2068
 
2069
- /*! @azure/msal-common v16.1.0 2026-02-24 */
2069
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
2070
2070
  /*
2071
2071
  * Copyright (c) Microsoft Corporation. All rights reserved.
2072
2072
  * Licensed under the MIT License.
@@ -2074,7 +2074,7 @@
2074
2074
  const cacheQuotaExceeded = "cache_quota_exceeded";
2075
2075
  const cacheErrorUnknown = "cache_error_unknown";
2076
2076
 
2077
- /*! @azure/msal-common v16.1.0 2026-02-24 */
2077
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
2078
2078
 
2079
2079
  /*
2080
2080
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2112,7 +2112,7 @@
2112
2112
  }
2113
2113
  }
2114
2114
 
2115
- /*! @azure/msal-common v16.1.0 2026-02-24 */
2115
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
2116
2116
 
2117
2117
  /*
2118
2118
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -2150,7 +2150,7 @@
2150
2150
  };
2151
2151
  }
2152
2152
 
2153
- /*! @azure/msal-common v16.1.0 2026-02-24 */
2153
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
2154
2154
  /*
2155
2155
  * Copyright (c) Microsoft Corporation. All rights reserved.
2156
2156
  * Licensed under the MIT License.
@@ -2165,7 +2165,7 @@
2165
2165
  Ciam: 3,
2166
2166
  };
2167
2167
 
2168
- /*! @azure/msal-common v16.1.0 2026-02-24 */
2168
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
2169
2169
  /*
2170
2170
  * Copyright (c) Microsoft Corporation. All rights reserved.
2171
2171
  * Licensed under the MIT License.
@@ -2187,7 +2187,7 @@
2187
2187
  return null;
2188
2188
  }
2189
2189
 
2190
- /*! @azure/msal-common v16.1.0 2026-02-24 */
2190
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
2191
2191
  /*
2192
2192
  * Copyright (c) Microsoft Corporation. All rights reserved.
2193
2193
  * Licensed under the MIT License.
@@ -2211,7 +2211,7 @@
2211
2211
  EAR: "EAR",
2212
2212
  };
2213
2213
 
2214
- /*! @azure/msal-common v16.1.0 2026-02-24 */
2214
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
2215
2215
  /**
2216
2216
  * Returns the AccountInfo interface for this account.
2217
2217
  */
@@ -2386,7 +2386,7 @@
2386
2386
  entity.hasOwnProperty("authorityType"));
2387
2387
  }
2388
2388
 
2389
- /*! @azure/msal-common v16.1.0 2026-02-24 */
2389
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
2390
2390
 
2391
2391
  /*
2392
2392
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3483,7 +3483,7 @@
3483
3483
  }
3484
3484
  }
3485
3485
 
3486
- /*! @azure/msal-common v16.1.0 2026-02-24 */
3486
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
3487
3487
  /*
3488
3488
  * Copyright (c) Microsoft Corporation. All rights reserved.
3489
3489
  * Licensed under the MIT License.
@@ -3498,6 +3498,12 @@
3498
3498
  InProgress: 1,
3499
3499
  Completed: 2,
3500
3500
  };
3501
+ /**
3502
+ * Prefix used to mark telemetry field names as dynamic.
3503
+ * Fields with this prefix in addFields/incrementFields calls will be routed
3504
+ * to the PerformanceEvent.ext sub-object.
3505
+ */
3506
+ const EXT_FIELD_PREFIX = "ext.";
3501
3507
  const IntFields = new Set([
3502
3508
  "accessTokenSize",
3503
3509
  "durationMs",
@@ -3524,7 +3530,7 @@
3524
3530
  "upgradedCacheCount",
3525
3531
  ]);
3526
3532
 
3527
- /*! @azure/msal-common v16.1.0 2026-02-24 */
3533
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
3528
3534
 
3529
3535
  /*
3530
3536
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3579,7 +3585,7 @@
3579
3585
  }
3580
3586
  }
3581
3587
 
3582
- /*! @azure/msal-common v16.1.0 2026-02-24 */
3588
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
3583
3589
 
3584
3590
  /*
3585
3591
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3673,7 +3679,7 @@
3673
3679
  return (config.authOptions.authority.options.protocolMode === ProtocolMode.OIDC);
3674
3680
  }
3675
3681
 
3676
- /*! @azure/msal-common v16.1.0 2026-02-24 */
3682
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
3677
3683
 
3678
3684
  /*
3679
3685
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3692,7 +3698,7 @@
3692
3698
  }
3693
3699
  }
3694
3700
 
3695
- /*! @azure/msal-common v16.1.0 2026-02-24 */
3701
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
3696
3702
  /*
3697
3703
  * Copyright (c) Microsoft Corporation. All rights reserved.
3698
3704
  * Licensed under the MIT License.
@@ -3756,7 +3762,7 @@
3756
3762
  uxNotAllowed: uxNotAllowed
3757
3763
  });
3758
3764
 
3759
- /*! @azure/msal-common v16.1.0 2026-02-24 */
3765
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
3760
3766
 
3761
3767
  /*
3762
3768
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3824,7 +3830,7 @@
3824
3830
  return new InteractionRequiredAuthError(errorCode, errorMessage);
3825
3831
  }
3826
3832
 
3827
- /*! @azure/msal-common v16.1.0 2026-02-24 */
3833
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
3828
3834
 
3829
3835
  /*
3830
3836
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -3892,7 +3898,7 @@
3892
3898
  }
3893
3899
  }
3894
3900
 
3895
- /*! @azure/msal-common v16.1.0 2026-02-24 */
3901
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
3896
3902
  /*
3897
3903
  * Copyright (c) Microsoft Corporation. All rights reserved.
3898
3904
  * Licensed under the MIT License.
@@ -3957,7 +3963,7 @@
3957
3963
  return cachedAtSec > nowSeconds();
3958
3964
  }
3959
3965
 
3960
- /*! @azure/msal-common v16.1.0 2026-02-24 */
3966
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
3961
3967
  /*
3962
3968
  * Copyright (c) Microsoft Corporation. All rights reserved.
3963
3969
  * Licensed under the MIT License.
@@ -4028,7 +4034,7 @@
4028
4034
  const CacheManagerGetRefreshToken = "cacheManagerGetRefreshToken";
4029
4035
  const SetUserData = "setUserData";
4030
4036
 
4031
- /*! @azure/msal-common v16.1.0 2026-02-24 */
4037
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
4032
4038
  /*
4033
4039
  * Copyright (c) Microsoft Corporation. All rights reserved.
4034
4040
  * Licensed under the MIT License.
@@ -4051,8 +4057,7 @@
4051
4057
  const inProgressEvent = telemetryClient.startMeasurement(eventName, correlationId);
4052
4058
  if (correlationId) {
4053
4059
  // Track number of times this API is called in a single request
4054
- const eventCount = eventName + "CallCount";
4055
- telemetryClient.incrementFields({ [eventCount]: 1 }, correlationId);
4060
+ telemetryClient.incrementFields({ [`ext.${eventName}CallCount`]: 1 }, correlationId);
4056
4061
  }
4057
4062
  try {
4058
4063
  const result = callback(...args);
@@ -4096,8 +4101,7 @@
4096
4101
  const inProgressEvent = telemetryClient.startMeasurement(eventName, correlationId);
4097
4102
  if (correlationId) {
4098
4103
  // Track number of times this API is called in a single request
4099
- const eventCount = eventName + "CallCount";
4100
- telemetryClient.incrementFields({ [eventCount]: 1 }, correlationId);
4104
+ telemetryClient.incrementFields({ [`ext.${eventName}CallCount`]: 1 }, correlationId);
4101
4105
  }
4102
4106
  return callback(...args)
4103
4107
  .then((response) => {
@@ -4123,7 +4127,7 @@
4123
4127
  };
4124
4128
  };
4125
4129
 
4126
- /*! @azure/msal-common v16.1.0 2026-02-24 */
4130
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
4127
4131
 
4128
4132
  /*
4129
4133
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4203,7 +4207,7 @@
4203
4207
  }
4204
4208
  }
4205
4209
 
4206
- /*! @azure/msal-common v16.1.0 2026-02-24 */
4210
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
4207
4211
  /*
4208
4212
  * Copyright (c) Microsoft Corporation. All rights reserved.
4209
4213
  * Licensed under the MIT License.
@@ -4230,7 +4234,7 @@
4230
4234
  }
4231
4235
  }
4232
4236
 
4233
- /*! @azure/msal-common v16.1.0 2026-02-24 */
4237
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
4234
4238
 
4235
4239
  /*
4236
4240
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4489,7 +4493,7 @@
4489
4493
  return metadata.expiresAt <= nowSeconds();
4490
4494
  }
4491
4495
 
4492
- /*! @azure/msal-common v16.1.0 2026-02-24 */
4496
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
4493
4497
 
4494
4498
  /*
4495
4499
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4825,7 +4829,7 @@
4825
4829
  return baseAccount;
4826
4830
  }
4827
4831
 
4828
- /*! @azure/msal-common v16.1.0 2026-02-24 */
4832
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
4829
4833
  /*
4830
4834
  * Copyright (c) Microsoft Corporation. All rights reserved.
4831
4835
  * Licensed under the MIT License.
@@ -4835,7 +4839,7 @@
4835
4839
  UPN: "UPN",
4836
4840
  };
4837
4841
 
4838
- /*! @azure/msal-common v16.1.0 2026-02-24 */
4842
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
4839
4843
  /*
4840
4844
  * Copyright (c) Microsoft Corporation. All rights reserved.
4841
4845
  * Licensed under the MIT License.
@@ -4853,7 +4857,7 @@
4853
4857
  }
4854
4858
  }
4855
4859
 
4856
- /*! @azure/msal-common v16.1.0 2026-02-24 */
4860
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
4857
4861
  /*
4858
4862
  * Copyright (c) Microsoft Corporation. All rights reserved.
4859
4863
  * Licensed under the MIT License.
@@ -4874,7 +4878,7 @@
4874
4878
  };
4875
4879
  }
4876
4880
 
4877
- /*! @azure/msal-common v16.1.0 2026-02-24 */
4881
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
4878
4882
 
4879
4883
  /*
4880
4884
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4960,7 +4964,7 @@
4960
4964
  }
4961
4965
  }
4962
4966
 
4963
- /*! @azure/msal-common v16.1.0 2026-02-24 */
4967
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
4964
4968
 
4965
4969
  /*
4966
4970
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -4991,7 +4995,7 @@
4991
4995
  return new NetworkError(error, httpStatus, responseHeaders);
4992
4996
  }
4993
4997
 
4994
- /*! @azure/msal-common v16.1.0 2026-02-24 */
4998
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
4995
4999
 
4996
5000
  /*
4997
5001
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5105,7 +5109,7 @@
5105
5109
  return response;
5106
5110
  }
5107
5111
 
5108
- /*! @azure/msal-common v16.1.0 2026-02-24 */
5112
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
5109
5113
  /*
5110
5114
  * Copyright (c) Microsoft Corporation. All rights reserved.
5111
5115
  * Licensed under the MIT License.
@@ -5117,7 +5121,7 @@
5117
5121
  response.hasOwnProperty("jwks_uri"));
5118
5122
  }
5119
5123
 
5120
- /*! @azure/msal-common v16.1.0 2026-02-24 */
5124
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
5121
5125
  /*
5122
5126
  * Copyright (c) Microsoft Corporation. All rights reserved.
5123
5127
  * Licensed under the MIT License.
@@ -5127,7 +5131,7 @@
5127
5131
  response.hasOwnProperty("metadata"));
5128
5132
  }
5129
5133
 
5130
- /*! @azure/msal-common v16.1.0 2026-02-24 */
5134
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
5131
5135
  /*
5132
5136
  * Copyright (c) Microsoft Corporation. All rights reserved.
5133
5137
  * Licensed under the MIT License.
@@ -5137,7 +5141,7 @@
5137
5141
  response.hasOwnProperty("error_description"));
5138
5142
  }
5139
5143
 
5140
- /*! @azure/msal-common v16.1.0 2026-02-24 */
5144
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
5141
5145
 
5142
5146
  /*
5143
5147
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -5242,7 +5246,7 @@
5242
5246
  },
5243
5247
  };
5244
5248
 
5245
- /*! @azure/msal-common v16.1.0 2026-02-24 */
5249
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
5246
5250
 
5247
5251
  /*
5248
5252
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6062,7 +6066,7 @@
6062
6066
  };
6063
6067
  }
6064
6068
 
6065
- /*! @azure/msal-common v16.1.0 2026-02-24 */
6069
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
6066
6070
 
6067
6071
  /*
6068
6072
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6096,7 +6100,7 @@
6096
6100
  }
6097
6101
  }
6098
6102
 
6099
- /*! @azure/msal-common v16.1.0 2026-02-24 */
6103
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
6100
6104
 
6101
6105
  /*
6102
6106
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6356,7 +6360,7 @@
6356
6360
  }
6357
6361
  }
6358
6362
 
6359
- /*! @azure/msal-common v16.1.0 2026-02-24 */
6363
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
6360
6364
 
6361
6365
  /*
6362
6366
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6581,7 +6585,7 @@
6581
6585
  }
6582
6586
  }
6583
6587
 
6584
- /*! @azure/msal-common v16.1.0 2026-02-24 */
6588
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
6585
6589
 
6586
6590
  /*
6587
6591
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6690,7 +6694,7 @@
6690
6694
  }
6691
6695
  }
6692
6696
 
6693
- /*! @azure/msal-common v16.1.0 2026-02-24 */
6697
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
6694
6698
 
6695
6699
  /*
6696
6700
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6705,7 +6709,7 @@
6705
6709
  },
6706
6710
  };
6707
6711
 
6708
- /*! @azure/msal-common v16.1.0 2026-02-24 */
6712
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
6709
6713
 
6710
6714
  /*
6711
6715
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6929,7 +6933,7 @@
6929
6933
  return account.loginHint || account.idTokenClaims?.login_hint || null;
6930
6934
  }
6931
6935
 
6932
- /*! @azure/msal-common v16.1.0 2026-02-24 */
6936
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
6933
6937
 
6934
6938
  /*
6935
6939
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -6987,7 +6991,7 @@
6987
6991
  }
6988
6992
  }
6989
6993
 
6990
- /*! @azure/msal-common v16.1.0 2026-02-24 */
6994
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
6991
6995
  /*
6992
6996
  * Copyright (c) Microsoft Corporation. All rights reserved.
6993
6997
  * Licensed under the MIT License.
@@ -7004,7 +7008,7 @@
7004
7008
  unexpectedError: unexpectedError
7005
7009
  });
7006
7010
 
7007
- /*! @azure/msal-common v16.1.0 2026-02-24 */
7011
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
7008
7012
 
7009
7013
  /*
7010
7014
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7265,7 +7269,7 @@
7265
7269
  }
7266
7270
  }
7267
7271
 
7268
- /*! @azure/msal-common v16.1.0 2026-02-24 */
7272
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
7269
7273
 
7270
7274
  /*
7271
7275
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7286,7 +7290,7 @@
7286
7290
  return new JoseHeaderError(code);
7287
7291
  }
7288
7292
 
7289
- /*! @azure/msal-common v16.1.0 2026-02-24 */
7293
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
7290
7294
  /*
7291
7295
  * Copyright (c) Microsoft Corporation. All rights reserved.
7292
7296
  * Licensed under the MIT License.
@@ -7294,7 +7298,7 @@
7294
7298
  const missingKidError = "missing_kid_error";
7295
7299
  const missingAlgError = "missing_alg_error";
7296
7300
 
7297
- /*! @azure/msal-common v16.1.0 2026-02-24 */
7301
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
7298
7302
 
7299
7303
  /*
7300
7304
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7334,7 +7338,7 @@
7334
7338
  }
7335
7339
  }
7336
7340
 
7337
- /*! @azure/msal-common v16.1.0 2026-02-24 */
7341
+ /*! @azure/msal-common v16.2.0 2026-03-02 */
7338
7342
 
7339
7343
  /*
7340
7344
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -7633,9 +7637,13 @@
7633
7637
  if (error) {
7634
7638
  addError(error, this.logger, rootEvent);
7635
7639
  }
7636
- // Add sub-measurement attribute to root event.
7640
+ // Add sub-measurement attribute to root event's ext field.
7637
7641
  if (!isRoot) {
7638
- rootEvent[event.name + "DurationMs"] = Math.floor(event.durationMs);
7642
+ rootEvent.ext = {
7643
+ ...rootEvent.ext,
7644
+ ...event.ext,
7645
+ };
7646
+ rootEvent.ext[event.name + "DurationMs"] = Math.floor(event.durationMs);
7639
7647
  return { ...rootEvent };
7640
7648
  }
7641
7649
  if (isRoot &&
@@ -7681,10 +7689,32 @@
7681
7689
  addFields(fields, correlationId) {
7682
7690
  const event = this.eventsByCorrelationId.get(correlationId);
7683
7691
  if (event) {
7684
- this.eventsByCorrelationId.set(correlationId, {
7692
+ const staticFields = {};
7693
+ const dynamicFields = {};
7694
+ for (const key in fields) {
7695
+ if (key.startsWith(EXT_FIELD_PREFIX)) {
7696
+ const dynamicKey = key.slice(EXT_FIELD_PREFIX.length);
7697
+ const value = fields[key];
7698
+ if (typeof value === "string" ||
7699
+ typeof value === "number") {
7700
+ dynamicFields[dynamicKey] = value;
7701
+ }
7702
+ }
7703
+ else {
7704
+ staticFields[key] = fields[key];
7705
+ }
7706
+ }
7707
+ const updatedEvent = {
7685
7708
  ...event,
7686
- ...fields,
7687
- });
7709
+ ...staticFields,
7710
+ };
7711
+ if (Object.keys(dynamicFields).length) {
7712
+ updatedEvent.ext = {
7713
+ ...updatedEvent.ext,
7714
+ ...dynamicFields,
7715
+ };
7716
+ }
7717
+ this.eventsByCorrelationId.set(correlationId, updatedEvent);
7688
7718
  }
7689
7719
  else {
7690
7720
  this.logger.trace("0thl6s", correlationId);
@@ -7699,13 +7729,32 @@
7699
7729
  const event = this.eventsByCorrelationId.get(correlationId);
7700
7730
  if (event) {
7701
7731
  for (const counter in fields) {
7702
- if (!event.hasOwnProperty(counter)) {
7703
- event[counter] = 0;
7732
+ if (counter.startsWith(EXT_FIELD_PREFIX)) {
7733
+ event.ext = event.ext || {};
7734
+ // Route to ext sub-object
7735
+ const dynamicKey = counter.slice(EXT_FIELD_PREFIX.length);
7736
+ const currentValue = event.ext[dynamicKey];
7737
+ if (currentValue === undefined) {
7738
+ event.ext[dynamicKey] = 0;
7739
+ }
7740
+ else if (isNaN(Number(currentValue))) {
7741
+ return;
7742
+ }
7743
+ event.ext[dynamicKey] =
7744
+ (Number(event.ext[dynamicKey]) || 0) +
7745
+ (fields[counter] ?? 0);
7704
7746
  }
7705
- else if (isNaN(Number(event[counter]))) {
7706
- return;
7747
+ else {
7748
+ /* eslint-disable custom-msal/no-dynamic-telemetry-fields -- internal dispatching of static fields by name */
7749
+ if (!event.hasOwnProperty(counter)) {
7750
+ event[counter] = 0;
7751
+ }
7752
+ else if (isNaN(Number(event[counter]))) {
7753
+ return;
7754
+ }
7755
+ event[counter] += fields[counter];
7756
+ /* eslint-enable custom-msal/no-dynamic-telemetry-fields */
7707
7757
  }
7708
- event[counter] += fields[counter];
7709
7758
  }
7710
7759
  }
7711
7760
  else {
@@ -7798,9 +7847,11 @@
7798
7847
  */
7799
7848
  truncateIntegralFields(event) {
7800
7849
  this.intFields.forEach((key) => {
7850
+ /* eslint-disable custom-msal/no-dynamic-telemetry-fields -- internal truncation of known integer fields */
7801
7851
  if (key in event && typeof event[key] === "number") {
7802
7852
  event[key] = Math.floor(event[key]);
7803
7853
  }
7854
+ /* eslint-enable custom-msal/no-dynamic-telemetry-fields */
7804
7855
  });
7805
7856
  }
7806
7857
  /**
@@ -10160,7 +10211,7 @@
10160
10211
 
10161
10212
  /* eslint-disable header/header */
10162
10213
  const name = "@azure/msal-browser";
10163
- const version = "5.3.0";
10214
+ const version = "5.4.0";
10164
10215
 
10165
10216
  /*
10166
10217
  * Copyright (c) Microsoft Corporation. All rights reserved.