@azure/msal-browser 4.13.2 → 4.15.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 (1829) hide show
  1. package/dist/app/IPublicClientApplication.mjs +1 -1
  2. package/dist/app/PublicClientApplication.mjs +1 -1
  3. package/dist/app/PublicClientNext.mjs +1 -1
  4. package/dist/broker/nativeBroker/NativeStatusCodes.mjs +1 -1
  5. package/dist/broker/nativeBroker/PlatformAuthDOMHandler.mjs +1 -1
  6. package/dist/broker/nativeBroker/PlatformAuthExtensionHandler.mjs +1 -1
  7. package/dist/broker/nativeBroker/PlatformAuthProvider.mjs +1 -1
  8. package/dist/cache/AccountManager.d.ts +7 -7
  9. package/dist/cache/AccountManager.d.ts.map +1 -1
  10. package/dist/cache/AccountManager.mjs +17 -15
  11. package/dist/cache/AccountManager.mjs.map +1 -1
  12. package/dist/cache/AsyncMemoryStorage.mjs +1 -1
  13. package/dist/cache/BrowserCacheManager.d.ts +40 -25
  14. package/dist/cache/BrowserCacheManager.d.ts.map +1 -1
  15. package/dist/cache/BrowserCacheManager.mjs +215 -124
  16. package/dist/cache/BrowserCacheManager.mjs.map +1 -1
  17. package/dist/cache/CacheHelpers.mjs +1 -1
  18. package/dist/cache/CookieStorage.mjs +1 -1
  19. package/dist/cache/DatabaseStorage.mjs +1 -1
  20. package/dist/cache/IWindowStorage.d.ts +1 -1
  21. package/dist/cache/IWindowStorage.d.ts.map +1 -1
  22. package/dist/cache/LocalStorage.d.ts +1 -1
  23. package/dist/cache/LocalStorage.d.ts.map +1 -1
  24. package/dist/cache/LocalStorage.mjs +4 -3
  25. package/dist/cache/LocalStorage.mjs.map +1 -1
  26. package/dist/cache/MemoryStorage.mjs +1 -1
  27. package/dist/cache/SessionStorage.mjs +1 -1
  28. package/dist/cache/TokenCache.d.ts.map +1 -1
  29. package/dist/cache/TokenCache.mjs +2 -2
  30. package/dist/cache/TokenCache.mjs.map +1 -1
  31. package/dist/config/Configuration.mjs +3 -3
  32. package/dist/controllers/ControllerFactory.mjs +1 -1
  33. package/dist/controllers/NestedAppAuthController.d.ts.map +1 -1
  34. package/dist/controllers/NestedAppAuthController.mjs +18 -10
  35. package/dist/controllers/NestedAppAuthController.mjs.map +1 -1
  36. package/dist/controllers/StandardController.d.ts.map +1 -1
  37. package/dist/controllers/StandardController.mjs +16 -9
  38. package/dist/controllers/StandardController.mjs.map +1 -1
  39. package/dist/controllers/UnknownOperatingContextController.mjs +1 -1
  40. package/dist/crypto/BrowserCrypto.mjs +1 -1
  41. package/dist/crypto/CryptoOps.mjs +1 -1
  42. package/dist/crypto/PkceGenerator.mjs +1 -1
  43. package/dist/crypto/SignedHttpRequest.mjs +1 -1
  44. package/dist/custom-auth-path/app/IPublicClientApplication.d.ts +55 -0
  45. package/dist/custom-auth-path/app/IPublicClientApplication.d.ts.map +1 -0
  46. package/dist/custom-auth-path/app/PublicClientApplication.d.ts +297 -0
  47. package/dist/custom-auth-path/app/PublicClientApplication.d.ts.map +1 -0
  48. package/dist/custom-auth-path/app/PublicClientApplication.mjs +346 -0
  49. package/dist/custom-auth-path/app/PublicClientApplication.mjs.map +1 -0
  50. package/dist/custom-auth-path/app/PublicClientNext.d.ts +278 -0
  51. package/dist/custom-auth-path/app/PublicClientNext.d.ts.map +1 -0
  52. package/dist/custom-auth-path/broker/nativeBroker/IPlatformAuthHandler.d.ts +12 -0
  53. package/dist/custom-auth-path/broker/nativeBroker/IPlatformAuthHandler.d.ts.map +1 -0
  54. package/dist/custom-auth-path/broker/nativeBroker/NativeStatusCodes.d.ts +9 -0
  55. package/dist/custom-auth-path/broker/nativeBroker/NativeStatusCodes.d.ts.map +1 -0
  56. package/dist/custom-auth-path/broker/nativeBroker/NativeStatusCodes.mjs +17 -0
  57. package/dist/custom-auth-path/broker/nativeBroker/NativeStatusCodes.mjs.map +1 -0
  58. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.d.ts +30 -0
  59. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.d.ts.map +1 -0
  60. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.mjs +143 -0
  61. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.mjs.map +1 -0
  62. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts +63 -0
  63. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts.map +1 -0
  64. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.mjs +274 -0
  65. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.mjs.map +1 -0
  66. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.d.ts +26 -0
  67. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.d.ts.map +1 -0
  68. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.mjs +90 -0
  69. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.mjs.map +1 -0
  70. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthRequest.d.ts +78 -0
  71. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthRequest.d.ts.map +1 -0
  72. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthResponse.d.ts +71 -0
  73. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthResponse.d.ts.map +1 -0
  74. package/dist/custom-auth-path/cache/AccountManager.d.ts +49 -0
  75. package/dist/custom-auth-path/cache/AccountManager.d.ts.map +1 -0
  76. package/dist/custom-auth-path/cache/AccountManager.mjs +133 -0
  77. package/dist/custom-auth-path/cache/AccountManager.mjs.map +1 -0
  78. package/dist/custom-auth-path/cache/AsyncMemoryStorage.d.ts +51 -0
  79. package/dist/custom-auth-path/cache/AsyncMemoryStorage.d.ts.map +1 -0
  80. package/dist/custom-auth-path/cache/AsyncMemoryStorage.mjs +141 -0
  81. package/dist/custom-auth-path/cache/AsyncMemoryStorage.mjs.map +1 -0
  82. package/dist/custom-auth-path/cache/BrowserCacheManager.d.ts +297 -0
  83. package/dist/custom-auth-path/cache/BrowserCacheManager.d.ts.map +1 -0
  84. package/dist/custom-auth-path/cache/BrowserCacheManager.mjs +989 -0
  85. package/dist/custom-auth-path/cache/BrowserCacheManager.mjs.map +1 -0
  86. package/dist/custom-auth-path/cache/CacheHelpers.d.ts +16 -0
  87. package/dist/custom-auth-path/cache/CacheHelpers.d.ts.map +1 -0
  88. package/dist/custom-auth-path/cache/CacheHelpers.mjs +46 -0
  89. package/dist/custom-auth-path/cache/CacheHelpers.mjs.map +1 -0
  90. package/dist/custom-auth-path/cache/CookieStorage.d.ts +22 -0
  91. package/dist/custom-auth-path/cache/CookieStorage.d.ts.map +1 -0
  92. package/dist/custom-auth-path/cache/CookieStorage.mjs +78 -0
  93. package/dist/custom-auth-path/cache/CookieStorage.mjs.map +1 -0
  94. package/dist/custom-auth-path/cache/DatabaseStorage.d.ts +57 -0
  95. package/dist/custom-auth-path/cache/DatabaseStorage.d.ts.map +1 -0
  96. package/dist/custom-auth-path/cache/DatabaseStorage.mjs +209 -0
  97. package/dist/custom-auth-path/cache/DatabaseStorage.mjs.map +1 -0
  98. package/dist/custom-auth-path/cache/IAsyncStorage.d.ts +28 -0
  99. package/dist/custom-auth-path/cache/IAsyncStorage.d.ts.map +1 -0
  100. package/dist/custom-auth-path/cache/ITokenCache.d.ts +12 -0
  101. package/dist/custom-auth-path/cache/ITokenCache.d.ts.map +1 -0
  102. package/dist/custom-auth-path/cache/IWindowStorage.d.ts +40 -0
  103. package/dist/custom-auth-path/cache/IWindowStorage.d.ts.map +1 -0
  104. package/dist/custom-auth-path/cache/LocalStorage.d.ts +49 -0
  105. package/dist/custom-auth-path/cache/LocalStorage.d.ts.map +1 -0
  106. package/dist/custom-auth-path/cache/LocalStorage.mjs +264 -0
  107. package/dist/custom-auth-path/cache/LocalStorage.mjs.map +1 -0
  108. package/dist/custom-auth-path/cache/MemoryStorage.d.ts +15 -0
  109. package/dist/custom-auth-path/cache/MemoryStorage.d.ts.map +1 -0
  110. package/dist/custom-auth-path/cache/MemoryStorage.mjs +45 -0
  111. package/dist/custom-auth-path/cache/MemoryStorage.mjs.map +1 -0
  112. package/dist/custom-auth-path/cache/SessionStorage.d.ts +13 -0
  113. package/dist/custom-auth-path/cache/SessionStorage.d.ts.map +1 -0
  114. package/dist/custom-auth-path/cache/SessionStorage.mjs +43 -0
  115. package/dist/custom-auth-path/cache/SessionStorage.mjs.map +1 -0
  116. package/dist/custom-auth-path/cache/TokenCache.d.ts +78 -0
  117. package/dist/custom-auth-path/cache/TokenCache.d.ts.map +1 -0
  118. package/dist/custom-auth-path/cache/TokenCache.mjs +207 -0
  119. package/dist/custom-auth-path/cache/TokenCache.mjs.map +1 -0
  120. package/dist/custom-auth-path/config/Configuration.d.ts +228 -0
  121. package/dist/custom-auth-path/config/Configuration.d.ts.map +1 -0
  122. package/dist/custom-auth-path/config/Configuration.mjs +141 -0
  123. package/dist/custom-auth-path/config/Configuration.mjs.map +1 -0
  124. package/dist/custom-auth-path/controllers/ControllerFactory.d.ts +6 -0
  125. package/dist/custom-auth-path/controllers/ControllerFactory.d.ts.map +1 -0
  126. package/dist/custom-auth-path/controllers/ControllerFactory.mjs +17 -0
  127. package/dist/custom-auth-path/controllers/ControllerFactory.mjs.map +1 -0
  128. package/dist/custom-auth-path/controllers/IController.d.ts +59 -0
  129. package/dist/custom-auth-path/controllers/IController.d.ts.map +1 -0
  130. package/dist/custom-auth-path/controllers/NestedAppAuthController.d.ts +203 -0
  131. package/dist/custom-auth-path/controllers/NestedAppAuthController.d.ts.map +1 -0
  132. package/dist/custom-auth-path/controllers/StandardController.d.ts +425 -0
  133. package/dist/custom-auth-path/controllers/StandardController.d.ts.map +1 -0
  134. package/dist/custom-auth-path/controllers/StandardController.mjs +1469 -0
  135. package/dist/custom-auth-path/controllers/StandardController.mjs.map +1 -0
  136. package/dist/custom-auth-path/controllers/UnknownOperatingContextController.d.ts +86 -0
  137. package/dist/custom-auth-path/controllers/UnknownOperatingContextController.d.ts.map +1 -0
  138. package/dist/custom-auth-path/crypto/BrowserCrypto.d.ts +97 -0
  139. package/dist/custom-auth-path/crypto/BrowserCrypto.d.ts.map +1 -0
  140. package/dist/custom-auth-path/crypto/BrowserCrypto.mjs +308 -0
  141. package/dist/custom-auth-path/crypto/BrowserCrypto.mjs.map +1 -0
  142. package/dist/custom-auth-path/crypto/CryptoOps.d.ts +75 -0
  143. package/dist/custom-auth-path/crypto/CryptoOps.d.ts.map +1 -0
  144. package/dist/custom-auth-path/crypto/CryptoOps.mjs +191 -0
  145. package/dist/custom-auth-path/crypto/CryptoOps.mjs.map +1 -0
  146. package/dist/custom-auth-path/crypto/PkceGenerator.d.ts +9 -0
  147. package/dist/custom-auth-path/crypto/PkceGenerator.d.ts.map +1 -0
  148. package/dist/custom-auth-path/crypto/PkceGenerator.mjs +65 -0
  149. package/dist/custom-auth-path/crypto/PkceGenerator.mjs.map +1 -0
  150. package/dist/custom-auth-path/crypto/SignedHttpRequest.d.ts +31 -0
  151. package/dist/custom-auth-path/crypto/SignedHttpRequest.d.ts.map +1 -0
  152. package/dist/custom-auth-path/custom_auth/CustomAuthActionInputs.d.ts +26 -0
  153. package/dist/custom-auth-path/custom_auth/CustomAuthActionInputs.d.ts.map +1 -0
  154. package/dist/custom-auth-path/custom_auth/CustomAuthConstants.d.ts +33 -0
  155. package/dist/custom-auth-path/custom_auth/CustomAuthConstants.d.ts.map +1 -0
  156. package/dist/custom-auth-path/custom_auth/CustomAuthConstants.mjs +47 -0
  157. package/dist/custom-auth-path/custom_auth/CustomAuthConstants.mjs.map +1 -0
  158. package/dist/custom-auth-path/custom_auth/CustomAuthPublicClientApplication.d.ts +55 -0
  159. package/dist/custom-auth-path/custom_auth/CustomAuthPublicClientApplication.d.ts.map +1 -0
  160. package/dist/custom-auth-path/custom_auth/CustomAuthPublicClientApplication.mjs +97 -0
  161. package/dist/custom-auth-path/custom_auth/CustomAuthPublicClientApplication.mjs.map +1 -0
  162. package/dist/custom-auth-path/custom_auth/ICustomAuthPublicClientApplication.d.ts +33 -0
  163. package/dist/custom-auth-path/custom_auth/ICustomAuthPublicClientApplication.d.ts.map +1 -0
  164. package/dist/custom-auth-path/custom_auth/UserAccountAttributes.d.ts +12 -0
  165. package/dist/custom-auth-path/custom_auth/UserAccountAttributes.d.ts.map +1 -0
  166. package/dist/custom-auth-path/custom_auth/configuration/CustomAuthConfiguration.d.ts +12 -0
  167. package/dist/custom-auth-path/custom_auth/configuration/CustomAuthConfiguration.d.ts.map +1 -0
  168. package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.d.ts +25 -0
  169. package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.d.ts.map +1 -0
  170. package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.mjs +274 -0
  171. package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.mjs.map +1 -0
  172. package/dist/custom-auth-path/custom_auth/controller/ICustomAuthStandardController.d.ts +13 -0
  173. package/dist/custom-auth-path/custom_auth/controller/ICustomAuthStandardController.d.ts.map +1 -0
  174. package/dist/custom-auth-path/custom_auth/core/CustomAuthAuthority.d.ts +29 -0
  175. package/dist/custom-auth-path/custom_auth/core/CustomAuthAuthority.d.ts.map +1 -0
  176. package/dist/custom-auth-path/custom_auth/core/CustomAuthAuthority.mjs +83 -0
  177. package/dist/custom-auth-path/custom_auth/core/CustomAuthAuthority.mjs.map +1 -0
  178. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +28 -0
  179. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +1 -0
  180. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs +105 -0
  181. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs.map +1 -0
  182. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts +11 -0
  183. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts.map +1 -0
  184. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowResultBase.mjs +47 -0
  185. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowResultBase.mjs.map +1 -0
  186. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowState.d.ts +27 -0
  187. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowState.d.ts.map +1 -0
  188. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowState.mjs +45 -0
  189. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowState.mjs.map +1 -0
  190. package/dist/custom-auth-path/custom_auth/core/error/CustomAuthApiError.d.ts +19 -0
  191. package/dist/custom-auth-path/custom_auth/core/error/CustomAuthApiError.d.ts.map +1 -0
  192. package/dist/custom-auth-path/custom_auth/core/error/CustomAuthApiError.mjs +33 -0
  193. package/dist/custom-auth-path/custom_auth/core/error/CustomAuthApiError.mjs.map +1 -0
  194. package/dist/custom-auth-path/custom_auth/core/error/CustomAuthError.d.ts +9 -0
  195. package/dist/custom-auth-path/custom_auth/core/error/CustomAuthError.d.ts.map +1 -0
  196. package/dist/custom-auth-path/custom_auth/core/error/CustomAuthError.mjs +22 -0
  197. package/dist/custom-auth-path/custom_auth/core/error/CustomAuthError.mjs.map +1 -0
  198. package/dist/custom-auth-path/custom_auth/core/error/HttpError.d.ts +5 -0
  199. package/dist/custom-auth-path/custom_auth/core/error/HttpError.d.ts.map +1 -0
  200. package/dist/custom-auth-path/custom_auth/core/error/HttpError.mjs +17 -0
  201. package/dist/custom-auth-path/custom_auth/core/error/HttpError.mjs.map +1 -0
  202. package/dist/custom-auth-path/custom_auth/core/error/HttpErrorCodes.d.ts +3 -0
  203. package/dist/custom-auth-path/custom_auth/core/error/HttpErrorCodes.d.ts.map +1 -0
  204. package/dist/custom-auth-path/custom_auth/core/error/HttpErrorCodes.mjs +11 -0
  205. package/dist/custom-auth-path/custom_auth/core/error/HttpErrorCodes.mjs.map +1 -0
  206. package/dist/custom-auth-path/custom_auth/core/error/InvalidArgumentError.d.ts +5 -0
  207. package/dist/custom-auth-path/custom_auth/core/error/InvalidArgumentError.d.ts.map +1 -0
  208. package/dist/custom-auth-path/custom_auth/core/error/InvalidArgumentError.mjs +18 -0
  209. package/dist/custom-auth-path/custom_auth/core/error/InvalidArgumentError.mjs.map +1 -0
  210. package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationError.d.ts +5 -0
  211. package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationError.d.ts.map +1 -0
  212. package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationError.mjs +17 -0
  213. package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationError.mjs.map +1 -0
  214. package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts +4 -0
  215. package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts.map +1 -0
  216. package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationErrorCodes.mjs +12 -0
  217. package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationErrorCodes.mjs.map +1 -0
  218. package/dist/custom-auth-path/custom_auth/core/error/MethodNotImplementedError.d.ts +5 -0
  219. package/dist/custom-auth-path/custom_auth/core/error/MethodNotImplementedError.d.ts.map +1 -0
  220. package/dist/custom-auth-path/custom_auth/core/error/MethodNotImplementedError.mjs +18 -0
  221. package/dist/custom-auth-path/custom_auth/core/error/MethodNotImplementedError.mjs.map +1 -0
  222. package/dist/custom-auth-path/custom_auth/core/error/MsalCustomAuthError.d.ts +6 -0
  223. package/dist/custom-auth-path/custom_auth/core/error/MsalCustomAuthError.d.ts.map +1 -0
  224. package/dist/custom-auth-path/custom_auth/core/error/MsalCustomAuthError.mjs +18 -0
  225. package/dist/custom-auth-path/custom_auth/core/error/MsalCustomAuthError.mjs.map +1 -0
  226. package/dist/custom-auth-path/custom_auth/core/error/NoCachedAccountFoundError.d.ts +5 -0
  227. package/dist/custom-auth-path/custom_auth/core/error/NoCachedAccountFoundError.d.ts.map +1 -0
  228. package/dist/custom-auth-path/custom_auth/core/error/NoCachedAccountFoundError.mjs +17 -0
  229. package/dist/custom-auth-path/custom_auth/core/error/NoCachedAccountFoundError.mjs.map +1 -0
  230. package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlError.d.ts +5 -0
  231. package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlError.d.ts.map +1 -0
  232. package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlError.mjs +17 -0
  233. package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlError.mjs.map +1 -0
  234. package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlErrorCodes.d.ts +2 -0
  235. package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlErrorCodes.d.ts.map +1 -0
  236. package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlErrorCodes.mjs +10 -0
  237. package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlErrorCodes.mjs.map +1 -0
  238. package/dist/custom-auth-path/custom_auth/core/error/UnexpectedError.d.ts +5 -0
  239. package/dist/custom-auth-path/custom_auth/core/error/UnexpectedError.d.ts.map +1 -0
  240. package/dist/custom-auth-path/custom_auth/core/error/UnexpectedError.mjs +30 -0
  241. package/dist/custom-auth-path/custom_auth/core/error/UnexpectedError.mjs.map +1 -0
  242. package/dist/custom-auth-path/custom_auth/core/error/UnsupportedEnvironmentError.d.ts +5 -0
  243. package/dist/custom-auth-path/custom_auth/core/error/UnsupportedEnvironmentError.d.ts.map +1 -0
  244. package/dist/custom-auth-path/custom_auth/core/error/UnsupportedEnvironmentError.mjs +17 -0
  245. package/dist/custom-auth-path/custom_auth/core/error/UnsupportedEnvironmentError.mjs.map +1 -0
  246. package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeError.d.ts +5 -0
  247. package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeError.d.ts.map +1 -0
  248. package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeError.mjs +18 -0
  249. package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeError.mjs.map +1 -0
  250. package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts +2 -0
  251. package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts.map +1 -0
  252. package/dist/custom-auth-path/custom_auth/core/error/UserAlreadySignedInError.d.ts +5 -0
  253. package/dist/custom-auth-path/custom_auth/core/error/UserAlreadySignedInError.d.ts.map +1 -0
  254. package/dist/custom-auth-path/custom_auth/core/error/UserAlreadySignedInError.mjs +17 -0
  255. package/dist/custom-auth-path/custom_auth/core/error/UserAlreadySignedInError.mjs.map +1 -0
  256. package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts +24 -0
  257. package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +1 -0
  258. package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.mjs +47 -0
  259. package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.mjs.map +1 -0
  260. package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts +22 -0
  261. package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts.map +1 -0
  262. package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.mjs +25 -0
  263. package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.mjs.map +1 -0
  264. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts +14 -0
  265. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts.map +1 -0
  266. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs +86 -0
  267. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs.map +1 -0
  268. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts +12 -0
  269. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts.map +1 -0
  270. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs +20 -0
  271. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs.map +1 -0
  272. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +12 -0
  273. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +1 -0
  274. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.mjs +20 -0
  275. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.mjs.map +1 -0
  276. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts +9 -0
  277. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts.map +1 -0
  278. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts +31 -0
  279. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts.map +1 -0
  280. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs +87 -0
  281. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs.map +1 -0
  282. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +29 -0
  283. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +1 -0
  284. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs +113 -0
  285. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs.map +1 -0
  286. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts +20 -0
  287. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts.map +1 -0
  288. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs +71 -0
  289. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs.map +1 -0
  290. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts +22 -0
  291. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts.map +1 -0
  292. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.mjs +29 -0
  293. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.mjs.map +1 -0
  294. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts +29 -0
  295. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts.map +1 -0
  296. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +65 -0
  297. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +1 -0
  298. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +45 -0
  299. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +1 -0
  300. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +10 -0
  301. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +1 -0
  302. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.mjs +17 -0
  303. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.mjs.map +1 -0
  304. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts +9 -0
  305. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts.map +1 -0
  306. package/dist/custom-auth-path/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts +13 -0
  307. package/dist/custom-auth-path/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +1 -0
  308. package/dist/custom-auth-path/custom_auth/core/network_client/http_client/FetchHttpClient.mjs +54 -0
  309. package/dist/custom-auth-path/custom_auth/core/network_client/http_client/FetchHttpClient.mjs.map +1 -0
  310. package/dist/custom-auth-path/custom_auth/core/network_client/http_client/IHttpClient.d.ts +35 -0
  311. package/dist/custom-auth-path/custom_auth/core/network_client/http_client/IHttpClient.d.ts.map +1 -0
  312. package/dist/custom-auth-path/custom_auth/core/network_client/http_client/IHttpClient.mjs +15 -0
  313. package/dist/custom-auth-path/custom_auth/core/network_client/http_client/IHttpClient.mjs.map +1 -0
  314. package/dist/custom-auth-path/custom_auth/core/telemetry/PublicApiId.d.ts +21 -0
  315. package/dist/custom-auth-path/custom_auth/core/telemetry/PublicApiId.d.ts.map +1 -0
  316. package/dist/custom-auth-path/custom_auth/core/telemetry/PublicApiId.mjs +34 -0
  317. package/dist/custom-auth-path/custom_auth/core/telemetry/PublicApiId.mjs.map +1 -0
  318. package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.d.ts +3 -0
  319. package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.d.ts.map +1 -0
  320. package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.mjs +21 -0
  321. package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.mjs.map +1 -0
  322. package/dist/custom-auth-path/custom_auth/core/utils/UrlUtils.d.ts +3 -0
  323. package/dist/custom-auth-path/custom_auth/core/utils/UrlUtils.d.ts.map +1 -0
  324. package/dist/custom-auth-path/custom_auth/core/utils/UrlUtils.mjs +26 -0
  325. package/dist/custom-auth-path/custom_auth/core/utils/UrlUtils.mjs.map +1 -0
  326. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts +47 -0
  327. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +1 -0
  328. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs +122 -0
  329. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs.map +1 -0
  330. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts +32 -0
  331. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts.map +1 -0
  332. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/error_type/GetAccountError.mjs +47 -0
  333. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/error_type/GetAccountError.mjs.map +1 -0
  334. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts +37 -0
  335. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts.map +1 -0
  336. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.mjs +48 -0
  337. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.mjs.map +1 -0
  338. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts +36 -0
  339. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts.map +1 -0
  340. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccountResult.mjs +47 -0
  341. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccountResult.mjs.map +1 -0
  342. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts +35 -0
  343. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts.map +1 -0
  344. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/SignOutResult.mjs +47 -0
  345. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/SignOutResult.mjs.map +1 -0
  346. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts +12 -0
  347. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts.map +1 -0
  348. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccessTokenState.mjs +21 -0
  349. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccessTokenState.mjs.map +1 -0
  350. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts +12 -0
  351. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts.map +1 -0
  352. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccountState.mjs +21 -0
  353. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccountState.mjs.map +1 -0
  354. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/SignOutState.d.ts +12 -0
  355. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/SignOutState.d.ts.map +1 -0
  356. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/SignOutState.mjs +21 -0
  357. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/SignOutState.mjs.map +1 -0
  358. package/dist/custom-auth-path/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts +21 -0
  359. package/dist/custom-auth-path/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +1 -0
  360. package/dist/custom-auth-path/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.mjs +122 -0
  361. package/dist/custom-auth-path/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.mjs.map +1 -0
  362. package/dist/custom-auth-path/custom_auth/index.d.ts +69 -0
  363. package/dist/custom-auth-path/custom_auth/index.d.ts.map +1 -0
  364. package/dist/custom-auth-path/custom_auth/index.mjs +57 -0
  365. package/dist/custom-auth-path/custom_auth/index.mjs.map +1 -0
  366. package/dist/custom-auth-path/custom_auth/operating_context/CustomAuthOperatingContext.d.ts +13 -0
  367. package/dist/custom-auth-path/custom_auth/operating_context/CustomAuthOperatingContext.d.ts.map +1 -0
  368. package/dist/custom-auth-path/custom_auth/operating_context/CustomAuthOperatingContext.mjs +35 -0
  369. package/dist/custom-auth-path/custom_auth/operating_context/CustomAuthOperatingContext.mjs.map +1 -0
  370. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts +55 -0
  371. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts.map +1 -0
  372. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.mjs +88 -0
  373. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.mjs.map +1 -0
  374. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts +37 -0
  375. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts.map +1 -0
  376. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.mjs +51 -0
  377. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.mjs.map +1 -0
  378. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts +37 -0
  379. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts.map +1 -0
  380. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.mjs +48 -0
  381. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.mjs.map +1 -0
  382. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts +37 -0
  383. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts.map +1 -0
  384. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.mjs +48 -0
  385. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.mjs.map +1 -0
  386. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts +32 -0
  387. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts.map +1 -0
  388. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.mjs +43 -0
  389. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.mjs.map +1 -0
  390. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts +23 -0
  391. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts.map +1 -0
  392. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.mjs +94 -0
  393. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.mjs.map +1 -0
  394. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts +7 -0
  395. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts.map +1 -0
  396. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.mjs +16 -0
  397. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.mjs.map +1 -0
  398. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts +7 -0
  399. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts.map +1 -0
  400. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.mjs +16 -0
  401. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.mjs.map +1 -0
  402. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts +12 -0
  403. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts.map +1 -0
  404. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.mjs +54 -0
  405. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.mjs.map +1 -0
  406. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts +6 -0
  407. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts.map +1 -0
  408. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordState.mjs +25 -0
  409. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordState.mjs.map +1 -0
  410. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts +15 -0
  411. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts.map +1 -0
  412. package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts +33 -0
  413. package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +1 -0
  414. package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/ResetPasswordClient.mjs +155 -0
  415. package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/ResetPasswordClient.mjs.map +1 -0
  416. package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts +19 -0
  417. package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts.map +1 -0
  418. package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts +14 -0
  419. package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts.map +1 -0
  420. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/SignInScenario.d.ts +6 -0
  421. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/SignInScenario.d.ts.map +1 -0
  422. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/SignInScenario.mjs +13 -0
  423. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/SignInScenario.mjs.map +1 -0
  424. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +50 -0
  425. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +1 -0
  426. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs +76 -0
  427. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs.map +1 -0
  428. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts +37 -0
  429. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts.map +1 -0
  430. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.mjs +48 -0
  431. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.mjs.map +1 -0
  432. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts +54 -0
  433. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts.map +1 -0
  434. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResult.mjs +62 -0
  435. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResult.mjs.map +1 -0
  436. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts +25 -0
  437. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts.map +1 -0
  438. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.mjs +41 -0
  439. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.mjs.map +1 -0
  440. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCredentialResult.d.ts +21 -0
  441. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCredentialResult.d.ts.map +1 -0
  442. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCredentialResult.mjs +24 -0
  443. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCredentialResult.mjs.map +1 -0
  444. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts +20 -0
  445. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts.map +1 -0
  446. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.mjs +36 -0
  447. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.mjs.map +1 -0
  448. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts +29 -0
  449. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +1 -0
  450. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs +95 -0
  451. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs.map +1 -0
  452. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts +8 -0
  453. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts.map +1 -0
  454. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCompletedState.mjs +17 -0
  455. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCompletedState.mjs.map +1 -0
  456. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts +13 -0
  457. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +1 -0
  458. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs +46 -0
  459. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs.map +1 -0
  460. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts +7 -0
  461. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts.map +1 -0
  462. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInFailedState.mjs +16 -0
  463. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInFailedState.mjs.map +1 -0
  464. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts +17 -0
  465. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +1 -0
  466. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs +54 -0
  467. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs.map +1 -0
  468. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInState.d.ts +6 -0
  469. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInState.d.ts.map +1 -0
  470. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInState.mjs +26 -0
  471. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInState.mjs.map +1 -0
  472. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +20 -0
  473. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +1 -0
  474. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.d.ts +48 -0
  475. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +1 -0
  476. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.mjs +191 -0
  477. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.mjs.map +1 -0
  478. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +29 -0
  479. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +1 -0
  480. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +30 -0
  481. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +1 -0
  482. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/result/SignInActionResult.mjs +30 -0
  483. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/result/SignInActionResult.mjs.map +1 -0
  484. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts +87 -0
  485. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts.map +1 -0
  486. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/error_type/SignUpError.mjs +126 -0
  487. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/error_type/SignUpError.mjs.map +1 -0
  488. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts +37 -0
  489. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts.map +1 -0
  490. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.mjs +51 -0
  491. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.mjs.map +1 -0
  492. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts +53 -0
  493. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts.map +1 -0
  494. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResult.mjs +62 -0
  495. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResult.mjs.map +1 -0
  496. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts +37 -0
  497. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts.map +1 -0
  498. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.mjs +48 -0
  499. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.mjs.map +1 -0
  500. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts +53 -0
  501. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts.map +1 -0
  502. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.mjs +62 -0
  503. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.mjs.map +1 -0
  504. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts +45 -0
  505. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts.map +1 -0
  506. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.mjs +55 -0
  507. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.mjs.map +1 -0
  508. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts +21 -0
  509. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts.map +1 -0
  510. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.mjs +74 -0
  511. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.mjs.map +1 -0
  512. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts +28 -0
  513. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts.map +1 -0
  514. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.mjs +139 -0
  515. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.mjs.map +1 -0
  516. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts +7 -0
  517. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts.map +1 -0
  518. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.mjs +16 -0
  519. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.mjs.map +1 -0
  520. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts +7 -0
  521. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts.map +1 -0
  522. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpFailedState.mjs +16 -0
  523. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpFailedState.mjs.map +1 -0
  524. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts +12 -0
  525. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts.map +1 -0
  526. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.mjs +77 -0
  527. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.mjs.map +1 -0
  528. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts +6 -0
  529. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts.map +1 -0
  530. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpState.mjs +26 -0
  531. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpState.mjs.map +1 -0
  532. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts +20 -0
  533. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts.map +1 -0
  534. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/SignUpClient.d.ts +41 -0
  535. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +1 -0
  536. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/SignUpClient.mjs +241 -0
  537. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/SignUpClient.mjs.map +1 -0
  538. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts +26 -0
  539. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts.map +1 -0
  540. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts +34 -0
  541. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts.map +1 -0
  542. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/result/SignUpActionResult.mjs +37 -0
  543. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/result/SignUpActionResult.mjs.map +1 -0
  544. package/dist/custom-auth-path/encode/Base64Decode.d.ts +15 -0
  545. package/dist/custom-auth-path/encode/Base64Decode.d.ts.map +1 -0
  546. package/dist/custom-auth-path/encode/Base64Decode.mjs +44 -0
  547. package/dist/custom-auth-path/encode/Base64Decode.mjs.map +1 -0
  548. package/dist/custom-auth-path/encode/Base64Encode.d.ts +20 -0
  549. package/dist/custom-auth-path/encode/Base64Encode.d.ts.map +1 -0
  550. package/dist/custom-auth-path/encode/Base64Encode.mjs +48 -0
  551. package/dist/custom-auth-path/encode/Base64Encode.mjs.map +1 -0
  552. package/dist/custom-auth-path/error/BrowserAuthError.d.ts +257 -0
  553. package/dist/custom-auth-path/error/BrowserAuthError.d.ts.map +1 -0
  554. package/dist/custom-auth-path/error/BrowserAuthError.mjs +82 -0
  555. package/dist/custom-auth-path/error/BrowserAuthError.mjs.map +1 -0
  556. package/dist/custom-auth-path/error/BrowserAuthErrorCodes.d.ts +52 -0
  557. package/dist/custom-auth-path/error/BrowserAuthErrorCodes.d.ts.map +1 -0
  558. package/dist/custom-auth-path/error/BrowserAuthErrorCodes.mjs +60 -0
  559. package/dist/custom-auth-path/error/BrowserAuthErrorCodes.mjs.map +1 -0
  560. package/dist/custom-auth-path/error/BrowserConfigurationAuthError.d.ts +34 -0
  561. package/dist/custom-auth-path/error/BrowserConfigurationAuthError.d.ts.map +1 -0
  562. package/dist/custom-auth-path/error/BrowserConfigurationAuthError.mjs +30 -0
  563. package/dist/custom-auth-path/error/BrowserConfigurationAuthError.mjs.map +1 -0
  564. package/dist/custom-auth-path/error/BrowserConfigurationAuthErrorCodes.d.ts +4 -0
  565. package/dist/custom-auth-path/error/BrowserConfigurationAuthErrorCodes.d.ts.map +1 -0
  566. package/dist/custom-auth-path/error/BrowserConfigurationAuthErrorCodes.mjs +12 -0
  567. package/dist/custom-auth-path/error/BrowserConfigurationAuthErrorCodes.mjs.map +1 -0
  568. package/dist/custom-auth-path/error/NativeAuthError.d.ts +30 -0
  569. package/dist/custom-auth-path/error/NativeAuthError.d.ts.map +1 -0
  570. package/dist/custom-auth-path/error/NativeAuthError.mjs +73 -0
  571. package/dist/custom-auth-path/error/NativeAuthError.mjs.map +1 -0
  572. package/dist/custom-auth-path/error/NativeAuthErrorCodes.d.ts +3 -0
  573. package/dist/custom-auth-path/error/NativeAuthErrorCodes.d.ts.map +1 -0
  574. package/dist/custom-auth-path/error/NativeAuthErrorCodes.mjs +11 -0
  575. package/dist/custom-auth-path/error/NativeAuthErrorCodes.mjs.map +1 -0
  576. package/dist/custom-auth-path/error/NestedAppAuthError.d.ts +15 -0
  577. package/dist/custom-auth-path/error/NestedAppAuthError.d.ts.map +1 -0
  578. package/dist/custom-auth-path/event/EventHandler.d.ts +49 -0
  579. package/dist/custom-auth-path/event/EventHandler.d.ts.map +1 -0
  580. package/dist/custom-auth-path/event/EventHandler.mjs +112 -0
  581. package/dist/custom-auth-path/event/EventHandler.mjs.map +1 -0
  582. package/dist/custom-auth-path/event/EventMessage.d.ts +40 -0
  583. package/dist/custom-auth-path/event/EventMessage.d.ts.map +1 -0
  584. package/dist/custom-auth-path/event/EventType.d.ts +31 -0
  585. package/dist/custom-auth-path/event/EventType.d.ts.map +1 -0
  586. package/dist/custom-auth-path/event/EventType.mjs +38 -0
  587. package/dist/custom-auth-path/event/EventType.mjs.map +1 -0
  588. package/dist/custom-auth-path/index.d.ts +45 -0
  589. package/dist/custom-auth-path/index.d.ts.map +1 -0
  590. package/dist/custom-auth-path/interaction_client/BaseInteractionClient.d.ts +59 -0
  591. package/dist/custom-auth-path/interaction_client/BaseInteractionClient.d.ts.map +1 -0
  592. package/dist/custom-auth-path/interaction_client/BaseInteractionClient.mjs +128 -0
  593. package/dist/custom-auth-path/interaction_client/BaseInteractionClient.mjs.map +1 -0
  594. package/dist/custom-auth-path/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +5 -0
  595. package/dist/custom-auth-path/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +1 -0
  596. package/dist/custom-auth-path/interaction_client/HybridSpaAuthorizationCodeClient.mjs +17 -0
  597. package/dist/custom-auth-path/interaction_client/HybridSpaAuthorizationCodeClient.mjs.map +1 -0
  598. package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.d.ts +149 -0
  599. package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.d.ts.map +1 -0
  600. package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.mjs +630 -0
  601. package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.mjs.map +1 -0
  602. package/dist/custom-auth-path/interaction_client/PopupClient.d.ts +120 -0
  603. package/dist/custom-auth-path/interaction_client/PopupClient.d.ts.map +1 -0
  604. package/dist/custom-auth-path/interaction_client/PopupClient.mjs +469 -0
  605. package/dist/custom-auth-path/interaction_client/PopupClient.mjs.map +1 -0
  606. package/dist/custom-auth-path/interaction_client/RedirectClient.d.ts +68 -0
  607. package/dist/custom-auth-path/interaction_client/RedirectClient.d.ts.map +1 -0
  608. package/dist/custom-auth-path/interaction_client/RedirectClient.mjs +427 -0
  609. package/dist/custom-auth-path/interaction_client/RedirectClient.mjs.map +1 -0
  610. package/dist/custom-auth-path/interaction_client/SilentAuthCodeClient.d.ts +24 -0
  611. package/dist/custom-auth-path/interaction_client/SilentAuthCodeClient.d.ts.map +1 -0
  612. package/dist/custom-auth-path/interaction_client/SilentAuthCodeClient.mjs +76 -0
  613. package/dist/custom-auth-path/interaction_client/SilentAuthCodeClient.mjs.map +1 -0
  614. package/dist/custom-auth-path/interaction_client/SilentCacheClient.d.ts +17 -0
  615. package/dist/custom-auth-path/interaction_client/SilentCacheClient.d.ts.map +1 -0
  616. package/dist/custom-auth-path/interaction_client/SilentCacheClient.mjs +58 -0
  617. package/dist/custom-auth-path/interaction_client/SilentCacheClient.mjs.map +1 -0
  618. package/dist/custom-auth-path/interaction_client/SilentIframeClient.d.ts +43 -0
  619. package/dist/custom-auth-path/interaction_client/SilentIframeClient.d.ts.map +1 -0
  620. package/dist/custom-auth-path/interaction_client/SilentIframeClient.mjs +154 -0
  621. package/dist/custom-auth-path/interaction_client/SilentIframeClient.mjs.map +1 -0
  622. package/dist/custom-auth-path/interaction_client/SilentRefreshClient.d.ts +32 -0
  623. package/dist/custom-auth-path/interaction_client/SilentRefreshClient.d.ts.map +1 -0
  624. package/dist/custom-auth-path/interaction_client/SilentRefreshClient.mjs +75 -0
  625. package/dist/custom-auth-path/interaction_client/SilentRefreshClient.mjs.map +1 -0
  626. package/dist/custom-auth-path/interaction_client/StandardInteractionClient.d.ts +64 -0
  627. package/dist/custom-auth-path/interaction_client/StandardInteractionClient.d.ts.map +1 -0
  628. package/dist/custom-auth-path/interaction_client/StandardInteractionClient.mjs +209 -0
  629. package/dist/custom-auth-path/interaction_client/StandardInteractionClient.mjs.map +1 -0
  630. package/dist/custom-auth-path/interaction_handler/InteractionHandler.d.ts +33 -0
  631. package/dist/custom-auth-path/interaction_handler/InteractionHandler.d.ts.map +1 -0
  632. package/dist/custom-auth-path/interaction_handler/InteractionHandler.mjs +102 -0
  633. package/dist/custom-auth-path/interaction_handler/InteractionHandler.mjs.map +1 -0
  634. package/dist/custom-auth-path/interaction_handler/SilentHandler.d.ts +16 -0
  635. package/dist/custom-auth-path/interaction_handler/SilentHandler.d.ts.map +1 -0
  636. package/dist/custom-auth-path/interaction_handler/SilentHandler.mjs +154 -0
  637. package/dist/custom-auth-path/interaction_handler/SilentHandler.mjs.map +1 -0
  638. package/dist/custom-auth-path/naa/AccountInfo.d.ts +12 -0
  639. package/dist/custom-auth-path/naa/AccountInfo.d.ts.map +1 -0
  640. package/dist/custom-auth-path/naa/AuthBridge.d.ts +9 -0
  641. package/dist/custom-auth-path/naa/AuthBridge.d.ts.map +1 -0
  642. package/dist/custom-auth-path/naa/AuthResult.d.ts +7 -0
  643. package/dist/custom-auth-path/naa/AuthResult.d.ts.map +1 -0
  644. package/dist/custom-auth-path/naa/BridgeAccountContext.d.ts +13 -0
  645. package/dist/custom-auth-path/naa/BridgeAccountContext.d.ts.map +1 -0
  646. package/dist/custom-auth-path/naa/BridgeCapabilities.d.ts +4 -0
  647. package/dist/custom-auth-path/naa/BridgeCapabilities.d.ts.map +1 -0
  648. package/dist/custom-auth-path/naa/BridgeError.d.ts +10 -0
  649. package/dist/custom-auth-path/naa/BridgeError.d.ts.map +1 -0
  650. package/dist/custom-auth-path/naa/BridgeProxy.d.ts +69 -0
  651. package/dist/custom-auth-path/naa/BridgeProxy.d.ts.map +1 -0
  652. package/dist/custom-auth-path/naa/BridgeRequest.d.ts +8 -0
  653. package/dist/custom-auth-path/naa/BridgeRequest.d.ts.map +1 -0
  654. package/dist/custom-auth-path/naa/BridgeRequestEnvelope.d.ts +13 -0
  655. package/dist/custom-auth-path/naa/BridgeRequestEnvelope.d.ts.map +1 -0
  656. package/dist/custom-auth-path/naa/BridgeResponseEnvelope.d.ts +14 -0
  657. package/dist/custom-auth-path/naa/BridgeResponseEnvelope.d.ts.map +1 -0
  658. package/dist/custom-auth-path/naa/BridgeStatusCode.d.ts +12 -0
  659. package/dist/custom-auth-path/naa/BridgeStatusCode.d.ts.map +1 -0
  660. package/dist/custom-auth-path/naa/IBridgeProxy.d.ts +11 -0
  661. package/dist/custom-auth-path/naa/IBridgeProxy.d.ts.map +1 -0
  662. package/dist/custom-auth-path/naa/InitContext.d.ts +9 -0
  663. package/dist/custom-auth-path/naa/InitContext.d.ts.map +1 -0
  664. package/dist/custom-auth-path/naa/TokenRequest.d.ts +19 -0
  665. package/dist/custom-auth-path/naa/TokenRequest.d.ts.map +1 -0
  666. package/dist/custom-auth-path/naa/TokenResponse.d.ts +14 -0
  667. package/dist/custom-auth-path/naa/TokenResponse.d.ts.map +1 -0
  668. package/dist/custom-auth-path/naa/mapping/NestedAppAuthAdapter.d.ts +36 -0
  669. package/dist/custom-auth-path/naa/mapping/NestedAppAuthAdapter.d.ts.map +1 -0
  670. package/dist/custom-auth-path/navigation/INavigationClient.d.ts +17 -0
  671. package/dist/custom-auth-path/navigation/INavigationClient.d.ts.map +1 -0
  672. package/dist/custom-auth-path/navigation/NavigationClient.d.ts +23 -0
  673. package/dist/custom-auth-path/navigation/NavigationClient.d.ts.map +1 -0
  674. package/dist/custom-auth-path/navigation/NavigationClient.mjs +48 -0
  675. package/dist/custom-auth-path/navigation/NavigationClient.mjs.map +1 -0
  676. package/dist/custom-auth-path/navigation/NavigationOptions.d.ts +13 -0
  677. package/dist/custom-auth-path/navigation/NavigationOptions.d.ts.map +1 -0
  678. package/dist/custom-auth-path/network/FetchClient.d.ts +21 -0
  679. package/dist/custom-auth-path/network/FetchClient.d.ts.map +1 -0
  680. package/dist/custom-auth-path/network/FetchClient.mjs +128 -0
  681. package/dist/custom-auth-path/network/FetchClient.mjs.map +1 -0
  682. package/dist/custom-auth-path/operatingcontext/BaseOperatingContext.d.ts +42 -0
  683. package/dist/custom-auth-path/operatingcontext/BaseOperatingContext.d.ts.map +1 -0
  684. package/dist/custom-auth-path/operatingcontext/BaseOperatingContext.mjs +104 -0
  685. package/dist/custom-auth-path/operatingcontext/BaseOperatingContext.mjs.map +1 -0
  686. package/dist/custom-auth-path/operatingcontext/NestedAppOperatingContext.d.ts +40 -0
  687. package/dist/custom-auth-path/operatingcontext/NestedAppOperatingContext.d.ts.map +1 -0
  688. package/dist/custom-auth-path/operatingcontext/StandardOperatingContext.d.ts +26 -0
  689. package/dist/custom-auth-path/operatingcontext/StandardOperatingContext.d.ts.map +1 -0
  690. package/dist/custom-auth-path/operatingcontext/StandardOperatingContext.mjs +50 -0
  691. package/dist/custom-auth-path/operatingcontext/StandardOperatingContext.mjs.map +1 -0
  692. package/dist/custom-auth-path/operatingcontext/UnknownOperatingContext.d.ts +26 -0
  693. package/dist/custom-auth-path/operatingcontext/UnknownOperatingContext.d.ts.map +1 -0
  694. package/dist/custom-auth-path/packageMetadata.d.ts +3 -0
  695. package/dist/custom-auth-path/packageMetadata.d.ts.map +1 -0
  696. package/dist/custom-auth-path/packageMetadata.mjs +8 -0
  697. package/dist/custom-auth-path/packageMetadata.mjs.map +1 -0
  698. package/dist/custom-auth-path/protocol/Authorize.d.ts +65 -0
  699. package/dist/custom-auth-path/protocol/Authorize.d.ts.map +1 -0
  700. package/dist/custom-auth-path/protocol/Authorize.mjs +218 -0
  701. package/dist/custom-auth-path/protocol/Authorize.mjs.map +1 -0
  702. package/dist/custom-auth-path/request/AuthorizationCodeRequest.d.ts +9 -0
  703. package/dist/custom-auth-path/request/AuthorizationCodeRequest.d.ts.map +1 -0
  704. package/dist/custom-auth-path/request/AuthorizationUrlRequest.d.ts +7 -0
  705. package/dist/custom-auth-path/request/AuthorizationUrlRequest.d.ts.map +1 -0
  706. package/dist/custom-auth-path/request/ClearCacheRequest.d.ts +11 -0
  707. package/dist/custom-auth-path/request/ClearCacheRequest.d.ts.map +1 -0
  708. package/dist/custom-auth-path/request/EndSessionPopupRequest.d.ts +21 -0
  709. package/dist/custom-auth-path/request/EndSessionPopupRequest.d.ts.map +1 -0
  710. package/dist/custom-auth-path/request/EndSessionRequest.d.ts +16 -0
  711. package/dist/custom-auth-path/request/EndSessionRequest.d.ts.map +1 -0
  712. package/dist/custom-auth-path/request/InitializeApplicationRequest.d.ts +9 -0
  713. package/dist/custom-auth-path/request/InitializeApplicationRequest.d.ts.map +1 -0
  714. package/dist/custom-auth-path/request/PopupRequest.d.ts +36 -0
  715. package/dist/custom-auth-path/request/PopupRequest.d.ts.map +1 -0
  716. package/dist/custom-auth-path/request/PopupWindowAttributes.d.ts +16 -0
  717. package/dist/custom-auth-path/request/PopupWindowAttributes.d.ts.map +1 -0
  718. package/dist/custom-auth-path/request/RedirectRequest.d.ts +40 -0
  719. package/dist/custom-auth-path/request/RedirectRequest.d.ts.map +1 -0
  720. package/dist/custom-auth-path/request/RequestHelpers.d.ts +14 -0
  721. package/dist/custom-auth-path/request/RequestHelpers.d.ts.map +1 -0
  722. package/dist/custom-auth-path/request/RequestHelpers.mjs +61 -0
  723. package/dist/custom-auth-path/request/RequestHelpers.mjs.map +1 -0
  724. package/dist/custom-auth-path/request/SilentRequest.d.ts +33 -0
  725. package/dist/custom-auth-path/request/SilentRequest.d.ts.map +1 -0
  726. package/dist/custom-auth-path/request/SsoSilentRequest.d.ts +28 -0
  727. package/dist/custom-auth-path/request/SsoSilentRequest.d.ts.map +1 -0
  728. package/dist/custom-auth-path/response/AuthenticationResult.d.ts +5 -0
  729. package/dist/custom-auth-path/response/AuthenticationResult.d.ts.map +1 -0
  730. package/dist/custom-auth-path/response/ResponseHandler.d.ts +8 -0
  731. package/dist/custom-auth-path/response/ResponseHandler.d.ts.map +1 -0
  732. package/dist/custom-auth-path/response/ResponseHandler.mjs +46 -0
  733. package/dist/custom-auth-path/response/ResponseHandler.mjs.map +1 -0
  734. package/dist/custom-auth-path/telemetry/BrowserPerformanceClient.d.ts +35 -0
  735. package/dist/custom-auth-path/telemetry/BrowserPerformanceClient.d.ts.map +1 -0
  736. package/dist/custom-auth-path/telemetry/BrowserPerformanceMeasurement.d.ts +22 -0
  737. package/dist/custom-auth-path/telemetry/BrowserPerformanceMeasurement.d.ts.map +1 -0
  738. package/dist/custom-auth-path/utils/BrowserConstants.d.ts +184 -0
  739. package/dist/custom-auth-path/utils/BrowserConstants.d.ts.map +1 -0
  740. package/dist/custom-auth-path/utils/BrowserConstants.mjs +177 -0
  741. package/dist/custom-auth-path/utils/BrowserConstants.mjs.map +1 -0
  742. package/dist/custom-auth-path/utils/BrowserProtocolUtils.d.ts +12 -0
  743. package/dist/custom-auth-path/utils/BrowserProtocolUtils.d.ts.map +1 -0
  744. package/dist/custom-auth-path/utils/BrowserProtocolUtils.mjs +28 -0
  745. package/dist/custom-auth-path/utils/BrowserProtocolUtils.mjs.map +1 -0
  746. package/dist/custom-auth-path/utils/BrowserUtils.d.ts +76 -0
  747. package/dist/custom-auth-path/utils/BrowserUtils.d.ts.map +1 -0
  748. package/dist/custom-auth-path/utils/BrowserUtils.mjs +173 -0
  749. package/dist/custom-auth-path/utils/BrowserUtils.mjs.map +1 -0
  750. package/dist/custom-auth-path/utils/MsalFrameStatsUtils.d.ts +3 -0
  751. package/dist/custom-auth-path/utils/MsalFrameStatsUtils.d.ts.map +1 -0
  752. package/dist/custom-auth-path/utils/MsalFrameStatsUtils.mjs +23 -0
  753. package/dist/custom-auth-path/utils/MsalFrameStatsUtils.mjs.map +1 -0
  754. package/dist/custom_auth/CustomAuthActionInputs.d.ts +26 -0
  755. package/dist/custom_auth/CustomAuthActionInputs.d.ts.map +1 -0
  756. package/dist/custom_auth/CustomAuthConstants.d.ts +33 -0
  757. package/dist/custom_auth/CustomAuthConstants.d.ts.map +1 -0
  758. package/dist/custom_auth/CustomAuthPublicClientApplication.d.ts +55 -0
  759. package/dist/custom_auth/CustomAuthPublicClientApplication.d.ts.map +1 -0
  760. package/dist/custom_auth/ICustomAuthPublicClientApplication.d.ts +33 -0
  761. package/dist/custom_auth/ICustomAuthPublicClientApplication.d.ts.map +1 -0
  762. package/dist/custom_auth/UserAccountAttributes.d.ts +12 -0
  763. package/dist/custom_auth/UserAccountAttributes.d.ts.map +1 -0
  764. package/dist/custom_auth/configuration/CustomAuthConfiguration.d.ts +12 -0
  765. package/dist/custom_auth/configuration/CustomAuthConfiguration.d.ts.map +1 -0
  766. package/dist/custom_auth/controller/CustomAuthStandardController.d.ts +25 -0
  767. package/dist/custom_auth/controller/CustomAuthStandardController.d.ts.map +1 -0
  768. package/dist/custom_auth/controller/ICustomAuthStandardController.d.ts +13 -0
  769. package/dist/custom_auth/controller/ICustomAuthStandardController.d.ts.map +1 -0
  770. package/dist/custom_auth/core/CustomAuthAuthority.d.ts +29 -0
  771. package/dist/custom_auth/core/CustomAuthAuthority.d.ts.map +1 -0
  772. package/dist/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +28 -0
  773. package/dist/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +1 -0
  774. package/dist/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts +11 -0
  775. package/dist/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts.map +1 -0
  776. package/dist/custom_auth/core/auth_flow/AuthFlowState.d.ts +27 -0
  777. package/dist/custom_auth/core/auth_flow/AuthFlowState.d.ts.map +1 -0
  778. package/dist/custom_auth/core/error/CustomAuthApiError.d.ts +19 -0
  779. package/dist/custom_auth/core/error/CustomAuthApiError.d.ts.map +1 -0
  780. package/dist/custom_auth/core/error/CustomAuthError.d.ts +9 -0
  781. package/dist/custom_auth/core/error/CustomAuthError.d.ts.map +1 -0
  782. package/dist/custom_auth/core/error/HttpError.d.ts +5 -0
  783. package/dist/custom_auth/core/error/HttpError.d.ts.map +1 -0
  784. package/dist/custom_auth/core/error/HttpErrorCodes.d.ts +3 -0
  785. package/dist/custom_auth/core/error/HttpErrorCodes.d.ts.map +1 -0
  786. package/dist/custom_auth/core/error/InvalidArgumentError.d.ts +5 -0
  787. package/dist/custom_auth/core/error/InvalidArgumentError.d.ts.map +1 -0
  788. package/dist/custom_auth/core/error/InvalidConfigurationError.d.ts +5 -0
  789. package/dist/custom_auth/core/error/InvalidConfigurationError.d.ts.map +1 -0
  790. package/dist/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts +4 -0
  791. package/dist/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts.map +1 -0
  792. package/dist/custom_auth/core/error/MethodNotImplementedError.d.ts +5 -0
  793. package/dist/custom_auth/core/error/MethodNotImplementedError.d.ts.map +1 -0
  794. package/dist/custom_auth/core/error/MsalCustomAuthError.d.ts +6 -0
  795. package/dist/custom_auth/core/error/MsalCustomAuthError.d.ts.map +1 -0
  796. package/dist/custom_auth/core/error/NoCachedAccountFoundError.d.ts +5 -0
  797. package/dist/custom_auth/core/error/NoCachedAccountFoundError.d.ts.map +1 -0
  798. package/dist/custom_auth/core/error/ParsedUrlError.d.ts +5 -0
  799. package/dist/custom_auth/core/error/ParsedUrlError.d.ts.map +1 -0
  800. package/dist/custom_auth/core/error/ParsedUrlErrorCodes.d.ts +2 -0
  801. package/dist/custom_auth/core/error/ParsedUrlErrorCodes.d.ts.map +1 -0
  802. package/dist/custom_auth/core/error/UnexpectedError.d.ts +5 -0
  803. package/dist/custom_auth/core/error/UnexpectedError.d.ts.map +1 -0
  804. package/dist/custom_auth/core/error/UnsupportedEnvironmentError.d.ts +5 -0
  805. package/dist/custom_auth/core/error/UnsupportedEnvironmentError.d.ts.map +1 -0
  806. package/dist/custom_auth/core/error/UserAccountAttributeError.d.ts +5 -0
  807. package/dist/custom_auth/core/error/UserAccountAttributeError.d.ts.map +1 -0
  808. package/dist/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts +2 -0
  809. package/dist/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts.map +1 -0
  810. package/dist/custom_auth/core/error/UserAlreadySignedInError.d.ts +5 -0
  811. package/dist/custom_auth/core/error/UserAlreadySignedInError.d.ts.map +1 -0
  812. package/dist/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts +24 -0
  813. package/dist/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +1 -0
  814. package/dist/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts +22 -0
  815. package/dist/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts.map +1 -0
  816. package/dist/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts +14 -0
  817. package/dist/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts.map +1 -0
  818. package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts +12 -0
  819. package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts.map +1 -0
  820. package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +12 -0
  821. package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +1 -0
  822. package/dist/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts +9 -0
  823. package/dist/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts.map +1 -0
  824. package/dist/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts +31 -0
  825. package/dist/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts.map +1 -0
  826. package/dist/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +29 -0
  827. package/dist/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +1 -0
  828. package/dist/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts +20 -0
  829. package/dist/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts.map +1 -0
  830. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts +22 -0
  831. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts.map +1 -0
  832. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts +29 -0
  833. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts.map +1 -0
  834. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +65 -0
  835. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +1 -0
  836. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +45 -0
  837. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +1 -0
  838. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +10 -0
  839. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +1 -0
  840. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts +9 -0
  841. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts.map +1 -0
  842. package/dist/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts +13 -0
  843. package/dist/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +1 -0
  844. package/dist/custom_auth/core/network_client/http_client/IHttpClient.d.ts +35 -0
  845. package/dist/custom_auth/core/network_client/http_client/IHttpClient.d.ts.map +1 -0
  846. package/dist/custom_auth/core/telemetry/PublicApiId.d.ts +21 -0
  847. package/dist/custom_auth/core/telemetry/PublicApiId.d.ts.map +1 -0
  848. package/dist/custom_auth/core/utils/ArgumentValidator.d.ts +3 -0
  849. package/dist/custom_auth/core/utils/ArgumentValidator.d.ts.map +1 -0
  850. package/dist/custom_auth/core/utils/UrlUtils.d.ts +3 -0
  851. package/dist/custom_auth/core/utils/UrlUtils.d.ts.map +1 -0
  852. package/dist/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts +47 -0
  853. package/dist/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +1 -0
  854. package/dist/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts +32 -0
  855. package/dist/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts.map +1 -0
  856. package/dist/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts +37 -0
  857. package/dist/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts.map +1 -0
  858. package/dist/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts +36 -0
  859. package/dist/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts.map +1 -0
  860. package/dist/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts +35 -0
  861. package/dist/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts.map +1 -0
  862. package/dist/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts +12 -0
  863. package/dist/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts.map +1 -0
  864. package/dist/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts +12 -0
  865. package/dist/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts.map +1 -0
  866. package/dist/custom_auth/get_account/auth_flow/state/SignOutState.d.ts +12 -0
  867. package/dist/custom_auth/get_account/auth_flow/state/SignOutState.d.ts.map +1 -0
  868. package/dist/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts +21 -0
  869. package/dist/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +1 -0
  870. package/dist/custom_auth/index.d.ts +69 -0
  871. package/dist/custom_auth/index.d.ts.map +1 -0
  872. package/dist/custom_auth/operating_context/CustomAuthOperatingContext.d.ts +13 -0
  873. package/dist/custom_auth/operating_context/CustomAuthOperatingContext.d.ts.map +1 -0
  874. package/dist/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts +55 -0
  875. package/dist/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts.map +1 -0
  876. package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts +37 -0
  877. package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts.map +1 -0
  878. package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts +37 -0
  879. package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts.map +1 -0
  880. package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts +37 -0
  881. package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts.map +1 -0
  882. package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts +32 -0
  883. package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts.map +1 -0
  884. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts +23 -0
  885. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts.map +1 -0
  886. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts +7 -0
  887. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts.map +1 -0
  888. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts +7 -0
  889. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts.map +1 -0
  890. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts +12 -0
  891. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts.map +1 -0
  892. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts +6 -0
  893. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts.map +1 -0
  894. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts +15 -0
  895. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts.map +1 -0
  896. package/dist/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts +33 -0
  897. package/dist/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +1 -0
  898. package/dist/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts +19 -0
  899. package/dist/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts.map +1 -0
  900. package/dist/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts +14 -0
  901. package/dist/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts.map +1 -0
  902. package/dist/custom_auth/sign_in/auth_flow/SignInScenario.d.ts +6 -0
  903. package/dist/custom_auth/sign_in/auth_flow/SignInScenario.d.ts.map +1 -0
  904. package/dist/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +50 -0
  905. package/dist/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +1 -0
  906. package/dist/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts +37 -0
  907. package/dist/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts.map +1 -0
  908. package/dist/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts +54 -0
  909. package/dist/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts.map +1 -0
  910. package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts +25 -0
  911. package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts.map +1 -0
  912. package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitCredentialResult.d.ts +21 -0
  913. package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitCredentialResult.d.ts.map +1 -0
  914. package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts +20 -0
  915. package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts.map +1 -0
  916. package/dist/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts +29 -0
  917. package/dist/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +1 -0
  918. package/dist/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts +8 -0
  919. package/dist/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts.map +1 -0
  920. package/dist/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts +13 -0
  921. package/dist/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +1 -0
  922. package/dist/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts +7 -0
  923. package/dist/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts.map +1 -0
  924. package/dist/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts +17 -0
  925. package/dist/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +1 -0
  926. package/dist/custom_auth/sign_in/auth_flow/state/SignInState.d.ts +6 -0
  927. package/dist/custom_auth/sign_in/auth_flow/state/SignInState.d.ts.map +1 -0
  928. package/dist/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +20 -0
  929. package/dist/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +1 -0
  930. package/dist/custom_auth/sign_in/interaction_client/SignInClient.d.ts +48 -0
  931. package/dist/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +1 -0
  932. package/dist/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +29 -0
  933. package/dist/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +1 -0
  934. package/dist/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +30 -0
  935. package/dist/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +1 -0
  936. package/dist/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts +87 -0
  937. package/dist/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts.map +1 -0
  938. package/dist/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts +37 -0
  939. package/dist/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts.map +1 -0
  940. package/dist/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts +53 -0
  941. package/dist/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts.map +1 -0
  942. package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts +37 -0
  943. package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts.map +1 -0
  944. package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts +53 -0
  945. package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts.map +1 -0
  946. package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts +45 -0
  947. package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts.map +1 -0
  948. package/dist/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts +21 -0
  949. package/dist/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts.map +1 -0
  950. package/dist/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts +28 -0
  951. package/dist/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts.map +1 -0
  952. package/dist/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts +7 -0
  953. package/dist/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts.map +1 -0
  954. package/dist/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts +7 -0
  955. package/dist/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts.map +1 -0
  956. package/dist/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts +12 -0
  957. package/dist/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts.map +1 -0
  958. package/dist/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts +6 -0
  959. package/dist/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts.map +1 -0
  960. package/dist/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts +20 -0
  961. package/dist/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts.map +1 -0
  962. package/dist/custom_auth/sign_up/interaction_client/SignUpClient.d.ts +41 -0
  963. package/dist/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +1 -0
  964. package/dist/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts +26 -0
  965. package/dist/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts.map +1 -0
  966. package/dist/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts +34 -0
  967. package/dist/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts.map +1 -0
  968. package/dist/encode/Base64Decode.mjs +1 -1
  969. package/dist/encode/Base64Encode.mjs +1 -1
  970. package/dist/error/BrowserAuthError.d.ts +1 -0
  971. package/dist/error/BrowserAuthError.d.ts.map +1 -1
  972. package/dist/error/BrowserAuthError.mjs +3 -2
  973. package/dist/error/BrowserAuthError.mjs.map +1 -1
  974. package/dist/error/BrowserAuthErrorCodes.d.ts +1 -0
  975. package/dist/error/BrowserAuthErrorCodes.d.ts.map +1 -1
  976. package/dist/error/BrowserAuthErrorCodes.mjs +4 -3
  977. package/dist/error/BrowserAuthErrorCodes.mjs.map +1 -1
  978. package/dist/error/BrowserConfigurationAuthError.mjs +2 -2
  979. package/dist/error/BrowserConfigurationAuthErrorCodes.mjs +1 -1
  980. package/dist/error/NativeAuthError.mjs +1 -1
  981. package/dist/error/NativeAuthErrorCodes.mjs +1 -1
  982. package/dist/error/NestedAppAuthError.mjs +1 -1
  983. package/dist/event/EventHandler.mjs +1 -1
  984. package/dist/event/EventMessage.mjs +1 -1
  985. package/dist/event/EventType.mjs +1 -1
  986. package/dist/index.mjs +1 -1
  987. package/dist/interaction_client/BaseInteractionClient.d.ts +1 -1
  988. package/dist/interaction_client/BaseInteractionClient.d.ts.map +1 -1
  989. package/dist/interaction_client/BaseInteractionClient.mjs +6 -6
  990. package/dist/interaction_client/BaseInteractionClient.mjs.map +1 -1
  991. package/dist/interaction_client/HybridSpaAuthorizationCodeClient.mjs +1 -1
  992. package/dist/interaction_client/PlatformAuthInteractionClient.d.ts +1 -1
  993. package/dist/interaction_client/PlatformAuthInteractionClient.d.ts.map +1 -1
  994. package/dist/interaction_client/PlatformAuthInteractionClient.mjs +9 -9
  995. package/dist/interaction_client/PlatformAuthInteractionClient.mjs.map +1 -1
  996. package/dist/interaction_client/PopupClient.d.ts.map +1 -1
  997. package/dist/interaction_client/PopupClient.mjs +2 -2
  998. package/dist/interaction_client/PopupClient.mjs.map +1 -1
  999. package/dist/interaction_client/RedirectClient.d.ts.map +1 -1
  1000. package/dist/interaction_client/RedirectClient.mjs +8 -3
  1001. package/dist/interaction_client/RedirectClient.mjs.map +1 -1
  1002. package/dist/interaction_client/SilentAuthCodeClient.mjs +1 -1
  1003. package/dist/interaction_client/SilentCacheClient.d.ts.map +1 -1
  1004. package/dist/interaction_client/SilentCacheClient.mjs +2 -2
  1005. package/dist/interaction_client/SilentCacheClient.mjs.map +1 -1
  1006. package/dist/interaction_client/SilentIframeClient.mjs +1 -1
  1007. package/dist/interaction_client/SilentRefreshClient.mjs +1 -1
  1008. package/dist/interaction_client/StandardInteractionClient.d.ts.map +1 -1
  1009. package/dist/interaction_client/StandardInteractionClient.mjs +3 -2
  1010. package/dist/interaction_client/StandardInteractionClient.mjs.map +1 -1
  1011. package/dist/interaction_handler/InteractionHandler.mjs +1 -1
  1012. package/dist/interaction_handler/SilentHandler.mjs +3 -3
  1013. package/dist/naa/BridgeError.mjs +1 -1
  1014. package/dist/naa/BridgeProxy.mjs +1 -1
  1015. package/dist/naa/BridgeStatusCode.mjs +1 -1
  1016. package/dist/naa/mapping/NestedAppAuthAdapter.mjs +2 -2
  1017. package/dist/navigation/NavigationClient.d.ts.map +1 -1
  1018. package/dist/navigation/NavigationClient.mjs +6 -3
  1019. package/dist/navigation/NavigationClient.mjs.map +1 -1
  1020. package/dist/network/FetchClient.mjs +1 -1
  1021. package/dist/operatingcontext/BaseOperatingContext.mjs +1 -1
  1022. package/dist/operatingcontext/NestedAppOperatingContext.mjs +1 -1
  1023. package/dist/operatingcontext/StandardOperatingContext.mjs +1 -1
  1024. package/dist/operatingcontext/UnknownOperatingContext.mjs +1 -1
  1025. package/dist/packageMetadata.d.ts +1 -1
  1026. package/dist/packageMetadata.mjs +2 -2
  1027. package/dist/protocol/Authorize.mjs +1 -1
  1028. package/dist/request/RequestHelpers.mjs +1 -1
  1029. package/dist/response/ResponseHandler.mjs +1 -1
  1030. package/dist/telemetry/BrowserPerformanceClient.mjs +1 -1
  1031. package/dist/telemetry/BrowserPerformanceMeasurement.mjs +1 -1
  1032. package/dist/utils/BrowserConstants.mjs +1 -5
  1033. package/dist/utils/BrowserConstants.mjs.map +1 -1
  1034. package/dist/utils/BrowserProtocolUtils.mjs +1 -1
  1035. package/dist/utils/BrowserUtils.mjs +1 -1
  1036. package/dist/utils/MsalFrameStatsUtils.mjs +1 -1
  1037. package/lib/custom-auth-path/msal-custom-auth.cjs +20549 -0
  1038. package/lib/custom-auth-path/msal-custom-auth.cjs.map +1 -0
  1039. package/lib/custom-auth-path/types/app/IPublicClientApplication.d.ts +55 -0
  1040. package/lib/custom-auth-path/types/app/IPublicClientApplication.d.ts.map +1 -0
  1041. package/lib/custom-auth-path/types/app/PublicClientApplication.d.ts +297 -0
  1042. package/lib/custom-auth-path/types/app/PublicClientApplication.d.ts.map +1 -0
  1043. package/lib/custom-auth-path/types/app/PublicClientNext.d.ts +278 -0
  1044. package/lib/custom-auth-path/types/app/PublicClientNext.d.ts.map +1 -0
  1045. package/lib/custom-auth-path/types/broker/nativeBroker/IPlatformAuthHandler.d.ts +12 -0
  1046. package/lib/custom-auth-path/types/broker/nativeBroker/IPlatformAuthHandler.d.ts.map +1 -0
  1047. package/lib/custom-auth-path/types/broker/nativeBroker/NativeStatusCodes.d.ts +9 -0
  1048. package/lib/custom-auth-path/types/broker/nativeBroker/NativeStatusCodes.d.ts.map +1 -0
  1049. package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthDOMHandler.d.ts +30 -0
  1050. package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthDOMHandler.d.ts.map +1 -0
  1051. package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts +63 -0
  1052. package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts.map +1 -0
  1053. package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthProvider.d.ts +26 -0
  1054. package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthProvider.d.ts.map +1 -0
  1055. package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthRequest.d.ts +78 -0
  1056. package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthRequest.d.ts.map +1 -0
  1057. package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthResponse.d.ts +71 -0
  1058. package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthResponse.d.ts.map +1 -0
  1059. package/lib/custom-auth-path/types/cache/AccountManager.d.ts +49 -0
  1060. package/lib/custom-auth-path/types/cache/AccountManager.d.ts.map +1 -0
  1061. package/lib/custom-auth-path/types/cache/AsyncMemoryStorage.d.ts +51 -0
  1062. package/lib/custom-auth-path/types/cache/AsyncMemoryStorage.d.ts.map +1 -0
  1063. package/lib/custom-auth-path/types/cache/BrowserCacheManager.d.ts +297 -0
  1064. package/lib/custom-auth-path/types/cache/BrowserCacheManager.d.ts.map +1 -0
  1065. package/lib/custom-auth-path/types/cache/CacheHelpers.d.ts +16 -0
  1066. package/lib/custom-auth-path/types/cache/CacheHelpers.d.ts.map +1 -0
  1067. package/lib/custom-auth-path/types/cache/CookieStorage.d.ts +22 -0
  1068. package/lib/custom-auth-path/types/cache/CookieStorage.d.ts.map +1 -0
  1069. package/lib/custom-auth-path/types/cache/DatabaseStorage.d.ts +57 -0
  1070. package/lib/custom-auth-path/types/cache/DatabaseStorage.d.ts.map +1 -0
  1071. package/lib/custom-auth-path/types/cache/IAsyncStorage.d.ts +28 -0
  1072. package/lib/custom-auth-path/types/cache/IAsyncStorage.d.ts.map +1 -0
  1073. package/lib/custom-auth-path/types/cache/ITokenCache.d.ts +12 -0
  1074. package/lib/custom-auth-path/types/cache/ITokenCache.d.ts.map +1 -0
  1075. package/lib/custom-auth-path/types/cache/IWindowStorage.d.ts +40 -0
  1076. package/lib/custom-auth-path/types/cache/IWindowStorage.d.ts.map +1 -0
  1077. package/lib/custom-auth-path/types/cache/LocalStorage.d.ts +49 -0
  1078. package/lib/custom-auth-path/types/cache/LocalStorage.d.ts.map +1 -0
  1079. package/lib/custom-auth-path/types/cache/MemoryStorage.d.ts +15 -0
  1080. package/lib/custom-auth-path/types/cache/MemoryStorage.d.ts.map +1 -0
  1081. package/lib/custom-auth-path/types/cache/SessionStorage.d.ts +13 -0
  1082. package/lib/custom-auth-path/types/cache/SessionStorage.d.ts.map +1 -0
  1083. package/lib/custom-auth-path/types/cache/TokenCache.d.ts +78 -0
  1084. package/lib/custom-auth-path/types/cache/TokenCache.d.ts.map +1 -0
  1085. package/lib/custom-auth-path/types/config/Configuration.d.ts +228 -0
  1086. package/lib/custom-auth-path/types/config/Configuration.d.ts.map +1 -0
  1087. package/lib/custom-auth-path/types/controllers/ControllerFactory.d.ts +6 -0
  1088. package/lib/custom-auth-path/types/controllers/ControllerFactory.d.ts.map +1 -0
  1089. package/lib/custom-auth-path/types/controllers/IController.d.ts +59 -0
  1090. package/lib/custom-auth-path/types/controllers/IController.d.ts.map +1 -0
  1091. package/lib/custom-auth-path/types/controllers/NestedAppAuthController.d.ts +203 -0
  1092. package/lib/custom-auth-path/types/controllers/NestedAppAuthController.d.ts.map +1 -0
  1093. package/lib/custom-auth-path/types/controllers/StandardController.d.ts +425 -0
  1094. package/lib/custom-auth-path/types/controllers/StandardController.d.ts.map +1 -0
  1095. package/lib/custom-auth-path/types/controllers/UnknownOperatingContextController.d.ts +86 -0
  1096. package/lib/custom-auth-path/types/controllers/UnknownOperatingContextController.d.ts.map +1 -0
  1097. package/lib/custom-auth-path/types/crypto/BrowserCrypto.d.ts +97 -0
  1098. package/lib/custom-auth-path/types/crypto/BrowserCrypto.d.ts.map +1 -0
  1099. package/lib/custom-auth-path/types/crypto/CryptoOps.d.ts +75 -0
  1100. package/lib/custom-auth-path/types/crypto/CryptoOps.d.ts.map +1 -0
  1101. package/lib/custom-auth-path/types/crypto/PkceGenerator.d.ts +9 -0
  1102. package/lib/custom-auth-path/types/crypto/PkceGenerator.d.ts.map +1 -0
  1103. package/lib/custom-auth-path/types/crypto/SignedHttpRequest.d.ts +31 -0
  1104. package/lib/custom-auth-path/types/crypto/SignedHttpRequest.d.ts.map +1 -0
  1105. package/lib/custom-auth-path/types/custom_auth/CustomAuthActionInputs.d.ts +26 -0
  1106. package/lib/custom-auth-path/types/custom_auth/CustomAuthActionInputs.d.ts.map +1 -0
  1107. package/lib/custom-auth-path/types/custom_auth/CustomAuthConstants.d.ts +33 -0
  1108. package/lib/custom-auth-path/types/custom_auth/CustomAuthConstants.d.ts.map +1 -0
  1109. package/lib/custom-auth-path/types/custom_auth/CustomAuthPublicClientApplication.d.ts +55 -0
  1110. package/lib/custom-auth-path/types/custom_auth/CustomAuthPublicClientApplication.d.ts.map +1 -0
  1111. package/lib/custom-auth-path/types/custom_auth/ICustomAuthPublicClientApplication.d.ts +33 -0
  1112. package/lib/custom-auth-path/types/custom_auth/ICustomAuthPublicClientApplication.d.ts.map +1 -0
  1113. package/lib/custom-auth-path/types/custom_auth/UserAccountAttributes.d.ts +12 -0
  1114. package/lib/custom-auth-path/types/custom_auth/UserAccountAttributes.d.ts.map +1 -0
  1115. package/lib/custom-auth-path/types/custom_auth/configuration/CustomAuthConfiguration.d.ts +12 -0
  1116. package/lib/custom-auth-path/types/custom_auth/configuration/CustomAuthConfiguration.d.ts.map +1 -0
  1117. package/lib/custom-auth-path/types/custom_auth/controller/CustomAuthStandardController.d.ts +25 -0
  1118. package/lib/custom-auth-path/types/custom_auth/controller/CustomAuthStandardController.d.ts.map +1 -0
  1119. package/lib/custom-auth-path/types/custom_auth/controller/ICustomAuthStandardController.d.ts +13 -0
  1120. package/lib/custom-auth-path/types/custom_auth/controller/ICustomAuthStandardController.d.ts.map +1 -0
  1121. package/lib/custom-auth-path/types/custom_auth/core/CustomAuthAuthority.d.ts +29 -0
  1122. package/lib/custom-auth-path/types/custom_auth/core/CustomAuthAuthority.d.ts.map +1 -0
  1123. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +28 -0
  1124. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +1 -0
  1125. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts +11 -0
  1126. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts.map +1 -0
  1127. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowState.d.ts +27 -0
  1128. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowState.d.ts.map +1 -0
  1129. package/lib/custom-auth-path/types/custom_auth/core/error/CustomAuthApiError.d.ts +19 -0
  1130. package/lib/custom-auth-path/types/custom_auth/core/error/CustomAuthApiError.d.ts.map +1 -0
  1131. package/lib/custom-auth-path/types/custom_auth/core/error/CustomAuthError.d.ts +9 -0
  1132. package/lib/custom-auth-path/types/custom_auth/core/error/CustomAuthError.d.ts.map +1 -0
  1133. package/lib/custom-auth-path/types/custom_auth/core/error/HttpError.d.ts +5 -0
  1134. package/lib/custom-auth-path/types/custom_auth/core/error/HttpError.d.ts.map +1 -0
  1135. package/lib/custom-auth-path/types/custom_auth/core/error/HttpErrorCodes.d.ts +3 -0
  1136. package/lib/custom-auth-path/types/custom_auth/core/error/HttpErrorCodes.d.ts.map +1 -0
  1137. package/lib/custom-auth-path/types/custom_auth/core/error/InvalidArgumentError.d.ts +5 -0
  1138. package/lib/custom-auth-path/types/custom_auth/core/error/InvalidArgumentError.d.ts.map +1 -0
  1139. package/lib/custom-auth-path/types/custom_auth/core/error/InvalidConfigurationError.d.ts +5 -0
  1140. package/lib/custom-auth-path/types/custom_auth/core/error/InvalidConfigurationError.d.ts.map +1 -0
  1141. package/lib/custom-auth-path/types/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts +4 -0
  1142. package/lib/custom-auth-path/types/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts.map +1 -0
  1143. package/lib/custom-auth-path/types/custom_auth/core/error/MethodNotImplementedError.d.ts +5 -0
  1144. package/lib/custom-auth-path/types/custom_auth/core/error/MethodNotImplementedError.d.ts.map +1 -0
  1145. package/lib/custom-auth-path/types/custom_auth/core/error/MsalCustomAuthError.d.ts +6 -0
  1146. package/lib/custom-auth-path/types/custom_auth/core/error/MsalCustomAuthError.d.ts.map +1 -0
  1147. package/lib/custom-auth-path/types/custom_auth/core/error/NoCachedAccountFoundError.d.ts +5 -0
  1148. package/lib/custom-auth-path/types/custom_auth/core/error/NoCachedAccountFoundError.d.ts.map +1 -0
  1149. package/lib/custom-auth-path/types/custom_auth/core/error/ParsedUrlError.d.ts +5 -0
  1150. package/lib/custom-auth-path/types/custom_auth/core/error/ParsedUrlError.d.ts.map +1 -0
  1151. package/lib/custom-auth-path/types/custom_auth/core/error/ParsedUrlErrorCodes.d.ts +2 -0
  1152. package/lib/custom-auth-path/types/custom_auth/core/error/ParsedUrlErrorCodes.d.ts.map +1 -0
  1153. package/lib/custom-auth-path/types/custom_auth/core/error/UnexpectedError.d.ts +5 -0
  1154. package/lib/custom-auth-path/types/custom_auth/core/error/UnexpectedError.d.ts.map +1 -0
  1155. package/lib/custom-auth-path/types/custom_auth/core/error/UnsupportedEnvironmentError.d.ts +5 -0
  1156. package/lib/custom-auth-path/types/custom_auth/core/error/UnsupportedEnvironmentError.d.ts.map +1 -0
  1157. package/lib/custom-auth-path/types/custom_auth/core/error/UserAccountAttributeError.d.ts +5 -0
  1158. package/lib/custom-auth-path/types/custom_auth/core/error/UserAccountAttributeError.d.ts.map +1 -0
  1159. package/lib/custom-auth-path/types/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts +2 -0
  1160. package/lib/custom-auth-path/types/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts.map +1 -0
  1161. package/lib/custom-auth-path/types/custom_auth/core/error/UserAlreadySignedInError.d.ts +5 -0
  1162. package/lib/custom-auth-path/types/custom_auth/core/error/UserAlreadySignedInError.d.ts.map +1 -0
  1163. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts +24 -0
  1164. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +1 -0
  1165. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts +22 -0
  1166. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts.map +1 -0
  1167. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts +14 -0
  1168. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts.map +1 -0
  1169. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts +12 -0
  1170. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts.map +1 -0
  1171. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +12 -0
  1172. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +1 -0
  1173. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts +9 -0
  1174. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts.map +1 -0
  1175. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts +31 -0
  1176. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts.map +1 -0
  1177. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +29 -0
  1178. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +1 -0
  1179. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts +20 -0
  1180. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts.map +1 -0
  1181. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts +22 -0
  1182. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts.map +1 -0
  1183. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts +29 -0
  1184. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts.map +1 -0
  1185. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +65 -0
  1186. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +1 -0
  1187. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +45 -0
  1188. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +1 -0
  1189. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +10 -0
  1190. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +1 -0
  1191. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts +9 -0
  1192. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts.map +1 -0
  1193. package/lib/custom-auth-path/types/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts +13 -0
  1194. package/lib/custom-auth-path/types/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +1 -0
  1195. package/lib/custom-auth-path/types/custom_auth/core/network_client/http_client/IHttpClient.d.ts +35 -0
  1196. package/lib/custom-auth-path/types/custom_auth/core/network_client/http_client/IHttpClient.d.ts.map +1 -0
  1197. package/lib/custom-auth-path/types/custom_auth/core/telemetry/PublicApiId.d.ts +21 -0
  1198. package/lib/custom-auth-path/types/custom_auth/core/telemetry/PublicApiId.d.ts.map +1 -0
  1199. package/lib/custom-auth-path/types/custom_auth/core/utils/ArgumentValidator.d.ts +3 -0
  1200. package/lib/custom-auth-path/types/custom_auth/core/utils/ArgumentValidator.d.ts.map +1 -0
  1201. package/lib/custom-auth-path/types/custom_auth/core/utils/UrlUtils.d.ts +3 -0
  1202. package/lib/custom-auth-path/types/custom_auth/core/utils/UrlUtils.d.ts.map +1 -0
  1203. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts +47 -0
  1204. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +1 -0
  1205. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts +32 -0
  1206. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts.map +1 -0
  1207. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts +37 -0
  1208. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts.map +1 -0
  1209. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts +36 -0
  1210. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts.map +1 -0
  1211. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts +35 -0
  1212. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts.map +1 -0
  1213. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts +12 -0
  1214. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts.map +1 -0
  1215. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts +12 -0
  1216. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts.map +1 -0
  1217. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/state/SignOutState.d.ts +12 -0
  1218. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/state/SignOutState.d.ts.map +1 -0
  1219. package/lib/custom-auth-path/types/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts +21 -0
  1220. package/lib/custom-auth-path/types/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +1 -0
  1221. package/lib/custom-auth-path/types/custom_auth/index.d.ts +69 -0
  1222. package/lib/custom-auth-path/types/custom_auth/index.d.ts.map +1 -0
  1223. package/lib/custom-auth-path/types/custom_auth/operating_context/CustomAuthOperatingContext.d.ts +13 -0
  1224. package/lib/custom-auth-path/types/custom_auth/operating_context/CustomAuthOperatingContext.d.ts.map +1 -0
  1225. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts +55 -0
  1226. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts.map +1 -0
  1227. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts +37 -0
  1228. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts.map +1 -0
  1229. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts +37 -0
  1230. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts.map +1 -0
  1231. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts +37 -0
  1232. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts.map +1 -0
  1233. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts +32 -0
  1234. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts.map +1 -0
  1235. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts +23 -0
  1236. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts.map +1 -0
  1237. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts +7 -0
  1238. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts.map +1 -0
  1239. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts +7 -0
  1240. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts.map +1 -0
  1241. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts +12 -0
  1242. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts.map +1 -0
  1243. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts +6 -0
  1244. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts.map +1 -0
  1245. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts +15 -0
  1246. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts.map +1 -0
  1247. package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts +33 -0
  1248. package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +1 -0
  1249. package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts +19 -0
  1250. package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts.map +1 -0
  1251. package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts +14 -0
  1252. package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts.map +1 -0
  1253. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/SignInScenario.d.ts +6 -0
  1254. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/SignInScenario.d.ts.map +1 -0
  1255. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +50 -0
  1256. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +1 -0
  1257. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts +37 -0
  1258. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts.map +1 -0
  1259. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts +54 -0
  1260. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts.map +1 -0
  1261. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts +25 -0
  1262. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts.map +1 -0
  1263. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCredentialResult.d.ts +21 -0
  1264. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCredentialResult.d.ts.map +1 -0
  1265. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts +20 -0
  1266. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts.map +1 -0
  1267. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts +29 -0
  1268. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +1 -0
  1269. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts +8 -0
  1270. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts.map +1 -0
  1271. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts +13 -0
  1272. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +1 -0
  1273. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts +7 -0
  1274. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts.map +1 -0
  1275. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts +17 -0
  1276. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +1 -0
  1277. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInState.d.ts +6 -0
  1278. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInState.d.ts.map +1 -0
  1279. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +20 -0
  1280. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +1 -0
  1281. package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts +48 -0
  1282. package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +1 -0
  1283. package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +29 -0
  1284. package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +1 -0
  1285. package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +30 -0
  1286. package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +1 -0
  1287. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts +87 -0
  1288. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts.map +1 -0
  1289. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts +37 -0
  1290. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts.map +1 -0
  1291. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts +53 -0
  1292. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts.map +1 -0
  1293. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts +37 -0
  1294. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts.map +1 -0
  1295. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts +53 -0
  1296. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts.map +1 -0
  1297. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts +45 -0
  1298. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts.map +1 -0
  1299. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts +21 -0
  1300. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts.map +1 -0
  1301. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts +28 -0
  1302. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts.map +1 -0
  1303. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts +7 -0
  1304. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts.map +1 -0
  1305. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts +7 -0
  1306. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts.map +1 -0
  1307. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts +12 -0
  1308. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts.map +1 -0
  1309. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts +6 -0
  1310. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts.map +1 -0
  1311. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts +20 -0
  1312. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts.map +1 -0
  1313. package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/SignUpClient.d.ts +41 -0
  1314. package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +1 -0
  1315. package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts +26 -0
  1316. package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts.map +1 -0
  1317. package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts +34 -0
  1318. package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts.map +1 -0
  1319. package/lib/custom-auth-path/types/encode/Base64Decode.d.ts +15 -0
  1320. package/lib/custom-auth-path/types/encode/Base64Decode.d.ts.map +1 -0
  1321. package/lib/custom-auth-path/types/encode/Base64Encode.d.ts +20 -0
  1322. package/lib/custom-auth-path/types/encode/Base64Encode.d.ts.map +1 -0
  1323. package/lib/custom-auth-path/types/error/BrowserAuthError.d.ts +257 -0
  1324. package/lib/custom-auth-path/types/error/BrowserAuthError.d.ts.map +1 -0
  1325. package/lib/custom-auth-path/types/error/BrowserAuthErrorCodes.d.ts +52 -0
  1326. package/lib/custom-auth-path/types/error/BrowserAuthErrorCodes.d.ts.map +1 -0
  1327. package/lib/custom-auth-path/types/error/BrowserConfigurationAuthError.d.ts +34 -0
  1328. package/lib/custom-auth-path/types/error/BrowserConfigurationAuthError.d.ts.map +1 -0
  1329. package/lib/custom-auth-path/types/error/BrowserConfigurationAuthErrorCodes.d.ts +4 -0
  1330. package/lib/custom-auth-path/types/error/BrowserConfigurationAuthErrorCodes.d.ts.map +1 -0
  1331. package/lib/custom-auth-path/types/error/NativeAuthError.d.ts +30 -0
  1332. package/lib/custom-auth-path/types/error/NativeAuthError.d.ts.map +1 -0
  1333. package/lib/custom-auth-path/types/error/NativeAuthErrorCodes.d.ts +3 -0
  1334. package/lib/custom-auth-path/types/error/NativeAuthErrorCodes.d.ts.map +1 -0
  1335. package/lib/custom-auth-path/types/error/NestedAppAuthError.d.ts +15 -0
  1336. package/lib/custom-auth-path/types/error/NestedAppAuthError.d.ts.map +1 -0
  1337. package/lib/custom-auth-path/types/event/EventHandler.d.ts +49 -0
  1338. package/lib/custom-auth-path/types/event/EventHandler.d.ts.map +1 -0
  1339. package/lib/custom-auth-path/types/event/EventMessage.d.ts +40 -0
  1340. package/lib/custom-auth-path/types/event/EventMessage.d.ts.map +1 -0
  1341. package/lib/custom-auth-path/types/event/EventType.d.ts +31 -0
  1342. package/lib/custom-auth-path/types/event/EventType.d.ts.map +1 -0
  1343. package/lib/custom-auth-path/types/index.d.ts +45 -0
  1344. package/lib/custom-auth-path/types/index.d.ts.map +1 -0
  1345. package/lib/custom-auth-path/types/interaction_client/BaseInteractionClient.d.ts +59 -0
  1346. package/lib/custom-auth-path/types/interaction_client/BaseInteractionClient.d.ts.map +1 -0
  1347. package/lib/custom-auth-path/types/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +5 -0
  1348. package/lib/custom-auth-path/types/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +1 -0
  1349. package/lib/custom-auth-path/types/interaction_client/PlatformAuthInteractionClient.d.ts +149 -0
  1350. package/lib/custom-auth-path/types/interaction_client/PlatformAuthInteractionClient.d.ts.map +1 -0
  1351. package/lib/custom-auth-path/types/interaction_client/PopupClient.d.ts +120 -0
  1352. package/lib/custom-auth-path/types/interaction_client/PopupClient.d.ts.map +1 -0
  1353. package/lib/custom-auth-path/types/interaction_client/RedirectClient.d.ts +68 -0
  1354. package/lib/custom-auth-path/types/interaction_client/RedirectClient.d.ts.map +1 -0
  1355. package/lib/custom-auth-path/types/interaction_client/SilentAuthCodeClient.d.ts +24 -0
  1356. package/lib/custom-auth-path/types/interaction_client/SilentAuthCodeClient.d.ts.map +1 -0
  1357. package/lib/custom-auth-path/types/interaction_client/SilentCacheClient.d.ts +17 -0
  1358. package/lib/custom-auth-path/types/interaction_client/SilentCacheClient.d.ts.map +1 -0
  1359. package/lib/custom-auth-path/types/interaction_client/SilentIframeClient.d.ts +43 -0
  1360. package/lib/custom-auth-path/types/interaction_client/SilentIframeClient.d.ts.map +1 -0
  1361. package/lib/custom-auth-path/types/interaction_client/SilentRefreshClient.d.ts +32 -0
  1362. package/lib/custom-auth-path/types/interaction_client/SilentRefreshClient.d.ts.map +1 -0
  1363. package/lib/custom-auth-path/types/interaction_client/StandardInteractionClient.d.ts +64 -0
  1364. package/lib/custom-auth-path/types/interaction_client/StandardInteractionClient.d.ts.map +1 -0
  1365. package/lib/custom-auth-path/types/interaction_handler/InteractionHandler.d.ts +33 -0
  1366. package/lib/custom-auth-path/types/interaction_handler/InteractionHandler.d.ts.map +1 -0
  1367. package/lib/custom-auth-path/types/interaction_handler/SilentHandler.d.ts +16 -0
  1368. package/lib/custom-auth-path/types/interaction_handler/SilentHandler.d.ts.map +1 -0
  1369. package/lib/custom-auth-path/types/naa/AccountInfo.d.ts +12 -0
  1370. package/lib/custom-auth-path/types/naa/AccountInfo.d.ts.map +1 -0
  1371. package/lib/custom-auth-path/types/naa/AuthBridge.d.ts +9 -0
  1372. package/lib/custom-auth-path/types/naa/AuthBridge.d.ts.map +1 -0
  1373. package/lib/custom-auth-path/types/naa/AuthResult.d.ts +7 -0
  1374. package/lib/custom-auth-path/types/naa/AuthResult.d.ts.map +1 -0
  1375. package/lib/custom-auth-path/types/naa/BridgeAccountContext.d.ts +13 -0
  1376. package/lib/custom-auth-path/types/naa/BridgeAccountContext.d.ts.map +1 -0
  1377. package/lib/custom-auth-path/types/naa/BridgeCapabilities.d.ts +4 -0
  1378. package/lib/custom-auth-path/types/naa/BridgeCapabilities.d.ts.map +1 -0
  1379. package/lib/custom-auth-path/types/naa/BridgeError.d.ts +10 -0
  1380. package/lib/custom-auth-path/types/naa/BridgeError.d.ts.map +1 -0
  1381. package/lib/custom-auth-path/types/naa/BridgeProxy.d.ts +69 -0
  1382. package/lib/custom-auth-path/types/naa/BridgeProxy.d.ts.map +1 -0
  1383. package/lib/custom-auth-path/types/naa/BridgeRequest.d.ts +8 -0
  1384. package/lib/custom-auth-path/types/naa/BridgeRequest.d.ts.map +1 -0
  1385. package/lib/custom-auth-path/types/naa/BridgeRequestEnvelope.d.ts +13 -0
  1386. package/lib/custom-auth-path/types/naa/BridgeRequestEnvelope.d.ts.map +1 -0
  1387. package/lib/custom-auth-path/types/naa/BridgeResponseEnvelope.d.ts +14 -0
  1388. package/lib/custom-auth-path/types/naa/BridgeResponseEnvelope.d.ts.map +1 -0
  1389. package/lib/custom-auth-path/types/naa/BridgeStatusCode.d.ts +12 -0
  1390. package/lib/custom-auth-path/types/naa/BridgeStatusCode.d.ts.map +1 -0
  1391. package/lib/custom-auth-path/types/naa/IBridgeProxy.d.ts +11 -0
  1392. package/lib/custom-auth-path/types/naa/IBridgeProxy.d.ts.map +1 -0
  1393. package/lib/custom-auth-path/types/naa/InitContext.d.ts +9 -0
  1394. package/lib/custom-auth-path/types/naa/InitContext.d.ts.map +1 -0
  1395. package/lib/custom-auth-path/types/naa/TokenRequest.d.ts +19 -0
  1396. package/lib/custom-auth-path/types/naa/TokenRequest.d.ts.map +1 -0
  1397. package/lib/custom-auth-path/types/naa/TokenResponse.d.ts +14 -0
  1398. package/lib/custom-auth-path/types/naa/TokenResponse.d.ts.map +1 -0
  1399. package/lib/custom-auth-path/types/naa/mapping/NestedAppAuthAdapter.d.ts +36 -0
  1400. package/lib/custom-auth-path/types/naa/mapping/NestedAppAuthAdapter.d.ts.map +1 -0
  1401. package/lib/custom-auth-path/types/navigation/INavigationClient.d.ts +17 -0
  1402. package/lib/custom-auth-path/types/navigation/INavigationClient.d.ts.map +1 -0
  1403. package/lib/custom-auth-path/types/navigation/NavigationClient.d.ts +23 -0
  1404. package/lib/custom-auth-path/types/navigation/NavigationClient.d.ts.map +1 -0
  1405. package/lib/custom-auth-path/types/navigation/NavigationOptions.d.ts +13 -0
  1406. package/lib/custom-auth-path/types/navigation/NavigationOptions.d.ts.map +1 -0
  1407. package/lib/custom-auth-path/types/network/FetchClient.d.ts +21 -0
  1408. package/lib/custom-auth-path/types/network/FetchClient.d.ts.map +1 -0
  1409. package/lib/custom-auth-path/types/operatingcontext/BaseOperatingContext.d.ts +42 -0
  1410. package/lib/custom-auth-path/types/operatingcontext/BaseOperatingContext.d.ts.map +1 -0
  1411. package/lib/custom-auth-path/types/operatingcontext/NestedAppOperatingContext.d.ts +40 -0
  1412. package/lib/custom-auth-path/types/operatingcontext/NestedAppOperatingContext.d.ts.map +1 -0
  1413. package/lib/custom-auth-path/types/operatingcontext/StandardOperatingContext.d.ts +26 -0
  1414. package/lib/custom-auth-path/types/operatingcontext/StandardOperatingContext.d.ts.map +1 -0
  1415. package/lib/custom-auth-path/types/operatingcontext/UnknownOperatingContext.d.ts +26 -0
  1416. package/lib/custom-auth-path/types/operatingcontext/UnknownOperatingContext.d.ts.map +1 -0
  1417. package/lib/custom-auth-path/types/packageMetadata.d.ts +3 -0
  1418. package/lib/custom-auth-path/types/packageMetadata.d.ts.map +1 -0
  1419. package/lib/custom-auth-path/types/protocol/Authorize.d.ts +65 -0
  1420. package/lib/custom-auth-path/types/protocol/Authorize.d.ts.map +1 -0
  1421. package/lib/custom-auth-path/types/request/AuthorizationCodeRequest.d.ts +9 -0
  1422. package/lib/custom-auth-path/types/request/AuthorizationCodeRequest.d.ts.map +1 -0
  1423. package/lib/custom-auth-path/types/request/AuthorizationUrlRequest.d.ts +7 -0
  1424. package/lib/custom-auth-path/types/request/AuthorizationUrlRequest.d.ts.map +1 -0
  1425. package/lib/custom-auth-path/types/request/ClearCacheRequest.d.ts +11 -0
  1426. package/lib/custom-auth-path/types/request/ClearCacheRequest.d.ts.map +1 -0
  1427. package/lib/custom-auth-path/types/request/EndSessionPopupRequest.d.ts +21 -0
  1428. package/lib/custom-auth-path/types/request/EndSessionPopupRequest.d.ts.map +1 -0
  1429. package/lib/custom-auth-path/types/request/EndSessionRequest.d.ts +16 -0
  1430. package/lib/custom-auth-path/types/request/EndSessionRequest.d.ts.map +1 -0
  1431. package/lib/custom-auth-path/types/request/InitializeApplicationRequest.d.ts +9 -0
  1432. package/lib/custom-auth-path/types/request/InitializeApplicationRequest.d.ts.map +1 -0
  1433. package/lib/custom-auth-path/types/request/PopupRequest.d.ts +36 -0
  1434. package/lib/custom-auth-path/types/request/PopupRequest.d.ts.map +1 -0
  1435. package/lib/custom-auth-path/types/request/PopupWindowAttributes.d.ts +16 -0
  1436. package/lib/custom-auth-path/types/request/PopupWindowAttributes.d.ts.map +1 -0
  1437. package/lib/custom-auth-path/types/request/RedirectRequest.d.ts +40 -0
  1438. package/lib/custom-auth-path/types/request/RedirectRequest.d.ts.map +1 -0
  1439. package/lib/custom-auth-path/types/request/RequestHelpers.d.ts +14 -0
  1440. package/lib/custom-auth-path/types/request/RequestHelpers.d.ts.map +1 -0
  1441. package/lib/custom-auth-path/types/request/SilentRequest.d.ts +33 -0
  1442. package/lib/custom-auth-path/types/request/SilentRequest.d.ts.map +1 -0
  1443. package/lib/custom-auth-path/types/request/SsoSilentRequest.d.ts +28 -0
  1444. package/lib/custom-auth-path/types/request/SsoSilentRequest.d.ts.map +1 -0
  1445. package/lib/custom-auth-path/types/response/AuthenticationResult.d.ts +5 -0
  1446. package/lib/custom-auth-path/types/response/AuthenticationResult.d.ts.map +1 -0
  1447. package/lib/custom-auth-path/types/response/ResponseHandler.d.ts +8 -0
  1448. package/lib/custom-auth-path/types/response/ResponseHandler.d.ts.map +1 -0
  1449. package/lib/custom-auth-path/types/telemetry/BrowserPerformanceClient.d.ts +35 -0
  1450. package/lib/custom-auth-path/types/telemetry/BrowserPerformanceClient.d.ts.map +1 -0
  1451. package/lib/custom-auth-path/types/telemetry/BrowserPerformanceMeasurement.d.ts +22 -0
  1452. package/lib/custom-auth-path/types/telemetry/BrowserPerformanceMeasurement.d.ts.map +1 -0
  1453. package/lib/custom-auth-path/types/utils/BrowserConstants.d.ts +184 -0
  1454. package/lib/custom-auth-path/types/utils/BrowserConstants.d.ts.map +1 -0
  1455. package/lib/custom-auth-path/types/utils/BrowserProtocolUtils.d.ts +12 -0
  1456. package/lib/custom-auth-path/types/utils/BrowserProtocolUtils.d.ts.map +1 -0
  1457. package/lib/custom-auth-path/types/utils/BrowserUtils.d.ts +76 -0
  1458. package/lib/custom-auth-path/types/utils/BrowserUtils.d.ts.map +1 -0
  1459. package/lib/custom-auth-path/types/utils/MsalFrameStatsUtils.d.ts +3 -0
  1460. package/lib/custom-auth-path/types/utils/MsalFrameStatsUtils.d.ts.map +1 -0
  1461. package/lib/msal-browser.cjs +469 -447
  1462. package/lib/msal-browser.cjs.map +1 -1
  1463. package/lib/msal-browser.js +469 -447
  1464. package/lib/msal-browser.js.map +1 -1
  1465. package/lib/msal-browser.min.js +68 -69
  1466. package/lib/types/cache/AccountManager.d.ts +7 -7
  1467. package/lib/types/cache/AccountManager.d.ts.map +1 -1
  1468. package/lib/types/cache/BrowserCacheManager.d.ts +40 -25
  1469. package/lib/types/cache/BrowserCacheManager.d.ts.map +1 -1
  1470. package/lib/types/cache/IWindowStorage.d.ts +1 -1
  1471. package/lib/types/cache/IWindowStorage.d.ts.map +1 -1
  1472. package/lib/types/cache/LocalStorage.d.ts +1 -1
  1473. package/lib/types/cache/LocalStorage.d.ts.map +1 -1
  1474. package/lib/types/cache/TokenCache.d.ts.map +1 -1
  1475. package/lib/types/controllers/NestedAppAuthController.d.ts.map +1 -1
  1476. package/lib/types/controllers/StandardController.d.ts.map +1 -1
  1477. package/lib/types/custom_auth/CustomAuthActionInputs.d.ts +26 -0
  1478. package/lib/types/custom_auth/CustomAuthActionInputs.d.ts.map +1 -0
  1479. package/lib/types/custom_auth/CustomAuthConstants.d.ts +33 -0
  1480. package/lib/types/custom_auth/CustomAuthConstants.d.ts.map +1 -0
  1481. package/lib/types/custom_auth/CustomAuthPublicClientApplication.d.ts +55 -0
  1482. package/lib/types/custom_auth/CustomAuthPublicClientApplication.d.ts.map +1 -0
  1483. package/lib/types/custom_auth/ICustomAuthPublicClientApplication.d.ts +33 -0
  1484. package/lib/types/custom_auth/ICustomAuthPublicClientApplication.d.ts.map +1 -0
  1485. package/lib/types/custom_auth/UserAccountAttributes.d.ts +12 -0
  1486. package/lib/types/custom_auth/UserAccountAttributes.d.ts.map +1 -0
  1487. package/lib/types/custom_auth/configuration/CustomAuthConfiguration.d.ts +12 -0
  1488. package/lib/types/custom_auth/configuration/CustomAuthConfiguration.d.ts.map +1 -0
  1489. package/lib/types/custom_auth/controller/CustomAuthStandardController.d.ts +25 -0
  1490. package/lib/types/custom_auth/controller/CustomAuthStandardController.d.ts.map +1 -0
  1491. package/lib/types/custom_auth/controller/ICustomAuthStandardController.d.ts +13 -0
  1492. package/lib/types/custom_auth/controller/ICustomAuthStandardController.d.ts.map +1 -0
  1493. package/lib/types/custom_auth/core/CustomAuthAuthority.d.ts +29 -0
  1494. package/lib/types/custom_auth/core/CustomAuthAuthority.d.ts.map +1 -0
  1495. package/lib/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +28 -0
  1496. package/lib/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +1 -0
  1497. package/lib/types/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts +11 -0
  1498. package/lib/types/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts.map +1 -0
  1499. package/lib/types/custom_auth/core/auth_flow/AuthFlowState.d.ts +27 -0
  1500. package/lib/types/custom_auth/core/auth_flow/AuthFlowState.d.ts.map +1 -0
  1501. package/lib/types/custom_auth/core/error/CustomAuthApiError.d.ts +19 -0
  1502. package/lib/types/custom_auth/core/error/CustomAuthApiError.d.ts.map +1 -0
  1503. package/lib/types/custom_auth/core/error/CustomAuthError.d.ts +9 -0
  1504. package/lib/types/custom_auth/core/error/CustomAuthError.d.ts.map +1 -0
  1505. package/lib/types/custom_auth/core/error/HttpError.d.ts +5 -0
  1506. package/lib/types/custom_auth/core/error/HttpError.d.ts.map +1 -0
  1507. package/lib/types/custom_auth/core/error/HttpErrorCodes.d.ts +3 -0
  1508. package/lib/types/custom_auth/core/error/HttpErrorCodes.d.ts.map +1 -0
  1509. package/lib/types/custom_auth/core/error/InvalidArgumentError.d.ts +5 -0
  1510. package/lib/types/custom_auth/core/error/InvalidArgumentError.d.ts.map +1 -0
  1511. package/lib/types/custom_auth/core/error/InvalidConfigurationError.d.ts +5 -0
  1512. package/lib/types/custom_auth/core/error/InvalidConfigurationError.d.ts.map +1 -0
  1513. package/lib/types/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts +4 -0
  1514. package/lib/types/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts.map +1 -0
  1515. package/lib/types/custom_auth/core/error/MethodNotImplementedError.d.ts +5 -0
  1516. package/lib/types/custom_auth/core/error/MethodNotImplementedError.d.ts.map +1 -0
  1517. package/lib/types/custom_auth/core/error/MsalCustomAuthError.d.ts +6 -0
  1518. package/lib/types/custom_auth/core/error/MsalCustomAuthError.d.ts.map +1 -0
  1519. package/lib/types/custom_auth/core/error/NoCachedAccountFoundError.d.ts +5 -0
  1520. package/lib/types/custom_auth/core/error/NoCachedAccountFoundError.d.ts.map +1 -0
  1521. package/lib/types/custom_auth/core/error/ParsedUrlError.d.ts +5 -0
  1522. package/lib/types/custom_auth/core/error/ParsedUrlError.d.ts.map +1 -0
  1523. package/lib/types/custom_auth/core/error/ParsedUrlErrorCodes.d.ts +2 -0
  1524. package/lib/types/custom_auth/core/error/ParsedUrlErrorCodes.d.ts.map +1 -0
  1525. package/lib/types/custom_auth/core/error/UnexpectedError.d.ts +5 -0
  1526. package/lib/types/custom_auth/core/error/UnexpectedError.d.ts.map +1 -0
  1527. package/lib/types/custom_auth/core/error/UnsupportedEnvironmentError.d.ts +5 -0
  1528. package/lib/types/custom_auth/core/error/UnsupportedEnvironmentError.d.ts.map +1 -0
  1529. package/lib/types/custom_auth/core/error/UserAccountAttributeError.d.ts +5 -0
  1530. package/lib/types/custom_auth/core/error/UserAccountAttributeError.d.ts.map +1 -0
  1531. package/lib/types/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts +2 -0
  1532. package/lib/types/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts.map +1 -0
  1533. package/lib/types/custom_auth/core/error/UserAlreadySignedInError.d.ts +5 -0
  1534. package/lib/types/custom_auth/core/error/UserAlreadySignedInError.d.ts.map +1 -0
  1535. package/lib/types/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts +24 -0
  1536. package/lib/types/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +1 -0
  1537. package/lib/types/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts +22 -0
  1538. package/lib/types/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts.map +1 -0
  1539. package/lib/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts +14 -0
  1540. package/lib/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts.map +1 -0
  1541. package/lib/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts +12 -0
  1542. package/lib/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts.map +1 -0
  1543. package/lib/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +12 -0
  1544. package/lib/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +1 -0
  1545. package/lib/types/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts +9 -0
  1546. package/lib/types/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts.map +1 -0
  1547. package/lib/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts +31 -0
  1548. package/lib/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts.map +1 -0
  1549. package/lib/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +29 -0
  1550. package/lib/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +1 -0
  1551. package/lib/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts +20 -0
  1552. package/lib/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts.map +1 -0
  1553. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts +22 -0
  1554. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts.map +1 -0
  1555. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts +29 -0
  1556. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts.map +1 -0
  1557. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +65 -0
  1558. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +1 -0
  1559. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +45 -0
  1560. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +1 -0
  1561. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +10 -0
  1562. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +1 -0
  1563. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts +9 -0
  1564. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts.map +1 -0
  1565. package/lib/types/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts +13 -0
  1566. package/lib/types/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +1 -0
  1567. package/lib/types/custom_auth/core/network_client/http_client/IHttpClient.d.ts +35 -0
  1568. package/lib/types/custom_auth/core/network_client/http_client/IHttpClient.d.ts.map +1 -0
  1569. package/lib/types/custom_auth/core/telemetry/PublicApiId.d.ts +21 -0
  1570. package/lib/types/custom_auth/core/telemetry/PublicApiId.d.ts.map +1 -0
  1571. package/lib/types/custom_auth/core/utils/ArgumentValidator.d.ts +3 -0
  1572. package/lib/types/custom_auth/core/utils/ArgumentValidator.d.ts.map +1 -0
  1573. package/lib/types/custom_auth/core/utils/UrlUtils.d.ts +3 -0
  1574. package/lib/types/custom_auth/core/utils/UrlUtils.d.ts.map +1 -0
  1575. package/lib/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts +47 -0
  1576. package/lib/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +1 -0
  1577. package/lib/types/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts +32 -0
  1578. package/lib/types/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts.map +1 -0
  1579. package/lib/types/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts +37 -0
  1580. package/lib/types/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts.map +1 -0
  1581. package/lib/types/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts +36 -0
  1582. package/lib/types/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts.map +1 -0
  1583. package/lib/types/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts +35 -0
  1584. package/lib/types/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts.map +1 -0
  1585. package/lib/types/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts +12 -0
  1586. package/lib/types/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts.map +1 -0
  1587. package/lib/types/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts +12 -0
  1588. package/lib/types/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts.map +1 -0
  1589. package/lib/types/custom_auth/get_account/auth_flow/state/SignOutState.d.ts +12 -0
  1590. package/lib/types/custom_auth/get_account/auth_flow/state/SignOutState.d.ts.map +1 -0
  1591. package/lib/types/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts +21 -0
  1592. package/lib/types/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +1 -0
  1593. package/lib/types/custom_auth/index.d.ts +69 -0
  1594. package/lib/types/custom_auth/index.d.ts.map +1 -0
  1595. package/lib/types/custom_auth/operating_context/CustomAuthOperatingContext.d.ts +13 -0
  1596. package/lib/types/custom_auth/operating_context/CustomAuthOperatingContext.d.ts.map +1 -0
  1597. package/lib/types/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts +55 -0
  1598. package/lib/types/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts.map +1 -0
  1599. package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts +37 -0
  1600. package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts.map +1 -0
  1601. package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts +37 -0
  1602. package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts.map +1 -0
  1603. package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts +37 -0
  1604. package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts.map +1 -0
  1605. package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts +32 -0
  1606. package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts.map +1 -0
  1607. package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts +23 -0
  1608. package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts.map +1 -0
  1609. package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts +7 -0
  1610. package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts.map +1 -0
  1611. package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts +7 -0
  1612. package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts.map +1 -0
  1613. package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts +12 -0
  1614. package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts.map +1 -0
  1615. package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts +6 -0
  1616. package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts.map +1 -0
  1617. package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts +15 -0
  1618. package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts.map +1 -0
  1619. package/lib/types/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts +33 -0
  1620. package/lib/types/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +1 -0
  1621. package/lib/types/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts +19 -0
  1622. package/lib/types/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts.map +1 -0
  1623. package/lib/types/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts +14 -0
  1624. package/lib/types/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts.map +1 -0
  1625. package/lib/types/custom_auth/sign_in/auth_flow/SignInScenario.d.ts +6 -0
  1626. package/lib/types/custom_auth/sign_in/auth_flow/SignInScenario.d.ts.map +1 -0
  1627. package/lib/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +50 -0
  1628. package/lib/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +1 -0
  1629. package/lib/types/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts +37 -0
  1630. package/lib/types/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts.map +1 -0
  1631. package/lib/types/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts +54 -0
  1632. package/lib/types/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts.map +1 -0
  1633. package/lib/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts +25 -0
  1634. package/lib/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts.map +1 -0
  1635. package/lib/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCredentialResult.d.ts +21 -0
  1636. package/lib/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCredentialResult.d.ts.map +1 -0
  1637. package/lib/types/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts +20 -0
  1638. package/lib/types/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts.map +1 -0
  1639. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts +29 -0
  1640. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +1 -0
  1641. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts +8 -0
  1642. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts.map +1 -0
  1643. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts +13 -0
  1644. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +1 -0
  1645. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts +7 -0
  1646. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts.map +1 -0
  1647. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts +17 -0
  1648. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +1 -0
  1649. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInState.d.ts +6 -0
  1650. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInState.d.ts.map +1 -0
  1651. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +20 -0
  1652. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +1 -0
  1653. package/lib/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts +48 -0
  1654. package/lib/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +1 -0
  1655. package/lib/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +29 -0
  1656. package/lib/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +1 -0
  1657. package/lib/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +30 -0
  1658. package/lib/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +1 -0
  1659. package/lib/types/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts +87 -0
  1660. package/lib/types/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts.map +1 -0
  1661. package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts +37 -0
  1662. package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts.map +1 -0
  1663. package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts +53 -0
  1664. package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts.map +1 -0
  1665. package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts +37 -0
  1666. package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts.map +1 -0
  1667. package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts +53 -0
  1668. package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts.map +1 -0
  1669. package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts +45 -0
  1670. package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts.map +1 -0
  1671. package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts +21 -0
  1672. package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts.map +1 -0
  1673. package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts +28 -0
  1674. package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts.map +1 -0
  1675. package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts +7 -0
  1676. package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts.map +1 -0
  1677. package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts +7 -0
  1678. package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts.map +1 -0
  1679. package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts +12 -0
  1680. package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts.map +1 -0
  1681. package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts +6 -0
  1682. package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts.map +1 -0
  1683. package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts +20 -0
  1684. package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts.map +1 -0
  1685. package/lib/types/custom_auth/sign_up/interaction_client/SignUpClient.d.ts +41 -0
  1686. package/lib/types/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +1 -0
  1687. package/lib/types/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts +26 -0
  1688. package/lib/types/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts.map +1 -0
  1689. package/lib/types/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts +34 -0
  1690. package/lib/types/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts.map +1 -0
  1691. package/lib/types/error/BrowserAuthError.d.ts +1 -0
  1692. package/lib/types/error/BrowserAuthError.d.ts.map +1 -1
  1693. package/lib/types/error/BrowserAuthErrorCodes.d.ts +1 -0
  1694. package/lib/types/error/BrowserAuthErrorCodes.d.ts.map +1 -1
  1695. package/lib/types/interaction_client/BaseInteractionClient.d.ts +1 -1
  1696. package/lib/types/interaction_client/BaseInteractionClient.d.ts.map +1 -1
  1697. package/lib/types/interaction_client/PlatformAuthInteractionClient.d.ts +1 -1
  1698. package/lib/types/interaction_client/PlatformAuthInteractionClient.d.ts.map +1 -1
  1699. package/lib/types/interaction_client/PopupClient.d.ts.map +1 -1
  1700. package/lib/types/interaction_client/RedirectClient.d.ts.map +1 -1
  1701. package/lib/types/interaction_client/SilentCacheClient.d.ts.map +1 -1
  1702. package/lib/types/interaction_client/StandardInteractionClient.d.ts.map +1 -1
  1703. package/lib/types/navigation/NavigationClient.d.ts.map +1 -1
  1704. package/lib/types/packageMetadata.d.ts +1 -1
  1705. package/package.json +12 -2
  1706. package/src/cache/AccountManager.ts +40 -20
  1707. package/src/cache/BrowserCacheManager.ts +323 -202
  1708. package/src/cache/IWindowStorage.ts +6 -1
  1709. package/src/cache/LocalStorage.ts +4 -1
  1710. package/src/cache/TokenCache.ts +1 -0
  1711. package/src/controllers/NestedAppAuthController.ts +31 -9
  1712. package/src/controllers/StandardController.ts +25 -6
  1713. package/src/custom_auth/CustomAuthActionInputs.ts +37 -0
  1714. package/src/custom_auth/CustomAuthConstants.ts +50 -0
  1715. package/src/custom_auth/CustomAuthPublicClientApplication.ts +158 -0
  1716. package/src/custom_auth/ICustomAuthPublicClientApplication.ts +51 -0
  1717. package/src/custom_auth/UserAccountAttributes.ts +16 -0
  1718. package/src/custom_auth/configuration/CustomAuthConfiguration.ts +22 -0
  1719. package/src/custom_auth/controller/CustomAuthStandardController.ts +509 -0
  1720. package/src/custom_auth/controller/ICustomAuthStandardController.ts +53 -0
  1721. package/src/custom_auth/core/CustomAuthAuthority.ts +112 -0
  1722. package/src/custom_auth/core/auth_flow/AuthFlowErrorBase.ts +140 -0
  1723. package/src/custom_auth/core/auth_flow/AuthFlowResultBase.ts +55 -0
  1724. package/src/custom_auth/core/auth_flow/AuthFlowState.ts +73 -0
  1725. package/src/custom_auth/core/error/CustomAuthApiError.ts +41 -0
  1726. package/src/custom_auth/core/error/CustomAuthError.ts +20 -0
  1727. package/src/custom_auth/core/error/HttpError.ts +13 -0
  1728. package/src/custom_auth/core/error/HttpErrorCodes.ts +7 -0
  1729. package/src/custom_auth/core/error/InvalidArgumentError.ts +15 -0
  1730. package/src/custom_auth/core/error/InvalidConfigurationError.ts +13 -0
  1731. package/src/custom_auth/core/error/InvalidConfigurationErrorCodes.ts +8 -0
  1732. package/src/custom_auth/core/error/MethodNotImplementedError.ts +15 -0
  1733. package/src/custom_auth/core/error/MsalCustomAuthError.ts +22 -0
  1734. package/src/custom_auth/core/error/NoCachedAccountFoundError.ts +17 -0
  1735. package/src/custom_auth/core/error/ParsedUrlError.ts +13 -0
  1736. package/src/custom_auth/core/error/ParsedUrlErrorCodes.ts +6 -0
  1737. package/src/custom_auth/core/error/UnexpectedError.ts +25 -0
  1738. package/src/custom_auth/core/error/UnsupportedEnvironmentError.ts +17 -0
  1739. package/src/custom_auth/core/error/UserAccountAttributeError.ts +15 -0
  1740. package/src/custom_auth/core/error/UserAccountAttributeErrorCodes.ts +6 -0
  1741. package/src/custom_auth/core/error/UserAlreadySignedInError.ts +17 -0
  1742. package/src/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.ts +92 -0
  1743. package/src/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.ts +57 -0
  1744. package/src/custom_auth/core/network_client/custom_auth_api/BaseApiClient.ts +168 -0
  1745. package/src/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.ts +38 -0
  1746. package/src/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.ts +18 -0
  1747. package/src/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.ts +13 -0
  1748. package/src/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.ts +172 -0
  1749. package/src/custom_auth/core/network_client/custom_auth_api/SignInApiClient.ts +186 -0
  1750. package/src/custom_auth/core/network_client/custom_auth_api/SignupApiClient.ts +141 -0
  1751. package/src/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.ts +26 -0
  1752. package/src/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.ts +36 -0
  1753. package/src/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.ts +91 -0
  1754. package/src/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.ts +66 -0
  1755. package/src/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.ts +14 -0
  1756. package/src/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.ts +15 -0
  1757. package/src/custom_auth/core/network_client/http_client/FetchHttpClient.ts +86 -0
  1758. package/src/custom_auth/core/network_client/http_client/IHttpClient.ts +54 -0
  1759. package/src/custom_auth/core/telemetry/PublicApiId.ts +37 -0
  1760. package/src/custom_auth/core/utils/ArgumentValidator.ts +26 -0
  1761. package/src/custom_auth/core/utils/UrlUtils.ts +25 -0
  1762. package/src/custom_auth/get_account/auth_flow/CustomAuthAccountData.ts +185 -0
  1763. package/src/custom_auth/get_account/auth_flow/error_type/GetAccountError.ts +45 -0
  1764. package/src/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.ts +72 -0
  1765. package/src/custom_auth/get_account/auth_flow/result/GetAccountResult.ts +69 -0
  1766. package/src/custom_auth/get_account/auth_flow/result/SignOutResult.ts +62 -0
  1767. package/src/custom_auth/get_account/auth_flow/state/GetAccessTokenState.ts +16 -0
  1768. package/src/custom_auth/get_account/auth_flow/state/GetAccountState.ts +16 -0
  1769. package/src/custom_auth/get_account/auth_flow/state/SignOutState.ts +16 -0
  1770. package/src/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.ts +215 -0
  1771. package/src/custom_auth/index.ts +185 -0
  1772. package/src/custom_auth/operating_context/CustomAuthOperatingContext.ts +43 -0
  1773. package/src/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.ts +96 -0
  1774. package/src/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.ts +76 -0
  1775. package/src/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.ts +70 -0
  1776. package/src/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.ts +70 -0
  1777. package/src/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.ts +65 -0
  1778. package/src/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.ts +130 -0
  1779. package/src/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.ts +11 -0
  1780. package/src/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.ts +11 -0
  1781. package/src/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.ts +73 -0
  1782. package/src/custom_auth/reset_password/auth_flow/state/ResetPasswordState.ts +29 -0
  1783. package/src/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.ts +25 -0
  1784. package/src/custom_auth/reset_password/interaction_client/ResetPasswordClient.ts +311 -0
  1785. package/src/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.ts +28 -0
  1786. package/src/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.ts +21 -0
  1787. package/src/custom_auth/sign_in/auth_flow/SignInScenario.ts +12 -0
  1788. package/src/custom_auth/sign_in/auth_flow/error_type/SignInError.ts +79 -0
  1789. package/src/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.ts +67 -0
  1790. package/src/custom_auth/sign_in/auth_flow/result/SignInResult.ts +87 -0
  1791. package/src/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.ts +44 -0
  1792. package/src/custom_auth/sign_in/auth_flow/result/SignInSubmitCredentialResult.ts +43 -0
  1793. package/src/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.ts +41 -0
  1794. package/src/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.ts +141 -0
  1795. package/src/custom_auth/sign_in/auth_flow/state/SignInCompletedState.ts +12 -0
  1796. package/src/custom_auth/sign_in/auth_flow/state/SignInContinuationState.ts +71 -0
  1797. package/src/custom_auth/sign_in/auth_flow/state/SignInFailedState.ts +11 -0
  1798. package/src/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.ts +83 -0
  1799. package/src/custom_auth/sign_in/auth_flow/state/SignInState.ts +34 -0
  1800. package/src/custom_auth/sign_in/auth_flow/state/SignInStateParameters.ts +32 -0
  1801. package/src/custom_auth/sign_in/interaction_client/SignInClient.ts +396 -0
  1802. package/src/custom_auth/sign_in/interaction_client/parameter/SignInParams.ts +39 -0
  1803. package/src/custom_auth/sign_in/interaction_client/result/SignInActionResult.ts +65 -0
  1804. package/src/custom_auth/sign_up/auth_flow/error_type/SignUpError.ts +138 -0
  1805. package/src/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.ts +70 -0
  1806. package/src/custom_auth/sign_up/auth_flow/result/SignUpResult.ts +88 -0
  1807. package/src/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.ts +70 -0
  1808. package/src/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.ts +90 -0
  1809. package/src/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.ts +80 -0
  1810. package/src/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.ts +115 -0
  1811. package/src/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.ts +196 -0
  1812. package/src/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.ts +11 -0
  1813. package/src/custom_auth/sign_up/auth_flow/state/SignUpFailedState.ts +11 -0
  1814. package/src/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.ts +112 -0
  1815. package/src/custom_auth/sign_up/auth_flow/state/SignUpState.ts +34 -0
  1816. package/src/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.ts +31 -0
  1817. package/src/custom_auth/sign_up/interaction_client/SignUpClient.ts +496 -0
  1818. package/src/custom_auth/sign_up/interaction_client/parameter/SignUpParams.ts +36 -0
  1819. package/src/custom_auth/sign_up/interaction_client/result/SignUpActionResult.ts +77 -0
  1820. package/src/error/BrowserAuthError.ts +1 -0
  1821. package/src/error/BrowserAuthErrorCodes.ts +1 -0
  1822. package/src/interaction_client/BaseInteractionClient.ts +5 -4
  1823. package/src/interaction_client/PlatformAuthInteractionClient.ts +19 -12
  1824. package/src/interaction_client/PopupClient.ts +4 -1
  1825. package/src/interaction_client/RedirectClient.ts +14 -1
  1826. package/src/interaction_client/SilentCacheClient.ts +4 -1
  1827. package/src/interaction_client/StandardInteractionClient.ts +2 -1
  1828. package/src/navigation/NavigationClient.ts +11 -2
  1829. package/src/packageMetadata.ts +1 -1
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BrowserCacheManager.mjs","sources":["../../../../src/cache/BrowserCacheManager.ts"],"sourcesContent":[null],"names":["BrowserAuthErrorCodes.noTokenRequestCacheError","BrowserAuthErrorCodes.unableToParseTokenRequestCacheError","BrowserAuthErrorCodes.interactionInProgress"],"mappings":"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"}
@@ -0,0 +1,16 @@
1
+ import { TokenKeys } from "@azure/msal-common/browser";
2
+ import { IWindowStorage } from "./IWindowStorage.js";
3
+ /**
4
+ * Returns a list of cache keys for all known accounts
5
+ * @param storage
6
+ * @returns
7
+ */
8
+ export declare function getAccountKeys(storage: IWindowStorage<string>): Array<string>;
9
+ /**
10
+ * Returns a list of cache keys for all known tokens
11
+ * @param clientId
12
+ * @param storage
13
+ * @returns
14
+ */
15
+ export declare function getTokenKeys(clientId: string, storage: IWindowStorage<string>): TokenKeys;
16
+ //# sourceMappingURL=CacheHelpers.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CacheHelpers.d.ts","sourceRoot":"","sources":["../../../src/cache/CacheHelpers.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAC;AAEvD,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAErD;;;;GAIG;AACH,wBAAgB,cAAc,CAAC,OAAO,EAAE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,MAAM,CAAC,CAO7E;AAED;;;;;GAKG;AACH,wBAAgB,YAAY,CACxB,QAAQ,EAAE,MAAM,EAChB,OAAO,EAAE,cAAc,CAAC,MAAM,CAAC,GAChC,SAAS,CAmBX"}
@@ -0,0 +1,46 @@
1
+ /*! @azure/msal-browser v4.15.0 2025-07-08 */
2
+ 'use strict';
3
+ import { StaticCacheKeys } from '../utils/BrowserConstants.mjs';
4
+
5
+ /*
6
+ * Copyright (c) Microsoft Corporation. All rights reserved.
7
+ * Licensed under the MIT License.
8
+ */
9
+ /**
10
+ * Returns a list of cache keys for all known accounts
11
+ * @param storage
12
+ * @returns
13
+ */
14
+ function getAccountKeys(storage) {
15
+ const accountKeys = storage.getItem(StaticCacheKeys.ACCOUNT_KEYS);
16
+ if (accountKeys) {
17
+ return JSON.parse(accountKeys);
18
+ }
19
+ return [];
20
+ }
21
+ /**
22
+ * Returns a list of cache keys for all known tokens
23
+ * @param clientId
24
+ * @param storage
25
+ * @returns
26
+ */
27
+ function getTokenKeys(clientId, storage) {
28
+ const item = storage.getItem(`${StaticCacheKeys.TOKEN_KEYS}.${clientId}`);
29
+ if (item) {
30
+ const tokenKeys = JSON.parse(item);
31
+ if (tokenKeys &&
32
+ tokenKeys.hasOwnProperty("idToken") &&
33
+ tokenKeys.hasOwnProperty("accessToken") &&
34
+ tokenKeys.hasOwnProperty("refreshToken")) {
35
+ return tokenKeys;
36
+ }
37
+ }
38
+ return {
39
+ idToken: [],
40
+ accessToken: [],
41
+ refreshToken: [],
42
+ };
43
+ }
44
+
45
+ export { getAccountKeys, getTokenKeys };
46
+ //# sourceMappingURL=CacheHelpers.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CacheHelpers.mjs","sources":["../../../../src/cache/CacheHelpers.ts"],"sourcesContent":[null],"names":[],"mappings":";;;;AAAA;;;AAGG;AAMH;;;;AAIG;AACG,SAAU,cAAc,CAAC,OAA+B,EAAA;IAC1D,MAAM,WAAW,GAAG,OAAO,CAAC,OAAO,CAAC,eAAe,CAAC,YAAY,CAAC,CAAC;AAClE,IAAA,IAAI,WAAW,EAAE;AACb,QAAA,OAAO,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;AAClC,KAAA;AAED,IAAA,OAAO,EAAE,CAAC;AACd,CAAC;AAED;;;;;AAKG;AACa,SAAA,YAAY,CACxB,QAAgB,EAChB,OAA+B,EAAA;AAE/B,IAAA,MAAM,IAAI,GAAG,OAAO,CAAC,OAAO,CAAC,CAAA,EAAG,eAAe,CAAC,UAAU,CAAA,CAAA,EAAI,QAAQ,CAAA,CAAE,CAAC,CAAC;AAC1E,IAAA,IAAI,IAAI,EAAE;QACN,MAAM,SAAS,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;AACnC,QAAA,IACI,SAAS;AACT,YAAA,SAAS,CAAC,cAAc,CAAC,SAAS,CAAC;AACnC,YAAA,SAAS,CAAC,cAAc,CAAC,aAAa,CAAC;AACvC,YAAA,SAAS,CAAC,cAAc,CAAC,cAAc,CAAC,EAC1C;AACE,YAAA,OAAO,SAAsB,CAAC;AACjC,SAAA;AACJ,KAAA;IAED,OAAO;AACH,QAAA,OAAO,EAAE,EAAE;AACX,QAAA,WAAW,EAAE,EAAE;AACf,QAAA,YAAY,EAAE,EAAE;KACnB,CAAC;AACN;;;;"}
@@ -0,0 +1,22 @@
1
+ import { IWindowStorage } from "./IWindowStorage.js";
2
+ export declare const SameSiteOptions: {
3
+ readonly Lax: "Lax";
4
+ readonly None: "None";
5
+ };
6
+ export type SameSiteOptions = (typeof SameSiteOptions)[keyof typeof SameSiteOptions];
7
+ export declare class CookieStorage implements IWindowStorage<string> {
8
+ initialize(): Promise<void>;
9
+ getItem(key: string): string | null;
10
+ getUserData(): string | null;
11
+ setItem(key: string, value: string, cookieLifeDays?: number, secure?: boolean, sameSite?: SameSiteOptions): void;
12
+ setUserData(): Promise<void>;
13
+ removeItem(key: string): void;
14
+ getKeys(): string[];
15
+ containsKey(key: string): boolean;
16
+ }
17
+ /**
18
+ * Get cookie expiration time
19
+ * @param cookieLifeDays
20
+ */
21
+ export declare function getCookieExpirationTime(cookieLifeDays: number): string;
22
+ //# sourceMappingURL=CookieStorage.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CookieStorage.d.ts","sourceRoot":"","sources":["../../../src/cache/CookieStorage.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAKrD,eAAO,MAAM,eAAe;;;CAGlB,CAAC;AACX,MAAM,MAAM,eAAe,GACvB,CAAC,OAAO,eAAe,CAAC,CAAC,MAAM,OAAO,eAAe,CAAC,CAAC;AAE3D,qBAAa,aAAc,YAAW,cAAc,CAAC,MAAM,CAAC;IACxD,UAAU,IAAI,OAAO,CAAC,IAAI,CAAC;IAI3B,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI;IAenC,WAAW,IAAI,MAAM,GAAG,IAAI;IAI5B,OAAO,CACH,GAAG,EAAE,MAAM,EACX,KAAK,EAAE,MAAM,EACb,cAAc,CAAC,EAAE,MAAM,EACvB,MAAM,GAAE,OAAc,EACtB,QAAQ,GAAE,eAAqC,GAChD,IAAI;IAkBD,WAAW,IAAI,OAAO,CAAC,IAAI,CAAC;IAMlC,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAK7B,OAAO,IAAI,MAAM,EAAE;IAWnB,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO;CAGpC;AAED;;;GAGG;AACH,wBAAgB,uBAAuB,CAAC,cAAc,EAAE,MAAM,GAAG,MAAM,CAMtE"}
@@ -0,0 +1,78 @@
1
+ /*! @azure/msal-browser v4.15.0 2025-07-08 */
2
+ 'use strict';
3
+ import { createClientAuthError, ClientAuthErrorCodes } from '@azure/msal-common/browser';
4
+
5
+ /*
6
+ * Copyright (c) Microsoft Corporation. All rights reserved.
7
+ * Licensed under the MIT License.
8
+ */
9
+ // Cookie life calculation (hours * minutes * seconds * ms)
10
+ const COOKIE_LIFE_MULTIPLIER = 24 * 60 * 60 * 1000;
11
+ const SameSiteOptions = {
12
+ Lax: "Lax",
13
+ None: "None",
14
+ };
15
+ class CookieStorage {
16
+ initialize() {
17
+ return Promise.resolve();
18
+ }
19
+ getItem(key) {
20
+ const name = `${encodeURIComponent(key)}`;
21
+ const cookieList = document.cookie.split(";");
22
+ for (let i = 0; i < cookieList.length; i++) {
23
+ const cookie = cookieList[i];
24
+ const [key, ...rest] = decodeURIComponent(cookie).trim().split("=");
25
+ const value = rest.join("=");
26
+ if (key === name) {
27
+ return value;
28
+ }
29
+ }
30
+ return "";
31
+ }
32
+ getUserData() {
33
+ throw createClientAuthError(ClientAuthErrorCodes.methodNotImplemented);
34
+ }
35
+ setItem(key, value, cookieLifeDays, secure = true, sameSite = SameSiteOptions.Lax) {
36
+ let cookieStr = `${encodeURIComponent(key)}=${encodeURIComponent(value)};path=/;SameSite=${sameSite};`;
37
+ if (cookieLifeDays) {
38
+ const expireTime = getCookieExpirationTime(cookieLifeDays);
39
+ cookieStr += `expires=${expireTime};`;
40
+ }
41
+ if (secure || sameSite === SameSiteOptions.None) {
42
+ // SameSite None requires Secure flag
43
+ cookieStr += "Secure;";
44
+ }
45
+ document.cookie = cookieStr;
46
+ }
47
+ async setUserData() {
48
+ return Promise.reject(createClientAuthError(ClientAuthErrorCodes.methodNotImplemented));
49
+ }
50
+ removeItem(key) {
51
+ // Setting expiration to -1 removes it
52
+ this.setItem(key, "", -1);
53
+ }
54
+ getKeys() {
55
+ const cookieList = document.cookie.split(";");
56
+ const keys = [];
57
+ cookieList.forEach((cookie) => {
58
+ const cookieParts = decodeURIComponent(cookie).trim().split("=");
59
+ keys.push(cookieParts[0]);
60
+ });
61
+ return keys;
62
+ }
63
+ containsKey(key) {
64
+ return this.getKeys().includes(key);
65
+ }
66
+ }
67
+ /**
68
+ * Get cookie expiration time
69
+ * @param cookieLifeDays
70
+ */
71
+ function getCookieExpirationTime(cookieLifeDays) {
72
+ const today = new Date();
73
+ const expr = new Date(today.getTime() + cookieLifeDays * COOKIE_LIFE_MULTIPLIER);
74
+ return expr.toUTCString();
75
+ }
76
+
77
+ export { CookieStorage, SameSiteOptions, getCookieExpirationTime };
78
+ //# sourceMappingURL=CookieStorage.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CookieStorage.mjs","sources":["../../../../src/cache/CookieStorage.ts"],"sourcesContent":[null],"names":[],"mappings":"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"}
@@ -0,0 +1,57 @@
1
+ import { IAsyncStorage } from "./IAsyncStorage.js";
2
+ /**
3
+ * Storage wrapper for IndexedDB storage in browsers: https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API
4
+ */
5
+ export declare class DatabaseStorage<T> implements IAsyncStorage<T> {
6
+ private db;
7
+ private dbName;
8
+ private tableName;
9
+ private version;
10
+ private dbOpen;
11
+ constructor();
12
+ /**
13
+ * Opens IndexedDB instance.
14
+ */
15
+ open(): Promise<void>;
16
+ /**
17
+ * Closes the connection to IndexedDB database when all pending transactions
18
+ * complete.
19
+ */
20
+ closeConnection(): void;
21
+ /**
22
+ * Opens database if it's not already open
23
+ */
24
+ private validateDbIsOpen;
25
+ /**
26
+ * Retrieves item from IndexedDB instance.
27
+ * @param key
28
+ */
29
+ getItem(key: string): Promise<T | null>;
30
+ /**
31
+ * Adds item to IndexedDB under given key
32
+ * @param key
33
+ * @param payload
34
+ */
35
+ setItem(key: string, payload: T): Promise<void>;
36
+ /**
37
+ * Removes item from IndexedDB under given key
38
+ * @param key
39
+ */
40
+ removeItem(key: string): Promise<void>;
41
+ /**
42
+ * Get all the keys from the storage object as an iterable array of strings.
43
+ */
44
+ getKeys(): Promise<string[]>;
45
+ /**
46
+ *
47
+ * Checks whether there is an object under the search key in the object store
48
+ */
49
+ containsKey(key: string): Promise<boolean>;
50
+ /**
51
+ * Deletes the MSAL database. The database is deleted rather than cleared to make it possible
52
+ * for client applications to downgrade to a previous MSAL version without worrying about forward compatibility issues
53
+ * with IndexedDB database versions.
54
+ */
55
+ deleteDatabase(): Promise<boolean>;
56
+ }
57
+ //# sourceMappingURL=DatabaseStorage.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DatabaseStorage.d.ts","sourceRoot":"","sources":["../../../src/cache/DatabaseStorage.ts"],"names":[],"mappings":"AAcA,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AAcnD;;GAEG;AACH,qBAAa,eAAe,CAAC,CAAC,CAAE,YAAW,aAAa,CAAC,CAAC,CAAC;IACvD,OAAO,CAAC,EAAE,CAA0B;IACpC,OAAO,CAAC,MAAM,CAAS;IACvB,OAAO,CAAC,SAAS,CAAS;IAC1B,OAAO,CAAC,OAAO,CAAS;IACxB,OAAO,CAAC,MAAM,CAAU;;IASxB;;OAEG;IACG,IAAI,IAAI,OAAO,CAAC,IAAI,CAAC;IA0B3B;;;OAGG;IACH,eAAe,IAAI,IAAI;IAQvB;;OAEG;YACW,gBAAgB;IAM9B;;;OAGG;IACG,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC,GAAG,IAAI,CAAC;IA+B7C;;;;OAIG;IACG,OAAO,CAAC,GAAG,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC;IAgCrD;;;OAGG;IACG,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IA8B5C;;OAEG;IACG,OAAO,IAAI,OAAO,CAAC,MAAM,EAAE,CAAC;IA+BlC;;;OAGG;IACG,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;IAgChD;;;;OAIG;IACG,cAAc,IAAI,OAAO,CAAC,OAAO,CAAC;CAwB3C"}
@@ -0,0 +1,209 @@
1
+ /*! @azure/msal-browser v4.15.0 2025-07-08 */
2
+ 'use strict';
3
+ import { createBrowserAuthError } from '../error/BrowserAuthError.mjs';
4
+ import { DB_NAME, DB_VERSION, DB_TABLE_NAME } from '../utils/BrowserConstants.mjs';
5
+ import { databaseUnavailable, databaseNotOpen } from '../error/BrowserAuthErrorCodes.mjs';
6
+
7
+ /*
8
+ * Copyright (c) Microsoft Corporation. All rights reserved.
9
+ * Licensed under the MIT License.
10
+ */
11
+ /**
12
+ * Storage wrapper for IndexedDB storage in browsers: https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API
13
+ */
14
+ class DatabaseStorage {
15
+ constructor() {
16
+ this.dbName = DB_NAME;
17
+ this.version = DB_VERSION;
18
+ this.tableName = DB_TABLE_NAME;
19
+ this.dbOpen = false;
20
+ }
21
+ /**
22
+ * Opens IndexedDB instance.
23
+ */
24
+ async open() {
25
+ return new Promise((resolve, reject) => {
26
+ const openDB = window.indexedDB.open(this.dbName, this.version);
27
+ openDB.addEventListener("upgradeneeded", (e) => {
28
+ const event = e;
29
+ event.target.result.createObjectStore(this.tableName);
30
+ });
31
+ openDB.addEventListener("success", (e) => {
32
+ const event = e;
33
+ this.db = event.target.result;
34
+ this.dbOpen = true;
35
+ resolve();
36
+ });
37
+ openDB.addEventListener("error", () => reject(createBrowserAuthError(databaseUnavailable)));
38
+ });
39
+ }
40
+ /**
41
+ * Closes the connection to IndexedDB database when all pending transactions
42
+ * complete.
43
+ */
44
+ closeConnection() {
45
+ const db = this.db;
46
+ if (db && this.dbOpen) {
47
+ db.close();
48
+ this.dbOpen = false;
49
+ }
50
+ }
51
+ /**
52
+ * Opens database if it's not already open
53
+ */
54
+ async validateDbIsOpen() {
55
+ if (!this.dbOpen) {
56
+ return this.open();
57
+ }
58
+ }
59
+ /**
60
+ * Retrieves item from IndexedDB instance.
61
+ * @param key
62
+ */
63
+ async getItem(key) {
64
+ await this.validateDbIsOpen();
65
+ return new Promise((resolve, reject) => {
66
+ // TODO: Add timeouts?
67
+ if (!this.db) {
68
+ return reject(createBrowserAuthError(databaseNotOpen));
69
+ }
70
+ const transaction = this.db.transaction([this.tableName], "readonly");
71
+ const objectStore = transaction.objectStore(this.tableName);
72
+ const dbGet = objectStore.get(key);
73
+ dbGet.addEventListener("success", (e) => {
74
+ const event = e;
75
+ this.closeConnection();
76
+ resolve(event.target.result);
77
+ });
78
+ dbGet.addEventListener("error", (e) => {
79
+ this.closeConnection();
80
+ reject(e);
81
+ });
82
+ });
83
+ }
84
+ /**
85
+ * Adds item to IndexedDB under given key
86
+ * @param key
87
+ * @param payload
88
+ */
89
+ async setItem(key, payload) {
90
+ await this.validateDbIsOpen();
91
+ return new Promise((resolve, reject) => {
92
+ // TODO: Add timeouts?
93
+ if (!this.db) {
94
+ return reject(createBrowserAuthError(databaseNotOpen));
95
+ }
96
+ const transaction = this.db.transaction([this.tableName], "readwrite");
97
+ const objectStore = transaction.objectStore(this.tableName);
98
+ const dbPut = objectStore.put(payload, key);
99
+ dbPut.addEventListener("success", () => {
100
+ this.closeConnection();
101
+ resolve();
102
+ });
103
+ dbPut.addEventListener("error", (e) => {
104
+ this.closeConnection();
105
+ reject(e);
106
+ });
107
+ });
108
+ }
109
+ /**
110
+ * Removes item from IndexedDB under given key
111
+ * @param key
112
+ */
113
+ async removeItem(key) {
114
+ await this.validateDbIsOpen();
115
+ return new Promise((resolve, reject) => {
116
+ if (!this.db) {
117
+ return reject(createBrowserAuthError(databaseNotOpen));
118
+ }
119
+ const transaction = this.db.transaction([this.tableName], "readwrite");
120
+ const objectStore = transaction.objectStore(this.tableName);
121
+ const dbDelete = objectStore.delete(key);
122
+ dbDelete.addEventListener("success", () => {
123
+ this.closeConnection();
124
+ resolve();
125
+ });
126
+ dbDelete.addEventListener("error", (e) => {
127
+ this.closeConnection();
128
+ reject(e);
129
+ });
130
+ });
131
+ }
132
+ /**
133
+ * Get all the keys from the storage object as an iterable array of strings.
134
+ */
135
+ async getKeys() {
136
+ await this.validateDbIsOpen();
137
+ return new Promise((resolve, reject) => {
138
+ if (!this.db) {
139
+ return reject(createBrowserAuthError(databaseNotOpen));
140
+ }
141
+ const transaction = this.db.transaction([this.tableName], "readonly");
142
+ const objectStore = transaction.objectStore(this.tableName);
143
+ const dbGetKeys = objectStore.getAllKeys();
144
+ dbGetKeys.addEventListener("success", (e) => {
145
+ const event = e;
146
+ this.closeConnection();
147
+ resolve(event.target.result);
148
+ });
149
+ dbGetKeys.addEventListener("error", (e) => {
150
+ this.closeConnection();
151
+ reject(e);
152
+ });
153
+ });
154
+ }
155
+ /**
156
+ *
157
+ * Checks whether there is an object under the search key in the object store
158
+ */
159
+ async containsKey(key) {
160
+ await this.validateDbIsOpen();
161
+ return new Promise((resolve, reject) => {
162
+ if (!this.db) {
163
+ return reject(createBrowserAuthError(databaseNotOpen));
164
+ }
165
+ const transaction = this.db.transaction([this.tableName], "readonly");
166
+ const objectStore = transaction.objectStore(this.tableName);
167
+ const dbContainsKey = objectStore.count(key);
168
+ dbContainsKey.addEventListener("success", (e) => {
169
+ const event = e;
170
+ this.closeConnection();
171
+ resolve(event.target.result === 1);
172
+ });
173
+ dbContainsKey.addEventListener("error", (e) => {
174
+ this.closeConnection();
175
+ reject(e);
176
+ });
177
+ });
178
+ }
179
+ /**
180
+ * Deletes the MSAL database. The database is deleted rather than cleared to make it possible
181
+ * for client applications to downgrade to a previous MSAL version without worrying about forward compatibility issues
182
+ * with IndexedDB database versions.
183
+ */
184
+ async deleteDatabase() {
185
+ // Check if database being deleted exists
186
+ if (this.db && this.dbOpen) {
187
+ this.closeConnection();
188
+ }
189
+ return new Promise((resolve, reject) => {
190
+ const deleteDbRequest = window.indexedDB.deleteDatabase(DB_NAME);
191
+ const id = setTimeout(() => reject(false), 200); // Reject if events aren't raised within 200ms
192
+ deleteDbRequest.addEventListener("success", () => {
193
+ clearTimeout(id);
194
+ return resolve(true);
195
+ });
196
+ deleteDbRequest.addEventListener("blocked", () => {
197
+ clearTimeout(id);
198
+ return resolve(true);
199
+ });
200
+ deleteDbRequest.addEventListener("error", () => {
201
+ clearTimeout(id);
202
+ return reject(false);
203
+ });
204
+ });
205
+ }
206
+ }
207
+
208
+ export { DatabaseStorage };
209
+ //# sourceMappingURL=DatabaseStorage.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DatabaseStorage.mjs","sources":["../../../../src/cache/DatabaseStorage.ts"],"sourcesContent":[null],"names":["BrowserAuthErrorCodes.databaseUnavailable","BrowserAuthErrorCodes.databaseNotOpen"],"mappings":"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"}
@@ -0,0 +1,28 @@
1
+ export interface IAsyncStorage<T> {
2
+ /**
3
+ * Get the item from the asynchronous storage object matching the given key.
4
+ * @param key
5
+ */
6
+ getItem(key: string): Promise<T | null>;
7
+ /**
8
+ * Sets the item in the asynchronous storage object with the given key.
9
+ * @param key
10
+ * @param value
11
+ */
12
+ setItem(key: string, value: T): Promise<void>;
13
+ /**
14
+ * Removes the item in the asynchronous storage object matching the given key.
15
+ * @param key
16
+ */
17
+ removeItem(key: string): Promise<void>;
18
+ /**
19
+ * Get all the keys from the asynchronous storage object as an iterable array of strings.
20
+ */
21
+ getKeys(): Promise<string[]>;
22
+ /**
23
+ * Returns true or false if the given key is present in the cache.
24
+ * @param key
25
+ */
26
+ containsKey(key: string): Promise<boolean>;
27
+ }
28
+ //# sourceMappingURL=IAsyncStorage.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IAsyncStorage.d.ts","sourceRoot":"","sources":["../../../src/cache/IAsyncStorage.ts"],"names":[],"mappings":"AAKA,MAAM,WAAW,aAAa,CAAC,CAAC;IAC5B;;;OAGG;IACH,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC;IAExC;;;;OAIG;IACH,OAAO,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE9C;;;OAGG;IACH,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAEvC;;OAEG;IACH,OAAO,IAAI,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC;IAE7B;;;OAGG;IACH,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;CAC9C"}
@@ -0,0 +1,12 @@
1
+ import type { ExternalTokenResponse } from "@azure/msal-common/browser";
2
+ import type { SilentRequest } from "../request/SilentRequest.js";
3
+ import type { LoadTokenOptions } from "./TokenCache.js";
4
+ import type { AuthenticationResult } from "../response/AuthenticationResult.js";
5
+ export interface ITokenCache {
6
+ /**
7
+ * API to side-load tokens to MSAL cache
8
+ * @returns `AuthenticationResult` for the response that was loaded.
9
+ */
10
+ loadExternalTokens(request: SilentRequest, response: ExternalTokenResponse, options: LoadTokenOptions): Promise<AuthenticationResult>;
11
+ }
12
+ //# sourceMappingURL=ITokenCache.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ITokenCache.d.ts","sourceRoot":"","sources":["../../../src/cache/ITokenCache.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC;AACxE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AACjE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AACxD,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,qCAAqC,CAAC;AAEhF,MAAM,WAAW,WAAW;IACxB;;;OAGG;IACH,kBAAkB,CACd,OAAO,EAAE,aAAa,EACtB,QAAQ,EAAE,qBAAqB,EAC/B,OAAO,EAAE,gBAAgB,GAC1B,OAAO,CAAC,oBAAoB,CAAC,CAAC;CACpC"}
@@ -0,0 +1,40 @@
1
+ export interface IWindowStorage<T> {
2
+ /**
3
+ * Async initializer
4
+ */
5
+ initialize(correlationId: string): Promise<void>;
6
+ /**
7
+ * Get the item from the window storage object matching the given key.
8
+ * @param key
9
+ */
10
+ getItem(key: string): T | null;
11
+ /**
12
+ * Getter for sensitive data that may contain PII.
13
+ */
14
+ getUserData(key: string): T | null;
15
+ /**
16
+ * Sets the item in the window storage object with the given key.
17
+ * @param key
18
+ * @param value
19
+ */
20
+ setItem(key: string, value: T): void;
21
+ /**
22
+ * Setter for sensitive data that may contain PII.
23
+ */
24
+ setUserData(key: string, value: T, correlationId: string, timestamp: string): Promise<void>;
25
+ /**
26
+ * Removes the item in the window storage object matching the given key.
27
+ * @param key
28
+ */
29
+ removeItem(key: string): void;
30
+ /**
31
+ * Get all the keys from the window storage object as an iterable array of strings.
32
+ */
33
+ getKeys(): string[];
34
+ /**
35
+ * Returns true or false if the given key is present in the cache.
36
+ * @param key
37
+ */
38
+ containsKey(key: string): boolean;
39
+ }
40
+ //# sourceMappingURL=IWindowStorage.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IWindowStorage.d.ts","sourceRoot":"","sources":["../../../src/cache/IWindowStorage.ts"],"names":[],"mappings":"AAKA,MAAM,WAAW,cAAc,CAAC,CAAC;IAC7B;;OAEG;IACH,UAAU,CAAC,aAAa,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACjD;;;OAGG;IACH,OAAO,CAAC,GAAG,EAAE,MAAM,GAAG,CAAC,GAAG,IAAI,CAAC;IAE/B;;OAEG;IACH,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,CAAC,GAAG,IAAI,CAAC;IAEnC;;;;OAIG;IACH,OAAO,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,CAAC,GAAG,IAAI,CAAC;IAErC;;OAEG;IACH,WAAW,CACP,GAAG,EAAE,MAAM,EACX,KAAK,EAAE,CAAC,EACR,aAAa,EAAE,MAAM,EACrB,SAAS,EAAE,MAAM,GAClB,OAAO,CAAC,IAAI,CAAC,CAAC;IAEjB;;;OAGG;IACH,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,CAAC;IAE9B;;OAEG;IACH,OAAO,IAAI,MAAM,EAAE,CAAC;IAEpB;;;OAGG;IACH,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CACrC"}