@azure/msal-browser 4.18.0 → 4.19.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 (438) hide show
  1. package/dist/app/IPublicClientApplication.mjs +1 -1
  2. package/dist/app/PublicClientApplication.mjs +1 -1
  3. package/dist/app/PublicClientNext.mjs +1 -1
  4. package/dist/broker/nativeBroker/NativeStatusCodes.mjs +1 -1
  5. package/dist/broker/nativeBroker/PlatformAuthDOMHandler.mjs +1 -1
  6. package/dist/broker/nativeBroker/PlatformAuthExtensionHandler.mjs +1 -1
  7. package/dist/broker/nativeBroker/PlatformAuthProvider.d.ts.map +1 -1
  8. package/dist/broker/nativeBroker/PlatformAuthProvider.mjs +3 -2
  9. package/dist/broker/nativeBroker/PlatformAuthProvider.mjs.map +1 -1
  10. package/dist/cache/AccountManager.mjs +1 -1
  11. package/dist/cache/AsyncMemoryStorage.mjs +1 -1
  12. package/dist/cache/BrowserCacheManager.d.ts +26 -11
  13. package/dist/cache/BrowserCacheManager.d.ts.map +1 -1
  14. package/dist/cache/BrowserCacheManager.mjs +239 -56
  15. package/dist/cache/BrowserCacheManager.mjs.map +1 -1
  16. package/dist/cache/CacheHelpers.d.ts +2 -2
  17. package/dist/cache/CacheHelpers.d.ts.map +1 -1
  18. package/dist/cache/CacheHelpers.mjs +6 -6
  19. package/dist/cache/CacheHelpers.mjs.map +1 -1
  20. package/dist/cache/CacheKeys.d.ts +14 -0
  21. package/dist/cache/CacheKeys.d.ts.map +1 -0
  22. package/dist/cache/CacheKeys.mjs +33 -0
  23. package/dist/cache/CacheKeys.mjs.map +1 -0
  24. package/dist/cache/CookieStorage.d.ts +1 -0
  25. package/dist/cache/CookieStorage.d.ts.map +1 -1
  26. package/dist/cache/CookieStorage.mjs +5 -1
  27. package/dist/cache/CookieStorage.mjs.map +1 -1
  28. package/dist/cache/DatabaseStorage.mjs +1 -1
  29. package/dist/cache/EncryptedData.d.ts +8 -0
  30. package/dist/cache/EncryptedData.d.ts.map +1 -0
  31. package/dist/cache/EncryptedData.mjs +14 -0
  32. package/dist/cache/EncryptedData.mjs.map +1 -0
  33. package/dist/cache/IWindowStorage.d.ts +2 -0
  34. package/dist/cache/IWindowStorage.d.ts.map +1 -1
  35. package/dist/cache/LocalStorage.d.ts +2 -0
  36. package/dist/cache/LocalStorage.d.ts.map +1 -1
  37. package/dist/cache/LocalStorage.mjs +46 -13
  38. package/dist/cache/LocalStorage.mjs.map +1 -1
  39. package/dist/cache/MemoryStorage.d.ts +1 -0
  40. package/dist/cache/MemoryStorage.d.ts.map +1 -1
  41. package/dist/cache/MemoryStorage.mjs +5 -1
  42. package/dist/cache/MemoryStorage.mjs.map +1 -1
  43. package/dist/cache/SessionStorage.d.ts +1 -0
  44. package/dist/cache/SessionStorage.d.ts.map +1 -1
  45. package/dist/cache/SessionStorage.mjs +5 -1
  46. package/dist/cache/SessionStorage.mjs.map +1 -1
  47. package/dist/cache/TokenCache.mjs +1 -1
  48. package/dist/config/Configuration.d.ts +4 -0
  49. package/dist/config/Configuration.d.ts.map +1 -1
  50. package/dist/config/Configuration.mjs +2 -1
  51. package/dist/config/Configuration.mjs.map +1 -1
  52. package/dist/controllers/ControllerFactory.mjs +1 -1
  53. package/dist/controllers/NestedAppAuthController.mjs +1 -1
  54. package/dist/controllers/StandardController.d.ts.map +1 -1
  55. package/dist/controllers/StandardController.mjs +2 -1
  56. package/dist/controllers/StandardController.mjs.map +1 -1
  57. package/dist/controllers/UnknownOperatingContextController.mjs +1 -1
  58. package/dist/crypto/BrowserCrypto.mjs +1 -1
  59. package/dist/crypto/CryptoOps.mjs +1 -1
  60. package/dist/crypto/PkceGenerator.mjs +1 -1
  61. package/dist/crypto/SignedHttpRequest.mjs +1 -1
  62. package/dist/custom-auth-path/app/PublicClientApplication.mjs +1 -1
  63. package/dist/custom-auth-path/broker/nativeBroker/NativeStatusCodes.mjs +1 -1
  64. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.mjs +1 -1
  65. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.mjs +1 -1
  66. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.d.ts.map +1 -1
  67. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.mjs +3 -2
  68. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.mjs.map +1 -1
  69. package/dist/custom-auth-path/cache/AccountManager.mjs +1 -1
  70. package/dist/custom-auth-path/cache/AsyncMemoryStorage.mjs +1 -1
  71. package/dist/custom-auth-path/cache/BrowserCacheManager.d.ts +26 -11
  72. package/dist/custom-auth-path/cache/BrowserCacheManager.d.ts.map +1 -1
  73. package/dist/custom-auth-path/cache/BrowserCacheManager.mjs +239 -56
  74. package/dist/custom-auth-path/cache/BrowserCacheManager.mjs.map +1 -1
  75. package/dist/custom-auth-path/cache/CacheHelpers.d.ts +2 -2
  76. package/dist/custom-auth-path/cache/CacheHelpers.d.ts.map +1 -1
  77. package/dist/custom-auth-path/cache/CacheHelpers.mjs +6 -6
  78. package/dist/custom-auth-path/cache/CacheHelpers.mjs.map +1 -1
  79. package/dist/custom-auth-path/cache/CacheKeys.d.ts +14 -0
  80. package/dist/custom-auth-path/cache/CacheKeys.d.ts.map +1 -0
  81. package/dist/custom-auth-path/cache/CacheKeys.mjs +32 -0
  82. package/dist/custom-auth-path/cache/CacheKeys.mjs.map +1 -0
  83. package/dist/custom-auth-path/cache/CookieStorage.d.ts +1 -0
  84. package/dist/custom-auth-path/cache/CookieStorage.d.ts.map +1 -1
  85. package/dist/custom-auth-path/cache/CookieStorage.mjs +5 -1
  86. package/dist/custom-auth-path/cache/CookieStorage.mjs.map +1 -1
  87. package/dist/custom-auth-path/cache/DatabaseStorage.mjs +1 -1
  88. package/dist/custom-auth-path/cache/EncryptedData.d.ts +8 -0
  89. package/dist/custom-auth-path/cache/EncryptedData.d.ts.map +1 -0
  90. package/dist/custom-auth-path/cache/EncryptedData.mjs +14 -0
  91. package/dist/custom-auth-path/cache/EncryptedData.mjs.map +1 -0
  92. package/dist/custom-auth-path/cache/IWindowStorage.d.ts +2 -0
  93. package/dist/custom-auth-path/cache/IWindowStorage.d.ts.map +1 -1
  94. package/dist/custom-auth-path/cache/LocalStorage.d.ts +2 -0
  95. package/dist/custom-auth-path/cache/LocalStorage.d.ts.map +1 -1
  96. package/dist/custom-auth-path/cache/LocalStorage.mjs +46 -13
  97. package/dist/custom-auth-path/cache/LocalStorage.mjs.map +1 -1
  98. package/dist/custom-auth-path/cache/MemoryStorage.d.ts +1 -0
  99. package/dist/custom-auth-path/cache/MemoryStorage.d.ts.map +1 -1
  100. package/dist/custom-auth-path/cache/MemoryStorage.mjs +5 -1
  101. package/dist/custom-auth-path/cache/MemoryStorage.mjs.map +1 -1
  102. package/dist/custom-auth-path/cache/SessionStorage.d.ts +1 -0
  103. package/dist/custom-auth-path/cache/SessionStorage.d.ts.map +1 -1
  104. package/dist/custom-auth-path/cache/SessionStorage.mjs +5 -1
  105. package/dist/custom-auth-path/cache/SessionStorage.mjs.map +1 -1
  106. package/dist/custom-auth-path/cache/TokenCache.mjs +1 -1
  107. package/dist/custom-auth-path/config/Configuration.d.ts +4 -0
  108. package/dist/custom-auth-path/config/Configuration.d.ts.map +1 -1
  109. package/dist/custom-auth-path/config/Configuration.mjs +2 -1
  110. package/dist/custom-auth-path/config/Configuration.mjs.map +1 -1
  111. package/dist/custom-auth-path/controllers/ControllerFactory.mjs +1 -1
  112. package/dist/custom-auth-path/controllers/StandardController.d.ts.map +1 -1
  113. package/dist/custom-auth-path/controllers/StandardController.mjs +2 -1
  114. package/dist/custom-auth-path/controllers/StandardController.mjs.map +1 -1
  115. package/dist/custom-auth-path/crypto/BrowserCrypto.mjs +1 -1
  116. package/dist/custom-auth-path/crypto/CryptoOps.mjs +1 -1
  117. package/dist/custom-auth-path/crypto/PkceGenerator.mjs +1 -1
  118. package/dist/custom-auth-path/custom_auth/CustomAuthConstants.d.ts +1 -1
  119. package/dist/custom-auth-path/custom_auth/CustomAuthConstants.mjs +1 -1
  120. package/dist/custom-auth-path/custom_auth/CustomAuthPublicClientApplication.mjs +1 -1
  121. package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.mjs +1 -1
  122. package/dist/custom-auth-path/custom_auth/core/CustomAuthAuthority.mjs +1 -1
  123. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs +1 -1
  124. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowResultBase.mjs +1 -1
  125. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowState.mjs +1 -1
  126. package/dist/custom-auth-path/custom_auth/core/error/CustomAuthApiError.mjs +1 -1
  127. package/dist/custom-auth-path/custom_auth/core/error/CustomAuthError.mjs +1 -1
  128. package/dist/custom-auth-path/custom_auth/core/error/HttpError.mjs +1 -1
  129. package/dist/custom-auth-path/custom_auth/core/error/HttpErrorCodes.mjs +1 -1
  130. package/dist/custom-auth-path/custom_auth/core/error/InvalidArgumentError.mjs +1 -1
  131. package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationError.mjs +1 -1
  132. package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationErrorCodes.mjs +1 -1
  133. package/dist/custom-auth-path/custom_auth/core/error/MethodNotImplementedError.mjs +1 -1
  134. package/dist/custom-auth-path/custom_auth/core/error/MsalCustomAuthError.mjs +1 -1
  135. package/dist/custom-auth-path/custom_auth/core/error/NoCachedAccountFoundError.mjs +1 -1
  136. package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlError.mjs +1 -1
  137. package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlErrorCodes.mjs +1 -1
  138. package/dist/custom-auth-path/custom_auth/core/error/UnexpectedError.mjs +1 -1
  139. package/dist/custom-auth-path/custom_auth/core/error/UnsupportedEnvironmentError.mjs +1 -1
  140. package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeError.mjs +1 -1
  141. package/dist/custom-auth-path/custom_auth/core/error/UserAlreadySignedInError.mjs +1 -1
  142. package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.mjs +1 -1
  143. package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.mjs +1 -1
  144. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs +1 -1
  145. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs +1 -1
  146. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.mjs +1 -1
  147. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs +1 -1
  148. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs +1 -1
  149. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs +1 -1
  150. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.mjs +1 -1
  151. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.mjs +1 -1
  152. package/dist/custom-auth-path/custom_auth/core/network_client/http_client/FetchHttpClient.mjs +1 -1
  153. package/dist/custom-auth-path/custom_auth/core/network_client/http_client/IHttpClient.mjs +1 -1
  154. package/dist/custom-auth-path/custom_auth/core/telemetry/PublicApiId.mjs +1 -1
  155. package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.mjs +1 -1
  156. package/dist/custom-auth-path/custom_auth/core/utils/UrlUtils.mjs +1 -1
  157. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs +1 -1
  158. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/error_type/GetAccountError.mjs +1 -1
  159. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.mjs +1 -1
  160. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccountResult.mjs +1 -1
  161. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/SignOutResult.mjs +1 -1
  162. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccessTokenState.mjs +1 -1
  163. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccountState.mjs +1 -1
  164. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/SignOutState.mjs +1 -1
  165. package/dist/custom-auth-path/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.mjs +1 -1
  166. package/dist/custom-auth-path/custom_auth/index.mjs +1 -1
  167. package/dist/custom-auth-path/custom_auth/operating_context/CustomAuthOperatingContext.mjs +1 -1
  168. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.mjs +1 -1
  169. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.mjs +1 -1
  170. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.mjs +1 -1
  171. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.mjs +1 -1
  172. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.mjs +1 -1
  173. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.mjs +1 -1
  174. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.mjs +1 -1
  175. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.mjs +1 -1
  176. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.mjs +1 -1
  177. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordState.mjs +1 -1
  178. package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/ResetPasswordClient.mjs +1 -1
  179. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/SignInScenario.mjs +1 -1
  180. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs +1 -1
  181. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.mjs +1 -1
  182. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResult.mjs +1 -1
  183. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.mjs +1 -1
  184. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCredentialResult.mjs +1 -1
  185. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.mjs +1 -1
  186. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs +1 -1
  187. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCompletedState.mjs +1 -1
  188. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs +1 -1
  189. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInFailedState.mjs +1 -1
  190. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs +1 -1
  191. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInState.mjs +1 -1
  192. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.mjs +1 -1
  193. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/result/SignInActionResult.mjs +1 -1
  194. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/error_type/SignUpError.mjs +1 -1
  195. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.mjs +1 -1
  196. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResult.mjs +1 -1
  197. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.mjs +1 -1
  198. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.mjs +1 -1
  199. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.mjs +1 -1
  200. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.mjs +1 -1
  201. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.mjs +1 -1
  202. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.mjs +1 -1
  203. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpFailedState.mjs +1 -1
  204. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.mjs +1 -1
  205. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpState.mjs +1 -1
  206. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/SignUpClient.mjs +1 -1
  207. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/result/SignUpActionResult.mjs +1 -1
  208. package/dist/custom-auth-path/encode/Base64Decode.mjs +1 -1
  209. package/dist/custom-auth-path/encode/Base64Encode.mjs +1 -1
  210. package/dist/custom-auth-path/error/BrowserAuthError.mjs +1 -1
  211. package/dist/custom-auth-path/error/BrowserAuthErrorCodes.mjs +1 -1
  212. package/dist/custom-auth-path/error/BrowserConfigurationAuthError.mjs +1 -1
  213. package/dist/custom-auth-path/error/BrowserConfigurationAuthErrorCodes.mjs +1 -1
  214. package/dist/custom-auth-path/error/NativeAuthError.mjs +1 -1
  215. package/dist/custom-auth-path/error/NativeAuthErrorCodes.mjs +1 -1
  216. package/dist/custom-auth-path/event/EventHandler.mjs +1 -1
  217. package/dist/custom-auth-path/event/EventType.mjs +1 -1
  218. package/dist/custom-auth-path/interaction_client/BaseInteractionClient.d.ts.map +1 -1
  219. package/dist/custom-auth-path/interaction_client/BaseInteractionClient.mjs +3 -7
  220. package/dist/custom-auth-path/interaction_client/BaseInteractionClient.mjs.map +1 -1
  221. package/dist/custom-auth-path/interaction_client/HybridSpaAuthorizationCodeClient.mjs +1 -1
  222. package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.d.ts.map +1 -1
  223. package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.mjs +2 -2
  224. package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.mjs.map +1 -1
  225. package/dist/custom-auth-path/interaction_client/PopupClient.d.ts.map +1 -1
  226. package/dist/custom-auth-path/interaction_client/PopupClient.mjs +1 -2
  227. package/dist/custom-auth-path/interaction_client/PopupClient.mjs.map +1 -1
  228. package/dist/custom-auth-path/interaction_client/RedirectClient.d.ts.map +1 -1
  229. package/dist/custom-auth-path/interaction_client/RedirectClient.mjs +1 -2
  230. package/dist/custom-auth-path/interaction_client/RedirectClient.mjs.map +1 -1
  231. package/dist/custom-auth-path/interaction_client/SilentAuthCodeClient.mjs +1 -1
  232. package/dist/custom-auth-path/interaction_client/SilentCacheClient.mjs +1 -1
  233. package/dist/custom-auth-path/interaction_client/SilentIframeClient.mjs +1 -1
  234. package/dist/custom-auth-path/interaction_client/SilentRefreshClient.mjs +1 -1
  235. package/dist/custom-auth-path/interaction_client/StandardInteractionClient.mjs +1 -1
  236. package/dist/custom-auth-path/interaction_handler/InteractionHandler.mjs +1 -1
  237. package/dist/custom-auth-path/interaction_handler/SilentHandler.mjs +1 -1
  238. package/dist/custom-auth-path/naa/AccountInfo.d.ts +1 -0
  239. package/dist/custom-auth-path/naa/AccountInfo.d.ts.map +1 -1
  240. package/dist/custom-auth-path/naa/mapping/NestedAppAuthAdapter.d.ts.map +1 -1
  241. package/dist/custom-auth-path/navigation/NavigationClient.mjs +1 -1
  242. package/dist/custom-auth-path/network/FetchClient.mjs +1 -1
  243. package/dist/custom-auth-path/operatingcontext/BaseOperatingContext.d.ts.map +1 -1
  244. package/dist/custom-auth-path/operatingcontext/BaseOperatingContext.mjs +3 -2
  245. package/dist/custom-auth-path/operatingcontext/BaseOperatingContext.mjs.map +1 -1
  246. package/dist/custom-auth-path/operatingcontext/StandardOperatingContext.mjs +1 -1
  247. package/dist/custom-auth-path/packageMetadata.d.ts +1 -1
  248. package/dist/custom-auth-path/packageMetadata.mjs +2 -2
  249. package/dist/custom-auth-path/protocol/Authorize.mjs +1 -1
  250. package/dist/custom-auth-path/request/RequestHelpers.mjs +1 -1
  251. package/dist/custom-auth-path/response/ResponseHandler.mjs +1 -1
  252. package/dist/custom-auth-path/telemetry/BrowserPerformanceClient.d.ts.map +1 -1
  253. package/dist/custom-auth-path/utils/BrowserConstants.d.ts +0 -10
  254. package/dist/custom-auth-path/utils/BrowserConstants.d.ts.map +1 -1
  255. package/dist/custom-auth-path/utils/BrowserConstants.mjs +3 -11
  256. package/dist/custom-auth-path/utils/BrowserConstants.mjs.map +1 -1
  257. package/dist/custom-auth-path/utils/BrowserProtocolUtils.mjs +1 -1
  258. package/dist/custom-auth-path/utils/BrowserUtils.mjs +1 -1
  259. package/dist/custom-auth-path/utils/Helpers.d.ts +7 -0
  260. package/dist/custom-auth-path/utils/Helpers.d.ts.map +1 -0
  261. package/dist/custom-auth-path/utils/Helpers.mjs +20 -0
  262. package/dist/custom-auth-path/utils/Helpers.mjs.map +1 -0
  263. package/dist/custom-auth-path/utils/MsalFrameStatsUtils.mjs +1 -1
  264. package/dist/custom_auth/CustomAuthConstants.d.ts +1 -1
  265. package/dist/encode/Base64Decode.mjs +1 -1
  266. package/dist/encode/Base64Encode.mjs +1 -1
  267. package/dist/error/BrowserAuthError.mjs +1 -1
  268. package/dist/error/BrowserAuthErrorCodes.mjs +1 -1
  269. package/dist/error/BrowserConfigurationAuthError.mjs +1 -1
  270. package/dist/error/BrowserConfigurationAuthErrorCodes.mjs +1 -1
  271. package/dist/error/NativeAuthError.mjs +1 -1
  272. package/dist/error/NativeAuthErrorCodes.mjs +1 -1
  273. package/dist/error/NestedAppAuthError.mjs +1 -1
  274. package/dist/event/EventHandler.mjs +1 -1
  275. package/dist/event/EventMessage.mjs +1 -1
  276. package/dist/event/EventType.mjs +1 -1
  277. package/dist/index.mjs +1 -1
  278. package/dist/interaction_client/BaseInteractionClient.d.ts.map +1 -1
  279. package/dist/interaction_client/BaseInteractionClient.mjs +3 -7
  280. package/dist/interaction_client/BaseInteractionClient.mjs.map +1 -1
  281. package/dist/interaction_client/HybridSpaAuthorizationCodeClient.mjs +1 -1
  282. package/dist/interaction_client/PlatformAuthInteractionClient.d.ts.map +1 -1
  283. package/dist/interaction_client/PlatformAuthInteractionClient.mjs +2 -2
  284. package/dist/interaction_client/PlatformAuthInteractionClient.mjs.map +1 -1
  285. package/dist/interaction_client/PopupClient.d.ts.map +1 -1
  286. package/dist/interaction_client/PopupClient.mjs +1 -2
  287. package/dist/interaction_client/PopupClient.mjs.map +1 -1
  288. package/dist/interaction_client/RedirectClient.d.ts.map +1 -1
  289. package/dist/interaction_client/RedirectClient.mjs +1 -2
  290. package/dist/interaction_client/RedirectClient.mjs.map +1 -1
  291. package/dist/interaction_client/SilentAuthCodeClient.mjs +1 -1
  292. package/dist/interaction_client/SilentCacheClient.mjs +1 -1
  293. package/dist/interaction_client/SilentIframeClient.mjs +1 -1
  294. package/dist/interaction_client/SilentRefreshClient.mjs +1 -1
  295. package/dist/interaction_client/StandardInteractionClient.mjs +1 -1
  296. package/dist/interaction_handler/InteractionHandler.mjs +1 -1
  297. package/dist/interaction_handler/SilentHandler.mjs +1 -1
  298. package/dist/naa/AccountInfo.d.ts +1 -0
  299. package/dist/naa/AccountInfo.d.ts.map +1 -1
  300. package/dist/naa/BridgeError.mjs +1 -1
  301. package/dist/naa/BridgeProxy.mjs +1 -1
  302. package/dist/naa/BridgeStatusCode.mjs +1 -1
  303. package/dist/naa/mapping/NestedAppAuthAdapter.d.ts.map +1 -1
  304. package/dist/naa/mapping/NestedAppAuthAdapter.mjs +3 -1
  305. package/dist/naa/mapping/NestedAppAuthAdapter.mjs.map +1 -1
  306. package/dist/navigation/NavigationClient.mjs +1 -1
  307. package/dist/network/FetchClient.mjs +1 -1
  308. package/dist/operatingcontext/BaseOperatingContext.d.ts.map +1 -1
  309. package/dist/operatingcontext/BaseOperatingContext.mjs +3 -2
  310. package/dist/operatingcontext/BaseOperatingContext.mjs.map +1 -1
  311. package/dist/operatingcontext/NestedAppOperatingContext.mjs +1 -1
  312. package/dist/operatingcontext/StandardOperatingContext.mjs +1 -1
  313. package/dist/operatingcontext/UnknownOperatingContext.mjs +1 -1
  314. package/dist/packageMetadata.d.ts +1 -1
  315. package/dist/packageMetadata.mjs +2 -2
  316. package/dist/protocol/Authorize.mjs +1 -1
  317. package/dist/request/RequestHelpers.mjs +1 -1
  318. package/dist/response/ResponseHandler.mjs +1 -1
  319. package/dist/telemetry/BrowserPerformanceClient.d.ts.map +1 -1
  320. package/dist/telemetry/BrowserPerformanceClient.mjs +3 -2
  321. package/dist/telemetry/BrowserPerformanceClient.mjs.map +1 -1
  322. package/dist/telemetry/BrowserPerformanceMeasurement.mjs +1 -1
  323. package/dist/utils/BrowserConstants.d.ts +0 -10
  324. package/dist/utils/BrowserConstants.d.ts.map +1 -1
  325. package/dist/utils/BrowserConstants.mjs +3 -12
  326. package/dist/utils/BrowserConstants.mjs.map +1 -1
  327. package/dist/utils/BrowserProtocolUtils.mjs +1 -1
  328. package/dist/utils/BrowserUtils.mjs +1 -1
  329. package/dist/utils/Helpers.d.ts +7 -0
  330. package/dist/utils/Helpers.d.ts.map +1 -0
  331. package/dist/utils/Helpers.mjs +20 -0
  332. package/dist/utils/Helpers.mjs.map +1 -0
  333. package/dist/utils/MsalFrameStatsUtils.mjs +1 -1
  334. package/lib/custom-auth-path/msal-custom-auth.cjs +2619 -2498
  335. package/lib/custom-auth-path/msal-custom-auth.cjs.map +1 -1
  336. package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthProvider.d.ts.map +1 -1
  337. package/lib/custom-auth-path/types/cache/BrowserCacheManager.d.ts +26 -11
  338. package/lib/custom-auth-path/types/cache/BrowserCacheManager.d.ts.map +1 -1
  339. package/lib/custom-auth-path/types/cache/CacheHelpers.d.ts +2 -2
  340. package/lib/custom-auth-path/types/cache/CacheHelpers.d.ts.map +1 -1
  341. package/lib/custom-auth-path/types/cache/CacheKeys.d.ts +14 -0
  342. package/lib/custom-auth-path/types/cache/CacheKeys.d.ts.map +1 -0
  343. package/lib/custom-auth-path/types/cache/CookieStorage.d.ts +1 -0
  344. package/lib/custom-auth-path/types/cache/CookieStorage.d.ts.map +1 -1
  345. package/lib/custom-auth-path/types/cache/EncryptedData.d.ts +8 -0
  346. package/lib/custom-auth-path/types/cache/EncryptedData.d.ts.map +1 -0
  347. package/lib/custom-auth-path/types/cache/IWindowStorage.d.ts +2 -0
  348. package/lib/custom-auth-path/types/cache/IWindowStorage.d.ts.map +1 -1
  349. package/lib/custom-auth-path/types/cache/LocalStorage.d.ts +2 -0
  350. package/lib/custom-auth-path/types/cache/LocalStorage.d.ts.map +1 -1
  351. package/lib/custom-auth-path/types/cache/MemoryStorage.d.ts +1 -0
  352. package/lib/custom-auth-path/types/cache/MemoryStorage.d.ts.map +1 -1
  353. package/lib/custom-auth-path/types/cache/SessionStorage.d.ts +1 -0
  354. package/lib/custom-auth-path/types/cache/SessionStorage.d.ts.map +1 -1
  355. package/lib/custom-auth-path/types/config/Configuration.d.ts +4 -0
  356. package/lib/custom-auth-path/types/config/Configuration.d.ts.map +1 -1
  357. package/lib/custom-auth-path/types/controllers/StandardController.d.ts.map +1 -1
  358. package/lib/custom-auth-path/types/custom_auth/CustomAuthConstants.d.ts +1 -1
  359. package/lib/custom-auth-path/types/interaction_client/BaseInteractionClient.d.ts.map +1 -1
  360. package/lib/custom-auth-path/types/interaction_client/PlatformAuthInteractionClient.d.ts.map +1 -1
  361. package/lib/custom-auth-path/types/interaction_client/PopupClient.d.ts.map +1 -1
  362. package/lib/custom-auth-path/types/interaction_client/RedirectClient.d.ts.map +1 -1
  363. package/lib/custom-auth-path/types/naa/AccountInfo.d.ts +1 -0
  364. package/lib/custom-auth-path/types/naa/AccountInfo.d.ts.map +1 -1
  365. package/lib/custom-auth-path/types/naa/mapping/NestedAppAuthAdapter.d.ts.map +1 -1
  366. package/lib/custom-auth-path/types/operatingcontext/BaseOperatingContext.d.ts.map +1 -1
  367. package/lib/custom-auth-path/types/packageMetadata.d.ts +1 -1
  368. package/lib/custom-auth-path/types/telemetry/BrowserPerformanceClient.d.ts.map +1 -1
  369. package/lib/custom-auth-path/types/utils/BrowserConstants.d.ts +0 -10
  370. package/lib/custom-auth-path/types/utils/BrowserConstants.d.ts.map +1 -1
  371. package/lib/custom-auth-path/types/utils/Helpers.d.ts +7 -0
  372. package/lib/custom-auth-path/types/utils/Helpers.d.ts.map +1 -0
  373. package/lib/msal-browser.cjs +2762 -2629
  374. package/lib/msal-browser.cjs.map +1 -1
  375. package/lib/msal-browser.js +2762 -2629
  376. package/lib/msal-browser.js.map +1 -1
  377. package/lib/msal-browser.min.js +67 -69
  378. package/lib/types/broker/nativeBroker/PlatformAuthProvider.d.ts.map +1 -1
  379. package/lib/types/cache/BrowserCacheManager.d.ts +26 -11
  380. package/lib/types/cache/BrowserCacheManager.d.ts.map +1 -1
  381. package/lib/types/cache/CacheHelpers.d.ts +2 -2
  382. package/lib/types/cache/CacheHelpers.d.ts.map +1 -1
  383. package/lib/types/cache/CacheKeys.d.ts +14 -0
  384. package/lib/types/cache/CacheKeys.d.ts.map +1 -0
  385. package/lib/types/cache/CookieStorage.d.ts +1 -0
  386. package/lib/types/cache/CookieStorage.d.ts.map +1 -1
  387. package/lib/types/cache/EncryptedData.d.ts +8 -0
  388. package/lib/types/cache/EncryptedData.d.ts.map +1 -0
  389. package/lib/types/cache/IWindowStorage.d.ts +2 -0
  390. package/lib/types/cache/IWindowStorage.d.ts.map +1 -1
  391. package/lib/types/cache/LocalStorage.d.ts +2 -0
  392. package/lib/types/cache/LocalStorage.d.ts.map +1 -1
  393. package/lib/types/cache/MemoryStorage.d.ts +1 -0
  394. package/lib/types/cache/MemoryStorage.d.ts.map +1 -1
  395. package/lib/types/cache/SessionStorage.d.ts +1 -0
  396. package/lib/types/cache/SessionStorage.d.ts.map +1 -1
  397. package/lib/types/config/Configuration.d.ts +4 -0
  398. package/lib/types/config/Configuration.d.ts.map +1 -1
  399. package/lib/types/controllers/StandardController.d.ts.map +1 -1
  400. package/lib/types/custom_auth/CustomAuthConstants.d.ts +1 -1
  401. package/lib/types/interaction_client/BaseInteractionClient.d.ts.map +1 -1
  402. package/lib/types/interaction_client/PlatformAuthInteractionClient.d.ts.map +1 -1
  403. package/lib/types/interaction_client/PopupClient.d.ts.map +1 -1
  404. package/lib/types/interaction_client/RedirectClient.d.ts.map +1 -1
  405. package/lib/types/naa/AccountInfo.d.ts +1 -0
  406. package/lib/types/naa/AccountInfo.d.ts.map +1 -1
  407. package/lib/types/naa/mapping/NestedAppAuthAdapter.d.ts.map +1 -1
  408. package/lib/types/operatingcontext/BaseOperatingContext.d.ts.map +1 -1
  409. package/lib/types/packageMetadata.d.ts +1 -1
  410. package/lib/types/telemetry/BrowserPerformanceClient.d.ts.map +1 -1
  411. package/lib/types/utils/BrowserConstants.d.ts +0 -10
  412. package/lib/types/utils/BrowserConstants.d.ts.map +1 -1
  413. package/lib/types/utils/Helpers.d.ts +7 -0
  414. package/lib/types/utils/Helpers.d.ts.map +1 -0
  415. package/package.json +2 -2
  416. package/src/broker/nativeBroker/PlatformAuthProvider.ts +2 -4
  417. package/src/cache/BrowserCacheManager.ts +381 -61
  418. package/src/cache/CacheHelpers.ts +13 -5
  419. package/src/cache/CacheKeys.ts +39 -0
  420. package/src/cache/CookieStorage.ts +5 -0
  421. package/src/cache/EncryptedData.ts +19 -0
  422. package/src/cache/IWindowStorage.ts +8 -0
  423. package/src/cache/LocalStorage.ts +83 -27
  424. package/src/cache/MemoryStorage.ts +5 -0
  425. package/src/cache/SessionStorage.ts +5 -0
  426. package/src/config/Configuration.ts +5 -0
  427. package/src/controllers/StandardController.ts +1 -0
  428. package/src/interaction_client/BaseInteractionClient.ts +1 -15
  429. package/src/interaction_client/PlatformAuthInteractionClient.ts +4 -2
  430. package/src/interaction_client/PopupClient.ts +0 -5
  431. package/src/interaction_client/RedirectClient.ts +0 -5
  432. package/src/naa/AccountInfo.ts +1 -0
  433. package/src/naa/mapping/NestedAppAuthAdapter.ts +4 -0
  434. package/src/operatingcontext/BaseOperatingContext.ts +2 -5
  435. package/src/packageMetadata.ts +1 -1
  436. package/src/telemetry/BrowserPerformanceClient.ts +2 -4
  437. package/src/utils/BrowserConstants.ts +0 -15
  438. package/src/utils/Helpers.ts +19 -0
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v4.18.0 2025-07-30 */
1
+ /*! @azure/msal-browser v4.19.0 2025-08-05 */
2
2
  'use strict';
3
3
  import { createBrowserConfigurationAuthError } from '../error/BrowserConfigurationAuthError.mjs';
4
4
  import { stubbedPublicClientApplicationCalled } from '../error/BrowserConfigurationAuthErrorCodes.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v4.18.0 2025-07-30 */
1
+ /*! @azure/msal-browser v4.19.0 2025-08-05 */
2
2
  'use strict';
3
3
  import { createV3Controller } from '../controllers/ControllerFactory.mjs';
4
4
  import { StandardController } from '../controllers/StandardController.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v4.18.0 2025-07-30 */
1
+ /*! @azure/msal-browser v4.19.0 2025-08-05 */
2
2
  'use strict';
3
3
  import { createController } from '../controllers/ControllerFactory.mjs';
4
4
  import { UnknownOperatingContextController } from '../controllers/UnknownOperatingContextController.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v4.18.0 2025-07-30 */
1
+ /*! @azure/msal-browser v4.19.0 2025-08-05 */
2
2
  'use strict';
3
3
  /*
4
4
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v4.18.0 2025-07-30 */
1
+ /*! @azure/msal-browser v4.19.0 2025-08-05 */
2
2
  'use strict';
3
3
  import { createAuthError, AuthErrorCodes } from '@azure/msal-common/browser';
4
4
  import { PlatformAuthConstants } from '../../utils/BrowserConstants.mjs';
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v4.18.0 2025-07-30 */
1
+ /*! @azure/msal-browser v4.19.0 2025-08-05 */
2
2
  'use strict';
3
3
  import { PlatformAuthConstants, NativeExtensionMethod } from '../../utils/BrowserConstants.mjs';
4
4
  import { PerformanceEvents, createAuthError, AuthErrorCodes } from '@azure/msal-common/browser';
@@ -1 +1 @@
1
- {"version":3,"file":"PlatformAuthProvider.d.ts","sourceRoot":"","sources":["../../../src/broker/nativeBroker/PlatformAuthProvider.ts"],"names":[],"mappings":"AAKA,OAAO,EACH,aAAa,EACb,kBAAkB,EAClB,MAAM,EACN,oBAAoB,EAEvB,MAAM,4BAA4B,CAAC;AAEpC,OAAO,EACH,oBAAoB,EAEvB,MAAM,+BAA+B,CAAC;AAEvC,OAAO,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAC;AAQjE;;;;;GAKG;AACH,wBAAsB,yBAAyB,CAC3C,aAAa,CAAC,EAAE,aAAa,EAC7B,UAAU,CAAC,EAAE,kBAAkB,EAC/B,aAAa,CAAC,EAAE,MAAM,GACvB,OAAO,CAAC,OAAO,CAAC,CAiBlB;AAED,wBAAsB,uBAAuB,CACzC,MAAM,EAAE,MAAM,EACd,iBAAiB,EAAE,kBAAkB,EACrC,aAAa,EAAE,MAAM,EACrB,4BAA4B,CAAC,EAAE,MAAM,GACtC,OAAO,CAAC,oBAAoB,GAAG,SAAS,CAAC,CAuC3C;AAED;;;;GAIG;AACH,wBAAgB,2BAA2B,IAAI,OAAO,CASrD;AAED;;;;;;GAMG;AACH,wBAAgB,qBAAqB,CACjC,MAAM,EAAE,oBAAoB,EAC5B,MAAM,EAAE,MAAM,EACd,oBAAoB,CAAC,EAAE,oBAAoB,EAC3C,oBAAoB,CAAC,EAAE,oBAAoB,GAC5C,OAAO,CAkCT"}
1
+ {"version":3,"file":"PlatformAuthProvider.d.ts","sourceRoot":"","sources":["../../../src/broker/nativeBroker/PlatformAuthProvider.ts"],"names":[],"mappings":"AAKA,OAAO,EACH,aAAa,EACb,kBAAkB,EAClB,MAAM,EACN,oBAAoB,EAEvB,MAAM,4BAA4B,CAAC;AAEpC,OAAO,EACH,oBAAoB,EAEvB,MAAM,+BAA+B,CAAC;AAEvC,OAAO,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAC;AAMjE;;;;;GAKG;AACH,wBAAsB,yBAAyB,CAC3C,aAAa,CAAC,EAAE,aAAa,EAC7B,UAAU,CAAC,EAAE,kBAAkB,EAC/B,aAAa,CAAC,EAAE,MAAM,GACvB,OAAO,CAAC,OAAO,CAAC,CAiBlB;AAED,wBAAsB,uBAAuB,CACzC,MAAM,EAAE,MAAM,EACd,iBAAiB,EAAE,kBAAkB,EACrC,aAAa,EAAE,MAAM,EACrB,4BAA4B,CAAC,EAAE,MAAM,GACtC,OAAO,CAAC,oBAAoB,GAAG,SAAS,CAAC,CAuC3C;AAED;;;;GAIG;AACH,wBAAgB,2BAA2B,IAAI,OAAO,CASrD;AAED;;;;;;GAMG;AACH,wBAAgB,qBAAqB,CACjC,MAAM,EAAE,oBAAoB,EAC5B,MAAM,EAAE,MAAM,EACd,oBAAoB,CAAC,EAAE,oBAAoB,EAC3C,oBAAoB,CAAC,EAAE,oBAAoB,GAC5C,OAAO,CAkCT"}
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v4.18.0 2025-07-30 */
1
+ /*! @azure/msal-browser v4.19.0 2025-08-05 */
2
2
  'use strict';
3
3
  import { Logger, StubPerformanceClient, AuthenticationScheme } from '@azure/msal-common/browser';
4
4
  import { name, version } from '../../packageMetadata.mjs';
@@ -6,7 +6,8 @@ import { DEFAULT_NATIVE_BROKER_HANDSHAKE_TIMEOUT_MS } from '../../config/Configu
6
6
  import { PlatformAuthExtensionHandler } from './PlatformAuthExtensionHandler.mjs';
7
7
  import { PlatformAuthDOMHandler } from './PlatformAuthDOMHandler.mjs';
8
8
  import { createNewGuid } from '../../crypto/BrowserCrypto.mjs';
9
- import { BrowserCacheLocation, PLATFORM_AUTH_DOM_SUPPORT } from '../../utils/BrowserConstants.mjs';
9
+ import { BrowserCacheLocation } from '../../utils/BrowserConstants.mjs';
10
+ import { PLATFORM_AUTH_DOM_SUPPORT } from '../../cache/CacheKeys.mjs';
10
11
 
11
12
  /*
12
13
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1 +1 @@
1
- {"version":3,"file":"PlatformAuthProvider.mjs","sources":["../../../src/broker/nativeBroker/PlatformAuthProvider.ts"],"sourcesContent":[null],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"PlatformAuthProvider.mjs","sources":["../../../src/broker/nativeBroker/PlatformAuthProvider.ts"],"sourcesContent":[null],"names":[],"mappings":"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"}
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v4.18.0 2025-07-30 */
1
+ /*! @azure/msal-browser v4.19.0 2025-08-05 */
2
2
  'use strict';
3
3
  /*
4
4
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v4.18.0 2025-07-30 */
1
+ /*! @azure/msal-browser v4.19.0 2025-08-05 */
2
2
  'use strict';
3
3
  import { BrowserAuthError } from '../error/BrowserAuthError.mjs';
4
4
  import { DatabaseStorage } from './DatabaseStorage.mjs';
@@ -1,4 +1,4 @@
1
- import { AccessTokenEntity, AccountEntity, AccountInfo, AppMetadataEntity, AuthorityMetadataEntity, CacheManager, CacheRecord, CommonAuthorizationUrlRequest, ICrypto, IdTokenEntity, IPerformanceClient, Logger, RefreshTokenEntity, ServerTelemetryEntity, StaticAuthorityOptions, StoreInCache, ThrottlingEntity, TokenKeys } from "@azure/msal-common/browser";
1
+ import { AccessTokenEntity, AccountEntity, AccountInfo, AppMetadataEntity, AuthorityMetadataEntity, CacheManager, CacheRecord, CommonAuthorizationUrlRequest, ICrypto, IdTokenEntity, IPerformanceClient, Logger, RefreshTokenEntity, ServerTelemetryEntity, StaticAuthorityOptions, StoreInCache, ThrottlingEntity, TokenKeys, CredentialEntity } from "@azure/msal-common/browser";
2
2
  import { CacheOptions } from "../config/Configuration.js";
3
3
  import { INTERACTION_TYPE } from "../utils/BrowserConstants.js";
4
4
  import { MemoryStorage } from "./MemoryStorage.js";
@@ -26,6 +26,11 @@ export declare class BrowserCacheManager extends CacheManager {
26
26
  private eventHandler;
27
27
  constructor(clientId: string, cacheConfig: Required<CacheOptions>, cryptoImpl: ICrypto, logger: Logger, performanceClient: IPerformanceClient, eventHandler: EventHandler, staticAuthorityOptions?: StaticAuthorityOptions);
28
28
  initialize(correlationId: string): Promise<void>;
29
+ /**
30
+ * Migrates any existing cache data from previous versions of MSAL.js into the current cache structure.
31
+ */
32
+ migrateExistingCache(correlationId: string): Promise<void>;
33
+ updateV0ToCurrent(currentSchema: number, v0Keys: Array<string>, v1Keys: Array<string>, correlationId: string): Promise<void[]>;
29
34
  /**
30
35
  * Tracks upgrades and downgrades for telemetry and debugging purposes
31
36
  */
@@ -79,12 +84,7 @@ export declare class BrowserCacheManager extends CacheManager {
79
84
  * Extends inherited removeAccount function to include removal of the account key from the map
80
85
  * @param key
81
86
  */
82
- removeAccount(key: string, correlationId: string): void;
83
- /**
84
- * Removes credentials associated with the provided account
85
- * @param account
86
- */
87
- removeAccountContext(account: AccountEntity, correlationId: string): void;
87
+ removeAccount(account: AccountInfo, correlationId: string): void;
88
88
  /**
89
89
  * Removes given idToken from the cache and from the key map
90
90
  * @param key
@@ -101,7 +101,7 @@ export declare class BrowserCacheManager extends CacheManager {
101
101
  * @param correlationId
102
102
  * @param tokenKeys
103
103
  */
104
- removeAccessTokenKeys(keys: Array<string>, correlationId: string): void;
104
+ removeAccessTokenKeys(keys: Array<string>, correlationId: string, schemaVersion?: number): void;
105
105
  /**
106
106
  * Removes given refreshToken from the cache and from the key map
107
107
  * @param key
@@ -111,14 +111,14 @@ export declare class BrowserCacheManager extends CacheManager {
111
111
  * Gets the keys for the cached tokens associated with this clientId
112
112
  * @returns
113
113
  */
114
- getTokenKeys(): TokenKeys;
114
+ getTokenKeys(schemaVersion?: number): TokenKeys;
115
115
  /**
116
116
  * Stores the token keys in the cache
117
117
  * @param tokenKeys
118
118
  * @param correlationId
119
119
  * @returns
120
120
  */
121
- setTokenKeys(tokenKeys: TokenKeys, correlationId: string): void;
121
+ setTokenKeys(tokenKeys: TokenKeys, correlationId: string, schemaVersion?: number): void;
122
122
  /**
123
123
  * generates idToken entity from a string
124
124
  * @param idTokenKey
@@ -254,11 +254,26 @@ export declare class BrowserCacheManager extends CacheManager {
254
254
  */
255
255
  clearTokensAndKeysWithClaims(correlationId: string): void;
256
256
  /**
257
- * Prepend msal.<client-id> to each key; Skip for any JSON object as Key (defined schemas do not need the key appended: AccessToken Keys or the upcoming schema)
257
+ * Prepend msal.<client-id> to each key
258
258
  * @param key
259
259
  * @param addInstanceId
260
260
  */
261
261
  generateCacheKey(key: string): string;
262
+ /**
263
+ * Cache Key: msal.<schema_version>-<home_account_id>-<environment>-<credential_type>-<client_id or familyId>-<realm>-<scopes>-<claims hash>-<scheme>
264
+ * IdToken Example: uid.utid-login.microsoftonline.com-idtoken-app_client_id-contoso.com
265
+ * AccessToken Example: uid.utid-login.microsoftonline.com-accesstoken-app_client_id-contoso.com-scope1 scope2--pop
266
+ * RefreshToken Example: uid.utid-login.microsoftonline.com-refreshtoken-1-contoso.com
267
+ * @param credentialEntity
268
+ * @returns
269
+ */
270
+ generateCredentialKey(credential: CredentialEntity): string;
271
+ /**
272
+ * Cache Key: msal.<schema_version>.<home_account_id>.<environment>.<tenant_id>
273
+ * @param account
274
+ * @returns
275
+ */
276
+ generateAccountKey(account: AccountInfo): string;
262
277
  /**
263
278
  * Reset all temporary cache items
264
279
  * @param state
@@ -1 +1 @@
1
- {"version":3,"file":"BrowserCacheManager.d.ts","sourceRoot":"","sources":["../../src/cache/BrowserCacheManager.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"BrowserCacheManager.d.ts","sourceRoot":"","sources":["../../src/cache/BrowserCacheManager.ts"],"names":[],"mappings":"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"}