@azure/msal-browser 5.8.0 → 5.10.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 (3498) hide show
  1. package/dist/app/IPublicClientApplication.mjs +1 -1
  2. package/dist/app/PublicClientApplication.mjs +1 -1
  3. package/dist/broker/nativeBroker/NativeStatusCodes.mjs +1 -1
  4. package/dist/broker/nativeBroker/PlatformAuthDOMHandler.mjs +1 -1
  5. package/dist/broker/nativeBroker/PlatformAuthExtensionHandler.mjs +1 -1
  6. package/dist/broker/nativeBroker/PlatformAuthProvider.mjs +1 -1
  7. package/dist/cache/AccountManager.mjs +1 -1
  8. package/dist/cache/AsyncMemoryStorage.mjs +1 -1
  9. package/dist/cache/BrowserCacheManager.mjs +4 -17
  10. package/dist/cache/BrowserCacheManager.mjs.map +1 -1
  11. package/dist/cache/CacheHelpers.mjs +1 -1
  12. package/dist/cache/CacheKeys.mjs +1 -1
  13. package/dist/cache/CookieStorage.mjs +22 -9
  14. package/dist/cache/CookieStorage.mjs.map +1 -1
  15. package/dist/cache/DatabaseStorage.mjs +1 -1
  16. package/dist/cache/EncryptedData.mjs +1 -1
  17. package/dist/cache/LocalStorage.mjs +1 -1
  18. package/dist/cache/MemoryStorage.mjs +1 -1
  19. package/dist/cache/SessionStorage.mjs +1 -1
  20. package/dist/cache/TokenCache.mjs +1 -1
  21. package/dist/config/Configuration.mjs +1 -1
  22. package/dist/controllers/NestedAppAuthController.mjs +1 -1
  23. package/dist/controllers/StandardController.mjs +1 -1
  24. package/dist/crypto/BrowserCrypto.mjs +1 -1
  25. package/dist/crypto/CryptoOps.mjs +1 -1
  26. package/dist/crypto/PkceGenerator.mjs +1 -1
  27. package/dist/crypto/SignedHttpRequest.mjs +1 -1
  28. package/dist/custom_auth/CustomAuthConstants.mjs +50 -0
  29. package/dist/custom_auth/CustomAuthConstants.mjs.map +1 -0
  30. package/dist/custom_auth/CustomAuthPublicClientApplication.mjs +97 -0
  31. package/dist/custom_auth/CustomAuthPublicClientApplication.mjs.map +1 -0
  32. package/dist/custom_auth/controller/CustomAuthStandardController.mjs +332 -0
  33. package/dist/custom_auth/controller/CustomAuthStandardController.mjs.map +1 -0
  34. package/dist/custom_auth/core/CustomAuthAuthority.mjs +82 -0
  35. package/dist/custom_auth/core/CustomAuthAuthority.mjs.map +1 -0
  36. package/dist/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs +134 -0
  37. package/dist/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs.map +1 -0
  38. package/dist/custom_auth/core/auth_flow/AuthFlowResultBase.mjs +59 -0
  39. package/dist/custom_auth/core/auth_flow/AuthFlowResultBase.mjs.map +1 -0
  40. package/dist/custom_auth/core/auth_flow/AuthFlowState.mjs +45 -0
  41. package/dist/custom_auth/core/auth_flow/AuthFlowState.mjs.map +1 -0
  42. package/dist/custom_auth/core/auth_flow/AuthFlowStateTypes.mjs +45 -0
  43. package/dist/custom_auth/core/auth_flow/AuthFlowStateTypes.mjs.map +1 -0
  44. package/dist/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.mjs +42 -0
  45. package/dist/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.mjs.map +1 -0
  46. package/dist/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.mjs +56 -0
  47. package/dist/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.mjs.map +1 -0
  48. package/dist/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.mjs +46 -0
  49. package/dist/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.mjs.map +1 -0
  50. package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.mjs +24 -0
  51. package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.mjs.map +1 -0
  52. package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.mjs +24 -0
  53. package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.mjs.map +1 -0
  54. package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.mjs +181 -0
  55. package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.mjs.map +1 -0
  56. package/dist/custom_auth/core/auth_flow/mfa/error_type/MfaError.mjs +42 -0
  57. package/dist/custom_auth/core/auth_flow/mfa/error_type/MfaError.mjs.map +1 -0
  58. package/dist/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.mjs +46 -0
  59. package/dist/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.mjs.map +1 -0
  60. package/dist/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.mjs +45 -0
  61. package/dist/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.mjs.map +1 -0
  62. package/dist/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.mjs +24 -0
  63. package/dist/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.mjs.map +1 -0
  64. package/dist/custom_auth/core/auth_flow/mfa/state/MfaFailedState.mjs +24 -0
  65. package/dist/custom_auth/core/auth_flow/mfa/state/MfaFailedState.mjs.map +1 -0
  66. package/dist/custom_auth/core/auth_flow/mfa/state/MfaState.mjs +140 -0
  67. package/dist/custom_auth/core/auth_flow/mfa/state/MfaState.mjs.map +1 -0
  68. package/dist/custom_auth/core/error/CustomAuthApiError.mjs +35 -0
  69. package/dist/custom_auth/core/error/CustomAuthApiError.mjs.map +1 -0
  70. package/dist/custom_auth/core/error/CustomAuthError.mjs +22 -0
  71. package/dist/custom_auth/core/error/CustomAuthError.mjs.map +1 -0
  72. package/dist/custom_auth/core/error/HttpError.mjs +17 -0
  73. package/dist/custom_auth/core/error/HttpError.mjs.map +1 -0
  74. package/dist/custom_auth/core/error/HttpErrorCodes.mjs +11 -0
  75. package/dist/custom_auth/core/error/HttpErrorCodes.mjs.map +1 -0
  76. package/dist/custom_auth/core/error/InvalidArgumentError.mjs +18 -0
  77. package/dist/custom_auth/core/error/InvalidArgumentError.mjs.map +1 -0
  78. package/dist/custom_auth/core/error/InvalidConfigurationError.mjs +17 -0
  79. package/dist/custom_auth/core/error/InvalidConfigurationError.mjs.map +1 -0
  80. package/dist/custom_auth/core/error/InvalidConfigurationErrorCodes.mjs +12 -0
  81. package/dist/custom_auth/core/error/InvalidConfigurationErrorCodes.mjs.map +1 -0
  82. package/dist/custom_auth/core/error/MethodNotImplementedError.mjs +18 -0
  83. package/dist/custom_auth/core/error/MethodNotImplementedError.mjs.map +1 -0
  84. package/dist/custom_auth/core/error/MsalCustomAuthError.mjs +17 -0
  85. package/dist/custom_auth/core/error/MsalCustomAuthError.mjs.map +1 -0
  86. package/dist/custom_auth/core/error/NoCachedAccountFoundError.mjs +17 -0
  87. package/dist/custom_auth/core/error/NoCachedAccountFoundError.mjs.map +1 -0
  88. package/dist/custom_auth/core/error/ParsedUrlError.mjs +17 -0
  89. package/dist/custom_auth/core/error/ParsedUrlError.mjs.map +1 -0
  90. package/dist/custom_auth/core/error/ParsedUrlErrorCodes.mjs +10 -0
  91. package/dist/custom_auth/core/error/ParsedUrlErrorCodes.mjs.map +1 -0
  92. package/dist/custom_auth/core/error/UnexpectedError.mjs +30 -0
  93. package/dist/custom_auth/core/error/UnexpectedError.mjs.map +1 -0
  94. package/dist/custom_auth/core/error/UnsupportedEnvironmentError.mjs +17 -0
  95. package/dist/custom_auth/core/error/UnsupportedEnvironmentError.mjs.map +1 -0
  96. package/dist/custom_auth/core/error/UserAccountAttributeError.mjs +18 -0
  97. package/dist/custom_auth/core/error/UserAccountAttributeError.mjs.map +1 -0
  98. package/dist/custom_auth/core/error/UserAlreadySignedInError.mjs +17 -0
  99. package/dist/custom_auth/core/error/UserAlreadySignedInError.mjs.map +1 -0
  100. package/dist/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.mjs +69 -0
  101. package/dist/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.mjs.map +1 -0
  102. package/dist/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.mjs +25 -0
  103. package/dist/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.mjs.map +1 -0
  104. package/dist/custom_auth/core/interaction_client/jit/JitClient.mjs +110 -0
  105. package/dist/custom_auth/core/interaction_client/jit/JitClient.mjs.map +1 -0
  106. package/dist/custom_auth/core/interaction_client/jit/result/JitActionResult.mjs +24 -0
  107. package/dist/custom_auth/core/interaction_client/jit/result/JitActionResult.mjs.map +1 -0
  108. package/dist/custom_auth/core/interaction_client/mfa/MfaClient.mjs +88 -0
  109. package/dist/custom_auth/core/interaction_client/mfa/MfaClient.mjs.map +1 -0
  110. package/dist/custom_auth/core/interaction_client/mfa/result/MfaActionResult.mjs +24 -0
  111. package/dist/custom_auth/core/interaction_client/mfa/result/MfaActionResult.mjs.map +1 -0
  112. package/dist/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs +87 -0
  113. package/dist/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs.map +1 -0
  114. package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs +22 -0
  115. package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs.map +1 -0
  116. package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.mjs +24 -0
  117. package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.mjs.map +1 -0
  118. package/dist/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.mjs +51 -0
  119. package/dist/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.mjs.map +1 -0
  120. package/dist/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs +94 -0
  121. package/dist/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs.map +1 -0
  122. package/dist/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs +134 -0
  123. package/dist/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs.map +1 -0
  124. package/dist/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs +78 -0
  125. package/dist/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs.map +1 -0
  126. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.mjs +30 -0
  127. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.mjs.map +1 -0
  128. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.mjs +20 -0
  129. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.mjs.map +1 -0
  130. package/dist/custom_auth/core/network_client/http_client/FetchHttpClient.mjs +54 -0
  131. package/dist/custom_auth/core/network_client/http_client/FetchHttpClient.mjs.map +1 -0
  132. package/dist/custom_auth/core/network_client/http_client/IHttpClient.mjs +15 -0
  133. package/dist/custom_auth/core/network_client/http_client/IHttpClient.mjs.map +1 -0
  134. package/dist/custom_auth/core/telemetry/PublicApiId.mjs +40 -0
  135. package/dist/custom_auth/core/telemetry/PublicApiId.mjs.map +1 -0
  136. package/dist/custom_auth/core/utils/ArgumentValidator.mjs +37 -0
  137. package/dist/custom_auth/core/utils/ArgumentValidator.mjs.map +1 -0
  138. package/dist/custom_auth/core/utils/UrlUtils.mjs +34 -0
  139. package/dist/custom_auth/core/utils/UrlUtils.mjs.map +1 -0
  140. package/dist/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs +126 -0
  141. package/dist/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs.map +1 -0
  142. package/dist/custom_auth/get_account/auth_flow/error_type/GetAccountError.mjs +47 -0
  143. package/dist/custom_auth/get_account/auth_flow/error_type/GetAccountError.mjs.map +1 -0
  144. package/dist/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.mjs +49 -0
  145. package/dist/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.mjs.map +1 -0
  146. package/dist/custom_auth/get_account/auth_flow/result/GetAccountResult.mjs +48 -0
  147. package/dist/custom_auth/get_account/auth_flow/result/GetAccountResult.mjs.map +1 -0
  148. package/dist/custom_auth/get_account/auth_flow/result/SignOutResult.mjs +48 -0
  149. package/dist/custom_auth/get_account/auth_flow/result/SignOutResult.mjs.map +1 -0
  150. package/dist/custom_auth/get_account/auth_flow/state/GetAccessTokenState.mjs +36 -0
  151. package/dist/custom_auth/get_account/auth_flow/state/GetAccessTokenState.mjs.map +1 -0
  152. package/dist/custom_auth/get_account/auth_flow/state/GetAccountState.mjs +36 -0
  153. package/dist/custom_auth/get_account/auth_flow/state/GetAccountState.mjs.map +1 -0
  154. package/dist/custom_auth/get_account/auth_flow/state/SignOutState.mjs +36 -0
  155. package/dist/custom_auth/get_account/auth_flow/state/SignOutState.mjs.map +1 -0
  156. package/dist/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.mjs +122 -0
  157. package/dist/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.mjs.map +1 -0
  158. package/dist/custom_auth/index.mjs +69 -0
  159. package/dist/custom_auth/operating_context/CustomAuthOperatingContext.mjs +35 -0
  160. package/dist/custom_auth/operating_context/CustomAuthOperatingContext.mjs.map +1 -0
  161. package/dist/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.mjs +67 -0
  162. package/dist/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.mjs.map +1 -0
  163. package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.mjs +48 -0
  164. package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.mjs.map +1 -0
  165. package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.mjs +48 -0
  166. package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.mjs.map +1 -0
  167. package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.mjs +48 -0
  168. package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.mjs.map +1 -0
  169. package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.mjs +43 -0
  170. package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.mjs.map +1 -0
  171. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.mjs +106 -0
  172. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.mjs.map +1 -0
  173. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.mjs +24 -0
  174. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.mjs.map +1 -0
  175. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.mjs +24 -0
  176. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.mjs.map +1 -0
  177. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.mjs +64 -0
  178. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.mjs.map +1 -0
  179. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordState.mjs +25 -0
  180. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordState.mjs.map +1 -0
  181. package/dist/custom_auth/reset_password/interaction_client/ResetPasswordClient.mjs +157 -0
  182. package/dist/custom_auth/reset_password/interaction_client/ResetPasswordClient.mjs.map +1 -0
  183. package/dist/custom_auth/sign_in/auth_flow/SignInScenario.mjs +13 -0
  184. package/dist/custom_auth/sign_in/auth_flow/SignInScenario.mjs.map +1 -0
  185. package/dist/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs +69 -0
  186. package/dist/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs.map +1 -0
  187. package/dist/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.mjs +49 -0
  188. package/dist/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.mjs.map +1 -0
  189. package/dist/custom_auth/sign_in/auth_flow/result/SignInResult.mjs +75 -0
  190. package/dist/custom_auth/sign_in/auth_flow/result/SignInResult.mjs.map +1 -0
  191. package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.mjs +56 -0
  192. package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.mjs.map +1 -0
  193. package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.mjs +51 -0
  194. package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.mjs.map +1 -0
  195. package/dist/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs +107 -0
  196. package/dist/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs.map +1 -0
  197. package/dist/custom_auth/sign_in/auth_flow/state/SignInCompletedState.mjs +25 -0
  198. package/dist/custom_auth/sign_in/auth_flow/state/SignInCompletedState.mjs.map +1 -0
  199. package/dist/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs +60 -0
  200. package/dist/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs.map +1 -0
  201. package/dist/custom_auth/sign_in/auth_flow/state/SignInFailedState.mjs +24 -0
  202. package/dist/custom_auth/sign_in/auth_flow/state/SignInFailedState.mjs.map +1 -0
  203. package/dist/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs +64 -0
  204. package/dist/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs.map +1 -0
  205. package/dist/custom_auth/sign_in/auth_flow/state/SignInState.mjs +93 -0
  206. package/dist/custom_auth/sign_in/auth_flow/state/SignInState.mjs.map +1 -0
  207. package/dist/custom_auth/sign_in/interaction_client/SignInClient.mjs +248 -0
  208. package/dist/custom_auth/sign_in/interaction_client/SignInClient.mjs.map +1 -0
  209. package/dist/custom_auth/sign_in/interaction_client/result/SignInActionResult.mjs +44 -0
  210. package/dist/custom_auth/sign_in/interaction_client/result/SignInActionResult.mjs.map +1 -0
  211. package/dist/custom_auth/sign_up/auth_flow/error_type/SignUpError.mjs +91 -0
  212. package/dist/custom_auth/sign_up/auth_flow/error_type/SignUpError.mjs.map +1 -0
  213. package/dist/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.mjs +48 -0
  214. package/dist/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.mjs.map +1 -0
  215. package/dist/custom_auth/sign_up/auth_flow/result/SignUpResult.mjs +60 -0
  216. package/dist/custom_auth/sign_up/auth_flow/result/SignUpResult.mjs.map +1 -0
  217. package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.mjs +48 -0
  218. package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.mjs.map +1 -0
  219. package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.mjs +60 -0
  220. package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.mjs.map +1 -0
  221. package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.mjs +54 -0
  222. package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.mjs.map +1 -0
  223. package/dist/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.mjs +84 -0
  224. package/dist/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.mjs.map +1 -0
  225. package/dist/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.mjs +155 -0
  226. package/dist/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.mjs.map +1 -0
  227. package/dist/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.mjs +24 -0
  228. package/dist/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.mjs.map +1 -0
  229. package/dist/custom_auth/sign_up/auth_flow/state/SignUpFailedState.mjs +24 -0
  230. package/dist/custom_auth/sign_up/auth_flow/state/SignUpFailedState.mjs.map +1 -0
  231. package/dist/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.mjs +89 -0
  232. package/dist/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.mjs.map +1 -0
  233. package/dist/custom_auth/sign_up/auth_flow/state/SignUpState.mjs +26 -0
  234. package/dist/custom_auth/sign_up/auth_flow/state/SignUpState.mjs.map +1 -0
  235. package/dist/custom_auth/sign_up/interaction_client/SignUpClient.mjs +247 -0
  236. package/dist/custom_auth/sign_up/interaction_client/SignUpClient.mjs.map +1 -0
  237. package/dist/custom_auth/sign_up/interaction_client/result/SignUpActionResult.mjs +37 -0
  238. package/dist/custom_auth/sign_up/interaction_client/result/SignUpActionResult.mjs.map +1 -0
  239. package/dist/encode/Base64Decode.mjs +1 -1
  240. package/dist/encode/Base64Encode.mjs +1 -1
  241. package/dist/error/BrowserAuthError.mjs +1 -1
  242. package/dist/error/BrowserAuthErrorCodes.mjs +1 -1
  243. package/dist/error/BrowserConfigurationAuthError.mjs +1 -1
  244. package/dist/error/BrowserConfigurationAuthErrorCodes.mjs +1 -1
  245. package/dist/error/NativeAuthError.mjs +1 -1
  246. package/dist/error/NativeAuthErrorCodes.mjs +1 -1
  247. package/dist/error/NestedAppAuthError.mjs +1 -1
  248. package/dist/event/EventHandler.mjs +1 -1
  249. package/dist/event/EventMessage.mjs +1 -1
  250. package/dist/event/EventType.mjs +1 -1
  251. package/dist/index.mjs +1 -1
  252. package/dist/interaction_client/BaseInteractionClient.mjs +2 -2
  253. package/dist/interaction_client/BaseInteractionClient.mjs.map +1 -1
  254. package/dist/interaction_client/HybridSpaAuthorizationCodeClient.mjs +1 -1
  255. package/dist/interaction_client/PlatformAuthInteractionClient.mjs +1 -1
  256. package/dist/interaction_client/PopupClient.mjs +1 -1
  257. package/dist/interaction_client/RedirectClient.mjs +1 -1
  258. package/dist/interaction_client/SilentAuthCodeClient.mjs +1 -1
  259. package/dist/interaction_client/SilentCacheClient.mjs +1 -1
  260. package/dist/interaction_client/SilentIframeClient.mjs +1 -1
  261. package/dist/interaction_client/SilentRefreshClient.mjs +1 -1
  262. package/dist/interaction_client/StandardInteractionClient.mjs +1 -1
  263. package/dist/interaction_handler/InteractionHandler.mjs +1 -1
  264. package/dist/interaction_handler/SilentHandler.mjs +1 -1
  265. package/dist/log-strings-mapping.json +613 -9
  266. package/dist/naa/BridgeError.mjs +1 -1
  267. package/dist/naa/BridgeProxy.mjs +1 -1
  268. package/dist/naa/BridgeStatusCode.mjs +1 -1
  269. package/dist/naa/mapping/NestedAppAuthAdapter.mjs +1 -1
  270. package/dist/navigation/NavigationClient.mjs +1 -1
  271. package/dist/network/FetchClient.mjs +1 -1
  272. package/dist/operatingcontext/BaseOperatingContext.mjs +1 -1
  273. package/dist/operatingcontext/NestedAppOperatingContext.mjs +1 -1
  274. package/dist/operatingcontext/StandardOperatingContext.mjs +1 -1
  275. package/dist/packageMetadata.mjs +2 -2
  276. package/dist/protocol/Authorize.mjs +1 -1
  277. package/dist/redirect_bridge/index.mjs +131 -0
  278. package/dist/redirect_bridge/index.mjs.map +1 -0
  279. package/dist/request/RequestHelpers.mjs +1 -1
  280. package/dist/response/ResponseHandler.mjs +1 -1
  281. package/dist/telemetry/BrowserPerformanceClient.mjs +1 -1
  282. package/dist/telemetry/BrowserPerformanceEvents.mjs +1 -1
  283. package/dist/telemetry/BrowserPerformanceMeasurement.mjs +1 -1
  284. package/dist/telemetry/BrowserRootPerformanceEvents.mjs +1 -1
  285. package/dist/utils/BrowserConstants.mjs +1 -1
  286. package/dist/utils/BrowserProtocolUtils.mjs +1 -1
  287. package/dist/utils/BrowserUtils.mjs +1 -1
  288. package/dist/utils/Helpers.mjs +1 -1
  289. package/dist/utils/MsalFrameStatsUtils.mjs +1 -1
  290. package/lib/custom-auth-path/log-strings-mapping.json +5 -9
  291. package/lib/custom-auth-path/msal-custom-auth.cjs +95 -94
  292. package/lib/custom-auth-path/msal-custom-auth.cjs.map +1 -1
  293. package/lib/custom-auth-path/msal-custom-auth.js +22247 -0
  294. package/lib/custom-auth-path/msal-custom-auth.js.map +1 -0
  295. package/lib/log-strings-mapping.json +5 -9
  296. package/lib/msal-browser.cjs +96 -94
  297. package/lib/msal-browser.cjs.map +1 -1
  298. package/lib/msal-browser.js +96 -94
  299. package/lib/msal-browser.js.map +1 -1
  300. package/lib/msal-browser.min.js +2 -2
  301. package/lib/redirect-bridge/msal-redirect-bridge.cjs +10 -10
  302. package/lib/redirect-bridge/msal-redirect-bridge.cjs.map +1 -1
  303. package/lib/redirect-bridge/msal-redirect-bridge.js +10 -10
  304. package/lib/redirect-bridge/msal-redirect-bridge.js.map +1 -1
  305. package/lib/redirect-bridge/msal-redirect-bridge.min.js +1 -1
  306. package/package.json +15 -13
  307. package/src/cache/BrowserCacheManager.ts +5 -23
  308. package/src/cache/CookieStorage.ts +22 -9
  309. package/src/custom_auth/core/network_client/custom_auth_api/SignInApiClient.ts +2 -3
  310. package/src/packageMetadata.ts +1 -1
  311. package/types/cache/BrowserCacheManager.d.ts.map +1 -0
  312. package/types/cache/CookieStorage.d.ts.map +1 -0
  313. package/types/custom_auth/CustomAuthConstants.d.ts +35 -0
  314. package/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +1 -0
  315. package/types/custom_auth/index.d.cts +1 -0
  316. package/types/index.d.cts +1 -0
  317. package/types/packageMetadata.d.ts +3 -0
  318. package/types/packageMetadata.d.ts.map +1 -0
  319. package/types/redirect_bridge/index.d.cts +1 -0
  320. package/dist/cache/BrowserCacheManager.d.ts.map +0 -1
  321. package/dist/cache/CookieStorage.d.ts.map +0 -1
  322. package/dist/custom-auth-path/app/IPublicClientApplication.d.ts +0 -48
  323. package/dist/custom-auth-path/app/IPublicClientApplication.d.ts.map +0 -1
  324. package/dist/custom-auth-path/app/PublicClientApplication.d.ts +0 -247
  325. package/dist/custom-auth-path/app/PublicClientApplication.d.ts.map +0 -1
  326. package/dist/custom-auth-path/app/PublicClientApplication.mjs +0 -275
  327. package/dist/custom-auth-path/app/PublicClientApplication.mjs.map +0 -1
  328. package/dist/custom-auth-path/broker/nativeBroker/IPlatformAuthHandler.d.ts +0 -12
  329. package/dist/custom-auth-path/broker/nativeBroker/IPlatformAuthHandler.d.ts.map +0 -1
  330. package/dist/custom-auth-path/broker/nativeBroker/NativeStatusCodes.d.ts +0 -9
  331. package/dist/custom-auth-path/broker/nativeBroker/NativeStatusCodes.d.ts.map +0 -1
  332. package/dist/custom-auth-path/broker/nativeBroker/NativeStatusCodes.mjs +0 -16
  333. package/dist/custom-auth-path/broker/nativeBroker/NativeStatusCodes.mjs.map +0 -1
  334. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.d.ts +0 -30
  335. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.d.ts.map +0 -1
  336. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.mjs +0 -156
  337. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthDOMHandler.mjs.map +0 -1
  338. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts +0 -63
  339. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts.map +0 -1
  340. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.mjs +0 -272
  341. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthExtensionHandler.mjs.map +0 -1
  342. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.d.ts +0 -28
  343. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.d.ts.map +0 -1
  344. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.mjs +0 -91
  345. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthProvider.mjs.map +0 -1
  346. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthRequest.d.ts +0 -79
  347. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthRequest.d.ts.map +0 -1
  348. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthResponse.d.ts +0 -71
  349. package/dist/custom-auth-path/broker/nativeBroker/PlatformAuthResponse.d.ts.map +0 -1
  350. package/dist/custom-auth-path/cache/AccountManager.d.ts +0 -24
  351. package/dist/custom-auth-path/cache/AccountManager.d.ts.map +0 -1
  352. package/dist/custom-auth-path/cache/AccountManager.mjs +0 -50
  353. package/dist/custom-auth-path/cache/AccountManager.mjs.map +0 -1
  354. package/dist/custom-auth-path/cache/AsyncMemoryStorage.d.ts +0 -58
  355. package/dist/custom-auth-path/cache/AsyncMemoryStorage.d.ts.map +0 -1
  356. package/dist/custom-auth-path/cache/AsyncMemoryStorage.mjs +0 -148
  357. package/dist/custom-auth-path/cache/AsyncMemoryStorage.mjs.map +0 -1
  358. package/dist/custom-auth-path/cache/BrowserCacheManager.d.ts +0 -364
  359. package/dist/custom-auth-path/cache/BrowserCacheManager.d.ts.map +0 -1
  360. package/dist/custom-auth-path/cache/BrowserCacheManager.mjs +0 -1385
  361. package/dist/custom-auth-path/cache/BrowserCacheManager.mjs.map +0 -1
  362. package/dist/custom-auth-path/cache/CacheHelpers.d.ts +0 -16
  363. package/dist/custom-auth-path/cache/CacheHelpers.d.ts.map +0 -1
  364. package/dist/custom-auth-path/cache/CacheHelpers.mjs +0 -46
  365. package/dist/custom-auth-path/cache/CacheHelpers.mjs.map +0 -1
  366. package/dist/custom-auth-path/cache/CacheKeys.d.ts +0 -15
  367. package/dist/custom-auth-path/cache/CacheKeys.d.ts.map +0 -1
  368. package/dist/custom-auth-path/cache/CacheKeys.mjs +0 -33
  369. package/dist/custom-auth-path/cache/CacheKeys.mjs.map +0 -1
  370. package/dist/custom-auth-path/cache/CookieStorage.d.ts +0 -23
  371. package/dist/custom-auth-path/cache/CookieStorage.d.ts.map +0 -1
  372. package/dist/custom-auth-path/cache/CookieStorage.mjs +0 -82
  373. package/dist/custom-auth-path/cache/CookieStorage.mjs.map +0 -1
  374. package/dist/custom-auth-path/cache/DatabaseStorage.d.ts +0 -57
  375. package/dist/custom-auth-path/cache/DatabaseStorage.d.ts.map +0 -1
  376. package/dist/custom-auth-path/cache/DatabaseStorage.mjs +0 -209
  377. package/dist/custom-auth-path/cache/DatabaseStorage.mjs.map +0 -1
  378. package/dist/custom-auth-path/cache/EncryptedData.d.ts +0 -8
  379. package/dist/custom-auth-path/cache/EncryptedData.d.ts.map +0 -1
  380. package/dist/custom-auth-path/cache/EncryptedData.mjs +0 -14
  381. package/dist/custom-auth-path/cache/EncryptedData.mjs.map +0 -1
  382. package/dist/custom-auth-path/cache/IAsyncStorage.d.ts +0 -33
  383. package/dist/custom-auth-path/cache/IAsyncStorage.d.ts.map +0 -1
  384. package/dist/custom-auth-path/cache/IWindowStorage.d.ts +0 -42
  385. package/dist/custom-auth-path/cache/IWindowStorage.d.ts.map +0 -1
  386. package/dist/custom-auth-path/cache/LocalStorage.d.ts +0 -51
  387. package/dist/custom-auth-path/cache/LocalStorage.d.ts.map +0 -1
  388. package/dist/custom-auth-path/cache/LocalStorage.mjs +0 -310
  389. package/dist/custom-auth-path/cache/LocalStorage.mjs.map +0 -1
  390. package/dist/custom-auth-path/cache/MemoryStorage.d.ts +0 -16
  391. package/dist/custom-auth-path/cache/MemoryStorage.d.ts.map +0 -1
  392. package/dist/custom-auth-path/cache/MemoryStorage.mjs +0 -49
  393. package/dist/custom-auth-path/cache/MemoryStorage.mjs.map +0 -1
  394. package/dist/custom-auth-path/cache/SessionStorage.d.ts +0 -14
  395. package/dist/custom-auth-path/cache/SessionStorage.d.ts.map +0 -1
  396. package/dist/custom-auth-path/cache/SessionStorage.mjs +0 -47
  397. package/dist/custom-auth-path/cache/SessionStorage.mjs.map +0 -1
  398. package/dist/custom-auth-path/cache/TokenCache.d.ts +0 -20
  399. package/dist/custom-auth-path/cache/TokenCache.d.ts.map +0 -1
  400. package/dist/custom-auth-path/config/Configuration.d.ts +0 -198
  401. package/dist/custom-auth-path/config/Configuration.d.ts.map +0 -1
  402. package/dist/custom-auth-path/config/Configuration.mjs +0 -135
  403. package/dist/custom-auth-path/config/Configuration.mjs.map +0 -1
  404. package/dist/custom-auth-path/controllers/IController.d.ts +0 -3
  405. package/dist/custom-auth-path/controllers/IController.d.ts.map +0 -1
  406. package/dist/custom-auth-path/controllers/NestedAppAuthController.d.ts +0 -159
  407. package/dist/custom-auth-path/controllers/NestedAppAuthController.d.ts.map +0 -1
  408. package/dist/custom-auth-path/controllers/StandardController.d.ts +0 -398
  409. package/dist/custom-auth-path/controllers/StandardController.d.ts.map +0 -1
  410. package/dist/custom-auth-path/controllers/StandardController.mjs +0 -1519
  411. package/dist/custom-auth-path/controllers/StandardController.mjs.map +0 -1
  412. package/dist/custom-auth-path/controllers/UnknownOperatingContextController.d.ts +0 -73
  413. package/dist/custom-auth-path/controllers/UnknownOperatingContextController.d.ts.map +0 -1
  414. package/dist/custom-auth-path/crypto/BrowserCrypto.d.ts +0 -96
  415. package/dist/custom-auth-path/crypto/BrowserCrypto.d.ts.map +0 -1
  416. package/dist/custom-auth-path/crypto/BrowserCrypto.mjs +0 -306
  417. package/dist/custom-auth-path/crypto/BrowserCrypto.mjs.map +0 -1
  418. package/dist/custom-auth-path/crypto/CryptoOps.d.ts +0 -77
  419. package/dist/custom-auth-path/crypto/CryptoOps.d.ts.map +0 -1
  420. package/dist/custom-auth-path/crypto/CryptoOps.mjs +0 -194
  421. package/dist/custom-auth-path/crypto/CryptoOps.mjs.map +0 -1
  422. package/dist/custom-auth-path/crypto/PkceGenerator.d.ts +0 -9
  423. package/dist/custom-auth-path/crypto/PkceGenerator.d.ts.map +0 -1
  424. package/dist/custom-auth-path/crypto/PkceGenerator.mjs +0 -64
  425. package/dist/custom-auth-path/crypto/PkceGenerator.mjs.map +0 -1
  426. package/dist/custom-auth-path/crypto/SignedHttpRequest.d.ts +0 -32
  427. package/dist/custom-auth-path/crypto/SignedHttpRequest.d.ts.map +0 -1
  428. package/dist/custom-auth-path/custom_auth/CustomAuthActionInputs.d.ts.map +0 -1
  429. package/dist/custom-auth-path/custom_auth/CustomAuthConstants.d.ts +0 -35
  430. package/dist/custom-auth-path/custom_auth/CustomAuthConstants.d.ts.map +0 -1
  431. package/dist/custom-auth-path/custom_auth/CustomAuthConstants.mjs +0 -50
  432. package/dist/custom-auth-path/custom_auth/CustomAuthConstants.mjs.map +0 -1
  433. package/dist/custom-auth-path/custom_auth/CustomAuthPublicClientApplication.d.ts.map +0 -1
  434. package/dist/custom-auth-path/custom_auth/CustomAuthPublicClientApplication.mjs +0 -97
  435. package/dist/custom-auth-path/custom_auth/CustomAuthPublicClientApplication.mjs.map +0 -1
  436. package/dist/custom-auth-path/custom_auth/ICustomAuthPublicClientApplication.d.ts.map +0 -1
  437. package/dist/custom-auth-path/custom_auth/UserAccountAttributes.d.ts.map +0 -1
  438. package/dist/custom-auth-path/custom_auth/configuration/CustomAuthConfiguration.d.ts.map +0 -1
  439. package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.d.ts.map +0 -1
  440. package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.mjs +0 -332
  441. package/dist/custom-auth-path/custom_auth/controller/CustomAuthStandardController.mjs.map +0 -1
  442. package/dist/custom-auth-path/custom_auth/controller/ICustomAuthStandardController.d.ts.map +0 -1
  443. package/dist/custom-auth-path/custom_auth/core/CustomAuthAuthority.d.ts.map +0 -1
  444. package/dist/custom-auth-path/custom_auth/core/CustomAuthAuthority.mjs +0 -82
  445. package/dist/custom-auth-path/custom_auth/core/CustomAuthAuthority.mjs.map +0 -1
  446. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +0 -1
  447. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs +0 -134
  448. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowErrorBase.mjs.map +0 -1
  449. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts.map +0 -1
  450. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowResultBase.mjs +0 -59
  451. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowResultBase.mjs.map +0 -1
  452. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowState.d.ts.map +0 -1
  453. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowState.mjs +0 -45
  454. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowState.mjs.map +0 -1
  455. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts.map +0 -1
  456. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowStateTypes.mjs +0 -45
  457. package/dist/custom-auth-path/custom_auth/core/auth_flow/AuthFlowStateTypes.mjs.map +0 -1
  458. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts.map +0 -1
  459. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts.map +0 -1
  460. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.mjs +0 -42
  461. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.mjs.map +0 -1
  462. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts.map +0 -1
  463. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.mjs +0 -56
  464. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.mjs.map +0 -1
  465. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts.map +0 -1
  466. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.mjs +0 -46
  467. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.mjs.map +0 -1
  468. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts.map +0 -1
  469. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.mjs +0 -24
  470. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.mjs.map +0 -1
  471. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts.map +0 -1
  472. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.mjs +0 -24
  473. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.mjs.map +0 -1
  474. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts.map +0 -1
  475. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.mjs +0 -181
  476. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.mjs.map +0 -1
  477. package/dist/custom-auth-path/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts.map +0 -1
  478. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts.map +0 -1
  479. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/error_type/MfaError.mjs +0 -42
  480. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/error_type/MfaError.mjs.map +0 -1
  481. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts.map +0 -1
  482. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.mjs +0 -46
  483. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.mjs.map +0 -1
  484. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts.map +0 -1
  485. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.mjs +0 -45
  486. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.mjs.map +0 -1
  487. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts.map +0 -1
  488. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.mjs +0 -24
  489. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.mjs.map +0 -1
  490. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts.map +0 -1
  491. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaFailedState.mjs +0 -24
  492. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaFailedState.mjs.map +0 -1
  493. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts.map +0 -1
  494. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaState.mjs +0 -140
  495. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaState.mjs.map +0 -1
  496. package/dist/custom-auth-path/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts.map +0 -1
  497. package/dist/custom-auth-path/custom_auth/core/error/CustomAuthApiError.d.ts.map +0 -1
  498. package/dist/custom-auth-path/custom_auth/core/error/CustomAuthApiError.mjs +0 -35
  499. package/dist/custom-auth-path/custom_auth/core/error/CustomAuthApiError.mjs.map +0 -1
  500. package/dist/custom-auth-path/custom_auth/core/error/CustomAuthError.d.ts.map +0 -1
  501. package/dist/custom-auth-path/custom_auth/core/error/CustomAuthError.mjs +0 -22
  502. package/dist/custom-auth-path/custom_auth/core/error/CustomAuthError.mjs.map +0 -1
  503. package/dist/custom-auth-path/custom_auth/core/error/HttpError.d.ts.map +0 -1
  504. package/dist/custom-auth-path/custom_auth/core/error/HttpError.mjs +0 -17
  505. package/dist/custom-auth-path/custom_auth/core/error/HttpError.mjs.map +0 -1
  506. package/dist/custom-auth-path/custom_auth/core/error/HttpErrorCodes.d.ts.map +0 -1
  507. package/dist/custom-auth-path/custom_auth/core/error/HttpErrorCodes.mjs +0 -11
  508. package/dist/custom-auth-path/custom_auth/core/error/HttpErrorCodes.mjs.map +0 -1
  509. package/dist/custom-auth-path/custom_auth/core/error/InvalidArgumentError.d.ts.map +0 -1
  510. package/dist/custom-auth-path/custom_auth/core/error/InvalidArgumentError.mjs +0 -18
  511. package/dist/custom-auth-path/custom_auth/core/error/InvalidArgumentError.mjs.map +0 -1
  512. package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationError.d.ts.map +0 -1
  513. package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationError.mjs +0 -17
  514. package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationError.mjs.map +0 -1
  515. package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts.map +0 -1
  516. package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationErrorCodes.mjs +0 -12
  517. package/dist/custom-auth-path/custom_auth/core/error/InvalidConfigurationErrorCodes.mjs.map +0 -1
  518. package/dist/custom-auth-path/custom_auth/core/error/MethodNotImplementedError.d.ts.map +0 -1
  519. package/dist/custom-auth-path/custom_auth/core/error/MethodNotImplementedError.mjs +0 -18
  520. package/dist/custom-auth-path/custom_auth/core/error/MethodNotImplementedError.mjs.map +0 -1
  521. package/dist/custom-auth-path/custom_auth/core/error/MsalCustomAuthError.d.ts.map +0 -1
  522. package/dist/custom-auth-path/custom_auth/core/error/MsalCustomAuthError.mjs +0 -17
  523. package/dist/custom-auth-path/custom_auth/core/error/MsalCustomAuthError.mjs.map +0 -1
  524. package/dist/custom-auth-path/custom_auth/core/error/NoCachedAccountFoundError.d.ts.map +0 -1
  525. package/dist/custom-auth-path/custom_auth/core/error/NoCachedAccountFoundError.mjs +0 -17
  526. package/dist/custom-auth-path/custom_auth/core/error/NoCachedAccountFoundError.mjs.map +0 -1
  527. package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlError.d.ts.map +0 -1
  528. package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlError.mjs +0 -17
  529. package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlError.mjs.map +0 -1
  530. package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlErrorCodes.d.ts.map +0 -1
  531. package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlErrorCodes.mjs +0 -10
  532. package/dist/custom-auth-path/custom_auth/core/error/ParsedUrlErrorCodes.mjs.map +0 -1
  533. package/dist/custom-auth-path/custom_auth/core/error/UnexpectedError.d.ts.map +0 -1
  534. package/dist/custom-auth-path/custom_auth/core/error/UnexpectedError.mjs +0 -30
  535. package/dist/custom-auth-path/custom_auth/core/error/UnexpectedError.mjs.map +0 -1
  536. package/dist/custom-auth-path/custom_auth/core/error/UnsupportedEnvironmentError.d.ts.map +0 -1
  537. package/dist/custom-auth-path/custom_auth/core/error/UnsupportedEnvironmentError.mjs +0 -17
  538. package/dist/custom-auth-path/custom_auth/core/error/UnsupportedEnvironmentError.mjs.map +0 -1
  539. package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeError.d.ts.map +0 -1
  540. package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeError.mjs +0 -18
  541. package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeError.mjs.map +0 -1
  542. package/dist/custom-auth-path/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts.map +0 -1
  543. package/dist/custom-auth-path/custom_auth/core/error/UserAlreadySignedInError.d.ts.map +0 -1
  544. package/dist/custom-auth-path/custom_auth/core/error/UserAlreadySignedInError.mjs +0 -17
  545. package/dist/custom-auth-path/custom_auth/core/error/UserAlreadySignedInError.mjs.map +0 -1
  546. package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +0 -1
  547. package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.mjs +0 -69
  548. package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.mjs.map +0 -1
  549. package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts.map +0 -1
  550. package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.mjs +0 -25
  551. package/dist/custom-auth-path/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.mjs.map +0 -1
  552. package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/JitClient.d.ts.map +0 -1
  553. package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/JitClient.mjs +0 -110
  554. package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/JitClient.mjs.map +0 -1
  555. package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts.map +0 -1
  556. package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts.map +0 -1
  557. package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/result/JitActionResult.mjs +0 -24
  558. package/dist/custom-auth-path/custom_auth/core/interaction_client/jit/result/JitActionResult.mjs.map +0 -1
  559. package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/MfaClient.d.ts.map +0 -1
  560. package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/MfaClient.mjs +0 -88
  561. package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/MfaClient.mjs.map +0 -1
  562. package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts.map +0 -1
  563. package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts.map +0 -1
  564. package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/result/MfaActionResult.mjs +0 -24
  565. package/dist/custom-auth-path/custom_auth/core/interaction_client/mfa/result/MfaActionResult.mjs.map +0 -1
  566. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts.map +0 -1
  567. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs +0 -87
  568. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/BaseApiClient.mjs.map +0 -1
  569. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts.map +0 -1
  570. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs +0 -22
  571. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.mjs.map +0 -1
  572. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +0 -1
  573. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.mjs +0 -24
  574. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.mjs.map +0 -1
  575. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts.map +0 -1
  576. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts.map +0 -1
  577. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.mjs +0 -51
  578. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.mjs.map +0 -1
  579. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts.map +0 -1
  580. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs +0 -94
  581. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.mjs.map +0 -1
  582. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +0 -1
  583. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs +0 -135
  584. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignInApiClient.mjs.map +0 -1
  585. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts.map +0 -1
  586. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs +0 -78
  587. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/SignupApiClient.mjs.map +0 -1
  588. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts.map +0 -1
  589. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.mjs +0 -30
  590. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.mjs.map +0 -1
  591. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts.map +0 -1
  592. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +0 -1
  593. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +0 -1
  594. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +0 -1
  595. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.mjs +0 -20
  596. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.mjs.map +0 -1
  597. package/dist/custom-auth-path/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts.map +0 -1
  598. package/dist/custom-auth-path/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +0 -1
  599. package/dist/custom-auth-path/custom_auth/core/network_client/http_client/FetchHttpClient.mjs +0 -54
  600. package/dist/custom-auth-path/custom_auth/core/network_client/http_client/FetchHttpClient.mjs.map +0 -1
  601. package/dist/custom-auth-path/custom_auth/core/network_client/http_client/IHttpClient.d.ts.map +0 -1
  602. package/dist/custom-auth-path/custom_auth/core/network_client/http_client/IHttpClient.mjs +0 -15
  603. package/dist/custom-auth-path/custom_auth/core/network_client/http_client/IHttpClient.mjs.map +0 -1
  604. package/dist/custom-auth-path/custom_auth/core/telemetry/PublicApiId.d.ts.map +0 -1
  605. package/dist/custom-auth-path/custom_auth/core/telemetry/PublicApiId.mjs +0 -40
  606. package/dist/custom-auth-path/custom_auth/core/telemetry/PublicApiId.mjs.map +0 -1
  607. package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.d.ts.map +0 -1
  608. package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.mjs +0 -37
  609. package/dist/custom-auth-path/custom_auth/core/utils/ArgumentValidator.mjs.map +0 -1
  610. package/dist/custom-auth-path/custom_auth/core/utils/UrlUtils.d.ts.map +0 -1
  611. package/dist/custom-auth-path/custom_auth/core/utils/UrlUtils.mjs +0 -34
  612. package/dist/custom-auth-path/custom_auth/core/utils/UrlUtils.mjs.map +0 -1
  613. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +0 -1
  614. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs +0 -126
  615. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/CustomAuthAccountData.mjs.map +0 -1
  616. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts.map +0 -1
  617. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/error_type/GetAccountError.mjs +0 -47
  618. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/error_type/GetAccountError.mjs.map +0 -1
  619. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts.map +0 -1
  620. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.mjs +0 -49
  621. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.mjs.map +0 -1
  622. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts.map +0 -1
  623. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccountResult.mjs +0 -48
  624. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/GetAccountResult.mjs.map +0 -1
  625. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts.map +0 -1
  626. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/SignOutResult.mjs +0 -48
  627. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/result/SignOutResult.mjs.map +0 -1
  628. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts.map +0 -1
  629. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccessTokenState.mjs +0 -36
  630. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccessTokenState.mjs.map +0 -1
  631. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts.map +0 -1
  632. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccountState.mjs +0 -36
  633. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/GetAccountState.mjs.map +0 -1
  634. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/SignOutState.d.ts.map +0 -1
  635. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/SignOutState.mjs +0 -36
  636. package/dist/custom-auth-path/custom_auth/get_account/auth_flow/state/SignOutState.mjs.map +0 -1
  637. package/dist/custom-auth-path/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +0 -1
  638. package/dist/custom-auth-path/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.mjs +0 -122
  639. package/dist/custom-auth-path/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.mjs.map +0 -1
  640. package/dist/custom-auth-path/custom_auth/index.d.ts.map +0 -1
  641. package/dist/custom-auth-path/custom_auth/index.mjs +0 -69
  642. package/dist/custom-auth-path/custom_auth/operating_context/CustomAuthOperatingContext.d.ts.map +0 -1
  643. package/dist/custom-auth-path/custom_auth/operating_context/CustomAuthOperatingContext.mjs +0 -35
  644. package/dist/custom-auth-path/custom_auth/operating_context/CustomAuthOperatingContext.mjs.map +0 -1
  645. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts.map +0 -1
  646. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.mjs +0 -67
  647. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.mjs.map +0 -1
  648. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts.map +0 -1
  649. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.mjs +0 -48
  650. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.mjs.map +0 -1
  651. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts.map +0 -1
  652. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.mjs +0 -48
  653. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.mjs.map +0 -1
  654. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts.map +0 -1
  655. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.mjs +0 -48
  656. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.mjs.map +0 -1
  657. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts.map +0 -1
  658. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.mjs +0 -43
  659. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.mjs.map +0 -1
  660. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts.map +0 -1
  661. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.mjs +0 -106
  662. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.mjs.map +0 -1
  663. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts.map +0 -1
  664. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.mjs +0 -24
  665. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.mjs.map +0 -1
  666. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts.map +0 -1
  667. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.mjs +0 -24
  668. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.mjs.map +0 -1
  669. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts.map +0 -1
  670. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.mjs +0 -64
  671. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.mjs.map +0 -1
  672. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts.map +0 -1
  673. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordState.mjs +0 -25
  674. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordState.mjs.map +0 -1
  675. package/dist/custom-auth-path/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts.map +0 -1
  676. package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +0 -1
  677. package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/ResetPasswordClient.mjs +0 -157
  678. package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/ResetPasswordClient.mjs.map +0 -1
  679. package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts.map +0 -1
  680. package/dist/custom-auth-path/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts.map +0 -1
  681. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/SignInScenario.d.ts.map +0 -1
  682. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/SignInScenario.mjs +0 -13
  683. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/SignInScenario.mjs.map +0 -1
  684. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +0 -1
  685. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs +0 -69
  686. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/error_type/SignInError.mjs.map +0 -1
  687. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts.map +0 -1
  688. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.mjs +0 -49
  689. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.mjs.map +0 -1
  690. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts.map +0 -1
  691. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResult.mjs +0 -75
  692. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInResult.mjs.map +0 -1
  693. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts.map +0 -1
  694. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.mjs +0 -56
  695. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.mjs.map +0 -1
  696. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts.map +0 -1
  697. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.mjs +0 -51
  698. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.mjs.map +0 -1
  699. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +0 -1
  700. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs +0 -107
  701. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.mjs.map +0 -1
  702. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts.map +0 -1
  703. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCompletedState.mjs +0 -25
  704. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInCompletedState.mjs.map +0 -1
  705. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +0 -1
  706. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs +0 -60
  707. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInContinuationState.mjs.map +0 -1
  708. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts.map +0 -1
  709. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInFailedState.mjs +0 -24
  710. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInFailedState.mjs.map +0 -1
  711. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +0 -1
  712. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs +0 -64
  713. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.mjs.map +0 -1
  714. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInState.d.ts.map +0 -1
  715. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInState.mjs +0 -93
  716. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInState.mjs.map +0 -1
  717. package/dist/custom-auth-path/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +0 -1
  718. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +0 -1
  719. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.mjs +0 -248
  720. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/SignInClient.mjs.map +0 -1
  721. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +0 -1
  722. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +0 -1
  723. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/result/SignInActionResult.mjs +0 -44
  724. package/dist/custom-auth-path/custom_auth/sign_in/interaction_client/result/SignInActionResult.mjs.map +0 -1
  725. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts.map +0 -1
  726. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/error_type/SignUpError.mjs +0 -91
  727. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/error_type/SignUpError.mjs.map +0 -1
  728. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts.map +0 -1
  729. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.mjs +0 -48
  730. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.mjs.map +0 -1
  731. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts.map +0 -1
  732. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResult.mjs +0 -60
  733. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpResult.mjs.map +0 -1
  734. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts.map +0 -1
  735. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.mjs +0 -48
  736. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.mjs.map +0 -1
  737. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts.map +0 -1
  738. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.mjs +0 -60
  739. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.mjs.map +0 -1
  740. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts.map +0 -1
  741. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.mjs +0 -54
  742. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.mjs.map +0 -1
  743. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts.map +0 -1
  744. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.mjs +0 -84
  745. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.mjs.map +0 -1
  746. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts.map +0 -1
  747. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.mjs +0 -155
  748. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.mjs.map +0 -1
  749. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts.map +0 -1
  750. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.mjs +0 -24
  751. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.mjs.map +0 -1
  752. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts.map +0 -1
  753. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpFailedState.mjs +0 -24
  754. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpFailedState.mjs.map +0 -1
  755. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts.map +0 -1
  756. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.mjs +0 -89
  757. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.mjs.map +0 -1
  758. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts.map +0 -1
  759. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpState.mjs +0 -26
  760. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpState.mjs.map +0 -1
  761. package/dist/custom-auth-path/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts.map +0 -1
  762. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +0 -1
  763. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/SignUpClient.mjs +0 -247
  764. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/SignUpClient.mjs.map +0 -1
  765. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts.map +0 -1
  766. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts.map +0 -1
  767. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/result/SignUpActionResult.mjs +0 -37
  768. package/dist/custom-auth-path/custom_auth/sign_up/interaction_client/result/SignUpActionResult.mjs.map +0 -1
  769. package/dist/custom-auth-path/encode/Base64Decode.d.ts.map +0 -1
  770. package/dist/custom-auth-path/encode/Base64Decode.mjs +0 -44
  771. package/dist/custom-auth-path/encode/Base64Decode.mjs.map +0 -1
  772. package/dist/custom-auth-path/encode/Base64Encode.d.ts.map +0 -1
  773. package/dist/custom-auth-path/encode/Base64Encode.mjs +0 -48
  774. package/dist/custom-auth-path/encode/Base64Encode.mjs.map +0 -1
  775. package/dist/custom-auth-path/error/BrowserAuthError.d.ts.map +0 -1
  776. package/dist/custom-auth-path/error/BrowserAuthError.mjs +0 -27
  777. package/dist/custom-auth-path/error/BrowserAuthError.mjs.map +0 -1
  778. package/dist/custom-auth-path/error/BrowserAuthErrorCodes.d.ts.map +0 -1
  779. package/dist/custom-auth-path/error/BrowserAuthErrorCodes.mjs +0 -56
  780. package/dist/custom-auth-path/error/BrowserAuthErrorCodes.mjs.map +0 -1
  781. package/dist/custom-auth-path/error/BrowserConfigurationAuthError.d.ts.map +0 -1
  782. package/dist/custom-auth-path/error/BrowserConfigurationAuthError.mjs +0 -25
  783. package/dist/custom-auth-path/error/BrowserConfigurationAuthError.mjs.map +0 -1
  784. package/dist/custom-auth-path/error/BrowserConfigurationAuthErrorCodes.d.ts.map +0 -1
  785. package/dist/custom-auth-path/error/BrowserConfigurationAuthErrorCodes.mjs +0 -11
  786. package/dist/custom-auth-path/error/BrowserConfigurationAuthErrorCodes.mjs.map +0 -1
  787. package/dist/custom-auth-path/error/NativeAuthError.d.ts.map +0 -1
  788. package/dist/custom-auth-path/error/NativeAuthError.mjs +0 -70
  789. package/dist/custom-auth-path/error/NativeAuthError.mjs.map +0 -1
  790. package/dist/custom-auth-path/error/NativeAuthErrorCodes.d.ts.map +0 -1
  791. package/dist/custom-auth-path/error/NativeAuthErrorCodes.mjs +0 -12
  792. package/dist/custom-auth-path/error/NativeAuthErrorCodes.mjs.map +0 -1
  793. package/dist/custom-auth-path/error/NestedAppAuthError.d.ts.map +0 -1
  794. package/dist/custom-auth-path/event/EventHandler.d.ts.map +0 -1
  795. package/dist/custom-auth-path/event/EventHandler.mjs +0 -110
  796. package/dist/custom-auth-path/event/EventHandler.mjs.map +0 -1
  797. package/dist/custom-auth-path/event/EventMessage.d.ts.map +0 -1
  798. package/dist/custom-auth-path/event/EventType.d.ts.map +0 -1
  799. package/dist/custom-auth-path/event/EventType.mjs +0 -31
  800. package/dist/custom-auth-path/event/EventType.mjs.map +0 -1
  801. package/dist/custom-auth-path/index.d.ts.map +0 -1
  802. package/dist/custom-auth-path/interaction_client/BaseInteractionClient.d.ts.map +0 -1
  803. package/dist/custom-auth-path/interaction_client/BaseInteractionClient.mjs +0 -143
  804. package/dist/custom-auth-path/interaction_client/BaseInteractionClient.mjs.map +0 -1
  805. package/dist/custom-auth-path/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +0 -1
  806. package/dist/custom-auth-path/interaction_client/HybridSpaAuthorizationCodeClient.mjs +0 -17
  807. package/dist/custom-auth-path/interaction_client/HybridSpaAuthorizationCodeClient.mjs.map +0 -1
  808. package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.d.ts.map +0 -1
  809. package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.mjs +0 -645
  810. package/dist/custom-auth-path/interaction_client/PlatformAuthInteractionClient.mjs.map +0 -1
  811. package/dist/custom-auth-path/interaction_client/PopupClient.d.ts.map +0 -1
  812. package/dist/custom-auth-path/interaction_client/PopupClient.mjs +0 -438
  813. package/dist/custom-auth-path/interaction_client/PopupClient.mjs.map +0 -1
  814. package/dist/custom-auth-path/interaction_client/RedirectClient.d.ts.map +0 -1
  815. package/dist/custom-auth-path/interaction_client/RedirectClient.mjs +0 -452
  816. package/dist/custom-auth-path/interaction_client/RedirectClient.mjs.map +0 -1
  817. package/dist/custom-auth-path/interaction_client/SilentAuthCodeClient.d.ts.map +0 -1
  818. package/dist/custom-auth-path/interaction_client/SilentAuthCodeClient.mjs +0 -83
  819. package/dist/custom-auth-path/interaction_client/SilentAuthCodeClient.mjs.map +0 -1
  820. package/dist/custom-auth-path/interaction_client/SilentCacheClient.d.ts.map +0 -1
  821. package/dist/custom-auth-path/interaction_client/SilentCacheClient.mjs +0 -59
  822. package/dist/custom-auth-path/interaction_client/SilentCacheClient.mjs.map +0 -1
  823. package/dist/custom-auth-path/interaction_client/SilentIframeClient.d.ts.map +0 -1
  824. package/dist/custom-auth-path/interaction_client/SilentIframeClient.mjs +0 -224
  825. package/dist/custom-auth-path/interaction_client/SilentIframeClient.mjs.map +0 -1
  826. package/dist/custom-auth-path/interaction_client/SilentRefreshClient.d.ts.map +0 -1
  827. package/dist/custom-auth-path/interaction_client/SilentRefreshClient.mjs +0 -76
  828. package/dist/custom-auth-path/interaction_client/SilentRefreshClient.mjs.map +0 -1
  829. package/dist/custom-auth-path/interaction_client/StandardInteractionClient.d.ts.map +0 -1
  830. package/dist/custom-auth-path/interaction_client/StandardInteractionClient.mjs +0 -215
  831. package/dist/custom-auth-path/interaction_client/StandardInteractionClient.mjs.map +0 -1
  832. package/dist/custom-auth-path/interaction_handler/InteractionHandler.d.ts.map +0 -1
  833. package/dist/custom-auth-path/interaction_handler/InteractionHandler.mjs +0 -96
  834. package/dist/custom-auth-path/interaction_handler/InteractionHandler.mjs.map +0 -1
  835. package/dist/custom-auth-path/interaction_handler/SilentHandler.d.ts.map +0 -1
  836. package/dist/custom-auth-path/interaction_handler/SilentHandler.mjs +0 -85
  837. package/dist/custom-auth-path/interaction_handler/SilentHandler.mjs.map +0 -1
  838. package/dist/custom-auth-path/log-strings-mapping.json +0 -1767
  839. package/dist/custom-auth-path/naa/AccountInfo.d.ts.map +0 -1
  840. package/dist/custom-auth-path/naa/AuthBridge.d.ts.map +0 -1
  841. package/dist/custom-auth-path/naa/AuthResult.d.ts.map +0 -1
  842. package/dist/custom-auth-path/naa/BridgeAccountContext.d.ts.map +0 -1
  843. package/dist/custom-auth-path/naa/BridgeCapabilities.d.ts.map +0 -1
  844. package/dist/custom-auth-path/naa/BridgeError.d.ts.map +0 -1
  845. package/dist/custom-auth-path/naa/BridgeProxy.d.ts.map +0 -1
  846. package/dist/custom-auth-path/naa/BridgeRequest.d.ts.map +0 -1
  847. package/dist/custom-auth-path/naa/BridgeRequestEnvelope.d.ts.map +0 -1
  848. package/dist/custom-auth-path/naa/BridgeResponseEnvelope.d.ts.map +0 -1
  849. package/dist/custom-auth-path/naa/BridgeStatusCode.d.ts.map +0 -1
  850. package/dist/custom-auth-path/naa/IBridgeProxy.d.ts.map +0 -1
  851. package/dist/custom-auth-path/naa/InitContext.d.ts.map +0 -1
  852. package/dist/custom-auth-path/naa/TokenRequest.d.ts.map +0 -1
  853. package/dist/custom-auth-path/naa/TokenResponse.d.ts.map +0 -1
  854. package/dist/custom-auth-path/naa/mapping/NestedAppAuthAdapter.d.ts.map +0 -1
  855. package/dist/custom-auth-path/navigation/INavigationClient.d.ts.map +0 -1
  856. package/dist/custom-auth-path/navigation/NavigationClient.d.ts.map +0 -1
  857. package/dist/custom-auth-path/navigation/NavigationClient.mjs +0 -48
  858. package/dist/custom-auth-path/navigation/NavigationClient.mjs.map +0 -1
  859. package/dist/custom-auth-path/navigation/NavigationOptions.d.ts.map +0 -1
  860. package/dist/custom-auth-path/network/FetchClient.d.ts.map +0 -1
  861. package/dist/custom-auth-path/network/FetchClient.mjs +0 -128
  862. package/dist/custom-auth-path/network/FetchClient.mjs.map +0 -1
  863. package/dist/custom-auth-path/operatingcontext/BaseOperatingContext.d.ts.map +0 -1
  864. package/dist/custom-auth-path/operatingcontext/BaseOperatingContext.mjs +0 -105
  865. package/dist/custom-auth-path/operatingcontext/BaseOperatingContext.mjs.map +0 -1
  866. package/dist/custom-auth-path/operatingcontext/NestedAppOperatingContext.d.ts.map +0 -1
  867. package/dist/custom-auth-path/operatingcontext/StandardOperatingContext.d.ts.map +0 -1
  868. package/dist/custom-auth-path/operatingcontext/StandardOperatingContext.mjs +0 -51
  869. package/dist/custom-auth-path/operatingcontext/StandardOperatingContext.mjs.map +0 -1
  870. package/dist/custom-auth-path/operatingcontext/UnknownOperatingContext.d.ts.map +0 -1
  871. package/dist/custom-auth-path/packageMetadata.d.ts +0 -3
  872. package/dist/custom-auth-path/packageMetadata.d.ts.map +0 -1
  873. package/dist/custom-auth-path/packageMetadata.mjs +0 -8
  874. package/dist/custom-auth-path/packageMetadata.mjs.map +0 -1
  875. package/dist/custom-auth-path/protocol/Authorize.d.ts.map +0 -1
  876. package/dist/custom-auth-path/protocol/Authorize.mjs +0 -313
  877. package/dist/custom-auth-path/protocol/Authorize.mjs.map +0 -1
  878. package/dist/custom-auth-path/redirect_bridge/index.d.ts.map +0 -1
  879. package/dist/custom-auth-path/request/AuthorizationCodeRequest.d.ts.map +0 -1
  880. package/dist/custom-auth-path/request/ClearCacheRequest.d.ts.map +0 -1
  881. package/dist/custom-auth-path/request/EndSessionPopupRequest.d.ts.map +0 -1
  882. package/dist/custom-auth-path/request/EndSessionRequest.d.ts.map +0 -1
  883. package/dist/custom-auth-path/request/HandleRedirectPromiseOptions.d.ts.map +0 -1
  884. package/dist/custom-auth-path/request/InitializeApplicationRequest.d.ts.map +0 -1
  885. package/dist/custom-auth-path/request/PopupRequest.d.ts.map +0 -1
  886. package/dist/custom-auth-path/request/PopupWindowAttributes.d.ts.map +0 -1
  887. package/dist/custom-auth-path/request/RedirectRequest.d.ts.map +0 -1
  888. package/dist/custom-auth-path/request/RequestHelpers.d.ts.map +0 -1
  889. package/dist/custom-auth-path/request/RequestHelpers.mjs +0 -83
  890. package/dist/custom-auth-path/request/RequestHelpers.mjs.map +0 -1
  891. package/dist/custom-auth-path/request/SilentRequest.d.ts.map +0 -1
  892. package/dist/custom-auth-path/request/SsoSilentRequest.d.ts.map +0 -1
  893. package/dist/custom-auth-path/response/AuthenticationResult.d.ts.map +0 -1
  894. package/dist/custom-auth-path/response/ResponseHandler.d.ts.map +0 -1
  895. package/dist/custom-auth-path/response/ResponseHandler.mjs +0 -46
  896. package/dist/custom-auth-path/response/ResponseHandler.mjs.map +0 -1
  897. package/dist/custom-auth-path/telemetry/BrowserPerformanceClient.d.ts.map +0 -1
  898. package/dist/custom-auth-path/telemetry/BrowserPerformanceEvents.d.ts.map +0 -1
  899. package/dist/custom-auth-path/telemetry/BrowserPerformanceEvents.mjs +0 -131
  900. package/dist/custom-auth-path/telemetry/BrowserPerformanceEvents.mjs.map +0 -1
  901. package/dist/custom-auth-path/telemetry/BrowserPerformanceMeasurement.d.ts.map +0 -1
  902. package/dist/custom-auth-path/telemetry/BrowserRootPerformanceEvents.d.ts.map +0 -1
  903. package/dist/custom-auth-path/telemetry/BrowserRootPerformanceEvents.mjs +0 -50
  904. package/dist/custom-auth-path/telemetry/BrowserRootPerformanceEvents.mjs.map +0 -1
  905. package/dist/custom-auth-path/utils/BrowserConstants.d.ts.map +0 -1
  906. package/dist/custom-auth-path/utils/BrowserConstants.mjs +0 -190
  907. package/dist/custom-auth-path/utils/BrowserConstants.mjs.map +0 -1
  908. package/dist/custom-auth-path/utils/BrowserProtocolUtils.d.ts.map +0 -1
  909. package/dist/custom-auth-path/utils/BrowserProtocolUtils.mjs +0 -28
  910. package/dist/custom-auth-path/utils/BrowserProtocolUtils.mjs.map +0 -1
  911. package/dist/custom-auth-path/utils/BrowserUtils.d.ts.map +0 -1
  912. package/dist/custom-auth-path/utils/BrowserUtils.mjs +0 -348
  913. package/dist/custom-auth-path/utils/BrowserUtils.mjs.map +0 -1
  914. package/dist/custom-auth-path/utils/Helpers.d.ts.map +0 -1
  915. package/dist/custom-auth-path/utils/Helpers.mjs +0 -20
  916. package/dist/custom-auth-path/utils/Helpers.mjs.map +0 -1
  917. package/dist/custom-auth-path/utils/MsalFrameStatsUtils.d.ts.map +0 -1
  918. package/dist/custom-auth-path/utils/MsalFrameStatsUtils.mjs +0 -27
  919. package/dist/custom-auth-path/utils/MsalFrameStatsUtils.mjs.map +0 -1
  920. package/dist/custom_auth/CustomAuthActionInputs.d.ts +0 -29
  921. package/dist/custom_auth/CustomAuthConstants.d.ts +0 -35
  922. package/dist/custom_auth/CustomAuthPublicClientApplication.d.ts +0 -55
  923. package/dist/custom_auth/ICustomAuthPublicClientApplication.d.ts +0 -33
  924. package/dist/custom_auth/UserAccountAttributes.d.ts +0 -13
  925. package/dist/custom_auth/configuration/CustomAuthConfiguration.d.ts +0 -14
  926. package/dist/custom_auth/controller/CustomAuthStandardController.d.ts +0 -27
  927. package/dist/custom_auth/controller/ICustomAuthStandardController.d.ts +0 -13
  928. package/dist/custom_auth/core/CustomAuthAuthority.d.ts +0 -29
  929. package/dist/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +0 -40
  930. package/dist/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts +0 -11
  931. package/dist/custom_auth/core/auth_flow/AuthFlowState.d.ts +0 -31
  932. package/dist/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts +0 -29
  933. package/dist/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts +0 -15
  934. package/dist/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts +0 -27
  935. package/dist/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts +0 -47
  936. package/dist/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts +0 -37
  937. package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts +0 -11
  938. package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts +0 -11
  939. package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts +0 -82
  940. package/dist/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts +0 -20
  941. package/dist/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts +0 -27
  942. package/dist/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts +0 -40
  943. package/dist/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts +0 -34
  944. package/dist/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts +0 -11
  945. package/dist/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts +0 -11
  946. package/dist/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts +0 -67
  947. package/dist/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts +0 -19
  948. package/dist/custom_auth/core/error/CustomAuthApiError.d.ts +0 -20
  949. package/dist/custom_auth/core/error/CustomAuthError.d.ts +0 -9
  950. package/dist/custom_auth/core/error/HttpError.d.ts +0 -5
  951. package/dist/custom_auth/core/error/HttpErrorCodes.d.ts +0 -3
  952. package/dist/custom_auth/core/error/InvalidArgumentError.d.ts +0 -5
  953. package/dist/custom_auth/core/error/InvalidConfigurationError.d.ts +0 -5
  954. package/dist/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts +0 -4
  955. package/dist/custom_auth/core/error/MethodNotImplementedError.d.ts +0 -5
  956. package/dist/custom_auth/core/error/MsalCustomAuthError.d.ts +0 -5
  957. package/dist/custom_auth/core/error/NoCachedAccountFoundError.d.ts +0 -5
  958. package/dist/custom_auth/core/error/ParsedUrlError.d.ts +0 -5
  959. package/dist/custom_auth/core/error/ParsedUrlErrorCodes.d.ts +0 -2
  960. package/dist/custom_auth/core/error/UnexpectedError.d.ts +0 -5
  961. package/dist/custom_auth/core/error/UnsupportedEnvironmentError.d.ts +0 -5
  962. package/dist/custom_auth/core/error/UserAccountAttributeError.d.ts +0 -5
  963. package/dist/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts +0 -2
  964. package/dist/custom_auth/core/error/UserAlreadySignedInError.d.ts +0 -5
  965. package/dist/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts +0 -34
  966. package/dist/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts +0 -22
  967. package/dist/custom_auth/core/interaction_client/jit/JitClient.d.ts +0 -21
  968. package/dist/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts +0 -20
  969. package/dist/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts +0 -22
  970. package/dist/custom_auth/core/interaction_client/mfa/MfaClient.d.ts +0 -21
  971. package/dist/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts +0 -14
  972. package/dist/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts +0 -23
  973. package/dist/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts +0 -15
  974. package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts +0 -14
  975. package/dist/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +0 -16
  976. package/dist/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts +0 -11
  977. package/dist/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts +0 -18
  978. package/dist/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts +0 -34
  979. package/dist/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +0 -37
  980. package/dist/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +0 -1
  981. package/dist/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts +0 -23
  982. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts +0 -23
  983. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts +0 -29
  984. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +0 -86
  985. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +0 -71
  986. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +0 -13
  987. package/dist/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts +0 -9
  988. package/dist/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts +0 -13
  989. package/dist/custom_auth/core/network_client/http_client/IHttpClient.d.ts +0 -35
  990. package/dist/custom_auth/core/telemetry/PublicApiId.d.ts +0 -25
  991. package/dist/custom_auth/core/utils/ArgumentValidator.d.ts +0 -4
  992. package/dist/custom_auth/core/utils/UrlUtils.d.ts +0 -3
  993. package/dist/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts +0 -47
  994. package/dist/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts +0 -32
  995. package/dist/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts +0 -37
  996. package/dist/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts +0 -36
  997. package/dist/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts +0 -35
  998. package/dist/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts +0 -20
  999. package/dist/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts +0 -20
  1000. package/dist/custom_auth/get_account/auth_flow/state/SignOutState.d.ts +0 -20
  1001. package/dist/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts +0 -21
  1002. package/dist/custom_auth/index.d.ts +0 -84
  1003. package/dist/custom_auth/operating_context/CustomAuthOperatingContext.d.ts +0 -13
  1004. package/dist/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts +0 -40
  1005. package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts +0 -37
  1006. package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts +0 -37
  1007. package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts +0 -37
  1008. package/dist/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts +0 -32
  1009. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts +0 -27
  1010. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts +0 -11
  1011. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts +0 -11
  1012. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts +0 -16
  1013. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts +0 -6
  1014. package/dist/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts +0 -19
  1015. package/dist/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts +0 -33
  1016. package/dist/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts +0 -19
  1017. package/dist/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts +0 -14
  1018. package/dist/custom_auth/sign_in/auth_flow/SignInScenario.d.ts +0 -6
  1019. package/dist/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +0 -45
  1020. package/dist/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts +0 -37
  1021. package/dist/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts +0 -72
  1022. package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts +0 -51
  1023. package/dist/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts +0 -46
  1024. package/dist/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts +0 -33
  1025. package/dist/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts +0 -12
  1026. package/dist/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts +0 -17
  1027. package/dist/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts +0 -11
  1028. package/dist/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts +0 -21
  1029. package/dist/custom_auth/sign_in/auth_flow/state/SignInState.d.ts +0 -22
  1030. package/dist/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +0 -25
  1031. package/dist/custom_auth/sign_in/interaction_client/SignInClient.d.ts +0 -49
  1032. package/dist/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +0 -32
  1033. package/dist/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +0 -43
  1034. package/dist/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts +0 -62
  1035. package/dist/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts +0 -37
  1036. package/dist/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts +0 -53
  1037. package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts +0 -37
  1038. package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts +0 -53
  1039. package/dist/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts +0 -45
  1040. package/dist/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts +0 -25
  1041. package/dist/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts +0 -32
  1042. package/dist/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts +0 -11
  1043. package/dist/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts +0 -11
  1044. package/dist/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts +0 -16
  1045. package/dist/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts +0 -6
  1046. package/dist/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts +0 -24
  1047. package/dist/custom_auth/sign_up/interaction_client/SignUpClient.d.ts +0 -41
  1048. package/dist/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts +0 -26
  1049. package/dist/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts +0 -34
  1050. package/dist/encode/Base64Decode.d.ts +0 -15
  1051. package/dist/encode/Base64Encode.d.ts +0 -20
  1052. package/dist/error/BrowserAuthError.d.ts +0 -12
  1053. package/dist/error/BrowserAuthErrorCodes.d.ts +0 -53
  1054. package/dist/error/BrowserConfigurationAuthError.d.ts +0 -11
  1055. package/dist/error/BrowserConfigurationAuthErrorCodes.d.ts +0 -4
  1056. package/dist/error/NativeAuthError.d.ts +0 -27
  1057. package/dist/error/NativeAuthErrorCodes.d.ts +0 -5
  1058. package/dist/error/NestedAppAuthError.d.ts +0 -6
  1059. package/dist/event/EventHandler.d.ts +0 -49
  1060. package/dist/event/EventMessage.d.ts +0 -41
  1061. package/dist/event/EventType.d.ts +0 -24
  1062. package/dist/index.d.ts +0 -73
  1063. package/dist/interaction_client/BaseInteractionClient.d.ts +0 -77
  1064. package/dist/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +0 -5
  1065. package/dist/interaction_client/PlatformAuthInteractionClient.d.ts +0 -151
  1066. package/dist/interaction_client/PopupClient.d.ts +0 -106
  1067. package/dist/interaction_client/RedirectClient.d.ts +0 -77
  1068. package/dist/interaction_client/SilentAuthCodeClient.d.ts +0 -24
  1069. package/dist/interaction_client/SilentCacheClient.d.ts +0 -17
  1070. package/dist/interaction_client/SilentIframeClient.d.ts +0 -57
  1071. package/dist/interaction_client/SilentRefreshClient.d.ts +0 -32
  1072. package/dist/interaction_client/StandardInteractionClient.d.ts +0 -76
  1073. package/dist/interaction_handler/InteractionHandler.d.ts +0 -33
  1074. package/dist/interaction_handler/SilentHandler.d.ts +0 -17
  1075. package/dist/naa/AccountInfo.d.ts +0 -13
  1076. package/dist/naa/AuthBridge.d.ts +0 -9
  1077. package/dist/naa/AuthResult.d.ts +0 -7
  1078. package/dist/naa/BridgeAccountContext.d.ts +0 -13
  1079. package/dist/naa/BridgeCapabilities.d.ts +0 -4
  1080. package/dist/naa/BridgeError.d.ts +0 -10
  1081. package/dist/naa/BridgeProxy.d.ts +0 -69
  1082. package/dist/naa/BridgeRequest.d.ts +0 -8
  1083. package/dist/naa/BridgeRequestEnvelope.d.ts +0 -13
  1084. package/dist/naa/BridgeResponseEnvelope.d.ts +0 -14
  1085. package/dist/naa/BridgeStatusCode.d.ts +0 -12
  1086. package/dist/naa/IBridgeProxy.d.ts +0 -11
  1087. package/dist/naa/InitContext.d.ts +0 -9
  1088. package/dist/naa/TokenRequest.d.ts +0 -21
  1089. package/dist/naa/TokenResponse.d.ts +0 -14
  1090. package/dist/naa/mapping/NestedAppAuthAdapter.d.ts +0 -36
  1091. package/dist/navigation/INavigationClient.d.ts +0 -17
  1092. package/dist/navigation/NavigationClient.d.ts +0 -23
  1093. package/dist/navigation/NavigationOptions.d.ts +0 -13
  1094. package/dist/network/FetchClient.d.ts +0 -21
  1095. package/dist/operatingcontext/BaseOperatingContext.d.ts +0 -43
  1096. package/dist/operatingcontext/NestedAppOperatingContext.d.ts +0 -41
  1097. package/dist/operatingcontext/StandardOperatingContext.d.ts +0 -26
  1098. package/dist/operatingcontext/UnknownOperatingContext.d.ts +0 -26
  1099. package/dist/packageMetadata.d.ts +0 -3
  1100. package/dist/packageMetadata.d.ts.map +0 -1
  1101. package/dist/protocol/Authorize.d.ts +0 -102
  1102. package/dist/redirect-bridge/app/IPublicClientApplication.d.ts +0 -48
  1103. package/dist/redirect-bridge/app/IPublicClientApplication.d.ts.map +0 -1
  1104. package/dist/redirect-bridge/app/PublicClientApplication.d.ts +0 -247
  1105. package/dist/redirect-bridge/app/PublicClientApplication.d.ts.map +0 -1
  1106. package/dist/redirect-bridge/broker/nativeBroker/IPlatformAuthHandler.d.ts +0 -12
  1107. package/dist/redirect-bridge/broker/nativeBroker/IPlatformAuthHandler.d.ts.map +0 -1
  1108. package/dist/redirect-bridge/broker/nativeBroker/NativeStatusCodes.d.ts +0 -9
  1109. package/dist/redirect-bridge/broker/nativeBroker/NativeStatusCodes.d.ts.map +0 -1
  1110. package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthDOMHandler.d.ts +0 -30
  1111. package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthDOMHandler.d.ts.map +0 -1
  1112. package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts +0 -63
  1113. package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts.map +0 -1
  1114. package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthProvider.d.ts +0 -28
  1115. package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthProvider.d.ts.map +0 -1
  1116. package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthRequest.d.ts +0 -79
  1117. package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthRequest.d.ts.map +0 -1
  1118. package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthResponse.d.ts +0 -71
  1119. package/dist/redirect-bridge/broker/nativeBroker/PlatformAuthResponse.d.ts.map +0 -1
  1120. package/dist/redirect-bridge/cache/AccountManager.d.ts +0 -24
  1121. package/dist/redirect-bridge/cache/AccountManager.d.ts.map +0 -1
  1122. package/dist/redirect-bridge/cache/AsyncMemoryStorage.d.ts +0 -58
  1123. package/dist/redirect-bridge/cache/AsyncMemoryStorage.d.ts.map +0 -1
  1124. package/dist/redirect-bridge/cache/BrowserCacheManager.d.ts +0 -364
  1125. package/dist/redirect-bridge/cache/BrowserCacheManager.d.ts.map +0 -1
  1126. package/dist/redirect-bridge/cache/CacheHelpers.d.ts +0 -16
  1127. package/dist/redirect-bridge/cache/CacheHelpers.d.ts.map +0 -1
  1128. package/dist/redirect-bridge/cache/CacheKeys.d.ts +0 -15
  1129. package/dist/redirect-bridge/cache/CacheKeys.d.ts.map +0 -1
  1130. package/dist/redirect-bridge/cache/CacheKeys.mjs +0 -10
  1131. package/dist/redirect-bridge/cache/CacheKeys.mjs.map +0 -1
  1132. package/dist/redirect-bridge/cache/CookieStorage.d.ts +0 -23
  1133. package/dist/redirect-bridge/cache/CookieStorage.d.ts.map +0 -1
  1134. package/dist/redirect-bridge/cache/DatabaseStorage.d.ts +0 -57
  1135. package/dist/redirect-bridge/cache/DatabaseStorage.d.ts.map +0 -1
  1136. package/dist/redirect-bridge/cache/EncryptedData.d.ts +0 -8
  1137. package/dist/redirect-bridge/cache/EncryptedData.d.ts.map +0 -1
  1138. package/dist/redirect-bridge/cache/IAsyncStorage.d.ts +0 -33
  1139. package/dist/redirect-bridge/cache/IAsyncStorage.d.ts.map +0 -1
  1140. package/dist/redirect-bridge/cache/IWindowStorage.d.ts +0 -42
  1141. package/dist/redirect-bridge/cache/IWindowStorage.d.ts.map +0 -1
  1142. package/dist/redirect-bridge/cache/LocalStorage.d.ts +0 -51
  1143. package/dist/redirect-bridge/cache/LocalStorage.d.ts.map +0 -1
  1144. package/dist/redirect-bridge/cache/MemoryStorage.d.ts +0 -16
  1145. package/dist/redirect-bridge/cache/MemoryStorage.d.ts.map +0 -1
  1146. package/dist/redirect-bridge/cache/SessionStorage.d.ts +0 -14
  1147. package/dist/redirect-bridge/cache/SessionStorage.d.ts.map +0 -1
  1148. package/dist/redirect-bridge/cache/TokenCache.d.ts +0 -20
  1149. package/dist/redirect-bridge/cache/TokenCache.d.ts.map +0 -1
  1150. package/dist/redirect-bridge/config/Configuration.d.ts +0 -198
  1151. package/dist/redirect-bridge/config/Configuration.d.ts.map +0 -1
  1152. package/dist/redirect-bridge/config/Configuration.mjs +0 -10
  1153. package/dist/redirect-bridge/config/Configuration.mjs.map +0 -1
  1154. package/dist/redirect-bridge/controllers/IController.d.ts +0 -3
  1155. package/dist/redirect-bridge/controllers/IController.d.ts.map +0 -1
  1156. package/dist/redirect-bridge/controllers/NestedAppAuthController.d.ts +0 -159
  1157. package/dist/redirect-bridge/controllers/NestedAppAuthController.d.ts.map +0 -1
  1158. package/dist/redirect-bridge/controllers/StandardController.d.ts +0 -398
  1159. package/dist/redirect-bridge/controllers/StandardController.d.ts.map +0 -1
  1160. package/dist/redirect-bridge/controllers/UnknownOperatingContextController.d.ts +0 -73
  1161. package/dist/redirect-bridge/controllers/UnknownOperatingContextController.d.ts.map +0 -1
  1162. package/dist/redirect-bridge/crypto/BrowserCrypto.d.ts +0 -96
  1163. package/dist/redirect-bridge/crypto/BrowserCrypto.d.ts.map +0 -1
  1164. package/dist/redirect-bridge/crypto/CryptoOps.d.ts +0 -77
  1165. package/dist/redirect-bridge/crypto/CryptoOps.d.ts.map +0 -1
  1166. package/dist/redirect-bridge/crypto/PkceGenerator.d.ts +0 -9
  1167. package/dist/redirect-bridge/crypto/PkceGenerator.d.ts.map +0 -1
  1168. package/dist/redirect-bridge/crypto/SignedHttpRequest.d.ts +0 -32
  1169. package/dist/redirect-bridge/crypto/SignedHttpRequest.d.ts.map +0 -1
  1170. package/dist/redirect-bridge/custom_auth/CustomAuthActionInputs.d.ts +0 -29
  1171. package/dist/redirect-bridge/custom_auth/CustomAuthActionInputs.d.ts.map +0 -1
  1172. package/dist/redirect-bridge/custom_auth/CustomAuthConstants.d.ts +0 -35
  1173. package/dist/redirect-bridge/custom_auth/CustomAuthConstants.d.ts.map +0 -1
  1174. package/dist/redirect-bridge/custom_auth/CustomAuthPublicClientApplication.d.ts +0 -55
  1175. package/dist/redirect-bridge/custom_auth/CustomAuthPublicClientApplication.d.ts.map +0 -1
  1176. package/dist/redirect-bridge/custom_auth/ICustomAuthPublicClientApplication.d.ts +0 -33
  1177. package/dist/redirect-bridge/custom_auth/ICustomAuthPublicClientApplication.d.ts.map +0 -1
  1178. package/dist/redirect-bridge/custom_auth/UserAccountAttributes.d.ts +0 -13
  1179. package/dist/redirect-bridge/custom_auth/UserAccountAttributes.d.ts.map +0 -1
  1180. package/dist/redirect-bridge/custom_auth/configuration/CustomAuthConfiguration.d.ts +0 -14
  1181. package/dist/redirect-bridge/custom_auth/configuration/CustomAuthConfiguration.d.ts.map +0 -1
  1182. package/dist/redirect-bridge/custom_auth/controller/CustomAuthStandardController.d.ts +0 -27
  1183. package/dist/redirect-bridge/custom_auth/controller/CustomAuthStandardController.d.ts.map +0 -1
  1184. package/dist/redirect-bridge/custom_auth/controller/ICustomAuthStandardController.d.ts +0 -13
  1185. package/dist/redirect-bridge/custom_auth/controller/ICustomAuthStandardController.d.ts.map +0 -1
  1186. package/dist/redirect-bridge/custom_auth/core/CustomAuthAuthority.d.ts +0 -29
  1187. package/dist/redirect-bridge/custom_auth/core/CustomAuthAuthority.d.ts.map +0 -1
  1188. package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +0 -40
  1189. package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +0 -1
  1190. package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts +0 -11
  1191. package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts.map +0 -1
  1192. package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowState.d.ts +0 -31
  1193. package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowState.d.ts.map +0 -1
  1194. package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts +0 -29
  1195. package/dist/redirect-bridge/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts.map +0 -1
  1196. package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts +0 -15
  1197. package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts.map +0 -1
  1198. package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts +0 -27
  1199. package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts.map +0 -1
  1200. package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts +0 -47
  1201. package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts.map +0 -1
  1202. package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts +0 -37
  1203. package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts.map +0 -1
  1204. package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts +0 -11
  1205. package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts.map +0 -1
  1206. package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts +0 -11
  1207. package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts.map +0 -1
  1208. package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts +0 -82
  1209. package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts.map +0 -1
  1210. package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts +0 -20
  1211. package/dist/redirect-bridge/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts.map +0 -1
  1212. package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts +0 -27
  1213. package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts.map +0 -1
  1214. package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts +0 -40
  1215. package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts.map +0 -1
  1216. package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts +0 -34
  1217. package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts.map +0 -1
  1218. package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts +0 -11
  1219. package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts.map +0 -1
  1220. package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts +0 -11
  1221. package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts.map +0 -1
  1222. package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts +0 -67
  1223. package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts.map +0 -1
  1224. package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts +0 -19
  1225. package/dist/redirect-bridge/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts.map +0 -1
  1226. package/dist/redirect-bridge/custom_auth/core/error/CustomAuthApiError.d.ts +0 -20
  1227. package/dist/redirect-bridge/custom_auth/core/error/CustomAuthApiError.d.ts.map +0 -1
  1228. package/dist/redirect-bridge/custom_auth/core/error/CustomAuthError.d.ts +0 -9
  1229. package/dist/redirect-bridge/custom_auth/core/error/CustomAuthError.d.ts.map +0 -1
  1230. package/dist/redirect-bridge/custom_auth/core/error/HttpError.d.ts +0 -5
  1231. package/dist/redirect-bridge/custom_auth/core/error/HttpError.d.ts.map +0 -1
  1232. package/dist/redirect-bridge/custom_auth/core/error/HttpErrorCodes.d.ts +0 -3
  1233. package/dist/redirect-bridge/custom_auth/core/error/HttpErrorCodes.d.ts.map +0 -1
  1234. package/dist/redirect-bridge/custom_auth/core/error/InvalidArgumentError.d.ts +0 -5
  1235. package/dist/redirect-bridge/custom_auth/core/error/InvalidArgumentError.d.ts.map +0 -1
  1236. package/dist/redirect-bridge/custom_auth/core/error/InvalidConfigurationError.d.ts +0 -5
  1237. package/dist/redirect-bridge/custom_auth/core/error/InvalidConfigurationError.d.ts.map +0 -1
  1238. package/dist/redirect-bridge/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts +0 -4
  1239. package/dist/redirect-bridge/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts.map +0 -1
  1240. package/dist/redirect-bridge/custom_auth/core/error/MethodNotImplementedError.d.ts +0 -5
  1241. package/dist/redirect-bridge/custom_auth/core/error/MethodNotImplementedError.d.ts.map +0 -1
  1242. package/dist/redirect-bridge/custom_auth/core/error/MsalCustomAuthError.d.ts +0 -5
  1243. package/dist/redirect-bridge/custom_auth/core/error/MsalCustomAuthError.d.ts.map +0 -1
  1244. package/dist/redirect-bridge/custom_auth/core/error/NoCachedAccountFoundError.d.ts +0 -5
  1245. package/dist/redirect-bridge/custom_auth/core/error/NoCachedAccountFoundError.d.ts.map +0 -1
  1246. package/dist/redirect-bridge/custom_auth/core/error/ParsedUrlError.d.ts +0 -5
  1247. package/dist/redirect-bridge/custom_auth/core/error/ParsedUrlError.d.ts.map +0 -1
  1248. package/dist/redirect-bridge/custom_auth/core/error/ParsedUrlErrorCodes.d.ts +0 -2
  1249. package/dist/redirect-bridge/custom_auth/core/error/ParsedUrlErrorCodes.d.ts.map +0 -1
  1250. package/dist/redirect-bridge/custom_auth/core/error/UnexpectedError.d.ts +0 -5
  1251. package/dist/redirect-bridge/custom_auth/core/error/UnexpectedError.d.ts.map +0 -1
  1252. package/dist/redirect-bridge/custom_auth/core/error/UnsupportedEnvironmentError.d.ts +0 -5
  1253. package/dist/redirect-bridge/custom_auth/core/error/UnsupportedEnvironmentError.d.ts.map +0 -1
  1254. package/dist/redirect-bridge/custom_auth/core/error/UserAccountAttributeError.d.ts +0 -5
  1255. package/dist/redirect-bridge/custom_auth/core/error/UserAccountAttributeError.d.ts.map +0 -1
  1256. package/dist/redirect-bridge/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts +0 -2
  1257. package/dist/redirect-bridge/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts.map +0 -1
  1258. package/dist/redirect-bridge/custom_auth/core/error/UserAlreadySignedInError.d.ts +0 -5
  1259. package/dist/redirect-bridge/custom_auth/core/error/UserAlreadySignedInError.d.ts.map +0 -1
  1260. package/dist/redirect-bridge/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts +0 -34
  1261. package/dist/redirect-bridge/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +0 -1
  1262. package/dist/redirect-bridge/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts +0 -22
  1263. package/dist/redirect-bridge/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts.map +0 -1
  1264. package/dist/redirect-bridge/custom_auth/core/interaction_client/jit/JitClient.d.ts +0 -21
  1265. package/dist/redirect-bridge/custom_auth/core/interaction_client/jit/JitClient.d.ts.map +0 -1
  1266. package/dist/redirect-bridge/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts +0 -20
  1267. package/dist/redirect-bridge/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts.map +0 -1
  1268. package/dist/redirect-bridge/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts +0 -22
  1269. package/dist/redirect-bridge/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts.map +0 -1
  1270. package/dist/redirect-bridge/custom_auth/core/interaction_client/mfa/MfaClient.d.ts +0 -21
  1271. package/dist/redirect-bridge/custom_auth/core/interaction_client/mfa/MfaClient.d.ts.map +0 -1
  1272. package/dist/redirect-bridge/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts +0 -14
  1273. package/dist/redirect-bridge/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts.map +0 -1
  1274. package/dist/redirect-bridge/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts +0 -23
  1275. package/dist/redirect-bridge/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts.map +0 -1
  1276. package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts +0 -15
  1277. package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts.map +0 -1
  1278. package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts +0 -14
  1279. package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts.map +0 -1
  1280. package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +0 -16
  1281. package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +0 -1
  1282. package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts +0 -11
  1283. package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts.map +0 -1
  1284. package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts +0 -18
  1285. package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts.map +0 -1
  1286. package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts +0 -34
  1287. package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts.map +0 -1
  1288. package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +0 -37
  1289. package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +0 -1
  1290. package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts +0 -23
  1291. package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts.map +0 -1
  1292. package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts +0 -23
  1293. package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts.map +0 -1
  1294. package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts +0 -29
  1295. package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts.map +0 -1
  1296. package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +0 -86
  1297. package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +0 -1
  1298. package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +0 -71
  1299. package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +0 -1
  1300. package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +0 -13
  1301. package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +0 -1
  1302. package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts +0 -9
  1303. package/dist/redirect-bridge/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts.map +0 -1
  1304. package/dist/redirect-bridge/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts +0 -13
  1305. package/dist/redirect-bridge/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +0 -1
  1306. package/dist/redirect-bridge/custom_auth/core/network_client/http_client/IHttpClient.d.ts +0 -35
  1307. package/dist/redirect-bridge/custom_auth/core/network_client/http_client/IHttpClient.d.ts.map +0 -1
  1308. package/dist/redirect-bridge/custom_auth/core/telemetry/PublicApiId.d.ts +0 -25
  1309. package/dist/redirect-bridge/custom_auth/core/telemetry/PublicApiId.d.ts.map +0 -1
  1310. package/dist/redirect-bridge/custom_auth/core/utils/ArgumentValidator.d.ts +0 -4
  1311. package/dist/redirect-bridge/custom_auth/core/utils/ArgumentValidator.d.ts.map +0 -1
  1312. package/dist/redirect-bridge/custom_auth/core/utils/UrlUtils.d.ts +0 -3
  1313. package/dist/redirect-bridge/custom_auth/core/utils/UrlUtils.d.ts.map +0 -1
  1314. package/dist/redirect-bridge/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts +0 -47
  1315. package/dist/redirect-bridge/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +0 -1
  1316. package/dist/redirect-bridge/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts +0 -32
  1317. package/dist/redirect-bridge/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts.map +0 -1
  1318. package/dist/redirect-bridge/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts +0 -37
  1319. package/dist/redirect-bridge/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts.map +0 -1
  1320. package/dist/redirect-bridge/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts +0 -36
  1321. package/dist/redirect-bridge/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts.map +0 -1
  1322. package/dist/redirect-bridge/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts +0 -35
  1323. package/dist/redirect-bridge/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts.map +0 -1
  1324. package/dist/redirect-bridge/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts +0 -20
  1325. package/dist/redirect-bridge/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts.map +0 -1
  1326. package/dist/redirect-bridge/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts +0 -20
  1327. package/dist/redirect-bridge/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts.map +0 -1
  1328. package/dist/redirect-bridge/custom_auth/get_account/auth_flow/state/SignOutState.d.ts +0 -20
  1329. package/dist/redirect-bridge/custom_auth/get_account/auth_flow/state/SignOutState.d.ts.map +0 -1
  1330. package/dist/redirect-bridge/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts +0 -21
  1331. package/dist/redirect-bridge/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +0 -1
  1332. package/dist/redirect-bridge/custom_auth/index.d.ts +0 -84
  1333. package/dist/redirect-bridge/custom_auth/index.d.ts.map +0 -1
  1334. package/dist/redirect-bridge/custom_auth/operating_context/CustomAuthOperatingContext.d.ts +0 -13
  1335. package/dist/redirect-bridge/custom_auth/operating_context/CustomAuthOperatingContext.d.ts.map +0 -1
  1336. package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts +0 -40
  1337. package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts.map +0 -1
  1338. package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts +0 -37
  1339. package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts.map +0 -1
  1340. package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts +0 -37
  1341. package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts.map +0 -1
  1342. package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts +0 -37
  1343. package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts.map +0 -1
  1344. package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts +0 -32
  1345. package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts.map +0 -1
  1346. package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts +0 -27
  1347. package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts.map +0 -1
  1348. package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts +0 -11
  1349. package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts.map +0 -1
  1350. package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts +0 -11
  1351. package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts.map +0 -1
  1352. package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts +0 -16
  1353. package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts.map +0 -1
  1354. package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts +0 -6
  1355. package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts.map +0 -1
  1356. package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts +0 -19
  1357. package/dist/redirect-bridge/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts.map +0 -1
  1358. package/dist/redirect-bridge/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts +0 -33
  1359. package/dist/redirect-bridge/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +0 -1
  1360. package/dist/redirect-bridge/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts +0 -19
  1361. package/dist/redirect-bridge/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts.map +0 -1
  1362. package/dist/redirect-bridge/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts +0 -14
  1363. package/dist/redirect-bridge/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts.map +0 -1
  1364. package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/SignInScenario.d.ts +0 -6
  1365. package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/SignInScenario.d.ts.map +0 -1
  1366. package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +0 -45
  1367. package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +0 -1
  1368. package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts +0 -37
  1369. package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts.map +0 -1
  1370. package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts +0 -72
  1371. package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts.map +0 -1
  1372. package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts +0 -51
  1373. package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts.map +0 -1
  1374. package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts +0 -46
  1375. package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts.map +0 -1
  1376. package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts +0 -33
  1377. package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +0 -1
  1378. package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts +0 -12
  1379. package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts.map +0 -1
  1380. package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts +0 -17
  1381. package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +0 -1
  1382. package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts +0 -11
  1383. package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts.map +0 -1
  1384. package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts +0 -21
  1385. package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +0 -1
  1386. package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInState.d.ts +0 -22
  1387. package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInState.d.ts.map +0 -1
  1388. package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +0 -25
  1389. package/dist/redirect-bridge/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +0 -1
  1390. package/dist/redirect-bridge/custom_auth/sign_in/interaction_client/SignInClient.d.ts +0 -49
  1391. package/dist/redirect-bridge/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +0 -1
  1392. package/dist/redirect-bridge/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +0 -32
  1393. package/dist/redirect-bridge/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +0 -1
  1394. package/dist/redirect-bridge/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +0 -43
  1395. package/dist/redirect-bridge/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +0 -1
  1396. package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts +0 -62
  1397. package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts.map +0 -1
  1398. package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts +0 -37
  1399. package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts.map +0 -1
  1400. package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts +0 -53
  1401. package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts.map +0 -1
  1402. package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts +0 -37
  1403. package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts.map +0 -1
  1404. package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts +0 -53
  1405. package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts.map +0 -1
  1406. package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts +0 -45
  1407. package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts.map +0 -1
  1408. package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts +0 -25
  1409. package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts.map +0 -1
  1410. package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts +0 -32
  1411. package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts.map +0 -1
  1412. package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts +0 -11
  1413. package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts.map +0 -1
  1414. package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts +0 -11
  1415. package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts.map +0 -1
  1416. package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts +0 -16
  1417. package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts.map +0 -1
  1418. package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts +0 -6
  1419. package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts.map +0 -1
  1420. package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts +0 -24
  1421. package/dist/redirect-bridge/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts.map +0 -1
  1422. package/dist/redirect-bridge/custom_auth/sign_up/interaction_client/SignUpClient.d.ts +0 -41
  1423. package/dist/redirect-bridge/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +0 -1
  1424. package/dist/redirect-bridge/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts +0 -26
  1425. package/dist/redirect-bridge/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts.map +0 -1
  1426. package/dist/redirect-bridge/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts +0 -34
  1427. package/dist/redirect-bridge/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts.map +0 -1
  1428. package/dist/redirect-bridge/encode/Base64Decode.d.ts +0 -15
  1429. package/dist/redirect-bridge/encode/Base64Decode.d.ts.map +0 -1
  1430. package/dist/redirect-bridge/encode/Base64Decode.mjs +0 -44
  1431. package/dist/redirect-bridge/encode/Base64Decode.mjs.map +0 -1
  1432. package/dist/redirect-bridge/encode/Base64Encode.d.ts +0 -20
  1433. package/dist/redirect-bridge/encode/Base64Encode.d.ts.map +0 -1
  1434. package/dist/redirect-bridge/error/BrowserAuthError.d.ts +0 -12
  1435. package/dist/redirect-bridge/error/BrowserAuthError.d.ts.map +0 -1
  1436. package/dist/redirect-bridge/error/BrowserAuthError.mjs +0 -27
  1437. package/dist/redirect-bridge/error/BrowserAuthError.mjs.map +0 -1
  1438. package/dist/redirect-bridge/error/BrowserAuthErrorCodes.d.ts +0 -53
  1439. package/dist/redirect-bridge/error/BrowserAuthErrorCodes.d.ts.map +0 -1
  1440. package/dist/redirect-bridge/error/BrowserAuthErrorCodes.mjs +0 -14
  1441. package/dist/redirect-bridge/error/BrowserAuthErrorCodes.mjs.map +0 -1
  1442. package/dist/redirect-bridge/error/BrowserConfigurationAuthError.d.ts +0 -11
  1443. package/dist/redirect-bridge/error/BrowserConfigurationAuthError.d.ts.map +0 -1
  1444. package/dist/redirect-bridge/error/BrowserConfigurationAuthErrorCodes.d.ts +0 -4
  1445. package/dist/redirect-bridge/error/BrowserConfigurationAuthErrorCodes.d.ts.map +0 -1
  1446. package/dist/redirect-bridge/error/NativeAuthError.d.ts +0 -27
  1447. package/dist/redirect-bridge/error/NativeAuthError.d.ts.map +0 -1
  1448. package/dist/redirect-bridge/error/NativeAuthErrorCodes.d.ts +0 -5
  1449. package/dist/redirect-bridge/error/NativeAuthErrorCodes.d.ts.map +0 -1
  1450. package/dist/redirect-bridge/error/NestedAppAuthError.d.ts +0 -6
  1451. package/dist/redirect-bridge/error/NestedAppAuthError.d.ts.map +0 -1
  1452. package/dist/redirect-bridge/event/EventHandler.d.ts +0 -49
  1453. package/dist/redirect-bridge/event/EventHandler.d.ts.map +0 -1
  1454. package/dist/redirect-bridge/event/EventMessage.d.ts +0 -41
  1455. package/dist/redirect-bridge/event/EventMessage.d.ts.map +0 -1
  1456. package/dist/redirect-bridge/event/EventType.d.ts +0 -24
  1457. package/dist/redirect-bridge/event/EventType.d.ts.map +0 -1
  1458. package/dist/redirect-bridge/index.d.ts +0 -73
  1459. package/dist/redirect-bridge/index.d.ts.map +0 -1
  1460. package/dist/redirect-bridge/interaction_client/BaseInteractionClient.d.ts +0 -77
  1461. package/dist/redirect-bridge/interaction_client/BaseInteractionClient.d.ts.map +0 -1
  1462. package/dist/redirect-bridge/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +0 -5
  1463. package/dist/redirect-bridge/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +0 -1
  1464. package/dist/redirect-bridge/interaction_client/PlatformAuthInteractionClient.d.ts +0 -151
  1465. package/dist/redirect-bridge/interaction_client/PlatformAuthInteractionClient.d.ts.map +0 -1
  1466. package/dist/redirect-bridge/interaction_client/PopupClient.d.ts +0 -106
  1467. package/dist/redirect-bridge/interaction_client/PopupClient.d.ts.map +0 -1
  1468. package/dist/redirect-bridge/interaction_client/RedirectClient.d.ts +0 -77
  1469. package/dist/redirect-bridge/interaction_client/RedirectClient.d.ts.map +0 -1
  1470. package/dist/redirect-bridge/interaction_client/SilentAuthCodeClient.d.ts +0 -24
  1471. package/dist/redirect-bridge/interaction_client/SilentAuthCodeClient.d.ts.map +0 -1
  1472. package/dist/redirect-bridge/interaction_client/SilentCacheClient.d.ts +0 -17
  1473. package/dist/redirect-bridge/interaction_client/SilentCacheClient.d.ts.map +0 -1
  1474. package/dist/redirect-bridge/interaction_client/SilentIframeClient.d.ts +0 -57
  1475. package/dist/redirect-bridge/interaction_client/SilentIframeClient.d.ts.map +0 -1
  1476. package/dist/redirect-bridge/interaction_client/SilentRefreshClient.d.ts +0 -32
  1477. package/dist/redirect-bridge/interaction_client/SilentRefreshClient.d.ts.map +0 -1
  1478. package/dist/redirect-bridge/interaction_client/StandardInteractionClient.d.ts +0 -76
  1479. package/dist/redirect-bridge/interaction_client/StandardInteractionClient.d.ts.map +0 -1
  1480. package/dist/redirect-bridge/interaction_handler/InteractionHandler.d.ts +0 -33
  1481. package/dist/redirect-bridge/interaction_handler/InteractionHandler.d.ts.map +0 -1
  1482. package/dist/redirect-bridge/interaction_handler/SilentHandler.d.ts +0 -17
  1483. package/dist/redirect-bridge/interaction_handler/SilentHandler.d.ts.map +0 -1
  1484. package/dist/redirect-bridge/naa/AccountInfo.d.ts +0 -13
  1485. package/dist/redirect-bridge/naa/AccountInfo.d.ts.map +0 -1
  1486. package/dist/redirect-bridge/naa/AuthBridge.d.ts +0 -9
  1487. package/dist/redirect-bridge/naa/AuthBridge.d.ts.map +0 -1
  1488. package/dist/redirect-bridge/naa/AuthResult.d.ts +0 -7
  1489. package/dist/redirect-bridge/naa/AuthResult.d.ts.map +0 -1
  1490. package/dist/redirect-bridge/naa/BridgeAccountContext.d.ts +0 -13
  1491. package/dist/redirect-bridge/naa/BridgeAccountContext.d.ts.map +0 -1
  1492. package/dist/redirect-bridge/naa/BridgeCapabilities.d.ts +0 -4
  1493. package/dist/redirect-bridge/naa/BridgeCapabilities.d.ts.map +0 -1
  1494. package/dist/redirect-bridge/naa/BridgeError.d.ts +0 -10
  1495. package/dist/redirect-bridge/naa/BridgeError.d.ts.map +0 -1
  1496. package/dist/redirect-bridge/naa/BridgeProxy.d.ts +0 -69
  1497. package/dist/redirect-bridge/naa/BridgeProxy.d.ts.map +0 -1
  1498. package/dist/redirect-bridge/naa/BridgeRequest.d.ts +0 -8
  1499. package/dist/redirect-bridge/naa/BridgeRequest.d.ts.map +0 -1
  1500. package/dist/redirect-bridge/naa/BridgeRequestEnvelope.d.ts +0 -13
  1501. package/dist/redirect-bridge/naa/BridgeRequestEnvelope.d.ts.map +0 -1
  1502. package/dist/redirect-bridge/naa/BridgeResponseEnvelope.d.ts +0 -14
  1503. package/dist/redirect-bridge/naa/BridgeResponseEnvelope.d.ts.map +0 -1
  1504. package/dist/redirect-bridge/naa/BridgeStatusCode.d.ts +0 -12
  1505. package/dist/redirect-bridge/naa/BridgeStatusCode.d.ts.map +0 -1
  1506. package/dist/redirect-bridge/naa/IBridgeProxy.d.ts +0 -11
  1507. package/dist/redirect-bridge/naa/IBridgeProxy.d.ts.map +0 -1
  1508. package/dist/redirect-bridge/naa/InitContext.d.ts +0 -9
  1509. package/dist/redirect-bridge/naa/InitContext.d.ts.map +0 -1
  1510. package/dist/redirect-bridge/naa/TokenRequest.d.ts +0 -21
  1511. package/dist/redirect-bridge/naa/TokenRequest.d.ts.map +0 -1
  1512. package/dist/redirect-bridge/naa/TokenResponse.d.ts +0 -14
  1513. package/dist/redirect-bridge/naa/TokenResponse.d.ts.map +0 -1
  1514. package/dist/redirect-bridge/naa/mapping/NestedAppAuthAdapter.d.ts +0 -36
  1515. package/dist/redirect-bridge/naa/mapping/NestedAppAuthAdapter.d.ts.map +0 -1
  1516. package/dist/redirect-bridge/navigation/INavigationClient.d.ts +0 -17
  1517. package/dist/redirect-bridge/navigation/INavigationClient.d.ts.map +0 -1
  1518. package/dist/redirect-bridge/navigation/NavigationClient.d.ts +0 -23
  1519. package/dist/redirect-bridge/navigation/NavigationClient.d.ts.map +0 -1
  1520. package/dist/redirect-bridge/navigation/NavigationClient.mjs +0 -48
  1521. package/dist/redirect-bridge/navigation/NavigationClient.mjs.map +0 -1
  1522. package/dist/redirect-bridge/navigation/NavigationOptions.d.ts +0 -13
  1523. package/dist/redirect-bridge/navigation/NavigationOptions.d.ts.map +0 -1
  1524. package/dist/redirect-bridge/network/FetchClient.d.ts +0 -21
  1525. package/dist/redirect-bridge/network/FetchClient.d.ts.map +0 -1
  1526. package/dist/redirect-bridge/operatingcontext/BaseOperatingContext.d.ts +0 -43
  1527. package/dist/redirect-bridge/operatingcontext/BaseOperatingContext.d.ts.map +0 -1
  1528. package/dist/redirect-bridge/operatingcontext/NestedAppOperatingContext.d.ts +0 -41
  1529. package/dist/redirect-bridge/operatingcontext/NestedAppOperatingContext.d.ts.map +0 -1
  1530. package/dist/redirect-bridge/operatingcontext/StandardOperatingContext.d.ts +0 -26
  1531. package/dist/redirect-bridge/operatingcontext/StandardOperatingContext.d.ts.map +0 -1
  1532. package/dist/redirect-bridge/operatingcontext/UnknownOperatingContext.d.ts +0 -26
  1533. package/dist/redirect-bridge/operatingcontext/UnknownOperatingContext.d.ts.map +0 -1
  1534. package/dist/redirect-bridge/packageMetadata.d.ts +0 -3
  1535. package/dist/redirect-bridge/packageMetadata.d.ts.map +0 -1
  1536. package/dist/redirect-bridge/protocol/Authorize.d.ts +0 -102
  1537. package/dist/redirect-bridge/protocol/Authorize.d.ts.map +0 -1
  1538. package/dist/redirect-bridge/redirect_bridge/index.d.ts +0 -16
  1539. package/dist/redirect-bridge/redirect_bridge/index.d.ts.map +0 -1
  1540. package/dist/redirect-bridge/redirect_bridge/index.mjs +0 -131
  1541. package/dist/redirect-bridge/redirect_bridge/index.mjs.map +0 -1
  1542. package/dist/redirect-bridge/request/AuthorizationCodeRequest.d.ts +0 -27
  1543. package/dist/redirect-bridge/request/AuthorizationCodeRequest.d.ts.map +0 -1
  1544. package/dist/redirect-bridge/request/ClearCacheRequest.d.ts +0 -15
  1545. package/dist/redirect-bridge/request/ClearCacheRequest.d.ts.map +0 -1
  1546. package/dist/redirect-bridge/request/EndSessionPopupRequest.d.ts +0 -24
  1547. package/dist/redirect-bridge/request/EndSessionPopupRequest.d.ts.map +0 -1
  1548. package/dist/redirect-bridge/request/EndSessionRequest.d.ts +0 -11
  1549. package/dist/redirect-bridge/request/EndSessionRequest.d.ts.map +0 -1
  1550. package/dist/redirect-bridge/request/HandleRedirectPromiseOptions.d.ts +0 -5
  1551. package/dist/redirect-bridge/request/HandleRedirectPromiseOptions.d.ts.map +0 -1
  1552. package/dist/redirect-bridge/request/InitializeApplicationRequest.d.ts +0 -10
  1553. package/dist/redirect-bridge/request/InitializeApplicationRequest.d.ts.map +0 -1
  1554. package/dist/redirect-bridge/request/PopupRequest.d.ts +0 -25
  1555. package/dist/redirect-bridge/request/PopupRequest.d.ts.map +0 -1
  1556. package/dist/redirect-bridge/request/PopupWindowAttributes.d.ts +0 -16
  1557. package/dist/redirect-bridge/request/PopupWindowAttributes.d.ts.map +0 -1
  1558. package/dist/redirect-bridge/request/RedirectRequest.d.ts +0 -16
  1559. package/dist/redirect-bridge/request/RedirectRequest.d.ts.map +0 -1
  1560. package/dist/redirect-bridge/request/RequestHelpers.d.ts +0 -28
  1561. package/dist/redirect-bridge/request/RequestHelpers.d.ts.map +0 -1
  1562. package/dist/redirect-bridge/request/SilentRequest.d.ts +0 -52
  1563. package/dist/redirect-bridge/request/SilentRequest.d.ts.map +0 -1
  1564. package/dist/redirect-bridge/request/SsoSilentRequest.d.ts +0 -6
  1565. package/dist/redirect-bridge/request/SsoSilentRequest.d.ts.map +0 -1
  1566. package/dist/redirect-bridge/response/AuthenticationResult.d.ts +0 -5
  1567. package/dist/redirect-bridge/response/AuthenticationResult.d.ts.map +0 -1
  1568. package/dist/redirect-bridge/response/ResponseHandler.d.ts +0 -8
  1569. package/dist/redirect-bridge/response/ResponseHandler.d.ts.map +0 -1
  1570. package/dist/redirect-bridge/telemetry/BrowserPerformanceClient.d.ts +0 -19
  1571. package/dist/redirect-bridge/telemetry/BrowserPerformanceClient.d.ts.map +0 -1
  1572. package/dist/redirect-bridge/telemetry/BrowserPerformanceEvents.d.ts +0 -140
  1573. package/dist/redirect-bridge/telemetry/BrowserPerformanceEvents.d.ts.map +0 -1
  1574. package/dist/redirect-bridge/telemetry/BrowserPerformanceMeasurement.d.ts +0 -22
  1575. package/dist/redirect-bridge/telemetry/BrowserPerformanceMeasurement.d.ts.map +0 -1
  1576. package/dist/redirect-bridge/telemetry/BrowserRootPerformanceEvents.d.ts +0 -42
  1577. package/dist/redirect-bridge/telemetry/BrowserRootPerformanceEvents.d.ts.map +0 -1
  1578. package/dist/redirect-bridge/utils/BrowserConstants.d.ts +0 -182
  1579. package/dist/redirect-bridge/utils/BrowserConstants.d.ts.map +0 -1
  1580. package/dist/redirect-bridge/utils/BrowserConstants.mjs +0 -43
  1581. package/dist/redirect-bridge/utils/BrowserConstants.mjs.map +0 -1
  1582. package/dist/redirect-bridge/utils/BrowserProtocolUtils.d.ts +0 -12
  1583. package/dist/redirect-bridge/utils/BrowserProtocolUtils.d.ts.map +0 -1
  1584. package/dist/redirect-bridge/utils/BrowserUtils.d.ts +0 -111
  1585. package/dist/redirect-bridge/utils/BrowserUtils.d.ts.map +0 -1
  1586. package/dist/redirect-bridge/utils/BrowserUtils.mjs +0 -97
  1587. package/dist/redirect-bridge/utils/BrowserUtils.mjs.map +0 -1
  1588. package/dist/redirect-bridge/utils/Helpers.d.ts +0 -7
  1589. package/dist/redirect-bridge/utils/Helpers.d.ts.map +0 -1
  1590. package/dist/redirect-bridge/utils/MsalFrameStatsUtils.d.ts +0 -13
  1591. package/dist/redirect-bridge/utils/MsalFrameStatsUtils.d.ts.map +0 -1
  1592. package/dist/redirect_bridge/index.d.ts +0 -16
  1593. package/dist/request/AuthorizationCodeRequest.d.ts +0 -27
  1594. package/dist/request/ClearCacheRequest.d.ts +0 -15
  1595. package/dist/request/EndSessionPopupRequest.d.ts +0 -24
  1596. package/dist/request/EndSessionRequest.d.ts +0 -11
  1597. package/dist/request/HandleRedirectPromiseOptions.d.ts +0 -5
  1598. package/dist/request/InitializeApplicationRequest.d.ts +0 -10
  1599. package/dist/request/PopupRequest.d.ts +0 -25
  1600. package/dist/request/PopupWindowAttributes.d.ts +0 -16
  1601. package/dist/request/RedirectRequest.d.ts +0 -16
  1602. package/dist/request/RequestHelpers.d.ts +0 -28
  1603. package/dist/request/SilentRequest.d.ts +0 -52
  1604. package/dist/request/SsoSilentRequest.d.ts +0 -6
  1605. package/dist/response/AuthenticationResult.d.ts +0 -5
  1606. package/dist/response/ResponseHandler.d.ts +0 -8
  1607. package/dist/telemetry/BrowserPerformanceClient.d.ts +0 -19
  1608. package/dist/telemetry/BrowserPerformanceEvents.d.ts +0 -140
  1609. package/dist/telemetry/BrowserPerformanceMeasurement.d.ts +0 -22
  1610. package/dist/telemetry/BrowserRootPerformanceEvents.d.ts +0 -42
  1611. package/dist/utils/BrowserConstants.d.ts +0 -182
  1612. package/dist/utils/BrowserProtocolUtils.d.ts +0 -12
  1613. package/dist/utils/BrowserUtils.d.ts +0 -111
  1614. package/dist/utils/Helpers.d.ts +0 -7
  1615. package/dist/utils/MsalFrameStatsUtils.d.ts +0 -13
  1616. package/lib/custom-auth-path/types/app/IPublicClientApplication.d.ts +0 -48
  1617. package/lib/custom-auth-path/types/app/IPublicClientApplication.d.ts.map +0 -1
  1618. package/lib/custom-auth-path/types/app/PublicClientApplication.d.ts +0 -247
  1619. package/lib/custom-auth-path/types/app/PublicClientApplication.d.ts.map +0 -1
  1620. package/lib/custom-auth-path/types/broker/nativeBroker/IPlatformAuthHandler.d.ts +0 -12
  1621. package/lib/custom-auth-path/types/broker/nativeBroker/IPlatformAuthHandler.d.ts.map +0 -1
  1622. package/lib/custom-auth-path/types/broker/nativeBroker/NativeStatusCodes.d.ts +0 -9
  1623. package/lib/custom-auth-path/types/broker/nativeBroker/NativeStatusCodes.d.ts.map +0 -1
  1624. package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthDOMHandler.d.ts +0 -30
  1625. package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthDOMHandler.d.ts.map +0 -1
  1626. package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts +0 -63
  1627. package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts.map +0 -1
  1628. package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthProvider.d.ts +0 -28
  1629. package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthProvider.d.ts.map +0 -1
  1630. package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthRequest.d.ts +0 -79
  1631. package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthRequest.d.ts.map +0 -1
  1632. package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthResponse.d.ts +0 -71
  1633. package/lib/custom-auth-path/types/broker/nativeBroker/PlatformAuthResponse.d.ts.map +0 -1
  1634. package/lib/custom-auth-path/types/cache/AccountManager.d.ts +0 -24
  1635. package/lib/custom-auth-path/types/cache/AccountManager.d.ts.map +0 -1
  1636. package/lib/custom-auth-path/types/cache/AsyncMemoryStorage.d.ts +0 -58
  1637. package/lib/custom-auth-path/types/cache/AsyncMemoryStorage.d.ts.map +0 -1
  1638. package/lib/custom-auth-path/types/cache/BrowserCacheManager.d.ts +0 -364
  1639. package/lib/custom-auth-path/types/cache/BrowserCacheManager.d.ts.map +0 -1
  1640. package/lib/custom-auth-path/types/cache/CacheHelpers.d.ts +0 -16
  1641. package/lib/custom-auth-path/types/cache/CacheHelpers.d.ts.map +0 -1
  1642. package/lib/custom-auth-path/types/cache/CacheKeys.d.ts +0 -15
  1643. package/lib/custom-auth-path/types/cache/CacheKeys.d.ts.map +0 -1
  1644. package/lib/custom-auth-path/types/cache/CookieStorage.d.ts +0 -23
  1645. package/lib/custom-auth-path/types/cache/CookieStorage.d.ts.map +0 -1
  1646. package/lib/custom-auth-path/types/cache/DatabaseStorage.d.ts +0 -57
  1647. package/lib/custom-auth-path/types/cache/DatabaseStorage.d.ts.map +0 -1
  1648. package/lib/custom-auth-path/types/cache/EncryptedData.d.ts +0 -8
  1649. package/lib/custom-auth-path/types/cache/EncryptedData.d.ts.map +0 -1
  1650. package/lib/custom-auth-path/types/cache/IAsyncStorage.d.ts +0 -33
  1651. package/lib/custom-auth-path/types/cache/IAsyncStorage.d.ts.map +0 -1
  1652. package/lib/custom-auth-path/types/cache/IWindowStorage.d.ts +0 -42
  1653. package/lib/custom-auth-path/types/cache/IWindowStorage.d.ts.map +0 -1
  1654. package/lib/custom-auth-path/types/cache/LocalStorage.d.ts +0 -51
  1655. package/lib/custom-auth-path/types/cache/LocalStorage.d.ts.map +0 -1
  1656. package/lib/custom-auth-path/types/cache/MemoryStorage.d.ts +0 -16
  1657. package/lib/custom-auth-path/types/cache/MemoryStorage.d.ts.map +0 -1
  1658. package/lib/custom-auth-path/types/cache/SessionStorage.d.ts +0 -14
  1659. package/lib/custom-auth-path/types/cache/SessionStorage.d.ts.map +0 -1
  1660. package/lib/custom-auth-path/types/cache/TokenCache.d.ts +0 -20
  1661. package/lib/custom-auth-path/types/cache/TokenCache.d.ts.map +0 -1
  1662. package/lib/custom-auth-path/types/config/Configuration.d.ts +0 -198
  1663. package/lib/custom-auth-path/types/config/Configuration.d.ts.map +0 -1
  1664. package/lib/custom-auth-path/types/controllers/IController.d.ts +0 -3
  1665. package/lib/custom-auth-path/types/controllers/IController.d.ts.map +0 -1
  1666. package/lib/custom-auth-path/types/controllers/NestedAppAuthController.d.ts +0 -159
  1667. package/lib/custom-auth-path/types/controllers/NestedAppAuthController.d.ts.map +0 -1
  1668. package/lib/custom-auth-path/types/controllers/StandardController.d.ts +0 -398
  1669. package/lib/custom-auth-path/types/controllers/StandardController.d.ts.map +0 -1
  1670. package/lib/custom-auth-path/types/controllers/UnknownOperatingContextController.d.ts +0 -73
  1671. package/lib/custom-auth-path/types/controllers/UnknownOperatingContextController.d.ts.map +0 -1
  1672. package/lib/custom-auth-path/types/crypto/BrowserCrypto.d.ts +0 -96
  1673. package/lib/custom-auth-path/types/crypto/BrowserCrypto.d.ts.map +0 -1
  1674. package/lib/custom-auth-path/types/crypto/CryptoOps.d.ts +0 -77
  1675. package/lib/custom-auth-path/types/crypto/CryptoOps.d.ts.map +0 -1
  1676. package/lib/custom-auth-path/types/crypto/PkceGenerator.d.ts +0 -9
  1677. package/lib/custom-auth-path/types/crypto/PkceGenerator.d.ts.map +0 -1
  1678. package/lib/custom-auth-path/types/crypto/SignedHttpRequest.d.ts +0 -32
  1679. package/lib/custom-auth-path/types/crypto/SignedHttpRequest.d.ts.map +0 -1
  1680. package/lib/custom-auth-path/types/custom_auth/CustomAuthActionInputs.d.ts +0 -29
  1681. package/lib/custom-auth-path/types/custom_auth/CustomAuthActionInputs.d.ts.map +0 -1
  1682. package/lib/custom-auth-path/types/custom_auth/CustomAuthConstants.d.ts +0 -35
  1683. package/lib/custom-auth-path/types/custom_auth/CustomAuthConstants.d.ts.map +0 -1
  1684. package/lib/custom-auth-path/types/custom_auth/CustomAuthPublicClientApplication.d.ts +0 -55
  1685. package/lib/custom-auth-path/types/custom_auth/CustomAuthPublicClientApplication.d.ts.map +0 -1
  1686. package/lib/custom-auth-path/types/custom_auth/ICustomAuthPublicClientApplication.d.ts +0 -33
  1687. package/lib/custom-auth-path/types/custom_auth/ICustomAuthPublicClientApplication.d.ts.map +0 -1
  1688. package/lib/custom-auth-path/types/custom_auth/UserAccountAttributes.d.ts +0 -13
  1689. package/lib/custom-auth-path/types/custom_auth/UserAccountAttributes.d.ts.map +0 -1
  1690. package/lib/custom-auth-path/types/custom_auth/configuration/CustomAuthConfiguration.d.ts +0 -14
  1691. package/lib/custom-auth-path/types/custom_auth/configuration/CustomAuthConfiguration.d.ts.map +0 -1
  1692. package/lib/custom-auth-path/types/custom_auth/controller/CustomAuthStandardController.d.ts +0 -27
  1693. package/lib/custom-auth-path/types/custom_auth/controller/CustomAuthStandardController.d.ts.map +0 -1
  1694. package/lib/custom-auth-path/types/custom_auth/controller/ICustomAuthStandardController.d.ts +0 -13
  1695. package/lib/custom-auth-path/types/custom_auth/controller/ICustomAuthStandardController.d.ts.map +0 -1
  1696. package/lib/custom-auth-path/types/custom_auth/core/CustomAuthAuthority.d.ts +0 -29
  1697. package/lib/custom-auth-path/types/custom_auth/core/CustomAuthAuthority.d.ts.map +0 -1
  1698. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +0 -40
  1699. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +0 -1
  1700. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts +0 -11
  1701. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts.map +0 -1
  1702. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowState.d.ts +0 -31
  1703. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowState.d.ts.map +0 -1
  1704. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts +0 -29
  1705. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts.map +0 -1
  1706. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts +0 -15
  1707. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts.map +0 -1
  1708. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts +0 -27
  1709. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts.map +0 -1
  1710. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts +0 -47
  1711. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts.map +0 -1
  1712. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts +0 -37
  1713. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts.map +0 -1
  1714. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts +0 -11
  1715. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts.map +0 -1
  1716. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts +0 -11
  1717. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts.map +0 -1
  1718. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts +0 -82
  1719. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts.map +0 -1
  1720. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts +0 -20
  1721. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts.map +0 -1
  1722. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts +0 -27
  1723. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts.map +0 -1
  1724. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts +0 -40
  1725. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts.map +0 -1
  1726. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts +0 -34
  1727. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts.map +0 -1
  1728. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts +0 -11
  1729. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts.map +0 -1
  1730. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts +0 -11
  1731. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts.map +0 -1
  1732. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts +0 -67
  1733. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts.map +0 -1
  1734. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts +0 -19
  1735. package/lib/custom-auth-path/types/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts.map +0 -1
  1736. package/lib/custom-auth-path/types/custom_auth/core/error/CustomAuthApiError.d.ts +0 -20
  1737. package/lib/custom-auth-path/types/custom_auth/core/error/CustomAuthApiError.d.ts.map +0 -1
  1738. package/lib/custom-auth-path/types/custom_auth/core/error/CustomAuthError.d.ts +0 -9
  1739. package/lib/custom-auth-path/types/custom_auth/core/error/CustomAuthError.d.ts.map +0 -1
  1740. package/lib/custom-auth-path/types/custom_auth/core/error/HttpError.d.ts +0 -5
  1741. package/lib/custom-auth-path/types/custom_auth/core/error/HttpError.d.ts.map +0 -1
  1742. package/lib/custom-auth-path/types/custom_auth/core/error/HttpErrorCodes.d.ts +0 -3
  1743. package/lib/custom-auth-path/types/custom_auth/core/error/HttpErrorCodes.d.ts.map +0 -1
  1744. package/lib/custom-auth-path/types/custom_auth/core/error/InvalidArgumentError.d.ts +0 -5
  1745. package/lib/custom-auth-path/types/custom_auth/core/error/InvalidArgumentError.d.ts.map +0 -1
  1746. package/lib/custom-auth-path/types/custom_auth/core/error/InvalidConfigurationError.d.ts +0 -5
  1747. package/lib/custom-auth-path/types/custom_auth/core/error/InvalidConfigurationError.d.ts.map +0 -1
  1748. package/lib/custom-auth-path/types/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts +0 -4
  1749. package/lib/custom-auth-path/types/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts.map +0 -1
  1750. package/lib/custom-auth-path/types/custom_auth/core/error/MethodNotImplementedError.d.ts +0 -5
  1751. package/lib/custom-auth-path/types/custom_auth/core/error/MethodNotImplementedError.d.ts.map +0 -1
  1752. package/lib/custom-auth-path/types/custom_auth/core/error/MsalCustomAuthError.d.ts +0 -5
  1753. package/lib/custom-auth-path/types/custom_auth/core/error/MsalCustomAuthError.d.ts.map +0 -1
  1754. package/lib/custom-auth-path/types/custom_auth/core/error/NoCachedAccountFoundError.d.ts +0 -5
  1755. package/lib/custom-auth-path/types/custom_auth/core/error/NoCachedAccountFoundError.d.ts.map +0 -1
  1756. package/lib/custom-auth-path/types/custom_auth/core/error/ParsedUrlError.d.ts +0 -5
  1757. package/lib/custom-auth-path/types/custom_auth/core/error/ParsedUrlError.d.ts.map +0 -1
  1758. package/lib/custom-auth-path/types/custom_auth/core/error/ParsedUrlErrorCodes.d.ts +0 -2
  1759. package/lib/custom-auth-path/types/custom_auth/core/error/ParsedUrlErrorCodes.d.ts.map +0 -1
  1760. package/lib/custom-auth-path/types/custom_auth/core/error/UnexpectedError.d.ts +0 -5
  1761. package/lib/custom-auth-path/types/custom_auth/core/error/UnexpectedError.d.ts.map +0 -1
  1762. package/lib/custom-auth-path/types/custom_auth/core/error/UnsupportedEnvironmentError.d.ts +0 -5
  1763. package/lib/custom-auth-path/types/custom_auth/core/error/UnsupportedEnvironmentError.d.ts.map +0 -1
  1764. package/lib/custom-auth-path/types/custom_auth/core/error/UserAccountAttributeError.d.ts +0 -5
  1765. package/lib/custom-auth-path/types/custom_auth/core/error/UserAccountAttributeError.d.ts.map +0 -1
  1766. package/lib/custom-auth-path/types/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts +0 -2
  1767. package/lib/custom-auth-path/types/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts.map +0 -1
  1768. package/lib/custom-auth-path/types/custom_auth/core/error/UserAlreadySignedInError.d.ts +0 -5
  1769. package/lib/custom-auth-path/types/custom_auth/core/error/UserAlreadySignedInError.d.ts.map +0 -1
  1770. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts +0 -34
  1771. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +0 -1
  1772. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts +0 -22
  1773. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts.map +0 -1
  1774. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/jit/JitClient.d.ts +0 -21
  1775. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/jit/JitClient.d.ts.map +0 -1
  1776. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts +0 -20
  1777. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts.map +0 -1
  1778. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts +0 -22
  1779. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts.map +0 -1
  1780. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/mfa/MfaClient.d.ts +0 -21
  1781. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/mfa/MfaClient.d.ts.map +0 -1
  1782. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts +0 -14
  1783. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts.map +0 -1
  1784. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts +0 -23
  1785. package/lib/custom-auth-path/types/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts.map +0 -1
  1786. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts +0 -15
  1787. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts.map +0 -1
  1788. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts +0 -14
  1789. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts.map +0 -1
  1790. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +0 -16
  1791. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +0 -1
  1792. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts +0 -11
  1793. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts.map +0 -1
  1794. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts +0 -18
  1795. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts.map +0 -1
  1796. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts +0 -34
  1797. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts.map +0 -1
  1798. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +0 -37
  1799. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +0 -1
  1800. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts +0 -23
  1801. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts.map +0 -1
  1802. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts +0 -23
  1803. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts.map +0 -1
  1804. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts +0 -29
  1805. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts.map +0 -1
  1806. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +0 -86
  1807. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +0 -1
  1808. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +0 -71
  1809. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +0 -1
  1810. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +0 -13
  1811. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +0 -1
  1812. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts +0 -9
  1813. package/lib/custom-auth-path/types/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts.map +0 -1
  1814. package/lib/custom-auth-path/types/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts +0 -13
  1815. package/lib/custom-auth-path/types/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +0 -1
  1816. package/lib/custom-auth-path/types/custom_auth/core/network_client/http_client/IHttpClient.d.ts +0 -35
  1817. package/lib/custom-auth-path/types/custom_auth/core/network_client/http_client/IHttpClient.d.ts.map +0 -1
  1818. package/lib/custom-auth-path/types/custom_auth/core/telemetry/PublicApiId.d.ts +0 -25
  1819. package/lib/custom-auth-path/types/custom_auth/core/telemetry/PublicApiId.d.ts.map +0 -1
  1820. package/lib/custom-auth-path/types/custom_auth/core/utils/ArgumentValidator.d.ts +0 -4
  1821. package/lib/custom-auth-path/types/custom_auth/core/utils/ArgumentValidator.d.ts.map +0 -1
  1822. package/lib/custom-auth-path/types/custom_auth/core/utils/UrlUtils.d.ts +0 -3
  1823. package/lib/custom-auth-path/types/custom_auth/core/utils/UrlUtils.d.ts.map +0 -1
  1824. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts +0 -47
  1825. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +0 -1
  1826. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts +0 -32
  1827. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts.map +0 -1
  1828. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts +0 -37
  1829. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts.map +0 -1
  1830. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts +0 -36
  1831. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts.map +0 -1
  1832. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts +0 -35
  1833. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts.map +0 -1
  1834. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts +0 -20
  1835. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts.map +0 -1
  1836. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts +0 -20
  1837. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts.map +0 -1
  1838. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/state/SignOutState.d.ts +0 -20
  1839. package/lib/custom-auth-path/types/custom_auth/get_account/auth_flow/state/SignOutState.d.ts.map +0 -1
  1840. package/lib/custom-auth-path/types/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts +0 -21
  1841. package/lib/custom-auth-path/types/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +0 -1
  1842. package/lib/custom-auth-path/types/custom_auth/index.d.ts +0 -84
  1843. package/lib/custom-auth-path/types/custom_auth/index.d.ts.map +0 -1
  1844. package/lib/custom-auth-path/types/custom_auth/operating_context/CustomAuthOperatingContext.d.ts +0 -13
  1845. package/lib/custom-auth-path/types/custom_auth/operating_context/CustomAuthOperatingContext.d.ts.map +0 -1
  1846. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts +0 -40
  1847. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts.map +0 -1
  1848. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts +0 -37
  1849. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts.map +0 -1
  1850. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts +0 -37
  1851. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts.map +0 -1
  1852. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts +0 -37
  1853. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts.map +0 -1
  1854. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts +0 -32
  1855. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts.map +0 -1
  1856. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts +0 -27
  1857. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts.map +0 -1
  1858. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts +0 -11
  1859. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts.map +0 -1
  1860. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts +0 -11
  1861. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts.map +0 -1
  1862. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts +0 -16
  1863. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts.map +0 -1
  1864. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts +0 -6
  1865. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts.map +0 -1
  1866. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts +0 -19
  1867. package/lib/custom-auth-path/types/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts.map +0 -1
  1868. package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts +0 -33
  1869. package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +0 -1
  1870. package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts +0 -19
  1871. package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts.map +0 -1
  1872. package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts +0 -14
  1873. package/lib/custom-auth-path/types/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts.map +0 -1
  1874. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/SignInScenario.d.ts +0 -6
  1875. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/SignInScenario.d.ts.map +0 -1
  1876. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +0 -45
  1877. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +0 -1
  1878. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts +0 -37
  1879. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts.map +0 -1
  1880. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts +0 -72
  1881. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts.map +0 -1
  1882. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts +0 -51
  1883. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts.map +0 -1
  1884. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts +0 -46
  1885. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts.map +0 -1
  1886. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts +0 -33
  1887. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +0 -1
  1888. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts +0 -12
  1889. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts.map +0 -1
  1890. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts +0 -17
  1891. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +0 -1
  1892. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts +0 -11
  1893. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts.map +0 -1
  1894. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts +0 -21
  1895. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +0 -1
  1896. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInState.d.ts +0 -22
  1897. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInState.d.ts.map +0 -1
  1898. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +0 -25
  1899. package/lib/custom-auth-path/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +0 -1
  1900. package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts +0 -49
  1901. package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +0 -1
  1902. package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +0 -32
  1903. package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +0 -1
  1904. package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +0 -43
  1905. package/lib/custom-auth-path/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +0 -1
  1906. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts +0 -62
  1907. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts.map +0 -1
  1908. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts +0 -37
  1909. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts.map +0 -1
  1910. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts +0 -53
  1911. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts.map +0 -1
  1912. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts +0 -37
  1913. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts.map +0 -1
  1914. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts +0 -53
  1915. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts.map +0 -1
  1916. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts +0 -45
  1917. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts.map +0 -1
  1918. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts +0 -25
  1919. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts.map +0 -1
  1920. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts +0 -32
  1921. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts.map +0 -1
  1922. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts +0 -11
  1923. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts.map +0 -1
  1924. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts +0 -11
  1925. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts.map +0 -1
  1926. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts +0 -16
  1927. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts.map +0 -1
  1928. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts +0 -6
  1929. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts.map +0 -1
  1930. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts +0 -24
  1931. package/lib/custom-auth-path/types/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts.map +0 -1
  1932. package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/SignUpClient.d.ts +0 -41
  1933. package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +0 -1
  1934. package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts +0 -26
  1935. package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts.map +0 -1
  1936. package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts +0 -34
  1937. package/lib/custom-auth-path/types/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts.map +0 -1
  1938. package/lib/custom-auth-path/types/encode/Base64Decode.d.ts +0 -15
  1939. package/lib/custom-auth-path/types/encode/Base64Decode.d.ts.map +0 -1
  1940. package/lib/custom-auth-path/types/encode/Base64Encode.d.ts +0 -20
  1941. package/lib/custom-auth-path/types/encode/Base64Encode.d.ts.map +0 -1
  1942. package/lib/custom-auth-path/types/error/BrowserAuthError.d.ts +0 -12
  1943. package/lib/custom-auth-path/types/error/BrowserAuthError.d.ts.map +0 -1
  1944. package/lib/custom-auth-path/types/error/BrowserAuthErrorCodes.d.ts +0 -53
  1945. package/lib/custom-auth-path/types/error/BrowserAuthErrorCodes.d.ts.map +0 -1
  1946. package/lib/custom-auth-path/types/error/BrowserConfigurationAuthError.d.ts +0 -11
  1947. package/lib/custom-auth-path/types/error/BrowserConfigurationAuthError.d.ts.map +0 -1
  1948. package/lib/custom-auth-path/types/error/BrowserConfigurationAuthErrorCodes.d.ts +0 -4
  1949. package/lib/custom-auth-path/types/error/BrowserConfigurationAuthErrorCodes.d.ts.map +0 -1
  1950. package/lib/custom-auth-path/types/error/NativeAuthError.d.ts +0 -27
  1951. package/lib/custom-auth-path/types/error/NativeAuthError.d.ts.map +0 -1
  1952. package/lib/custom-auth-path/types/error/NativeAuthErrorCodes.d.ts +0 -5
  1953. package/lib/custom-auth-path/types/error/NativeAuthErrorCodes.d.ts.map +0 -1
  1954. package/lib/custom-auth-path/types/error/NestedAppAuthError.d.ts +0 -6
  1955. package/lib/custom-auth-path/types/error/NestedAppAuthError.d.ts.map +0 -1
  1956. package/lib/custom-auth-path/types/event/EventHandler.d.ts +0 -49
  1957. package/lib/custom-auth-path/types/event/EventHandler.d.ts.map +0 -1
  1958. package/lib/custom-auth-path/types/event/EventMessage.d.ts +0 -41
  1959. package/lib/custom-auth-path/types/event/EventMessage.d.ts.map +0 -1
  1960. package/lib/custom-auth-path/types/event/EventType.d.ts +0 -24
  1961. package/lib/custom-auth-path/types/event/EventType.d.ts.map +0 -1
  1962. package/lib/custom-auth-path/types/index.d.ts +0 -73
  1963. package/lib/custom-auth-path/types/index.d.ts.map +0 -1
  1964. package/lib/custom-auth-path/types/interaction_client/BaseInteractionClient.d.ts +0 -77
  1965. package/lib/custom-auth-path/types/interaction_client/BaseInteractionClient.d.ts.map +0 -1
  1966. package/lib/custom-auth-path/types/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +0 -5
  1967. package/lib/custom-auth-path/types/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +0 -1
  1968. package/lib/custom-auth-path/types/interaction_client/PlatformAuthInteractionClient.d.ts +0 -151
  1969. package/lib/custom-auth-path/types/interaction_client/PlatformAuthInteractionClient.d.ts.map +0 -1
  1970. package/lib/custom-auth-path/types/interaction_client/PopupClient.d.ts +0 -106
  1971. package/lib/custom-auth-path/types/interaction_client/PopupClient.d.ts.map +0 -1
  1972. package/lib/custom-auth-path/types/interaction_client/RedirectClient.d.ts +0 -77
  1973. package/lib/custom-auth-path/types/interaction_client/RedirectClient.d.ts.map +0 -1
  1974. package/lib/custom-auth-path/types/interaction_client/SilentAuthCodeClient.d.ts +0 -24
  1975. package/lib/custom-auth-path/types/interaction_client/SilentAuthCodeClient.d.ts.map +0 -1
  1976. package/lib/custom-auth-path/types/interaction_client/SilentCacheClient.d.ts +0 -17
  1977. package/lib/custom-auth-path/types/interaction_client/SilentCacheClient.d.ts.map +0 -1
  1978. package/lib/custom-auth-path/types/interaction_client/SilentIframeClient.d.ts +0 -57
  1979. package/lib/custom-auth-path/types/interaction_client/SilentIframeClient.d.ts.map +0 -1
  1980. package/lib/custom-auth-path/types/interaction_client/SilentRefreshClient.d.ts +0 -32
  1981. package/lib/custom-auth-path/types/interaction_client/SilentRefreshClient.d.ts.map +0 -1
  1982. package/lib/custom-auth-path/types/interaction_client/StandardInteractionClient.d.ts +0 -76
  1983. package/lib/custom-auth-path/types/interaction_client/StandardInteractionClient.d.ts.map +0 -1
  1984. package/lib/custom-auth-path/types/interaction_handler/InteractionHandler.d.ts +0 -33
  1985. package/lib/custom-auth-path/types/interaction_handler/InteractionHandler.d.ts.map +0 -1
  1986. package/lib/custom-auth-path/types/interaction_handler/SilentHandler.d.ts +0 -17
  1987. package/lib/custom-auth-path/types/interaction_handler/SilentHandler.d.ts.map +0 -1
  1988. package/lib/custom-auth-path/types/naa/AccountInfo.d.ts +0 -13
  1989. package/lib/custom-auth-path/types/naa/AccountInfo.d.ts.map +0 -1
  1990. package/lib/custom-auth-path/types/naa/AuthBridge.d.ts +0 -9
  1991. package/lib/custom-auth-path/types/naa/AuthBridge.d.ts.map +0 -1
  1992. package/lib/custom-auth-path/types/naa/AuthResult.d.ts +0 -7
  1993. package/lib/custom-auth-path/types/naa/AuthResult.d.ts.map +0 -1
  1994. package/lib/custom-auth-path/types/naa/BridgeAccountContext.d.ts +0 -13
  1995. package/lib/custom-auth-path/types/naa/BridgeAccountContext.d.ts.map +0 -1
  1996. package/lib/custom-auth-path/types/naa/BridgeCapabilities.d.ts +0 -4
  1997. package/lib/custom-auth-path/types/naa/BridgeCapabilities.d.ts.map +0 -1
  1998. package/lib/custom-auth-path/types/naa/BridgeError.d.ts +0 -10
  1999. package/lib/custom-auth-path/types/naa/BridgeError.d.ts.map +0 -1
  2000. package/lib/custom-auth-path/types/naa/BridgeProxy.d.ts +0 -69
  2001. package/lib/custom-auth-path/types/naa/BridgeProxy.d.ts.map +0 -1
  2002. package/lib/custom-auth-path/types/naa/BridgeRequest.d.ts +0 -8
  2003. package/lib/custom-auth-path/types/naa/BridgeRequest.d.ts.map +0 -1
  2004. package/lib/custom-auth-path/types/naa/BridgeRequestEnvelope.d.ts +0 -13
  2005. package/lib/custom-auth-path/types/naa/BridgeRequestEnvelope.d.ts.map +0 -1
  2006. package/lib/custom-auth-path/types/naa/BridgeResponseEnvelope.d.ts +0 -14
  2007. package/lib/custom-auth-path/types/naa/BridgeResponseEnvelope.d.ts.map +0 -1
  2008. package/lib/custom-auth-path/types/naa/BridgeStatusCode.d.ts +0 -12
  2009. package/lib/custom-auth-path/types/naa/BridgeStatusCode.d.ts.map +0 -1
  2010. package/lib/custom-auth-path/types/naa/IBridgeProxy.d.ts +0 -11
  2011. package/lib/custom-auth-path/types/naa/IBridgeProxy.d.ts.map +0 -1
  2012. package/lib/custom-auth-path/types/naa/InitContext.d.ts +0 -9
  2013. package/lib/custom-auth-path/types/naa/InitContext.d.ts.map +0 -1
  2014. package/lib/custom-auth-path/types/naa/TokenRequest.d.ts +0 -21
  2015. package/lib/custom-auth-path/types/naa/TokenRequest.d.ts.map +0 -1
  2016. package/lib/custom-auth-path/types/naa/TokenResponse.d.ts +0 -14
  2017. package/lib/custom-auth-path/types/naa/TokenResponse.d.ts.map +0 -1
  2018. package/lib/custom-auth-path/types/naa/mapping/NestedAppAuthAdapter.d.ts +0 -36
  2019. package/lib/custom-auth-path/types/naa/mapping/NestedAppAuthAdapter.d.ts.map +0 -1
  2020. package/lib/custom-auth-path/types/navigation/INavigationClient.d.ts +0 -17
  2021. package/lib/custom-auth-path/types/navigation/INavigationClient.d.ts.map +0 -1
  2022. package/lib/custom-auth-path/types/navigation/NavigationClient.d.ts +0 -23
  2023. package/lib/custom-auth-path/types/navigation/NavigationClient.d.ts.map +0 -1
  2024. package/lib/custom-auth-path/types/navigation/NavigationOptions.d.ts +0 -13
  2025. package/lib/custom-auth-path/types/navigation/NavigationOptions.d.ts.map +0 -1
  2026. package/lib/custom-auth-path/types/network/FetchClient.d.ts +0 -21
  2027. package/lib/custom-auth-path/types/network/FetchClient.d.ts.map +0 -1
  2028. package/lib/custom-auth-path/types/operatingcontext/BaseOperatingContext.d.ts +0 -43
  2029. package/lib/custom-auth-path/types/operatingcontext/BaseOperatingContext.d.ts.map +0 -1
  2030. package/lib/custom-auth-path/types/operatingcontext/NestedAppOperatingContext.d.ts +0 -41
  2031. package/lib/custom-auth-path/types/operatingcontext/NestedAppOperatingContext.d.ts.map +0 -1
  2032. package/lib/custom-auth-path/types/operatingcontext/StandardOperatingContext.d.ts +0 -26
  2033. package/lib/custom-auth-path/types/operatingcontext/StandardOperatingContext.d.ts.map +0 -1
  2034. package/lib/custom-auth-path/types/operatingcontext/UnknownOperatingContext.d.ts +0 -26
  2035. package/lib/custom-auth-path/types/operatingcontext/UnknownOperatingContext.d.ts.map +0 -1
  2036. package/lib/custom-auth-path/types/packageMetadata.d.ts +0 -3
  2037. package/lib/custom-auth-path/types/packageMetadata.d.ts.map +0 -1
  2038. package/lib/custom-auth-path/types/protocol/Authorize.d.ts +0 -102
  2039. package/lib/custom-auth-path/types/protocol/Authorize.d.ts.map +0 -1
  2040. package/lib/custom-auth-path/types/redirect_bridge/index.d.ts +0 -16
  2041. package/lib/custom-auth-path/types/redirect_bridge/index.d.ts.map +0 -1
  2042. package/lib/custom-auth-path/types/request/AuthorizationCodeRequest.d.ts +0 -27
  2043. package/lib/custom-auth-path/types/request/AuthorizationCodeRequest.d.ts.map +0 -1
  2044. package/lib/custom-auth-path/types/request/ClearCacheRequest.d.ts +0 -15
  2045. package/lib/custom-auth-path/types/request/ClearCacheRequest.d.ts.map +0 -1
  2046. package/lib/custom-auth-path/types/request/EndSessionPopupRequest.d.ts +0 -24
  2047. package/lib/custom-auth-path/types/request/EndSessionPopupRequest.d.ts.map +0 -1
  2048. package/lib/custom-auth-path/types/request/EndSessionRequest.d.ts +0 -11
  2049. package/lib/custom-auth-path/types/request/EndSessionRequest.d.ts.map +0 -1
  2050. package/lib/custom-auth-path/types/request/HandleRedirectPromiseOptions.d.ts +0 -5
  2051. package/lib/custom-auth-path/types/request/HandleRedirectPromiseOptions.d.ts.map +0 -1
  2052. package/lib/custom-auth-path/types/request/InitializeApplicationRequest.d.ts +0 -10
  2053. package/lib/custom-auth-path/types/request/InitializeApplicationRequest.d.ts.map +0 -1
  2054. package/lib/custom-auth-path/types/request/PopupRequest.d.ts +0 -25
  2055. package/lib/custom-auth-path/types/request/PopupRequest.d.ts.map +0 -1
  2056. package/lib/custom-auth-path/types/request/PopupWindowAttributes.d.ts +0 -16
  2057. package/lib/custom-auth-path/types/request/PopupWindowAttributes.d.ts.map +0 -1
  2058. package/lib/custom-auth-path/types/request/RedirectRequest.d.ts +0 -16
  2059. package/lib/custom-auth-path/types/request/RedirectRequest.d.ts.map +0 -1
  2060. package/lib/custom-auth-path/types/request/RequestHelpers.d.ts +0 -28
  2061. package/lib/custom-auth-path/types/request/RequestHelpers.d.ts.map +0 -1
  2062. package/lib/custom-auth-path/types/request/SilentRequest.d.ts +0 -52
  2063. package/lib/custom-auth-path/types/request/SilentRequest.d.ts.map +0 -1
  2064. package/lib/custom-auth-path/types/request/SsoSilentRequest.d.ts +0 -6
  2065. package/lib/custom-auth-path/types/request/SsoSilentRequest.d.ts.map +0 -1
  2066. package/lib/custom-auth-path/types/response/AuthenticationResult.d.ts +0 -5
  2067. package/lib/custom-auth-path/types/response/AuthenticationResult.d.ts.map +0 -1
  2068. package/lib/custom-auth-path/types/response/ResponseHandler.d.ts +0 -8
  2069. package/lib/custom-auth-path/types/response/ResponseHandler.d.ts.map +0 -1
  2070. package/lib/custom-auth-path/types/telemetry/BrowserPerformanceClient.d.ts +0 -19
  2071. package/lib/custom-auth-path/types/telemetry/BrowserPerformanceClient.d.ts.map +0 -1
  2072. package/lib/custom-auth-path/types/telemetry/BrowserPerformanceEvents.d.ts +0 -140
  2073. package/lib/custom-auth-path/types/telemetry/BrowserPerformanceEvents.d.ts.map +0 -1
  2074. package/lib/custom-auth-path/types/telemetry/BrowserPerformanceMeasurement.d.ts +0 -22
  2075. package/lib/custom-auth-path/types/telemetry/BrowserPerformanceMeasurement.d.ts.map +0 -1
  2076. package/lib/custom-auth-path/types/telemetry/BrowserRootPerformanceEvents.d.ts +0 -42
  2077. package/lib/custom-auth-path/types/telemetry/BrowserRootPerformanceEvents.d.ts.map +0 -1
  2078. package/lib/custom-auth-path/types/utils/BrowserConstants.d.ts +0 -182
  2079. package/lib/custom-auth-path/types/utils/BrowserConstants.d.ts.map +0 -1
  2080. package/lib/custom-auth-path/types/utils/BrowserProtocolUtils.d.ts +0 -12
  2081. package/lib/custom-auth-path/types/utils/BrowserProtocolUtils.d.ts.map +0 -1
  2082. package/lib/custom-auth-path/types/utils/BrowserUtils.d.ts +0 -111
  2083. package/lib/custom-auth-path/types/utils/BrowserUtils.d.ts.map +0 -1
  2084. package/lib/custom-auth-path/types/utils/Helpers.d.ts +0 -7
  2085. package/lib/custom-auth-path/types/utils/Helpers.d.ts.map +0 -1
  2086. package/lib/custom-auth-path/types/utils/MsalFrameStatsUtils.d.ts +0 -13
  2087. package/lib/custom-auth-path/types/utils/MsalFrameStatsUtils.d.ts.map +0 -1
  2088. package/lib/redirect-bridge/types/app/IPublicClientApplication.d.ts +0 -48
  2089. package/lib/redirect-bridge/types/app/IPublicClientApplication.d.ts.map +0 -1
  2090. package/lib/redirect-bridge/types/app/PublicClientApplication.d.ts +0 -247
  2091. package/lib/redirect-bridge/types/app/PublicClientApplication.d.ts.map +0 -1
  2092. package/lib/redirect-bridge/types/broker/nativeBroker/IPlatformAuthHandler.d.ts +0 -12
  2093. package/lib/redirect-bridge/types/broker/nativeBroker/IPlatformAuthHandler.d.ts.map +0 -1
  2094. package/lib/redirect-bridge/types/broker/nativeBroker/NativeStatusCodes.d.ts +0 -9
  2095. package/lib/redirect-bridge/types/broker/nativeBroker/NativeStatusCodes.d.ts.map +0 -1
  2096. package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthDOMHandler.d.ts +0 -30
  2097. package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthDOMHandler.d.ts.map +0 -1
  2098. package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts +0 -63
  2099. package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts.map +0 -1
  2100. package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthProvider.d.ts +0 -28
  2101. package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthProvider.d.ts.map +0 -1
  2102. package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthRequest.d.ts +0 -79
  2103. package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthRequest.d.ts.map +0 -1
  2104. package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthResponse.d.ts +0 -71
  2105. package/lib/redirect-bridge/types/broker/nativeBroker/PlatformAuthResponse.d.ts.map +0 -1
  2106. package/lib/redirect-bridge/types/cache/AccountManager.d.ts +0 -24
  2107. package/lib/redirect-bridge/types/cache/AccountManager.d.ts.map +0 -1
  2108. package/lib/redirect-bridge/types/cache/AsyncMemoryStorage.d.ts +0 -58
  2109. package/lib/redirect-bridge/types/cache/AsyncMemoryStorage.d.ts.map +0 -1
  2110. package/lib/redirect-bridge/types/cache/BrowserCacheManager.d.ts +0 -364
  2111. package/lib/redirect-bridge/types/cache/BrowserCacheManager.d.ts.map +0 -1
  2112. package/lib/redirect-bridge/types/cache/CacheHelpers.d.ts +0 -16
  2113. package/lib/redirect-bridge/types/cache/CacheHelpers.d.ts.map +0 -1
  2114. package/lib/redirect-bridge/types/cache/CacheKeys.d.ts +0 -15
  2115. package/lib/redirect-bridge/types/cache/CacheKeys.d.ts.map +0 -1
  2116. package/lib/redirect-bridge/types/cache/CookieStorage.d.ts +0 -23
  2117. package/lib/redirect-bridge/types/cache/CookieStorage.d.ts.map +0 -1
  2118. package/lib/redirect-bridge/types/cache/DatabaseStorage.d.ts +0 -57
  2119. package/lib/redirect-bridge/types/cache/DatabaseStorage.d.ts.map +0 -1
  2120. package/lib/redirect-bridge/types/cache/EncryptedData.d.ts +0 -8
  2121. package/lib/redirect-bridge/types/cache/EncryptedData.d.ts.map +0 -1
  2122. package/lib/redirect-bridge/types/cache/IAsyncStorage.d.ts +0 -33
  2123. package/lib/redirect-bridge/types/cache/IAsyncStorage.d.ts.map +0 -1
  2124. package/lib/redirect-bridge/types/cache/IWindowStorage.d.ts +0 -42
  2125. package/lib/redirect-bridge/types/cache/IWindowStorage.d.ts.map +0 -1
  2126. package/lib/redirect-bridge/types/cache/LocalStorage.d.ts +0 -51
  2127. package/lib/redirect-bridge/types/cache/LocalStorage.d.ts.map +0 -1
  2128. package/lib/redirect-bridge/types/cache/MemoryStorage.d.ts +0 -16
  2129. package/lib/redirect-bridge/types/cache/MemoryStorage.d.ts.map +0 -1
  2130. package/lib/redirect-bridge/types/cache/SessionStorage.d.ts +0 -14
  2131. package/lib/redirect-bridge/types/cache/SessionStorage.d.ts.map +0 -1
  2132. package/lib/redirect-bridge/types/cache/TokenCache.d.ts +0 -20
  2133. package/lib/redirect-bridge/types/cache/TokenCache.d.ts.map +0 -1
  2134. package/lib/redirect-bridge/types/config/Configuration.d.ts +0 -198
  2135. package/lib/redirect-bridge/types/config/Configuration.d.ts.map +0 -1
  2136. package/lib/redirect-bridge/types/controllers/IController.d.ts +0 -3
  2137. package/lib/redirect-bridge/types/controllers/IController.d.ts.map +0 -1
  2138. package/lib/redirect-bridge/types/controllers/NestedAppAuthController.d.ts +0 -159
  2139. package/lib/redirect-bridge/types/controllers/NestedAppAuthController.d.ts.map +0 -1
  2140. package/lib/redirect-bridge/types/controllers/StandardController.d.ts +0 -398
  2141. package/lib/redirect-bridge/types/controllers/StandardController.d.ts.map +0 -1
  2142. package/lib/redirect-bridge/types/controllers/UnknownOperatingContextController.d.ts +0 -73
  2143. package/lib/redirect-bridge/types/controllers/UnknownOperatingContextController.d.ts.map +0 -1
  2144. package/lib/redirect-bridge/types/crypto/BrowserCrypto.d.ts +0 -96
  2145. package/lib/redirect-bridge/types/crypto/BrowserCrypto.d.ts.map +0 -1
  2146. package/lib/redirect-bridge/types/crypto/CryptoOps.d.ts +0 -77
  2147. package/lib/redirect-bridge/types/crypto/CryptoOps.d.ts.map +0 -1
  2148. package/lib/redirect-bridge/types/crypto/PkceGenerator.d.ts +0 -9
  2149. package/lib/redirect-bridge/types/crypto/PkceGenerator.d.ts.map +0 -1
  2150. package/lib/redirect-bridge/types/crypto/SignedHttpRequest.d.ts +0 -32
  2151. package/lib/redirect-bridge/types/crypto/SignedHttpRequest.d.ts.map +0 -1
  2152. package/lib/redirect-bridge/types/custom_auth/CustomAuthActionInputs.d.ts +0 -29
  2153. package/lib/redirect-bridge/types/custom_auth/CustomAuthActionInputs.d.ts.map +0 -1
  2154. package/lib/redirect-bridge/types/custom_auth/CustomAuthConstants.d.ts +0 -35
  2155. package/lib/redirect-bridge/types/custom_auth/CustomAuthConstants.d.ts.map +0 -1
  2156. package/lib/redirect-bridge/types/custom_auth/CustomAuthPublicClientApplication.d.ts +0 -55
  2157. package/lib/redirect-bridge/types/custom_auth/CustomAuthPublicClientApplication.d.ts.map +0 -1
  2158. package/lib/redirect-bridge/types/custom_auth/ICustomAuthPublicClientApplication.d.ts +0 -33
  2159. package/lib/redirect-bridge/types/custom_auth/ICustomAuthPublicClientApplication.d.ts.map +0 -1
  2160. package/lib/redirect-bridge/types/custom_auth/UserAccountAttributes.d.ts +0 -13
  2161. package/lib/redirect-bridge/types/custom_auth/UserAccountAttributes.d.ts.map +0 -1
  2162. package/lib/redirect-bridge/types/custom_auth/configuration/CustomAuthConfiguration.d.ts +0 -14
  2163. package/lib/redirect-bridge/types/custom_auth/configuration/CustomAuthConfiguration.d.ts.map +0 -1
  2164. package/lib/redirect-bridge/types/custom_auth/controller/CustomAuthStandardController.d.ts +0 -27
  2165. package/lib/redirect-bridge/types/custom_auth/controller/CustomAuthStandardController.d.ts.map +0 -1
  2166. package/lib/redirect-bridge/types/custom_auth/controller/ICustomAuthStandardController.d.ts +0 -13
  2167. package/lib/redirect-bridge/types/custom_auth/controller/ICustomAuthStandardController.d.ts.map +0 -1
  2168. package/lib/redirect-bridge/types/custom_auth/core/CustomAuthAuthority.d.ts +0 -29
  2169. package/lib/redirect-bridge/types/custom_auth/core/CustomAuthAuthority.d.ts.map +0 -1
  2170. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +0 -40
  2171. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +0 -1
  2172. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts +0 -11
  2173. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts.map +0 -1
  2174. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowState.d.ts +0 -31
  2175. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowState.d.ts.map +0 -1
  2176. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts +0 -29
  2177. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts.map +0 -1
  2178. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts +0 -15
  2179. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts.map +0 -1
  2180. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts +0 -27
  2181. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts.map +0 -1
  2182. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts +0 -47
  2183. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts.map +0 -1
  2184. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts +0 -37
  2185. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts.map +0 -1
  2186. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts +0 -11
  2187. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts.map +0 -1
  2188. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts +0 -11
  2189. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts.map +0 -1
  2190. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts +0 -82
  2191. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts.map +0 -1
  2192. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts +0 -20
  2193. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts.map +0 -1
  2194. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts +0 -27
  2195. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts.map +0 -1
  2196. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts +0 -40
  2197. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts.map +0 -1
  2198. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts +0 -34
  2199. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts.map +0 -1
  2200. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts +0 -11
  2201. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts.map +0 -1
  2202. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts +0 -11
  2203. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts.map +0 -1
  2204. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts +0 -67
  2205. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts.map +0 -1
  2206. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts +0 -19
  2207. package/lib/redirect-bridge/types/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts.map +0 -1
  2208. package/lib/redirect-bridge/types/custom_auth/core/error/CustomAuthApiError.d.ts +0 -20
  2209. package/lib/redirect-bridge/types/custom_auth/core/error/CustomAuthApiError.d.ts.map +0 -1
  2210. package/lib/redirect-bridge/types/custom_auth/core/error/CustomAuthError.d.ts +0 -9
  2211. package/lib/redirect-bridge/types/custom_auth/core/error/CustomAuthError.d.ts.map +0 -1
  2212. package/lib/redirect-bridge/types/custom_auth/core/error/HttpError.d.ts +0 -5
  2213. package/lib/redirect-bridge/types/custom_auth/core/error/HttpError.d.ts.map +0 -1
  2214. package/lib/redirect-bridge/types/custom_auth/core/error/HttpErrorCodes.d.ts +0 -3
  2215. package/lib/redirect-bridge/types/custom_auth/core/error/HttpErrorCodes.d.ts.map +0 -1
  2216. package/lib/redirect-bridge/types/custom_auth/core/error/InvalidArgumentError.d.ts +0 -5
  2217. package/lib/redirect-bridge/types/custom_auth/core/error/InvalidArgumentError.d.ts.map +0 -1
  2218. package/lib/redirect-bridge/types/custom_auth/core/error/InvalidConfigurationError.d.ts +0 -5
  2219. package/lib/redirect-bridge/types/custom_auth/core/error/InvalidConfigurationError.d.ts.map +0 -1
  2220. package/lib/redirect-bridge/types/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts +0 -4
  2221. package/lib/redirect-bridge/types/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts.map +0 -1
  2222. package/lib/redirect-bridge/types/custom_auth/core/error/MethodNotImplementedError.d.ts +0 -5
  2223. package/lib/redirect-bridge/types/custom_auth/core/error/MethodNotImplementedError.d.ts.map +0 -1
  2224. package/lib/redirect-bridge/types/custom_auth/core/error/MsalCustomAuthError.d.ts +0 -5
  2225. package/lib/redirect-bridge/types/custom_auth/core/error/MsalCustomAuthError.d.ts.map +0 -1
  2226. package/lib/redirect-bridge/types/custom_auth/core/error/NoCachedAccountFoundError.d.ts +0 -5
  2227. package/lib/redirect-bridge/types/custom_auth/core/error/NoCachedAccountFoundError.d.ts.map +0 -1
  2228. package/lib/redirect-bridge/types/custom_auth/core/error/ParsedUrlError.d.ts +0 -5
  2229. package/lib/redirect-bridge/types/custom_auth/core/error/ParsedUrlError.d.ts.map +0 -1
  2230. package/lib/redirect-bridge/types/custom_auth/core/error/ParsedUrlErrorCodes.d.ts +0 -2
  2231. package/lib/redirect-bridge/types/custom_auth/core/error/ParsedUrlErrorCodes.d.ts.map +0 -1
  2232. package/lib/redirect-bridge/types/custom_auth/core/error/UnexpectedError.d.ts +0 -5
  2233. package/lib/redirect-bridge/types/custom_auth/core/error/UnexpectedError.d.ts.map +0 -1
  2234. package/lib/redirect-bridge/types/custom_auth/core/error/UnsupportedEnvironmentError.d.ts +0 -5
  2235. package/lib/redirect-bridge/types/custom_auth/core/error/UnsupportedEnvironmentError.d.ts.map +0 -1
  2236. package/lib/redirect-bridge/types/custom_auth/core/error/UserAccountAttributeError.d.ts +0 -5
  2237. package/lib/redirect-bridge/types/custom_auth/core/error/UserAccountAttributeError.d.ts.map +0 -1
  2238. package/lib/redirect-bridge/types/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts +0 -2
  2239. package/lib/redirect-bridge/types/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts.map +0 -1
  2240. package/lib/redirect-bridge/types/custom_auth/core/error/UserAlreadySignedInError.d.ts +0 -5
  2241. package/lib/redirect-bridge/types/custom_auth/core/error/UserAlreadySignedInError.d.ts.map +0 -1
  2242. package/lib/redirect-bridge/types/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts +0 -34
  2243. package/lib/redirect-bridge/types/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +0 -1
  2244. package/lib/redirect-bridge/types/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts +0 -22
  2245. package/lib/redirect-bridge/types/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts.map +0 -1
  2246. package/lib/redirect-bridge/types/custom_auth/core/interaction_client/jit/JitClient.d.ts +0 -21
  2247. package/lib/redirect-bridge/types/custom_auth/core/interaction_client/jit/JitClient.d.ts.map +0 -1
  2248. package/lib/redirect-bridge/types/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts +0 -20
  2249. package/lib/redirect-bridge/types/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts.map +0 -1
  2250. package/lib/redirect-bridge/types/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts +0 -22
  2251. package/lib/redirect-bridge/types/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts.map +0 -1
  2252. package/lib/redirect-bridge/types/custom_auth/core/interaction_client/mfa/MfaClient.d.ts +0 -21
  2253. package/lib/redirect-bridge/types/custom_auth/core/interaction_client/mfa/MfaClient.d.ts.map +0 -1
  2254. package/lib/redirect-bridge/types/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts +0 -14
  2255. package/lib/redirect-bridge/types/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts.map +0 -1
  2256. package/lib/redirect-bridge/types/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts +0 -23
  2257. package/lib/redirect-bridge/types/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts.map +0 -1
  2258. package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts +0 -15
  2259. package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts.map +0 -1
  2260. package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts +0 -14
  2261. package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts.map +0 -1
  2262. package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +0 -16
  2263. package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +0 -1
  2264. package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts +0 -11
  2265. package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts.map +0 -1
  2266. package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts +0 -18
  2267. package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts.map +0 -1
  2268. package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts +0 -34
  2269. package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts.map +0 -1
  2270. package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +0 -37
  2271. package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +0 -1
  2272. package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts +0 -23
  2273. package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts.map +0 -1
  2274. package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts +0 -23
  2275. package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts.map +0 -1
  2276. package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts +0 -29
  2277. package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts.map +0 -1
  2278. package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +0 -86
  2279. package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +0 -1
  2280. package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +0 -71
  2281. package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +0 -1
  2282. package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +0 -13
  2283. package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +0 -1
  2284. package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts +0 -9
  2285. package/lib/redirect-bridge/types/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts.map +0 -1
  2286. package/lib/redirect-bridge/types/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts +0 -13
  2287. package/lib/redirect-bridge/types/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +0 -1
  2288. package/lib/redirect-bridge/types/custom_auth/core/network_client/http_client/IHttpClient.d.ts +0 -35
  2289. package/lib/redirect-bridge/types/custom_auth/core/network_client/http_client/IHttpClient.d.ts.map +0 -1
  2290. package/lib/redirect-bridge/types/custom_auth/core/telemetry/PublicApiId.d.ts +0 -25
  2291. package/lib/redirect-bridge/types/custom_auth/core/telemetry/PublicApiId.d.ts.map +0 -1
  2292. package/lib/redirect-bridge/types/custom_auth/core/utils/ArgumentValidator.d.ts +0 -4
  2293. package/lib/redirect-bridge/types/custom_auth/core/utils/ArgumentValidator.d.ts.map +0 -1
  2294. package/lib/redirect-bridge/types/custom_auth/core/utils/UrlUtils.d.ts +0 -3
  2295. package/lib/redirect-bridge/types/custom_auth/core/utils/UrlUtils.d.ts.map +0 -1
  2296. package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts +0 -47
  2297. package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +0 -1
  2298. package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts +0 -32
  2299. package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts.map +0 -1
  2300. package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts +0 -37
  2301. package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts.map +0 -1
  2302. package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts +0 -36
  2303. package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts.map +0 -1
  2304. package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts +0 -35
  2305. package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts.map +0 -1
  2306. package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts +0 -20
  2307. package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts.map +0 -1
  2308. package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts +0 -20
  2309. package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts.map +0 -1
  2310. package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/state/SignOutState.d.ts +0 -20
  2311. package/lib/redirect-bridge/types/custom_auth/get_account/auth_flow/state/SignOutState.d.ts.map +0 -1
  2312. package/lib/redirect-bridge/types/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts +0 -21
  2313. package/lib/redirect-bridge/types/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +0 -1
  2314. package/lib/redirect-bridge/types/custom_auth/index.d.ts +0 -84
  2315. package/lib/redirect-bridge/types/custom_auth/index.d.ts.map +0 -1
  2316. package/lib/redirect-bridge/types/custom_auth/operating_context/CustomAuthOperatingContext.d.ts +0 -13
  2317. package/lib/redirect-bridge/types/custom_auth/operating_context/CustomAuthOperatingContext.d.ts.map +0 -1
  2318. package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts +0 -40
  2319. package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts.map +0 -1
  2320. package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts +0 -37
  2321. package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts.map +0 -1
  2322. package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts +0 -37
  2323. package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts.map +0 -1
  2324. package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts +0 -37
  2325. package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts.map +0 -1
  2326. package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts +0 -32
  2327. package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts.map +0 -1
  2328. package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts +0 -27
  2329. package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts.map +0 -1
  2330. package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts +0 -11
  2331. package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts.map +0 -1
  2332. package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts +0 -11
  2333. package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts.map +0 -1
  2334. package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts +0 -16
  2335. package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts.map +0 -1
  2336. package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts +0 -6
  2337. package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts.map +0 -1
  2338. package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts +0 -19
  2339. package/lib/redirect-bridge/types/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts.map +0 -1
  2340. package/lib/redirect-bridge/types/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts +0 -33
  2341. package/lib/redirect-bridge/types/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +0 -1
  2342. package/lib/redirect-bridge/types/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts +0 -19
  2343. package/lib/redirect-bridge/types/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts.map +0 -1
  2344. package/lib/redirect-bridge/types/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts +0 -14
  2345. package/lib/redirect-bridge/types/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts.map +0 -1
  2346. package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/SignInScenario.d.ts +0 -6
  2347. package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/SignInScenario.d.ts.map +0 -1
  2348. package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +0 -45
  2349. package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +0 -1
  2350. package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts +0 -37
  2351. package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts.map +0 -1
  2352. package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts +0 -72
  2353. package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts.map +0 -1
  2354. package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts +0 -51
  2355. package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts.map +0 -1
  2356. package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts +0 -46
  2357. package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts.map +0 -1
  2358. package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts +0 -33
  2359. package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +0 -1
  2360. package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts +0 -12
  2361. package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts.map +0 -1
  2362. package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts +0 -17
  2363. package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +0 -1
  2364. package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts +0 -11
  2365. package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts.map +0 -1
  2366. package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts +0 -21
  2367. package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +0 -1
  2368. package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInState.d.ts +0 -22
  2369. package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInState.d.ts.map +0 -1
  2370. package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +0 -25
  2371. package/lib/redirect-bridge/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +0 -1
  2372. package/lib/redirect-bridge/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts +0 -49
  2373. package/lib/redirect-bridge/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +0 -1
  2374. package/lib/redirect-bridge/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +0 -32
  2375. package/lib/redirect-bridge/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +0 -1
  2376. package/lib/redirect-bridge/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +0 -43
  2377. package/lib/redirect-bridge/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +0 -1
  2378. package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts +0 -62
  2379. package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts.map +0 -1
  2380. package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts +0 -37
  2381. package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts.map +0 -1
  2382. package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts +0 -53
  2383. package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts.map +0 -1
  2384. package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts +0 -37
  2385. package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts.map +0 -1
  2386. package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts +0 -53
  2387. package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts.map +0 -1
  2388. package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts +0 -45
  2389. package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts.map +0 -1
  2390. package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts +0 -25
  2391. package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts.map +0 -1
  2392. package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts +0 -32
  2393. package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts.map +0 -1
  2394. package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts +0 -11
  2395. package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts.map +0 -1
  2396. package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts +0 -11
  2397. package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts.map +0 -1
  2398. package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts +0 -16
  2399. package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts.map +0 -1
  2400. package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts +0 -6
  2401. package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts.map +0 -1
  2402. package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts +0 -24
  2403. package/lib/redirect-bridge/types/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts.map +0 -1
  2404. package/lib/redirect-bridge/types/custom_auth/sign_up/interaction_client/SignUpClient.d.ts +0 -41
  2405. package/lib/redirect-bridge/types/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +0 -1
  2406. package/lib/redirect-bridge/types/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts +0 -26
  2407. package/lib/redirect-bridge/types/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts.map +0 -1
  2408. package/lib/redirect-bridge/types/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts +0 -34
  2409. package/lib/redirect-bridge/types/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts.map +0 -1
  2410. package/lib/redirect-bridge/types/encode/Base64Decode.d.ts +0 -15
  2411. package/lib/redirect-bridge/types/encode/Base64Decode.d.ts.map +0 -1
  2412. package/lib/redirect-bridge/types/encode/Base64Encode.d.ts +0 -20
  2413. package/lib/redirect-bridge/types/encode/Base64Encode.d.ts.map +0 -1
  2414. package/lib/redirect-bridge/types/error/BrowserAuthError.d.ts +0 -12
  2415. package/lib/redirect-bridge/types/error/BrowserAuthError.d.ts.map +0 -1
  2416. package/lib/redirect-bridge/types/error/BrowserAuthErrorCodes.d.ts +0 -53
  2417. package/lib/redirect-bridge/types/error/BrowserAuthErrorCodes.d.ts.map +0 -1
  2418. package/lib/redirect-bridge/types/error/BrowserConfigurationAuthError.d.ts +0 -11
  2419. package/lib/redirect-bridge/types/error/BrowserConfigurationAuthError.d.ts.map +0 -1
  2420. package/lib/redirect-bridge/types/error/BrowserConfigurationAuthErrorCodes.d.ts +0 -4
  2421. package/lib/redirect-bridge/types/error/BrowserConfigurationAuthErrorCodes.d.ts.map +0 -1
  2422. package/lib/redirect-bridge/types/error/NativeAuthError.d.ts +0 -27
  2423. package/lib/redirect-bridge/types/error/NativeAuthError.d.ts.map +0 -1
  2424. package/lib/redirect-bridge/types/error/NativeAuthErrorCodes.d.ts +0 -5
  2425. package/lib/redirect-bridge/types/error/NativeAuthErrorCodes.d.ts.map +0 -1
  2426. package/lib/redirect-bridge/types/error/NestedAppAuthError.d.ts +0 -6
  2427. package/lib/redirect-bridge/types/error/NestedAppAuthError.d.ts.map +0 -1
  2428. package/lib/redirect-bridge/types/event/EventHandler.d.ts +0 -49
  2429. package/lib/redirect-bridge/types/event/EventHandler.d.ts.map +0 -1
  2430. package/lib/redirect-bridge/types/event/EventMessage.d.ts +0 -41
  2431. package/lib/redirect-bridge/types/event/EventMessage.d.ts.map +0 -1
  2432. package/lib/redirect-bridge/types/event/EventType.d.ts +0 -24
  2433. package/lib/redirect-bridge/types/event/EventType.d.ts.map +0 -1
  2434. package/lib/redirect-bridge/types/index.d.ts +0 -73
  2435. package/lib/redirect-bridge/types/index.d.ts.map +0 -1
  2436. package/lib/redirect-bridge/types/interaction_client/BaseInteractionClient.d.ts +0 -77
  2437. package/lib/redirect-bridge/types/interaction_client/BaseInteractionClient.d.ts.map +0 -1
  2438. package/lib/redirect-bridge/types/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +0 -5
  2439. package/lib/redirect-bridge/types/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +0 -1
  2440. package/lib/redirect-bridge/types/interaction_client/PlatformAuthInteractionClient.d.ts +0 -151
  2441. package/lib/redirect-bridge/types/interaction_client/PlatformAuthInteractionClient.d.ts.map +0 -1
  2442. package/lib/redirect-bridge/types/interaction_client/PopupClient.d.ts +0 -106
  2443. package/lib/redirect-bridge/types/interaction_client/PopupClient.d.ts.map +0 -1
  2444. package/lib/redirect-bridge/types/interaction_client/RedirectClient.d.ts +0 -77
  2445. package/lib/redirect-bridge/types/interaction_client/RedirectClient.d.ts.map +0 -1
  2446. package/lib/redirect-bridge/types/interaction_client/SilentAuthCodeClient.d.ts +0 -24
  2447. package/lib/redirect-bridge/types/interaction_client/SilentAuthCodeClient.d.ts.map +0 -1
  2448. package/lib/redirect-bridge/types/interaction_client/SilentCacheClient.d.ts +0 -17
  2449. package/lib/redirect-bridge/types/interaction_client/SilentCacheClient.d.ts.map +0 -1
  2450. package/lib/redirect-bridge/types/interaction_client/SilentIframeClient.d.ts +0 -57
  2451. package/lib/redirect-bridge/types/interaction_client/SilentIframeClient.d.ts.map +0 -1
  2452. package/lib/redirect-bridge/types/interaction_client/SilentRefreshClient.d.ts +0 -32
  2453. package/lib/redirect-bridge/types/interaction_client/SilentRefreshClient.d.ts.map +0 -1
  2454. package/lib/redirect-bridge/types/interaction_client/StandardInteractionClient.d.ts +0 -76
  2455. package/lib/redirect-bridge/types/interaction_client/StandardInteractionClient.d.ts.map +0 -1
  2456. package/lib/redirect-bridge/types/interaction_handler/InteractionHandler.d.ts +0 -33
  2457. package/lib/redirect-bridge/types/interaction_handler/InteractionHandler.d.ts.map +0 -1
  2458. package/lib/redirect-bridge/types/interaction_handler/SilentHandler.d.ts +0 -17
  2459. package/lib/redirect-bridge/types/interaction_handler/SilentHandler.d.ts.map +0 -1
  2460. package/lib/redirect-bridge/types/naa/AccountInfo.d.ts +0 -13
  2461. package/lib/redirect-bridge/types/naa/AccountInfo.d.ts.map +0 -1
  2462. package/lib/redirect-bridge/types/naa/AuthBridge.d.ts +0 -9
  2463. package/lib/redirect-bridge/types/naa/AuthBridge.d.ts.map +0 -1
  2464. package/lib/redirect-bridge/types/naa/AuthResult.d.ts +0 -7
  2465. package/lib/redirect-bridge/types/naa/AuthResult.d.ts.map +0 -1
  2466. package/lib/redirect-bridge/types/naa/BridgeAccountContext.d.ts +0 -13
  2467. package/lib/redirect-bridge/types/naa/BridgeAccountContext.d.ts.map +0 -1
  2468. package/lib/redirect-bridge/types/naa/BridgeCapabilities.d.ts +0 -4
  2469. package/lib/redirect-bridge/types/naa/BridgeCapabilities.d.ts.map +0 -1
  2470. package/lib/redirect-bridge/types/naa/BridgeError.d.ts +0 -10
  2471. package/lib/redirect-bridge/types/naa/BridgeError.d.ts.map +0 -1
  2472. package/lib/redirect-bridge/types/naa/BridgeProxy.d.ts +0 -69
  2473. package/lib/redirect-bridge/types/naa/BridgeProxy.d.ts.map +0 -1
  2474. package/lib/redirect-bridge/types/naa/BridgeRequest.d.ts +0 -8
  2475. package/lib/redirect-bridge/types/naa/BridgeRequest.d.ts.map +0 -1
  2476. package/lib/redirect-bridge/types/naa/BridgeRequestEnvelope.d.ts +0 -13
  2477. package/lib/redirect-bridge/types/naa/BridgeRequestEnvelope.d.ts.map +0 -1
  2478. package/lib/redirect-bridge/types/naa/BridgeResponseEnvelope.d.ts +0 -14
  2479. package/lib/redirect-bridge/types/naa/BridgeResponseEnvelope.d.ts.map +0 -1
  2480. package/lib/redirect-bridge/types/naa/BridgeStatusCode.d.ts +0 -12
  2481. package/lib/redirect-bridge/types/naa/BridgeStatusCode.d.ts.map +0 -1
  2482. package/lib/redirect-bridge/types/naa/IBridgeProxy.d.ts +0 -11
  2483. package/lib/redirect-bridge/types/naa/IBridgeProxy.d.ts.map +0 -1
  2484. package/lib/redirect-bridge/types/naa/InitContext.d.ts +0 -9
  2485. package/lib/redirect-bridge/types/naa/InitContext.d.ts.map +0 -1
  2486. package/lib/redirect-bridge/types/naa/TokenRequest.d.ts +0 -21
  2487. package/lib/redirect-bridge/types/naa/TokenRequest.d.ts.map +0 -1
  2488. package/lib/redirect-bridge/types/naa/TokenResponse.d.ts +0 -14
  2489. package/lib/redirect-bridge/types/naa/TokenResponse.d.ts.map +0 -1
  2490. package/lib/redirect-bridge/types/naa/mapping/NestedAppAuthAdapter.d.ts +0 -36
  2491. package/lib/redirect-bridge/types/naa/mapping/NestedAppAuthAdapter.d.ts.map +0 -1
  2492. package/lib/redirect-bridge/types/navigation/INavigationClient.d.ts +0 -17
  2493. package/lib/redirect-bridge/types/navigation/INavigationClient.d.ts.map +0 -1
  2494. package/lib/redirect-bridge/types/navigation/NavigationClient.d.ts +0 -23
  2495. package/lib/redirect-bridge/types/navigation/NavigationClient.d.ts.map +0 -1
  2496. package/lib/redirect-bridge/types/navigation/NavigationOptions.d.ts +0 -13
  2497. package/lib/redirect-bridge/types/navigation/NavigationOptions.d.ts.map +0 -1
  2498. package/lib/redirect-bridge/types/network/FetchClient.d.ts +0 -21
  2499. package/lib/redirect-bridge/types/network/FetchClient.d.ts.map +0 -1
  2500. package/lib/redirect-bridge/types/operatingcontext/BaseOperatingContext.d.ts +0 -43
  2501. package/lib/redirect-bridge/types/operatingcontext/BaseOperatingContext.d.ts.map +0 -1
  2502. package/lib/redirect-bridge/types/operatingcontext/NestedAppOperatingContext.d.ts +0 -41
  2503. package/lib/redirect-bridge/types/operatingcontext/NestedAppOperatingContext.d.ts.map +0 -1
  2504. package/lib/redirect-bridge/types/operatingcontext/StandardOperatingContext.d.ts +0 -26
  2505. package/lib/redirect-bridge/types/operatingcontext/StandardOperatingContext.d.ts.map +0 -1
  2506. package/lib/redirect-bridge/types/operatingcontext/UnknownOperatingContext.d.ts +0 -26
  2507. package/lib/redirect-bridge/types/operatingcontext/UnknownOperatingContext.d.ts.map +0 -1
  2508. package/lib/redirect-bridge/types/packageMetadata.d.ts +0 -3
  2509. package/lib/redirect-bridge/types/packageMetadata.d.ts.map +0 -1
  2510. package/lib/redirect-bridge/types/protocol/Authorize.d.ts +0 -102
  2511. package/lib/redirect-bridge/types/protocol/Authorize.d.ts.map +0 -1
  2512. package/lib/redirect-bridge/types/redirect_bridge/index.d.ts +0 -16
  2513. package/lib/redirect-bridge/types/redirect_bridge/index.d.ts.map +0 -1
  2514. package/lib/redirect-bridge/types/request/AuthorizationCodeRequest.d.ts +0 -27
  2515. package/lib/redirect-bridge/types/request/AuthorizationCodeRequest.d.ts.map +0 -1
  2516. package/lib/redirect-bridge/types/request/ClearCacheRequest.d.ts +0 -15
  2517. package/lib/redirect-bridge/types/request/ClearCacheRequest.d.ts.map +0 -1
  2518. package/lib/redirect-bridge/types/request/EndSessionPopupRequest.d.ts +0 -24
  2519. package/lib/redirect-bridge/types/request/EndSessionPopupRequest.d.ts.map +0 -1
  2520. package/lib/redirect-bridge/types/request/EndSessionRequest.d.ts +0 -11
  2521. package/lib/redirect-bridge/types/request/EndSessionRequest.d.ts.map +0 -1
  2522. package/lib/redirect-bridge/types/request/HandleRedirectPromiseOptions.d.ts +0 -5
  2523. package/lib/redirect-bridge/types/request/HandleRedirectPromiseOptions.d.ts.map +0 -1
  2524. package/lib/redirect-bridge/types/request/InitializeApplicationRequest.d.ts +0 -10
  2525. package/lib/redirect-bridge/types/request/InitializeApplicationRequest.d.ts.map +0 -1
  2526. package/lib/redirect-bridge/types/request/PopupRequest.d.ts +0 -25
  2527. package/lib/redirect-bridge/types/request/PopupRequest.d.ts.map +0 -1
  2528. package/lib/redirect-bridge/types/request/PopupWindowAttributes.d.ts +0 -16
  2529. package/lib/redirect-bridge/types/request/PopupWindowAttributes.d.ts.map +0 -1
  2530. package/lib/redirect-bridge/types/request/RedirectRequest.d.ts +0 -16
  2531. package/lib/redirect-bridge/types/request/RedirectRequest.d.ts.map +0 -1
  2532. package/lib/redirect-bridge/types/request/RequestHelpers.d.ts +0 -28
  2533. package/lib/redirect-bridge/types/request/RequestHelpers.d.ts.map +0 -1
  2534. package/lib/redirect-bridge/types/request/SilentRequest.d.ts +0 -52
  2535. package/lib/redirect-bridge/types/request/SilentRequest.d.ts.map +0 -1
  2536. package/lib/redirect-bridge/types/request/SsoSilentRequest.d.ts +0 -6
  2537. package/lib/redirect-bridge/types/request/SsoSilentRequest.d.ts.map +0 -1
  2538. package/lib/redirect-bridge/types/response/AuthenticationResult.d.ts +0 -5
  2539. package/lib/redirect-bridge/types/response/AuthenticationResult.d.ts.map +0 -1
  2540. package/lib/redirect-bridge/types/response/ResponseHandler.d.ts +0 -8
  2541. package/lib/redirect-bridge/types/response/ResponseHandler.d.ts.map +0 -1
  2542. package/lib/redirect-bridge/types/telemetry/BrowserPerformanceClient.d.ts +0 -19
  2543. package/lib/redirect-bridge/types/telemetry/BrowserPerformanceClient.d.ts.map +0 -1
  2544. package/lib/redirect-bridge/types/telemetry/BrowserPerformanceEvents.d.ts +0 -140
  2545. package/lib/redirect-bridge/types/telemetry/BrowserPerformanceEvents.d.ts.map +0 -1
  2546. package/lib/redirect-bridge/types/telemetry/BrowserPerformanceMeasurement.d.ts +0 -22
  2547. package/lib/redirect-bridge/types/telemetry/BrowserPerformanceMeasurement.d.ts.map +0 -1
  2548. package/lib/redirect-bridge/types/telemetry/BrowserRootPerformanceEvents.d.ts +0 -42
  2549. package/lib/redirect-bridge/types/telemetry/BrowserRootPerformanceEvents.d.ts.map +0 -1
  2550. package/lib/redirect-bridge/types/utils/BrowserConstants.d.ts +0 -182
  2551. package/lib/redirect-bridge/types/utils/BrowserConstants.d.ts.map +0 -1
  2552. package/lib/redirect-bridge/types/utils/BrowserProtocolUtils.d.ts +0 -12
  2553. package/lib/redirect-bridge/types/utils/BrowserProtocolUtils.d.ts.map +0 -1
  2554. package/lib/redirect-bridge/types/utils/BrowserUtils.d.ts +0 -111
  2555. package/lib/redirect-bridge/types/utils/BrowserUtils.d.ts.map +0 -1
  2556. package/lib/redirect-bridge/types/utils/Helpers.d.ts +0 -7
  2557. package/lib/redirect-bridge/types/utils/Helpers.d.ts.map +0 -1
  2558. package/lib/redirect-bridge/types/utils/MsalFrameStatsUtils.d.ts +0 -13
  2559. package/lib/redirect-bridge/types/utils/MsalFrameStatsUtils.d.ts.map +0 -1
  2560. package/lib/types/app/IPublicClientApplication.d.ts +0 -48
  2561. package/lib/types/app/IPublicClientApplication.d.ts.map +0 -1
  2562. package/lib/types/app/PublicClientApplication.d.ts +0 -247
  2563. package/lib/types/app/PublicClientApplication.d.ts.map +0 -1
  2564. package/lib/types/broker/nativeBroker/IPlatformAuthHandler.d.ts +0 -12
  2565. package/lib/types/broker/nativeBroker/IPlatformAuthHandler.d.ts.map +0 -1
  2566. package/lib/types/broker/nativeBroker/NativeStatusCodes.d.ts +0 -9
  2567. package/lib/types/broker/nativeBroker/NativeStatusCodes.d.ts.map +0 -1
  2568. package/lib/types/broker/nativeBroker/PlatformAuthDOMHandler.d.ts +0 -30
  2569. package/lib/types/broker/nativeBroker/PlatformAuthDOMHandler.d.ts.map +0 -1
  2570. package/lib/types/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts +0 -63
  2571. package/lib/types/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts.map +0 -1
  2572. package/lib/types/broker/nativeBroker/PlatformAuthProvider.d.ts +0 -28
  2573. package/lib/types/broker/nativeBroker/PlatformAuthProvider.d.ts.map +0 -1
  2574. package/lib/types/broker/nativeBroker/PlatformAuthRequest.d.ts +0 -79
  2575. package/lib/types/broker/nativeBroker/PlatformAuthRequest.d.ts.map +0 -1
  2576. package/lib/types/broker/nativeBroker/PlatformAuthResponse.d.ts +0 -71
  2577. package/lib/types/broker/nativeBroker/PlatformAuthResponse.d.ts.map +0 -1
  2578. package/lib/types/cache/AccountManager.d.ts +0 -24
  2579. package/lib/types/cache/AccountManager.d.ts.map +0 -1
  2580. package/lib/types/cache/AsyncMemoryStorage.d.ts +0 -58
  2581. package/lib/types/cache/AsyncMemoryStorage.d.ts.map +0 -1
  2582. package/lib/types/cache/BrowserCacheManager.d.ts +0 -364
  2583. package/lib/types/cache/BrowserCacheManager.d.ts.map +0 -1
  2584. package/lib/types/cache/CacheHelpers.d.ts +0 -16
  2585. package/lib/types/cache/CacheHelpers.d.ts.map +0 -1
  2586. package/lib/types/cache/CacheKeys.d.ts +0 -15
  2587. package/lib/types/cache/CacheKeys.d.ts.map +0 -1
  2588. package/lib/types/cache/CookieStorage.d.ts +0 -23
  2589. package/lib/types/cache/CookieStorage.d.ts.map +0 -1
  2590. package/lib/types/cache/DatabaseStorage.d.ts +0 -57
  2591. package/lib/types/cache/DatabaseStorage.d.ts.map +0 -1
  2592. package/lib/types/cache/EncryptedData.d.ts +0 -8
  2593. package/lib/types/cache/EncryptedData.d.ts.map +0 -1
  2594. package/lib/types/cache/IAsyncStorage.d.ts +0 -33
  2595. package/lib/types/cache/IAsyncStorage.d.ts.map +0 -1
  2596. package/lib/types/cache/IWindowStorage.d.ts +0 -42
  2597. package/lib/types/cache/IWindowStorage.d.ts.map +0 -1
  2598. package/lib/types/cache/LocalStorage.d.ts +0 -51
  2599. package/lib/types/cache/LocalStorage.d.ts.map +0 -1
  2600. package/lib/types/cache/MemoryStorage.d.ts +0 -16
  2601. package/lib/types/cache/MemoryStorage.d.ts.map +0 -1
  2602. package/lib/types/cache/SessionStorage.d.ts +0 -14
  2603. package/lib/types/cache/SessionStorage.d.ts.map +0 -1
  2604. package/lib/types/cache/TokenCache.d.ts +0 -20
  2605. package/lib/types/cache/TokenCache.d.ts.map +0 -1
  2606. package/lib/types/config/Configuration.d.ts +0 -198
  2607. package/lib/types/config/Configuration.d.ts.map +0 -1
  2608. package/lib/types/controllers/IController.d.ts +0 -3
  2609. package/lib/types/controllers/IController.d.ts.map +0 -1
  2610. package/lib/types/controllers/NestedAppAuthController.d.ts +0 -159
  2611. package/lib/types/controllers/NestedAppAuthController.d.ts.map +0 -1
  2612. package/lib/types/controllers/StandardController.d.ts +0 -398
  2613. package/lib/types/controllers/StandardController.d.ts.map +0 -1
  2614. package/lib/types/controllers/UnknownOperatingContextController.d.ts +0 -73
  2615. package/lib/types/controllers/UnknownOperatingContextController.d.ts.map +0 -1
  2616. package/lib/types/crypto/BrowserCrypto.d.ts +0 -96
  2617. package/lib/types/crypto/BrowserCrypto.d.ts.map +0 -1
  2618. package/lib/types/crypto/CryptoOps.d.ts +0 -77
  2619. package/lib/types/crypto/CryptoOps.d.ts.map +0 -1
  2620. package/lib/types/crypto/PkceGenerator.d.ts +0 -9
  2621. package/lib/types/crypto/PkceGenerator.d.ts.map +0 -1
  2622. package/lib/types/crypto/SignedHttpRequest.d.ts +0 -32
  2623. package/lib/types/crypto/SignedHttpRequest.d.ts.map +0 -1
  2624. package/lib/types/custom_auth/CustomAuthActionInputs.d.ts +0 -29
  2625. package/lib/types/custom_auth/CustomAuthActionInputs.d.ts.map +0 -1
  2626. package/lib/types/custom_auth/CustomAuthConstants.d.ts +0 -35
  2627. package/lib/types/custom_auth/CustomAuthConstants.d.ts.map +0 -1
  2628. package/lib/types/custom_auth/CustomAuthPublicClientApplication.d.ts +0 -55
  2629. package/lib/types/custom_auth/CustomAuthPublicClientApplication.d.ts.map +0 -1
  2630. package/lib/types/custom_auth/ICustomAuthPublicClientApplication.d.ts +0 -33
  2631. package/lib/types/custom_auth/ICustomAuthPublicClientApplication.d.ts.map +0 -1
  2632. package/lib/types/custom_auth/UserAccountAttributes.d.ts +0 -13
  2633. package/lib/types/custom_auth/UserAccountAttributes.d.ts.map +0 -1
  2634. package/lib/types/custom_auth/configuration/CustomAuthConfiguration.d.ts +0 -14
  2635. package/lib/types/custom_auth/configuration/CustomAuthConfiguration.d.ts.map +0 -1
  2636. package/lib/types/custom_auth/controller/CustomAuthStandardController.d.ts +0 -27
  2637. package/lib/types/custom_auth/controller/CustomAuthStandardController.d.ts.map +0 -1
  2638. package/lib/types/custom_auth/controller/ICustomAuthStandardController.d.ts +0 -13
  2639. package/lib/types/custom_auth/controller/ICustomAuthStandardController.d.ts.map +0 -1
  2640. package/lib/types/custom_auth/core/CustomAuthAuthority.d.ts +0 -29
  2641. package/lib/types/custom_auth/core/CustomAuthAuthority.d.ts.map +0 -1
  2642. package/lib/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +0 -40
  2643. package/lib/types/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +0 -1
  2644. package/lib/types/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts +0 -11
  2645. package/lib/types/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts.map +0 -1
  2646. package/lib/types/custom_auth/core/auth_flow/AuthFlowState.d.ts +0 -31
  2647. package/lib/types/custom_auth/core/auth_flow/AuthFlowState.d.ts.map +0 -1
  2648. package/lib/types/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts +0 -29
  2649. package/lib/types/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts.map +0 -1
  2650. package/lib/types/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts +0 -15
  2651. package/lib/types/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts.map +0 -1
  2652. package/lib/types/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts +0 -27
  2653. package/lib/types/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts.map +0 -1
  2654. package/lib/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts +0 -47
  2655. package/lib/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts.map +0 -1
  2656. package/lib/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts +0 -37
  2657. package/lib/types/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts.map +0 -1
  2658. package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts +0 -11
  2659. package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts.map +0 -1
  2660. package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts +0 -11
  2661. package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts.map +0 -1
  2662. package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts +0 -82
  2663. package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts.map +0 -1
  2664. package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts +0 -20
  2665. package/lib/types/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts.map +0 -1
  2666. package/lib/types/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts +0 -27
  2667. package/lib/types/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts.map +0 -1
  2668. package/lib/types/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts +0 -40
  2669. package/lib/types/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts.map +0 -1
  2670. package/lib/types/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts +0 -34
  2671. package/lib/types/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts.map +0 -1
  2672. package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts +0 -11
  2673. package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts.map +0 -1
  2674. package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts +0 -11
  2675. package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts.map +0 -1
  2676. package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts +0 -67
  2677. package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts.map +0 -1
  2678. package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts +0 -19
  2679. package/lib/types/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts.map +0 -1
  2680. package/lib/types/custom_auth/core/error/CustomAuthApiError.d.ts +0 -20
  2681. package/lib/types/custom_auth/core/error/CustomAuthApiError.d.ts.map +0 -1
  2682. package/lib/types/custom_auth/core/error/CustomAuthError.d.ts +0 -9
  2683. package/lib/types/custom_auth/core/error/CustomAuthError.d.ts.map +0 -1
  2684. package/lib/types/custom_auth/core/error/HttpError.d.ts +0 -5
  2685. package/lib/types/custom_auth/core/error/HttpError.d.ts.map +0 -1
  2686. package/lib/types/custom_auth/core/error/HttpErrorCodes.d.ts +0 -3
  2687. package/lib/types/custom_auth/core/error/HttpErrorCodes.d.ts.map +0 -1
  2688. package/lib/types/custom_auth/core/error/InvalidArgumentError.d.ts +0 -5
  2689. package/lib/types/custom_auth/core/error/InvalidArgumentError.d.ts.map +0 -1
  2690. package/lib/types/custom_auth/core/error/InvalidConfigurationError.d.ts +0 -5
  2691. package/lib/types/custom_auth/core/error/InvalidConfigurationError.d.ts.map +0 -1
  2692. package/lib/types/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts +0 -4
  2693. package/lib/types/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts.map +0 -1
  2694. package/lib/types/custom_auth/core/error/MethodNotImplementedError.d.ts +0 -5
  2695. package/lib/types/custom_auth/core/error/MethodNotImplementedError.d.ts.map +0 -1
  2696. package/lib/types/custom_auth/core/error/MsalCustomAuthError.d.ts +0 -5
  2697. package/lib/types/custom_auth/core/error/MsalCustomAuthError.d.ts.map +0 -1
  2698. package/lib/types/custom_auth/core/error/NoCachedAccountFoundError.d.ts +0 -5
  2699. package/lib/types/custom_auth/core/error/NoCachedAccountFoundError.d.ts.map +0 -1
  2700. package/lib/types/custom_auth/core/error/ParsedUrlError.d.ts +0 -5
  2701. package/lib/types/custom_auth/core/error/ParsedUrlError.d.ts.map +0 -1
  2702. package/lib/types/custom_auth/core/error/ParsedUrlErrorCodes.d.ts +0 -2
  2703. package/lib/types/custom_auth/core/error/ParsedUrlErrorCodes.d.ts.map +0 -1
  2704. package/lib/types/custom_auth/core/error/UnexpectedError.d.ts +0 -5
  2705. package/lib/types/custom_auth/core/error/UnexpectedError.d.ts.map +0 -1
  2706. package/lib/types/custom_auth/core/error/UnsupportedEnvironmentError.d.ts +0 -5
  2707. package/lib/types/custom_auth/core/error/UnsupportedEnvironmentError.d.ts.map +0 -1
  2708. package/lib/types/custom_auth/core/error/UserAccountAttributeError.d.ts +0 -5
  2709. package/lib/types/custom_auth/core/error/UserAccountAttributeError.d.ts.map +0 -1
  2710. package/lib/types/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts +0 -2
  2711. package/lib/types/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts.map +0 -1
  2712. package/lib/types/custom_auth/core/error/UserAlreadySignedInError.d.ts +0 -5
  2713. package/lib/types/custom_auth/core/error/UserAlreadySignedInError.d.ts.map +0 -1
  2714. package/lib/types/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts +0 -34
  2715. package/lib/types/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +0 -1
  2716. package/lib/types/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts +0 -22
  2717. package/lib/types/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts.map +0 -1
  2718. package/lib/types/custom_auth/core/interaction_client/jit/JitClient.d.ts +0 -21
  2719. package/lib/types/custom_auth/core/interaction_client/jit/JitClient.d.ts.map +0 -1
  2720. package/lib/types/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts +0 -20
  2721. package/lib/types/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts.map +0 -1
  2722. package/lib/types/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts +0 -22
  2723. package/lib/types/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts.map +0 -1
  2724. package/lib/types/custom_auth/core/interaction_client/mfa/MfaClient.d.ts +0 -21
  2725. package/lib/types/custom_auth/core/interaction_client/mfa/MfaClient.d.ts.map +0 -1
  2726. package/lib/types/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts +0 -14
  2727. package/lib/types/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts.map +0 -1
  2728. package/lib/types/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts +0 -23
  2729. package/lib/types/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts.map +0 -1
  2730. package/lib/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts +0 -15
  2731. package/lib/types/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts.map +0 -1
  2732. package/lib/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts +0 -14
  2733. package/lib/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts.map +0 -1
  2734. package/lib/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +0 -16
  2735. package/lib/types/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +0 -1
  2736. package/lib/types/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts +0 -11
  2737. package/lib/types/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts.map +0 -1
  2738. package/lib/types/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts +0 -18
  2739. package/lib/types/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts.map +0 -1
  2740. package/lib/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts +0 -34
  2741. package/lib/types/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts.map +0 -1
  2742. package/lib/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +0 -37
  2743. package/lib/types/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts.map +0 -1
  2744. package/lib/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts +0 -23
  2745. package/lib/types/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts.map +0 -1
  2746. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts +0 -23
  2747. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts.map +0 -1
  2748. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts +0 -29
  2749. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts.map +0 -1
  2750. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +0 -86
  2751. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +0 -1
  2752. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +0 -71
  2753. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +0 -1
  2754. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +0 -13
  2755. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +0 -1
  2756. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts +0 -9
  2757. package/lib/types/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts.map +0 -1
  2758. package/lib/types/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts +0 -13
  2759. package/lib/types/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +0 -1
  2760. package/lib/types/custom_auth/core/network_client/http_client/IHttpClient.d.ts +0 -35
  2761. package/lib/types/custom_auth/core/network_client/http_client/IHttpClient.d.ts.map +0 -1
  2762. package/lib/types/custom_auth/core/telemetry/PublicApiId.d.ts +0 -25
  2763. package/lib/types/custom_auth/core/telemetry/PublicApiId.d.ts.map +0 -1
  2764. package/lib/types/custom_auth/core/utils/ArgumentValidator.d.ts +0 -4
  2765. package/lib/types/custom_auth/core/utils/ArgumentValidator.d.ts.map +0 -1
  2766. package/lib/types/custom_auth/core/utils/UrlUtils.d.ts +0 -3
  2767. package/lib/types/custom_auth/core/utils/UrlUtils.d.ts.map +0 -1
  2768. package/lib/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts +0 -47
  2769. package/lib/types/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +0 -1
  2770. package/lib/types/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts +0 -32
  2771. package/lib/types/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts.map +0 -1
  2772. package/lib/types/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts +0 -37
  2773. package/lib/types/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts.map +0 -1
  2774. package/lib/types/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts +0 -36
  2775. package/lib/types/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts.map +0 -1
  2776. package/lib/types/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts +0 -35
  2777. package/lib/types/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts.map +0 -1
  2778. package/lib/types/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts +0 -20
  2779. package/lib/types/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts.map +0 -1
  2780. package/lib/types/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts +0 -20
  2781. package/lib/types/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts.map +0 -1
  2782. package/lib/types/custom_auth/get_account/auth_flow/state/SignOutState.d.ts +0 -20
  2783. package/lib/types/custom_auth/get_account/auth_flow/state/SignOutState.d.ts.map +0 -1
  2784. package/lib/types/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts +0 -21
  2785. package/lib/types/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +0 -1
  2786. package/lib/types/custom_auth/index.d.ts +0 -84
  2787. package/lib/types/custom_auth/index.d.ts.map +0 -1
  2788. package/lib/types/custom_auth/operating_context/CustomAuthOperatingContext.d.ts +0 -13
  2789. package/lib/types/custom_auth/operating_context/CustomAuthOperatingContext.d.ts.map +0 -1
  2790. package/lib/types/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts +0 -40
  2791. package/lib/types/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts.map +0 -1
  2792. package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts +0 -37
  2793. package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts.map +0 -1
  2794. package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts +0 -37
  2795. package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts.map +0 -1
  2796. package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts +0 -37
  2797. package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts.map +0 -1
  2798. package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts +0 -32
  2799. package/lib/types/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts.map +0 -1
  2800. package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts +0 -27
  2801. package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts.map +0 -1
  2802. package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts +0 -11
  2803. package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts.map +0 -1
  2804. package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts +0 -11
  2805. package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts.map +0 -1
  2806. package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts +0 -16
  2807. package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts.map +0 -1
  2808. package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts +0 -6
  2809. package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts.map +0 -1
  2810. package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts +0 -19
  2811. package/lib/types/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts.map +0 -1
  2812. package/lib/types/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts +0 -33
  2813. package/lib/types/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +0 -1
  2814. package/lib/types/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts +0 -19
  2815. package/lib/types/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts.map +0 -1
  2816. package/lib/types/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts +0 -14
  2817. package/lib/types/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts.map +0 -1
  2818. package/lib/types/custom_auth/sign_in/auth_flow/SignInScenario.d.ts +0 -6
  2819. package/lib/types/custom_auth/sign_in/auth_flow/SignInScenario.d.ts.map +0 -1
  2820. package/lib/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +0 -45
  2821. package/lib/types/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +0 -1
  2822. package/lib/types/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts +0 -37
  2823. package/lib/types/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts.map +0 -1
  2824. package/lib/types/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts +0 -72
  2825. package/lib/types/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts.map +0 -1
  2826. package/lib/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts +0 -51
  2827. package/lib/types/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts.map +0 -1
  2828. package/lib/types/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts +0 -46
  2829. package/lib/types/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts.map +0 -1
  2830. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts +0 -33
  2831. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +0 -1
  2832. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts +0 -12
  2833. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts.map +0 -1
  2834. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts +0 -17
  2835. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +0 -1
  2836. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts +0 -11
  2837. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts.map +0 -1
  2838. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts +0 -21
  2839. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +0 -1
  2840. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInState.d.ts +0 -22
  2841. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInState.d.ts.map +0 -1
  2842. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +0 -25
  2843. package/lib/types/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +0 -1
  2844. package/lib/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts +0 -49
  2845. package/lib/types/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +0 -1
  2846. package/lib/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +0 -32
  2847. package/lib/types/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +0 -1
  2848. package/lib/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +0 -43
  2849. package/lib/types/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +0 -1
  2850. package/lib/types/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts +0 -62
  2851. package/lib/types/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts.map +0 -1
  2852. package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts +0 -37
  2853. package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts.map +0 -1
  2854. package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts +0 -53
  2855. package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts.map +0 -1
  2856. package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts +0 -37
  2857. package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts.map +0 -1
  2858. package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts +0 -53
  2859. package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts.map +0 -1
  2860. package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts +0 -45
  2861. package/lib/types/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts.map +0 -1
  2862. package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts +0 -25
  2863. package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts.map +0 -1
  2864. package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts +0 -32
  2865. package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts.map +0 -1
  2866. package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts +0 -11
  2867. package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts.map +0 -1
  2868. package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts +0 -11
  2869. package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts.map +0 -1
  2870. package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts +0 -16
  2871. package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts.map +0 -1
  2872. package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts +0 -6
  2873. package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts.map +0 -1
  2874. package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts +0 -24
  2875. package/lib/types/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts.map +0 -1
  2876. package/lib/types/custom_auth/sign_up/interaction_client/SignUpClient.d.ts +0 -41
  2877. package/lib/types/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +0 -1
  2878. package/lib/types/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts +0 -26
  2879. package/lib/types/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts.map +0 -1
  2880. package/lib/types/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts +0 -34
  2881. package/lib/types/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts.map +0 -1
  2882. package/lib/types/encode/Base64Decode.d.ts +0 -15
  2883. package/lib/types/encode/Base64Decode.d.ts.map +0 -1
  2884. package/lib/types/encode/Base64Encode.d.ts +0 -20
  2885. package/lib/types/encode/Base64Encode.d.ts.map +0 -1
  2886. package/lib/types/error/BrowserAuthError.d.ts +0 -12
  2887. package/lib/types/error/BrowserAuthError.d.ts.map +0 -1
  2888. package/lib/types/error/BrowserAuthErrorCodes.d.ts +0 -53
  2889. package/lib/types/error/BrowserAuthErrorCodes.d.ts.map +0 -1
  2890. package/lib/types/error/BrowserConfigurationAuthError.d.ts +0 -11
  2891. package/lib/types/error/BrowserConfigurationAuthError.d.ts.map +0 -1
  2892. package/lib/types/error/BrowserConfigurationAuthErrorCodes.d.ts +0 -4
  2893. package/lib/types/error/BrowserConfigurationAuthErrorCodes.d.ts.map +0 -1
  2894. package/lib/types/error/NativeAuthError.d.ts +0 -27
  2895. package/lib/types/error/NativeAuthError.d.ts.map +0 -1
  2896. package/lib/types/error/NativeAuthErrorCodes.d.ts +0 -5
  2897. package/lib/types/error/NativeAuthErrorCodes.d.ts.map +0 -1
  2898. package/lib/types/error/NestedAppAuthError.d.ts +0 -6
  2899. package/lib/types/error/NestedAppAuthError.d.ts.map +0 -1
  2900. package/lib/types/event/EventHandler.d.ts +0 -49
  2901. package/lib/types/event/EventHandler.d.ts.map +0 -1
  2902. package/lib/types/event/EventMessage.d.ts +0 -41
  2903. package/lib/types/event/EventMessage.d.ts.map +0 -1
  2904. package/lib/types/event/EventType.d.ts +0 -24
  2905. package/lib/types/event/EventType.d.ts.map +0 -1
  2906. package/lib/types/index.d.ts +0 -73
  2907. package/lib/types/index.d.ts.map +0 -1
  2908. package/lib/types/interaction_client/BaseInteractionClient.d.ts +0 -77
  2909. package/lib/types/interaction_client/BaseInteractionClient.d.ts.map +0 -1
  2910. package/lib/types/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +0 -5
  2911. package/lib/types/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +0 -1
  2912. package/lib/types/interaction_client/PlatformAuthInteractionClient.d.ts +0 -151
  2913. package/lib/types/interaction_client/PlatformAuthInteractionClient.d.ts.map +0 -1
  2914. package/lib/types/interaction_client/PopupClient.d.ts +0 -106
  2915. package/lib/types/interaction_client/PopupClient.d.ts.map +0 -1
  2916. package/lib/types/interaction_client/RedirectClient.d.ts +0 -77
  2917. package/lib/types/interaction_client/RedirectClient.d.ts.map +0 -1
  2918. package/lib/types/interaction_client/SilentAuthCodeClient.d.ts +0 -24
  2919. package/lib/types/interaction_client/SilentAuthCodeClient.d.ts.map +0 -1
  2920. package/lib/types/interaction_client/SilentCacheClient.d.ts +0 -17
  2921. package/lib/types/interaction_client/SilentCacheClient.d.ts.map +0 -1
  2922. package/lib/types/interaction_client/SilentIframeClient.d.ts +0 -57
  2923. package/lib/types/interaction_client/SilentIframeClient.d.ts.map +0 -1
  2924. package/lib/types/interaction_client/SilentRefreshClient.d.ts +0 -32
  2925. package/lib/types/interaction_client/SilentRefreshClient.d.ts.map +0 -1
  2926. package/lib/types/interaction_client/StandardInteractionClient.d.ts +0 -76
  2927. package/lib/types/interaction_client/StandardInteractionClient.d.ts.map +0 -1
  2928. package/lib/types/interaction_handler/InteractionHandler.d.ts +0 -33
  2929. package/lib/types/interaction_handler/InteractionHandler.d.ts.map +0 -1
  2930. package/lib/types/interaction_handler/SilentHandler.d.ts +0 -17
  2931. package/lib/types/interaction_handler/SilentHandler.d.ts.map +0 -1
  2932. package/lib/types/naa/AccountInfo.d.ts +0 -13
  2933. package/lib/types/naa/AccountInfo.d.ts.map +0 -1
  2934. package/lib/types/naa/AuthBridge.d.ts +0 -9
  2935. package/lib/types/naa/AuthBridge.d.ts.map +0 -1
  2936. package/lib/types/naa/AuthResult.d.ts +0 -7
  2937. package/lib/types/naa/AuthResult.d.ts.map +0 -1
  2938. package/lib/types/naa/BridgeAccountContext.d.ts +0 -13
  2939. package/lib/types/naa/BridgeAccountContext.d.ts.map +0 -1
  2940. package/lib/types/naa/BridgeCapabilities.d.ts +0 -4
  2941. package/lib/types/naa/BridgeCapabilities.d.ts.map +0 -1
  2942. package/lib/types/naa/BridgeError.d.ts +0 -10
  2943. package/lib/types/naa/BridgeError.d.ts.map +0 -1
  2944. package/lib/types/naa/BridgeProxy.d.ts +0 -69
  2945. package/lib/types/naa/BridgeProxy.d.ts.map +0 -1
  2946. package/lib/types/naa/BridgeRequest.d.ts +0 -8
  2947. package/lib/types/naa/BridgeRequest.d.ts.map +0 -1
  2948. package/lib/types/naa/BridgeRequestEnvelope.d.ts +0 -13
  2949. package/lib/types/naa/BridgeRequestEnvelope.d.ts.map +0 -1
  2950. package/lib/types/naa/BridgeResponseEnvelope.d.ts +0 -14
  2951. package/lib/types/naa/BridgeResponseEnvelope.d.ts.map +0 -1
  2952. package/lib/types/naa/BridgeStatusCode.d.ts +0 -12
  2953. package/lib/types/naa/BridgeStatusCode.d.ts.map +0 -1
  2954. package/lib/types/naa/IBridgeProxy.d.ts +0 -11
  2955. package/lib/types/naa/IBridgeProxy.d.ts.map +0 -1
  2956. package/lib/types/naa/InitContext.d.ts +0 -9
  2957. package/lib/types/naa/InitContext.d.ts.map +0 -1
  2958. package/lib/types/naa/TokenRequest.d.ts +0 -21
  2959. package/lib/types/naa/TokenRequest.d.ts.map +0 -1
  2960. package/lib/types/naa/TokenResponse.d.ts +0 -14
  2961. package/lib/types/naa/TokenResponse.d.ts.map +0 -1
  2962. package/lib/types/naa/mapping/NestedAppAuthAdapter.d.ts +0 -36
  2963. package/lib/types/naa/mapping/NestedAppAuthAdapter.d.ts.map +0 -1
  2964. package/lib/types/navigation/INavigationClient.d.ts +0 -17
  2965. package/lib/types/navigation/INavigationClient.d.ts.map +0 -1
  2966. package/lib/types/navigation/NavigationClient.d.ts +0 -23
  2967. package/lib/types/navigation/NavigationClient.d.ts.map +0 -1
  2968. package/lib/types/navigation/NavigationOptions.d.ts +0 -13
  2969. package/lib/types/navigation/NavigationOptions.d.ts.map +0 -1
  2970. package/lib/types/network/FetchClient.d.ts +0 -21
  2971. package/lib/types/network/FetchClient.d.ts.map +0 -1
  2972. package/lib/types/operatingcontext/BaseOperatingContext.d.ts +0 -43
  2973. package/lib/types/operatingcontext/BaseOperatingContext.d.ts.map +0 -1
  2974. package/lib/types/operatingcontext/NestedAppOperatingContext.d.ts +0 -41
  2975. package/lib/types/operatingcontext/NestedAppOperatingContext.d.ts.map +0 -1
  2976. package/lib/types/operatingcontext/StandardOperatingContext.d.ts +0 -26
  2977. package/lib/types/operatingcontext/StandardOperatingContext.d.ts.map +0 -1
  2978. package/lib/types/operatingcontext/UnknownOperatingContext.d.ts +0 -26
  2979. package/lib/types/operatingcontext/UnknownOperatingContext.d.ts.map +0 -1
  2980. package/lib/types/packageMetadata.d.ts +0 -3
  2981. package/lib/types/packageMetadata.d.ts.map +0 -1
  2982. package/lib/types/protocol/Authorize.d.ts +0 -102
  2983. package/lib/types/protocol/Authorize.d.ts.map +0 -1
  2984. package/lib/types/redirect_bridge/index.d.ts +0 -16
  2985. package/lib/types/redirect_bridge/index.d.ts.map +0 -1
  2986. package/lib/types/request/AuthorizationCodeRequest.d.ts +0 -27
  2987. package/lib/types/request/AuthorizationCodeRequest.d.ts.map +0 -1
  2988. package/lib/types/request/ClearCacheRequest.d.ts +0 -15
  2989. package/lib/types/request/ClearCacheRequest.d.ts.map +0 -1
  2990. package/lib/types/request/EndSessionPopupRequest.d.ts +0 -24
  2991. package/lib/types/request/EndSessionPopupRequest.d.ts.map +0 -1
  2992. package/lib/types/request/EndSessionRequest.d.ts +0 -11
  2993. package/lib/types/request/EndSessionRequest.d.ts.map +0 -1
  2994. package/lib/types/request/HandleRedirectPromiseOptions.d.ts +0 -5
  2995. package/lib/types/request/HandleRedirectPromiseOptions.d.ts.map +0 -1
  2996. package/lib/types/request/InitializeApplicationRequest.d.ts +0 -10
  2997. package/lib/types/request/InitializeApplicationRequest.d.ts.map +0 -1
  2998. package/lib/types/request/PopupRequest.d.ts +0 -25
  2999. package/lib/types/request/PopupRequest.d.ts.map +0 -1
  3000. package/lib/types/request/PopupWindowAttributes.d.ts +0 -16
  3001. package/lib/types/request/PopupWindowAttributes.d.ts.map +0 -1
  3002. package/lib/types/request/RedirectRequest.d.ts +0 -16
  3003. package/lib/types/request/RedirectRequest.d.ts.map +0 -1
  3004. package/lib/types/request/RequestHelpers.d.ts +0 -28
  3005. package/lib/types/request/RequestHelpers.d.ts.map +0 -1
  3006. package/lib/types/request/SilentRequest.d.ts +0 -52
  3007. package/lib/types/request/SilentRequest.d.ts.map +0 -1
  3008. package/lib/types/request/SsoSilentRequest.d.ts +0 -6
  3009. package/lib/types/request/SsoSilentRequest.d.ts.map +0 -1
  3010. package/lib/types/response/AuthenticationResult.d.ts +0 -5
  3011. package/lib/types/response/AuthenticationResult.d.ts.map +0 -1
  3012. package/lib/types/response/ResponseHandler.d.ts +0 -8
  3013. package/lib/types/response/ResponseHandler.d.ts.map +0 -1
  3014. package/lib/types/telemetry/BrowserPerformanceClient.d.ts +0 -19
  3015. package/lib/types/telemetry/BrowserPerformanceClient.d.ts.map +0 -1
  3016. package/lib/types/telemetry/BrowserPerformanceEvents.d.ts +0 -140
  3017. package/lib/types/telemetry/BrowserPerformanceEvents.d.ts.map +0 -1
  3018. package/lib/types/telemetry/BrowserPerformanceMeasurement.d.ts +0 -22
  3019. package/lib/types/telemetry/BrowserPerformanceMeasurement.d.ts.map +0 -1
  3020. package/lib/types/telemetry/BrowserRootPerformanceEvents.d.ts +0 -42
  3021. package/lib/types/telemetry/BrowserRootPerformanceEvents.d.ts.map +0 -1
  3022. package/lib/types/utils/BrowserConstants.d.ts +0 -182
  3023. package/lib/types/utils/BrowserConstants.d.ts.map +0 -1
  3024. package/lib/types/utils/BrowserProtocolUtils.d.ts +0 -12
  3025. package/lib/types/utils/BrowserProtocolUtils.d.ts.map +0 -1
  3026. package/lib/types/utils/BrowserUtils.d.ts +0 -111
  3027. package/lib/types/utils/BrowserUtils.d.ts.map +0 -1
  3028. package/lib/types/utils/Helpers.d.ts +0 -7
  3029. package/lib/types/utils/Helpers.d.ts.map +0 -1
  3030. package/lib/types/utils/MsalFrameStatsUtils.d.ts +0 -13
  3031. package/lib/types/utils/MsalFrameStatsUtils.d.ts.map +0 -1
  3032. /package/dist/{custom-auth-path/custom_auth → custom_auth}/index.mjs.map +0 -0
  3033. /package/{dist → types}/app/IPublicClientApplication.d.ts +0 -0
  3034. /package/{dist → types}/app/IPublicClientApplication.d.ts.map +0 -0
  3035. /package/{dist → types}/app/PublicClientApplication.d.ts +0 -0
  3036. /package/{dist → types}/app/PublicClientApplication.d.ts.map +0 -0
  3037. /package/{dist → types}/broker/nativeBroker/IPlatformAuthHandler.d.ts +0 -0
  3038. /package/{dist → types}/broker/nativeBroker/IPlatformAuthHandler.d.ts.map +0 -0
  3039. /package/{dist → types}/broker/nativeBroker/NativeStatusCodes.d.ts +0 -0
  3040. /package/{dist → types}/broker/nativeBroker/NativeStatusCodes.d.ts.map +0 -0
  3041. /package/{dist → types}/broker/nativeBroker/PlatformAuthDOMHandler.d.ts +0 -0
  3042. /package/{dist → types}/broker/nativeBroker/PlatformAuthDOMHandler.d.ts.map +0 -0
  3043. /package/{dist → types}/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts +0 -0
  3044. /package/{dist → types}/broker/nativeBroker/PlatformAuthExtensionHandler.d.ts.map +0 -0
  3045. /package/{dist → types}/broker/nativeBroker/PlatformAuthProvider.d.ts +0 -0
  3046. /package/{dist → types}/broker/nativeBroker/PlatformAuthProvider.d.ts.map +0 -0
  3047. /package/{dist → types}/broker/nativeBroker/PlatformAuthRequest.d.ts +0 -0
  3048. /package/{dist → types}/broker/nativeBroker/PlatformAuthRequest.d.ts.map +0 -0
  3049. /package/{dist → types}/broker/nativeBroker/PlatformAuthResponse.d.ts +0 -0
  3050. /package/{dist → types}/broker/nativeBroker/PlatformAuthResponse.d.ts.map +0 -0
  3051. /package/{dist → types}/cache/AccountManager.d.ts +0 -0
  3052. /package/{dist → types}/cache/AccountManager.d.ts.map +0 -0
  3053. /package/{dist → types}/cache/AsyncMemoryStorage.d.ts +0 -0
  3054. /package/{dist → types}/cache/AsyncMemoryStorage.d.ts.map +0 -0
  3055. /package/{dist → types}/cache/BrowserCacheManager.d.ts +0 -0
  3056. /package/{dist → types}/cache/CacheHelpers.d.ts +0 -0
  3057. /package/{dist → types}/cache/CacheHelpers.d.ts.map +0 -0
  3058. /package/{dist → types}/cache/CacheKeys.d.ts +0 -0
  3059. /package/{dist → types}/cache/CacheKeys.d.ts.map +0 -0
  3060. /package/{dist → types}/cache/CookieStorage.d.ts +0 -0
  3061. /package/{dist → types}/cache/DatabaseStorage.d.ts +0 -0
  3062. /package/{dist → types}/cache/DatabaseStorage.d.ts.map +0 -0
  3063. /package/{dist → types}/cache/EncryptedData.d.ts +0 -0
  3064. /package/{dist → types}/cache/EncryptedData.d.ts.map +0 -0
  3065. /package/{dist → types}/cache/IAsyncStorage.d.ts +0 -0
  3066. /package/{dist → types}/cache/IAsyncStorage.d.ts.map +0 -0
  3067. /package/{dist → types}/cache/IWindowStorage.d.ts +0 -0
  3068. /package/{dist → types}/cache/IWindowStorage.d.ts.map +0 -0
  3069. /package/{dist → types}/cache/LocalStorage.d.ts +0 -0
  3070. /package/{dist → types}/cache/LocalStorage.d.ts.map +0 -0
  3071. /package/{dist → types}/cache/MemoryStorage.d.ts +0 -0
  3072. /package/{dist → types}/cache/MemoryStorage.d.ts.map +0 -0
  3073. /package/{dist → types}/cache/SessionStorage.d.ts +0 -0
  3074. /package/{dist → types}/cache/SessionStorage.d.ts.map +0 -0
  3075. /package/{dist → types}/cache/TokenCache.d.ts +0 -0
  3076. /package/{dist → types}/cache/TokenCache.d.ts.map +0 -0
  3077. /package/{dist → types}/config/Configuration.d.ts +0 -0
  3078. /package/{dist → types}/config/Configuration.d.ts.map +0 -0
  3079. /package/{dist → types}/controllers/IController.d.ts +0 -0
  3080. /package/{dist → types}/controllers/IController.d.ts.map +0 -0
  3081. /package/{dist → types}/controllers/NestedAppAuthController.d.ts +0 -0
  3082. /package/{dist → types}/controllers/NestedAppAuthController.d.ts.map +0 -0
  3083. /package/{dist → types}/controllers/StandardController.d.ts +0 -0
  3084. /package/{dist → types}/controllers/StandardController.d.ts.map +0 -0
  3085. /package/{dist → types}/controllers/UnknownOperatingContextController.d.ts +0 -0
  3086. /package/{dist → types}/controllers/UnknownOperatingContextController.d.ts.map +0 -0
  3087. /package/{dist → types}/crypto/BrowserCrypto.d.ts +0 -0
  3088. /package/{dist → types}/crypto/BrowserCrypto.d.ts.map +0 -0
  3089. /package/{dist → types}/crypto/CryptoOps.d.ts +0 -0
  3090. /package/{dist → types}/crypto/CryptoOps.d.ts.map +0 -0
  3091. /package/{dist → types}/crypto/PkceGenerator.d.ts +0 -0
  3092. /package/{dist → types}/crypto/PkceGenerator.d.ts.map +0 -0
  3093. /package/{dist → types}/crypto/SignedHttpRequest.d.ts +0 -0
  3094. /package/{dist → types}/crypto/SignedHttpRequest.d.ts.map +0 -0
  3095. /package/{dist/custom-auth-path → types}/custom_auth/CustomAuthActionInputs.d.ts +0 -0
  3096. /package/{dist → types}/custom_auth/CustomAuthActionInputs.d.ts.map +0 -0
  3097. /package/{dist → types}/custom_auth/CustomAuthConstants.d.ts.map +0 -0
  3098. /package/{dist/custom-auth-path → types}/custom_auth/CustomAuthPublicClientApplication.d.ts +0 -0
  3099. /package/{dist → types}/custom_auth/CustomAuthPublicClientApplication.d.ts.map +0 -0
  3100. /package/{dist/custom-auth-path → types}/custom_auth/ICustomAuthPublicClientApplication.d.ts +0 -0
  3101. /package/{dist → types}/custom_auth/ICustomAuthPublicClientApplication.d.ts.map +0 -0
  3102. /package/{dist/custom-auth-path → types}/custom_auth/UserAccountAttributes.d.ts +0 -0
  3103. /package/{dist → types}/custom_auth/UserAccountAttributes.d.ts.map +0 -0
  3104. /package/{dist/custom-auth-path → types}/custom_auth/configuration/CustomAuthConfiguration.d.ts +0 -0
  3105. /package/{dist → types}/custom_auth/configuration/CustomAuthConfiguration.d.ts.map +0 -0
  3106. /package/{dist/custom-auth-path → types}/custom_auth/controller/CustomAuthStandardController.d.ts +0 -0
  3107. /package/{dist → types}/custom_auth/controller/CustomAuthStandardController.d.ts.map +0 -0
  3108. /package/{dist/custom-auth-path → types}/custom_auth/controller/ICustomAuthStandardController.d.ts +0 -0
  3109. /package/{dist → types}/custom_auth/controller/ICustomAuthStandardController.d.ts.map +0 -0
  3110. /package/{dist/custom-auth-path → types}/custom_auth/core/CustomAuthAuthority.d.ts +0 -0
  3111. /package/{dist → types}/custom_auth/core/CustomAuthAuthority.d.ts.map +0 -0
  3112. /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts +0 -0
  3113. /package/{dist → types}/custom_auth/core/auth_flow/AuthFlowErrorBase.d.ts.map +0 -0
  3114. /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts +0 -0
  3115. /package/{dist → types}/custom_auth/core/auth_flow/AuthFlowResultBase.d.ts.map +0 -0
  3116. /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/AuthFlowState.d.ts +0 -0
  3117. /package/{dist → types}/custom_auth/core/auth_flow/AuthFlowState.d.ts.map +0 -0
  3118. /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts +0 -0
  3119. /package/{dist → types}/custom_auth/core/auth_flow/AuthFlowStateTypes.d.ts.map +0 -0
  3120. /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts +0 -0
  3121. /package/{dist → types}/custom_auth/core/auth_flow/jit/AuthMethodDetails.d.ts.map +0 -0
  3122. /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts +0 -0
  3123. /package/{dist → types}/custom_auth/core/auth_flow/jit/error_type/AuthMethodRegistrationError.d.ts.map +0 -0
  3124. /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts +0 -0
  3125. /package/{dist → types}/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationChallengeMethodResult.d.ts.map +0 -0
  3126. /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts +0 -0
  3127. /package/{dist → types}/custom_auth/core/auth_flow/jit/result/AuthMethodRegistrationSubmitChallengeResult.d.ts.map +0 -0
  3128. /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts +0 -0
  3129. /package/{dist → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationCompletedState.d.ts.map +0 -0
  3130. /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts +0 -0
  3131. /package/{dist → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationFailedState.d.ts.map +0 -0
  3132. /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts +0 -0
  3133. /package/{dist → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationState.d.ts.map +0 -0
  3134. /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts +0 -0
  3135. /package/{dist → types}/custom_auth/core/auth_flow/jit/state/AuthMethodRegistrationStateParameters.d.ts.map +0 -0
  3136. /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts +0 -0
  3137. /package/{dist → types}/custom_auth/core/auth_flow/mfa/error_type/MfaError.d.ts.map +0 -0
  3138. /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts +0 -0
  3139. /package/{dist → types}/custom_auth/core/auth_flow/mfa/result/MfaRequestChallengeResult.d.ts.map +0 -0
  3140. /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts +0 -0
  3141. /package/{dist → types}/custom_auth/core/auth_flow/mfa/result/MfaSubmitChallengeResult.d.ts.map +0 -0
  3142. /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts +0 -0
  3143. /package/{dist → types}/custom_auth/core/auth_flow/mfa/state/MfaCompletedState.d.ts.map +0 -0
  3144. /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts +0 -0
  3145. /package/{dist → types}/custom_auth/core/auth_flow/mfa/state/MfaFailedState.d.ts.map +0 -0
  3146. /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts +0 -0
  3147. /package/{dist → types}/custom_auth/core/auth_flow/mfa/state/MfaState.d.ts.map +0 -0
  3148. /package/{dist/custom-auth-path → types}/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts +0 -0
  3149. /package/{dist → types}/custom_auth/core/auth_flow/mfa/state/MfaStateParameters.d.ts.map +0 -0
  3150. /package/{dist/custom-auth-path → types}/custom_auth/core/error/CustomAuthApiError.d.ts +0 -0
  3151. /package/{dist → types}/custom_auth/core/error/CustomAuthApiError.d.ts.map +0 -0
  3152. /package/{dist/custom-auth-path → types}/custom_auth/core/error/CustomAuthError.d.ts +0 -0
  3153. /package/{dist → types}/custom_auth/core/error/CustomAuthError.d.ts.map +0 -0
  3154. /package/{dist/custom-auth-path → types}/custom_auth/core/error/HttpError.d.ts +0 -0
  3155. /package/{dist → types}/custom_auth/core/error/HttpError.d.ts.map +0 -0
  3156. /package/{dist/custom-auth-path → types}/custom_auth/core/error/HttpErrorCodes.d.ts +0 -0
  3157. /package/{dist → types}/custom_auth/core/error/HttpErrorCodes.d.ts.map +0 -0
  3158. /package/{dist/custom-auth-path → types}/custom_auth/core/error/InvalidArgumentError.d.ts +0 -0
  3159. /package/{dist → types}/custom_auth/core/error/InvalidArgumentError.d.ts.map +0 -0
  3160. /package/{dist/custom-auth-path → types}/custom_auth/core/error/InvalidConfigurationError.d.ts +0 -0
  3161. /package/{dist → types}/custom_auth/core/error/InvalidConfigurationError.d.ts.map +0 -0
  3162. /package/{dist/custom-auth-path → types}/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts +0 -0
  3163. /package/{dist → types}/custom_auth/core/error/InvalidConfigurationErrorCodes.d.ts.map +0 -0
  3164. /package/{dist/custom-auth-path → types}/custom_auth/core/error/MethodNotImplementedError.d.ts +0 -0
  3165. /package/{dist → types}/custom_auth/core/error/MethodNotImplementedError.d.ts.map +0 -0
  3166. /package/{dist/custom-auth-path → types}/custom_auth/core/error/MsalCustomAuthError.d.ts +0 -0
  3167. /package/{dist → types}/custom_auth/core/error/MsalCustomAuthError.d.ts.map +0 -0
  3168. /package/{dist/custom-auth-path → types}/custom_auth/core/error/NoCachedAccountFoundError.d.ts +0 -0
  3169. /package/{dist → types}/custom_auth/core/error/NoCachedAccountFoundError.d.ts.map +0 -0
  3170. /package/{dist/custom-auth-path → types}/custom_auth/core/error/ParsedUrlError.d.ts +0 -0
  3171. /package/{dist → types}/custom_auth/core/error/ParsedUrlError.d.ts.map +0 -0
  3172. /package/{dist/custom-auth-path → types}/custom_auth/core/error/ParsedUrlErrorCodes.d.ts +0 -0
  3173. /package/{dist → types}/custom_auth/core/error/ParsedUrlErrorCodes.d.ts.map +0 -0
  3174. /package/{dist/custom-auth-path → types}/custom_auth/core/error/UnexpectedError.d.ts +0 -0
  3175. /package/{dist → types}/custom_auth/core/error/UnexpectedError.d.ts.map +0 -0
  3176. /package/{dist/custom-auth-path → types}/custom_auth/core/error/UnsupportedEnvironmentError.d.ts +0 -0
  3177. /package/{dist → types}/custom_auth/core/error/UnsupportedEnvironmentError.d.ts.map +0 -0
  3178. /package/{dist/custom-auth-path → types}/custom_auth/core/error/UserAccountAttributeError.d.ts +0 -0
  3179. /package/{dist → types}/custom_auth/core/error/UserAccountAttributeError.d.ts.map +0 -0
  3180. /package/{dist/custom-auth-path → types}/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts +0 -0
  3181. /package/{dist → types}/custom_auth/core/error/UserAccountAttributeErrorCodes.d.ts.map +0 -0
  3182. /package/{dist/custom-auth-path → types}/custom_auth/core/error/UserAlreadySignedInError.d.ts +0 -0
  3183. /package/{dist → types}/custom_auth/core/error/UserAlreadySignedInError.d.ts.map +0 -0
  3184. /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts +0 -0
  3185. /package/{dist → types}/custom_auth/core/interaction_client/CustomAuthInteractionClientBase.d.ts.map +0 -0
  3186. /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts +0 -0
  3187. /package/{dist → types}/custom_auth/core/interaction_client/CustomAuthInterationClientFactory.d.ts.map +0 -0
  3188. /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/jit/JitClient.d.ts +0 -0
  3189. /package/{dist → types}/custom_auth/core/interaction_client/jit/JitClient.d.ts.map +0 -0
  3190. /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts +0 -0
  3191. /package/{dist → types}/custom_auth/core/interaction_client/jit/parameter/JitParams.d.ts.map +0 -0
  3192. /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts +0 -0
  3193. /package/{dist → types}/custom_auth/core/interaction_client/jit/result/JitActionResult.d.ts.map +0 -0
  3194. /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/mfa/MfaClient.d.ts +0 -0
  3195. /package/{dist → types}/custom_auth/core/interaction_client/mfa/MfaClient.d.ts.map +0 -0
  3196. /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts +0 -0
  3197. /package/{dist → types}/custom_auth/core/interaction_client/mfa/parameter/MfaClientParameters.d.ts.map +0 -0
  3198. /package/{dist/custom-auth-path → types}/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts +0 -0
  3199. /package/{dist → types}/custom_auth/core/interaction_client/mfa/result/MfaActionResult.d.ts.map +0 -0
  3200. /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts +0 -0
  3201. /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/BaseApiClient.d.ts.map +0 -0
  3202. /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts +0 -0
  3203. /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/CustomAuthApiClient.d.ts.map +0 -0
  3204. /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts +0 -0
  3205. /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/CustomAuthApiEndpoint.d.ts.map +0 -0
  3206. /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts +0 -0
  3207. /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/ICustomAuthApiClient.d.ts.map +0 -0
  3208. /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts +0 -0
  3209. /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/RegisterApiClient.d.ts.map +0 -0
  3210. /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts +0 -0
  3211. /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/ResetPasswordApiClient.d.ts.map +0 -0
  3212. /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/SignInApiClient.d.ts +0 -0
  3213. /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts +0 -0
  3214. /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/SignupApiClient.d.ts.map +0 -0
  3215. /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts +0 -0
  3216. /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/types/ApiErrorCodes.d.ts.map +0 -0
  3217. /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts +0 -0
  3218. /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/types/ApiErrorResponseTypes.d.ts.map +0 -0
  3219. /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts +0 -0
  3220. /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/types/ApiRequestTypes.d.ts.map +0 -0
  3221. /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts +0 -0
  3222. /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/types/ApiResponseTypes.d.ts.map +0 -0
  3223. /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts +0 -0
  3224. /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/types/ApiSuberrors.d.ts.map +0 -0
  3225. /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts +0 -0
  3226. /package/{dist → types}/custom_auth/core/network_client/custom_auth_api/types/ApiTypesBase.d.ts.map +0 -0
  3227. /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts +0 -0
  3228. /package/{dist → types}/custom_auth/core/network_client/http_client/FetchHttpClient.d.ts.map +0 -0
  3229. /package/{dist/custom-auth-path → types}/custom_auth/core/network_client/http_client/IHttpClient.d.ts +0 -0
  3230. /package/{dist → types}/custom_auth/core/network_client/http_client/IHttpClient.d.ts.map +0 -0
  3231. /package/{dist/custom-auth-path → types}/custom_auth/core/telemetry/PublicApiId.d.ts +0 -0
  3232. /package/{dist → types}/custom_auth/core/telemetry/PublicApiId.d.ts.map +0 -0
  3233. /package/{dist/custom-auth-path → types}/custom_auth/core/utils/ArgumentValidator.d.ts +0 -0
  3234. /package/{dist → types}/custom_auth/core/utils/ArgumentValidator.d.ts.map +0 -0
  3235. /package/{dist/custom-auth-path → types}/custom_auth/core/utils/UrlUtils.d.ts +0 -0
  3236. /package/{dist → types}/custom_auth/core/utils/UrlUtils.d.ts.map +0 -0
  3237. /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts +0 -0
  3238. /package/{dist → types}/custom_auth/get_account/auth_flow/CustomAuthAccountData.d.ts.map +0 -0
  3239. /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts +0 -0
  3240. /package/{dist → types}/custom_auth/get_account/auth_flow/error_type/GetAccountError.d.ts.map +0 -0
  3241. /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts +0 -0
  3242. /package/{dist → types}/custom_auth/get_account/auth_flow/result/GetAccessTokenResult.d.ts.map +0 -0
  3243. /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts +0 -0
  3244. /package/{dist → types}/custom_auth/get_account/auth_flow/result/GetAccountResult.d.ts.map +0 -0
  3245. /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts +0 -0
  3246. /package/{dist → types}/custom_auth/get_account/auth_flow/result/SignOutResult.d.ts.map +0 -0
  3247. /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts +0 -0
  3248. /package/{dist → types}/custom_auth/get_account/auth_flow/state/GetAccessTokenState.d.ts.map +0 -0
  3249. /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts +0 -0
  3250. /package/{dist → types}/custom_auth/get_account/auth_flow/state/GetAccountState.d.ts.map +0 -0
  3251. /package/{dist/custom-auth-path → types}/custom_auth/get_account/auth_flow/state/SignOutState.d.ts +0 -0
  3252. /package/{dist → types}/custom_auth/get_account/auth_flow/state/SignOutState.d.ts.map +0 -0
  3253. /package/{dist/custom-auth-path → types}/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts +0 -0
  3254. /package/{dist → types}/custom_auth/get_account/interaction_client/CustomAuthSilentCacheClient.d.ts.map +0 -0
  3255. /package/{dist/custom-auth-path → types}/custom_auth/index.d.ts +0 -0
  3256. /package/{dist → types}/custom_auth/index.d.ts.map +0 -0
  3257. /package/{dist/custom-auth-path → types}/custom_auth/operating_context/CustomAuthOperatingContext.d.ts +0 -0
  3258. /package/{dist → types}/custom_auth/operating_context/CustomAuthOperatingContext.d.ts.map +0 -0
  3259. /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts +0 -0
  3260. /package/{dist → types}/custom_auth/reset_password/auth_flow/error_type/ResetPasswordError.d.ts.map +0 -0
  3261. /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts +0 -0
  3262. /package/{dist → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordResendCodeResult.d.ts.map +0 -0
  3263. /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts +0 -0
  3264. /package/{dist → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordStartResult.d.ts.map +0 -0
  3265. /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts +0 -0
  3266. /package/{dist → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitCodeResult.d.ts.map +0 -0
  3267. /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts +0 -0
  3268. /package/{dist → types}/custom_auth/reset_password/auth_flow/result/ResetPasswordSubmitPasswordResult.d.ts.map +0 -0
  3269. /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts +0 -0
  3270. /package/{dist → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordCodeRequiredState.d.ts.map +0 -0
  3271. /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts +0 -0
  3272. /package/{dist → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordCompletedState.d.ts.map +0 -0
  3273. /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts +0 -0
  3274. /package/{dist → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordFailedState.d.ts.map +0 -0
  3275. /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts +0 -0
  3276. /package/{dist → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordPasswordRequiredState.d.ts.map +0 -0
  3277. /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts +0 -0
  3278. /package/{dist → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordState.d.ts.map +0 -0
  3279. /package/{dist/custom-auth-path → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts +0 -0
  3280. /package/{dist → types}/custom_auth/reset_password/auth_flow/state/ResetPasswordStateParameters.d.ts.map +0 -0
  3281. /package/{dist/custom-auth-path → types}/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts +0 -0
  3282. /package/{dist → types}/custom_auth/reset_password/interaction_client/ResetPasswordClient.d.ts.map +0 -0
  3283. /package/{dist/custom-auth-path → types}/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts +0 -0
  3284. /package/{dist → types}/custom_auth/reset_password/interaction_client/parameter/ResetPasswordParams.d.ts.map +0 -0
  3285. /package/{dist/custom-auth-path → types}/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts +0 -0
  3286. /package/{dist → types}/custom_auth/reset_password/interaction_client/result/ResetPasswordActionResult.d.ts.map +0 -0
  3287. /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/SignInScenario.d.ts +0 -0
  3288. /package/{dist → types}/custom_auth/sign_in/auth_flow/SignInScenario.d.ts.map +0 -0
  3289. /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts +0 -0
  3290. /package/{dist → types}/custom_auth/sign_in/auth_flow/error_type/SignInError.d.ts.map +0 -0
  3291. /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts +0 -0
  3292. /package/{dist → types}/custom_auth/sign_in/auth_flow/result/SignInResendCodeResult.d.ts.map +0 -0
  3293. /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts +0 -0
  3294. /package/{dist → types}/custom_auth/sign_in/auth_flow/result/SignInResult.d.ts.map +0 -0
  3295. /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts +0 -0
  3296. /package/{dist → types}/custom_auth/sign_in/auth_flow/result/SignInSubmitCodeResult.d.ts.map +0 -0
  3297. /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts +0 -0
  3298. /package/{dist → types}/custom_auth/sign_in/auth_flow/result/SignInSubmitPasswordResult.d.ts.map +0 -0
  3299. /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts +0 -0
  3300. /package/{dist → types}/custom_auth/sign_in/auth_flow/state/SignInCodeRequiredState.d.ts.map +0 -0
  3301. /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts +0 -0
  3302. /package/{dist → types}/custom_auth/sign_in/auth_flow/state/SignInCompletedState.d.ts.map +0 -0
  3303. /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts +0 -0
  3304. /package/{dist → types}/custom_auth/sign_in/auth_flow/state/SignInContinuationState.d.ts.map +0 -0
  3305. /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts +0 -0
  3306. /package/{dist → types}/custom_auth/sign_in/auth_flow/state/SignInFailedState.d.ts.map +0 -0
  3307. /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts +0 -0
  3308. /package/{dist → types}/custom_auth/sign_in/auth_flow/state/SignInPasswordRequiredState.d.ts.map +0 -0
  3309. /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/state/SignInState.d.ts +0 -0
  3310. /package/{dist → types}/custom_auth/sign_in/auth_flow/state/SignInState.d.ts.map +0 -0
  3311. /package/{dist/custom-auth-path → types}/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts +0 -0
  3312. /package/{dist → types}/custom_auth/sign_in/auth_flow/state/SignInStateParameters.d.ts.map +0 -0
  3313. /package/{dist/custom-auth-path → types}/custom_auth/sign_in/interaction_client/SignInClient.d.ts +0 -0
  3314. /package/{dist → types}/custom_auth/sign_in/interaction_client/SignInClient.d.ts.map +0 -0
  3315. /package/{dist/custom-auth-path → types}/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts +0 -0
  3316. /package/{dist → types}/custom_auth/sign_in/interaction_client/parameter/SignInParams.d.ts.map +0 -0
  3317. /package/{dist/custom-auth-path → types}/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts +0 -0
  3318. /package/{dist → types}/custom_auth/sign_in/interaction_client/result/SignInActionResult.d.ts.map +0 -0
  3319. /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts +0 -0
  3320. /package/{dist → types}/custom_auth/sign_up/auth_flow/error_type/SignUpError.d.ts.map +0 -0
  3321. /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts +0 -0
  3322. /package/{dist → types}/custom_auth/sign_up/auth_flow/result/SignUpResendCodeResult.d.ts.map +0 -0
  3323. /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts +0 -0
  3324. /package/{dist → types}/custom_auth/sign_up/auth_flow/result/SignUpResult.d.ts.map +0 -0
  3325. /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts +0 -0
  3326. /package/{dist → types}/custom_auth/sign_up/auth_flow/result/SignUpSubmitAttributesResult.d.ts.map +0 -0
  3327. /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts +0 -0
  3328. /package/{dist → types}/custom_auth/sign_up/auth_flow/result/SignUpSubmitCodeResult.d.ts.map +0 -0
  3329. /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts +0 -0
  3330. /package/{dist → types}/custom_auth/sign_up/auth_flow/result/SignUpSubmitPasswordResult.d.ts.map +0 -0
  3331. /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts +0 -0
  3332. /package/{dist → types}/custom_auth/sign_up/auth_flow/state/SignUpAttributesRequiredState.d.ts.map +0 -0
  3333. /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts +0 -0
  3334. /package/{dist → types}/custom_auth/sign_up/auth_flow/state/SignUpCodeRequiredState.d.ts.map +0 -0
  3335. /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts +0 -0
  3336. /package/{dist → types}/custom_auth/sign_up/auth_flow/state/SignUpCompletedState.d.ts.map +0 -0
  3337. /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts +0 -0
  3338. /package/{dist → types}/custom_auth/sign_up/auth_flow/state/SignUpFailedState.d.ts.map +0 -0
  3339. /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts +0 -0
  3340. /package/{dist → types}/custom_auth/sign_up/auth_flow/state/SignUpPasswordRequiredState.d.ts.map +0 -0
  3341. /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts +0 -0
  3342. /package/{dist → types}/custom_auth/sign_up/auth_flow/state/SignUpState.d.ts.map +0 -0
  3343. /package/{dist/custom-auth-path → types}/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts +0 -0
  3344. /package/{dist → types}/custom_auth/sign_up/auth_flow/state/SignUpStateParameters.d.ts.map +0 -0
  3345. /package/{dist/custom-auth-path → types}/custom_auth/sign_up/interaction_client/SignUpClient.d.ts +0 -0
  3346. /package/{dist → types}/custom_auth/sign_up/interaction_client/SignUpClient.d.ts.map +0 -0
  3347. /package/{dist/custom-auth-path → types}/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts +0 -0
  3348. /package/{dist → types}/custom_auth/sign_up/interaction_client/parameter/SignUpParams.d.ts.map +0 -0
  3349. /package/{dist/custom-auth-path → types}/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts +0 -0
  3350. /package/{dist → types}/custom_auth/sign_up/interaction_client/result/SignUpActionResult.d.ts.map +0 -0
  3351. /package/{dist/custom-auth-path → types}/encode/Base64Decode.d.ts +0 -0
  3352. /package/{dist → types}/encode/Base64Decode.d.ts.map +0 -0
  3353. /package/{dist/custom-auth-path → types}/encode/Base64Encode.d.ts +0 -0
  3354. /package/{dist → types}/encode/Base64Encode.d.ts.map +0 -0
  3355. /package/{dist/custom-auth-path → types}/error/BrowserAuthError.d.ts +0 -0
  3356. /package/{dist → types}/error/BrowserAuthError.d.ts.map +0 -0
  3357. /package/{dist/custom-auth-path → types}/error/BrowserAuthErrorCodes.d.ts +0 -0
  3358. /package/{dist → types}/error/BrowserAuthErrorCodes.d.ts.map +0 -0
  3359. /package/{dist/custom-auth-path → types}/error/BrowserConfigurationAuthError.d.ts +0 -0
  3360. /package/{dist → types}/error/BrowserConfigurationAuthError.d.ts.map +0 -0
  3361. /package/{dist/custom-auth-path → types}/error/BrowserConfigurationAuthErrorCodes.d.ts +0 -0
  3362. /package/{dist → types}/error/BrowserConfigurationAuthErrorCodes.d.ts.map +0 -0
  3363. /package/{dist/custom-auth-path → types}/error/NativeAuthError.d.ts +0 -0
  3364. /package/{dist → types}/error/NativeAuthError.d.ts.map +0 -0
  3365. /package/{dist/custom-auth-path → types}/error/NativeAuthErrorCodes.d.ts +0 -0
  3366. /package/{dist → types}/error/NativeAuthErrorCodes.d.ts.map +0 -0
  3367. /package/{dist/custom-auth-path → types}/error/NestedAppAuthError.d.ts +0 -0
  3368. /package/{dist → types}/error/NestedAppAuthError.d.ts.map +0 -0
  3369. /package/{dist/custom-auth-path → types}/event/EventHandler.d.ts +0 -0
  3370. /package/{dist → types}/event/EventHandler.d.ts.map +0 -0
  3371. /package/{dist/custom-auth-path → types}/event/EventMessage.d.ts +0 -0
  3372. /package/{dist → types}/event/EventMessage.d.ts.map +0 -0
  3373. /package/{dist/custom-auth-path → types}/event/EventType.d.ts +0 -0
  3374. /package/{dist → types}/event/EventType.d.ts.map +0 -0
  3375. /package/{dist/custom-auth-path → types}/index.d.ts +0 -0
  3376. /package/{dist → types}/index.d.ts.map +0 -0
  3377. /package/{dist/custom-auth-path → types}/interaction_client/BaseInteractionClient.d.ts +0 -0
  3378. /package/{dist → types}/interaction_client/BaseInteractionClient.d.ts.map +0 -0
  3379. /package/{dist/custom-auth-path → types}/interaction_client/HybridSpaAuthorizationCodeClient.d.ts +0 -0
  3380. /package/{dist → types}/interaction_client/HybridSpaAuthorizationCodeClient.d.ts.map +0 -0
  3381. /package/{dist/custom-auth-path → types}/interaction_client/PlatformAuthInteractionClient.d.ts +0 -0
  3382. /package/{dist → types}/interaction_client/PlatformAuthInteractionClient.d.ts.map +0 -0
  3383. /package/{dist/custom-auth-path → types}/interaction_client/PopupClient.d.ts +0 -0
  3384. /package/{dist → types}/interaction_client/PopupClient.d.ts.map +0 -0
  3385. /package/{dist/custom-auth-path → types}/interaction_client/RedirectClient.d.ts +0 -0
  3386. /package/{dist → types}/interaction_client/RedirectClient.d.ts.map +0 -0
  3387. /package/{dist/custom-auth-path → types}/interaction_client/SilentAuthCodeClient.d.ts +0 -0
  3388. /package/{dist → types}/interaction_client/SilentAuthCodeClient.d.ts.map +0 -0
  3389. /package/{dist/custom-auth-path → types}/interaction_client/SilentCacheClient.d.ts +0 -0
  3390. /package/{dist → types}/interaction_client/SilentCacheClient.d.ts.map +0 -0
  3391. /package/{dist/custom-auth-path → types}/interaction_client/SilentIframeClient.d.ts +0 -0
  3392. /package/{dist → types}/interaction_client/SilentIframeClient.d.ts.map +0 -0
  3393. /package/{dist/custom-auth-path → types}/interaction_client/SilentRefreshClient.d.ts +0 -0
  3394. /package/{dist → types}/interaction_client/SilentRefreshClient.d.ts.map +0 -0
  3395. /package/{dist/custom-auth-path → types}/interaction_client/StandardInteractionClient.d.ts +0 -0
  3396. /package/{dist → types}/interaction_client/StandardInteractionClient.d.ts.map +0 -0
  3397. /package/{dist/custom-auth-path → types}/interaction_handler/InteractionHandler.d.ts +0 -0
  3398. /package/{dist → types}/interaction_handler/InteractionHandler.d.ts.map +0 -0
  3399. /package/{dist/custom-auth-path → types}/interaction_handler/SilentHandler.d.ts +0 -0
  3400. /package/{dist → types}/interaction_handler/SilentHandler.d.ts.map +0 -0
  3401. /package/{dist/custom-auth-path → types}/naa/AccountInfo.d.ts +0 -0
  3402. /package/{dist → types}/naa/AccountInfo.d.ts.map +0 -0
  3403. /package/{dist/custom-auth-path → types}/naa/AuthBridge.d.ts +0 -0
  3404. /package/{dist → types}/naa/AuthBridge.d.ts.map +0 -0
  3405. /package/{dist/custom-auth-path → types}/naa/AuthResult.d.ts +0 -0
  3406. /package/{dist → types}/naa/AuthResult.d.ts.map +0 -0
  3407. /package/{dist/custom-auth-path → types}/naa/BridgeAccountContext.d.ts +0 -0
  3408. /package/{dist → types}/naa/BridgeAccountContext.d.ts.map +0 -0
  3409. /package/{dist/custom-auth-path → types}/naa/BridgeCapabilities.d.ts +0 -0
  3410. /package/{dist → types}/naa/BridgeCapabilities.d.ts.map +0 -0
  3411. /package/{dist/custom-auth-path → types}/naa/BridgeError.d.ts +0 -0
  3412. /package/{dist → types}/naa/BridgeError.d.ts.map +0 -0
  3413. /package/{dist/custom-auth-path → types}/naa/BridgeProxy.d.ts +0 -0
  3414. /package/{dist → types}/naa/BridgeProxy.d.ts.map +0 -0
  3415. /package/{dist/custom-auth-path → types}/naa/BridgeRequest.d.ts +0 -0
  3416. /package/{dist → types}/naa/BridgeRequest.d.ts.map +0 -0
  3417. /package/{dist/custom-auth-path → types}/naa/BridgeRequestEnvelope.d.ts +0 -0
  3418. /package/{dist → types}/naa/BridgeRequestEnvelope.d.ts.map +0 -0
  3419. /package/{dist/custom-auth-path → types}/naa/BridgeResponseEnvelope.d.ts +0 -0
  3420. /package/{dist → types}/naa/BridgeResponseEnvelope.d.ts.map +0 -0
  3421. /package/{dist/custom-auth-path → types}/naa/BridgeStatusCode.d.ts +0 -0
  3422. /package/{dist → types}/naa/BridgeStatusCode.d.ts.map +0 -0
  3423. /package/{dist/custom-auth-path → types}/naa/IBridgeProxy.d.ts +0 -0
  3424. /package/{dist → types}/naa/IBridgeProxy.d.ts.map +0 -0
  3425. /package/{dist/custom-auth-path → types}/naa/InitContext.d.ts +0 -0
  3426. /package/{dist → types}/naa/InitContext.d.ts.map +0 -0
  3427. /package/{dist/custom-auth-path → types}/naa/TokenRequest.d.ts +0 -0
  3428. /package/{dist → types}/naa/TokenRequest.d.ts.map +0 -0
  3429. /package/{dist/custom-auth-path → types}/naa/TokenResponse.d.ts +0 -0
  3430. /package/{dist → types}/naa/TokenResponse.d.ts.map +0 -0
  3431. /package/{dist/custom-auth-path → types}/naa/mapping/NestedAppAuthAdapter.d.ts +0 -0
  3432. /package/{dist → types}/naa/mapping/NestedAppAuthAdapter.d.ts.map +0 -0
  3433. /package/{dist/custom-auth-path → types}/navigation/INavigationClient.d.ts +0 -0
  3434. /package/{dist → types}/navigation/INavigationClient.d.ts.map +0 -0
  3435. /package/{dist/custom-auth-path → types}/navigation/NavigationClient.d.ts +0 -0
  3436. /package/{dist → types}/navigation/NavigationClient.d.ts.map +0 -0
  3437. /package/{dist/custom-auth-path → types}/navigation/NavigationOptions.d.ts +0 -0
  3438. /package/{dist → types}/navigation/NavigationOptions.d.ts.map +0 -0
  3439. /package/{dist/custom-auth-path → types}/network/FetchClient.d.ts +0 -0
  3440. /package/{dist → types}/network/FetchClient.d.ts.map +0 -0
  3441. /package/{dist/custom-auth-path → types}/operatingcontext/BaseOperatingContext.d.ts +0 -0
  3442. /package/{dist → types}/operatingcontext/BaseOperatingContext.d.ts.map +0 -0
  3443. /package/{dist/custom-auth-path → types}/operatingcontext/NestedAppOperatingContext.d.ts +0 -0
  3444. /package/{dist → types}/operatingcontext/NestedAppOperatingContext.d.ts.map +0 -0
  3445. /package/{dist/custom-auth-path → types}/operatingcontext/StandardOperatingContext.d.ts +0 -0
  3446. /package/{dist → types}/operatingcontext/StandardOperatingContext.d.ts.map +0 -0
  3447. /package/{dist/custom-auth-path → types}/operatingcontext/UnknownOperatingContext.d.ts +0 -0
  3448. /package/{dist → types}/operatingcontext/UnknownOperatingContext.d.ts.map +0 -0
  3449. /package/{dist/custom-auth-path → types}/protocol/Authorize.d.ts +0 -0
  3450. /package/{dist → types}/protocol/Authorize.d.ts.map +0 -0
  3451. /package/{dist/custom-auth-path → types}/redirect_bridge/index.d.ts +0 -0
  3452. /package/{dist → types}/redirect_bridge/index.d.ts.map +0 -0
  3453. /package/{dist/custom-auth-path → types}/request/AuthorizationCodeRequest.d.ts +0 -0
  3454. /package/{dist → types}/request/AuthorizationCodeRequest.d.ts.map +0 -0
  3455. /package/{dist/custom-auth-path → types}/request/ClearCacheRequest.d.ts +0 -0
  3456. /package/{dist → types}/request/ClearCacheRequest.d.ts.map +0 -0
  3457. /package/{dist/custom-auth-path → types}/request/EndSessionPopupRequest.d.ts +0 -0
  3458. /package/{dist → types}/request/EndSessionPopupRequest.d.ts.map +0 -0
  3459. /package/{dist/custom-auth-path → types}/request/EndSessionRequest.d.ts +0 -0
  3460. /package/{dist → types}/request/EndSessionRequest.d.ts.map +0 -0
  3461. /package/{dist/custom-auth-path → types}/request/HandleRedirectPromiseOptions.d.ts +0 -0
  3462. /package/{dist → types}/request/HandleRedirectPromiseOptions.d.ts.map +0 -0
  3463. /package/{dist/custom-auth-path → types}/request/InitializeApplicationRequest.d.ts +0 -0
  3464. /package/{dist → types}/request/InitializeApplicationRequest.d.ts.map +0 -0
  3465. /package/{dist/custom-auth-path → types}/request/PopupRequest.d.ts +0 -0
  3466. /package/{dist → types}/request/PopupRequest.d.ts.map +0 -0
  3467. /package/{dist/custom-auth-path → types}/request/PopupWindowAttributes.d.ts +0 -0
  3468. /package/{dist → types}/request/PopupWindowAttributes.d.ts.map +0 -0
  3469. /package/{dist/custom-auth-path → types}/request/RedirectRequest.d.ts +0 -0
  3470. /package/{dist → types}/request/RedirectRequest.d.ts.map +0 -0
  3471. /package/{dist/custom-auth-path → types}/request/RequestHelpers.d.ts +0 -0
  3472. /package/{dist → types}/request/RequestHelpers.d.ts.map +0 -0
  3473. /package/{dist/custom-auth-path → types}/request/SilentRequest.d.ts +0 -0
  3474. /package/{dist → types}/request/SilentRequest.d.ts.map +0 -0
  3475. /package/{dist/custom-auth-path → types}/request/SsoSilentRequest.d.ts +0 -0
  3476. /package/{dist → types}/request/SsoSilentRequest.d.ts.map +0 -0
  3477. /package/{dist/custom-auth-path → types}/response/AuthenticationResult.d.ts +0 -0
  3478. /package/{dist → types}/response/AuthenticationResult.d.ts.map +0 -0
  3479. /package/{dist/custom-auth-path → types}/response/ResponseHandler.d.ts +0 -0
  3480. /package/{dist → types}/response/ResponseHandler.d.ts.map +0 -0
  3481. /package/{dist/custom-auth-path → types}/telemetry/BrowserPerformanceClient.d.ts +0 -0
  3482. /package/{dist → types}/telemetry/BrowserPerformanceClient.d.ts.map +0 -0
  3483. /package/{dist/custom-auth-path → types}/telemetry/BrowserPerformanceEvents.d.ts +0 -0
  3484. /package/{dist → types}/telemetry/BrowserPerformanceEvents.d.ts.map +0 -0
  3485. /package/{dist/custom-auth-path → types}/telemetry/BrowserPerformanceMeasurement.d.ts +0 -0
  3486. /package/{dist → types}/telemetry/BrowserPerformanceMeasurement.d.ts.map +0 -0
  3487. /package/{dist/custom-auth-path → types}/telemetry/BrowserRootPerformanceEvents.d.ts +0 -0
  3488. /package/{dist → types}/telemetry/BrowserRootPerformanceEvents.d.ts.map +0 -0
  3489. /package/{dist/custom-auth-path → types}/utils/BrowserConstants.d.ts +0 -0
  3490. /package/{dist → types}/utils/BrowserConstants.d.ts.map +0 -0
  3491. /package/{dist/custom-auth-path → types}/utils/BrowserProtocolUtils.d.ts +0 -0
  3492. /package/{dist → types}/utils/BrowserProtocolUtils.d.ts.map +0 -0
  3493. /package/{dist/custom-auth-path → types}/utils/BrowserUtils.d.ts +0 -0
  3494. /package/{dist → types}/utils/BrowserUtils.d.ts.map +0 -0
  3495. /package/{dist/custom-auth-path → types}/utils/Helpers.d.ts +0 -0
  3496. /package/{dist → types}/utils/Helpers.d.ts.map +0 -0
  3497. /package/{dist/custom-auth-path → types}/utils/MsalFrameStatsUtils.d.ts +0 -0
  3498. /package/{dist → types}/utils/MsalFrameStatsUtils.d.ts.map +0 -0
@@ -1,8 +1,8 @@
1
- /*! @azure/msal-browser v5.8.0 2026-04-21 */
1
+ /*! @azure/msal-browser v5.10.0 2026-05-07 */
2
2
  'use strict';
3
3
  'use strict';
4
4
 
5
- /*! @azure/msal-common v16.5.1 2026-04-21 */
5
+ /*! @azure/msal-common v16.6.0 2026-05-07 */
6
6
  // Resource delimiter - used for certain cache entries
7
7
  const RESOURCE_DELIM = "|";
8
8
  const FORWARD_SLASH = "/";
@@ -13,7 +13,7 @@ const AADAuthority = {
13
13
  COMMON: "common",
14
14
  ORGANIZATIONS: "organizations"};
15
15
 
16
- /*! @azure/msal-common v16.5.1 2026-04-21 */
16
+ /*! @azure/msal-common v16.6.0 2026-05-07 */
17
17
  /*
18
18
  * Copyright (c) Microsoft Corporation. All rights reserved.
19
19
  * Licensed under the MIT License.
@@ -41,7 +41,7 @@ class AuthError extends Error {
41
41
  }
42
42
  }
43
43
 
44
- /*! @azure/msal-common v16.5.1 2026-04-21 */
44
+ /*! @azure/msal-common v16.6.0 2026-05-07 */
45
45
 
46
46
  /*
47
47
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -61,7 +61,7 @@ function createClientConfigurationError(errorCode) {
61
61
  return new ClientConfigurationError(errorCode);
62
62
  }
63
63
 
64
- /*! @azure/msal-common v16.5.1 2026-04-21 */
64
+ /*! @azure/msal-common v16.6.0 2026-05-07 */
65
65
  /*
66
66
  * Copyright (c) Microsoft Corporation. All rights reserved.
67
67
  * Licensed under the MIT License.
@@ -141,7 +141,7 @@ class StringUtils {
141
141
  }
142
142
  }
143
143
 
144
- /*! @azure/msal-common v16.5.1 2026-04-21 */
144
+ /*! @azure/msal-common v16.6.0 2026-05-07 */
145
145
 
146
146
  /*
147
147
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -164,16 +164,16 @@ function createClientAuthError(errorCode, additionalMessage) {
164
164
  return new ClientAuthError(errorCode, additionalMessage);
165
165
  }
166
166
 
167
- /*! @azure/msal-common v16.5.1 2026-04-21 */
167
+ /*! @azure/msal-common v16.6.0 2026-05-07 */
168
168
  const authorityUriInsecure = "authority_uri_insecure";
169
169
  const urlParseError = "url_parse_error";
170
170
  const urlEmptyError = "empty_url_error";
171
171
 
172
- /*! @azure/msal-common v16.5.1 2026-04-21 */
172
+ /*! @azure/msal-common v16.6.0 2026-05-07 */
173
173
  const invalidState = "invalid_state";
174
174
  const noCryptoObject = "no_crypto_object";
175
175
 
176
- /*! @azure/msal-common v16.5.1 2026-04-21 */
176
+ /*! @azure/msal-common v16.6.0 2026-05-07 */
177
177
 
178
178
  /*
179
179
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -330,7 +330,7 @@ class UrlString {
330
330
  }
331
331
  }
332
332
 
333
- /*! @azure/msal-common v16.5.1 2026-04-21 */
333
+ /*! @azure/msal-common v16.6.0 2026-05-07 */
334
334
  /**
335
335
  * Parses the state into the RequestStateObject, which contains the LibraryState info and the state passed by the user.
336
336
  * @param base64Decode
@@ -1 +1 @@
1
- {"version":3,"file":"msal-redirect-bridge.cjs","sources":["../../../msal-common/dist-browser/utils/Constants.mjs","../../../msal-common/dist-browser/error/AuthError.mjs","../../../msal-common/dist-browser/error/ClientConfigurationError.mjs","../../../msal-common/dist-browser/utils/StringUtils.mjs","../../../msal-common/dist-browser/error/ClientAuthError.mjs","../../../msal-common/dist-browser/error/ClientConfigurationErrorCodes.mjs","../../../msal-common/dist-browser/error/ClientAuthErrorCodes.mjs","../../../msal-common/dist-browser/url/UrlString.mjs","../../../msal-common/dist-browser/utils/ProtocolUtils.mjs","../../../../src/error/BrowserAuthErrorCodes.ts","../../../../src/error/BrowserAuthError.ts","../../../../src/utils/BrowserConstants.ts","../../../../src/encode/Base64Decode.ts","../../../../src/utils/BrowserUtils.ts","../../../../src/navigation/NavigationClient.ts","../../../../src/config/Configuration.ts","../../../../src/cache/CacheKeys.ts","../../../../src/redirect_bridge/index.ts"],"sourcesContent":["/*! @azure/msal-common v16.5.1 2026-04-21 */\n'use strict';\n/*\r\n * Copyright (c) Microsoft Corporation. All rights reserved.\r\n * Licensed under the MIT License.\r\n */\r\nconst SKU = \"msal.js.common\";\r\n// default authority\r\nconst DEFAULT_AUTHORITY = \"https://login.microsoftonline.com/common/\";\r\nconst DEFAULT_AUTHORITY_HOST = \"login.microsoftonline.com\";\r\nconst DEFAULT_COMMON_TENANT = \"common\";\r\n// ADFS String\r\nconst ADFS = \"adfs\";\r\nconst DSTS = \"dstsv2\";\r\n// Default AAD Instance Discovery Endpoint\r\nconst AAD_INSTANCE_DISCOVERY_ENDPT = `${DEFAULT_AUTHORITY}discovery/instance?api-version=1.1&authorization_endpoint=`;\r\n// CIAM URL\r\nconst CIAM_AUTH_URL = \".ciamlogin.com\";\r\nconst AAD_TENANT_DOMAIN_SUFFIX = \".onmicrosoft.com\";\r\n// Resource delimiter - used for certain cache entries\r\nconst RESOURCE_DELIM = \"|\";\r\n// Consumer UTID\r\nconst CONSUMER_UTID = \"9188040d-6c67-4c5b-b112-36a304b66dad\";\r\n// Default scopes\r\nconst OPENID_SCOPE = \"openid\";\r\nconst PROFILE_SCOPE = \"profile\";\r\nconst OFFLINE_ACCESS_SCOPE = \"offline_access\";\r\nconst EMAIL_SCOPE = \"email\";\r\nconst CODE_GRANT_TYPE = \"authorization_code\";\r\nconst S256_CODE_CHALLENGE_METHOD = \"S256\";\r\nconst URL_FORM_CONTENT_TYPE = \"application/x-www-form-urlencoded;charset=utf-8\";\r\nconst AUTHORIZATION_PENDING = \"authorization_pending\";\r\nconst NOT_APPLICABLE = \"N/A\";\r\nconst NOT_AVAILABLE = \"Not Available\";\r\nconst FORWARD_SLASH = \"/\";\r\nconst IMDS_ENDPOINT = \"http://169.254.169.254/metadata/instance/compute/location\";\r\nconst IMDS_VERSION = \"2020-06-01\";\r\nconst IMDS_TIMEOUT = 2000;\r\nconst AZURE_REGION_AUTO_DISCOVER_FLAG = \"TryAutoDetect\";\r\nconst REGIONAL_AUTH_PUBLIC_CLOUD_SUFFIX = \"login.microsoft.com\";\r\nconst KNOWN_PUBLIC_CLOUDS = [\r\n \"login.microsoftonline.com\",\r\n \"login.windows.net\",\r\n \"login.microsoft.com\",\r\n \"sts.windows.net\",\r\n];\r\nconst SHR_NONCE_VALIDITY = 240;\r\nconst INVALID_INSTANCE = \"invalid_instance\";\r\nconst HTTP_SUCCESS = 200;\r\nconst HTTP_SUCCESS_RANGE_START = 200;\r\nconst HTTP_SUCCESS_RANGE_END = 299;\r\nconst HTTP_REDIRECT = 302;\r\nconst HTTP_CLIENT_ERROR = 400;\r\nconst HTTP_CLIENT_ERROR_RANGE_START = 400;\r\nconst HTTP_BAD_REQUEST = 400;\r\nconst HTTP_UNAUTHORIZED = 401;\r\nconst HTTP_NOT_FOUND = 404;\r\nconst HTTP_REQUEST_TIMEOUT = 408;\r\nconst HTTP_GONE = 410;\r\nconst HTTP_TOO_MANY_REQUESTS = 429;\r\nconst HTTP_CLIENT_ERROR_RANGE_END = 499;\r\nconst HTTP_SERVER_ERROR = 500;\r\nconst HTTP_SERVER_ERROR_RANGE_START = 500;\r\nconst HTTP_SERVICE_UNAVAILABLE = 503;\r\nconst HTTP_GATEWAY_TIMEOUT = 504;\r\nconst HTTP_SERVER_ERROR_RANGE_END = 599;\r\nconst HTTP_MULTI_SIDED_ERROR = 600;\r\nconst HttpMethod = {\r\n GET: \"GET\",\r\n POST: \"POST\",\r\n};\r\nconst OIDC_DEFAULT_SCOPES = [\r\n OPENID_SCOPE,\r\n PROFILE_SCOPE,\r\n OFFLINE_ACCESS_SCOPE,\r\n];\r\nconst OIDC_SCOPES = [...OIDC_DEFAULT_SCOPES, EMAIL_SCOPE];\r\n/**\r\n * Request header names\r\n */\r\nconst HeaderNames = {\r\n CONTENT_TYPE: \"Content-Type\",\r\n CONTENT_LENGTH: \"Content-Length\",\r\n RETRY_AFTER: \"Retry-After\",\r\n CCS_HEADER: \"X-AnchorMailbox\",\r\n WWWAuthenticate: \"WWW-Authenticate\",\r\n AuthenticationInfo: \"Authentication-Info\",\r\n X_MS_REQUEST_ID: \"x-ms-request-id\",\r\n X_MS_HTTP_VERSION: \"x-ms-httpver\",\r\n};\r\n/**\r\n * Persistent cache keys MSAL which stay while user is logged in.\r\n */\r\nconst PersistentCacheKeys = {\r\n ACTIVE_ACCOUNT_FILTERS: \"active-account-filters\", // new cache entry for active_account for a more robust version for browser\r\n};\r\n/**\r\n * String constants related to AAD Authority\r\n */\r\nconst AADAuthority = {\r\n COMMON: \"common\",\r\n ORGANIZATIONS: \"organizations\",\r\n CONSUMERS: \"consumers\",\r\n};\r\n/**\r\n * Claims request keys\r\n */\r\nconst ClaimsRequestKeys = {\r\n ACCESS_TOKEN: \"access_token\",\r\n XMS_CC: \"xms_cc\",\r\n};\r\n/**\r\n * we considered making this \"enum\" in the request instead of string, however it looks like the allowed list of\r\n * prompt values kept changing over past couple of years. There are some undocumented prompt values for some\r\n * internal partners too, hence the choice of generic \"string\" type instead of the \"enum\"\r\n */\r\nconst PromptValue = {\r\n LOGIN: \"login\",\r\n SELECT_ACCOUNT: \"select_account\",\r\n CONSENT: \"consent\",\r\n NONE: \"none\",\r\n CREATE: \"create\",\r\n NO_SESSION: \"no_session\",\r\n};\r\n/**\r\n * allowed values for codeVerifier\r\n */\r\nconst CodeChallengeMethodValues = {\r\n PLAIN: \"plain\",\r\n S256: \"S256\",\r\n};\r\n/**\r\n * Allowed values for response_type\r\n */\r\nconst OAuthResponseType = {\r\n CODE: \"code\",\r\n IDTOKEN_TOKEN: \"id_token token\",\r\n IDTOKEN_TOKEN_REFRESHTOKEN: \"id_token token refresh_token\",\r\n};\r\n/**\r\n * allowed values for response_mode\r\n */\r\nconst ResponseMode = {\r\n QUERY: \"query\",\r\n FRAGMENT: \"fragment\",\r\n FORM_POST: \"form_post\",\r\n};\r\n/**\r\n * allowed grant_type\r\n */\r\nconst GrantType = {\r\n IMPLICIT_GRANT: \"implicit\",\r\n AUTHORIZATION_CODE_GRANT: \"authorization_code\",\r\n CLIENT_CREDENTIALS_GRANT: \"client_credentials\",\r\n RESOURCE_OWNER_PASSWORD_GRANT: \"password\",\r\n REFRESH_TOKEN_GRANT: \"refresh_token\",\r\n DEVICE_CODE_GRANT: \"device_code\",\r\n JWT_BEARER: \"urn:ietf:params:oauth:grant-type:jwt-bearer\",\r\n};\r\n/**\r\n * Account types in Cache\r\n */\r\nconst CACHE_ACCOUNT_TYPE_MSSTS = \"MSSTS\";\r\nconst CACHE_ACCOUNT_TYPE_ADFS = \"ADFS\";\r\nconst CACHE_ACCOUNT_TYPE_MSAV1 = \"MSA\";\r\nconst CACHE_ACCOUNT_TYPE_GENERIC = \"Generic\";\r\n/**\r\n * Separators used in cache\r\n */\r\nconst CACHE_KEY_SEPARATOR = \"-\";\r\nconst CLIENT_INFO_SEPARATOR = \".\";\r\n/**\r\n * Credential Type stored in the cache\r\n */\r\nconst CredentialType = {\r\n ID_TOKEN: \"IdToken\",\r\n ACCESS_TOKEN: \"AccessToken\",\r\n ACCESS_TOKEN_WITH_AUTH_SCHEME: \"AccessToken_With_AuthScheme\",\r\n REFRESH_TOKEN: \"RefreshToken\",\r\n};\r\n/**\r\n * Combine all cache types\r\n */\r\nconst CacheType = {\r\n ADFS: 1001,\r\n MSA: 1002,\r\n MSSTS: 1003,\r\n GENERIC: 1004,\r\n ACCESS_TOKEN: 2001,\r\n REFRESH_TOKEN: 2002,\r\n ID_TOKEN: 2003,\r\n APP_METADATA: 3001,\r\n UNDEFINED: 9999,\r\n};\r\n/**\r\n * More Cache related constants\r\n */\r\nconst APP_METADATA = \"appmetadata\";\r\nconst CLIENT_INFO = \"client_info\";\r\nconst THE_FAMILY_ID = \"1\";\r\nconst AUTHORITY_METADATA_CACHE_KEY = \"authority-metadata\";\r\nconst AUTHORITY_METADATA_REFRESH_TIME_SECONDS = 3600 * 24; // 24 Hours\r\nconst AuthorityMetadataSource = {\r\n CONFIG: \"config\",\r\n CACHE: \"cache\",\r\n NETWORK: \"network\",\r\n HARDCODED_VALUES: \"hardcoded_values\",\r\n};\r\nconst SERVER_TELEM_SCHEMA_VERSION = 5;\r\nconst SERVER_TELEM_MAX_CUR_HEADER_BYTES = 80; // ESTS limit is 100B, set to 80 to provide a 20B buffer\r\nconst SERVER_TELEM_MAX_LAST_HEADER_BYTES = 330; // ESTS limit is 350B, set to 330 to provide a 20B buffer,\r\nconst SERVER_TELEM_MAX_CACHED_ERRORS = 50; // Limit the number of errors that can be stored to prevent uncontrolled size gains\r\nconst SERVER_TELEM_CACHE_KEY = \"server-telemetry\";\r\nconst SERVER_TELEM_CATEGORY_SEPARATOR = \"|\";\r\nconst SERVER_TELEM_VALUE_SEPARATOR = \",\";\r\nconst SERVER_TELEM_OVERFLOW_TRUE = \"1\";\r\nconst SERVER_TELEM_OVERFLOW_FALSE = \"0\";\r\nconst SERVER_TELEM_UNKNOWN_ERROR = \"unknown_error\";\r\n/**\r\n * Type of the authentication request\r\n */\r\nconst AuthenticationScheme = {\r\n BEARER: \"Bearer\",\r\n POP: \"pop\",\r\n SSH: \"ssh-cert\",\r\n};\r\n/**\r\n * Constants related to throttling\r\n */\r\nconst DEFAULT_THROTTLE_TIME_SECONDS = 60;\r\n// Default maximum time to throttle in seconds, overrides what the server sends back\r\nconst DEFAULT_MAX_THROTTLE_TIME_SECONDS = 3600;\r\n// Prefix for storing throttling entries\r\nconst THROTTLING_PREFIX = \"throttling\";\r\n// Value assigned to the x-ms-lib-capability header to indicate to the server the library supports throttling\r\nconst X_MS_LIB_CAPABILITY_VALUE = \"retry-after, h429\";\r\n/**\r\n * Errors\r\n */\r\nconst INVALID_GRANT_ERROR = \"invalid_grant\";\r\nconst CLIENT_MISMATCH_ERROR = \"client_mismatch\";\r\n/**\r\n * Password grant parameters\r\n */\r\nconst PasswordGrantConstants = {\r\n username: \"username\",\r\n password: \"password\",\r\n};\r\n/**\r\n * Region Discovery Sources\r\n */\r\nconst RegionDiscoverySources = {\r\n FAILED_AUTO_DETECTION: \"1\",\r\n INTERNAL_CACHE: \"2\",\r\n ENVIRONMENT_VARIABLE: \"3\",\r\n IMDS: \"4\",\r\n};\r\n/**\r\n * Region Discovery Outcomes\r\n */\r\nconst RegionDiscoveryOutcomes = {\r\n CONFIGURED_MATCHES_DETECTED: \"1\",\r\n CONFIGURED_NO_AUTO_DETECTION: \"2\",\r\n CONFIGURED_NOT_DETECTED: \"3\",\r\n AUTO_DETECTION_REQUESTED_SUCCESSFUL: \"4\",\r\n AUTO_DETECTION_REQUESTED_FAILED: \"5\",\r\n};\r\n/**\r\n * Specifies the reason for fetching the access token from the identity provider\r\n */\r\nconst CacheOutcome = {\r\n // When a token is found in the cache or the cache is not supposed to be hit when making the request\r\n NOT_APPLICABLE: \"0\",\r\n // When the token request goes to the identity provider because force_refresh was set to true. Also occurs if claims were requested\r\n FORCE_REFRESH_OR_CLAIMS: \"1\",\r\n // When the token request goes to the identity provider because no cached access token exists\r\n NO_CACHED_ACCESS_TOKEN: \"2\",\r\n // When the token request goes to the identity provider because cached access token expired\r\n CACHED_ACCESS_TOKEN_EXPIRED: \"3\",\r\n // When the token request goes to the identity provider because refresh_in was used and the existing token needs to be refreshed\r\n PROACTIVELY_REFRESHED: \"4\",\r\n};\r\nconst JsonWebTokenTypes = {\r\n Jwt: \"JWT\",\r\n Jwk: \"JWK\",\r\n Pop: \"pop\",\r\n};\r\nconst ONE_DAY_IN_MS = 86400000;\r\n// Token renewal offset default in seconds\r\nconst DEFAULT_TOKEN_RENEWAL_OFFSET_SEC = 300;\r\nconst EncodingTypes = {\r\n BASE64: \"base64\",\r\n HEX: \"hex\",\r\n UTF8: \"utf-8\",\r\n};\n\nexport { AADAuthority, AAD_INSTANCE_DISCOVERY_ENDPT, AAD_TENANT_DOMAIN_SUFFIX, ADFS, APP_METADATA, AUTHORITY_METADATA_CACHE_KEY, AUTHORITY_METADATA_REFRESH_TIME_SECONDS, AUTHORIZATION_PENDING, AZURE_REGION_AUTO_DISCOVER_FLAG, AuthenticationScheme, AuthorityMetadataSource, CACHE_ACCOUNT_TYPE_ADFS, CACHE_ACCOUNT_TYPE_GENERIC, CACHE_ACCOUNT_TYPE_MSAV1, CACHE_ACCOUNT_TYPE_MSSTS, CACHE_KEY_SEPARATOR, CIAM_AUTH_URL, CLIENT_INFO, CLIENT_INFO_SEPARATOR, CLIENT_MISMATCH_ERROR, CODE_GRANT_TYPE, CONSUMER_UTID, CacheOutcome, CacheType, ClaimsRequestKeys, CodeChallengeMethodValues, CredentialType, DEFAULT_AUTHORITY, DEFAULT_AUTHORITY_HOST, DEFAULT_COMMON_TENANT, DEFAULT_MAX_THROTTLE_TIME_SECONDS, DEFAULT_THROTTLE_TIME_SECONDS, DEFAULT_TOKEN_RENEWAL_OFFSET_SEC, DSTS, EMAIL_SCOPE, EncodingTypes, FORWARD_SLASH, GrantType, HTTP_BAD_REQUEST, HTTP_CLIENT_ERROR, HTTP_CLIENT_ERROR_RANGE_END, HTTP_CLIENT_ERROR_RANGE_START, HTTP_GATEWAY_TIMEOUT, HTTP_GONE, HTTP_MULTI_SIDED_ERROR, HTTP_NOT_FOUND, HTTP_REDIRECT, HTTP_REQUEST_TIMEOUT, HTTP_SERVER_ERROR, HTTP_SERVER_ERROR_RANGE_END, HTTP_SERVER_ERROR_RANGE_START, HTTP_SERVICE_UNAVAILABLE, HTTP_SUCCESS, HTTP_SUCCESS_RANGE_END, HTTP_SUCCESS_RANGE_START, HTTP_TOO_MANY_REQUESTS, HTTP_UNAUTHORIZED, HeaderNames, HttpMethod, IMDS_ENDPOINT, IMDS_TIMEOUT, IMDS_VERSION, INVALID_GRANT_ERROR, INVALID_INSTANCE, JsonWebTokenTypes, KNOWN_PUBLIC_CLOUDS, NOT_APPLICABLE, NOT_AVAILABLE, OAuthResponseType, OFFLINE_ACCESS_SCOPE, OIDC_DEFAULT_SCOPES, OIDC_SCOPES, ONE_DAY_IN_MS, OPENID_SCOPE, PROFILE_SCOPE, PasswordGrantConstants, PersistentCacheKeys, PromptValue, REGIONAL_AUTH_PUBLIC_CLOUD_SUFFIX, RESOURCE_DELIM, RegionDiscoveryOutcomes, RegionDiscoverySources, ResponseMode, S256_CODE_CHALLENGE_METHOD, SERVER_TELEM_CACHE_KEY, SERVER_TELEM_CATEGORY_SEPARATOR, SERVER_TELEM_MAX_CACHED_ERRORS, SERVER_TELEM_MAX_CUR_HEADER_BYTES, SERVER_TELEM_MAX_LAST_HEADER_BYTES, SERVER_TELEM_OVERFLOW_FALSE, SERVER_TELEM_OVERFLOW_TRUE, SERVER_TELEM_SCHEMA_VERSION, SERVER_TELEM_UNKNOWN_ERROR, SERVER_TELEM_VALUE_SEPARATOR, SHR_NONCE_VALIDITY, SKU, THE_FAMILY_ID, THROTTLING_PREFIX, URL_FORM_CONTENT_TYPE, X_MS_LIB_CAPABILITY_VALUE };\n//# sourceMappingURL=Constants.mjs.map\n","/*! @azure/msal-common v16.5.1 2026-04-21 */\n'use strict';\n/*\r\n * Copyright (c) Microsoft Corporation. All rights reserved.\r\n * Licensed under the MIT License.\r\n */\r\nfunction getDefaultErrorMessage(code) {\r\n return `See https://aka.ms/msal.js.errors#${code} for details`;\r\n}\r\n/**\r\n * General error class thrown by the MSAL.js library.\r\n */\r\nclass AuthError extends Error {\r\n constructor(errorCode, errorMessage, suberror) {\r\n const message = errorMessage ||\r\n (errorCode ? getDefaultErrorMessage(errorCode) : \"\");\r\n const errorString = message ? `${errorCode}: ${message}` : errorCode;\r\n super(errorString);\r\n Object.setPrototypeOf(this, AuthError.prototype);\r\n this.errorCode = errorCode || \"\";\r\n this.errorMessage = message || \"\";\r\n this.subError = suberror || \"\";\r\n this.name = \"AuthError\";\r\n }\r\n setCorrelationId(correlationId) {\r\n this.correlationId = correlationId;\r\n }\r\n}\r\nfunction createAuthError(code, additionalMessage) {\r\n return new AuthError(code, additionalMessage || getDefaultErrorMessage(code));\r\n}\n\nexport { AuthError, createAuthError, getDefaultErrorMessage };\n//# sourceMappingURL=AuthError.mjs.map\n","/*! @azure/msal-common v16.5.1 2026-04-21 */\n'use strict';\nimport { AuthError } from './AuthError.mjs';\n\n/*\r\n * Copyright (c) Microsoft Corporation. All rights reserved.\r\n * Licensed under the MIT License.\r\n */\r\n/**\r\n * Error thrown when there is an error in configuration of the MSAL.js library.\r\n */\r\nclass ClientConfigurationError extends AuthError {\r\n constructor(errorCode) {\r\n super(errorCode);\r\n this.name = \"ClientConfigurationError\";\r\n Object.setPrototypeOf(this, ClientConfigurationError.prototype);\r\n }\r\n}\r\nfunction createClientConfigurationError(errorCode) {\r\n return new ClientConfigurationError(errorCode);\r\n}\n\nexport { ClientConfigurationError, createClientConfigurationError };\n//# sourceMappingURL=ClientConfigurationError.mjs.map\n","/*! @azure/msal-common v16.5.1 2026-04-21 */\n'use strict';\n/*\r\n * Copyright (c) Microsoft Corporation. All rights reserved.\r\n * Licensed under the MIT License.\r\n */\r\n/**\r\n * @hidden\r\n */\r\nclass StringUtils {\r\n /**\r\n * Check if stringified object is empty\r\n * @param strObj\r\n */\r\n static isEmptyObj(strObj) {\r\n if (strObj) {\r\n try {\r\n const obj = JSON.parse(strObj);\r\n return Object.keys(obj).length === 0;\r\n }\r\n catch (e) { }\r\n }\r\n return true;\r\n }\r\n static startsWith(str, search) {\r\n return str.indexOf(search) === 0;\r\n }\r\n static endsWith(str, search) {\r\n return (str.length >= search.length &&\r\n str.lastIndexOf(search) === str.length - search.length);\r\n }\r\n /**\r\n * Parses string into an object.\r\n *\r\n * @param query\r\n */\r\n static queryStringToObject(query) {\r\n const obj = {};\r\n const params = query.split(\"&\");\r\n const decode = (s) => decodeURIComponent(s.replace(/\\+/g, \" \"));\r\n params.forEach((pair) => {\r\n if (pair.trim()) {\r\n const [key, value] = pair.split(/=(.+)/g, 2); // Split on the first occurence of the '=' character\r\n if (key && value) {\r\n obj[decode(key)] = decode(value);\r\n }\r\n }\r\n });\r\n return obj;\r\n }\r\n /**\r\n * Trims entries in an array.\r\n *\r\n * @param arr\r\n */\r\n static trimArrayEntries(arr) {\r\n return arr.map((entry) => entry.trim());\r\n }\r\n /**\r\n * Removes empty strings from array\r\n * @param arr\r\n */\r\n static removeEmptyStringsFromArray(arr) {\r\n return arr.filter((entry) => {\r\n return !!entry;\r\n });\r\n }\r\n /**\r\n * Attempts to parse a string into JSON\r\n * @param str\r\n */\r\n static jsonParseHelper(str) {\r\n try {\r\n return JSON.parse(str);\r\n }\r\n catch (e) {\r\n return null;\r\n }\r\n }\r\n}\n\nexport { StringUtils };\n//# sourceMappingURL=StringUtils.mjs.map\n","/*! @azure/msal-common v16.5.1 2026-04-21 */\n'use strict';\nimport { AuthError } from './AuthError.mjs';\n\n/*\r\n * Copyright (c) Microsoft Corporation. All rights reserved.\r\n * Licensed under the MIT License.\r\n */\r\n/**\r\n * ClientAuthErrorMessage class containing string constants used by error codes and messages.\r\n */\r\n/**\r\n * Error thrown when there is an error in the client code running on the browser.\r\n */\r\nclass ClientAuthError extends AuthError {\r\n constructor(errorCode, additionalMessage) {\r\n super(errorCode, additionalMessage);\r\n this.name = \"ClientAuthError\";\r\n Object.setPrototypeOf(this, ClientAuthError.prototype);\r\n }\r\n}\r\nfunction createClientAuthError(errorCode, additionalMessage) {\r\n return new ClientAuthError(errorCode, additionalMessage);\r\n}\n\nexport { ClientAuthError, createClientAuthError };\n//# sourceMappingURL=ClientAuthError.mjs.map\n","/*! @azure/msal-common v16.5.1 2026-04-21 */\n'use strict';\n/*\r\n * Copyright (c) Microsoft Corporation. All rights reserved.\r\n * Licensed under the MIT License.\r\n */\r\nconst redirectUriEmpty = \"redirect_uri_empty\";\r\nconst claimsRequestParsingError = \"claims_request_parsing_error\";\r\nconst authorityUriInsecure = \"authority_uri_insecure\";\r\nconst urlParseError = \"url_parse_error\";\r\nconst urlEmptyError = \"empty_url_error\";\r\nconst emptyInputScopesError = \"empty_input_scopes_error\";\r\nconst invalidClaims = \"invalid_claims\";\r\nconst tokenRequestEmpty = \"token_request_empty\";\r\nconst logoutRequestEmpty = \"logout_request_empty\";\r\nconst invalidCodeChallengeMethod = \"invalid_code_challenge_method\";\r\nconst pkceParamsMissing = \"pkce_params_missing\";\r\nconst invalidCloudDiscoveryMetadata = \"invalid_cloud_discovery_metadata\";\r\nconst invalidAuthorityMetadata = \"invalid_authority_metadata\";\r\nconst untrustedAuthority = \"untrusted_authority\";\r\nconst missingSshJwk = \"missing_ssh_jwk\";\r\nconst missingSshKid = \"missing_ssh_kid\";\r\nconst missingNonceAuthenticationHeader = \"missing_nonce_authentication_header\";\r\nconst invalidAuthenticationHeader = \"invalid_authentication_header\";\r\nconst cannotSetOIDCOptions = \"cannot_set_OIDCOptions\";\r\nconst cannotAllowPlatformBroker = \"cannot_allow_platform_broker\";\r\nconst authorityMismatch = \"authority_mismatch\";\r\nconst invalidRequestMethodForEAR = \"invalid_request_method_for_EAR\";\n\nexport { authorityMismatch, authorityUriInsecure, cannotAllowPlatformBroker, cannotSetOIDCOptions, claimsRequestParsingError, emptyInputScopesError, invalidAuthenticationHeader, invalidAuthorityMetadata, invalidClaims, invalidCloudDiscoveryMetadata, invalidCodeChallengeMethod, invalidRequestMethodForEAR, logoutRequestEmpty, missingNonceAuthenticationHeader, missingSshJwk, missingSshKid, pkceParamsMissing, redirectUriEmpty, tokenRequestEmpty, untrustedAuthority, urlEmptyError, urlParseError };\n//# sourceMappingURL=ClientConfigurationErrorCodes.mjs.map\n","/*! @azure/msal-common v16.5.1 2026-04-21 */\n'use strict';\n/*\r\n * Copyright (c) Microsoft Corporation. All rights reserved.\r\n * Licensed under the MIT License.\r\n */\r\nconst clientInfoDecodingError = \"client_info_decoding_error\";\r\nconst clientInfoEmptyError = \"client_info_empty_error\";\r\nconst tokenParsingError = \"token_parsing_error\";\r\nconst nullOrEmptyToken = \"null_or_empty_token\";\r\nconst endpointResolutionError = \"endpoints_resolution_error\";\r\nconst networkError = \"network_error\";\r\nconst openIdConfigError = \"openid_config_error\";\r\nconst hashNotDeserialized = \"hash_not_deserialized\";\r\nconst invalidState = \"invalid_state\";\r\nconst stateMismatch = \"state_mismatch\";\r\nconst stateNotFound = \"state_not_found\";\r\nconst nonceMismatch = \"nonce_mismatch\";\r\nconst authTimeNotFound = \"auth_time_not_found\";\r\nconst maxAgeTranspired = \"max_age_transpired\";\r\nconst multipleMatchingTokens = \"multiple_matching_tokens\";\r\nconst multipleMatchingAppMetadata = \"multiple_matching_appMetadata\";\r\nconst requestCannotBeMade = \"request_cannot_be_made\";\r\nconst cannotRemoveEmptyScope = \"cannot_remove_empty_scope\";\r\nconst cannotAppendScopeSet = \"cannot_append_scopeset\";\r\nconst emptyInputScopeSet = \"empty_input_scopeset\";\r\nconst noAccountInSilentRequest = \"no_account_in_silent_request\";\r\nconst invalidCacheRecord = \"invalid_cache_record\";\r\nconst invalidCacheEnvironment = \"invalid_cache_environment\";\r\nconst noAccountFound = \"no_account_found\";\r\nconst noCryptoObject = \"no_crypto_object\";\r\nconst unexpectedCredentialType = \"unexpected_credential_type\";\r\nconst tokenRefreshRequired = \"token_refresh_required\";\r\nconst tokenClaimsCnfRequiredForSignedJwt = \"token_claims_cnf_required_for_signedjwt\";\r\nconst authorizationCodeMissingFromServerResponse = \"authorization_code_missing_from_server_response\";\r\nconst bindingKeyNotRemoved = \"binding_key_not_removed\";\r\nconst endSessionEndpointNotSupported = \"end_session_endpoint_not_supported\";\r\nconst keyIdMissing = \"key_id_missing\";\r\nconst noNetworkConnectivity = \"no_network_connectivity\";\r\nconst userCanceled = \"user_canceled\";\r\nconst methodNotImplemented = \"method_not_implemented\";\r\nconst nestedAppAuthBridgeDisabled = \"nested_app_auth_bridge_disabled\";\r\nconst platformBrokerError = \"platform_broker_error\";\r\nconst resourceParameterRequired = \"resource_parameter_required\";\r\nconst misplacedResourceParam = \"misplaced_resource_parameter\";\n\nexport { authTimeNotFound, authorizationCodeMissingFromServerResponse, bindingKeyNotRemoved, cannotAppendScopeSet, cannotRemoveEmptyScope, clientInfoDecodingError, clientInfoEmptyError, emptyInputScopeSet, endSessionEndpointNotSupported, endpointResolutionError, hashNotDeserialized, invalidCacheEnvironment, invalidCacheRecord, invalidState, keyIdMissing, maxAgeTranspired, methodNotImplemented, misplacedResourceParam, multipleMatchingAppMetadata, multipleMatchingTokens, nestedAppAuthBridgeDisabled, networkError, noAccountFound, noAccountInSilentRequest, noCryptoObject, noNetworkConnectivity, nonceMismatch, nullOrEmptyToken, openIdConfigError, platformBrokerError, requestCannotBeMade, resourceParameterRequired, stateMismatch, stateNotFound, tokenClaimsCnfRequiredForSignedJwt, tokenParsingError, tokenRefreshRequired, unexpectedCredentialType, userCanceled };\n//# sourceMappingURL=ClientAuthErrorCodes.mjs.map\n","/*! @azure/msal-common v16.5.1 2026-04-21 */\n'use strict';\nimport { createClientConfigurationError } from '../error/ClientConfigurationError.mjs';\nimport { StringUtils } from '../utils/StringUtils.mjs';\nimport { AADAuthority, FORWARD_SLASH } from '../utils/Constants.mjs';\nimport { urlEmptyError, urlParseError, authorityUriInsecure } from '../error/ClientConfigurationErrorCodes.mjs';\n\n/*\r\n * Copyright (c) Microsoft Corporation. All rights reserved.\r\n * Licensed under the MIT License.\r\n */\r\n/**\r\n * Url object class which can perform various transformations on url strings.\r\n */\r\nclass UrlString {\r\n get urlString() {\r\n return this._urlString;\r\n }\r\n constructor(url) {\r\n this._urlString = url;\r\n if (!this._urlString) {\r\n // Throws error if url is empty\r\n throw createClientConfigurationError(urlEmptyError);\r\n }\r\n if (!url.includes(\"#\")) {\r\n this._urlString = UrlString.canonicalizeUri(url);\r\n }\r\n }\r\n /**\r\n * Ensure urls are lower case and end with a / character.\r\n * @param url\r\n */\r\n static canonicalizeUri(url) {\r\n if (url) {\r\n let lowerCaseUrl = url.toLowerCase();\r\n if (StringUtils.endsWith(lowerCaseUrl, \"?\")) {\r\n lowerCaseUrl = lowerCaseUrl.slice(0, -1);\r\n }\r\n else if (StringUtils.endsWith(lowerCaseUrl, \"?/\")) {\r\n lowerCaseUrl = lowerCaseUrl.slice(0, -2);\r\n }\r\n if (!StringUtils.endsWith(lowerCaseUrl, \"/\")) {\r\n lowerCaseUrl += \"/\";\r\n }\r\n return lowerCaseUrl;\r\n }\r\n return url;\r\n }\r\n /**\r\n * Throws if urlString passed is not a valid authority URI string.\r\n */\r\n validateAsUri() {\r\n // Attempts to parse url for uri components\r\n let components;\r\n try {\r\n components = this.getUrlComponents();\r\n }\r\n catch (e) {\r\n throw createClientConfigurationError(urlParseError);\r\n }\r\n // Throw error if URI or path segments are not parseable.\r\n if (!components.HostNameAndPort || !components.PathSegments) {\r\n throw createClientConfigurationError(urlParseError);\r\n }\r\n // Throw error if uri is insecure.\r\n if (!components.Protocol ||\r\n components.Protocol.toLowerCase() !== \"https:\") {\r\n throw createClientConfigurationError(authorityUriInsecure);\r\n }\r\n }\r\n /**\r\n * Given a url and a query string return the url with provided query string appended\r\n * @param url\r\n * @param queryString\r\n */\r\n static appendQueryString(url, queryString) {\r\n if (!queryString) {\r\n return url;\r\n }\r\n return url.indexOf(\"?\") < 0\r\n ? `${url}?${queryString}`\r\n : `${url}&${queryString}`;\r\n }\r\n /**\r\n * Returns a url with the hash removed\r\n * @param url\r\n */\r\n static removeHashFromUrl(url) {\r\n return UrlString.canonicalizeUri(url.split(\"#\")[0]);\r\n }\r\n /**\r\n * Given a url like https://a:b/common/d?e=f#g, and a tenantId, returns https://a:b/tenantId/d\r\n * @param href The url\r\n * @param tenantId The tenant id to replace\r\n */\r\n replaceTenantPath(tenantId) {\r\n const urlObject = this.getUrlComponents();\r\n const pathArray = urlObject.PathSegments;\r\n if (tenantId &&\r\n pathArray.length !== 0 &&\r\n (pathArray[0] === AADAuthority.COMMON ||\r\n pathArray[0] === AADAuthority.ORGANIZATIONS)) {\r\n pathArray[0] = tenantId;\r\n }\r\n return UrlString.constructAuthorityUriFromObject(urlObject);\r\n }\r\n /**\r\n * Parses out the components from a url string.\r\n * @returns An object with the various components. Please cache this value insted of calling this multiple times on the same url.\r\n */\r\n getUrlComponents() {\r\n // https://gist.github.com/curtisz/11139b2cfcaef4a261e0\r\n const regEx = RegExp(\"^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\\\\?([^#]*))?(#(.*))?\");\r\n // If url string does not match regEx, we throw an error\r\n const match = this.urlString.match(regEx);\r\n if (!match) {\r\n throw createClientConfigurationError(urlParseError);\r\n }\r\n // Url component object\r\n const urlComponents = {\r\n Protocol: match[1],\r\n HostNameAndPort: match[4],\r\n AbsolutePath: match[5],\r\n QueryString: match[7],\r\n };\r\n let pathSegments = urlComponents.AbsolutePath.split(\"/\");\r\n pathSegments = pathSegments.filter((val) => val && val.length > 0); // remove empty elements\r\n urlComponents.PathSegments = pathSegments;\r\n if (urlComponents.QueryString &&\r\n urlComponents.QueryString.endsWith(\"/\")) {\r\n urlComponents.QueryString = urlComponents.QueryString.substring(0, urlComponents.QueryString.length - 1);\r\n }\r\n return urlComponents;\r\n }\r\n static getDomainFromUrl(url) {\r\n const regEx = RegExp(\"^([^:/?#]+://)?([^/?#]*)\");\r\n const match = url.match(regEx);\r\n if (!match) {\r\n throw createClientConfigurationError(urlParseError);\r\n }\r\n return match[2];\r\n }\r\n static getAbsoluteUrl(relativeUrl, baseUrl) {\r\n if (relativeUrl[0] === FORWARD_SLASH) {\r\n const url = new UrlString(baseUrl);\r\n const baseComponents = url.getUrlComponents();\r\n return (baseComponents.Protocol +\r\n \"//\" +\r\n baseComponents.HostNameAndPort +\r\n relativeUrl);\r\n }\r\n return relativeUrl;\r\n }\r\n static constructAuthorityUriFromObject(urlObject) {\r\n return new UrlString(urlObject.Protocol +\r\n \"//\" +\r\n urlObject.HostNameAndPort +\r\n \"/\" +\r\n urlObject.PathSegments.join(\"/\"));\r\n }\r\n}\n\nexport { UrlString };\n//# sourceMappingURL=UrlString.mjs.map\n","/*! @azure/msal-common v16.5.1 2026-04-21 */\n'use strict';\nimport { RESOURCE_DELIM } from './Constants.mjs';\nimport { createClientAuthError } from '../error/ClientAuthError.mjs';\nimport { noCryptoObject, invalidState } from '../error/ClientAuthErrorCodes.mjs';\n\n/*\r\n * Copyright (c) Microsoft Corporation. All rights reserved.\r\n * Licensed under the MIT License.\r\n */\r\n/**\r\n * Appends user state with random guid, or returns random guid.\r\n * @param cryptoObj\r\n * @param userState\r\n * @param meta\r\n */\r\nfunction setRequestState(cryptoObj, userState, meta) {\r\n const libraryState = generateLibraryState(cryptoObj, meta);\r\n return userState\r\n ? `${libraryState}${RESOURCE_DELIM}${userState}`\r\n : libraryState;\r\n}\r\n/**\r\n * Generates the state value used by the common library.\r\n * @param cryptoObj\r\n * @param meta\r\n */\r\nfunction generateLibraryState(cryptoObj, meta) {\r\n if (!cryptoObj) {\r\n throw createClientAuthError(noCryptoObject);\r\n }\r\n // Create a state object containing a unique id and the timestamp of the request creation\r\n const stateObj = {\r\n id: cryptoObj.createNewGuid(),\r\n };\r\n if (meta) {\r\n stateObj.meta = meta;\r\n }\r\n const stateString = JSON.stringify(stateObj);\r\n return cryptoObj.base64Encode(stateString);\r\n}\r\n/**\r\n * Parses the state into the RequestStateObject, which contains the LibraryState info and the state passed by the user.\r\n * @param base64Decode\r\n * @param state\r\n */\r\nfunction parseRequestState(base64Decode, state) {\r\n if (!base64Decode) {\r\n throw createClientAuthError(noCryptoObject);\r\n }\r\n if (!state) {\r\n throw createClientAuthError(invalidState);\r\n }\r\n try {\r\n // Split the state between library state and user passed state and decode them separately\r\n const splitState = state.split(RESOURCE_DELIM);\r\n const libraryState = splitState[0];\r\n const userState = splitState.length > 1\r\n ? splitState.slice(1).join(RESOURCE_DELIM)\r\n : \"\";\r\n const libraryStateString = base64Decode(libraryState);\r\n const libraryStateObj = JSON.parse(libraryStateString);\r\n return {\r\n userRequestState: userState || \"\",\r\n libraryState: libraryStateObj,\r\n };\r\n }\r\n catch (e) {\r\n throw createClientAuthError(invalidState);\r\n }\r\n}\n\nexport { generateLibraryState, parseRequestState, setRequestState };\n//# sourceMappingURL=ProtocolUtils.mjs.map\n",null,null,null,null,null,null,null,null,null],"names":["getDefaultErrorMessage","BrowserAuthErrorCodes.invalidBase64String","BrowserAuthErrorCodes.emptyResponse","BrowserAuthErrorCodes.noStateInHash","ProtocolUtils.parseRequestState","BrowserAuthErrorCodes.unableToParseState","BrowserAuthErrorCodes.timedOut","BrowserUtils.getHomepage"],"mappings":"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"}
1
+ {"version":3,"file":"msal-redirect-bridge.cjs","sources":["../../../msal-common/dist-browser/utils/Constants.mjs","../../../msal-common/dist-browser/error/AuthError.mjs","../../../msal-common/dist-browser/error/ClientConfigurationError.mjs","../../../msal-common/dist-browser/utils/StringUtils.mjs","../../../msal-common/dist-browser/error/ClientAuthError.mjs","../../../msal-common/dist-browser/error/ClientConfigurationErrorCodes.mjs","../../../msal-common/dist-browser/error/ClientAuthErrorCodes.mjs","../../../msal-common/dist-browser/url/UrlString.mjs","../../../msal-common/dist-browser/utils/ProtocolUtils.mjs","../../../../src/error/BrowserAuthErrorCodes.ts","../../../../src/error/BrowserAuthError.ts","../../../../src/utils/BrowserConstants.ts","../../../../src/encode/Base64Decode.ts","../../../../src/utils/BrowserUtils.ts","../../../../src/navigation/NavigationClient.ts","../../../../src/config/Configuration.ts","../../../../src/cache/CacheKeys.ts","../../../../src/redirect_bridge/index.ts"],"sourcesContent":["/*! @azure/msal-common v16.6.0 2026-05-07 */\n'use strict';\n/*\r\n * Copyright (c) Microsoft Corporation. All rights reserved.\r\n * Licensed under the MIT License.\r\n */\r\nconst SKU = \"msal.js.common\";\r\n// default authority\r\nconst DEFAULT_AUTHORITY = \"https://login.microsoftonline.com/common/\";\r\nconst DEFAULT_AUTHORITY_HOST = \"login.microsoftonline.com\";\r\nconst DEFAULT_COMMON_TENANT = \"common\";\r\n// ADFS String\r\nconst ADFS = \"adfs\";\r\nconst DSTS = \"dstsv2\";\r\n// Default AAD Instance Discovery Endpoint\r\nconst AAD_INSTANCE_DISCOVERY_ENDPT = `${DEFAULT_AUTHORITY}discovery/instance?api-version=1.1&authorization_endpoint=`;\r\n// CIAM URL\r\nconst CIAM_AUTH_URL = \".ciamlogin.com\";\r\nconst AAD_TENANT_DOMAIN_SUFFIX = \".onmicrosoft.com\";\r\n// Resource delimiter - used for certain cache entries\r\nconst RESOURCE_DELIM = \"|\";\r\n// Consumer UTID\r\nconst CONSUMER_UTID = \"9188040d-6c67-4c5b-b112-36a304b66dad\";\r\n// Default scopes\r\nconst OPENID_SCOPE = \"openid\";\r\nconst PROFILE_SCOPE = \"profile\";\r\nconst OFFLINE_ACCESS_SCOPE = \"offline_access\";\r\nconst EMAIL_SCOPE = \"email\";\r\nconst CODE_GRANT_TYPE = \"authorization_code\";\r\nconst S256_CODE_CHALLENGE_METHOD = \"S256\";\r\nconst URL_FORM_CONTENT_TYPE = \"application/x-www-form-urlencoded;charset=utf-8\";\r\nconst AUTHORIZATION_PENDING = \"authorization_pending\";\r\nconst NOT_APPLICABLE = \"N/A\";\r\nconst NOT_AVAILABLE = \"Not Available\";\r\nconst FORWARD_SLASH = \"/\";\r\nconst IMDS_ENDPOINT = \"http://169.254.169.254/metadata/instance/compute/location\";\r\nconst IMDS_VERSION = \"2020-06-01\";\r\nconst IMDS_TIMEOUT = 2000;\r\nconst AZURE_REGION_AUTO_DISCOVER_FLAG = \"TryAutoDetect\";\r\nconst REGIONAL_AUTH_PUBLIC_CLOUD_SUFFIX = \"login.microsoft.com\";\r\nconst KNOWN_PUBLIC_CLOUDS = [\r\n \"login.microsoftonline.com\",\r\n \"login.windows.net\",\r\n \"login.microsoft.com\",\r\n \"sts.windows.net\",\r\n];\r\nconst SHR_NONCE_VALIDITY = 240;\r\nconst INVALID_INSTANCE = \"invalid_instance\";\r\nconst HTTP_SUCCESS = 200;\r\nconst HTTP_SUCCESS_RANGE_START = 200;\r\nconst HTTP_SUCCESS_RANGE_END = 299;\r\nconst HTTP_REDIRECT = 302;\r\nconst HTTP_CLIENT_ERROR = 400;\r\nconst HTTP_CLIENT_ERROR_RANGE_START = 400;\r\nconst HTTP_BAD_REQUEST = 400;\r\nconst HTTP_UNAUTHORIZED = 401;\r\nconst HTTP_NOT_FOUND = 404;\r\nconst HTTP_REQUEST_TIMEOUT = 408;\r\nconst HTTP_GONE = 410;\r\nconst HTTP_TOO_MANY_REQUESTS = 429;\r\nconst HTTP_CLIENT_ERROR_RANGE_END = 499;\r\nconst HTTP_SERVER_ERROR = 500;\r\nconst HTTP_SERVER_ERROR_RANGE_START = 500;\r\nconst HTTP_SERVICE_UNAVAILABLE = 503;\r\nconst HTTP_GATEWAY_TIMEOUT = 504;\r\nconst HTTP_SERVER_ERROR_RANGE_END = 599;\r\nconst HTTP_MULTI_SIDED_ERROR = 600;\r\nconst HttpMethod = {\r\n GET: \"GET\",\r\n POST: \"POST\",\r\n};\r\nconst OIDC_DEFAULT_SCOPES = [\r\n OPENID_SCOPE,\r\n PROFILE_SCOPE,\r\n OFFLINE_ACCESS_SCOPE,\r\n];\r\nconst OIDC_SCOPES = [...OIDC_DEFAULT_SCOPES, EMAIL_SCOPE];\r\n/**\r\n * Request header names\r\n */\r\nconst HeaderNames = {\r\n CONTENT_TYPE: \"Content-Type\",\r\n CONTENT_LENGTH: \"Content-Length\",\r\n RETRY_AFTER: \"Retry-After\",\r\n CCS_HEADER: \"X-AnchorMailbox\",\r\n WWWAuthenticate: \"WWW-Authenticate\",\r\n AuthenticationInfo: \"Authentication-Info\",\r\n X_MS_REQUEST_ID: \"x-ms-request-id\",\r\n X_MS_HTTP_VERSION: \"x-ms-httpver\",\r\n};\r\n/**\r\n * Persistent cache keys MSAL which stay while user is logged in.\r\n */\r\nconst PersistentCacheKeys = {\r\n ACTIVE_ACCOUNT_FILTERS: \"active-account-filters\", // new cache entry for active_account for a more robust version for browser\r\n};\r\n/**\r\n * String constants related to AAD Authority\r\n */\r\nconst AADAuthority = {\r\n COMMON: \"common\",\r\n ORGANIZATIONS: \"organizations\",\r\n CONSUMERS: \"consumers\",\r\n};\r\n/**\r\n * Claims request keys\r\n */\r\nconst ClaimsRequestKeys = {\r\n ACCESS_TOKEN: \"access_token\",\r\n XMS_CC: \"xms_cc\",\r\n};\r\n/**\r\n * we considered making this \"enum\" in the request instead of string, however it looks like the allowed list of\r\n * prompt values kept changing over past couple of years. There are some undocumented prompt values for some\r\n * internal partners too, hence the choice of generic \"string\" type instead of the \"enum\"\r\n */\r\nconst PromptValue = {\r\n LOGIN: \"login\",\r\n SELECT_ACCOUNT: \"select_account\",\r\n CONSENT: \"consent\",\r\n NONE: \"none\",\r\n CREATE: \"create\",\r\n NO_SESSION: \"no_session\",\r\n};\r\n/**\r\n * allowed values for codeVerifier\r\n */\r\nconst CodeChallengeMethodValues = {\r\n PLAIN: \"plain\",\r\n S256: \"S256\",\r\n};\r\n/**\r\n * Allowed values for response_type\r\n */\r\nconst OAuthResponseType = {\r\n CODE: \"code\",\r\n IDTOKEN_TOKEN: \"id_token token\",\r\n IDTOKEN_TOKEN_REFRESHTOKEN: \"id_token token refresh_token\",\r\n};\r\n/**\r\n * allowed values for response_mode\r\n */\r\nconst ResponseMode = {\r\n QUERY: \"query\",\r\n FRAGMENT: \"fragment\",\r\n FORM_POST: \"form_post\",\r\n};\r\n/**\r\n * allowed grant_type\r\n */\r\nconst GrantType = {\r\n IMPLICIT_GRANT: \"implicit\",\r\n AUTHORIZATION_CODE_GRANT: \"authorization_code\",\r\n CLIENT_CREDENTIALS_GRANT: \"client_credentials\",\r\n RESOURCE_OWNER_PASSWORD_GRANT: \"password\",\r\n REFRESH_TOKEN_GRANT: \"refresh_token\",\r\n DEVICE_CODE_GRANT: \"device_code\",\r\n JWT_BEARER: \"urn:ietf:params:oauth:grant-type:jwt-bearer\",\r\n};\r\n/**\r\n * Account types in Cache\r\n */\r\nconst CACHE_ACCOUNT_TYPE_MSSTS = \"MSSTS\";\r\nconst CACHE_ACCOUNT_TYPE_ADFS = \"ADFS\";\r\nconst CACHE_ACCOUNT_TYPE_MSAV1 = \"MSA\";\r\nconst CACHE_ACCOUNT_TYPE_GENERIC = \"Generic\";\r\n/**\r\n * Separators used in cache\r\n */\r\nconst CACHE_KEY_SEPARATOR = \"-\";\r\nconst CLIENT_INFO_SEPARATOR = \".\";\r\n/**\r\n * Credential Type stored in the cache\r\n */\r\nconst CredentialType = {\r\n ID_TOKEN: \"IdToken\",\r\n ACCESS_TOKEN: \"AccessToken\",\r\n ACCESS_TOKEN_WITH_AUTH_SCHEME: \"AccessToken_With_AuthScheme\",\r\n REFRESH_TOKEN: \"RefreshToken\",\r\n};\r\n/**\r\n * Combine all cache types\r\n */\r\nconst CacheType = {\r\n ADFS: 1001,\r\n MSA: 1002,\r\n MSSTS: 1003,\r\n GENERIC: 1004,\r\n ACCESS_TOKEN: 2001,\r\n REFRESH_TOKEN: 2002,\r\n ID_TOKEN: 2003,\r\n APP_METADATA: 3001,\r\n UNDEFINED: 9999,\r\n};\r\n/**\r\n * More Cache related constants\r\n */\r\nconst APP_METADATA = \"appmetadata\";\r\nconst CLIENT_INFO = \"client_info\";\r\nconst THE_FAMILY_ID = \"1\";\r\nconst AUTHORITY_METADATA_CACHE_KEY = \"authority-metadata\";\r\nconst AUTHORITY_METADATA_REFRESH_TIME_SECONDS = 3600 * 24; // 24 Hours\r\nconst AuthorityMetadataSource = {\r\n CONFIG: \"config\",\r\n CACHE: \"cache\",\r\n NETWORK: \"network\",\r\n HARDCODED_VALUES: \"hardcoded_values\",\r\n};\r\nconst SERVER_TELEM_SCHEMA_VERSION = 5;\r\nconst SERVER_TELEM_MAX_CUR_HEADER_BYTES = 80; // ESTS limit is 100B, set to 80 to provide a 20B buffer\r\nconst SERVER_TELEM_MAX_LAST_HEADER_BYTES = 330; // ESTS limit is 350B, set to 330 to provide a 20B buffer,\r\nconst SERVER_TELEM_MAX_CACHED_ERRORS = 50; // Limit the number of errors that can be stored to prevent uncontrolled size gains\r\nconst SERVER_TELEM_CACHE_KEY = \"server-telemetry\";\r\nconst SERVER_TELEM_CATEGORY_SEPARATOR = \"|\";\r\nconst SERVER_TELEM_VALUE_SEPARATOR = \",\";\r\nconst SERVER_TELEM_OVERFLOW_TRUE = \"1\";\r\nconst SERVER_TELEM_OVERFLOW_FALSE = \"0\";\r\nconst SERVER_TELEM_UNKNOWN_ERROR = \"unknown_error\";\r\n/**\r\n * Type of the authentication request\r\n */\r\nconst AuthenticationScheme = {\r\n BEARER: \"Bearer\",\r\n POP: \"pop\",\r\n SSH: \"ssh-cert\",\r\n};\r\n/**\r\n * Constants related to throttling\r\n */\r\nconst DEFAULT_THROTTLE_TIME_SECONDS = 60;\r\n// Default maximum time to throttle in seconds, overrides what the server sends back\r\nconst DEFAULT_MAX_THROTTLE_TIME_SECONDS = 3600;\r\n// Prefix for storing throttling entries\r\nconst THROTTLING_PREFIX = \"throttling\";\r\n// Value assigned to the x-ms-lib-capability header to indicate to the server the library supports throttling\r\nconst X_MS_LIB_CAPABILITY_VALUE = \"retry-after, h429\";\r\n/**\r\n * Errors\r\n */\r\nconst INVALID_GRANT_ERROR = \"invalid_grant\";\r\nconst CLIENT_MISMATCH_ERROR = \"client_mismatch\";\r\n/**\r\n * Password grant parameters\r\n */\r\nconst PasswordGrantConstants = {\r\n username: \"username\",\r\n password: \"password\",\r\n};\r\n/**\r\n * Region Discovery Sources\r\n */\r\nconst RegionDiscoverySources = {\r\n FAILED_AUTO_DETECTION: \"1\",\r\n INTERNAL_CACHE: \"2\",\r\n ENVIRONMENT_VARIABLE: \"3\",\r\n IMDS: \"4\",\r\n};\r\n/**\r\n * Region Discovery Outcomes\r\n */\r\nconst RegionDiscoveryOutcomes = {\r\n CONFIGURED_MATCHES_DETECTED: \"1\",\r\n CONFIGURED_NO_AUTO_DETECTION: \"2\",\r\n CONFIGURED_NOT_DETECTED: \"3\",\r\n AUTO_DETECTION_REQUESTED_SUCCESSFUL: \"4\",\r\n AUTO_DETECTION_REQUESTED_FAILED: \"5\",\r\n};\r\n/**\r\n * Specifies the reason for fetching the access token from the identity provider\r\n */\r\nconst CacheOutcome = {\r\n // When a token is found in the cache or the cache is not supposed to be hit when making the request\r\n NOT_APPLICABLE: \"0\",\r\n // When the token request goes to the identity provider because force_refresh was set to true. Also occurs if claims were requested\r\n FORCE_REFRESH_OR_CLAIMS: \"1\",\r\n // When the token request goes to the identity provider because no cached access token exists\r\n NO_CACHED_ACCESS_TOKEN: \"2\",\r\n // When the token request goes to the identity provider because cached access token expired\r\n CACHED_ACCESS_TOKEN_EXPIRED: \"3\",\r\n // When the token request goes to the identity provider because refresh_in was used and the existing token needs to be refreshed\r\n PROACTIVELY_REFRESHED: \"4\",\r\n};\r\nconst JsonWebTokenTypes = {\r\n Jwt: \"JWT\",\r\n Jwk: \"JWK\",\r\n Pop: \"pop\",\r\n};\r\nconst ONE_DAY_IN_MS = 86400000;\r\n// Token renewal offset default in seconds\r\nconst DEFAULT_TOKEN_RENEWAL_OFFSET_SEC = 300;\r\nconst EncodingTypes = {\r\n BASE64: \"base64\",\r\n HEX: \"hex\",\r\n UTF8: \"utf-8\",\r\n};\n\nexport { AADAuthority, AAD_INSTANCE_DISCOVERY_ENDPT, AAD_TENANT_DOMAIN_SUFFIX, ADFS, APP_METADATA, AUTHORITY_METADATA_CACHE_KEY, AUTHORITY_METADATA_REFRESH_TIME_SECONDS, AUTHORIZATION_PENDING, AZURE_REGION_AUTO_DISCOVER_FLAG, AuthenticationScheme, AuthorityMetadataSource, CACHE_ACCOUNT_TYPE_ADFS, CACHE_ACCOUNT_TYPE_GENERIC, CACHE_ACCOUNT_TYPE_MSAV1, CACHE_ACCOUNT_TYPE_MSSTS, CACHE_KEY_SEPARATOR, CIAM_AUTH_URL, CLIENT_INFO, CLIENT_INFO_SEPARATOR, CLIENT_MISMATCH_ERROR, CODE_GRANT_TYPE, CONSUMER_UTID, CacheOutcome, CacheType, ClaimsRequestKeys, CodeChallengeMethodValues, CredentialType, DEFAULT_AUTHORITY, DEFAULT_AUTHORITY_HOST, DEFAULT_COMMON_TENANT, DEFAULT_MAX_THROTTLE_TIME_SECONDS, DEFAULT_THROTTLE_TIME_SECONDS, DEFAULT_TOKEN_RENEWAL_OFFSET_SEC, DSTS, EMAIL_SCOPE, EncodingTypes, FORWARD_SLASH, GrantType, HTTP_BAD_REQUEST, HTTP_CLIENT_ERROR, HTTP_CLIENT_ERROR_RANGE_END, HTTP_CLIENT_ERROR_RANGE_START, HTTP_GATEWAY_TIMEOUT, HTTP_GONE, HTTP_MULTI_SIDED_ERROR, HTTP_NOT_FOUND, HTTP_REDIRECT, HTTP_REQUEST_TIMEOUT, HTTP_SERVER_ERROR, HTTP_SERVER_ERROR_RANGE_END, HTTP_SERVER_ERROR_RANGE_START, HTTP_SERVICE_UNAVAILABLE, HTTP_SUCCESS, HTTP_SUCCESS_RANGE_END, HTTP_SUCCESS_RANGE_START, HTTP_TOO_MANY_REQUESTS, HTTP_UNAUTHORIZED, HeaderNames, HttpMethod, IMDS_ENDPOINT, IMDS_TIMEOUT, IMDS_VERSION, INVALID_GRANT_ERROR, INVALID_INSTANCE, JsonWebTokenTypes, KNOWN_PUBLIC_CLOUDS, NOT_APPLICABLE, NOT_AVAILABLE, OAuthResponseType, OFFLINE_ACCESS_SCOPE, OIDC_DEFAULT_SCOPES, OIDC_SCOPES, ONE_DAY_IN_MS, OPENID_SCOPE, PROFILE_SCOPE, PasswordGrantConstants, PersistentCacheKeys, PromptValue, REGIONAL_AUTH_PUBLIC_CLOUD_SUFFIX, RESOURCE_DELIM, RegionDiscoveryOutcomes, RegionDiscoverySources, ResponseMode, S256_CODE_CHALLENGE_METHOD, SERVER_TELEM_CACHE_KEY, SERVER_TELEM_CATEGORY_SEPARATOR, SERVER_TELEM_MAX_CACHED_ERRORS, SERVER_TELEM_MAX_CUR_HEADER_BYTES, SERVER_TELEM_MAX_LAST_HEADER_BYTES, SERVER_TELEM_OVERFLOW_FALSE, SERVER_TELEM_OVERFLOW_TRUE, SERVER_TELEM_SCHEMA_VERSION, SERVER_TELEM_UNKNOWN_ERROR, SERVER_TELEM_VALUE_SEPARATOR, SHR_NONCE_VALIDITY, SKU, THE_FAMILY_ID, THROTTLING_PREFIX, URL_FORM_CONTENT_TYPE, X_MS_LIB_CAPABILITY_VALUE };\n//# sourceMappingURL=Constants.mjs.map\n","/*! @azure/msal-common v16.6.0 2026-05-07 */\n'use strict';\n/*\r\n * Copyright (c) Microsoft Corporation. All rights reserved.\r\n * Licensed under the MIT License.\r\n */\r\nfunction getDefaultErrorMessage(code) {\r\n return `See https://aka.ms/msal.js.errors#${code} for details`;\r\n}\r\n/**\r\n * General error class thrown by the MSAL.js library.\r\n */\r\nclass AuthError extends Error {\r\n constructor(errorCode, errorMessage, suberror) {\r\n const message = errorMessage ||\r\n (errorCode ? getDefaultErrorMessage(errorCode) : \"\");\r\n const errorString = message ? `${errorCode}: ${message}` : errorCode;\r\n super(errorString);\r\n Object.setPrototypeOf(this, AuthError.prototype);\r\n this.errorCode = errorCode || \"\";\r\n this.errorMessage = message || \"\";\r\n this.subError = suberror || \"\";\r\n this.name = \"AuthError\";\r\n }\r\n setCorrelationId(correlationId) {\r\n this.correlationId = correlationId;\r\n }\r\n}\r\nfunction createAuthError(code, additionalMessage) {\r\n return new AuthError(code, additionalMessage || getDefaultErrorMessage(code));\r\n}\n\nexport { AuthError, createAuthError, getDefaultErrorMessage };\n//# sourceMappingURL=AuthError.mjs.map\n","/*! @azure/msal-common v16.6.0 2026-05-07 */\n'use strict';\nimport { AuthError } from './AuthError.mjs';\n\n/*\r\n * Copyright (c) Microsoft Corporation. All rights reserved.\r\n * Licensed under the MIT License.\r\n */\r\n/**\r\n * Error thrown when there is an error in configuration of the MSAL.js library.\r\n */\r\nclass ClientConfigurationError extends AuthError {\r\n constructor(errorCode) {\r\n super(errorCode);\r\n this.name = \"ClientConfigurationError\";\r\n Object.setPrototypeOf(this, ClientConfigurationError.prototype);\r\n }\r\n}\r\nfunction createClientConfigurationError(errorCode) {\r\n return new ClientConfigurationError(errorCode);\r\n}\n\nexport { ClientConfigurationError, createClientConfigurationError };\n//# sourceMappingURL=ClientConfigurationError.mjs.map\n","/*! @azure/msal-common v16.6.0 2026-05-07 */\n'use strict';\n/*\r\n * Copyright (c) Microsoft Corporation. All rights reserved.\r\n * Licensed under the MIT License.\r\n */\r\n/**\r\n * @hidden\r\n */\r\nclass StringUtils {\r\n /**\r\n * Check if stringified object is empty\r\n * @param strObj\r\n */\r\n static isEmptyObj(strObj) {\r\n if (strObj) {\r\n try {\r\n const obj = JSON.parse(strObj);\r\n return Object.keys(obj).length === 0;\r\n }\r\n catch (e) { }\r\n }\r\n return true;\r\n }\r\n static startsWith(str, search) {\r\n return str.indexOf(search) === 0;\r\n }\r\n static endsWith(str, search) {\r\n return (str.length >= search.length &&\r\n str.lastIndexOf(search) === str.length - search.length);\r\n }\r\n /**\r\n * Parses string into an object.\r\n *\r\n * @param query\r\n */\r\n static queryStringToObject(query) {\r\n const obj = {};\r\n const params = query.split(\"&\");\r\n const decode = (s) => decodeURIComponent(s.replace(/\\+/g, \" \"));\r\n params.forEach((pair) => {\r\n if (pair.trim()) {\r\n const [key, value] = pair.split(/=(.+)/g, 2); // Split on the first occurence of the '=' character\r\n if (key && value) {\r\n obj[decode(key)] = decode(value);\r\n }\r\n }\r\n });\r\n return obj;\r\n }\r\n /**\r\n * Trims entries in an array.\r\n *\r\n * @param arr\r\n */\r\n static trimArrayEntries(arr) {\r\n return arr.map((entry) => entry.trim());\r\n }\r\n /**\r\n * Removes empty strings from array\r\n * @param arr\r\n */\r\n static removeEmptyStringsFromArray(arr) {\r\n return arr.filter((entry) => {\r\n return !!entry;\r\n });\r\n }\r\n /**\r\n * Attempts to parse a string into JSON\r\n * @param str\r\n */\r\n static jsonParseHelper(str) {\r\n try {\r\n return JSON.parse(str);\r\n }\r\n catch (e) {\r\n return null;\r\n }\r\n }\r\n}\n\nexport { StringUtils };\n//# sourceMappingURL=StringUtils.mjs.map\n","/*! @azure/msal-common v16.6.0 2026-05-07 */\n'use strict';\nimport { AuthError } from './AuthError.mjs';\n\n/*\r\n * Copyright (c) Microsoft Corporation. All rights reserved.\r\n * Licensed under the MIT License.\r\n */\r\n/**\r\n * ClientAuthErrorMessage class containing string constants used by error codes and messages.\r\n */\r\n/**\r\n * Error thrown when there is an error in the client code running on the browser.\r\n */\r\nclass ClientAuthError extends AuthError {\r\n constructor(errorCode, additionalMessage) {\r\n super(errorCode, additionalMessage);\r\n this.name = \"ClientAuthError\";\r\n Object.setPrototypeOf(this, ClientAuthError.prototype);\r\n }\r\n}\r\nfunction createClientAuthError(errorCode, additionalMessage) {\r\n return new ClientAuthError(errorCode, additionalMessage);\r\n}\n\nexport { ClientAuthError, createClientAuthError };\n//# sourceMappingURL=ClientAuthError.mjs.map\n","/*! @azure/msal-common v16.6.0 2026-05-07 */\n'use strict';\n/*\r\n * Copyright (c) Microsoft Corporation. All rights reserved.\r\n * Licensed under the MIT License.\r\n */\r\nconst redirectUriEmpty = \"redirect_uri_empty\";\r\nconst claimsRequestParsingError = \"claims_request_parsing_error\";\r\nconst authorityUriInsecure = \"authority_uri_insecure\";\r\nconst urlParseError = \"url_parse_error\";\r\nconst urlEmptyError = \"empty_url_error\";\r\nconst emptyInputScopesError = \"empty_input_scopes_error\";\r\nconst invalidClaims = \"invalid_claims\";\r\nconst tokenRequestEmpty = \"token_request_empty\";\r\nconst logoutRequestEmpty = \"logout_request_empty\";\r\nconst invalidCodeChallengeMethod = \"invalid_code_challenge_method\";\r\nconst pkceParamsMissing = \"pkce_params_missing\";\r\nconst invalidCloudDiscoveryMetadata = \"invalid_cloud_discovery_metadata\";\r\nconst invalidAuthorityMetadata = \"invalid_authority_metadata\";\r\nconst untrustedAuthority = \"untrusted_authority\";\r\nconst missingSshJwk = \"missing_ssh_jwk\";\r\nconst missingSshKid = \"missing_ssh_kid\";\r\nconst missingNonceAuthenticationHeader = \"missing_nonce_authentication_header\";\r\nconst invalidAuthenticationHeader = \"invalid_authentication_header\";\r\nconst cannotSetOIDCOptions = \"cannot_set_OIDCOptions\";\r\nconst cannotAllowPlatformBroker = \"cannot_allow_platform_broker\";\r\nconst authorityMismatch = \"authority_mismatch\";\r\nconst invalidRequestMethodForEAR = \"invalid_request_method_for_EAR\";\n\nexport { authorityMismatch, authorityUriInsecure, cannotAllowPlatformBroker, cannotSetOIDCOptions, claimsRequestParsingError, emptyInputScopesError, invalidAuthenticationHeader, invalidAuthorityMetadata, invalidClaims, invalidCloudDiscoveryMetadata, invalidCodeChallengeMethod, invalidRequestMethodForEAR, logoutRequestEmpty, missingNonceAuthenticationHeader, missingSshJwk, missingSshKid, pkceParamsMissing, redirectUriEmpty, tokenRequestEmpty, untrustedAuthority, urlEmptyError, urlParseError };\n//# sourceMappingURL=ClientConfigurationErrorCodes.mjs.map\n","/*! @azure/msal-common v16.6.0 2026-05-07 */\n'use strict';\n/*\r\n * Copyright (c) Microsoft Corporation. All rights reserved.\r\n * Licensed under the MIT License.\r\n */\r\nconst clientInfoDecodingError = \"client_info_decoding_error\";\r\nconst clientInfoEmptyError = \"client_info_empty_error\";\r\nconst tokenParsingError = \"token_parsing_error\";\r\nconst nullOrEmptyToken = \"null_or_empty_token\";\r\nconst endpointResolutionError = \"endpoints_resolution_error\";\r\nconst networkError = \"network_error\";\r\nconst openIdConfigError = \"openid_config_error\";\r\nconst hashNotDeserialized = \"hash_not_deserialized\";\r\nconst invalidState = \"invalid_state\";\r\nconst stateMismatch = \"state_mismatch\";\r\nconst stateNotFound = \"state_not_found\";\r\nconst nonceMismatch = \"nonce_mismatch\";\r\nconst authTimeNotFound = \"auth_time_not_found\";\r\nconst maxAgeTranspired = \"max_age_transpired\";\r\nconst multipleMatchingTokens = \"multiple_matching_tokens\";\r\nconst multipleMatchingAppMetadata = \"multiple_matching_appMetadata\";\r\nconst requestCannotBeMade = \"request_cannot_be_made\";\r\nconst cannotRemoveEmptyScope = \"cannot_remove_empty_scope\";\r\nconst cannotAppendScopeSet = \"cannot_append_scopeset\";\r\nconst emptyInputScopeSet = \"empty_input_scopeset\";\r\nconst noAccountInSilentRequest = \"no_account_in_silent_request\";\r\nconst invalidCacheRecord = \"invalid_cache_record\";\r\nconst invalidCacheEnvironment = \"invalid_cache_environment\";\r\nconst noAccountFound = \"no_account_found\";\r\nconst noCryptoObject = \"no_crypto_object\";\r\nconst unexpectedCredentialType = \"unexpected_credential_type\";\r\nconst tokenRefreshRequired = \"token_refresh_required\";\r\nconst tokenClaimsCnfRequiredForSignedJwt = \"token_claims_cnf_required_for_signedjwt\";\r\nconst authorizationCodeMissingFromServerResponse = \"authorization_code_missing_from_server_response\";\r\nconst bindingKeyNotRemoved = \"binding_key_not_removed\";\r\nconst endSessionEndpointNotSupported = \"end_session_endpoint_not_supported\";\r\nconst keyIdMissing = \"key_id_missing\";\r\nconst noNetworkConnectivity = \"no_network_connectivity\";\r\nconst userCanceled = \"user_canceled\";\r\nconst methodNotImplemented = \"method_not_implemented\";\r\nconst nestedAppAuthBridgeDisabled = \"nested_app_auth_bridge_disabled\";\r\nconst platformBrokerError = \"platform_broker_error\";\r\nconst resourceParameterRequired = \"resource_parameter_required\";\r\nconst misplacedResourceParam = \"misplaced_resource_parameter\";\n\nexport { authTimeNotFound, authorizationCodeMissingFromServerResponse, bindingKeyNotRemoved, cannotAppendScopeSet, cannotRemoveEmptyScope, clientInfoDecodingError, clientInfoEmptyError, emptyInputScopeSet, endSessionEndpointNotSupported, endpointResolutionError, hashNotDeserialized, invalidCacheEnvironment, invalidCacheRecord, invalidState, keyIdMissing, maxAgeTranspired, methodNotImplemented, misplacedResourceParam, multipleMatchingAppMetadata, multipleMatchingTokens, nestedAppAuthBridgeDisabled, networkError, noAccountFound, noAccountInSilentRequest, noCryptoObject, noNetworkConnectivity, nonceMismatch, nullOrEmptyToken, openIdConfigError, platformBrokerError, requestCannotBeMade, resourceParameterRequired, stateMismatch, stateNotFound, tokenClaimsCnfRequiredForSignedJwt, tokenParsingError, tokenRefreshRequired, unexpectedCredentialType, userCanceled };\n//# sourceMappingURL=ClientAuthErrorCodes.mjs.map\n","/*! @azure/msal-common v16.6.0 2026-05-07 */\n'use strict';\nimport { createClientConfigurationError } from '../error/ClientConfigurationError.mjs';\nimport { StringUtils } from '../utils/StringUtils.mjs';\nimport { AADAuthority, FORWARD_SLASH } from '../utils/Constants.mjs';\nimport { urlEmptyError, urlParseError, authorityUriInsecure } from '../error/ClientConfigurationErrorCodes.mjs';\n\n/*\r\n * Copyright (c) Microsoft Corporation. All rights reserved.\r\n * Licensed under the MIT License.\r\n */\r\n/**\r\n * Url object class which can perform various transformations on url strings.\r\n */\r\nclass UrlString {\r\n get urlString() {\r\n return this._urlString;\r\n }\r\n constructor(url) {\r\n this._urlString = url;\r\n if (!this._urlString) {\r\n // Throws error if url is empty\r\n throw createClientConfigurationError(urlEmptyError);\r\n }\r\n if (!url.includes(\"#\")) {\r\n this._urlString = UrlString.canonicalizeUri(url);\r\n }\r\n }\r\n /**\r\n * Ensure urls are lower case and end with a / character.\r\n * @param url\r\n */\r\n static canonicalizeUri(url) {\r\n if (url) {\r\n let lowerCaseUrl = url.toLowerCase();\r\n if (StringUtils.endsWith(lowerCaseUrl, \"?\")) {\r\n lowerCaseUrl = lowerCaseUrl.slice(0, -1);\r\n }\r\n else if (StringUtils.endsWith(lowerCaseUrl, \"?/\")) {\r\n lowerCaseUrl = lowerCaseUrl.slice(0, -2);\r\n }\r\n if (!StringUtils.endsWith(lowerCaseUrl, \"/\")) {\r\n lowerCaseUrl += \"/\";\r\n }\r\n return lowerCaseUrl;\r\n }\r\n return url;\r\n }\r\n /**\r\n * Throws if urlString passed is not a valid authority URI string.\r\n */\r\n validateAsUri() {\r\n // Attempts to parse url for uri components\r\n let components;\r\n try {\r\n components = this.getUrlComponents();\r\n }\r\n catch (e) {\r\n throw createClientConfigurationError(urlParseError);\r\n }\r\n // Throw error if URI or path segments are not parseable.\r\n if (!components.HostNameAndPort || !components.PathSegments) {\r\n throw createClientConfigurationError(urlParseError);\r\n }\r\n // Throw error if uri is insecure.\r\n if (!components.Protocol ||\r\n components.Protocol.toLowerCase() !== \"https:\") {\r\n throw createClientConfigurationError(authorityUriInsecure);\r\n }\r\n }\r\n /**\r\n * Given a url and a query string return the url with provided query string appended\r\n * @param url\r\n * @param queryString\r\n */\r\n static appendQueryString(url, queryString) {\r\n if (!queryString) {\r\n return url;\r\n }\r\n return url.indexOf(\"?\") < 0\r\n ? `${url}?${queryString}`\r\n : `${url}&${queryString}`;\r\n }\r\n /**\r\n * Returns a url with the hash removed\r\n * @param url\r\n */\r\n static removeHashFromUrl(url) {\r\n return UrlString.canonicalizeUri(url.split(\"#\")[0]);\r\n }\r\n /**\r\n * Given a url like https://a:b/common/d?e=f#g, and a tenantId, returns https://a:b/tenantId/d\r\n * @param href The url\r\n * @param tenantId The tenant id to replace\r\n */\r\n replaceTenantPath(tenantId) {\r\n const urlObject = this.getUrlComponents();\r\n const pathArray = urlObject.PathSegments;\r\n if (tenantId &&\r\n pathArray.length !== 0 &&\r\n (pathArray[0] === AADAuthority.COMMON ||\r\n pathArray[0] === AADAuthority.ORGANIZATIONS)) {\r\n pathArray[0] = tenantId;\r\n }\r\n return UrlString.constructAuthorityUriFromObject(urlObject);\r\n }\r\n /**\r\n * Parses out the components from a url string.\r\n * @returns An object with the various components. Please cache this value insted of calling this multiple times on the same url.\r\n */\r\n getUrlComponents() {\r\n // https://gist.github.com/curtisz/11139b2cfcaef4a261e0\r\n const regEx = RegExp(\"^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\\\\?([^#]*))?(#(.*))?\");\r\n // If url string does not match regEx, we throw an error\r\n const match = this.urlString.match(regEx);\r\n if (!match) {\r\n throw createClientConfigurationError(urlParseError);\r\n }\r\n // Url component object\r\n const urlComponents = {\r\n Protocol: match[1],\r\n HostNameAndPort: match[4],\r\n AbsolutePath: match[5],\r\n QueryString: match[7],\r\n };\r\n let pathSegments = urlComponents.AbsolutePath.split(\"/\");\r\n pathSegments = pathSegments.filter((val) => val && val.length > 0); // remove empty elements\r\n urlComponents.PathSegments = pathSegments;\r\n if (urlComponents.QueryString &&\r\n urlComponents.QueryString.endsWith(\"/\")) {\r\n urlComponents.QueryString = urlComponents.QueryString.substring(0, urlComponents.QueryString.length - 1);\r\n }\r\n return urlComponents;\r\n }\r\n static getDomainFromUrl(url) {\r\n const regEx = RegExp(\"^([^:/?#]+://)?([^/?#]*)\");\r\n const match = url.match(regEx);\r\n if (!match) {\r\n throw createClientConfigurationError(urlParseError);\r\n }\r\n return match[2];\r\n }\r\n static getAbsoluteUrl(relativeUrl, baseUrl) {\r\n if (relativeUrl[0] === FORWARD_SLASH) {\r\n const url = new UrlString(baseUrl);\r\n const baseComponents = url.getUrlComponents();\r\n return (baseComponents.Protocol +\r\n \"//\" +\r\n baseComponents.HostNameAndPort +\r\n relativeUrl);\r\n }\r\n return relativeUrl;\r\n }\r\n static constructAuthorityUriFromObject(urlObject) {\r\n return new UrlString(urlObject.Protocol +\r\n \"//\" +\r\n urlObject.HostNameAndPort +\r\n \"/\" +\r\n urlObject.PathSegments.join(\"/\"));\r\n }\r\n}\n\nexport { UrlString };\n//# sourceMappingURL=UrlString.mjs.map\n","/*! @azure/msal-common v16.6.0 2026-05-07 */\n'use strict';\nimport { RESOURCE_DELIM } from './Constants.mjs';\nimport { createClientAuthError } from '../error/ClientAuthError.mjs';\nimport { noCryptoObject, invalidState } from '../error/ClientAuthErrorCodes.mjs';\n\n/*\r\n * Copyright (c) Microsoft Corporation. All rights reserved.\r\n * Licensed under the MIT License.\r\n */\r\n/**\r\n * Appends user state with random guid, or returns random guid.\r\n * @param cryptoObj\r\n * @param userState\r\n * @param meta\r\n */\r\nfunction setRequestState(cryptoObj, userState, meta) {\r\n const libraryState = generateLibraryState(cryptoObj, meta);\r\n return userState\r\n ? `${libraryState}${RESOURCE_DELIM}${userState}`\r\n : libraryState;\r\n}\r\n/**\r\n * Generates the state value used by the common library.\r\n * @param cryptoObj\r\n * @param meta\r\n */\r\nfunction generateLibraryState(cryptoObj, meta) {\r\n if (!cryptoObj) {\r\n throw createClientAuthError(noCryptoObject);\r\n }\r\n // Create a state object containing a unique id and the timestamp of the request creation\r\n const stateObj = {\r\n id: cryptoObj.createNewGuid(),\r\n };\r\n if (meta) {\r\n stateObj.meta = meta;\r\n }\r\n const stateString = JSON.stringify(stateObj);\r\n return cryptoObj.base64Encode(stateString);\r\n}\r\n/**\r\n * Parses the state into the RequestStateObject, which contains the LibraryState info and the state passed by the user.\r\n * @param base64Decode\r\n * @param state\r\n */\r\nfunction parseRequestState(base64Decode, state) {\r\n if (!base64Decode) {\r\n throw createClientAuthError(noCryptoObject);\r\n }\r\n if (!state) {\r\n throw createClientAuthError(invalidState);\r\n }\r\n try {\r\n // Split the state between library state and user passed state and decode them separately\r\n const splitState = state.split(RESOURCE_DELIM);\r\n const libraryState = splitState[0];\r\n const userState = splitState.length > 1\r\n ? splitState.slice(1).join(RESOURCE_DELIM)\r\n : \"\";\r\n const libraryStateString = base64Decode(libraryState);\r\n const libraryStateObj = JSON.parse(libraryStateString);\r\n return {\r\n userRequestState: userState || \"\",\r\n libraryState: libraryStateObj,\r\n };\r\n }\r\n catch (e) {\r\n throw createClientAuthError(invalidState);\r\n }\r\n}\n\nexport { generateLibraryState, parseRequestState, setRequestState };\n//# sourceMappingURL=ProtocolUtils.mjs.map\n",null,null,null,null,null,null,null,null,null],"names":["getDefaultErrorMessage","BrowserAuthErrorCodes.invalidBase64String","BrowserAuthErrorCodes.emptyResponse","BrowserAuthErrorCodes.noStateInHash","ProtocolUtils.parseRequestState","BrowserAuthErrorCodes.unableToParseState","BrowserAuthErrorCodes.timedOut","BrowserUtils.getHomepage"],"mappings":"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"}
@@ -1,4 +1,4 @@
1
- /*! @azure/msal-browser v5.8.0 2026-04-21 */
1
+ /*! @azure/msal-browser v5.10.0 2026-05-07 */
2
2
  'use strict';
3
3
  (function (global, factory) {
4
4
  typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
@@ -6,7 +6,7 @@
6
6
  (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.msalRedirectBridge = {}));
7
7
  })(this, (function (exports) { 'use strict';
8
8
 
9
- /*! @azure/msal-common v16.5.1 2026-04-21 */
9
+ /*! @azure/msal-common v16.6.0 2026-05-07 */
10
10
  // Resource delimiter - used for certain cache entries
11
11
  const RESOURCE_DELIM = "|";
12
12
  const FORWARD_SLASH = "/";
@@ -17,7 +17,7 @@
17
17
  COMMON: "common",
18
18
  ORGANIZATIONS: "organizations"};
19
19
 
20
- /*! @azure/msal-common v16.5.1 2026-04-21 */
20
+ /*! @azure/msal-common v16.6.0 2026-05-07 */
21
21
  /*
22
22
  * Copyright (c) Microsoft Corporation. All rights reserved.
23
23
  * Licensed under the MIT License.
@@ -45,7 +45,7 @@
45
45
  }
46
46
  }
47
47
 
48
- /*! @azure/msal-common v16.5.1 2026-04-21 */
48
+ /*! @azure/msal-common v16.6.0 2026-05-07 */
49
49
 
50
50
  /*
51
51
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -65,7 +65,7 @@
65
65
  return new ClientConfigurationError(errorCode);
66
66
  }
67
67
 
68
- /*! @azure/msal-common v16.5.1 2026-04-21 */
68
+ /*! @azure/msal-common v16.6.0 2026-05-07 */
69
69
  /*
70
70
  * Copyright (c) Microsoft Corporation. All rights reserved.
71
71
  * Licensed under the MIT License.
@@ -145,7 +145,7 @@
145
145
  }
146
146
  }
147
147
 
148
- /*! @azure/msal-common v16.5.1 2026-04-21 */
148
+ /*! @azure/msal-common v16.6.0 2026-05-07 */
149
149
 
150
150
  /*
151
151
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -168,16 +168,16 @@
168
168
  return new ClientAuthError(errorCode, additionalMessage);
169
169
  }
170
170
 
171
- /*! @azure/msal-common v16.5.1 2026-04-21 */
171
+ /*! @azure/msal-common v16.6.0 2026-05-07 */
172
172
  const authorityUriInsecure = "authority_uri_insecure";
173
173
  const urlParseError = "url_parse_error";
174
174
  const urlEmptyError = "empty_url_error";
175
175
 
176
- /*! @azure/msal-common v16.5.1 2026-04-21 */
176
+ /*! @azure/msal-common v16.6.0 2026-05-07 */
177
177
  const invalidState = "invalid_state";
178
178
  const noCryptoObject = "no_crypto_object";
179
179
 
180
- /*! @azure/msal-common v16.5.1 2026-04-21 */
180
+ /*! @azure/msal-common v16.6.0 2026-05-07 */
181
181
 
182
182
  /*
183
183
  * Copyright (c) Microsoft Corporation. All rights reserved.
@@ -334,7 +334,7 @@
334
334
  }
335
335
  }
336
336
 
337
- /*! @azure/msal-common v16.5.1 2026-04-21 */
337
+ /*! @azure/msal-common v16.6.0 2026-05-07 */
338
338
  /**
339
339
  * Parses the state into the RequestStateObject, which contains the LibraryState info and the state passed by the user.
340
340
  * @param base64Decode