@azure/msal-browser 4.24.0 → 5.0.0-alpha.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 (1258) hide show
  1. package/dist/app/IPublicClientApplication.d.ts +2 -9
  2. package/dist/app/IPublicClientApplication.d.ts.map +1 -1
  3. package/dist/app/IPublicClientApplication.mjs +1 -22
  4. package/dist/app/IPublicClientApplication.mjs.map +1 -1
  5. package/dist/app/PublicClientApplication.d.ts +3 -49
  6. package/dist/app/PublicClientApplication.d.ts.map +1 -1
  7. package/dist/app/PublicClientApplication.mjs +8 -65
  8. package/dist/app/PublicClientApplication.mjs.map +1 -1
  9. package/dist/app/PublicClientNext.d.ts +2 -49
  10. package/dist/app/PublicClientNext.d.ts.map +1 -1
  11. package/dist/app/PublicClientNext.mjs +3 -63
  12. package/dist/app/PublicClientNext.mjs.map +1 -1
  13. package/dist/broker/nativeBroker/NativeStatusCodes.mjs +3 -2
  14. package/dist/broker/nativeBroker/NativeStatusCodes.mjs.map +1 -1
  15. package/dist/broker/nativeBroker/PlatformAuthDOMHandler.d.ts.map +1 -1
  16. package/dist/broker/nativeBroker/PlatformAuthDOMHandler.mjs +13 -15
  17. package/dist/broker/nativeBroker/PlatformAuthDOMHandler.mjs.map +1 -1
  18. package/dist/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts +1 -1
  19. package/dist/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts.map +1 -1
  20. package/dist/broker/nativeBroker/PlatformAuthExtensionHandler.mjs +27 -29
  21. package/dist/broker/nativeBroker/PlatformAuthExtensionHandler.mjs.map +1 -1
  22. package/dist/broker/nativeBroker/PlatformAuthProvider.d.ts +4 -2
  23. package/dist/broker/nativeBroker/PlatformAuthProvider.d.ts.map +1 -1
  24. package/dist/broker/nativeBroker/PlatformAuthProvider.mjs +19 -18
  25. package/dist/broker/nativeBroker/PlatformAuthProvider.mjs.map +1 -1
  26. package/dist/cache/AccountManager.d.ts.map +1 -1
  27. package/dist/cache/AccountManager.mjs +25 -20
  28. package/dist/cache/AccountManager.mjs.map +1 -1
  29. package/dist/cache/AsyncMemoryStorage.d.ts +14 -7
  30. package/dist/cache/AsyncMemoryStorage.d.ts.map +1 -1
  31. package/dist/cache/AsyncMemoryStorage.mjs +30 -23
  32. package/dist/cache/AsyncMemoryStorage.mjs.map +1 -1
  33. package/dist/cache/BrowserCacheManager.d.ts +22 -25
  34. package/dist/cache/BrowserCacheManager.d.ts.map +1 -1
  35. package/dist/cache/BrowserCacheManager.mjs +108 -169
  36. package/dist/cache/BrowserCacheManager.mjs.map +1 -1
  37. package/dist/cache/CacheHelpers.mjs +1 -1
  38. package/dist/cache/CacheHelpers.mjs.map +1 -1
  39. package/dist/cache/CacheKeys.mjs +1 -1
  40. package/dist/cache/CacheKeys.mjs.map +1 -1
  41. package/dist/cache/CookieStorage.mjs +1 -1
  42. package/dist/cache/CookieStorage.mjs.map +1 -1
  43. package/dist/cache/DatabaseStorage.mjs +1 -1
  44. package/dist/cache/DatabaseStorage.mjs.map +1 -1
  45. package/dist/cache/EncryptedData.mjs +1 -1
  46. package/dist/cache/IAsyncStorage.d.ts +10 -5
  47. package/dist/cache/IAsyncStorage.d.ts.map +1 -1
  48. package/dist/cache/LocalStorage.d.ts.map +1 -1
  49. package/dist/cache/LocalStorage.mjs +23 -19
  50. package/dist/cache/LocalStorage.mjs.map +1 -1
  51. package/dist/cache/MemoryStorage.mjs +1 -1
  52. package/dist/cache/MemoryStorage.mjs.map +1 -1
  53. package/dist/cache/SessionStorage.mjs +1 -1
  54. package/dist/cache/SessionStorage.mjs.map +1 -1
  55. package/dist/cache/TokenCache.d.ts +8 -68
  56. package/dist/cache/TokenCache.d.ts.map +1 -1
  57. package/dist/cache/TokenCache.mjs +178 -186
  58. package/dist/cache/TokenCache.mjs.map +1 -1
  59. package/dist/config/Configuration.d.ts +6 -55
  60. package/dist/config/Configuration.d.ts.map +1 -1
  61. package/dist/config/Configuration.mjs +16 -30
  62. package/dist/config/Configuration.mjs.map +1 -1
  63. package/dist/controllers/ControllerFactory.d.ts +1 -1
  64. package/dist/controllers/ControllerFactory.d.ts.map +1 -1
  65. package/dist/controllers/ControllerFactory.mjs +13 -7
  66. package/dist/controllers/ControllerFactory.mjs.map +1 -1
  67. package/dist/controllers/IController.d.ts +5 -6
  68. package/dist/controllers/IController.d.ts.map +1 -1
  69. package/dist/controllers/NestedAppAuthController.d.ts +4 -9
  70. package/dist/controllers/NestedAppAuthController.d.ts.map +1 -1
  71. package/dist/controllers/NestedAppAuthController.mjs +48 -64
  72. package/dist/controllers/NestedAppAuthController.mjs.map +1 -1
  73. package/dist/controllers/StandardController.d.ts +9 -30
  74. package/dist/controllers/StandardController.d.ts.map +1 -1
  75. package/dist/controllers/StandardController.mjs +202 -302
  76. package/dist/controllers/StandardController.mjs.map +1 -1
  77. package/dist/controllers/UnknownOperatingContextController.d.ts +4 -8
  78. package/dist/controllers/UnknownOperatingContextController.d.ts.map +1 -1
  79. package/dist/controllers/UnknownOperatingContextController.mjs +3 -16
  80. package/dist/controllers/UnknownOperatingContextController.mjs.map +1 -1
  81. package/dist/crypto/BrowserCrypto.d.ts +1 -2
  82. package/dist/crypto/BrowserCrypto.d.ts.map +1 -1
  83. package/dist/crypto/BrowserCrypto.mjs +2 -4
  84. package/dist/crypto/BrowserCrypto.mjs.map +1 -1
  85. package/dist/crypto/CryptoOps.d.ts +4 -2
  86. package/dist/crypto/CryptoOps.d.ts.map +1 -1
  87. package/dist/crypto/CryptoOps.mjs +17 -14
  88. package/dist/crypto/CryptoOps.mjs.map +1 -1
  89. package/dist/crypto/PkceGenerator.d.ts.map +1 -1
  90. package/dist/crypto/PkceGenerator.mjs +7 -8
  91. package/dist/crypto/PkceGenerator.mjs.map +1 -1
  92. package/dist/crypto/SignedHttpRequest.d.ts +2 -1
  93. package/dist/crypto/SignedHttpRequest.d.ts.map +1 -1
  94. package/dist/crypto/SignedHttpRequest.mjs +6 -18
  95. package/dist/crypto/SignedHttpRequest.mjs.map +1 -1
  96. package/dist/custom-auth-path/app/IPublicClientApplication.d.ts +2 -9
  97. package/dist/custom-auth-path/app/IPublicClientApplication.d.ts.map +1 -1
  98. package/dist/custom-auth-path/app/PublicClientApplication.d.ts +3 -49
  99. package/dist/custom-auth-path/app/PublicClientApplication.d.ts.map +1 -1
  100. package/dist/custom-auth-path/app/PublicClientApplication.mjs +4 -63
  101. package/dist/custom-auth-path/app/PublicClientApplication.mjs.map +1 -1
  102. package/dist/custom-auth-path/app/PublicClientNext.d.ts +2 -49
  103. package/dist/custom-auth-path/app/PublicClientNext.d.ts.map +1 -1
  104. package/dist/custom-auth-path/broker/nativeBroker/NativeStatusCodes.mjs +3 -2
  105. package/dist/custom-auth-path/broker/nativeBroker/NativeStatusCodes.mjs.map +1 -1
  106. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.d.ts.map +1 -1
  107. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.mjs +13 -15
  108. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.mjs.map +1 -1
  109. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts +1 -1
  110. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts.map +1 -1
  111. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.mjs +27 -29
  112. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.mjs.map +1 -1
  113. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.d.ts +4 -2
  114. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.d.ts.map +1 -1
  115. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.mjs +14 -14
  116. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.mjs.map +1 -1
  117. package/dist/custom-auth-path/cache/AccountManager.d.ts.map +1 -1
  118. package/dist/custom-auth-path/cache/AccountManager.mjs +25 -20
  119. package/dist/custom-auth-path/cache/AccountManager.mjs.map +1 -1
  120. package/dist/custom-auth-path/cache/AsyncMemoryStorage.d.ts +14 -7
  121. package/dist/custom-auth-path/cache/AsyncMemoryStorage.d.ts.map +1 -1
  122. package/dist/custom-auth-path/cache/AsyncMemoryStorage.mjs +30 -23
  123. package/dist/custom-auth-path/cache/AsyncMemoryStorage.mjs.map +1 -1
  124. package/dist/custom-auth-path/cache/BrowserCacheManager.d.ts +22 -25
  125. package/dist/custom-auth-path/cache/BrowserCacheManager.d.ts.map +1 -1
  126. package/dist/custom-auth-path/cache/BrowserCacheManager.mjs +108 -169
  127. package/dist/custom-auth-path/cache/BrowserCacheManager.mjs.map +1 -1
  128. package/dist/custom-auth-path/cache/CacheHelpers.mjs +1 -1
  129. package/dist/custom-auth-path/cache/CacheHelpers.mjs.map +1 -1
  130. package/dist/custom-auth-path/cache/CacheKeys.mjs +1 -1
  131. package/dist/custom-auth-path/cache/CacheKeys.mjs.map +1 -1
  132. package/dist/custom-auth-path/cache/CookieStorage.mjs +1 -1
  133. package/dist/custom-auth-path/cache/CookieStorage.mjs.map +1 -1
  134. package/dist/custom-auth-path/cache/DatabaseStorage.mjs +1 -1
  135. package/dist/custom-auth-path/cache/DatabaseStorage.mjs.map +1 -1
  136. package/dist/custom-auth-path/cache/EncryptedData.mjs +1 -1
  137. package/dist/custom-auth-path/cache/IAsyncStorage.d.ts +10 -5
  138. package/dist/custom-auth-path/cache/IAsyncStorage.d.ts.map +1 -1
  139. package/dist/custom-auth-path/cache/LocalStorage.d.ts.map +1 -1
  140. package/dist/custom-auth-path/cache/LocalStorage.mjs +23 -19
  141. package/dist/custom-auth-path/cache/LocalStorage.mjs.map +1 -1
  142. package/dist/custom-auth-path/cache/MemoryStorage.mjs +1 -1
  143. package/dist/custom-auth-path/cache/MemoryStorage.mjs.map +1 -1
  144. package/dist/custom-auth-path/cache/SessionStorage.mjs +1 -1
  145. package/dist/custom-auth-path/cache/SessionStorage.mjs.map +1 -1
  146. package/dist/custom-auth-path/cache/TokenCache.d.ts +8 -68
  147. package/dist/custom-auth-path/cache/TokenCache.d.ts.map +1 -1
  148. package/dist/custom-auth-path/config/Configuration.d.ts +6 -55
  149. package/dist/custom-auth-path/config/Configuration.d.ts.map +1 -1
  150. package/dist/custom-auth-path/config/Configuration.mjs +16 -30
  151. package/dist/custom-auth-path/config/Configuration.mjs.map +1 -1
  152. package/dist/custom-auth-path/controllers/ControllerFactory.d.ts +1 -1
  153. package/dist/custom-auth-path/controllers/ControllerFactory.d.ts.map +1 -1
  154. package/dist/custom-auth-path/controllers/ControllerFactory.mjs +5 -3
  155. package/dist/custom-auth-path/controllers/ControllerFactory.mjs.map +1 -1
  156. package/dist/custom-auth-path/controllers/IController.d.ts +5 -6
  157. package/dist/custom-auth-path/controllers/IController.d.ts.map +1 -1
  158. package/dist/custom-auth-path/controllers/NestedAppAuthController.d.ts +4 -9
  159. package/dist/custom-auth-path/controllers/NestedAppAuthController.d.ts.map +1 -1
  160. package/dist/custom-auth-path/controllers/StandardController.d.ts +9 -30
  161. package/dist/custom-auth-path/controllers/StandardController.d.ts.map +1 -1
  162. package/dist/custom-auth-path/controllers/StandardController.mjs +202 -302
  163. package/dist/custom-auth-path/controllers/StandardController.mjs.map +1 -1
  164. package/dist/custom-auth-path/controllers/UnknownOperatingContextController.d.ts +4 -8
  165. package/dist/custom-auth-path/controllers/UnknownOperatingContextController.d.ts.map +1 -1
  166. package/dist/custom-auth-path/crypto/BrowserCrypto.d.ts +1 -2
  167. package/dist/custom-auth-path/crypto/BrowserCrypto.d.ts.map +1 -1
  168. package/dist/custom-auth-path/crypto/BrowserCrypto.mjs +2 -4
  169. package/dist/custom-auth-path/crypto/BrowserCrypto.mjs.map +1 -1
  170. package/dist/custom-auth-path/crypto/CryptoOps.d.ts +4 -2
  171. package/dist/custom-auth-path/crypto/CryptoOps.d.ts.map +1 -1
  172. package/dist/custom-auth-path/crypto/CryptoOps.mjs +17 -14
  173. package/dist/custom-auth-path/crypto/CryptoOps.mjs.map +1 -1
  174. package/dist/custom-auth-path/crypto/PkceGenerator.d.ts.map +1 -1
  175. package/dist/custom-auth-path/crypto/PkceGenerator.mjs +7 -8
  176. package/dist/custom-auth-path/crypto/PkceGenerator.mjs.map +1 -1
  177. package/dist/custom-auth-path/crypto/SignedHttpRequest.d.ts +2 -1
  178. package/dist/custom-auth-path/crypto/SignedHttpRequest.d.ts.map +1 -1
  179. package/dist/custom-auth-path/custom_auth/CustomAuthConstants.d.ts +2 -3
  180. package/dist/custom-auth-path/custom_auth/CustomAuthConstants.d.ts.map +1 -1
  181. package/dist/custom-auth-path/custom_auth/CustomAuthConstants.mjs +1 -2
  182. package/dist/custom-auth-path/custom_auth/CustomAuthConstants.mjs.map +1 -1
  183. package/dist/custom-auth-path/custom_auth/CustomAuthPublicClientApplication.mjs +1 -1
  184. package/dist/custom-auth-path/custom_auth/CustomAuthPublicClientApplication.mjs.map +1 -1
  185. package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.d.ts.map +1 -1
  186. package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.mjs +9 -9
  187. package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.mjs.map +1 -1
  188. package/dist/custom-auth-path/custom_auth/core/CustomAuthAuthority.d.ts.map +1 -1
  189. package/dist/custom-auth-path/custom_auth/core/CustomAuthAuthority.mjs +6 -7
  190. package/dist/custom-auth-path/custom_auth/core/CustomAuthAuthority.mjs.map +1 -1
  191. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +1 -2
  192. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +1 -1
  193. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs +3 -11
  194. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs.map +1 -1
  195. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowResultBase.mjs +1 -1
  196. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowResultBase.mjs.map +1 -1
  197. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowState.mjs +1 -1
  198. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowState.mjs.map +1 -1
  199. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts +0 -5
  200. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts.map +1 -1
  201. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.mjs +2 -9
  202. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.mjs.map +1 -1
  203. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.mjs +1 -1
  204. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.mjs.map +1 -1
  205. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.mjs +1 -1
  206. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.mjs.map +1 -1
  207. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.mjs +1 -1
  208. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.mjs +1 -1
  209. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.mjs +1 -1
  210. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.mjs.map +1 -1
  211. package/dist/custom-auth-path/custom_auth/core/error/CustomAuthApiError.mjs +1 -1
  212. package/dist/custom-auth-path/custom_auth/core/error/CustomAuthApiError.mjs.map +1 -1
  213. package/dist/custom-auth-path/custom_auth/core/error/CustomAuthError.mjs +1 -1
  214. package/dist/custom-auth-path/custom_auth/core/error/CustomAuthError.mjs.map +1 -1
  215. package/dist/custom-auth-path/custom_auth/core/error/HttpError.mjs +1 -1
  216. package/dist/custom-auth-path/custom_auth/core/error/HttpError.mjs.map +1 -1
  217. package/dist/custom-auth-path/custom_auth/core/error/HttpErrorCodes.mjs +1 -1
  218. package/dist/custom-auth-path/custom_auth/core/error/InvalidArgumentError.mjs +1 -1
  219. package/dist/custom-auth-path/custom_auth/core/error/InvalidArgumentError.mjs.map +1 -1
  220. package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationError.mjs +1 -1
  221. package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationError.mjs.map +1 -1
  222. package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationErrorCodes.mjs +1 -1
  223. package/dist/custom-auth-path/custom_auth/core/error/MethodNotImplementedError.mjs +1 -1
  224. package/dist/custom-auth-path/custom_auth/core/error/MethodNotImplementedError.mjs.map +1 -1
  225. package/dist/custom-auth-path/custom_auth/core/error/MsalCustomAuthError.mjs +1 -1
  226. package/dist/custom-auth-path/custom_auth/core/error/MsalCustomAuthError.mjs.map +1 -1
  227. package/dist/custom-auth-path/custom_auth/core/error/NoCachedAccountFoundError.mjs +1 -1
  228. package/dist/custom-auth-path/custom_auth/core/error/NoCachedAccountFoundError.mjs.map +1 -1
  229. package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlError.mjs +1 -1
  230. package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlError.mjs.map +1 -1
  231. package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlErrorCodes.mjs +1 -1
  232. package/dist/custom-auth-path/custom_auth/core/error/UnexpectedError.mjs +1 -1
  233. package/dist/custom-auth-path/custom_auth/core/error/UnexpectedError.mjs.map +1 -1
  234. package/dist/custom-auth-path/custom_auth/core/error/UnsupportedEnvironmentError.mjs +1 -1
  235. package/dist/custom-auth-path/custom_auth/core/error/UnsupportedEnvironmentError.mjs.map +1 -1
  236. package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeError.mjs +1 -1
  237. package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeError.mjs.map +1 -1
  238. package/dist/custom-auth-path/custom_auth/core/error/UserAlreadySignedInError.mjs +1 -1
  239. package/dist/custom-auth-path/custom_auth/core/error/UserAlreadySignedInError.mjs.map +1 -1
  240. package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +1 -1
  241. package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.mjs +4 -4
  242. package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.mjs.map +1 -1
  243. package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.mjs +1 -1
  244. package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.mjs.map +1 -1
  245. package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/JitClient.d.ts +8 -2
  246. package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/JitClient.d.ts.map +1 -1
  247. package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/JitClient.mjs +29 -6
  248. package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/JitClient.mjs.map +1 -1
  249. package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts +1 -0
  250. package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts.map +1 -1
  251. package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts +11 -2
  252. package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts.map +1 -1
  253. package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/result/JitActionResult.mjs +9 -2
  254. package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/result/JitActionResult.mjs.map +1 -1
  255. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs +1 -1
  256. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs.map +1 -1
  257. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs +1 -1
  258. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs.map +1 -1
  259. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +0 -1
  260. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +1 -1
  261. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.mjs +2 -3
  262. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.mjs.map +1 -1
  263. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.mjs +1 -1
  264. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.mjs.map +1 -1
  265. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs +1 -1
  266. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs.map +1 -1
  267. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +2 -7
  268. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +1 -1
  269. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs +3 -14
  270. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs.map +1 -1
  271. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs +1 -1
  272. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs.map +1 -1
  273. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.mjs +1 -1
  274. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +0 -5
  275. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +1 -1
  276. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +1 -5
  277. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +1 -1
  278. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +0 -1
  279. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +1 -1
  280. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.mjs +3 -4
  281. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.mjs.map +1 -1
  282. package/dist/custom-auth-path/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +1 -1
  283. package/dist/custom-auth-path/custom_auth/core/network_client/http_client/FetchHttpClient.mjs +5 -5
  284. package/dist/custom-auth-path/custom_auth/core/network_client/http_client/FetchHttpClient.mjs.map +1 -1
  285. package/dist/custom-auth-path/custom_auth/core/network_client/http_client/IHttpClient.mjs +1 -1
  286. package/dist/custom-auth-path/custom_auth/core/network_client/http_client/IHttpClient.mjs.map +1 -1
  287. package/dist/custom-auth-path/custom_auth/core/telemetry/PublicApiId.d.ts +3 -4
  288. package/dist/custom-auth-path/custom_auth/core/telemetry/PublicApiId.d.ts.map +1 -1
  289. package/dist/custom-auth-path/custom_auth/core/telemetry/PublicApiId.mjs +5 -4
  290. package/dist/custom-auth-path/custom_auth/core/telemetry/PublicApiId.mjs.map +1 -1
  291. package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.mjs +1 -1
  292. package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.mjs.map +1 -1
  293. package/dist/custom-auth-path/custom_auth/core/utils/UrlUtils.mjs +1 -1
  294. package/dist/custom-auth-path/custom_auth/core/utils/UrlUtils.mjs.map +1 -1
  295. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs +4 -4
  296. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs.map +1 -1
  297. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/error_type/GetAccountError.mjs +1 -1
  298. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/error_type/GetAccountError.mjs.map +1 -1
  299. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.mjs +1 -1
  300. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.mjs.map +1 -1
  301. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccountResult.mjs +1 -1
  302. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccountResult.mjs.map +1 -1
  303. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/SignOutResult.mjs +1 -1
  304. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/SignOutResult.mjs.map +1 -1
  305. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccessTokenState.mjs +1 -1
  306. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccountState.mjs +1 -1
  307. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/SignOutState.mjs +1 -1
  308. package/dist/custom-auth-path/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +1 -1
  309. package/dist/custom-auth-path/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.mjs +7 -9
  310. package/dist/custom-auth-path/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.mjs.map +1 -1
  311. package/dist/custom-auth-path/custom_auth/index.mjs +1 -1
  312. package/dist/custom-auth-path/custom_auth/operating_context/CustomAuthOperatingContext.mjs +1 -1
  313. package/dist/custom-auth-path/custom_auth/operating_context/CustomAuthOperatingContext.mjs.map +1 -1
  314. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.mjs +1 -1
  315. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.mjs.map +1 -1
  316. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.mjs +1 -1
  317. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.mjs.map +1 -1
  318. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.mjs +1 -1
  319. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.mjs.map +1 -1
  320. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.mjs +1 -1
  321. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.mjs.map +1 -1
  322. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.mjs +1 -1
  323. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.mjs.map +1 -1
  324. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.mjs +3 -3
  325. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.mjs.map +1 -1
  326. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.mjs +1 -1
  327. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.mjs +1 -1
  328. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.mjs +2 -2
  329. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.mjs.map +1 -1
  330. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordState.mjs +1 -1
  331. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordState.mjs.map +1 -1
  332. package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +1 -1
  333. package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/ResetPasswordClient.mjs +7 -6
  334. package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/ResetPasswordClient.mjs.map +1 -1
  335. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/SignInScenario.mjs +1 -1
  336. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/SignInScenario.mjs.map +1 -1
  337. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs +1 -1
  338. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs.map +1 -1
  339. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.mjs +1 -1
  340. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.mjs.map +1 -1
  341. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResult.mjs +1 -1
  342. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResult.mjs.map +1 -1
  343. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.mjs +1 -1
  344. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.mjs.map +1 -1
  345. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.mjs +1 -1
  346. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.mjs.map +1 -1
  347. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +1 -1
  348. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs +5 -14
  349. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs.map +1 -1
  350. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCompletedState.mjs +1 -1
  351. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs +2 -2
  352. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs.map +1 -1
  353. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInFailedState.mjs +1 -1
  354. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs +2 -2
  355. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs.map +1 -1
  356. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInState.mjs +1 -1
  357. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInState.mjs.map +1 -1
  358. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.d.ts +6 -8
  359. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +1 -1
  360. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.mjs +36 -57
  361. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.mjs.map +1 -1
  362. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +0 -6
  363. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +1 -1
  364. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/result/SignInActionResult.mjs +2 -9
  365. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/result/SignInActionResult.mjs.map +1 -1
  366. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/error_type/SignUpError.mjs +1 -1
  367. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/error_type/SignUpError.mjs.map +1 -1
  368. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.mjs +1 -1
  369. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.mjs.map +1 -1
  370. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResult.mjs +1 -1
  371. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResult.mjs.map +1 -1
  372. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.mjs +1 -1
  373. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.mjs.map +1 -1
  374. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.mjs +1 -1
  375. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.mjs.map +1 -1
  376. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.mjs +1 -1
  377. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.mjs.map +1 -1
  378. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.mjs +2 -2
  379. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.mjs.map +1 -1
  380. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.mjs +3 -3
  381. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.mjs.map +1 -1
  382. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.mjs +1 -1
  383. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpFailedState.mjs +1 -1
  384. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.mjs +2 -2
  385. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.mjs.map +1 -1
  386. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpState.mjs +1 -1
  387. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpState.mjs.map +1 -1
  388. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +1 -1
  389. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/SignUpClient.mjs +10 -9
  390. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/SignUpClient.mjs.map +1 -1
  391. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/result/SignUpActionResult.mjs +1 -1
  392. package/dist/custom-auth-path/encode/Base64Decode.mjs +1 -1
  393. package/dist/custom-auth-path/encode/Base64Encode.mjs +1 -1
  394. package/dist/custom-auth-path/error/BrowserAuthError.d.ts +1 -246
  395. package/dist/custom-auth-path/error/BrowserAuthError.d.ts.map +1 -1
  396. package/dist/custom-auth-path/error/BrowserAuthError.mjs +6 -61
  397. package/dist/custom-auth-path/error/BrowserAuthError.mjs.map +1 -1
  398. package/dist/custom-auth-path/error/BrowserAuthErrorCodes.mjs +2 -8
  399. package/dist/custom-auth-path/error/BrowserAuthErrorCodes.mjs.map +1 -1
  400. package/dist/custom-auth-path/error/BrowserConfigurationAuthError.d.ts +0 -23
  401. package/dist/custom-auth-path/error/BrowserConfigurationAuthError.d.ts.map +1 -1
  402. package/dist/custom-auth-path/error/BrowserConfigurationAuthError.mjs +4 -9
  403. package/dist/custom-auth-path/error/BrowserConfigurationAuthError.mjs.map +1 -1
  404. package/dist/custom-auth-path/error/BrowserConfigurationAuthErrorCodes.mjs +2 -3
  405. package/dist/custom-auth-path/error/BrowserConfigurationAuthErrorCodes.mjs.map +1 -1
  406. package/dist/custom-auth-path/error/NativeAuthError.d.ts +0 -3
  407. package/dist/custom-auth-path/error/NativeAuthError.d.ts.map +1 -1
  408. package/dist/custom-auth-path/error/NativeAuthError.mjs +10 -12
  409. package/dist/custom-auth-path/error/NativeAuthError.mjs.map +1 -1
  410. package/dist/custom-auth-path/error/NativeAuthErrorCodes.d.ts +1 -0
  411. package/dist/custom-auth-path/error/NativeAuthErrorCodes.d.ts.map +1 -1
  412. package/dist/custom-auth-path/error/NativeAuthErrorCodes.mjs +1 -1
  413. package/dist/custom-auth-path/error/NestedAppAuthError.d.ts +0 -9
  414. package/dist/custom-auth-path/error/NestedAppAuthError.d.ts.map +1 -1
  415. package/dist/custom-auth-path/event/EventHandler.d.ts.map +1 -1
  416. package/dist/custom-auth-path/event/EventHandler.mjs +9 -12
  417. package/dist/custom-auth-path/event/EventHandler.mjs.map +1 -1
  418. package/dist/custom-auth-path/event/EventMessage.d.ts.map +1 -1
  419. package/dist/custom-auth-path/event/EventType.d.ts +3 -10
  420. package/dist/custom-auth-path/event/EventType.d.ts.map +1 -1
  421. package/dist/custom-auth-path/event/EventType.mjs +4 -11
  422. package/dist/custom-auth-path/event/EventType.mjs.map +1 -1
  423. package/dist/custom-auth-path/index.d.ts +34 -6
  424. package/dist/custom-auth-path/index.d.ts.map +1 -1
  425. package/dist/custom-auth-path/interaction_client/BaseInteractionClient.d.ts +50 -32
  426. package/dist/custom-auth-path/interaction_client/BaseInteractionClient.d.ts.map +1 -1
  427. package/dist/custom-auth-path/interaction_client/BaseInteractionClient.mjs +116 -97
  428. package/dist/custom-auth-path/interaction_client/BaseInteractionClient.mjs.map +1 -1
  429. package/dist/custom-auth-path/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +2 -2
  430. package/dist/custom-auth-path/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +1 -1
  431. package/dist/custom-auth-path/interaction_client/HybridSpaAuthorizationCodeClient.mjs +3 -3
  432. package/dist/custom-auth-path/interaction_client/HybridSpaAuthorizationCodeClient.mjs.map +1 -1
  433. package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.d.ts +5 -3
  434. package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.d.ts.map +1 -1
  435. package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.mjs +71 -84
  436. package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.mjs.map +1 -1
  437. package/dist/custom-auth-path/interaction_client/PopupClient.d.ts +2 -14
  438. package/dist/custom-auth-path/interaction_client/PopupClient.d.ts.map +1 -1
  439. package/dist/custom-auth-path/interaction_client/PopupClient.mjs +64 -153
  440. package/dist/custom-auth-path/interaction_client/PopupClient.mjs.map +1 -1
  441. package/dist/custom-auth-path/interaction_client/RedirectClient.d.ts +8 -9
  442. package/dist/custom-auth-path/interaction_client/RedirectClient.d.ts.map +1 -1
  443. package/dist/custom-auth-path/interaction_client/RedirectClient.mjs +103 -112
  444. package/dist/custom-auth-path/interaction_client/RedirectClient.mjs.map +1 -1
  445. package/dist/custom-auth-path/interaction_client/SilentAuthCodeClient.d.ts +1 -1
  446. package/dist/custom-auth-path/interaction_client/SilentAuthCodeClient.d.ts.map +1 -1
  447. package/dist/custom-auth-path/interaction_client/SilentAuthCodeClient.mjs +17 -10
  448. package/dist/custom-auth-path/interaction_client/SilentAuthCodeClient.mjs.map +1 -1
  449. package/dist/custom-auth-path/interaction_client/SilentCacheClient.d.ts.map +1 -1
  450. package/dist/custom-auth-path/interaction_client/SilentCacheClient.mjs +11 -10
  451. package/dist/custom-auth-path/interaction_client/SilentCacheClient.mjs.map +1 -1
  452. package/dist/custom-auth-path/interaction_client/SilentIframeClient.d.ts +1 -1
  453. package/dist/custom-auth-path/interaction_client/SilentIframeClient.d.ts.map +1 -1
  454. package/dist/custom-auth-path/interaction_client/SilentIframeClient.mjs +38 -49
  455. package/dist/custom-auth-path/interaction_client/SilentIframeClient.mjs.map +1 -1
  456. package/dist/custom-auth-path/interaction_client/SilentRefreshClient.d.ts.map +1 -1
  457. package/dist/custom-auth-path/interaction_client/SilentRefreshClient.mjs +9 -8
  458. package/dist/custom-auth-path/interaction_client/SilentRefreshClient.mjs.map +1 -1
  459. package/dist/custom-auth-path/interaction_client/StandardInteractionClient.d.ts +17 -7
  460. package/dist/custom-auth-path/interaction_client/StandardInteractionClient.d.ts.map +1 -1
  461. package/dist/custom-auth-path/interaction_client/StandardInteractionClient.mjs +55 -63
  462. package/dist/custom-auth-path/interaction_client/StandardInteractionClient.mjs.map +1 -1
  463. package/dist/custom-auth-path/interaction_handler/InteractionHandler.d.ts +2 -3
  464. package/dist/custom-auth-path/interaction_handler/InteractionHandler.d.ts.map +1 -1
  465. package/dist/custom-auth-path/interaction_handler/InteractionHandler.mjs +8 -10
  466. package/dist/custom-auth-path/interaction_handler/InteractionHandler.mjs.map +1 -1
  467. package/dist/custom-auth-path/interaction_handler/SilentHandler.d.ts +3 -4
  468. package/dist/custom-auth-path/interaction_handler/SilentHandler.d.ts.map +1 -1
  469. package/dist/custom-auth-path/interaction_handler/SilentHandler.mjs +11 -48
  470. package/dist/custom-auth-path/interaction_handler/SilentHandler.mjs.map +1 -1
  471. package/dist/custom-auth-path/naa/mapping/NestedAppAuthAdapter.d.ts.map +1 -1
  472. package/dist/custom-auth-path/navigation/NavigationClient.mjs +1 -1
  473. package/dist/custom-auth-path/navigation/NavigationClient.mjs.map +1 -1
  474. package/dist/custom-auth-path/network/FetchClient.mjs +1 -1
  475. package/dist/custom-auth-path/network/FetchClient.mjs.map +1 -1
  476. package/dist/custom-auth-path/operatingcontext/BaseOperatingContext.d.ts +2 -1
  477. package/dist/custom-auth-path/operatingcontext/BaseOperatingContext.d.ts.map +1 -1
  478. package/dist/custom-auth-path/operatingcontext/BaseOperatingContext.mjs +1 -1
  479. package/dist/custom-auth-path/operatingcontext/BaseOperatingContext.mjs.map +1 -1
  480. package/dist/custom-auth-path/operatingcontext/NestedAppOperatingContext.d.ts +2 -1
  481. package/dist/custom-auth-path/operatingcontext/NestedAppOperatingContext.d.ts.map +1 -1
  482. package/dist/custom-auth-path/operatingcontext/StandardOperatingContext.d.ts +1 -1
  483. package/dist/custom-auth-path/operatingcontext/StandardOperatingContext.d.ts.map +1 -1
  484. package/dist/custom-auth-path/operatingcontext/StandardOperatingContext.mjs +3 -2
  485. package/dist/custom-auth-path/operatingcontext/StandardOperatingContext.mjs.map +1 -1
  486. package/dist/custom-auth-path/packageMetadata.d.ts +1 -1
  487. package/dist/custom-auth-path/packageMetadata.d.ts.map +1 -1
  488. package/dist/custom-auth-path/packageMetadata.mjs +2 -2
  489. package/dist/custom-auth-path/protocol/Authorize.d.ts +0 -4
  490. package/dist/custom-auth-path/protocol/Authorize.d.ts.map +1 -1
  491. package/dist/custom-auth-path/protocol/Authorize.mjs +20 -36
  492. package/dist/custom-auth-path/protocol/Authorize.mjs.map +1 -1
  493. package/dist/custom-auth-path/request/AuthorizationCodeRequest.d.ts +1 -1
  494. package/dist/custom-auth-path/request/AuthorizationCodeRequest.d.ts.map +1 -1
  495. package/dist/custom-auth-path/request/PopupRequest.d.ts +1 -1
  496. package/dist/custom-auth-path/request/PopupRequest.d.ts.map +1 -1
  497. package/dist/custom-auth-path/request/RedirectRequest.d.ts +1 -8
  498. package/dist/custom-auth-path/request/RedirectRequest.d.ts.map +1 -1
  499. package/dist/custom-auth-path/request/RequestHelpers.d.ts +6 -12
  500. package/dist/custom-auth-path/request/RequestHelpers.d.ts.map +1 -1
  501. package/dist/custom-auth-path/request/RequestHelpers.mjs +16 -48
  502. package/dist/custom-auth-path/request/RequestHelpers.mjs.map +1 -1
  503. package/dist/custom-auth-path/request/SilentRequest.d.ts +1 -1
  504. package/dist/custom-auth-path/request/SilentRequest.d.ts.map +1 -1
  505. package/dist/custom-auth-path/request/SsoSilentRequest.d.ts +1 -1
  506. package/dist/custom-auth-path/request/SsoSilentRequest.d.ts.map +1 -1
  507. package/dist/custom-auth-path/response/ResponseHandler.d.ts +1 -1
  508. package/dist/custom-auth-path/response/ResponseHandler.d.ts.map +1 -1
  509. package/dist/custom-auth-path/response/ResponseHandler.mjs +5 -5
  510. package/dist/custom-auth-path/response/ResponseHandler.mjs.map +1 -1
  511. package/dist/custom-auth-path/telemetry/BrowserPerformanceClient.d.ts +2 -19
  512. package/dist/custom-auth-path/telemetry/BrowserPerformanceClient.d.ts.map +1 -1
  513. package/dist/custom-auth-path/telemetry/BrowserPerformanceEvents.d.ts +131 -0
  514. package/dist/custom-auth-path/telemetry/BrowserPerformanceEvents.d.ts.map +1 -0
  515. package/dist/custom-auth-path/telemetry/BrowserPerformanceEvents.mjs +126 -0
  516. package/dist/custom-auth-path/telemetry/BrowserPerformanceEvents.mjs.map +1 -0
  517. package/dist/custom-auth-path/telemetry/BrowserRootPerformanceEvents.d.ts +35 -0
  518. package/dist/custom-auth-path/telemetry/BrowserRootPerformanceEvents.d.ts.map +1 -0
  519. package/dist/custom-auth-path/telemetry/BrowserRootPerformanceEvents.mjs +45 -0
  520. package/dist/custom-auth-path/telemetry/BrowserRootPerformanceEvents.mjs.map +1 -0
  521. package/dist/custom-auth-path/utils/BrowserConstants.d.ts +0 -8
  522. package/dist/custom-auth-path/utils/BrowserConstants.d.ts.map +1 -1
  523. package/dist/custom-auth-path/utils/BrowserConstants.mjs +3 -3
  524. package/dist/custom-auth-path/utils/BrowserConstants.mjs.map +1 -1
  525. package/dist/custom-auth-path/utils/BrowserProtocolUtils.mjs +1 -1
  526. package/dist/custom-auth-path/utils/BrowserProtocolUtils.mjs.map +1 -1
  527. package/dist/custom-auth-path/utils/BrowserUtils.d.ts.map +1 -1
  528. package/dist/custom-auth-path/utils/BrowserUtils.mjs +5 -6
  529. package/dist/custom-auth-path/utils/BrowserUtils.mjs.map +1 -1
  530. package/dist/custom-auth-path/utils/Helpers.mjs +1 -1
  531. package/dist/custom-auth-path/utils/Helpers.mjs.map +1 -1
  532. package/dist/custom-auth-path/utils/MsalFrameStatsUtils.d.ts +1 -1
  533. package/dist/custom-auth-path/utils/MsalFrameStatsUtils.d.ts.map +1 -1
  534. package/dist/custom-auth-path/utils/MsalFrameStatsUtils.mjs +3 -3
  535. package/dist/custom-auth-path/utils/MsalFrameStatsUtils.mjs.map +1 -1
  536. package/dist/custom-auth-path/utils/PopupUtils.d.ts +33 -0
  537. package/dist/custom-auth-path/utils/PopupUtils.d.ts.map +1 -0
  538. package/dist/custom-auth-path/utils/PopupUtils.mjs +90 -0
  539. package/dist/custom-auth-path/utils/PopupUtils.mjs.map +1 -0
  540. package/dist/custom_auth/CustomAuthConstants.d.ts +2 -3
  541. package/dist/custom_auth/CustomAuthConstants.d.ts.map +1 -1
  542. package/dist/custom_auth/controller/CustomAuthStandardController.d.ts.map +1 -1
  543. package/dist/custom_auth/core/CustomAuthAuthority.d.ts.map +1 -1
  544. package/dist/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +1 -2
  545. package/dist/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +1 -1
  546. package/dist/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts +0 -5
  547. package/dist/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts.map +1 -1
  548. package/dist/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +1 -1
  549. package/dist/custom_auth/core/interaction_client/jit/JitClient.d.ts +8 -2
  550. package/dist/custom_auth/core/interaction_client/jit/JitClient.d.ts.map +1 -1
  551. package/dist/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts +1 -0
  552. package/dist/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts.map +1 -1
  553. package/dist/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts +11 -2
  554. package/dist/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts.map +1 -1
  555. package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +0 -1
  556. package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +1 -1
  557. package/dist/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +2 -7
  558. package/dist/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +1 -1
  559. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +0 -5
  560. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +1 -1
  561. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +1 -5
  562. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +1 -1
  563. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +0 -1
  564. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +1 -1
  565. package/dist/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +1 -1
  566. package/dist/custom_auth/core/telemetry/PublicApiId.d.ts +3 -4
  567. package/dist/custom_auth/core/telemetry/PublicApiId.d.ts.map +1 -1
  568. package/dist/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +1 -1
  569. package/dist/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +1 -1
  570. package/dist/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +1 -1
  571. package/dist/custom_auth/sign_in/interaction_client/SignInClient.d.ts +6 -8
  572. package/dist/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +1 -1
  573. package/dist/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +0 -6
  574. package/dist/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +1 -1
  575. package/dist/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +1 -1
  576. package/dist/encode/Base64Decode.mjs +1 -1
  577. package/dist/encode/Base64Encode.mjs +1 -1
  578. package/dist/error/BrowserAuthError.d.ts +1 -246
  579. package/dist/error/BrowserAuthError.d.ts.map +1 -1
  580. package/dist/error/BrowserAuthError.mjs +6 -253
  581. package/dist/error/BrowserAuthError.mjs.map +1 -1
  582. package/dist/error/BrowserAuthErrorCodes.mjs +1 -1
  583. package/dist/error/BrowserConfigurationAuthError.d.ts +0 -23
  584. package/dist/error/BrowserConfigurationAuthError.d.ts.map +1 -1
  585. package/dist/error/BrowserConfigurationAuthError.mjs +4 -29
  586. package/dist/error/BrowserConfigurationAuthError.mjs.map +1 -1
  587. package/dist/error/BrowserConfigurationAuthErrorCodes.mjs +1 -1
  588. package/dist/error/NativeAuthError.d.ts +0 -3
  589. package/dist/error/NativeAuthError.d.ts.map +1 -1
  590. package/dist/error/NativeAuthError.mjs +10 -12
  591. package/dist/error/NativeAuthError.mjs.map +1 -1
  592. package/dist/error/NativeAuthErrorCodes.d.ts +1 -0
  593. package/dist/error/NativeAuthErrorCodes.d.ts.map +1 -1
  594. package/dist/error/NativeAuthErrorCodes.mjs +4 -3
  595. package/dist/error/NativeAuthErrorCodes.mjs.map +1 -1
  596. package/dist/error/NestedAppAuthError.d.ts +0 -9
  597. package/dist/error/NestedAppAuthError.d.ts.map +1 -1
  598. package/dist/error/NestedAppAuthError.mjs +4 -12
  599. package/dist/error/NestedAppAuthError.mjs.map +1 -1
  600. package/dist/event/EventHandler.d.ts.map +1 -1
  601. package/dist/event/EventHandler.mjs +9 -12
  602. package/dist/event/EventHandler.mjs.map +1 -1
  603. package/dist/event/EventMessage.d.ts.map +1 -1
  604. package/dist/event/EventMessage.mjs +2 -17
  605. package/dist/event/EventMessage.mjs.map +1 -1
  606. package/dist/event/EventType.d.ts +3 -10
  607. package/dist/event/EventType.d.ts.map +1 -1
  608. package/dist/event/EventType.mjs +4 -11
  609. package/dist/event/EventType.mjs.map +1 -1
  610. package/dist/index.d.ts +34 -6
  611. package/dist/index.d.ts.map +1 -1
  612. package/dist/index.mjs +25 -6
  613. package/dist/index.mjs.map +1 -1
  614. package/dist/interaction_client/BaseInteractionClient.d.ts +50 -32
  615. package/dist/interaction_client/BaseInteractionClient.d.ts.map +1 -1
  616. package/dist/interaction_client/BaseInteractionClient.mjs +116 -97
  617. package/dist/interaction_client/BaseInteractionClient.mjs.map +1 -1
  618. package/dist/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +2 -2
  619. package/dist/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +1 -1
  620. package/dist/interaction_client/HybridSpaAuthorizationCodeClient.mjs +3 -3
  621. package/dist/interaction_client/HybridSpaAuthorizationCodeClient.mjs.map +1 -1
  622. package/dist/interaction_client/PlatformAuthInteractionClient.d.ts +5 -3
  623. package/dist/interaction_client/PlatformAuthInteractionClient.d.ts.map +1 -1
  624. package/dist/interaction_client/PlatformAuthInteractionClient.mjs +71 -84
  625. package/dist/interaction_client/PlatformAuthInteractionClient.mjs.map +1 -1
  626. package/dist/interaction_client/PopupClient.d.ts +2 -14
  627. package/dist/interaction_client/PopupClient.d.ts.map +1 -1
  628. package/dist/interaction_client/PopupClient.mjs +64 -153
  629. package/dist/interaction_client/PopupClient.mjs.map +1 -1
  630. package/dist/interaction_client/RedirectClient.d.ts +8 -9
  631. package/dist/interaction_client/RedirectClient.d.ts.map +1 -1
  632. package/dist/interaction_client/RedirectClient.mjs +103 -112
  633. package/dist/interaction_client/RedirectClient.mjs.map +1 -1
  634. package/dist/interaction_client/SilentAuthCodeClient.d.ts +1 -1
  635. package/dist/interaction_client/SilentAuthCodeClient.d.ts.map +1 -1
  636. package/dist/interaction_client/SilentAuthCodeClient.mjs +17 -10
  637. package/dist/interaction_client/SilentAuthCodeClient.mjs.map +1 -1
  638. package/dist/interaction_client/SilentCacheClient.d.ts.map +1 -1
  639. package/dist/interaction_client/SilentCacheClient.mjs +11 -10
  640. package/dist/interaction_client/SilentCacheClient.mjs.map +1 -1
  641. package/dist/interaction_client/SilentIframeClient.d.ts +1 -1
  642. package/dist/interaction_client/SilentIframeClient.d.ts.map +1 -1
  643. package/dist/interaction_client/SilentIframeClient.mjs +38 -49
  644. package/dist/interaction_client/SilentIframeClient.mjs.map +1 -1
  645. package/dist/interaction_client/SilentRefreshClient.d.ts.map +1 -1
  646. package/dist/interaction_client/SilentRefreshClient.mjs +9 -8
  647. package/dist/interaction_client/SilentRefreshClient.mjs.map +1 -1
  648. package/dist/interaction_client/StandardInteractionClient.d.ts +17 -7
  649. package/dist/interaction_client/StandardInteractionClient.d.ts.map +1 -1
  650. package/dist/interaction_client/StandardInteractionClient.mjs +55 -63
  651. package/dist/interaction_client/StandardInteractionClient.mjs.map +1 -1
  652. package/dist/interaction_handler/InteractionHandler.d.ts +2 -3
  653. package/dist/interaction_handler/InteractionHandler.d.ts.map +1 -1
  654. package/dist/interaction_handler/InteractionHandler.mjs +8 -10
  655. package/dist/interaction_handler/InteractionHandler.mjs.map +1 -1
  656. package/dist/interaction_handler/SilentHandler.d.ts +3 -4
  657. package/dist/interaction_handler/SilentHandler.d.ts.map +1 -1
  658. package/dist/interaction_handler/SilentHandler.mjs +11 -48
  659. package/dist/interaction_handler/SilentHandler.mjs.map +1 -1
  660. package/dist/naa/BridgeError.mjs +1 -1
  661. package/dist/naa/BridgeProxy.mjs +1 -1
  662. package/dist/naa/BridgeProxy.mjs.map +1 -1
  663. package/dist/naa/BridgeStatusCode.mjs +1 -1
  664. package/dist/naa/BridgeStatusCode.mjs.map +1 -1
  665. package/dist/naa/mapping/NestedAppAuthAdapter.d.ts.map +1 -1
  666. package/dist/naa/mapping/NestedAppAuthAdapter.mjs +9 -6
  667. package/dist/naa/mapping/NestedAppAuthAdapter.mjs.map +1 -1
  668. package/dist/navigation/NavigationClient.mjs +1 -1
  669. package/dist/navigation/NavigationClient.mjs.map +1 -1
  670. package/dist/network/FetchClient.mjs +1 -1
  671. package/dist/network/FetchClient.mjs.map +1 -1
  672. package/dist/operatingcontext/BaseOperatingContext.d.ts +2 -1
  673. package/dist/operatingcontext/BaseOperatingContext.d.ts.map +1 -1
  674. package/dist/operatingcontext/BaseOperatingContext.mjs +1 -1
  675. package/dist/operatingcontext/BaseOperatingContext.mjs.map +1 -1
  676. package/dist/operatingcontext/NestedAppOperatingContext.d.ts +2 -1
  677. package/dist/operatingcontext/NestedAppOperatingContext.d.ts.map +1 -1
  678. package/dist/operatingcontext/NestedAppOperatingContext.mjs +5 -4
  679. package/dist/operatingcontext/NestedAppOperatingContext.mjs.map +1 -1
  680. package/dist/operatingcontext/StandardOperatingContext.d.ts +1 -1
  681. package/dist/operatingcontext/StandardOperatingContext.d.ts.map +1 -1
  682. package/dist/operatingcontext/StandardOperatingContext.mjs +3 -2
  683. package/dist/operatingcontext/StandardOperatingContext.mjs.map +1 -1
  684. package/dist/operatingcontext/UnknownOperatingContext.mjs +1 -1
  685. package/dist/operatingcontext/UnknownOperatingContext.mjs.map +1 -1
  686. package/dist/packageMetadata.d.ts +1 -1
  687. package/dist/packageMetadata.d.ts.map +1 -1
  688. package/dist/packageMetadata.mjs +2 -2
  689. package/dist/protocol/Authorize.d.ts +0 -4
  690. package/dist/protocol/Authorize.d.ts.map +1 -1
  691. package/dist/protocol/Authorize.mjs +20 -36
  692. package/dist/protocol/Authorize.mjs.map +1 -1
  693. package/dist/request/AuthorizationCodeRequest.d.ts +1 -1
  694. package/dist/request/AuthorizationCodeRequest.d.ts.map +1 -1
  695. package/dist/request/PopupRequest.d.ts +1 -1
  696. package/dist/request/PopupRequest.d.ts.map +1 -1
  697. package/dist/request/RedirectRequest.d.ts +1 -8
  698. package/dist/request/RedirectRequest.d.ts.map +1 -1
  699. package/dist/request/RequestHelpers.d.ts +6 -12
  700. package/dist/request/RequestHelpers.d.ts.map +1 -1
  701. package/dist/request/RequestHelpers.mjs +16 -48
  702. package/dist/request/RequestHelpers.mjs.map +1 -1
  703. package/dist/request/SilentRequest.d.ts +1 -1
  704. package/dist/request/SilentRequest.d.ts.map +1 -1
  705. package/dist/request/SsoSilentRequest.d.ts +1 -1
  706. package/dist/request/SsoSilentRequest.d.ts.map +1 -1
  707. package/dist/response/ResponseHandler.d.ts +1 -1
  708. package/dist/response/ResponseHandler.d.ts.map +1 -1
  709. package/dist/response/ResponseHandler.mjs +5 -5
  710. package/dist/response/ResponseHandler.mjs.map +1 -1
  711. package/dist/telemetry/BrowserPerformanceClient.d.ts +2 -19
  712. package/dist/telemetry/BrowserPerformanceClient.d.ts.map +1 -1
  713. package/dist/telemetry/BrowserPerformanceClient.mjs +5 -60
  714. package/dist/telemetry/BrowserPerformanceClient.mjs.map +1 -1
  715. package/dist/telemetry/BrowserPerformanceEvents.d.ts +131 -0
  716. package/dist/telemetry/BrowserPerformanceEvents.d.ts.map +1 -0
  717. package/dist/telemetry/BrowserPerformanceEvents.mjs +126 -0
  718. package/dist/telemetry/BrowserPerformanceEvents.mjs.map +1 -0
  719. package/dist/telemetry/BrowserPerformanceMeasurement.mjs +1 -1
  720. package/dist/telemetry/BrowserPerformanceMeasurement.mjs.map +1 -1
  721. package/dist/telemetry/BrowserRootPerformanceEvents.d.ts +35 -0
  722. package/dist/telemetry/BrowserRootPerformanceEvents.d.ts.map +1 -0
  723. package/dist/telemetry/BrowserRootPerformanceEvents.mjs +45 -0
  724. package/dist/telemetry/BrowserRootPerformanceEvents.mjs.map +1 -0
  725. package/dist/utils/BrowserConstants.d.ts +0 -8
  726. package/dist/utils/BrowserConstants.d.ts.map +1 -1
  727. package/dist/utils/BrowserConstants.mjs +3 -11
  728. package/dist/utils/BrowserConstants.mjs.map +1 -1
  729. package/dist/utils/BrowserProtocolUtils.mjs +1 -1
  730. package/dist/utils/BrowserProtocolUtils.mjs.map +1 -1
  731. package/dist/utils/BrowserUtils.d.ts.map +1 -1
  732. package/dist/utils/BrowserUtils.mjs +5 -6
  733. package/dist/utils/BrowserUtils.mjs.map +1 -1
  734. package/dist/utils/Helpers.mjs +1 -1
  735. package/dist/utils/Helpers.mjs.map +1 -1
  736. package/dist/utils/MsalFrameStatsUtils.d.ts +1 -1
  737. package/dist/utils/MsalFrameStatsUtils.d.ts.map +1 -1
  738. package/dist/utils/MsalFrameStatsUtils.mjs +3 -3
  739. package/dist/utils/MsalFrameStatsUtils.mjs.map +1 -1
  740. package/dist/utils/PopupUtils.d.ts +33 -0
  741. package/dist/utils/PopupUtils.d.ts.map +1 -0
  742. package/dist/utils/PopupUtils.mjs +90 -0
  743. package/dist/utils/PopupUtils.mjs.map +1 -0
  744. package/lib/custom-auth-path/msal-custom-auth.cjs +2541 -3592
  745. package/lib/custom-auth-path/msal-custom-auth.cjs.map +1 -1
  746. package/lib/custom-auth-path/types/app/IPublicClientApplication.d.ts +2 -9
  747. package/lib/custom-auth-path/types/app/IPublicClientApplication.d.ts.map +1 -1
  748. package/lib/custom-auth-path/types/app/PublicClientApplication.d.ts +3 -49
  749. package/lib/custom-auth-path/types/app/PublicClientApplication.d.ts.map +1 -1
  750. package/lib/custom-auth-path/types/app/PublicClientNext.d.ts +2 -49
  751. package/lib/custom-auth-path/types/app/PublicClientNext.d.ts.map +1 -1
  752. package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthDOMHandler.d.ts.map +1 -1
  753. package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts +1 -1
  754. package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts.map +1 -1
  755. package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthProvider.d.ts +4 -2
  756. package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthProvider.d.ts.map +1 -1
  757. package/lib/custom-auth-path/types/cache/AccountManager.d.ts.map +1 -1
  758. package/lib/custom-auth-path/types/cache/AsyncMemoryStorage.d.ts +14 -7
  759. package/lib/custom-auth-path/types/cache/AsyncMemoryStorage.d.ts.map +1 -1
  760. package/lib/custom-auth-path/types/cache/BrowserCacheManager.d.ts +22 -25
  761. package/lib/custom-auth-path/types/cache/BrowserCacheManager.d.ts.map +1 -1
  762. package/lib/custom-auth-path/types/cache/IAsyncStorage.d.ts +10 -5
  763. package/lib/custom-auth-path/types/cache/IAsyncStorage.d.ts.map +1 -1
  764. package/lib/custom-auth-path/types/cache/LocalStorage.d.ts.map +1 -1
  765. package/lib/custom-auth-path/types/cache/TokenCache.d.ts +8 -68
  766. package/lib/custom-auth-path/types/cache/TokenCache.d.ts.map +1 -1
  767. package/lib/custom-auth-path/types/config/Configuration.d.ts +6 -55
  768. package/lib/custom-auth-path/types/config/Configuration.d.ts.map +1 -1
  769. package/lib/custom-auth-path/types/controllers/ControllerFactory.d.ts +1 -1
  770. package/lib/custom-auth-path/types/controllers/ControllerFactory.d.ts.map +1 -1
  771. package/lib/custom-auth-path/types/controllers/IController.d.ts +5 -6
  772. package/lib/custom-auth-path/types/controllers/IController.d.ts.map +1 -1
  773. package/lib/custom-auth-path/types/controllers/NestedAppAuthController.d.ts +4 -9
  774. package/lib/custom-auth-path/types/controllers/NestedAppAuthController.d.ts.map +1 -1
  775. package/lib/custom-auth-path/types/controllers/StandardController.d.ts +9 -30
  776. package/lib/custom-auth-path/types/controllers/StandardController.d.ts.map +1 -1
  777. package/lib/custom-auth-path/types/controllers/UnknownOperatingContextController.d.ts +4 -8
  778. package/lib/custom-auth-path/types/controllers/UnknownOperatingContextController.d.ts.map +1 -1
  779. package/lib/custom-auth-path/types/crypto/BrowserCrypto.d.ts +1 -2
  780. package/lib/custom-auth-path/types/crypto/BrowserCrypto.d.ts.map +1 -1
  781. package/lib/custom-auth-path/types/crypto/CryptoOps.d.ts +4 -2
  782. package/lib/custom-auth-path/types/crypto/CryptoOps.d.ts.map +1 -1
  783. package/lib/custom-auth-path/types/crypto/PkceGenerator.d.ts.map +1 -1
  784. package/lib/custom-auth-path/types/crypto/SignedHttpRequest.d.ts +2 -1
  785. package/lib/custom-auth-path/types/crypto/SignedHttpRequest.d.ts.map +1 -1
  786. package/lib/custom-auth-path/types/custom_auth/CustomAuthConstants.d.ts +2 -3
  787. package/lib/custom-auth-path/types/custom_auth/CustomAuthConstants.d.ts.map +1 -1
  788. package/lib/custom-auth-path/types/custom_auth/controller/CustomAuthStandardController.d.ts.map +1 -1
  789. package/lib/custom-auth-path/types/custom_auth/core/CustomAuthAuthority.d.ts.map +1 -1
  790. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +1 -2
  791. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +1 -1
  792. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts +0 -5
  793. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts.map +1 -1
  794. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +1 -1
  795. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/jit/JitClient.d.ts +8 -2
  796. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/jit/JitClient.d.ts.map +1 -1
  797. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts +1 -0
  798. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts.map +1 -1
  799. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts +11 -2
  800. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts.map +1 -1
  801. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +0 -1
  802. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +1 -1
  803. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +2 -7
  804. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +1 -1
  805. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +0 -5
  806. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +1 -1
  807. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +1 -5
  808. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +1 -1
  809. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +0 -1
  810. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +1 -1
  811. package/lib/custom-auth-path/types/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +1 -1
  812. package/lib/custom-auth-path/types/custom_auth/core/telemetry/PublicApiId.d.ts +3 -4
  813. package/lib/custom-auth-path/types/custom_auth/core/telemetry/PublicApiId.d.ts.map +1 -1
  814. package/lib/custom-auth-path/types/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +1 -1
  815. package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +1 -1
  816. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +1 -1
  817. package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts +6 -8
  818. package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +1 -1
  819. package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +0 -6
  820. package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +1 -1
  821. package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +1 -1
  822. package/lib/custom-auth-path/types/error/BrowserAuthError.d.ts +1 -246
  823. package/lib/custom-auth-path/types/error/BrowserAuthError.d.ts.map +1 -1
  824. package/lib/custom-auth-path/types/error/BrowserConfigurationAuthError.d.ts +0 -23
  825. package/lib/custom-auth-path/types/error/BrowserConfigurationAuthError.d.ts.map +1 -1
  826. package/lib/custom-auth-path/types/error/NativeAuthError.d.ts +0 -3
  827. package/lib/custom-auth-path/types/error/NativeAuthError.d.ts.map +1 -1
  828. package/lib/custom-auth-path/types/error/NativeAuthErrorCodes.d.ts +1 -0
  829. package/lib/custom-auth-path/types/error/NativeAuthErrorCodes.d.ts.map +1 -1
  830. package/lib/custom-auth-path/types/error/NestedAppAuthError.d.ts +0 -9
  831. package/lib/custom-auth-path/types/error/NestedAppAuthError.d.ts.map +1 -1
  832. package/lib/custom-auth-path/types/event/EventHandler.d.ts.map +1 -1
  833. package/lib/custom-auth-path/types/event/EventMessage.d.ts.map +1 -1
  834. package/lib/custom-auth-path/types/event/EventType.d.ts +3 -10
  835. package/lib/custom-auth-path/types/event/EventType.d.ts.map +1 -1
  836. package/lib/custom-auth-path/types/index.d.ts +34 -6
  837. package/lib/custom-auth-path/types/index.d.ts.map +1 -1
  838. package/lib/custom-auth-path/types/interaction_client/BaseInteractionClient.d.ts +50 -32
  839. package/lib/custom-auth-path/types/interaction_client/BaseInteractionClient.d.ts.map +1 -1
  840. package/lib/custom-auth-path/types/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +2 -2
  841. package/lib/custom-auth-path/types/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +1 -1
  842. package/lib/custom-auth-path/types/interaction_client/PlatformAuthInteractionClient.d.ts +5 -3
  843. package/lib/custom-auth-path/types/interaction_client/PlatformAuthInteractionClient.d.ts.map +1 -1
  844. package/lib/custom-auth-path/types/interaction_client/PopupClient.d.ts +2 -14
  845. package/lib/custom-auth-path/types/interaction_client/PopupClient.d.ts.map +1 -1
  846. package/lib/custom-auth-path/types/interaction_client/RedirectClient.d.ts +8 -9
  847. package/lib/custom-auth-path/types/interaction_client/RedirectClient.d.ts.map +1 -1
  848. package/lib/custom-auth-path/types/interaction_client/SilentAuthCodeClient.d.ts +1 -1
  849. package/lib/custom-auth-path/types/interaction_client/SilentAuthCodeClient.d.ts.map +1 -1
  850. package/lib/custom-auth-path/types/interaction_client/SilentCacheClient.d.ts.map +1 -1
  851. package/lib/custom-auth-path/types/interaction_client/SilentIframeClient.d.ts +1 -1
  852. package/lib/custom-auth-path/types/interaction_client/SilentIframeClient.d.ts.map +1 -1
  853. package/lib/custom-auth-path/types/interaction_client/SilentRefreshClient.d.ts.map +1 -1
  854. package/lib/custom-auth-path/types/interaction_client/StandardInteractionClient.d.ts +17 -7
  855. package/lib/custom-auth-path/types/interaction_client/StandardInteractionClient.d.ts.map +1 -1
  856. package/lib/custom-auth-path/types/interaction_handler/InteractionHandler.d.ts +2 -3
  857. package/lib/custom-auth-path/types/interaction_handler/InteractionHandler.d.ts.map +1 -1
  858. package/lib/custom-auth-path/types/interaction_handler/SilentHandler.d.ts +3 -4
  859. package/lib/custom-auth-path/types/interaction_handler/SilentHandler.d.ts.map +1 -1
  860. package/lib/custom-auth-path/types/naa/mapping/NestedAppAuthAdapter.d.ts.map +1 -1
  861. package/lib/custom-auth-path/types/operatingcontext/BaseOperatingContext.d.ts +2 -1
  862. package/lib/custom-auth-path/types/operatingcontext/BaseOperatingContext.d.ts.map +1 -1
  863. package/lib/custom-auth-path/types/operatingcontext/NestedAppOperatingContext.d.ts +2 -1
  864. package/lib/custom-auth-path/types/operatingcontext/NestedAppOperatingContext.d.ts.map +1 -1
  865. package/lib/custom-auth-path/types/operatingcontext/StandardOperatingContext.d.ts +1 -1
  866. package/lib/custom-auth-path/types/operatingcontext/StandardOperatingContext.d.ts.map +1 -1
  867. package/lib/custom-auth-path/types/packageMetadata.d.ts +1 -1
  868. package/lib/custom-auth-path/types/packageMetadata.d.ts.map +1 -1
  869. package/lib/custom-auth-path/types/protocol/Authorize.d.ts +0 -4
  870. package/lib/custom-auth-path/types/protocol/Authorize.d.ts.map +1 -1
  871. package/lib/custom-auth-path/types/request/AuthorizationCodeRequest.d.ts +1 -1
  872. package/lib/custom-auth-path/types/request/AuthorizationCodeRequest.d.ts.map +1 -1
  873. package/lib/custom-auth-path/types/request/PopupRequest.d.ts +1 -1
  874. package/lib/custom-auth-path/types/request/PopupRequest.d.ts.map +1 -1
  875. package/lib/custom-auth-path/types/request/RedirectRequest.d.ts +1 -8
  876. package/lib/custom-auth-path/types/request/RedirectRequest.d.ts.map +1 -1
  877. package/lib/custom-auth-path/types/request/RequestHelpers.d.ts +6 -12
  878. package/lib/custom-auth-path/types/request/RequestHelpers.d.ts.map +1 -1
  879. package/lib/custom-auth-path/types/request/SilentRequest.d.ts +1 -1
  880. package/lib/custom-auth-path/types/request/SilentRequest.d.ts.map +1 -1
  881. package/lib/custom-auth-path/types/request/SsoSilentRequest.d.ts +1 -1
  882. package/lib/custom-auth-path/types/request/SsoSilentRequest.d.ts.map +1 -1
  883. package/lib/custom-auth-path/types/response/ResponseHandler.d.ts +1 -1
  884. package/lib/custom-auth-path/types/response/ResponseHandler.d.ts.map +1 -1
  885. package/lib/custom-auth-path/types/telemetry/BrowserPerformanceClient.d.ts +2 -19
  886. package/lib/custom-auth-path/types/telemetry/BrowserPerformanceClient.d.ts.map +1 -1
  887. package/lib/custom-auth-path/types/telemetry/BrowserPerformanceEvents.d.ts +131 -0
  888. package/lib/custom-auth-path/types/telemetry/BrowserPerformanceEvents.d.ts.map +1 -0
  889. package/lib/custom-auth-path/types/telemetry/BrowserRootPerformanceEvents.d.ts +35 -0
  890. package/lib/custom-auth-path/types/telemetry/BrowserRootPerformanceEvents.d.ts.map +1 -0
  891. package/lib/custom-auth-path/types/utils/BrowserConstants.d.ts +0 -8
  892. package/lib/custom-auth-path/types/utils/BrowserConstants.d.ts.map +1 -1
  893. package/lib/custom-auth-path/types/utils/BrowserUtils.d.ts.map +1 -1
  894. package/lib/custom-auth-path/types/utils/MsalFrameStatsUtils.d.ts +1 -1
  895. package/lib/custom-auth-path/types/utils/MsalFrameStatsUtils.d.ts.map +1 -1
  896. package/lib/custom-auth-path/types/utils/PopupUtils.d.ts +33 -0
  897. package/lib/custom-auth-path/types/utils/PopupUtils.d.ts.map +1 -0
  898. package/lib/msal-browser.cjs +2923 -4754
  899. package/lib/msal-browser.cjs.map +1 -1
  900. package/lib/msal-browser.js +2923 -4754
  901. package/lib/msal-browser.js.map +1 -1
  902. package/lib/msal-browser.min.js +74 -67
  903. package/lib/types/app/IPublicClientApplication.d.ts +2 -9
  904. package/lib/types/app/IPublicClientApplication.d.ts.map +1 -1
  905. package/lib/types/app/PublicClientApplication.d.ts +3 -49
  906. package/lib/types/app/PublicClientApplication.d.ts.map +1 -1
  907. package/lib/types/app/PublicClientNext.d.ts +2 -49
  908. package/lib/types/app/PublicClientNext.d.ts.map +1 -1
  909. package/lib/types/broker/nativeBroker/PlatformAuthDOMHandler.d.ts.map +1 -1
  910. package/lib/types/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts +1 -1
  911. package/lib/types/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts.map +1 -1
  912. package/lib/types/broker/nativeBroker/PlatformAuthProvider.d.ts +4 -2
  913. package/lib/types/broker/nativeBroker/PlatformAuthProvider.d.ts.map +1 -1
  914. package/lib/types/cache/AccountManager.d.ts.map +1 -1
  915. package/lib/types/cache/AsyncMemoryStorage.d.ts +14 -7
  916. package/lib/types/cache/AsyncMemoryStorage.d.ts.map +1 -1
  917. package/lib/types/cache/BrowserCacheManager.d.ts +22 -25
  918. package/lib/types/cache/BrowserCacheManager.d.ts.map +1 -1
  919. package/lib/types/cache/IAsyncStorage.d.ts +10 -5
  920. package/lib/types/cache/IAsyncStorage.d.ts.map +1 -1
  921. package/lib/types/cache/LocalStorage.d.ts.map +1 -1
  922. package/lib/types/cache/TokenCache.d.ts +8 -68
  923. package/lib/types/cache/TokenCache.d.ts.map +1 -1
  924. package/lib/types/config/Configuration.d.ts +6 -55
  925. package/lib/types/config/Configuration.d.ts.map +1 -1
  926. package/lib/types/controllers/ControllerFactory.d.ts +1 -1
  927. package/lib/types/controllers/ControllerFactory.d.ts.map +1 -1
  928. package/lib/types/controllers/IController.d.ts +5 -6
  929. package/lib/types/controllers/IController.d.ts.map +1 -1
  930. package/lib/types/controllers/NestedAppAuthController.d.ts +4 -9
  931. package/lib/types/controllers/NestedAppAuthController.d.ts.map +1 -1
  932. package/lib/types/controllers/StandardController.d.ts +9 -30
  933. package/lib/types/controllers/StandardController.d.ts.map +1 -1
  934. package/lib/types/controllers/UnknownOperatingContextController.d.ts +4 -8
  935. package/lib/types/controllers/UnknownOperatingContextController.d.ts.map +1 -1
  936. package/lib/types/crypto/BrowserCrypto.d.ts +1 -2
  937. package/lib/types/crypto/BrowserCrypto.d.ts.map +1 -1
  938. package/lib/types/crypto/CryptoOps.d.ts +4 -2
  939. package/lib/types/crypto/CryptoOps.d.ts.map +1 -1
  940. package/lib/types/crypto/PkceGenerator.d.ts.map +1 -1
  941. package/lib/types/crypto/SignedHttpRequest.d.ts +2 -1
  942. package/lib/types/crypto/SignedHttpRequest.d.ts.map +1 -1
  943. package/lib/types/custom_auth/CustomAuthConstants.d.ts +2 -3
  944. package/lib/types/custom_auth/CustomAuthConstants.d.ts.map +1 -1
  945. package/lib/types/custom_auth/controller/CustomAuthStandardController.d.ts.map +1 -1
  946. package/lib/types/custom_auth/core/CustomAuthAuthority.d.ts.map +1 -1
  947. package/lib/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +1 -2
  948. package/lib/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +1 -1
  949. package/lib/types/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts +0 -5
  950. package/lib/types/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts.map +1 -1
  951. package/lib/types/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +1 -1
  952. package/lib/types/custom_auth/core/interaction_client/jit/JitClient.d.ts +8 -2
  953. package/lib/types/custom_auth/core/interaction_client/jit/JitClient.d.ts.map +1 -1
  954. package/lib/types/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts +1 -0
  955. package/lib/types/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts.map +1 -1
  956. package/lib/types/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts +11 -2
  957. package/lib/types/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts.map +1 -1
  958. package/lib/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +0 -1
  959. package/lib/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +1 -1
  960. package/lib/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +2 -7
  961. package/lib/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +1 -1
  962. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +0 -5
  963. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +1 -1
  964. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +1 -5
  965. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +1 -1
  966. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +0 -1
  967. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +1 -1
  968. package/lib/types/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +1 -1
  969. package/lib/types/custom_auth/core/telemetry/PublicApiId.d.ts +3 -4
  970. package/lib/types/custom_auth/core/telemetry/PublicApiId.d.ts.map +1 -1
  971. package/lib/types/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +1 -1
  972. package/lib/types/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +1 -1
  973. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +1 -1
  974. package/lib/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts +6 -8
  975. package/lib/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +1 -1
  976. package/lib/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +0 -6
  977. package/lib/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +1 -1
  978. package/lib/types/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +1 -1
  979. package/lib/types/error/BrowserAuthError.d.ts +1 -246
  980. package/lib/types/error/BrowserAuthError.d.ts.map +1 -1
  981. package/lib/types/error/BrowserConfigurationAuthError.d.ts +0 -23
  982. package/lib/types/error/BrowserConfigurationAuthError.d.ts.map +1 -1
  983. package/lib/types/error/NativeAuthError.d.ts +0 -3
  984. package/lib/types/error/NativeAuthError.d.ts.map +1 -1
  985. package/lib/types/error/NativeAuthErrorCodes.d.ts +1 -0
  986. package/lib/types/error/NativeAuthErrorCodes.d.ts.map +1 -1
  987. package/lib/types/error/NestedAppAuthError.d.ts +0 -9
  988. package/lib/types/error/NestedAppAuthError.d.ts.map +1 -1
  989. package/lib/types/event/EventHandler.d.ts.map +1 -1
  990. package/lib/types/event/EventMessage.d.ts.map +1 -1
  991. package/lib/types/event/EventType.d.ts +3 -10
  992. package/lib/types/event/EventType.d.ts.map +1 -1
  993. package/lib/types/index.d.ts +34 -6
  994. package/lib/types/index.d.ts.map +1 -1
  995. package/lib/types/interaction_client/BaseInteractionClient.d.ts +50 -32
  996. package/lib/types/interaction_client/BaseInteractionClient.d.ts.map +1 -1
  997. package/lib/types/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +2 -2
  998. package/lib/types/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +1 -1
  999. package/lib/types/interaction_client/PlatformAuthInteractionClient.d.ts +5 -3
  1000. package/lib/types/interaction_client/PlatformAuthInteractionClient.d.ts.map +1 -1
  1001. package/lib/types/interaction_client/PopupClient.d.ts +2 -14
  1002. package/lib/types/interaction_client/PopupClient.d.ts.map +1 -1
  1003. package/lib/types/interaction_client/RedirectClient.d.ts +8 -9
  1004. package/lib/types/interaction_client/RedirectClient.d.ts.map +1 -1
  1005. package/lib/types/interaction_client/SilentAuthCodeClient.d.ts +1 -1
  1006. package/lib/types/interaction_client/SilentAuthCodeClient.d.ts.map +1 -1
  1007. package/lib/types/interaction_client/SilentCacheClient.d.ts.map +1 -1
  1008. package/lib/types/interaction_client/SilentIframeClient.d.ts +1 -1
  1009. package/lib/types/interaction_client/SilentIframeClient.d.ts.map +1 -1
  1010. package/lib/types/interaction_client/SilentRefreshClient.d.ts.map +1 -1
  1011. package/lib/types/interaction_client/StandardInteractionClient.d.ts +17 -7
  1012. package/lib/types/interaction_client/StandardInteractionClient.d.ts.map +1 -1
  1013. package/lib/types/interaction_handler/InteractionHandler.d.ts +2 -3
  1014. package/lib/types/interaction_handler/InteractionHandler.d.ts.map +1 -1
  1015. package/lib/types/interaction_handler/SilentHandler.d.ts +3 -4
  1016. package/lib/types/interaction_handler/SilentHandler.d.ts.map +1 -1
  1017. package/lib/types/naa/mapping/NestedAppAuthAdapter.d.ts.map +1 -1
  1018. package/lib/types/operatingcontext/BaseOperatingContext.d.ts +2 -1
  1019. package/lib/types/operatingcontext/BaseOperatingContext.d.ts.map +1 -1
  1020. package/lib/types/operatingcontext/NestedAppOperatingContext.d.ts +2 -1
  1021. package/lib/types/operatingcontext/NestedAppOperatingContext.d.ts.map +1 -1
  1022. package/lib/types/operatingcontext/StandardOperatingContext.d.ts +1 -1
  1023. package/lib/types/operatingcontext/StandardOperatingContext.d.ts.map +1 -1
  1024. package/lib/types/packageMetadata.d.ts +1 -1
  1025. package/lib/types/packageMetadata.d.ts.map +1 -1
  1026. package/lib/types/protocol/Authorize.d.ts +0 -4
  1027. package/lib/types/protocol/Authorize.d.ts.map +1 -1
  1028. package/lib/types/request/AuthorizationCodeRequest.d.ts +1 -1
  1029. package/lib/types/request/AuthorizationCodeRequest.d.ts.map +1 -1
  1030. package/lib/types/request/PopupRequest.d.ts +1 -1
  1031. package/lib/types/request/PopupRequest.d.ts.map +1 -1
  1032. package/lib/types/request/RedirectRequest.d.ts +1 -8
  1033. package/lib/types/request/RedirectRequest.d.ts.map +1 -1
  1034. package/lib/types/request/RequestHelpers.d.ts +6 -12
  1035. package/lib/types/request/RequestHelpers.d.ts.map +1 -1
  1036. package/lib/types/request/SilentRequest.d.ts +1 -1
  1037. package/lib/types/request/SilentRequest.d.ts.map +1 -1
  1038. package/lib/types/request/SsoSilentRequest.d.ts +1 -1
  1039. package/lib/types/request/SsoSilentRequest.d.ts.map +1 -1
  1040. package/lib/types/response/ResponseHandler.d.ts +1 -1
  1041. package/lib/types/response/ResponseHandler.d.ts.map +1 -1
  1042. package/lib/types/telemetry/BrowserPerformanceClient.d.ts +2 -19
  1043. package/lib/types/telemetry/BrowserPerformanceClient.d.ts.map +1 -1
  1044. package/lib/types/telemetry/BrowserPerformanceEvents.d.ts +131 -0
  1045. package/lib/types/telemetry/BrowserPerformanceEvents.d.ts.map +1 -0
  1046. package/lib/types/telemetry/BrowserRootPerformanceEvents.d.ts +35 -0
  1047. package/lib/types/telemetry/BrowserRootPerformanceEvents.d.ts.map +1 -0
  1048. package/lib/types/utils/BrowserConstants.d.ts +0 -8
  1049. package/lib/types/utils/BrowserConstants.d.ts.map +1 -1
  1050. package/lib/types/utils/BrowserUtils.d.ts.map +1 -1
  1051. package/lib/types/utils/MsalFrameStatsUtils.d.ts +1 -1
  1052. package/lib/types/utils/MsalFrameStatsUtils.d.ts.map +1 -1
  1053. package/lib/types/utils/PopupUtils.d.ts +33 -0
  1054. package/lib/types/utils/PopupUtils.d.ts.map +1 -0
  1055. package/package.json +113 -115
  1056. package/src/app/IPublicClientApplication.ts +4 -36
  1057. package/src/app/PublicClientApplication.ts +11 -73
  1058. package/src/app/PublicClientNext.ts +6 -71
  1059. package/src/broker/nativeBroker/PlatformAuthDOMHandler.ts +30 -14
  1060. package/src/broker/nativeBroker/PlatformAuthExtensionHandler.ts +57 -32
  1061. package/src/broker/nativeBroker/PlatformAuthProvider.ts +26 -21
  1062. package/src/cache/AccountManager.ts +47 -19
  1063. package/src/cache/AsyncMemoryStorage.ts +39 -22
  1064. package/src/cache/BrowserCacheManager.ts +234 -213
  1065. package/src/cache/IAsyncStorage.ts +10 -5
  1066. package/src/cache/LocalStorage.ts +31 -18
  1067. package/src/cache/TokenCache.ts +367 -360
  1068. package/src/config/Configuration.ts +23 -86
  1069. package/src/controllers/ControllerFactory.ts +13 -6
  1070. package/src/controllers/IController.ts +8 -10
  1071. package/src/controllers/NestedAppAuthController.ts +75 -108
  1072. package/src/controllers/StandardController.ts +335 -518
  1073. package/src/controllers/UnknownOperatingContextController.ts +3 -20
  1074. package/src/crypto/BrowserCrypto.ts +1 -13
  1075. package/src/crypto/CryptoOps.ts +32 -18
  1076. package/src/crypto/PkceGenerator.ts +6 -14
  1077. package/src/crypto/SignedHttpRequest.ts +14 -21
  1078. package/src/custom_auth/CustomAuthConstants.ts +0 -1
  1079. package/src/custom_auth/controller/CustomAuthStandardController.ts +10 -9
  1080. package/src/custom_auth/core/CustomAuthAuthority.ts +11 -5
  1081. package/src/custom_auth/core/auth_flow/AuthFlowErrorBase.ts +2 -15
  1082. package/src/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.ts +1 -9
  1083. package/src/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.ts +4 -2
  1084. package/src/custom_auth/core/interaction_client/jit/JitClient.ts +63 -3
  1085. package/src/custom_auth/core/interaction_client/jit/parameter/JitParams.ts +2 -0
  1086. package/src/custom_auth/core/interaction_client/jit/result/JitActionResult.ts +22 -2
  1087. package/src/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.ts +0 -1
  1088. package/src/custom_auth/core/network_client/custom_auth_api/SignInApiClient.ts +1 -27
  1089. package/src/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.ts +0 -6
  1090. package/src/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.ts +1 -6
  1091. package/src/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.ts +0 -1
  1092. package/src/custom_auth/core/network_client/http_client/FetchHttpClient.ts +8 -5
  1093. package/src/custom_auth/core/telemetry/PublicApiId.ts +3 -6
  1094. package/src/custom_auth/get_account/auth_flow/CustomAuthAccountData.ts +3 -3
  1095. package/src/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.ts +19 -14
  1096. package/src/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.ts +2 -2
  1097. package/src/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.ts +1 -1
  1098. package/src/custom_auth/reset_password/interaction_client/ResetPasswordClient.ts +30 -5
  1099. package/src/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.ts +13 -23
  1100. package/src/custom_auth/sign_in/auth_flow/state/SignInContinuationState.ts +1 -1
  1101. package/src/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.ts +1 -1
  1102. package/src/custom_auth/sign_in/interaction_client/SignInClient.ts +77 -128
  1103. package/src/custom_auth/sign_in/interaction_client/result/SignInActionResult.ts +0 -15
  1104. package/src/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.ts +1 -1
  1105. package/src/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.ts +2 -2
  1106. package/src/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.ts +1 -1
  1107. package/src/custom_auth/sign_up/interaction_client/SignUpClient.ts +39 -8
  1108. package/src/error/BrowserAuthError.ts +4 -339
  1109. package/src/error/BrowserConfigurationAuthError.ts +2 -37
  1110. package/src/error/NativeAuthError.ts +7 -13
  1111. package/src/error/NativeAuthErrorCodes.ts +1 -0
  1112. package/src/error/NestedAppAuthError.ts +2 -14
  1113. package/src/event/EventHandler.ts +13 -11
  1114. package/src/event/EventMessage.ts +1 -18
  1115. package/src/event/EventType.ts +3 -10
  1116. package/src/index.ts +19 -19
  1117. package/src/interaction_client/BaseInteractionClient.ts +181 -158
  1118. package/src/interaction_client/HybridSpaAuthorizationCodeClient.ts +6 -2
  1119. package/src/interaction_client/PlatformAuthInteractionClient.ts +160 -108
  1120. package/src/interaction_client/PopupClient.ts +217 -308
  1121. package/src/interaction_client/RedirectClient.ts +245 -184
  1122. package/src/interaction_client/SilentAuthCodeClient.ts +41 -16
  1123. package/src/interaction_client/SilentCacheClient.ts +23 -15
  1124. package/src/interaction_client/SilentIframeClient.ts +101 -101
  1125. package/src/interaction_client/SilentRefreshClient.ts +26 -14
  1126. package/src/interaction_client/StandardInteractionClient.ts +112 -107
  1127. package/src/interaction_handler/InteractionHandler.ts +7 -16
  1128. package/src/interaction_handler/SilentHandler.ts +12 -91
  1129. package/src/naa/mapping/NestedAppAuthAdapter.ts +8 -6
  1130. package/src/operatingcontext/BaseOperatingContext.ts +2 -1
  1131. package/src/operatingcontext/NestedAppOperatingContext.ts +8 -3
  1132. package/src/operatingcontext/StandardOperatingContext.ts +2 -1
  1133. package/src/packageMetadata.ts +1 -1
  1134. package/src/protocol/Authorize.ts +30 -86
  1135. package/src/request/AuthorizationCodeRequest.ts +1 -4
  1136. package/src/request/PopupRequest.ts +0 -1
  1137. package/src/request/RedirectRequest.ts +0 -8
  1138. package/src/request/RequestHelpers.ts +18 -75
  1139. package/src/request/SilentRequest.ts +1 -5
  1140. package/src/request/SsoSilentRequest.ts +0 -1
  1141. package/src/response/ResponseHandler.ts +8 -4
  1142. package/src/telemetry/BrowserPerformanceClient.ts +4 -108
  1143. package/src/telemetry/BrowserPerformanceEvents.ts +182 -0
  1144. package/src/telemetry/BrowserRootPerformanceEvents.ts +41 -0
  1145. package/src/utils/BrowserConstants.ts +2 -10
  1146. package/src/utils/BrowserUtils.ts +4 -6
  1147. package/src/utils/MsalFrameStatsUtils.ts +4 -2
  1148. package/src/utils/PopupUtils.ts +117 -0
  1149. package/dist/cache/ITokenCache.d.ts +0 -12
  1150. package/dist/cache/ITokenCache.d.ts.map +0 -1
  1151. package/dist/custom-auth-path/cache/ITokenCache.d.ts +0 -12
  1152. package/dist/custom-auth-path/cache/ITokenCache.d.ts.map +0 -1
  1153. package/dist/custom-auth-path/cache/TokenCache.mjs +0 -207
  1154. package/dist/custom-auth-path/cache/TokenCache.mjs.map +0 -1
  1155. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts +0 -22
  1156. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts.map +0 -1
  1157. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts +0 -36
  1158. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts.map +0 -1
  1159. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts +0 -30
  1160. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts.map +0 -1
  1161. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts +0 -7
  1162. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts.map +0 -1
  1163. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts +0 -7
  1164. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts.map +0 -1
  1165. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts +0 -59
  1166. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts.map +0 -1
  1167. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts +0 -19
  1168. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts.map +0 -1
  1169. package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/MfaClient.d.ts +0 -21
  1170. package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/MfaClient.d.ts.map +0 -1
  1171. package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts +0 -14
  1172. package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts.map +0 -1
  1173. package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts +0 -23
  1174. package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts.map +0 -1
  1175. package/dist/custom-auth-path/request/AuthorizationUrlRequest.d.ts +0 -7
  1176. package/dist/custom-auth-path/request/AuthorizationUrlRequest.d.ts.map +0 -1
  1177. package/dist/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts +0 -22
  1178. package/dist/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts.map +0 -1
  1179. package/dist/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts +0 -36
  1180. package/dist/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts.map +0 -1
  1181. package/dist/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts +0 -30
  1182. package/dist/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts.map +0 -1
  1183. package/dist/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts +0 -7
  1184. package/dist/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts.map +0 -1
  1185. package/dist/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts +0 -7
  1186. package/dist/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts.map +0 -1
  1187. package/dist/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts +0 -59
  1188. package/dist/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts.map +0 -1
  1189. package/dist/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts +0 -19
  1190. package/dist/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts.map +0 -1
  1191. package/dist/custom_auth/core/interaction_client/mfa/MfaClient.d.ts +0 -21
  1192. package/dist/custom_auth/core/interaction_client/mfa/MfaClient.d.ts.map +0 -1
  1193. package/dist/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts +0 -14
  1194. package/dist/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts.map +0 -1
  1195. package/dist/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts +0 -23
  1196. package/dist/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts.map +0 -1
  1197. package/dist/request/AuthorizationUrlRequest.d.ts +0 -7
  1198. package/dist/request/AuthorizationUrlRequest.d.ts.map +0 -1
  1199. package/lib/custom-auth-path/types/cache/ITokenCache.d.ts +0 -12
  1200. package/lib/custom-auth-path/types/cache/ITokenCache.d.ts.map +0 -1
  1201. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts +0 -22
  1202. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts.map +0 -1
  1203. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts +0 -36
  1204. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts.map +0 -1
  1205. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts +0 -30
  1206. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts.map +0 -1
  1207. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts +0 -7
  1208. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts.map +0 -1
  1209. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts +0 -7
  1210. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts.map +0 -1
  1211. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts +0 -59
  1212. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts.map +0 -1
  1213. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts +0 -19
  1214. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts.map +0 -1
  1215. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/mfa/MfaClient.d.ts +0 -21
  1216. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/mfa/MfaClient.d.ts.map +0 -1
  1217. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts +0 -14
  1218. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts.map +0 -1
  1219. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts +0 -23
  1220. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts.map +0 -1
  1221. package/lib/custom-auth-path/types/request/AuthorizationUrlRequest.d.ts +0 -7
  1222. package/lib/custom-auth-path/types/request/AuthorizationUrlRequest.d.ts.map +0 -1
  1223. package/lib/types/cache/ITokenCache.d.ts +0 -12
  1224. package/lib/types/cache/ITokenCache.d.ts.map +0 -1
  1225. package/lib/types/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts +0 -22
  1226. package/lib/types/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts.map +0 -1
  1227. package/lib/types/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts +0 -36
  1228. package/lib/types/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts.map +0 -1
  1229. package/lib/types/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts +0 -30
  1230. package/lib/types/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts.map +0 -1
  1231. package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts +0 -7
  1232. package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts.map +0 -1
  1233. package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts +0 -7
  1234. package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts.map +0 -1
  1235. package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts +0 -59
  1236. package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts.map +0 -1
  1237. package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts +0 -19
  1238. package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts.map +0 -1
  1239. package/lib/types/custom_auth/core/interaction_client/mfa/MfaClient.d.ts +0 -21
  1240. package/lib/types/custom_auth/core/interaction_client/mfa/MfaClient.d.ts.map +0 -1
  1241. package/lib/types/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts +0 -14
  1242. package/lib/types/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts.map +0 -1
  1243. package/lib/types/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts +0 -23
  1244. package/lib/types/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts.map +0 -1
  1245. package/lib/types/request/AuthorizationUrlRequest.d.ts +0 -7
  1246. package/lib/types/request/AuthorizationUrlRequest.d.ts.map +0 -1
  1247. package/src/cache/ITokenCache.ts +0 -21
  1248. package/src/custom_auth/core/auth_flow/mfa/error_type/MfaError.ts +0 -32
  1249. package/src/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.ts +0 -59
  1250. package/src/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.ts +0 -52
  1251. package/src/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.ts +0 -11
  1252. package/src/custom_auth/core/auth_flow/mfa/state/MfaFailedState.ts +0 -11
  1253. package/src/custom_auth/core/auth_flow/mfa/state/MfaState.ts +0 -188
  1254. package/src/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.ts +0 -28
  1255. package/src/custom_auth/core/interaction_client/mfa/MfaClient.ts +0 -148
  1256. package/src/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.ts +0 -20
  1257. package/src/custom_auth/core/interaction_client/mfa/result/MfaActionResult.ts +0 -48
  1258. package/src/request/AuthorizationUrlRequest.ts +0 -15
@@ -7,7 +7,6 @@ import { EndSessionRequest } from "../request/EndSessionRequest.js";
7
7
  import { WrapperSKU } from "../utils/BrowserConstants.js";
8
8
  import { INavigationClient } from "../navigation/INavigationClient.js";
9
9
  import { EndSessionPopupRequest } from "../request/EndSessionPopupRequest.js";
10
- import { ITokenCache } from "../cache/ITokenCache.js";
11
10
  import { AuthorizationCodeRequest } from "../request/AuthorizationCodeRequest.js";
12
11
  import { BrowserConfiguration } from "../config/Configuration.js";
13
12
  import { AuthenticationResult } from "../response/AuthenticationResult.js";
@@ -15,6 +14,7 @@ import { EventCallbackFunction } from "../event/EventMessage.js";
15
14
  import { ClearCacheRequest } from "../request/ClearCacheRequest.js";
16
15
  import { InitializeApplicationRequest } from "../request/InitializeApplicationRequest.js";
17
16
  import { EventType } from "../event/EventType.js";
17
+ import { HandleRedirectPromiseOptions } from "../controllers/IController.js";
18
18
  export interface IPublicClientApplication {
19
19
  initialize(request?: InitializeApplicationRequest): Promise<void>;
20
20
  acquireTokenPopup(request: PopupRequest): Promise<AuthenticationResult>;
@@ -25,21 +25,14 @@ export interface IPublicClientApplication {
25
25
  removeEventCallback(callbackId: string): void;
26
26
  addPerformanceCallback(callback: PerformanceCallbackFunction): string;
27
27
  removePerformanceCallback(callbackId: string): boolean;
28
- enableAccountStorageEvents(): void;
29
- disableAccountStorageEvents(): void;
30
28
  getAccount(accountFilter: AccountFilter): AccountInfo | null;
31
- getAccountByHomeId(homeAccountId: string): AccountInfo | null;
32
- getAccountByLocalId(localId: string): AccountInfo | null;
33
- getAccountByUsername(userName: string): AccountInfo | null;
34
29
  getAllAccounts(): AccountInfo[];
35
- handleRedirectPromise(hash?: string): Promise<AuthenticationResult | null>;
30
+ handleRedirectPromise(options?: HandleRedirectPromiseOptions): Promise<AuthenticationResult | null>;
36
31
  loginPopup(request?: PopupRequest): Promise<AuthenticationResult>;
37
32
  loginRedirect(request?: RedirectRequest): Promise<void>;
38
- logout(logoutRequest?: EndSessionRequest): Promise<void>;
39
33
  logoutRedirect(logoutRequest?: EndSessionRequest): Promise<void>;
40
34
  logoutPopup(logoutRequest?: EndSessionPopupRequest): Promise<void>;
41
35
  ssoSilent(request: SsoSilentRequest): Promise<AuthenticationResult>;
42
- getTokenCache(): ITokenCache;
43
36
  getLogger(): Logger;
44
37
  setLogger(logger: Logger): void;
45
38
  setActiveAccount(account: AccountInfo | null): void;
@@ -1 +1 @@
1
- {"version":3,"file":"IPublicClientApplication.d.ts","sourceRoot":"","sources":["../../src/app/IPublicClientApplication.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"IPublicClientApplication.d.ts","sourceRoot":"","sources":["../../src/app/IPublicClientApplication.ts"],"names":[],"mappings":"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"}
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v4.24.0 2025-09-24 */
1
+ /*! @azure/msal-browser v5.0.0-alpha.0 2025-10-02 */
2
2
  'use strict';
3
3
  import { createBrowserConfigurationAuthError } from '../error/BrowserConfigurationAuthError.mjs';
4
4
  import { stubbedPublicClientApplicationCalled } from '../error/BrowserConfigurationAuthErrorCodes.mjs';
@@ -29,15 +29,6 @@ const stubbedPublicClientApplication = {
29
29
  getAccount: () => {
30
30
  return null;
31
31
  },
32
- getAccountByHomeId: () => {
33
- return null;
34
- },
35
- getAccountByUsername: () => {
36
- return null;
37
- },
38
- getAccountByLocalId: () => {
39
- return null;
40
- },
41
32
  handleRedirectPromise: () => {
42
33
  return Promise.reject(createBrowserConfigurationAuthError(stubbedPublicClientApplicationCalled));
43
34
  },
@@ -47,9 +38,6 @@ const stubbedPublicClientApplication = {
47
38
  loginRedirect: () => {
48
39
  return Promise.reject(createBrowserConfigurationAuthError(stubbedPublicClientApplicationCalled));
49
40
  },
50
- logout: () => {
51
- return Promise.reject(createBrowserConfigurationAuthError(stubbedPublicClientApplicationCalled));
52
- },
53
41
  logoutRedirect: () => {
54
42
  return Promise.reject(createBrowserConfigurationAuthError(stubbedPublicClientApplicationCalled));
55
43
  },
@@ -71,15 +59,6 @@ const stubbedPublicClientApplication = {
71
59
  removePerformanceCallback: () => {
72
60
  return false;
73
61
  },
74
- enableAccountStorageEvents: () => {
75
- return;
76
- },
77
- disableAccountStorageEvents: () => {
78
- return;
79
- },
80
- getTokenCache: () => {
81
- throw createBrowserConfigurationAuthError(stubbedPublicClientApplicationCalled);
82
- },
83
62
  getLogger: () => {
84
63
  throw createBrowserConfigurationAuthError(stubbedPublicClientApplicationCalled);
85
64
  },
@@ -1 +1 @@
1
- {"version":3,"file":"IPublicClientApplication.mjs","sources":["../../src/app/IPublicClientApplication.ts"],"sourcesContent":[null],"names":["BrowserConfigurationAuthErrorCodes.stubbedPublicClientApplicationCalled"],"mappings":"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"}
1
+ {"version":3,"file":"IPublicClientApplication.mjs","sources":["../../src/app/IPublicClientApplication.ts"],"sourcesContent":[null],"names":["BrowserConfigurationAuthErrorCodes.stubbedPublicClientApplicationCalled"],"mappings":"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"}
@@ -1,4 +1,3 @@
1
- import { ITokenCache } from "../cache/ITokenCache.js";
2
1
  import { INavigationClient } from "../navigation/INavigationClient.js";
3
2
  import { AuthorizationCodeRequest } from "../request/AuthorizationCodeRequest.js";
4
3
  import { PopupRequest } from "../request/PopupRequest.js";
@@ -6,7 +5,7 @@ import { RedirectRequest } from "../request/RedirectRequest.js";
6
5
  import { SilentRequest } from "../request/SilentRequest.js";
7
6
  import { WrapperSKU } from "../utils/BrowserConstants.js";
8
7
  import { IPublicClientApplication } from "./IPublicClientApplication.js";
9
- import { IController } from "../controllers/IController.js";
8
+ import { HandleRedirectPromiseOptions, IController } from "../controllers/IController.js";
10
9
  import { PerformanceCallbackFunction, AccountInfo, AccountFilter, Logger } from "@azure/msal-common/browser";
11
10
  import { EndSessionRequest } from "../request/EndSessionRequest.js";
12
11
  import { SsoSilentRequest } from "../request/SsoSilentRequest.js";
@@ -119,48 +118,12 @@ export declare class PublicClientApplication implements IPublicClientApplication
119
118
  * @returns {boolean}
120
119
  */
121
120
  removePerformanceCallback(callbackId: string): boolean;
122
- /**
123
- * Adds event listener that emits an event when a user account is added or removed from localstorage in a different browser tab or window
124
- */
125
- enableAccountStorageEvents(): void;
126
- /**
127
- * Removes event listener that emits an event when a user account is added or removed from localstorage in a different browser tab or window
128
- */
129
- disableAccountStorageEvents(): void;
130
121
  /**
131
122
  * Returns the first account found in the cache that matches the account filter passed in.
132
123
  * @param accountFilter
133
124
  * @returns The first account found in the cache matching the provided filter or null if no account could be found.
134
125
  */
135
126
  getAccount(accountFilter: AccountFilter): AccountInfo | null;
136
- /**
137
- * Returns the signed in account matching homeAccountId.
138
- * (the account object is created at the time of successful login)
139
- * or null when no matching account is found
140
- * @param homeAccountId
141
- * @returns The account object stored in MSAL
142
- * @deprecated - Use getAccount instead
143
- */
144
- getAccountByHomeId(homeAccountId: string): AccountInfo | null;
145
- /**
146
- * Returns the signed in account matching localAccountId.
147
- * (the account object is created at the time of successful login)
148
- * or null when no matching account is found
149
- * @param localAccountId
150
- * @returns The account object stored in MSAL
151
- * @deprecated - Use getAccount instead
152
- */
153
- getAccountByLocalId(localId: string): AccountInfo | null;
154
- /**
155
- * Returns the signed in account matching username.
156
- * (the account object is created at the time of successful login)
157
- * or null when no matching account is found.
158
- * This API is provided for convenience but getAccountById should be used for best reliability
159
- * @param userName
160
- * @returns The account object stored in MSAL
161
- * @deprecated - Use getAccount instead
162
- */
163
- getAccountByUsername(userName: string): AccountInfo | null;
164
127
  /**
165
128
  * Returns all the accounts in the cache that match the optional filter. If no filter is provided, all accounts are returned.
166
129
  * @param accountFilter - (Optional) filter to narrow down the accounts returned
@@ -172,9 +135,10 @@ export declare class PublicClientApplication implements IPublicClientApplication
172
135
  * has loaded during redirect flows. This should be invoked on all page loads involved in redirect
173
136
  * auth flows.
174
137
  * @param hash Hash to process. Defaults to the current value of window.location.hash. Only needs to be provided explicitly if the response to be handled is not contained in the current value.
138
+ * @param options Object containing optional configuration for redirect promise handling.
175
139
  * @returns Token response or null. If the return value is null, then no auth redirect was detected.
176
140
  */
177
- handleRedirectPromise(hash?: string | undefined): Promise<AuthenticationResult | null>;
141
+ handleRedirectPromise(options?: HandleRedirectPromiseOptions): Promise<AuthenticationResult | null>;
178
142
  /**
179
143
  * Use when initiating the login process via opening a popup window in the user's browser
180
144
  *
@@ -193,12 +157,6 @@ export declare class PublicClientApplication implements IPublicClientApplication
193
157
  * @param request
194
158
  */
195
159
  loginRedirect(request?: RedirectRequest | undefined): Promise<void>;
196
- /**
197
- * Deprecated logout function. Use logoutRedirect or logoutPopup instead
198
- * @param logoutRequest
199
- * @deprecated
200
- */
201
- logout(logoutRequest?: EndSessionRequest): Promise<void>;
202
160
  /**
203
161
  * Use to log out the current user, and redirect the user to the postLogoutRedirectUri.
204
162
  * Default behaviour is to redirect the user to `window.location.href`.
@@ -226,10 +184,6 @@ export declare class PublicClientApplication implements IPublicClientApplication
226
184
  * @returns A promise that is fulfilled when this function has completed, or rejected if an error was raised.
227
185
  */
228
186
  ssoSilent(request: SsoSilentRequest): Promise<AuthenticationResult>;
229
- /**
230
- * Gets the token cache for the application.
231
- */
232
- getTokenCache(): ITokenCache;
233
187
  /**
234
188
  * Returns the logger instance
235
189
  */
@@ -1 +1 @@
1
- {"version":3,"file":"PublicClientApplication.d.ts","sourceRoot":"","sources":["../../src/app/PublicClientApplication.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"PublicClientApplication.d.ts","sourceRoot":"","sources":["../../src/app/PublicClientApplication.ts"],"names":[],"mappings":"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"}
@@ -1,10 +1,11 @@
1
- /*! @azure/msal-browser v4.24.0 2025-09-24 */
1
+ /*! @azure/msal-browser v5.0.0-alpha.0 2025-10-02 */
2
2
  'use strict';
3
3
  import { createV3Controller } from '../controllers/ControllerFactory.mjs';
4
4
  import { StandardController } from '../controllers/StandardController.mjs';
5
5
  import { StandardOperatingContext } from '../operatingcontext/StandardOperatingContext.mjs';
6
6
  import { NestedAppAuthController } from '../controllers/NestedAppAuthController.mjs';
7
7
  import { NestedAppOperatingContext } from '../operatingcontext/NestedAppOperatingContext.mjs';
8
+ import { createNewGuid } from '../crypto/BrowserCrypto.mjs';
8
9
 
9
10
  /*
10
11
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -137,18 +138,6 @@ class PublicClientApplication {
137
138
  removePerformanceCallback(callbackId) {
138
139
  return this.controller.removePerformanceCallback(callbackId);
139
140
  }
140
- /**
141
- * Adds event listener that emits an event when a user account is added or removed from localstorage in a different browser tab or window
142
- */
143
- enableAccountStorageEvents() {
144
- this.controller.enableAccountStorageEvents();
145
- }
146
- /**
147
- * Removes event listener that emits an event when a user account is added or removed from localstorage in a different browser tab or window
148
- */
149
- disableAccountStorageEvents() {
150
- this.controller.disableAccountStorageEvents();
151
- }
152
141
  /**
153
142
  * Returns the first account found in the cache that matches the account filter passed in.
154
143
  * @param accountFilter
@@ -157,40 +146,6 @@ class PublicClientApplication {
157
146
  getAccount(accountFilter) {
158
147
  return this.controller.getAccount(accountFilter);
159
148
  }
160
- /**
161
- * Returns the signed in account matching homeAccountId.
162
- * (the account object is created at the time of successful login)
163
- * or null when no matching account is found
164
- * @param homeAccountId
165
- * @returns The account object stored in MSAL
166
- * @deprecated - Use getAccount instead
167
- */
168
- getAccountByHomeId(homeAccountId) {
169
- return this.controller.getAccountByHomeId(homeAccountId);
170
- }
171
- /**
172
- * Returns the signed in account matching localAccountId.
173
- * (the account object is created at the time of successful login)
174
- * or null when no matching account is found
175
- * @param localAccountId
176
- * @returns The account object stored in MSAL
177
- * @deprecated - Use getAccount instead
178
- */
179
- getAccountByLocalId(localId) {
180
- return this.controller.getAccountByLocalId(localId);
181
- }
182
- /**
183
- * Returns the signed in account matching username.
184
- * (the account object is created at the time of successful login)
185
- * or null when no matching account is found.
186
- * This API is provided for convenience but getAccountById should be used for best reliability
187
- * @param userName
188
- * @returns The account object stored in MSAL
189
- * @deprecated - Use getAccount instead
190
- */
191
- getAccountByUsername(userName) {
192
- return this.controller.getAccountByUsername(userName);
193
- }
194
149
  /**
195
150
  * Returns all the accounts in the cache that match the optional filter. If no filter is provided, all accounts are returned.
196
151
  * @param accountFilter - (Optional) filter to narrow down the accounts returned
@@ -204,10 +159,11 @@ class PublicClientApplication {
204
159
  * has loaded during redirect flows. This should be invoked on all page loads involved in redirect
205
160
  * auth flows.
206
161
  * @param hash Hash to process. Defaults to the current value of window.location.hash. Only needs to be provided explicitly if the response to be handled is not contained in the current value.
162
+ * @param options Object containing optional configuration for redirect promise handling.
207
163
  * @returns Token response or null. If the return value is null, then no auth redirect was detected.
208
164
  */
209
- handleRedirectPromise(hash) {
210
- return this.controller.handleRedirectPromise(hash);
165
+ handleRedirectPromise(options) {
166
+ return this.controller.handleRedirectPromise(options);
211
167
  }
212
168
  /**
213
169
  * Use when initiating the login process via opening a popup window in the user's browser
@@ -231,14 +187,6 @@ class PublicClientApplication {
231
187
  loginRedirect(request) {
232
188
  return this.controller.loginRedirect(request);
233
189
  }
234
- /**
235
- * Deprecated logout function. Use logoutRedirect or logoutPopup instead
236
- * @param logoutRequest
237
- * @deprecated
238
- */
239
- logout(logoutRequest) {
240
- return this.controller.logout(logoutRequest);
241
- }
242
190
  /**
243
191
  * Use to log out the current user, and redirect the user to the postLogoutRedirectUri.
244
192
  * Default behaviour is to redirect the user to `window.location.href`.
@@ -272,12 +220,6 @@ class PublicClientApplication {
272
220
  ssoSilent(request) {
273
221
  return this.controller.ssoSilent(request);
274
222
  }
275
- /**
276
- * Gets the token cache for the application.
277
- */
278
- getTokenCache() {
279
- return this.controller.getTokenCache();
280
- }
281
223
  /**
282
224
  * Returns the logger instance
283
225
  */
@@ -352,12 +294,13 @@ class PublicClientApplication {
352
294
  *
353
295
  */
354
296
  async function createNestablePublicClientApplication(configuration) {
297
+ const correlationId = createNewGuid();
355
298
  const nestedAppAuth = new NestedAppOperatingContext(configuration);
356
- await nestedAppAuth.initialize();
299
+ await nestedAppAuth.initialize(correlationId);
357
300
  if (nestedAppAuth.isAvailable()) {
358
301
  const controller = new NestedAppAuthController(nestedAppAuth);
359
302
  const nestablePCA = new PublicClientApplication(configuration, controller);
360
- await nestablePCA.initialize();
303
+ await nestablePCA.initialize({ correlationId });
361
304
  return nestablePCA;
362
305
  }
363
306
  return createStandardPublicClientApplication(configuration);
@@ -1 +1 @@
1
- {"version":3,"file":"PublicClientApplication.mjs","sources":["../../src/app/PublicClientApplication.ts"],"sourcesContent":[null],"names":["ControllerFactory.createV3Controller"],"mappings":";;;;;;;;AAAA;;;AAGG;AAmCH;;;AAGG;MACU,uBAAuB,CAAA;AAIhC;;;;AAIG;AACI,IAAA,aAAa,6BAA6B,CAC7C,aAA4B,EAAA;QAE5B,MAAM,UAAU,GAAG,MAAMA,kBAAoC,CACzD,aAAa,CAChB,CAAC;QACF,MAAM,GAAG,GAAG,IAAI,uBAAuB,CAAC,aAAa,EAAE,UAAU,CAAC,CAAC;AAEnE,QAAA,OAAO,GAAG,CAAC;KACd;AAED;;;;;;;;;;;;;;;;;;;;;AAqBG;IACH,WAAmB,CAAA,aAA4B,EAAE,UAAwB,EAAA;QAxC/D,IAAQ,CAAA,QAAA,GAAY,KAAK,CAAC;AAyChC,QAAA,IAAI,CAAC,UAAU;YACX,UAAU;gBACV,IAAI,kBAAkB,CAAC,IAAI,wBAAwB,CAAC,aAAa,CAAC,CAAC,CAAC;KAC3E;AAED;;;AAGG;IACH,MAAM,UAAU,CAAC,OAAsC,EAAA;AACnD,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC,OAAO,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC;KAC7D;AAED;;;;;;AAMG;IACH,MAAM,iBAAiB,CACnB,OAAqB,EAAA;QAErB,OAAO,IAAI,CAAC,UAAU,CAAC,iBAAiB,CAAC,OAAO,CAAC,CAAC;KACrD;AAED;;;;;;;;AAQG;AACH,IAAA,oBAAoB,CAAC,OAAwB,EAAA;QACzC,OAAO,IAAI,CAAC,UAAU,CAAC,oBAAoB,CAAC,OAAO,CAAC,CAAC;KACxD;AAED;;;;;AAKG;AACH,IAAA,kBAAkB,CACd,aAA4B,EAAA;QAE5B,OAAO,IAAI,CAAC,UAAU,CAAC,kBAAkB,CAAC,aAAa,CAAC,CAAC;KAC5D;AAED;;;;;;;;;AASG;AACH,IAAA,kBAAkB,CACd,OAAiC,EAAA;QAEjC,OAAO,IAAI,CAAC,UAAU,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC;KACtD;AAED;;;;AAIG;IACH,gBAAgB,CACZ,QAA+B,EAC/B,UAA6B,EAAA;QAE7B,OAAO,IAAI,CAAC,UAAU,CAAC,gBAAgB,CAAC,QAAQ,EAAE,UAAU,CAAC,CAAC;KACjE;AAED;;;AAGG;AACH,IAAA,mBAAmB,CAAC,UAAkB,EAAA;QAClC,OAAO,IAAI,CAAC,UAAU,CAAC,mBAAmB,CAAC,UAAU,CAAC,CAAC;KAC1D;AAED;;;;;AAKG;AACH,IAAA,sBAAsB,CAAC,QAAqC,EAAA;QACxD,OAAO,IAAI,CAAC,UAAU,CAAC,sBAAsB,CAAC,QAAQ,CAAC,CAAC;KAC3D;AAED;;;;;AAKG;AACH,IAAA,yBAAyB,CAAC,UAAkB,EAAA;QACxC,OAAO,IAAI,CAAC,UAAU,CAAC,yBAAyB,CAAC,UAAU,CAAC,CAAC;KAChE;AAED;;AAEG;IACH,0BAA0B,GAAA;AACtB,QAAA,IAAI,CAAC,UAAU,CAAC,0BAA0B,EAAE,CAAC;KAChD;AAED;;AAEG;IACH,2BAA2B,GAAA;AACvB,QAAA,IAAI,CAAC,UAAU,CAAC,2BAA2B,EAAE,CAAC;KACjD;AAED;;;;AAIG;AACH,IAAA,UAAU,CAAC,aAA4B,EAAA;QACnC,OAAO,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC,aAAa,CAAC,CAAC;KACpD;AAED;;;;;;;AAOG;AACH,IAAA,kBAAkB,CAAC,aAAqB,EAAA;QACpC,OAAO,IAAI,CAAC,UAAU,CAAC,kBAAkB,CAAC,aAAa,CAAC,CAAC;KAC5D;AAED;;;;;;;AAOG;AACH,IAAA,mBAAmB,CAAC,OAAe,EAAA;QAC/B,OAAO,IAAI,CAAC,UAAU,CAAC,mBAAmB,CAAC,OAAO,CAAC,CAAC;KACvD;AAED;;;;;;;;AAQG;AACH,IAAA,oBAAoB,CAAC,QAAgB,EAAA;QACjC,OAAO,IAAI,CAAC,UAAU,CAAC,oBAAoB,CAAC,QAAQ,CAAC,CAAC;KACzD;AAED;;;;AAIG;AACH,IAAA,cAAc,CAAC,aAA6B,EAAA;QACxC,OAAO,IAAI,CAAC,UAAU,CAAC,cAAc,CAAC,aAAa,CAAC,CAAC;KACxD;AAED;;;;;;AAMG;AACH,IAAA,qBAAqB,CACjB,IAAyB,EAAA;QAEzB,OAAO,IAAI,CAAC,UAAU,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;KACtD;AAED;;;;;;AAMG;AACH,IAAA,UAAU,CACN,OAAkC,EAAA;QAElC,OAAO,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC;KAC9C;AAED;;;;;;;;AAQG;AACH,IAAA,aAAa,CAAC,OAAqC,EAAA;QAC/C,OAAO,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;KACjD;AAED;;;;AAIG;AACH,IAAA,MAAM,CAAC,aAAiC,EAAA;QACpC,OAAO,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,aAAa,CAAC,CAAC;KAChD;AAED;;;;AAIG;AACH,IAAA,cAAc,CAAC,aAAiC,EAAA;QAC5C,OAAO,IAAI,CAAC,UAAU,CAAC,cAAc,CAAC,aAAa,CAAC,CAAC;KACxD;AAED;;;AAGG;AACH,IAAA,WAAW,CAAC,aAAsC,EAAA;QAC9C,OAAO,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,aAAa,CAAC,CAAC;KACrD;AAED;;;;;;;;;;;;;;AAcG;AACH,IAAA,SAAS,CAAC,OAAyB,EAAA;QAC/B,OAAO,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC;KAC7C;AAED;;AAEG;IACH,aAAa,GAAA;AACT,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,aAAa,EAAE,CAAC;KAC1C;AAED;;AAEG;IACH,SAAS,GAAA;AACL,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,SAAS,EAAE,CAAC;KACtC;AAED;;;AAGG;AACH,IAAA,SAAS,CAAC,MAAc,EAAA;AACpB,QAAA,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;KACrC;AAED;;;AAGG;AACH,IAAA,gBAAgB,CAAC,OAA2B,EAAA;AACxC,QAAA,IAAI,CAAC,UAAU,CAAC,gBAAgB,CAAC,OAAO,CAAC,CAAC;KAC7C;AAED;;AAEG;IACH,gBAAgB,GAAA;AACZ,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,gBAAgB,EAAE,CAAC;KAC7C;AAED;;;;AAIG;IACH,wBAAwB,CAAC,GAAe,EAAE,OAAe,EAAA;QACrD,OAAO,IAAI,CAAC,UAAU,CAAC,wBAAwB,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC;KACjE;AAED;;;AAGG;AACH,IAAA,mBAAmB,CAAC,gBAAmC,EAAA;AACnD,QAAA,IAAI,CAAC,UAAU,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,CAAC;KACzD;AAED;;;AAGG;IACH,gBAAgB,GAAA;AACZ,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,gBAAgB,EAAE,CAAC;KAC7C;AAED;;;;;AAKG;AACH,IAAA,MAAM,YAAY,CACd,MAA4B,EAC5B,OAIkB,EAAA;QAElB,OAAO,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;KACxD;AAED;;;AAGG;AACH,IAAA,UAAU,CAAC,aAAiC,EAAA;QACxC,OAAO,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC,aAAa,CAAC,CAAC;KACpD;AACJ,CAAA;AAED;;;;;;;AAOG;AACI,eAAe,qCAAqC,CACvD,aAA4B,EAAA;AAE5B,IAAA,MAAM,aAAa,GAAG,IAAI,yBAAyB,CAAC,aAAa,CAAC,CAAC;AACnE,IAAA,MAAM,aAAa,CAAC,UAAU,EAAE,CAAC;AAEjC,IAAA,IAAI,aAAa,CAAC,WAAW,EAAE,EAAE;AAC7B,QAAA,MAAM,UAAU,GAAG,IAAI,uBAAuB,CAAC,aAAa,CAAC,CAAC;QAC9D,MAAM,WAAW,GAAG,IAAI,uBAAuB,CAC3C,aAAa,EACb,UAAU,CACb,CAAC;AACF,QAAA,MAAM,WAAW,CAAC,UAAU,EAAE,CAAC;AAC/B,QAAA,OAAO,WAAW,CAAC;AACtB,KAAA;AAED,IAAA,OAAO,qCAAqC,CAAC,aAAa,CAAC,CAAC;AAChE,CAAC;AAED;;;;;;AAMG;AACI,eAAe,qCAAqC,CACvD,aAA4B,EAAA;AAE5B,IAAA,MAAM,GAAG,GAAG,IAAI,uBAAuB,CAAC,aAAa,CAAC,CAAC;AACvD,IAAA,MAAM,GAAG,CAAC,UAAU,EAAE,CAAC;AACvB,IAAA,OAAO,GAAG,CAAC;AACf;;;;"}
1
+ {"version":3,"file":"PublicClientApplication.mjs","sources":["../../src/app/PublicClientApplication.ts"],"sourcesContent":[null],"names":["ControllerFactory.createV3Controller"],"mappings":"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"}
@@ -1,4 +1,3 @@
1
- import { ITokenCache } from "../cache/ITokenCache.js";
2
1
  import { INavigationClient } from "../navigation/INavigationClient.js";
3
2
  import { AuthorizationCodeRequest } from "../request/AuthorizationCodeRequest.js";
4
3
  import { PopupRequest } from "../request/PopupRequest.js";
@@ -6,7 +5,7 @@ import { RedirectRequest } from "../request/RedirectRequest.js";
6
5
  import { SilentRequest } from "../request/SilentRequest.js";
7
6
  import { WrapperSKU } from "../utils/BrowserConstants.js";
8
7
  import { IPublicClientApplication } from "./IPublicClientApplication.js";
9
- import { IController } from "../controllers/IController.js";
8
+ import { HandleRedirectPromiseOptions, IController } from "../controllers/IController.js";
10
9
  import { PerformanceCallbackFunction, AccountInfo, AccountFilter, Logger } from "@azure/msal-common/browser";
11
10
  import { EndSessionRequest } from "../request/EndSessionRequest.js";
12
11
  import { SsoSilentRequest } from "../request/SsoSilentRequest.js";
@@ -117,48 +116,12 @@ export declare class PublicClientNext implements IPublicClientApplication {
117
116
  * @returns {boolean}
118
117
  */
119
118
  removePerformanceCallback(callbackId: string): boolean;
120
- /**
121
- * Adds event listener that emits an event when a user account is added or removed from localstorage in a different browser tab or window
122
- */
123
- enableAccountStorageEvents(): void;
124
- /**
125
- * Removes event listener that emits an event when a user account is added or removed from localstorage in a different browser tab or window
126
- */
127
- disableAccountStorageEvents(): void;
128
119
  /**
129
120
  * Returns the first account found in the cache that matches the account filter passed in.
130
121
  * @param accountFilter
131
122
  * @returns The first account found in the cache matching the provided filter or null if no account could be found.
132
123
  */
133
124
  getAccount(accountFilter: AccountFilter): AccountInfo | null;
134
- /**
135
- * Returns the signed in account matching homeAccountId.
136
- * (the account object is created at the time of successful login)
137
- * or null when no matching account is found
138
- * @param homeAccountId
139
- * @returns The account object stored in MSAL
140
- * @deprecated - Use getAccount instead
141
- */
142
- getAccountByHomeId(homeAccountId: string): AccountInfo | null;
143
- /**
144
- * Returns the signed in account matching localAccountId.
145
- * (the account object is created at the time of successful login)
146
- * or null when no matching account is found
147
- * @param localAccountId
148
- * @returns The account object stored in MSAL
149
- * @deprecated - Use getAccount instead
150
- */
151
- getAccountByLocalId(localId: string): AccountInfo | null;
152
- /**
153
- * Returns the signed in account matching username.
154
- * (the account object is created at the time of successful login)
155
- * or null when no matching account is found.
156
- * This API is provided for convenience but getAccountById should be used for best reliability
157
- * @param userName
158
- * @returns The account object stored in MSAL
159
- * @deprecated - Use getAccount instead
160
- */
161
- getAccountByUsername(userName: string): AccountInfo | null;
162
125
  /**
163
126
  * Returns all the accounts in the cache that match the optional filter. If no filter is provided, all accounts are returned.
164
127
  * @param accountFilter - (Optional) filter to narrow down the accounts returned
@@ -172,7 +135,7 @@ export declare class PublicClientNext implements IPublicClientApplication {
172
135
  * @param hash Hash to process. Defaults to the current value of window.location.hash. Only needs to be provided explicitly if the response to be handled is not contained in the current value.
173
136
  * @returns Token response or null. If the return value is null, then no auth redirect was detected.
174
137
  */
175
- handleRedirectPromise(hash?: string | undefined): Promise<AuthenticationResult | null>;
138
+ handleRedirectPromise(options?: HandleRedirectPromiseOptions): Promise<AuthenticationResult | null>;
176
139
  /**
177
140
  * Use when initiating the login process via opening a popup window in the user's browser
178
141
  *
@@ -191,12 +154,6 @@ export declare class PublicClientNext implements IPublicClientApplication {
191
154
  * @param request
192
155
  */
193
156
  loginRedirect(request?: RedirectRequest | undefined): Promise<void>;
194
- /**
195
- * Deprecated logout function. Use logoutRedirect or logoutPopup instead
196
- * @param logoutRequest
197
- * @deprecated
198
- */
199
- logout(logoutRequest?: EndSessionRequest): Promise<void>;
200
157
  /**
201
158
  * Use to log out the current user, and redirect the user to the postLogoutRedirectUri.
202
159
  * Default behaviour is to redirect the user to `window.location.href`.
@@ -224,10 +181,6 @@ export declare class PublicClientNext implements IPublicClientApplication {
224
181
  * @returns A promise that is fulfilled when this function has completed, or rejected if an error was raised.
225
182
  */
226
183
  ssoSilent(request: SsoSilentRequest): Promise<AuthenticationResult>;
227
- /**
228
- * Gets the token cache for the application.
229
- */
230
- getTokenCache(): ITokenCache;
231
184
  /**
232
185
  * Returns the logger instance
233
186
  */
@@ -1 +1 @@
1
- {"version":3,"file":"PublicClientNext.d.ts","sourceRoot":"","sources":["../../src/app/PublicClientNext.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AACtD,OAAO,EAAE,iBAAiB,EAAE,MAAM,oCAAoC,CAAC;AACvE,OAAO,EAAE,wBAAwB,EAAE,MAAM,wCAAwC,CAAC;AAClF,OAAO,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAC1D,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAC;AAChE,OAAO,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAC5D,OAAO,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAC1D,OAAO,EAAE,wBAAwB,EAAE,MAAM,+BAA+B,CAAC;AACzE,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAC;AAC5D,OAAO,EACH,2BAA2B,EAC3B,WAAW,EACX,aAAa,EACb,MAAM,EACT,MAAM,4BAA4B,CAAC;AACpC,OAAO,EAAE,iBAAiB,EAAE,MAAM,iCAAiC,CAAC;AACpE,OAAO,EAAE,gBAAgB,EAAE,MAAM,gCAAgC,CAAC;AAElE,OAAO,EACH,oBAAoB,EACpB,aAAa,EAChB,MAAM,4BAA4B,CAAC;AACpC,OAAO,EAAE,qBAAqB,EAAE,MAAM,0BAA0B,CAAC;AACjE,OAAO,EAAE,iBAAiB,EAAE,MAAM,iCAAiC,CAAC;AACpE,OAAO,EAAE,oBAAoB,EAAE,MAAM,qCAAqC,CAAC;AAG3E,OAAO,EAAE,SAAS,EAAE,MAAM,uBAAuB,CAAC;AAElD;;;;;;;;;;GAUG;AACH,qBAAa,gBAAiB,YAAW,wBAAwB;IAK7D,SAAS,CAAC,UAAU,EAAG,WAAW,CAAC;IACnC,SAAS,CAAC,aAAa,EAAE,aAAa,CAAC;WAEnB,6BAA6B,CAC7C,aAAa,EAAE,aAAa,GAC7B,OAAO,CAAC,wBAAwB,CAAC;IAapC;;;;;;;;;;;;;;;;;;;;;OAqBG;IACH,OAAO;IAeP;;OAEG;IACG,UAAU,IAAI,OAAO,CAAC,IAAI,CAAC;IAajC;;;;;;OAMG;IACG,iBAAiB,CACnB,OAAO,EAAE,YAAY,GACtB,OAAO,CAAC,oBAAoB,CAAC;IAIhC;;;;;;;;OAQG;IACH,oBAAoB,CAAC,OAAO,EAAE,eAAe,GAAG,OAAO,CAAC,IAAI,CAAC;IAI7D;;;;;OAKG;IACH,kBAAkB,CACd,aAAa,EAAE,aAAa,GAC7B,OAAO,CAAC,oBAAoB,CAAC;IAIhC;;;;;;;;;OASG;IACH,kBAAkB,CACd,OAAO,EAAE,wBAAwB,GAClC,OAAO,CAAC,oBAAoB,CAAC;IAIhC;;;OAGG;IACH,gBAAgB,CACZ,QAAQ,EAAE,qBAAqB,EAC/B,UAAU,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,GAC9B,MAAM,GAAG,IAAI;IAIhB;;;OAGG;IACH,mBAAmB,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI;IAI7C;;;;;OAKG;IACH,sBAAsB,CAAC,QAAQ,EAAE,2BAA2B,GAAG,MAAM;IAIrE;;;;;OAKG;IACH,yBAAyB,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO;IAItD;;OAEG;IACH,0BAA0B,IAAI,IAAI;IAIlC;;OAEG;IACH,2BAA2B,IAAI,IAAI;IAInC;;;;OAIG;IACH,UAAU,CAAC,aAAa,EAAE,aAAa,GAAG,WAAW,GAAG,IAAI;IAI5D;;;;;;;OAOG;IACH,kBAAkB,CAAC,aAAa,EAAE,MAAM,GAAG,WAAW,GAAG,IAAI;IAI7D;;;;;;;OAOG;IACH,mBAAmB,CAAC,OAAO,EAAE,MAAM,GAAG,WAAW,GAAG,IAAI;IAIxD;;;;;;;;OAQG;IACH,oBAAoB,CAAC,QAAQ,EAAE,MAAM,GAAG,WAAW,GAAG,IAAI;IAI1D;;;;OAIG;IACH,cAAc,CAAC,aAAa,CAAC,EAAE,aAAa,GAAG,WAAW,EAAE;IAI5D;;;;;;OAMG;IACH,qBAAqB,CACjB,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,GAC1B,OAAO,CAAC,oBAAoB,GAAG,IAAI,CAAC;IAIvC;;;;;;OAMG;IACH,UAAU,CACN,OAAO,CAAC,EAAE,YAAY,GAAG,SAAS,GACnC,OAAO,CAAC,oBAAoB,CAAC;IAIhC;;;;;;;;OAQG;IACH,aAAa,CAAC,OAAO,CAAC,EAAE,eAAe,GAAG,SAAS,GAAG,OAAO,CAAC,IAAI,CAAC;IAInE;;;;OAIG;IACH,MAAM,CAAC,aAAa,CAAC,EAAE,iBAAiB,GAAG,OAAO,CAAC,IAAI,CAAC;IAIxD;;;;OAIG;IACH,cAAc,CAAC,aAAa,CAAC,EAAE,iBAAiB,GAAG,OAAO,CAAC,IAAI,CAAC;IAIhE;;;OAGG;IACH,WAAW,CAAC,aAAa,CAAC,EAAE,iBAAiB,GAAG,OAAO,CAAC,IAAI,CAAC;IAI7D;;;;;;;;;;;;;;OAcG;IACH,SAAS,CAAC,OAAO,EAAE,gBAAgB,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAInE;;OAEG;IACH,aAAa,IAAI,WAAW;IAI5B;;OAEG;IACH,SAAS,IAAI,MAAM;IAInB;;;OAGG;IACH,SAAS,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI;IAI/B;;;OAGG;IACH,gBAAgB,CAAC,OAAO,EAAE,WAAW,GAAG,IAAI,GAAG,IAAI;IAInD;;OAEG;IACH,gBAAgB,IAAI,WAAW,GAAG,IAAI;IAItC;;;;OAIG;IACH,wBAAwB,CAAC,GAAG,EAAE,UAAU,EAAE,OAAO,EAAE,MAAM,GAAG,IAAI;IAIhE;;;OAGG;IACH,mBAAmB,CAAC,gBAAgB,EAAE,iBAAiB,GAAG,IAAI;IAI9D;;;OAGG;IACH,gBAAgB,IAAI,oBAAoB;IAIxC;;;;;OAKG;IACG,YAAY,CACd,MAAM,EAAE,oBAAoB,EAC5B,OAAO,EACD,aAAa,GACb,gBAAgB,GAChB,eAAe,GACf,YAAY,GACnB,OAAO,CAAC,IAAI,CAAC;IAIhB;;;OAGG;IACH,UAAU,CAAC,aAAa,CAAC,EAAE,iBAAiB,GAAG,OAAO,CAAC,IAAI,CAAC;CAG/D"}
1
+ {"version":3,"file":"PublicClientNext.d.ts","sourceRoot":"","sources":["../../src/app/PublicClientNext.ts"],"names":[],"mappings":"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"}
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v4.24.0 2025-09-24 */
1
+ /*! @azure/msal-browser v5.0.0-alpha.0 2025-10-02 */
2
2
  'use strict';
3
3
  import { createController } from '../controllers/ControllerFactory.mjs';
4
4
  import { UnknownOperatingContextController } from '../controllers/UnknownOperatingContextController.mjs';
@@ -152,18 +152,6 @@ class PublicClientNext {
152
152
  removePerformanceCallback(callbackId) {
153
153
  return this.controller.removePerformanceCallback(callbackId);
154
154
  }
155
- /**
156
- * Adds event listener that emits an event when a user account is added or removed from localstorage in a different browser tab or window
157
- */
158
- enableAccountStorageEvents() {
159
- this.controller.enableAccountStorageEvents();
160
- }
161
- /**
162
- * Removes event listener that emits an event when a user account is added or removed from localstorage in a different browser tab or window
163
- */
164
- disableAccountStorageEvents() {
165
- this.controller.disableAccountStorageEvents();
166
- }
167
155
  /**
168
156
  * Returns the first account found in the cache that matches the account filter passed in.
169
157
  * @param accountFilter
@@ -172,40 +160,6 @@ class PublicClientNext {
172
160
  getAccount(accountFilter) {
173
161
  return this.controller.getAccount(accountFilter);
174
162
  }
175
- /**
176
- * Returns the signed in account matching homeAccountId.
177
- * (the account object is created at the time of successful login)
178
- * or null when no matching account is found
179
- * @param homeAccountId
180
- * @returns The account object stored in MSAL
181
- * @deprecated - Use getAccount instead
182
- */
183
- getAccountByHomeId(homeAccountId) {
184
- return this.controller.getAccountByHomeId(homeAccountId);
185
- }
186
- /**
187
- * Returns the signed in account matching localAccountId.
188
- * (the account object is created at the time of successful login)
189
- * or null when no matching account is found
190
- * @param localAccountId
191
- * @returns The account object stored in MSAL
192
- * @deprecated - Use getAccount instead
193
- */
194
- getAccountByLocalId(localId) {
195
- return this.controller.getAccountByLocalId(localId);
196
- }
197
- /**
198
- * Returns the signed in account matching username.
199
- * (the account object is created at the time of successful login)
200
- * or null when no matching account is found.
201
- * This API is provided for convenience but getAccountById should be used for best reliability
202
- * @param userName
203
- * @returns The account object stored in MSAL
204
- * @deprecated - Use getAccount instead
205
- */
206
- getAccountByUsername(userName) {
207
- return this.controller.getAccountByUsername(userName);
208
- }
209
163
  /**
210
164
  * Returns all the accounts in the cache that match the optional filter. If no filter is provided, all accounts are returned.
211
165
  * @param accountFilter - (Optional) filter to narrow down the accounts returned
@@ -221,8 +175,8 @@ class PublicClientNext {
221
175
  * @param hash Hash to process. Defaults to the current value of window.location.hash. Only needs to be provided explicitly if the response to be handled is not contained in the current value.
222
176
  * @returns Token response or null. If the return value is null, then no auth redirect was detected.
223
177
  */
224
- handleRedirectPromise(hash) {
225
- return this.controller.handleRedirectPromise(hash);
178
+ handleRedirectPromise(options) {
179
+ return this.controller.handleRedirectPromise(options);
226
180
  }
227
181
  /**
228
182
  * Use when initiating the login process via opening a popup window in the user's browser
@@ -246,14 +200,6 @@ class PublicClientNext {
246
200
  loginRedirect(request) {
247
201
  return this.controller.loginRedirect(request);
248
202
  }
249
- /**
250
- * Deprecated logout function. Use logoutRedirect or logoutPopup instead
251
- * @param logoutRequest
252
- * @deprecated
253
- */
254
- logout(logoutRequest) {
255
- return this.controller.logout(logoutRequest);
256
- }
257
203
  /**
258
204
  * Use to log out the current user, and redirect the user to the postLogoutRedirectUri.
259
205
  * Default behaviour is to redirect the user to `window.location.href`.
@@ -287,12 +233,6 @@ class PublicClientNext {
287
233
  ssoSilent(request) {
288
234
  return this.controller.ssoSilent(request);
289
235
  }
290
- /**
291
- * Gets the token cache for the application.
292
- */
293
- getTokenCache() {
294
- return this.controller.getTokenCache();
295
- }
296
236
  /**
297
237
  * Returns the logger instance
298
238
  */
@@ -1 +1 @@
1
- {"version":3,"file":"PublicClientNext.mjs","sources":["../../src/app/PublicClientNext.ts"],"sourcesContent":[null],"names":["ControllerFactory.createController"],"mappings":"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"}
1
+ {"version":3,"file":"PublicClientNext.mjs","sources":["../../src/app/PublicClientNext.ts"],"sourcesContent":[null],"names":["ControllerFactory.createController"],"mappings":";;;;;;AAAA;;;AAGG;AAiCH;;;;;;;;;;AAUG;MACU,gBAAgB,CAAA;AAQlB,IAAA,aAAa,6BAA6B,CAC7C,aAA4B,EAAA;QAE5B,MAAM,UAAU,GAAG,MAAMA,gBAAkC,CACvD,aAAa,CAChB,CAAC;AACF,QAAA,IAAI,GAAG,CAAC;QACR,IAAI,UAAU,KAAK,IAAI,EAAE;YACrB,GAAG,GAAG,IAAI,gBAAgB,CAAC,aAAa,EAAE,UAAU,CAAC,CAAC;AACzD,QAAA,CAAA;AAAM,aAAA;AACH,YAAA,GAAG,GAAG,IAAI,gBAAgB,CAAC,aAAa,CAAC,CAAC;AAC7C,QAAA,CAAA;AACD,QAAA,OAAO,GAAG,CAAC;IACf,CAAC;AAED;;;;;;;;;;;;;;;;;;;;;AAqBG;IACH,WAAA,CACI,aAA4B,EAC5B,UAAwB,EAAA;AAExB,QAAA,IAAI,CAAC,aAAa,GAAG,aAAa,CAAC;AACnC,QAAA,IAAI,UAAU,EAAE;AACZ,YAAA,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;AAChC,QAAA,CAAA;AAAM,aAAA;AACH,YAAA,MAAM,gBAAgB,GAAG,IAAI,uBAAuB,CAAC,aAAa,CAAC,CAAC;YACpE,IAAI,CAAC,UAAU,GAAG,IAAI,iCAAiC,CACnD,gBAAgB,CACnB,CAAC;AACL,QAAA,CAAA;IACL,CAAC;AAED;;AAEG;AACH,IAAA,MAAM,UAAU,GAAA;AACZ,QAAA,IAAI,IAAI,CAAC,UAAU,YAAY,iCAAiC,EAAE;YAC9D,MAAM,MAAM,GAAG,MAAMA,gBAAkC,CACnD,IAAI,CAAC,aAAa,CACrB,CAAC;YACF,IAAI,MAAM,KAAK,IAAI,EAAE;AACjB,gBAAA,IAAI,CAAC,UAAU,GAAG,MAAM,CAAC;AAC5B,YAAA,CAAA;AACD,YAAA,OAAO,IAAI,CAAC,UAAU,CAAC,UAAU,EAAE,CAAC;AACvC,QAAA,CAAA;AACD,QAAA,OAAO,OAAO,CAAC,OAAO,EAAE,CAAC;IAC7B,CAAC;AAED;;;;;;AAMG;IACH,MAAM,iBAAiB,CACnB,OAAqB,EAAA;QAErB,OAAO,IAAI,CAAC,UAAU,CAAC,iBAAiB,CAAC,OAAO,CAAC,CAAC;IACtD,CAAC;AAED;;;;;;;;AAQG;AACH,IAAA,oBAAoB,CAAC,OAAwB,EAAA;QACzC,OAAO,IAAI,CAAC,UAAU,CAAC,oBAAoB,CAAC,OAAO,CAAC,CAAC;IACzD,CAAC;AAED;;;;;AAKG;AACH,IAAA,kBAAkB,CACd,aAA4B,EAAA;QAE5B,OAAO,IAAI,CAAC,UAAU,CAAC,kBAAkB,CAAC,aAAa,CAAC,CAAC;IAC7D,CAAC;AAED;;;;;;;;;AASG;AACH,IAAA,kBAAkB,CACd,OAAiC,EAAA;QAEjC,OAAO,IAAI,CAAC,UAAU,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC;IACvD,CAAC;AAED;;;AAGG;IACH,gBAAgB,CACZ,QAA+B,EAC/B,UAA6B,EAAA;QAE7B,OAAO,IAAI,CAAC,UAAU,CAAC,gBAAgB,CAAC,QAAQ,EAAE,UAAU,CAAC,CAAC;IAClE,CAAC;AAED;;;AAGG;AACH,IAAA,mBAAmB,CAAC,UAAkB,EAAA;QAClC,OAAO,IAAI,CAAC,UAAU,CAAC,mBAAmB,CAAC,UAAU,CAAC,CAAC;IAC3D,CAAC;AAED;;;;;AAKG;AACH,IAAA,sBAAsB,CAAC,QAAqC,EAAA;QACxD,OAAO,IAAI,CAAC,UAAU,CAAC,sBAAsB,CAAC,QAAQ,CAAC,CAAC;IAC5D,CAAC;AAED;;;;;AAKG;AACH,IAAA,yBAAyB,CAAC,UAAkB,EAAA;QACxC,OAAO,IAAI,CAAC,UAAU,CAAC,yBAAyB,CAAC,UAAU,CAAC,CAAC;IACjE,CAAC;AAED;;;;AAIG;AACH,IAAA,UAAU,CAAC,aAA4B,EAAA;QACnC,OAAO,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC,aAAa,CAAC,CAAC;IACrD,CAAC;AAED;;;;AAIG;AACH,IAAA,cAAc,CAAC,aAA6B,EAAA;QACxC,OAAO,IAAI,CAAC,UAAU,CAAC,cAAc,CAAC,aAAa,CAAC,CAAC;IACzD,CAAC;AAED;;;;;;AAMG;AACH,IAAA,qBAAqB,CACjB,OAAsC,EAAA;QAEtC,OAAO,IAAI,CAAC,UAAU,CAAC,qBAAqB,CAAC,OAAO,CAAC,CAAC;IAC1D,CAAC;AAED;;;;;;AAMG;AACH,IAAA,UAAU,CACN,OAAkC,EAAA;QAElC,OAAO,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC;IAC/C,CAAC;AAED;;;;;;;;AAQG;AACH,IAAA,aAAa,CAAC,OAAqC,EAAA;QAC/C,OAAO,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;IAClD,CAAC;AAED;;;;AAIG;AACH,IAAA,cAAc,CAAC,aAAiC,EAAA;QAC5C,OAAO,IAAI,CAAC,UAAU,CAAC,cAAc,CAAC,aAAa,CAAC,CAAC;IACzD,CAAC;AAED;;;AAGG;AACH,IAAA,WAAW,CAAC,aAAiC,EAAA;QACzC,OAAO,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,aAAa,CAAC,CAAC;IACtD,CAAC;AAED;;;;;;;;;;;;;;AAcG;AACH,IAAA,SAAS,CAAC,OAAyB,EAAA;QAC/B,OAAO,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC;IAC9C,CAAC;AAED;;AAEG;IACH,SAAS,GAAA;AACL,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,SAAS,EAAE,CAAC;IACvC,CAAC;AAED;;;AAGG;AACH,IAAA,SAAS,CAAC,MAAc,EAAA;AACpB,QAAA,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;IACtC,CAAC;AAED;;;AAGG;AACH,IAAA,gBAAgB,CAAC,OAA2B,EAAA;AACxC,QAAA,IAAI,CAAC,UAAU,CAAC,gBAAgB,CAAC,OAAO,CAAC,CAAC;IAC9C,CAAC;AAED;;AAEG;IACH,gBAAgB,GAAA;AACZ,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,gBAAgB,EAAE,CAAC;IAC9C,CAAC;AAED;;;;AAIG;IACH,wBAAwB,CAAC,GAAe,EAAE,OAAe,EAAA;QACrD,OAAO,IAAI,CAAC,UAAU,CAAC,wBAAwB,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC;IAClE,CAAC;AAED;;;AAGG;AACH,IAAA,mBAAmB,CAAC,gBAAmC,EAAA;AACnD,QAAA,IAAI,CAAC,UAAU,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,CAAC;IAC1D,CAAC;AAED;;;AAGG;IACH,gBAAgB,GAAA;AACZ,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,gBAAgB,EAAE,CAAC;IAC9C,CAAC;AAED;;;;;AAKG;AACH,IAAA,MAAM,YAAY,CACd,MAA4B,EAC5B,OAIkB,EAAA;QAElB,OAAO,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACzD,CAAC;AAED;;;AAGG;AACH,IAAA,UAAU,CAAC,aAAiC,EAAA;QACxC,OAAO,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC,aAAa,CAAC,CAAC;IACrD,CAAC;AACJ;;;;"}