@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,78 @@
1
+ import { ICrypto, Logger, ExternalTokenResponse } from "@azure/msal-common/browser";
2
+ import { BrowserConfiguration } from "../config/Configuration.js";
3
+ import type { SilentRequest } from "../request/SilentRequest.js";
4
+ import { BrowserCacheManager } from "./BrowserCacheManager.js";
5
+ import type { ITokenCache } from "./ITokenCache.js";
6
+ import type { AuthenticationResult } from "../response/AuthenticationResult.js";
7
+ export type LoadTokenOptions = {
8
+ clientInfo?: string;
9
+ expiresOn?: number;
10
+ extendedExpiresOn?: number;
11
+ };
12
+ /**
13
+ * Token cache manager
14
+ */
15
+ export declare class TokenCache implements ITokenCache {
16
+ isBrowserEnvironment: boolean;
17
+ protected config: BrowserConfiguration;
18
+ private storage;
19
+ private logger;
20
+ private cryptoObj;
21
+ constructor(configuration: BrowserConfiguration, storage: BrowserCacheManager, logger: Logger, cryptoObj: ICrypto);
22
+ /**
23
+ * API to load tokens to msal-browser cache.
24
+ * @param request
25
+ * @param response
26
+ * @param options
27
+ * @returns `AuthenticationResult` for the response that was loaded.
28
+ */
29
+ loadExternalTokens(request: SilentRequest, response: ExternalTokenResponse, options: LoadTokenOptions): Promise<AuthenticationResult>;
30
+ /**
31
+ * Helper function to load account to msal-browser cache
32
+ * @param idToken
33
+ * @param environment
34
+ * @param clientInfo
35
+ * @param authorityType
36
+ * @param requestHomeAccountId
37
+ * @returns `AccountEntity`
38
+ */
39
+ private loadAccount;
40
+ /**
41
+ * Helper function to load id tokens to msal-browser cache
42
+ * @param idToken
43
+ * @param homeAccountId
44
+ * @param environment
45
+ * @param tenantId
46
+ * @returns `IdTokenEntity`
47
+ */
48
+ private loadIdToken;
49
+ /**
50
+ * Helper function to load access tokens to msal-browser cache
51
+ * @param request
52
+ * @param response
53
+ * @param homeAccountId
54
+ * @param environment
55
+ * @param tenantId
56
+ * @returns `AccessTokenEntity`
57
+ */
58
+ private loadAccessToken;
59
+ /**
60
+ * Helper function to load refresh tokens to msal-browser cache
61
+ * @param request
62
+ * @param response
63
+ * @param homeAccountId
64
+ * @param environment
65
+ * @returns `RefreshTokenEntity`
66
+ */
67
+ private loadRefreshToken;
68
+ /**
69
+ * Helper function to generate an `AuthenticationResult` for the result.
70
+ * @param request
71
+ * @param idTokenObj
72
+ * @param cacheRecord
73
+ * @param authority
74
+ * @returns `AuthenticationResult`
75
+ */
76
+ private generateAuthenticationResult;
77
+ }
78
+ //# sourceMappingURL=TokenCache.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TokenCache.d.ts","sourceRoot":"","sources":["../../../../src/cache/TokenCache.ts"],"names":[],"mappings":"AAKA,OAAO,EAEH,OAAO,EAEP,MAAM,EAIN,qBAAqB,EASxB,MAAM,4BAA4B,CAAC;AACpC,OAAO,EAAE,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AAClE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AACjE,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC/D,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAKpD,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,qCAAqC,CAAC;AAIhF,MAAM,MAAM,gBAAgB,GAAG;IAC3B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,iBAAiB,CAAC,EAAE,MAAM,CAAC;CAC9B,CAAC;AAEF;;GAEG;AACH,qBAAa,UAAW,YAAW,WAAW;IAEnC,oBAAoB,EAAE,OAAO,CAAC;IAErC,SAAS,CAAC,MAAM,EAAE,oBAAoB,CAAC;IAEvC,OAAO,CAAC,OAAO,CAAsB;IAErC,OAAO,CAAC,MAAM,CAAS;IAEvB,OAAO,CAAC,SAAS,CAAU;gBAGvB,aAAa,EAAE,oBAAoB,EACnC,OAAO,EAAE,mBAAmB,EAC5B,MAAM,EAAE,MAAM,EACd,SAAS,EAAE,OAAO;IAWtB;;;;;;OAMG;IACG,kBAAkB,CACpB,OAAO,EAAE,aAAa,EACtB,QAAQ,EAAE,qBAAqB,EAC/B,OAAO,EAAE,gBAAgB,GAC1B,OAAO,CAAC,oBAAoB,CAAC;IAkFhC;;;;;;;;OAQG;YACW,WAAW;IAqDzB;;;;;;;OAOG;YACW,WAAW;IAyBzB;;;;;;;;OAQG;YACW,eAAe;IA6D7B;;;;;;;OAOG;YACW,gBAAgB;IA+B9B;;;;;;;OAOG;IACH,OAAO,CAAC,4BAA4B;CAiDvC"}
@@ -0,0 +1,228 @@
1
+ import { SystemOptions, LoggerOptions, INetworkModule, ProtocolMode, OIDCOptions, AzureCloudOptions, ApplicationTelemetry, IPerformanceClient } from "@azure/msal-common/browser";
2
+ import { BrowserCacheLocation } from "../utils/BrowserConstants.js";
3
+ import { INavigationClient } from "../navigation/INavigationClient.js";
4
+ export declare const DEFAULT_POPUP_TIMEOUT_MS = 60000;
5
+ export declare const DEFAULT_IFRAME_TIMEOUT_MS = 10000;
6
+ export declare const DEFAULT_REDIRECT_TIMEOUT_MS = 30000;
7
+ export declare const DEFAULT_NATIVE_BROKER_HANDSHAKE_TIMEOUT_MS = 2000;
8
+ /**
9
+ * Use this to configure the auth options in the Configuration object
10
+ */
11
+ export type BrowserAuthOptions = {
12
+ /**
13
+ * Client ID of your app registered with our Application registration portal : https://portal.azure.com/#blade/Microsoft_AAD_IAM/ActiveDirectoryMenuBlade/RegisteredAppsPreview in Microsoft Identity Platform
14
+ */
15
+ clientId: string;
16
+ /**
17
+ * You can configure a specific authority, defaults to " " or "https://login.microsoftonline.com/common"
18
+ */
19
+ authority?: string;
20
+ /**
21
+ * An array of URIs that are known to be valid. Used in B2C scenarios.
22
+ */
23
+ knownAuthorities?: Array<string>;
24
+ /**
25
+ * A string containing the cloud discovery response. Used in AAD scenarios.
26
+ */
27
+ cloudDiscoveryMetadata?: string;
28
+ /**
29
+ * A string containing the .well-known/openid-configuration endpoint response
30
+ */
31
+ authorityMetadata?: string;
32
+ /**
33
+ * The redirect URI where authentication responses can be received by your application. It must exactly match one of the redirect URIs registered in the Azure portal.
34
+ */
35
+ redirectUri?: string;
36
+ /**
37
+ * The redirect URI where the window navigates after a successful logout.
38
+ */
39
+ postLogoutRedirectUri?: string | null;
40
+ /**
41
+ * Boolean indicating whether to navigate to the original request URL after the auth server navigates to the redirect URL.
42
+ */
43
+ navigateToLoginRequestUrl?: boolean;
44
+ /**
45
+ * Array of capabilities which will be added to the claims.access_token.xms_cc request property on every network request.
46
+ */
47
+ clientCapabilities?: Array<string>;
48
+ /**
49
+ * Enum that represents the protocol that msal follows. Used for configuring proper endpoints.
50
+ */
51
+ protocolMode?: ProtocolMode;
52
+ /**
53
+ * Enum that configures options for the OIDC protocol mode.
54
+ */
55
+ OIDCOptions?: OIDCOptions;
56
+ /**
57
+ * Enum that represents the Azure Cloud to use.
58
+ */
59
+ azureCloudOptions?: AzureCloudOptions;
60
+ /**
61
+ * Flag of whether to use the local metadata cache
62
+ */
63
+ skipAuthorityMetadataCache?: boolean;
64
+ /**
65
+ * App supports nested app auth or not; defaults to
66
+ *
67
+ * @deprecated This flag is deprecated and will be removed in the next major version. createNestablePublicClientApplication should be used instead.
68
+ */
69
+ supportsNestedAppAuth?: boolean;
70
+ /**
71
+ * Callback that will be passed the url that MSAL will navigate to in redirect flows. Returning false in the callback will stop navigation.
72
+ */
73
+ onRedirectNavigate?: (url: string) => boolean | void;
74
+ /**
75
+ * Flag of whether the STS will send back additional parameters to specify where the tokens should be retrieved from.
76
+ */
77
+ instanceAware?: boolean;
78
+ /**
79
+ * Flag of whether to encode query parameters
80
+ * @deprecated This flag is deprecated and will be removed in the next major version where all extra query params will be encoded by default.
81
+ */
82
+ encodeExtraQueryParams?: boolean;
83
+ };
84
+ /** @internal */
85
+ export type InternalAuthOptions = Omit<Required<BrowserAuthOptions>, "onRedirectNavigate"> & {
86
+ OIDCOptions: Required<OIDCOptions>;
87
+ onRedirectNavigate?: (url: string) => boolean | void;
88
+ };
89
+ /**
90
+ * Use this to configure the below cache configuration options:
91
+ */
92
+ export type CacheOptions = {
93
+ /**
94
+ * Used to specify the cacheLocation user wants to set. Valid values are "localStorage", "sessionStorage" and "memoryStorage".
95
+ */
96
+ cacheLocation?: BrowserCacheLocation | string;
97
+ /**
98
+ * Used to specify the temporaryCacheLocation user wants to set. Valid values are "localStorage", "sessionStorage" and "memoryStorage".
99
+ * @deprecated This option is deprecated and will be removed in the next major version.
100
+ */
101
+ temporaryCacheLocation?: BrowserCacheLocation | string;
102
+ /**
103
+ * If set, MSAL stores the auth request state required for validation of the auth flows in the browser cookies. By default this flag is set to false.
104
+ * @deprecated This option is deprecated and will be removed in the next major version.
105
+ */
106
+ storeAuthStateInCookie?: boolean;
107
+ /**
108
+ * If set, MSAL sets the "Secure" flag on cookies so they can only be sent over HTTPS. By default this flag is set to true.
109
+ * @deprecated This option will be removed in the next major version and all cookies set will include the Secure attribute.
110
+ */
111
+ secureCookies?: boolean;
112
+ /**
113
+ * If set, MSAL will attempt to migrate cache entries from older versions on initialization. By default this flag is set to true if cacheLocation is localStorage, otherwise false.
114
+ * @deprecated This option is deprecated and will be removed in the next major version.
115
+ */
116
+ cacheMigrationEnabled?: boolean;
117
+ /**
118
+ * Flag that determines whether access tokens are stored based on requested claims
119
+ * @deprecated This option is deprecated and will be removed in the next major version.
120
+ */
121
+ claimsBasedCachingEnabled?: boolean;
122
+ };
123
+ export type BrowserSystemOptions = SystemOptions & {
124
+ /**
125
+ * Used to initialize the Logger object (See ClientConfiguration.ts)
126
+ */
127
+ loggerOptions?: LoggerOptions;
128
+ /**
129
+ * Network interface implementation
130
+ */
131
+ networkClient?: INetworkModule;
132
+ /**
133
+ * Override the methods used to navigate to other webpages. Particularly useful if you are using a client-side router
134
+ */
135
+ navigationClient?: INavigationClient;
136
+ /**
137
+ * Sets the timeout for waiting for a response hash in a popup. Will take precedence over loadFrameTimeout if both are set.
138
+ */
139
+ windowHashTimeout?: number;
140
+ /**
141
+ * Sets the timeout for waiting for a response hash in an iframe. Will take precedence over loadFrameTimeout if both are set.
142
+ */
143
+ iframeHashTimeout?: number;
144
+ /**
145
+ * Sets the timeout for waiting for a response hash in an iframe or popup
146
+ */
147
+ loadFrameTimeout?: number;
148
+ /**
149
+ * Maximum time the library should wait for a frame to load
150
+ * @deprecated This was previously needed for older browsers which are no longer supported by MSAL.js. This option will be removed in the next major version
151
+ */
152
+ navigateFrameWait?: number;
153
+ /**
154
+ * Time to wait for redirection to occur before resolving promise
155
+ */
156
+ redirectNavigationTimeout?: number;
157
+ /**
158
+ * Sets whether popups are opened asynchronously. By default, this flag is set to false. When set to false, blank popups are opened before anything else happens. When set to true, popups are opened when making the network request.
159
+ */
160
+ asyncPopups?: boolean;
161
+ /**
162
+ * Flag to enable redirect opertaions when the app is rendered in an iframe (to support scenarios such as embedded B2C login).
163
+ */
164
+ allowRedirectInIframe?: boolean;
165
+ /**
166
+ * Flag to enable native broker support (e.g. acquiring tokens from WAM on Windows, MacBroker on Mac)
167
+ */
168
+ allowPlatformBroker?: boolean;
169
+ /**
170
+ * Sets the timeout for waiting for the native broker handshake to resolve
171
+ */
172
+ nativeBrokerHandshakeTimeout?: number;
173
+ /**
174
+ * Sets the interval length in milliseconds for polling the location attribute in popup windows (default is 30ms)
175
+ */
176
+ pollIntervalMilliseconds?: number;
177
+ };
178
+ /**
179
+ * Telemetry Options
180
+ */
181
+ export type BrowserTelemetryOptions = {
182
+ /**
183
+ * Telemetry information sent on request
184
+ * - appName: Unique string name of an application
185
+ * - appVersion: Version of the application using MSAL
186
+ */
187
+ application?: ApplicationTelemetry;
188
+ client?: IPerformanceClient;
189
+ };
190
+ /**
191
+ * This object allows you to configure important elements of MSAL functionality and is passed into the constructor of PublicClientApplication
192
+ */
193
+ export type Configuration = {
194
+ /**
195
+ * This is where you configure auth elements like clientID, authority used for authenticating against the Microsoft Identity Platform
196
+ */
197
+ auth: BrowserAuthOptions;
198
+ /**
199
+ * This is where you configure cache location and whether to store cache in cookies
200
+ */
201
+ cache?: CacheOptions;
202
+ /**
203
+ * This is where you can configure the network client, logger, token renewal offset
204
+ */
205
+ system?: BrowserSystemOptions;
206
+ /**
207
+ * This is where you can configure telemetry data and options
208
+ */
209
+ telemetry?: BrowserTelemetryOptions;
210
+ };
211
+ /** @internal */
212
+ export type BrowserConfiguration = {
213
+ auth: InternalAuthOptions;
214
+ cache: Required<CacheOptions>;
215
+ system: Required<BrowserSystemOptions>;
216
+ telemetry: Required<BrowserTelemetryOptions>;
217
+ };
218
+ /**
219
+ * MSAL function that sets the default options when not explicitly configured from app developer
220
+ *
221
+ * @param auth
222
+ * @param cache
223
+ * @param system
224
+ *
225
+ * @returns Configuration object
226
+ */
227
+ export declare function buildConfiguration({ auth: userInputAuth, cache: userInputCache, system: userInputSystem, telemetry: userInputTelemetry, }: Configuration, isBrowserEnvironment: boolean): BrowserConfiguration;
228
+ //# sourceMappingURL=Configuration.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Configuration.d.ts","sourceRoot":"","sources":["../../../../src/config/Configuration.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,6 @@
1
+ import { IController } from "./IController.js";
2
+ import { Configuration } from "../config/Configuration.js";
3
+ import { InitializeApplicationRequest } from "../request/InitializeApplicationRequest.js";
4
+ export declare function createV3Controller(config: Configuration, request?: InitializeApplicationRequest): Promise<IController>;
5
+ export declare function createController(config: Configuration): Promise<IController | null>;
6
+ //# sourceMappingURL=ControllerFactory.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ControllerFactory.d.ts","sourceRoot":"","sources":["../../../../src/controllers/ControllerFactory.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAC/C,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAC;AAG3D,OAAO,EAAE,4BAA4B,EAAE,MAAM,4CAA4C,CAAC;AAE1F,wBAAsB,kBAAkB,CACpC,MAAM,EAAE,aAAa,EACrB,OAAO,CAAC,EAAE,4BAA4B,GACvC,OAAO,CAAC,WAAW,CAAC,CAKtB;AAED,wBAAsB,gBAAgB,CAClC,MAAM,EAAE,aAAa,GACtB,OAAO,CAAC,WAAW,GAAG,IAAI,CAAC,CAgB7B"}
@@ -0,0 +1,59 @@
1
+ import { AccountInfo, Logger, PerformanceCallbackFunction, IPerformanceClient, AccountFilter } from "@azure/msal-common/browser";
2
+ import { RedirectRequest } from "../request/RedirectRequest.js";
3
+ import { PopupRequest } from "../request/PopupRequest.js";
4
+ import { SilentRequest } from "../request/SilentRequest.js";
5
+ import { SsoSilentRequest } from "../request/SsoSilentRequest.js";
6
+ import { EndSessionRequest } from "../request/EndSessionRequest.js";
7
+ import { ApiId, WrapperSKU } from "../utils/BrowserConstants.js";
8
+ import { INavigationClient } from "../navigation/INavigationClient.js";
9
+ import { EndSessionPopupRequest } from "../request/EndSessionPopupRequest.js";
10
+ import { ITokenCache } from "../cache/ITokenCache.js";
11
+ import { AuthorizationCodeRequest } from "../request/AuthorizationCodeRequest.js";
12
+ import { BrowserConfiguration } from "../config/Configuration.js";
13
+ import { AuthenticationResult } from "../response/AuthenticationResult.js";
14
+ import { EventCallbackFunction } from "../event/EventMessage.js";
15
+ import { ClearCacheRequest } from "../request/ClearCacheRequest.js";
16
+ import { InitializeApplicationRequest } from "../request/InitializeApplicationRequest.js";
17
+ import { EventType } from "../event/EventType.js";
18
+ export interface IController {
19
+ initialize(request?: InitializeApplicationRequest, isBroker?: boolean): Promise<void>;
20
+ acquireTokenPopup(request: PopupRequest): Promise<AuthenticationResult>;
21
+ acquireTokenRedirect(request: RedirectRequest): Promise<void>;
22
+ acquireTokenSilent(silentRequest: SilentRequest): Promise<AuthenticationResult>;
23
+ acquireTokenByCode(request: AuthorizationCodeRequest): Promise<AuthenticationResult>;
24
+ acquireTokenNative(request: PopupRequest | SilentRequest | SsoSilentRequest, apiId: ApiId, accountId?: string): Promise<AuthenticationResult>;
25
+ addEventCallback(callback: EventCallbackFunction, eventTypes?: Array<EventType>): string | null;
26
+ removeEventCallback(callbackId: string): void;
27
+ addPerformanceCallback(callback: PerformanceCallbackFunction): string;
28
+ removePerformanceCallback(callbackId: string): boolean;
29
+ enableAccountStorageEvents(): void;
30
+ disableAccountStorageEvents(): void;
31
+ getAccount(accountFilter: AccountFilter): AccountInfo | null;
32
+ getAccountByHomeId(homeAccountId: string): AccountInfo | null;
33
+ getAccountByLocalId(localId: string): AccountInfo | null;
34
+ getAccountByUsername(userName: string): AccountInfo | null;
35
+ getAllAccounts(accountFilter?: AccountFilter): AccountInfo[];
36
+ handleRedirectPromise(hash?: string): Promise<AuthenticationResult | null>;
37
+ loginPopup(request?: PopupRequest): Promise<AuthenticationResult>;
38
+ loginRedirect(request?: RedirectRequest): Promise<void>;
39
+ logout(logoutRequest?: EndSessionRequest): Promise<void>;
40
+ logoutRedirect(logoutRequest?: EndSessionRequest): Promise<void>;
41
+ logoutPopup(logoutRequest?: EndSessionPopupRequest): Promise<void>;
42
+ clearCache(logoutRequest?: ClearCacheRequest): Promise<void>;
43
+ ssoSilent(request: SsoSilentRequest): Promise<AuthenticationResult>;
44
+ getTokenCache(): ITokenCache;
45
+ getLogger(): Logger;
46
+ setLogger(logger: Logger): void;
47
+ setActiveAccount(account: AccountInfo | null): void;
48
+ getActiveAccount(): AccountInfo | null;
49
+ initializeWrapperLibrary(sku: WrapperSKU, version: string): void;
50
+ setNavigationClient(navigationClient: INavigationClient): void;
51
+ /** @internal */
52
+ getConfiguration(): BrowserConfiguration;
53
+ hydrateCache(result: AuthenticationResult, request: SilentRequest | SsoSilentRequest | RedirectRequest | PopupRequest): Promise<void>;
54
+ /** @internal */
55
+ isBrowserEnv(): boolean;
56
+ /** @internal */
57
+ getPerformanceClient(): IPerformanceClient;
58
+ }
59
+ //# sourceMappingURL=IController.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IController.d.ts","sourceRoot":"","sources":["../../../../src/controllers/IController.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,203 @@
1
+ import { CommonAuthorizationUrlRequest, CommonSilentFlowRequest, PerformanceCallbackFunction, AccountInfo, Logger, ICrypto, IPerformanceClient, AccountFilter } from "@azure/msal-common/browser";
2
+ import { ITokenCache } from "../cache/ITokenCache.js";
3
+ import { BrowserConfiguration } from "../config/Configuration.js";
4
+ import { INavigationClient } from "../navigation/INavigationClient.js";
5
+ import { AuthorizationCodeRequest } from "../request/AuthorizationCodeRequest.js";
6
+ import { EndSessionPopupRequest } from "../request/EndSessionPopupRequest.js";
7
+ import { EndSessionRequest } from "../request/EndSessionRequest.js";
8
+ import { PopupRequest } from "../request/PopupRequest.js";
9
+ import { RedirectRequest } from "../request/RedirectRequest.js";
10
+ import { SilentRequest } from "../request/SilentRequest.js";
11
+ import { SsoSilentRequest } from "../request/SsoSilentRequest.js";
12
+ import { ApiId, WrapperSKU } from "../utils/BrowserConstants.js";
13
+ import { IController } from "./IController.js";
14
+ import { NestedAppOperatingContext } from "../operatingcontext/NestedAppOperatingContext.js";
15
+ import { IBridgeProxy } from "../naa/IBridgeProxy.js";
16
+ import { NestedAppAuthAdapter } from "../naa/mapping/NestedAppAuthAdapter.js";
17
+ import { EventHandler } from "../event/EventHandler.js";
18
+ import { EventType } from "../event/EventType.js";
19
+ import { EventCallbackFunction } from "../event/EventMessage.js";
20
+ import { AuthenticationResult } from "../response/AuthenticationResult.js";
21
+ import { BrowserCacheManager } from "../cache/BrowserCacheManager.js";
22
+ import { ClearCacheRequest } from "../request/ClearCacheRequest.js";
23
+ import { AccountContext } from "../naa/BridgeAccountContext.js";
24
+ import { InitializeApplicationRequest } from "../request/InitializeApplicationRequest.js";
25
+ export declare class NestedAppAuthController implements IController {
26
+ protected readonly operatingContext: NestedAppOperatingContext;
27
+ protected readonly bridgeProxy: IBridgeProxy;
28
+ protected readonly browserCrypto: ICrypto;
29
+ protected readonly config: BrowserConfiguration;
30
+ protected readonly browserStorage: BrowserCacheManager;
31
+ protected logger: Logger;
32
+ protected readonly performanceClient: IPerformanceClient;
33
+ protected readonly eventHandler: EventHandler;
34
+ protected readonly nestedAppAuthAdapter: NestedAppAuthAdapter;
35
+ protected currentAccountContext: AccountContext | null;
36
+ constructor(operatingContext: NestedAppOperatingContext);
37
+ /**
38
+ * Factory function to create a new instance of NestedAppAuthController
39
+ * @param operatingContext
40
+ * @returns Promise<IController>
41
+ */
42
+ static createController(operatingContext: NestedAppOperatingContext): Promise<IController>;
43
+ /**
44
+ * Specific implementation of initialize function for NestedAppAuthController
45
+ * @returns
46
+ */
47
+ initialize(request?: InitializeApplicationRequest, isBroker?: boolean): Promise<void>;
48
+ /**
49
+ * Validate the incoming request and add correlationId if not present
50
+ * @param request
51
+ * @returns
52
+ */
53
+ private ensureValidRequest;
54
+ /**
55
+ * Internal implementation of acquireTokenInteractive flow
56
+ * @param request
57
+ * @returns
58
+ */
59
+ private acquireTokenInteractive;
60
+ /**
61
+ * Internal implementation of acquireTokenSilent flow
62
+ * @param request
63
+ * @returns
64
+ */
65
+ private acquireTokenSilentInternal;
66
+ /**
67
+ * acquires tokens from cache
68
+ * @param request
69
+ * @returns
70
+ */
71
+ private acquireTokenFromCache;
72
+ /**
73
+ *
74
+ * @param request
75
+ * @returns
76
+ */
77
+ private acquireTokenFromCacheInternal;
78
+ /**
79
+ * acquireTokenPopup flow implementation
80
+ * @param request
81
+ * @returns
82
+ */
83
+ acquireTokenPopup(request: PopupRequest): Promise<AuthenticationResult>;
84
+ /**
85
+ * acquireTokenRedirect flow is not supported in nested app auth
86
+ * @param request
87
+ */
88
+ acquireTokenRedirect(request: RedirectRequest): Promise<void>;
89
+ /**
90
+ * acquireTokenSilent flow implementation
91
+ * @param silentRequest
92
+ * @returns
93
+ */
94
+ acquireTokenSilent(silentRequest: SilentRequest): Promise<AuthenticationResult>;
95
+ /**
96
+ * Hybrid flow is not currently supported in nested app auth
97
+ * @param request
98
+ */
99
+ acquireTokenByCode(request: AuthorizationCodeRequest): Promise<AuthenticationResult>;
100
+ /**
101
+ * acquireTokenNative flow is not currently supported in nested app auth
102
+ * @param request
103
+ * @param apiId
104
+ * @param accountId
105
+ */
106
+ acquireTokenNative(request: SilentRequest | Partial<Omit<CommonAuthorizationUrlRequest, "requestedClaimsHash" | "responseMode" | "earJwk" | "codeChallenge" | "codeChallengeMethod" | "platformBroker">> | PopupRequest, apiId: ApiId, // eslint-disable-line @typescript-eslint/no-unused-vars
107
+ accountId?: string | undefined): Promise<AuthenticationResult>;
108
+ /**
109
+ * acquireTokenByRefreshToken flow is not currently supported in nested app auth
110
+ * @param commonRequest
111
+ * @param silentRequest
112
+ */
113
+ acquireTokenByRefreshToken(commonRequest: CommonSilentFlowRequest, // eslint-disable-line @typescript-eslint/no-unused-vars
114
+ silentRequest: SilentRequest): Promise<AuthenticationResult>;
115
+ /**
116
+ * Adds event callbacks to array
117
+ * @param callback
118
+ * @param eventTypes
119
+ */
120
+ addEventCallback(callback: EventCallbackFunction, eventTypes?: Array<EventType>): string | null;
121
+ /**
122
+ * Removes callback with provided id from callback array
123
+ * @param callbackId
124
+ */
125
+ removeEventCallback(callbackId: string): void;
126
+ addPerformanceCallback(callback: PerformanceCallbackFunction): string;
127
+ removePerformanceCallback(callbackId: string): boolean;
128
+ enableAccountStorageEvents(): void;
129
+ disableAccountStorageEvents(): void;
130
+ /**
131
+ * Returns all the accounts in the cache that match the optional filter. If no filter is provided, all accounts are returned.
132
+ * @param accountFilter - (Optional) filter to narrow down the accounts returned
133
+ * @returns Array of AccountInfo objects in cache
134
+ */
135
+ getAllAccounts(accountFilter?: AccountFilter): AccountInfo[];
136
+ /**
137
+ * Returns the first account found in the cache that matches the account filter passed in.
138
+ * @param accountFilter
139
+ * @returns The first account found in the cache matching the provided filter or null if no account could be found.
140
+ */
141
+ getAccount(accountFilter: AccountFilter): AccountInfo | null;
142
+ /**
143
+ * Returns the signed in account matching username.
144
+ * (the account object is created at the time of successful login)
145
+ * or null when no matching account is found.
146
+ * This API is provided for convenience but getAccountById should be used for best reliability
147
+ * @param username
148
+ * @returns The account object stored in MSAL
149
+ */
150
+ getAccountByUsername(username: string): AccountInfo | null;
151
+ /**
152
+ * Returns the signed in account matching homeAccountId.
153
+ * (the account object is created at the time of successful login)
154
+ * or null when no matching account is found
155
+ * @param homeAccountId
156
+ * @returns The account object stored in MSAL
157
+ */
158
+ getAccountByHomeId(homeAccountId: string): AccountInfo | null;
159
+ /**
160
+ * Returns the signed in account matching localAccountId.
161
+ * (the account object is created at the time of successful login)
162
+ * or null when no matching account is found
163
+ * @param localAccountId
164
+ * @returns The account object stored in MSAL
165
+ */
166
+ getAccountByLocalId(localAccountId: string): AccountInfo | null;
167
+ /**
168
+ * Sets the account to use as the active account. If no account is passed to the acquireToken APIs, then MSAL will use this active account.
169
+ * @param account
170
+ */
171
+ setActiveAccount(account: AccountInfo | null): void;
172
+ /**
173
+ * Gets the currently active account
174
+ */
175
+ getActiveAccount(): AccountInfo | null;
176
+ handleRedirectPromise(hash?: string | undefined): Promise<AuthenticationResult | null>;
177
+ loginPopup(request?: PopupRequest | undefined): Promise<AuthenticationResult>;
178
+ loginRedirect(request?: RedirectRequest | undefined): Promise<void>;
179
+ logout(logoutRequest?: EndSessionRequest | undefined): Promise<void>;
180
+ logoutRedirect(logoutRequest?: EndSessionRequest | undefined): Promise<void>;
181
+ logoutPopup(logoutRequest?: EndSessionPopupRequest | undefined): Promise<void>;
182
+ ssoSilent(request: Partial<Omit<CommonAuthorizationUrlRequest, "requestedClaimsHash" | "responseMode" | "earJwk" | "codeChallenge" | "codeChallengeMethod" | "platformBroker">>): Promise<AuthenticationResult>;
183
+ getTokenCache(): ITokenCache;
184
+ /**
185
+ * Returns the logger instance
186
+ */
187
+ getLogger(): Logger;
188
+ /**
189
+ * Replaces the default logger set in configurations with new Logger with new configurations
190
+ * @param logger Logger instance
191
+ */
192
+ setLogger(logger: Logger): void;
193
+ initializeWrapperLibrary(sku: WrapperSKU, version: string): void;
194
+ setNavigationClient(navigationClient: INavigationClient): void;
195
+ getConfiguration(): BrowserConfiguration;
196
+ isBrowserEnv(): boolean;
197
+ getBrowserCrypto(): ICrypto;
198
+ getPerformanceClient(): IPerformanceClient;
199
+ getRedirectResponse(): Map<string, Promise<AuthenticationResult | null>>;
200
+ clearCache(logoutRequest?: ClearCacheRequest): Promise<void>;
201
+ hydrateCache(result: AuthenticationResult, request: SilentRequest | SsoSilentRequest | RedirectRequest | PopupRequest): Promise<void>;
202
+ }
203
+ //# sourceMappingURL=NestedAppAuthController.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NestedAppAuthController.d.ts","sourceRoot":"","sources":["../../../../src/controllers/NestedAppAuthController.ts"],"names":[],"mappings":"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"}