@stytch/vanilla-js 0.0.0-idp-20241212005036

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 (427) hide show
  1. package/CHANGELOG.md +1383 -0
  2. package/README.md +121 -0
  3. package/b2b/adminPortal/package.json +6 -0
  4. package/b2b/headless/package.json +6 -0
  5. package/b2b/package.json +6 -0
  6. package/dist/BootstrapDataManager.d.ts +40 -0
  7. package/dist/CaptchaProvider.d.ts +7 -0
  8. package/dist/ClientsideServicesProvider.d.ts +16 -0
  9. package/dist/HeadlessOAuthClient.d.ts +68 -0
  10. package/dist/IDPClient.d.ts +34 -0
  11. package/dist/NetworkClient.d.ts +26 -0
  12. package/dist/PKCEManager.d.ts +12 -0
  13. package/dist/StytchHeadlessClient.d.ts +45 -0
  14. package/dist/StytchUIClient.d.ts +106 -0
  15. package/dist/SubscriptionService.d.ts +110 -0
  16. package/dist/adminPortal/AdminPortalStyleConfig.d.ts +174 -0
  17. package/dist/adminPortal/AdminPortalWrapper.d.ts +11 -0
  18. package/dist/adminPortal/MainContainer.d.ts +4 -0
  19. package/dist/adminPortal/Router.d.ts +44 -0
  20. package/dist/adminPortal/StytchClientContext.d.ts +12 -0
  21. package/dist/adminPortal/classNameSeed.d.ts +2 -0
  22. package/dist/adminPortal/components/Accordion.d.ts +6 -0
  23. package/dist/adminPortal/components/ActionMenu.d.ts +18 -0
  24. package/dist/adminPortal/components/Alert.d.ts +4 -0
  25. package/dist/adminPortal/components/Autocomplete.d.ts +18 -0
  26. package/dist/adminPortal/components/Button.d.ts +6 -0
  27. package/dist/adminPortal/components/Checkbox.d.ts +4 -0
  28. package/dist/adminPortal/components/Code.d.ts +7 -0
  29. package/dist/adminPortal/components/CopyableText.d.ts +7 -0
  30. package/dist/adminPortal/components/DeleteConnection.d.ts +24 -0
  31. package/dist/adminPortal/components/EmbeddedTable.d.ts +4 -0
  32. package/dist/adminPortal/components/FilterMenu.d.ts +11 -0
  33. package/dist/adminPortal/components/FlexBox.d.ts +1 -0
  34. package/dist/adminPortal/components/IconButtonMenu.d.ts +24 -0
  35. package/dist/adminPortal/components/IdpField.d.ts +6 -0
  36. package/dist/adminPortal/components/InfoIcon.d.ts +3 -0
  37. package/dist/adminPortal/components/Input.d.ts +6 -0
  38. package/dist/adminPortal/components/Instruction.d.ts +4 -0
  39. package/dist/adminPortal/components/InstructionSet.d.ts +6 -0
  40. package/dist/adminPortal/components/Label.d.ts +4 -0
  41. package/dist/adminPortal/components/ListEditor.d.ts +5 -0
  42. package/dist/adminPortal/components/MenuItem.d.ts +5 -0
  43. package/dist/adminPortal/components/Modal.d.ts +16 -0
  44. package/dist/adminPortal/components/PaddedContainer.d.ts +4 -0
  45. package/dist/adminPortal/components/PaddingLeft.d.ts +1 -0
  46. package/dist/adminPortal/components/PageLoadingIndicator.d.ts +2 -0
  47. package/dist/adminPortal/components/PaginatedTable.d.ts +4 -0
  48. package/dist/adminPortal/components/RadioGroup.d.ts +4 -0
  49. package/dist/adminPortal/components/RolesList.d.ts +12 -0
  50. package/dist/adminPortal/components/ScimFields.d.ts +6 -0
  51. package/dist/adminPortal/components/SearchBar.d.ts +4 -0
  52. package/dist/adminPortal/components/Select.d.ts +11 -0
  53. package/dist/adminPortal/components/SetDefaultConnection.d.ts +29 -0
  54. package/dist/adminPortal/components/SettingsContainer.d.ts +24 -0
  55. package/dist/adminPortal/components/SettingsList.d.ts +4 -0
  56. package/dist/adminPortal/components/SettingsListItem.d.ts +5 -0
  57. package/dist/adminPortal/components/SettingsSection.d.ts +6 -0
  58. package/dist/adminPortal/components/Switch.d.ts +9 -0
  59. package/dist/adminPortal/components/Table.d.ts +4 -0
  60. package/dist/adminPortal/components/TableActions.d.ts +6 -0
  61. package/dist/adminPortal/components/Tag.d.ts +6 -0
  62. package/dist/adminPortal/components/TagList.d.ts +4 -0
  63. package/dist/adminPortal/components/Toast.d.ts +5 -0
  64. package/dist/adminPortal/components/Tooltip.d.ts +3 -0
  65. package/dist/adminPortal/components/Typography.d.ts +4 -0
  66. package/dist/adminPortal/index.d.ts +10 -0
  67. package/dist/adminPortal/index.esm.js +5 -0
  68. package/dist/adminPortal/index.js +5 -0
  69. package/dist/adminPortal/makeAdminPortalComponentMountFn.d.ts +20 -0
  70. package/dist/adminPortal/memberManagement/AccessSection.d.ts +5 -0
  71. package/dist/adminPortal/memberManagement/AdminPortalMemberManagement.d.ts +24 -0
  72. package/dist/adminPortal/memberManagement/AuthManagementSection.d.ts +5 -0
  73. package/dist/adminPortal/memberManagement/DangerZoneSection.d.ts +5 -0
  74. package/dist/adminPortal/memberManagement/InviteModal.d.ts +29 -0
  75. package/dist/adminPortal/memberManagement/MemberDetailsScreen.d.ts +4 -0
  76. package/dist/adminPortal/memberManagement/MemberDetailsSection.d.ts +5 -0
  77. package/dist/adminPortal/memberManagement/MemberListScreen.d.ts +19 -0
  78. package/dist/adminPortal/memberManagement/MemberManagementRouter.d.ts +29 -0
  79. package/dist/adminPortal/memberManagement/MemberStatus.d.ts +3 -0
  80. package/dist/adminPortal/memberManagement/getMemberStatusDisplayName.d.ts +1 -0
  81. package/dist/adminPortal/memberManagement/mountAdminPortalMemberManagement.d.ts +15 -0
  82. package/dist/adminPortal/memberManagement/useMemberActivation.d.ts +16 -0
  83. package/dist/adminPortal/scim/AdminPortalSCIM.d.ts +28 -0
  84. package/dist/adminPortal/scim/SCIMConnectionDangerZoneSection.d.ts +5 -0
  85. package/dist/adminPortal/scim/SCIMConnectionDetailsScreen.d.ts +5 -0
  86. package/dist/adminPortal/scim/SCIMConnectionDetailsSection.d.ts +5 -0
  87. package/dist/adminPortal/scim/SCIMConnectionRoleAssignmentsSection.d.ts +7 -0
  88. package/dist/adminPortal/scim/SCIMConnectionTokenRotationSection.d.ts +5 -0
  89. package/dist/adminPortal/scim/SCIMNewConnectionConfigureScreen.d.ts +5 -0
  90. package/dist/adminPortal/scim/SCIMNewConnectionScreen.d.ts +2 -0
  91. package/dist/adminPortal/scim/SCIMRouter.d.ts +45 -0
  92. package/dist/adminPortal/scim/SCIMScreen.d.ts +2 -0
  93. package/dist/adminPortal/scim/mountAdminPortalSCIM.d.ts +15 -0
  94. package/dist/adminPortal/scim/scimInfo.d.ts +175 -0
  95. package/dist/adminPortal/settings/AdminPortalOrgRouter.d.ts +19 -0
  96. package/dist/adminPortal/settings/AdminPortalOrgSettings.d.ts +45 -0
  97. package/dist/adminPortal/settings/OrgSettingsAuthenticationSettingsSection.d.ts +5 -0
  98. package/dist/adminPortal/settings/OrgSettingsDetailsSection.d.ts +22 -0
  99. package/dist/adminPortal/settings/OrgSettingsEmailDomainsSection.d.ts +5 -0
  100. package/dist/adminPortal/settings/OrgSettingsRoleAssignmentsSection.d.ts +5 -0
  101. package/dist/adminPortal/settings/OrgSettingsScreen.d.ts +2 -0
  102. package/dist/adminPortal/settings/mountAdminPortalOrgSettings.d.ts +16 -0
  103. package/dist/adminPortal/shared/classNameSeed.d.ts +1 -0
  104. package/dist/adminPortal/shared/components/Accordion.d.ts +15 -0
  105. package/dist/adminPortal/shared/components/Button.d.ts +25 -0
  106. package/dist/adminPortal/shared/components/Checkbox.d.ts +13 -0
  107. package/dist/adminPortal/shared/components/Code.d.ts +14 -0
  108. package/dist/adminPortal/shared/components/ContentSpacing.d.ts +6 -0
  109. package/dist/adminPortal/shared/components/CopyableText.d.ts +16 -0
  110. package/dist/adminPortal/shared/components/EmbeddedTable.d.ts +16 -0
  111. package/dist/adminPortal/shared/components/FlexBox.d.ts +11 -0
  112. package/dist/adminPortal/shared/components/InfoIcon.d.ts +8 -0
  113. package/dist/adminPortal/shared/components/Input.d.ts +29 -0
  114. package/dist/adminPortal/shared/components/Label.d.ts +11 -0
  115. package/dist/adminPortal/shared/components/ListEditor.d.ts +29 -0
  116. package/dist/adminPortal/shared/components/MenuItem.d.ts +14 -0
  117. package/dist/adminPortal/shared/components/Modal.d.ts +20 -0
  118. package/dist/adminPortal/shared/components/PaginatedTable.d.ts +36 -0
  119. package/dist/adminPortal/shared/components/Radio.d.ts +14 -0
  120. package/dist/adminPortal/shared/components/RadioGroup.d.ts +12 -0
  121. package/dist/adminPortal/shared/components/RowItem.d.ts +8 -0
  122. package/dist/adminPortal/shared/components/SearchBar.d.ts +7 -0
  123. package/dist/adminPortal/shared/components/Select.d.ts +30 -0
  124. package/dist/adminPortal/shared/components/Table.d.ts +26 -0
  125. package/dist/adminPortal/shared/components/TableActions.d.ts +15 -0
  126. package/dist/adminPortal/shared/components/Tag.d.ts +4 -0
  127. package/dist/adminPortal/shared/components/Toast.d.ts +18 -0
  128. package/dist/adminPortal/shared/components/Tooltip.d.ts +12 -0
  129. package/dist/adminPortal/shared/components/Typography.d.ts +15 -0
  130. package/dist/adminPortal/shared/components/componentInjection.d.ts +49 -0
  131. package/dist/adminPortal/shared/components/constants.d.ts +3 -0
  132. package/dist/adminPortal/shared/components/types.d.ts +15 -0
  133. package/dist/adminPortal/shared/utils/clickToCopyUtils.d.ts +15 -0
  134. package/dist/adminPortal/shared/utils/composeStyles.d.ts +60 -0
  135. package/dist/adminPortal/shared/utils/keys.d.ts +74 -0
  136. package/dist/adminPortal/shared/utils/noop.d.ts +1 -0
  137. package/dist/adminPortal/shared/utils/tableUtils.d.ts +5 -0
  138. package/dist/adminPortal/shared/utils/uniqueIds.d.ts +2 -0
  139. package/dist/adminPortal/shared/utils/useToggleState.d.ts +7 -0
  140. package/dist/adminPortal/sso/AdminPortalSSO.d.ts +28 -0
  141. package/dist/adminPortal/sso/AppDetails.d.ts +8 -0
  142. package/dist/adminPortal/sso/AttributeMappingTable.d.ts +22 -0
  143. package/dist/adminPortal/sso/CreateApplication.d.ts +5 -0
  144. package/dist/adminPortal/sso/DetailedAttributeMappingTable.d.ts +8 -0
  145. package/dist/adminPortal/sso/DetailsSection.d.ts +6 -0
  146. package/dist/adminPortal/sso/IdpInfo.d.ts +165 -0
  147. package/dist/adminPortal/sso/IdpSelect.d.ts +133 -0
  148. package/dist/adminPortal/sso/OrganizationUpdatesSection.d.ts +7 -0
  149. package/dist/adminPortal/sso/RoleAssignmentsSection.d.ts +6 -0
  150. package/dist/adminPortal/sso/SSOConnectionDetailsScreen.d.ts +4 -0
  151. package/dist/adminPortal/sso/SSOConnectionsScreen.d.ts +2 -0
  152. package/dist/adminPortal/sso/SSONewConnectionConfigureScreen.d.ts +5 -0
  153. package/dist/adminPortal/sso/SSONewConnectionScreen.d.ts +2 -0
  154. package/dist/adminPortal/sso/SSORouter.d.ts +45 -0
  155. package/dist/adminPortal/sso/TaggedConnection.d.ts +11 -0
  156. package/dist/adminPortal/sso/mountAdminPortalSSO.d.ts +15 -0
  157. package/dist/adminPortal/utils/AdminPortalUIConfigRoleDisplayProvider.d.ts +19 -0
  158. package/dist/adminPortal/utils/Connection.d.ts +9 -0
  159. package/dist/adminPortal/utils/ConnectionType.d.ts +1 -0
  160. package/dist/adminPortal/utils/FeatureStateComponent.d.ts +10 -0
  161. package/dist/adminPortal/utils/FormSectionBody.d.ts +6 -0
  162. package/dist/adminPortal/utils/arraysHaveSameContents.d.ts +20 -0
  163. package/dist/adminPortal/utils/clickToCopyUtils.d.ts +5 -0
  164. package/dist/adminPortal/utils/collator.d.ts +1 -0
  165. package/dist/adminPortal/utils/decorateCurrentMemberName.d.ts +1 -0
  166. package/dist/adminPortal/utils/fetchMembers.d.ts +15 -0
  167. package/dist/adminPortal/utils/getFeatureState.d.ts +9 -0
  168. package/dist/adminPortal/utils/getRoleDefaultDescription.d.ts +2 -0
  169. package/dist/adminPortal/utils/getRoleDefaultDisplayName.d.ts +2 -0
  170. package/dist/adminPortal/utils/getSsoRoleAssignments.d.ts +8 -0
  171. package/dist/adminPortal/utils/isEmptyObject.d.ts +1 -0
  172. package/dist/adminPortal/utils/makeUseStorage.d.ts +1 -0
  173. package/dist/adminPortal/utils/memberGetKey.d.ts +1 -0
  174. package/dist/adminPortal/utils/noValue.d.ts +1 -0
  175. package/dist/adminPortal/utils/organizationGetKey.d.ts +1 -0
  176. package/dist/adminPortal/utils/prependAsterisks.d.ts +1 -0
  177. package/dist/adminPortal/utils/roles.d.ts +2 -0
  178. package/dist/adminPortal/utils/theme.d.ts +6 -0
  179. package/dist/adminPortal/utils/useAdminPortalConfig.d.ts +17 -0
  180. package/dist/adminPortal/utils/useApiNetworkClient.d.ts +1 -0
  181. package/dist/adminPortal/utils/useB2BInternals.d.ts +1 -0
  182. package/dist/adminPortal/utils/useDebouncedState.d.ts +1 -0
  183. package/dist/adminPortal/utils/useDisplayPagination.d.ts +19 -0
  184. package/dist/adminPortal/utils/useFormState.d.ts +14 -0
  185. package/dist/adminPortal/utils/useGetRoleDescription.d.ts +2 -0
  186. package/dist/adminPortal/utils/useGetRoleDisplayName.d.ts +2 -0
  187. package/dist/adminPortal/utils/useItemsPerPage.d.ts +7 -0
  188. package/dist/adminPortal/utils/useLocalStorage.d.ts +1 -0
  189. package/dist/adminPortal/utils/useMutateMember.d.ts +4 -0
  190. package/dist/adminPortal/utils/useMutateOrganization.d.ts +4 -0
  191. package/dist/adminPortal/utils/useMutateScimConnection.d.ts +4 -0
  192. package/dist/adminPortal/utils/useMutateSsoConnection.d.ts +16 -0
  193. package/dist/adminPortal/utils/useMutateWithToast.d.ts +7 -0
  194. package/dist/adminPortal/utils/useNavigateAwayWarning.d.ts +1 -0
  195. package/dist/adminPortal/utils/useOrgInfo.d.ts +1 -0
  196. package/dist/adminPortal/utils/usePagination.d.ts +8 -0
  197. package/dist/adminPortal/utils/usePersistentFilter.d.ts +6 -0
  198. package/dist/adminPortal/utils/useRbac.d.ts +54 -0
  199. package/dist/adminPortal/utils/useRevalidateConnectionList.d.ts +1 -0
  200. package/dist/adminPortal/utils/useRoleAutocomplete.d.ts +7 -0
  201. package/dist/adminPortal/utils/useRoleDisplayInfo.d.ts +7 -0
  202. package/dist/adminPortal/utils/useRoleSortFn.d.ts +17 -0
  203. package/dist/adminPortal/utils/useRoles.d.ts +2 -0
  204. package/dist/adminPortal/utils/useScimConnection.d.ts +4 -0
  205. package/dist/adminPortal/utils/useScimConnectionGroups.d.ts +6 -0
  206. package/dist/adminPortal/utils/useSelf.d.ts +5 -0
  207. package/dist/adminPortal/utils/useSessionStorage.d.ts +1 -0
  208. package/dist/adminPortal/utils/useSsoConnections.d.ts +4 -0
  209. package/dist/adminPortal/utils/useStateSliceSetter.d.ts +2 -0
  210. package/dist/adminPortal/utils/useStytchClient.d.ts +1 -0
  211. package/dist/adminPortal/utils/useUpdateCachedMember.d.ts +5 -0
  212. package/dist/assets/CreateIcon.d.ts +6 -0
  213. package/dist/assets/amazon.d.ts +3 -0
  214. package/dist/assets/apple.d.ts +3 -0
  215. package/dist/assets/backArrow.d.ts +5 -0
  216. package/dist/assets/binance.d.ts +3 -0
  217. package/dist/assets/bitbucket.d.ts +3 -0
  218. package/dist/assets/check.d.ts +2 -0
  219. package/dist/assets/checkmark.d.ts +2 -0
  220. package/dist/assets/chevron.d.ts +3 -0
  221. package/dist/assets/coinbase.d.ts +4 -0
  222. package/dist/assets/confirmation.d.ts +2 -0
  223. package/dist/assets/copy.d.ts +3 -0
  224. package/dist/assets/cross.d.ts +2 -0
  225. package/dist/assets/discord.d.ts +3 -0
  226. package/dist/assets/errorIcon.d.ts +3 -0
  227. package/dist/assets/facebook.d.ts +3 -0
  228. package/dist/assets/figma.d.ts +3 -0
  229. package/dist/assets/genericWallet.d.ts +4 -0
  230. package/dist/assets/github.d.ts +3 -0
  231. package/dist/assets/gitlab.d.ts +3 -0
  232. package/dist/assets/gmail.d.ts +3 -0
  233. package/dist/assets/google.d.ts +3 -0
  234. package/dist/assets/hubspot.d.ts +3 -0
  235. package/dist/assets/linkedin.d.ts +3 -0
  236. package/dist/assets/metamask.d.ts +4 -0
  237. package/dist/assets/microsoft.d.ts +3 -0
  238. package/dist/assets/outlook.d.ts +3 -0
  239. package/dist/assets/passkeyAdded.d.ts +2 -0
  240. package/dist/assets/passkeys.d.ts +3 -0
  241. package/dist/assets/passkeysCollage.d.ts +2 -0
  242. package/dist/assets/passwordIcon.d.ts +5 -0
  243. package/dist/assets/pencil.d.ts +2 -0
  244. package/dist/assets/phantom.d.ts +3 -0
  245. package/dist/assets/salesforce.d.ts +3 -0
  246. package/dist/assets/slack.d.ts +3 -0
  247. package/dist/assets/snackbarError.d.ts +2 -0
  248. package/dist/assets/snackbarSuccess.d.ts +2 -0
  249. package/dist/assets/snapchat.d.ts +3 -0
  250. package/dist/assets/successIcon.d.ts +3 -0
  251. package/dist/assets/tiktok.d.ts +3 -0
  252. package/dist/assets/trash.d.ts +2 -0
  253. package/dist/assets/twitch.d.ts +3 -0
  254. package/dist/assets/twitter.d.ts +3 -0
  255. package/dist/assets/vessel.d.ts +4 -0
  256. package/dist/assets/warningIcon.d.ts +3 -0
  257. package/dist/assets/yahoo.d.ts +3 -0
  258. package/dist/assets/yahooLogo.d.ts +3 -0
  259. package/dist/b2b/HeadlessB2BOAuthClient.d.ts +100 -0
  260. package/dist/b2b/StytchB2BHeadlessClient.d.ts +50 -0
  261. package/dist/b2b/StytchB2BUIClient.d.ts +40 -0
  262. package/dist/b2b/index.d.ts +2 -0
  263. package/dist/b2b/index.esm.js +6646 -0
  264. package/dist/b2b/index.headless.d.ts +2 -0
  265. package/dist/b2b/index.headless.esm.js +1701 -0
  266. package/dist/b2b/index.headless.js +1811 -0
  267. package/dist/b2b/index.js +6756 -0
  268. package/dist/b2b/oneTap/B2BOneTapProvider.d.ts +39 -0
  269. package/dist/extractErrorMessage-DC1JOPR7.js +4502 -0
  270. package/dist/extractErrorMessage-d-i_n_7b.js +4550 -0
  271. package/dist/getPersistentStorageKey.d.ts +1 -0
  272. package/dist/index.d.ts +2 -0
  273. package/dist/index.esm.js +1 -0
  274. package/dist/index.headless.d.ts +2 -0
  275. package/dist/index.headless.esm.js +6009 -0
  276. package/dist/index.headless.js +6054 -0
  277. package/dist/index.js +1 -0
  278. package/dist/internal-ByqdZ5Eo.js +5826 -0
  279. package/dist/internal-GKxps_am.js +5919 -0
  280. package/dist/oneTap/OneTapClient.d.ts +22 -0
  281. package/dist/oneTap/OneTapProvider.d.ts +36 -0
  282. package/dist/oneTap/navigatorSupportsFedCM.d.ts +1 -0
  283. package/dist/oneTap/positionModes.d.ts +6 -0
  284. package/dist/types.d.ts +19 -0
  285. package/dist/ui/CreateWebComponent.d.ts +20 -0
  286. package/dist/ui/b2b/App.d.ts +5 -0
  287. package/dist/ui/b2b/Container.d.ts +3 -0
  288. package/dist/ui/b2b/GlobalContextProvider.d.ts +97 -0
  289. package/dist/ui/b2b/MfaState.d.ts +50 -0
  290. package/dist/ui/b2b/clearStytchSearchParams.d.ts +2 -0
  291. package/dist/ui/b2b/generateProductComponentsOrdering.d.ts +14 -0
  292. package/dist/ui/b2b/getAuthMethodsForMember.d.ts +2 -0
  293. package/dist/ui/b2b/getEnabledMethods.d.ts +5 -0
  294. package/dist/ui/b2b/getOtpCodeExpiration.d.ts +1 -0
  295. package/dist/ui/b2b/hooks/useEffectiveAuthConfig.d.ts +10 -0
  296. package/dist/ui/b2b/hooks/useEmailOtpDiscoverySend.d.ts +5 -0
  297. package/dist/ui/b2b/hooks/useEmailOtpLoginOrSignup.d.ts +6 -0
  298. package/dist/ui/b2b/hooks/useEmlDiscoverySend.d.ts +5 -0
  299. package/dist/ui/b2b/hooks/useEmlLoginOrSignup.d.ts +6 -0
  300. package/dist/ui/b2b/hooks/useIsOnlyFloatingOneTap.d.ts +1 -0
  301. package/dist/ui/b2b/mfa.d.ts +70 -0
  302. package/dist/ui/b2b/reducer.d.ts +33 -0
  303. package/dist/ui/b2b/screens/Confirmation.d.ts +2 -0
  304. package/dist/ui/b2b/screens/Discovery.d.ts +2 -0
  305. package/dist/ui/b2b/screens/EmailConfirmation.d.ts +2 -0
  306. package/dist/ui/b2b/screens/EmailForm.d.ts +3 -0
  307. package/dist/ui/b2b/screens/EmailMethodSelectionScreen.d.ts +2 -0
  308. package/dist/ui/b2b/screens/EmailOTPEntryScreen.d.ts +2 -0
  309. package/dist/ui/b2b/screens/MFAEnrollmentSelectionScreen.d.ts +2 -0
  310. package/dist/ui/b2b/screens/Main.d.ts +2 -0
  311. package/dist/ui/b2b/screens/OAuthButtons.d.ts +15 -0
  312. package/dist/ui/b2b/screens/PasswordAuthenticate.d.ts +7 -0
  313. package/dist/ui/b2b/screens/PasswordEmailForm.d.ts +2 -0
  314. package/dist/ui/b2b/screens/PasswordForgotForm.d.ts +2 -0
  315. package/dist/ui/b2b/screens/PasswordResetConfirmation.d.ts +2 -0
  316. package/dist/ui/b2b/screens/PasswordResetForm.d.ts +2 -0
  317. package/dist/ui/b2b/screens/PasswordSetNew.d.ts +2 -0
  318. package/dist/ui/b2b/screens/PasswordUseButton.d.ts +2 -0
  319. package/dist/ui/b2b/screens/RecoveryCodeEntryScreen.d.ts +2 -0
  320. package/dist/ui/b2b/screens/RecoveryCodeSaveScreen.d.ts +2 -0
  321. package/dist/ui/b2b/screens/SMSOTPEnrollScreen.d.ts +3 -0
  322. package/dist/ui/b2b/screens/SMSOTPEntryScreen.d.ts +2 -0
  323. package/dist/ui/b2b/screens/SSOButtons.d.ts +6 -0
  324. package/dist/ui/b2b/screens/TOTPEnrollManualScreen.d.ts +2 -0
  325. package/dist/ui/b2b/screens/TOTPEnrollQRScreen.d.ts +2 -0
  326. package/dist/ui/b2b/screens/TOTPEntryScreen.d.ts +2 -0
  327. package/dist/ui/b2b/utils.d.ts +37 -0
  328. package/dist/ui/b2c/App.d.ts +14 -0
  329. package/dist/ui/b2c/Container.d.ts +3 -0
  330. package/dist/ui/b2c/GlobalContextProvider.d.ts +84 -0
  331. package/dist/ui/b2c/reducer.d.ts +23 -0
  332. package/dist/ui/b2c/screens/Confirmation.d.ts +2 -0
  333. package/dist/ui/b2c/screens/Crypto/ConnectWallet.d.ts +2 -0
  334. package/dist/ui/b2c/screens/Crypto/Error.d.ts +2 -0
  335. package/dist/ui/b2c/screens/Crypto/OtherWallets.d.ts +2 -0
  336. package/dist/ui/b2c/screens/Crypto/PasskeyConfirmation.d.ts +2 -0
  337. package/dist/ui/b2c/screens/Crypto/SetupNewWallet.d.ts +2 -0
  338. package/dist/ui/b2c/screens/Crypto/SignMessage.d.ts +2 -0
  339. package/dist/ui/b2c/screens/Crypto/Success.d.ts +2 -0
  340. package/dist/ui/b2c/screens/Crypto/WalletButtons.d.ts +4 -0
  341. package/dist/ui/b2c/screens/IdentityProvider/IDPConsent.d.ts +2 -0
  342. package/dist/ui/b2c/screens/Main/LoginForm/MagicLinkForm.d.ts +2 -0
  343. package/dist/ui/b2c/screens/Main/LoginForm/OTPForm.d.ts +16 -0
  344. package/dist/ui/b2c/screens/Main/LoginForm/PasskeyButton.d.ts +2 -0
  345. package/dist/ui/b2c/screens/Main/LoginForm/PasswordForm.d.ts +2 -0
  346. package/dist/ui/b2c/screens/Main/LoginForm/index.d.ts +2 -0
  347. package/dist/ui/b2c/screens/Main/OAuthButtons.d.ts +2 -0
  348. package/dist/ui/b2c/screens/Main/index.d.ts +2 -0
  349. package/dist/ui/b2c/screens/Passkey/PasskeyRegistrationStart.d.ts +2 -0
  350. package/dist/ui/b2c/screens/Passkey/PasskeyRegistrationSuccess.d.ts +2 -0
  351. package/dist/ui/b2c/screens/Password/MagicLinkOption.d.ts +2 -0
  352. package/dist/ui/b2c/screens/Password/PasswordAuthenticate.d.ts +2 -0
  353. package/dist/ui/b2c/screens/Password/PasswordBreached.d.ts +2 -0
  354. package/dist/ui/b2c/screens/Password/PasswordDedupe.d.ts +2 -0
  355. package/dist/ui/b2c/screens/Password/PasswordForgot.d.ts +2 -0
  356. package/dist/ui/b2c/screens/Password/PasswordNewUser.d.ts +2 -0
  357. package/dist/ui/b2c/screens/Password/PasswordSecondaryMethod.d.ts +4 -0
  358. package/dist/ui/b2c/screens/Password/PasswordSetNew.d.ts +2 -0
  359. package/dist/ui/b2c/screens/Password/PasswordlessCreate.d.ts +2 -0
  360. package/dist/ui/b2c/screens/Password/ResetPassword.d.ts +2 -0
  361. package/dist/ui/b2c/screens/Secondary/EmailConfirmation.d.ts +6 -0
  362. package/dist/ui/b2c/screens/Secondary/OTPAuthenticate.d.ts +4 -0
  363. package/dist/ui/b2c/screens/Secondary/OTPConfirmation.d.ts +2 -0
  364. package/dist/ui/b2c/screens/Secondary/PasswordCreateAuthenticate.d.ts +2 -0
  365. package/dist/ui/b2c/utils.d.ts +5 -0
  366. package/dist/ui/components/AlertBox.d.ts +8 -0
  367. package/dist/ui/components/AnimatedContainer.d.ts +5 -0
  368. package/dist/ui/components/B2BOneTap.d.ts +2 -0
  369. package/dist/ui/components/Button.d.ts +5 -0
  370. package/dist/ui/components/CircularProgress.d.ts +12 -0
  371. package/dist/ui/components/Confirmation.d.ts +2 -0
  372. package/dist/ui/components/CountrySelector.d.ts +7 -0
  373. package/dist/ui/components/Divider.d.ts +2 -0
  374. package/dist/ui/components/EditableRow.d.ts +15 -0
  375. package/dist/ui/components/EmailConfirmation.d.ts +11 -0
  376. package/dist/ui/components/EmailInput.d.ts +7 -0
  377. package/dist/ui/components/ErrorScreen.d.ts +5 -0
  378. package/dist/ui/components/ErrorText.d.ts +4 -0
  379. package/dist/ui/components/Flex.d.ts +40 -0
  380. package/dist/ui/components/InlineButton.d.ts +7 -0
  381. package/dist/ui/components/Input.d.ts +1 -0
  382. package/dist/ui/components/InsetContainer.d.ts +1 -0
  383. package/dist/ui/components/Loading.d.ts +3 -0
  384. package/dist/ui/components/LoadingBar.d.ts +4 -0
  385. package/dist/ui/components/LoadingButton.d.ts +8 -0
  386. package/dist/ui/components/MainContainer.d.ts +6 -0
  387. package/dist/ui/components/MenuButton.d.ts +6 -0
  388. package/dist/ui/components/OAuthB2BButton.d.ts +14 -0
  389. package/dist/ui/components/OAuthButton.d.ts +14 -0
  390. package/dist/ui/components/OTPControl.d.ts +8 -0
  391. package/dist/ui/components/OTPEntry.d.ts +11 -0
  392. package/dist/ui/components/OTPInput.d.ts +6 -0
  393. package/dist/ui/components/OneTap.d.ts +18 -0
  394. package/dist/ui/components/OneTapErrorMessages.d.ts +7 -0
  395. package/dist/ui/components/PasswordError.d.ts +17 -0
  396. package/dist/ui/components/PasswordInput.d.ts +6 -0
  397. package/dist/ui/components/PasswordStrengthCheck.d.ts +4 -0
  398. package/dist/ui/components/PhoneInput.d.ts +10 -0
  399. package/dist/ui/components/SentOTPEntry.d.ts +10 -0
  400. package/dist/ui/components/Snackbar.d.ts +2 -0
  401. package/dist/ui/components/SubmitButton.d.ts +8 -0
  402. package/dist/ui/components/TOTPEntry.d.ts +8 -0
  403. package/dist/ui/components/Text.d.ts +9 -0
  404. package/dist/ui/components/VerifyEmailConfirmation.d.ts +10 -0
  405. package/dist/ui/components/WalletButton.d.ts +8 -0
  406. package/dist/ui/hooks/useIsMounted.d.ts +3 -0
  407. package/dist/ui/hooks/useIsOnlyFloatingOneTap.d.ts +1 -0
  408. package/dist/ui/hooks/useMountEffect.d.ts +6 -0
  409. package/dist/ui/hooks/usePromptPasskey.d.ts +7 -0
  410. package/dist/ui/hooks/useStytchUser.d.ts +2 -0
  411. package/dist/ui/theme.d.ts +124 -0
  412. package/dist/utils/Optional.d.ts +3 -0
  413. package/dist/utils/StyledComponentProps.d.ts +2 -0
  414. package/dist/utils/assertUnreachable.d.ts +1 -0
  415. package/dist/utils/crypto.d.ts +60 -0
  416. package/dist/utils/deepEqual.d.ts +1 -0
  417. package/dist/utils/extractErrorMessage.d.ts +1 -0
  418. package/dist/utils/extractErrorType.d.ts +1 -0
  419. package/dist/utils/idpHelpers.d.ts +5 -0
  420. package/dist/utils/index.d.ts +27 -0
  421. package/dist/utils/internal.d.ts +35 -0
  422. package/dist/utils/isTruthy.d.ts +3 -0
  423. package/dist/utils/oauthProviderType.d.ts +7 -0
  424. package/dist/utils/passkeys.d.ts +8 -0
  425. package/dist/utils/passwordManagerDisableAutofillProps.d.ts +3 -0
  426. package/headless/package.json +6 -0
  427. package/package.json +112 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,1383 @@
1
+ # @stytch/vanilla-js
2
+
3
+ ## 0.0.0-idp-20241212005036
4
+
5
+ ### Patch Changes
6
+
7
+ - 2b0e7e32: Fix issue where B2B UI login methods in certain combinations were shown in a different order than specified
8
+
9
+ ## 5.8.0
10
+
11
+ ### Minor Changes
12
+
13
+ - f7f4aef2: Support email OTP in B2B UI
14
+ - f7f4aef2: Add Email OTP Allowed Auth Method
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [02d96ca5]
19
+ - Updated dependencies [f7f4aef2]
20
+ - Updated dependencies [f7f4aef2]
21
+ - @stytch/core@2.34.0
22
+
23
+ ## 5.7.0
24
+
25
+ ### Minor Changes
26
+
27
+ - e85c63d6: Add in Cross-Org Password Flows to SDK UI
28
+
29
+ ### Patch Changes
30
+
31
+ - Updated dependencies [e85c63d6]
32
+ - @stytch/core@2.33.0
33
+
34
+ ## 5.6.2
35
+
36
+ ### Patch Changes
37
+
38
+ - 37b3dcd7: Improved error message for ad_blocker_detected
39
+ - fd5c8b0e: Remove workaround for setting cookies in older versions of Firefox
40
+ - a8572550: Error messages in the StytchLogin component no longer overflows the container
41
+
42
+ ## 5.6.1
43
+
44
+ ### Patch Changes
45
+
46
+ - 6390ec64: Gracefully handle localStorage exceptions
47
+ - Updated dependencies [7323668e]
48
+ - @stytch/core@2.32.0
49
+
50
+ ## 5.6.0
51
+
52
+ ### Minor Changes
53
+
54
+ - e0e84646: Adds support for GitHub as a B2B OAuth provider.
55
+
56
+ ### Patch Changes
57
+
58
+ - 7b85ee62: Admin Portal's Okta SAML SSO configuration can now be manually configured
59
+ - Updated dependencies [e0e84646]
60
+ - @stytch/core@2.31.0
61
+
62
+ ## 5.5.4
63
+
64
+ ### Patch Changes
65
+
66
+ - 42982634: Admin Portal's SSO configuration page now has improved IdP specific instructions.
67
+
68
+ ## 5.5.3
69
+
70
+ ### Patch Changes
71
+
72
+ - 5b117909: Remove unused errorMessage field.
73
+ - Updated dependencies [f77f278b]
74
+ - Updated dependencies [5b117909]
75
+ - Updated dependencies [64abf2d2]
76
+ - @stytch/core@2.30.0
77
+
78
+ ## 5.5.2
79
+
80
+ ### Patch Changes
81
+
82
+ - 5ea78051: Fix issue removing all SSO implicit role assignments via Admin Portal organization settings
83
+
84
+ ## 5.5.1
85
+
86
+ ### Patch Changes
87
+
88
+ - 953c4e34: Fix Google One Tap for B2B
89
+ - Updated dependencies [9dbf9e58]
90
+ - @stytch/core@2.29.0
91
+
92
+ ## 5.5.0
93
+
94
+ ### Minor Changes
95
+
96
+ - db75c01d: Add Role Assignments component to Admin Portal's SCIM management component
97
+
98
+ ### Patch Changes
99
+
100
+ - aafbe641: Add support for external SSO connections to Admin Portal
101
+ - e296c21a: Fix race condition when entering phone number
102
+
103
+ ## 5.4.0
104
+
105
+ ### Minor Changes
106
+
107
+ - d0b0584a: Add ability to create and update external SSO connections
108
+
109
+ ### Patch Changes
110
+
111
+ - b8a4f6a9: Ensure errors are caught when certain network requests fail in Admin Portal
112
+ - da85c4bc: Improve discovery menu UI for longer organization names
113
+ - 1e7d6888: Improve Error messages for Admin Portal components
114
+ - f2b9c90f: Fix edit SCIM group role assignments in Admin Portal's Automatic Role Assignments section
115
+ - Updated dependencies [d0b0584a]
116
+ - Updated dependencies [ae0e899e]
117
+ - @stytch/core@2.28.0
118
+
119
+ ## 5.3.1
120
+
121
+ ### Patch Changes
122
+
123
+ - d4b714d9: Allow users to perform actions for their own account in Admin portal's Member management
124
+ - 6481d2fa: In Admin Portal the Automatic Role assignments section's Save button is disabled if no changes are made.
125
+ - aae91065: Improve UX for Admin Portal SCIM configure
126
+ - 08c3ee05: Custom redirect URL query parameters are no longer cleared
127
+ - cde27656: Remove Vessel from B2C Setup a new crypto wallet screen
128
+ - 4903b416: Warn members that they cannot edit their own email address in the Admin Portal
129
+ - Updated dependencies [132a5d1e]
130
+ - @stytch/core@2.27.0
131
+
132
+ ## 5.3.0
133
+
134
+ ### Minor Changes
135
+
136
+ - 160124c9: Add Admin Portal SCIM UI. The Admin Portal SCIM UI can be rendered using the `mountAdminPortalSCIM` function from `@stytch/vanilla-js/b2b/adminPortal`.
137
+
138
+ ### Patch Changes
139
+
140
+ - 37c38c09: Added focus/hover to search bar in Admin Portal
141
+ - ee18f0c9: Improved navigation in Admin Portal
142
+ - fb578f50: Improved UX in Admin Portal
143
+ - 72314f6d: Improved UX for Admin Portal's Organization Settings
144
+ - 32da5166: Left align Add Role assignment button in Admin Portal Org settings
145
+ - 59e04104: Admin Portal buttons are now more consistent
146
+ - 2d4fe0e2: Admin Portal's improved Switch component
147
+ - d4cb6cbe: Admin Portal tables now use fixed widths
148
+ - 81c4138b: Warn members before they remove their own ability to assign roles in Admin Portal
149
+ - 4acd968d: Reordered components in Admin Portal Member Management details
150
+
151
+ ## 5.2.0
152
+
153
+ ### Minor Changes
154
+
155
+ - ac74c5e7: Support HubSpot and Slack as B2B OAuth providers
156
+
157
+ ### Patch Changes
158
+
159
+ - ac74c5e7: Handle discovered organizations supporting JIT provisioning by OAuth tenant
160
+ - Updated dependencies [ac74c5e7]
161
+ - @stytch/core@2.26.0
162
+
163
+ ## 5.1.2
164
+
165
+ ### Patch Changes
166
+
167
+ - Updated dependencies [b21b3fe6]
168
+ - @stytch/core@2.25.1
169
+
170
+ ## 5.1.1
171
+
172
+ ### Patch Changes
173
+
174
+ - Updated dependencies [0937cda9]
175
+ - Updated dependencies [0937cda9]
176
+ - @stytch/core@2.25.0
177
+
178
+ ## 5.1.0
179
+
180
+ ### Minor Changes
181
+
182
+ - a7785552: Invoke `StytchEventType.AuthenticateFlowComplete` when authentication UI flows are complete. This includes any steps that take place after obtaining a valid session, like saving recovery codes after MFA enrollment.
183
+
184
+ ### Patch Changes
185
+
186
+ - afb384ef: Fix font size for AdminPortalOrgSettings heading
187
+ - Updated dependencies [a7785552]
188
+ - Updated dependencies [e568bca5]
189
+ - @stytch/core@2.24.0
190
+
191
+ ## 5.0.0
192
+
193
+ ### Major Changes
194
+
195
+ - 3c39a997: Upgrades the Vanilla JS SDK to use a new backend implementation with increased performance, support tooling, and end-to-end observability
196
+
197
+ ## 4.18.2
198
+
199
+ ### Patch Changes
200
+
201
+ - Updated dependencies [9742b5a7]
202
+ - @stytch/core@2.23.1
203
+
204
+ ## 4.18.1
205
+
206
+ ### Patch Changes
207
+
208
+ - b705c934: Update strings in Admin Portal UI
209
+ - Updated dependencies [1ace8943]
210
+ - @stytch/core@2.23.0
211
+
212
+ ## 4.18.0
213
+
214
+ ### Minor Changes
215
+
216
+ - 2ce25093: Implements Sign in With Ethereum (SIWE) for crypto wallets
217
+ - fc59121a: Adds ability to view and unlink retired emails to HeadlessB2BOrganizationClient and HeadlessB2BSelfClient.
218
+
219
+ ### Patch Changes
220
+
221
+ - Updated dependencies [2ce25093]
222
+ - Updated dependencies [1d36ed03]
223
+ - Updated dependencies [fc59121a]
224
+ - @stytch/core@2.22.0
225
+
226
+ ## 4.17.1
227
+
228
+ ### Patch Changes
229
+
230
+ - c0cae756: Mark Admin Portal Organization UI config properties as optional
231
+ - 6701e5fa: Fix bug when organization has no active SCIM connections
232
+ - Updated dependencies [77b72734]
233
+ - Updated dependencies [6701e5fa]
234
+ - @stytch/core@2.21.2
235
+
236
+ ## 4.17.0
237
+
238
+ ### Minor Changes
239
+
240
+ - 127aa71a: Add `container.borderWidth` and `container.padding` to the Admin Portal style configuration
241
+ - bb2e68bc: Support custom role display names and descriptions in organization settings and SSO Admin Portal components
242
+
243
+ ### Patch Changes
244
+
245
+ - e55e9eef: Honor more custom themed input and button properties
246
+ - 016aa6dd: Added SCIM groups to Admin portal Organization settings
247
+ - Updated dependencies [016aa6dd]
248
+ - Updated dependencies [2ba86715]
249
+ - @stytch/core@2.21.1
250
+
251
+ ## 4.16.2
252
+
253
+ ### Patch Changes
254
+
255
+ - 089c986a: Guard references to localStorage and sessionStorage
256
+
257
+ ## 4.16.1
258
+
259
+ ### Patch Changes
260
+
261
+ - 7321ba45: Fix transparent watermark background
262
+
263
+ ## 4.16.0
264
+
265
+ ### Minor Changes
266
+
267
+ - 3183b459: Add Admin Portal Member Management UI. The Admin Portal Member Management UI can be rendered using the `mountAdminPortalMemberManagement` function from `@stytch/vanilla-js/b2b/adminPortal`.
268
+ - 871f7872: Updated theme config to support disabled buttons
269
+ - bd936f06: Adds dfppaDomain to optional SDK client configuration
270
+
271
+ ### Patch Changes
272
+
273
+ - 1b5f8e10: Fix visual bug for Powered by Stytch banner
274
+ - 1615f470: Fixed adding an SSO connection with no groups in Admin Portal Organization settings
275
+ - 481e4ff8: Update Admin Portal font sizes and spacings
276
+ - 9e1719ce: Fix Admin Portal styling conflicts with other applications using Material UI
277
+ - 71380c44: Hide secondary authentication organization settings when not configurable in Admin Portal
278
+ - Updated dependencies [e4684086]
279
+ - Updated dependencies [3183b459]
280
+ - Updated dependencies [bd936f06]
281
+ - Updated dependencies [fda896c7]
282
+ - Updated dependencies [3183b459]
283
+ - Updated dependencies [71c830d7]
284
+ - @stytch/core@2.21.0
285
+
286
+ ## 4.15.0
287
+
288
+ ### Minor Changes
289
+
290
+ - aac9a59b: Add SCIM Headless Methods
291
+
292
+ ### Patch Changes
293
+
294
+ - Updated dependencies [aac9a59b]
295
+ - @stytch/core@2.20.0
296
+
297
+ ## 4.14.1
298
+
299
+ ### Patch Changes
300
+
301
+ - Updated dependencies [06b47703]
302
+ - Updated dependencies [95964f0b]
303
+ - @stytch/core@2.19.0
304
+
305
+ ## 4.14.0
306
+
307
+ ### Minor Changes
308
+
309
+ - 1ade8d93: Add Admin Portal Org Settings UI. The Admin Portal Org Settings UI can be rendered using the `mountAdminPortalOrgSettings` function from `@stytch/vanilla-js/b2b/adminPortal`.
310
+
311
+ ### Patch Changes
312
+
313
+ - 5e45de5f: Allow users to change number of rows per page in Admin Portal tables
314
+ - Updated dependencies [e1b798f4]
315
+ - @stytch/core@2.18.0
316
+
317
+ ## 4.13.3
318
+
319
+ ### Patch Changes
320
+
321
+ - 8c1992d1: Prevent login UI buttons from submitting parent forms
322
+ - 6b6833ef: Improve role selection in Admin Portal
323
+ - Updated dependencies [bf21c792]
324
+ - @stytch/core@2.17.2
325
+
326
+ ## 4.13.2
327
+
328
+ ### Patch Changes
329
+
330
+ - e85c92d0: fix: SSO DFPPA Functionality
331
+ - 8a470eee: Gracefully handle narrower widths with phone number input
332
+
333
+ ## 4.13.1
334
+
335
+ ### Patch Changes
336
+
337
+ - Updated dependencies [31c8b4a1]
338
+ - @stytch/core@2.17.1
339
+
340
+ ## 4.13.0
341
+
342
+ ### Minor Changes
343
+
344
+ - a99f21b8: Add Admin Portal SSO UI. The Admin Portal SSO UI can be rendered using the `mountAdminPortalSSO` function from `@stytch/vanilla-js/b2b/adminPortal`.
345
+
346
+ ### Patch Changes
347
+
348
+ - 0f448e7e: Improve error messages when entering phone number.
349
+
350
+ ## 4.12.2
351
+
352
+ ### Patch Changes
353
+
354
+ - bd805fa7: Fix phone input attribute and autocomplete warnings
355
+ - fff75adf: Update recovery code download file to include organization name
356
+
357
+ ## 4.12.1
358
+
359
+ ### Patch Changes
360
+
361
+ - c8e60243: Improved error message for EML in B2B UI component
362
+
363
+ ## 4.12.0
364
+
365
+ ### Minor Changes
366
+
367
+ - cbab0c30: Give each OAuth provider a customScopes and providerParams in UI component config
368
+
369
+ ### Patch Changes
370
+
371
+ - Updated dependencies [59481ff9]
372
+ - Updated dependencies [cbab0c30]
373
+ - @stytch/core@2.17.0
374
+
375
+ ## 4.11.3
376
+
377
+ ### Patch Changes
378
+
379
+ - 52043847: Svg icons will now resize properly
380
+ - 45e8760e: Updated Icons in Login and EML inbox flows to be vanilla SVGs.
381
+ - c236bb6f: Fix empty or block when there are no SSO connections
382
+ - 41e2704d: Updated UI for the Stytch Watermark.
383
+ - Updated dependencies [066e9602]
384
+ - Updated dependencies [c3a880b8]
385
+ - @stytch/core@2.16.0
386
+
387
+ ## 4.11.2
388
+
389
+ ### Patch Changes
390
+
391
+ - Updated dependencies [07b310a]
392
+ - @stytch/core@2.15.2
393
+
394
+ ## 4.11.1
395
+
396
+ ### Patch Changes
397
+
398
+ - 2e33560: Loosen typings for various options to accept both string literals and TypeScript enums
399
+ - db67d12: Show error when slug is missing or no slug pattern matches during B2B Organization auth flow
400
+ - Updated dependencies [2e33560]
401
+ - @stytch/core@2.15.1
402
+
403
+ ## 4.11.0
404
+
405
+ ### Minor Changes
406
+
407
+ - 5f4ba4a: Add `stytch.organization.getBySlug` method to B2B clients
408
+
409
+ ### Patch Changes
410
+
411
+ - Updated dependencies [5f4ba4a]
412
+ - @stytch/core@2.15.0
413
+
414
+ ## 4.10.1
415
+
416
+ ### Patch Changes
417
+
418
+ - Updated dependencies [821c884]
419
+ - @stytch/core@2.14.1
420
+
421
+ ## 4.10.0
422
+
423
+ ### Minor Changes
424
+
425
+ - 807fcec: B2B Google One Tap is now available in the Javascript SDK and pre-built UI components!
426
+
427
+ You can enable One Tap in the UI components by editing the `B2BOAuthOptions` in your UI config - we've updated the `providers` type to accommodate One Tap. If you add `{ type: 'google', one_tap: true }` to your `providers` list, we'll show the Google One Tap prompt in the top right of the user's browser.
428
+
429
+ In the Javascript SDK, you can use the `stytch.oauth.googleOneTap.start()` and `stytch.oauth.googleOneTap.discovery.start()` methods to render the One Tap prompt, depending on if you are using an organization-specific or discovery flow.
430
+
431
+ ### Patch Changes
432
+
433
+ - Updated dependencies [807fcec]
434
+ - @stytch/core@2.14.0
435
+
436
+ ## 4.9.1
437
+
438
+ ### Patch Changes
439
+
440
+ - 6fb5732: Ensure we display friendly error messages where possible
441
+ - Updated dependencies [0055ad8]
442
+ - @stytch/core@2.13.1
443
+
444
+ ## 4.9.0
445
+
446
+ ### Minor Changes
447
+
448
+ - a0fbe9f: Add `stytch.onStateChange` event listener to headless clients
449
+ - a0fbe9f: Add `getInfo` method to user, session, member, and organization
450
+
451
+ ### Patch Changes
452
+
453
+ - Updated dependencies [a0fbe9f]
454
+ - Updated dependencies [a0fbe9f]
455
+ - @stytch/core@2.13.0
456
+
457
+ ## 4.8.0
458
+
459
+ ### Minor Changes
460
+
461
+ - b007d98: Enable FedCM for use with Google One Tap by default. For users using supported browsers (including Google Chrome and other Chromium-based browsers), Google One Tap will now use [FedCM to provide a sign in experience using native browser prompts](https://developers.google.com/identity/gsi/web/guides/fedcm-migration).
462
+
463
+ Due to changes in Google's One Tap SDK, this affects One Tap using both floating and embedded positioning. Notably, users of Chrome and other Chromium-based browsers will no longer see a embedded One Tap UI by default. Google will begin to remove support for this UI later this year. We recommend adopting the new default behavior, but we have added new position options if you require different behavior:
464
+
465
+ - `floating` remains the default option and uses Google's One Tap SDK's default behavior. It uses FedCM (native browser UI) where available, or renders a floating UI in the top right corner otherwise.
466
+ - `floatingOrEmbedded` uses FedCM where available, or renders an embedded UI in the existing SDK login form otherwise. This is the new default behavior of the `embedded` position, which has been deprecated and renamed for clarity.
467
+ - `embeddedOnly` renders the embedded UI in the existing SDK login form if FedCM is not available, or not at all otherwise. This option is not recommended for new applications. For applications that used `embedded` positioning and do not want to show floating or native browser UI, this option may be useful.
468
+ - `forceLegacyEmbedded` retains the legacy behavior by disabling FedCM support even where it is available. This option is not recommended and will stop being honored by Google in the future, at which time you will need to select a different option.
469
+
470
+ The `embedded` position will still be recognized and treated as `floatingOrEmbedded`, but we recommend updating your configuration to use the new name or a different option.
471
+
472
+ ### Patch Changes
473
+
474
+ - Updated dependencies [b007d98]
475
+ - @stytch/core@2.12.0
476
+
477
+ ## 4.7.8
478
+
479
+ ### Patch Changes
480
+
481
+ - 565ec50: Fix an issue where a B2B member enrolled in MFA with an unverified phone number was prompted to re-enter a phone number instead of the OTP that was sent to verify their number
482
+
483
+ ## 4.7.7
484
+
485
+ ### Patch Changes
486
+
487
+ - Updated dependencies [cae4f3d]
488
+ - @stytch/core@2.11.0
489
+
490
+ ## 4.7.6
491
+
492
+ ### Patch Changes
493
+
494
+ - Updated dependencies [bf6f8f6]
495
+ - @stytch/core@2.10.2
496
+
497
+ ## 4.7.5
498
+
499
+ ### Patch Changes
500
+
501
+ - 7bce4c1: Fix race condition that could lead to high CPU usage with multiple tabs open
502
+
503
+ ## 4.7.4
504
+
505
+ ### Patch Changes
506
+
507
+ - Updated dependencies [2881b68]
508
+ - @stytch/core@2.10.1
509
+
510
+ ## 4.7.3
511
+
512
+ ### Patch Changes
513
+
514
+ - Updated dependencies [b7f2e1d]
515
+ - @stytch/core@2.10.0
516
+
517
+ ## 4.7.2
518
+
519
+ ### Patch Changes
520
+
521
+ - e83a832: Added DFP functionality to users search in passwords screen
522
+ - Updated dependencies [e83a832]
523
+ - @stytch/core@2.9.1
524
+
525
+ ## 4.7.1
526
+
527
+ ### Patch Changes
528
+
529
+ - 4799cf5: Ensure API errors are handled internally
530
+
531
+ ## 4.7.0
532
+
533
+ ### Minor Changes
534
+
535
+ - f604dcb: Release RN B2C UI
536
+
537
+ ### Patch Changes
538
+
539
+ - Updated dependencies [c4c8c23]
540
+ - Updated dependencies [f604dcb]
541
+ - @stytch/core@2.9.0
542
+
543
+ ## 4.6.0
544
+
545
+ ### Minor Changes
546
+
547
+ - 692c6c7: Add support for SMS OTP and TOTP MFA flows in B2B login UI components. This includes prompting members to complete MFA when they are required to use it to authenticate, and enrolling members who are required to enroll in MFA but have not yet done so. The new `mfaProductOrder` and `mfaProductInclude` options can be used to customize the experience further.
548
+
549
+ ### Patch Changes
550
+
551
+ - Updated dependencies [692c6c7]
552
+ - @stytch/core@2.8.0
553
+
554
+ ## 4.5.5
555
+
556
+ ### Patch Changes
557
+
558
+ - 03be134: Disable use of FedCM with Google OneTap
559
+
560
+ ## 4.5.4
561
+
562
+ ### Patch Changes
563
+
564
+ - eb8e140: Fix incorrect imports
565
+ - Updated dependencies [eb8e140]
566
+ - @stytch/core@2.7.2
567
+
568
+ ## 4.5.3
569
+
570
+ ### Patch Changes
571
+
572
+ - 1c40b4c: Fixed a display bug for B2B on host websites modifying box-sizing
573
+
574
+ ## 4.5.2
575
+
576
+ ### Patch Changes
577
+
578
+ - Updated dependencies [060ee3b]
579
+ - Updated dependencies [060ee3b]
580
+ - @stytch/core@2.7.1
581
+
582
+ ## 4.5.1
583
+
584
+ ### Patch Changes
585
+
586
+ - fda956c: Fix encoding of Solana wallet signatures in UI components
587
+
588
+ ## 4.5.0
589
+
590
+ ### Minor Changes
591
+
592
+ - dcc20e2: Add `disableCreateOrganization` option to B2B UI config
593
+
594
+ ### Patch Changes
595
+
596
+ - Updated dependencies [dcc20e2]
597
+ - @stytch/core@2.7.0
598
+
599
+ ## 4.4.4
600
+
601
+ ### Patch Changes
602
+
603
+ - f86be43: Work around an issue where cookies intermittently do not persist in Firefox
604
+
605
+ ## 4.4.3
606
+
607
+ ### Patch Changes
608
+
609
+ - Updated dependencies [521fc22]
610
+ - @stytch/core@2.6.0
611
+
612
+ ## 4.4.2
613
+
614
+ ### Patch Changes
615
+
616
+ - 119952e: Fix an issue where ISTs were being deleted before they could be used
617
+ - Updated dependencies [56fd625]
618
+ - Updated dependencies [119952e]
619
+ - @stytch/core@2.5.1
620
+
621
+ ## 4.4.1
622
+
623
+ ### Patch Changes
624
+
625
+ - 7754915: Re-order and align phone number country code list with allowed countries
626
+
627
+ ## 4.4.0
628
+
629
+ ### Minor Changes
630
+
631
+ - 50bb749: Adds headless methods for interacting with b2b recovery codes
632
+
633
+ ### Patch Changes
634
+
635
+ - Updated dependencies [50bb749]
636
+ - Updated dependencies [e4c0a70]
637
+ - @stytch/core@2.5.0
638
+
639
+ ## 4.3.2
640
+
641
+ ### Patch Changes
642
+
643
+ - Updated dependencies [61417c3]
644
+ - @stytch/core@2.4.2
645
+
646
+ ## 4.3.1
647
+
648
+ ### Patch Changes
649
+
650
+ - 3ca7557: Honor `hideHeaderText` configuration for B2B UI
651
+ - Updated dependencies [e21c507]
652
+ - @stytch/core@2.4.1
653
+
654
+ ## 4.3.0
655
+
656
+ ### Minor Changes
657
+
658
+ - 5877da8: Add support for theming inputs in UI components
659
+
660
+ ### Patch Changes
661
+
662
+ - Updated dependencies [5877da8]
663
+ - @stytch/core@2.4.0
664
+
665
+ ## 4.2.1
666
+
667
+ ### Patch Changes
668
+
669
+ - Updated dependencies [c50b9ad]
670
+ - @stytch/core@2.3.0
671
+
672
+ ## 4.2.0
673
+
674
+ ### Minor Changes
675
+
676
+ - 223e30e: Add `organization.getSync` and `organization.onChange` methods to B2B client
677
+
678
+ ### Patch Changes
679
+
680
+ - Updated dependencies [223e30e]
681
+ - @stytch/core@2.2.0
682
+
683
+ ## 4.1.2
684
+
685
+ ### Patch Changes
686
+
687
+ - bf841b1: Fix B2B discovery flow when SSO is enabled with auth methods besides magic links
688
+
689
+ ## 4.1.1
690
+
691
+ ### Patch Changes
692
+
693
+ - e6832cb: Fix an issue where `fromCache` would not update to `false` after cached data was refreshed
694
+
695
+ ## 4.1.0
696
+
697
+ ### Minor Changes
698
+
699
+ - 2379b29: Add B2B TOTPs (Create/Authenticate)
700
+
701
+ ### Patch Changes
702
+
703
+ - Updated dependencies [2379b29]
704
+ - @stytch/core@2.1.0
705
+
706
+ ## 4.0.0
707
+
708
+ ### Major Changes
709
+
710
+ - b34293a: Improvements to error types in the JS and React Native SDKs
711
+
712
+ ### Minor Changes
713
+
714
+ - 6890694: Mark stytch.member as deprecated in favor of stytch.self
715
+ Adds RBAC functionality
716
+
717
+ ### Patch Changes
718
+
719
+ - 9ee61b3: Allow "Login without a password" to immediately login a user who followed a valid password reset link
720
+ - c3c108b: Remove bundled dependencies from package manifest
721
+ - Updated dependencies [76ad832]
722
+ - Updated dependencies [b34293a]
723
+ - Updated dependencies [b34293a]
724
+ - Updated dependencies [6890694]
725
+ - @stytch/core@2.0.0
726
+
727
+ ## 3.2.5
728
+
729
+ ### Patch Changes
730
+
731
+ - 70cf053: Adding better handling for Passkey cross device errors.
732
+
733
+ ## 3.2.4
734
+
735
+ ### Patch Changes
736
+
737
+ - 0637fc3: Switch from using React to Preact
738
+
739
+ ## 3.2.3
740
+
741
+ ### Patch Changes
742
+
743
+ - 2f46248: Add an updated config object for logging members in directly when they have a single membership
744
+ - Updated dependencies [2f46248]
745
+ - @stytch/core@1.4.2
746
+
747
+ ## 3.2.2
748
+
749
+ ### Patch Changes
750
+
751
+ - 7666f2b: Remove phone number dependency to improve bundle size in vanilla-js
752
+ - 6ece044: Add an optional config property in the B2B SDK to skip the discovery flow if a member is part of a single organization
753
+ - Updated dependencies [7666f2b]
754
+ - Updated dependencies [6ece044]
755
+ - @stytch/core@1.4.1
756
+
757
+ ## 3.2.1
758
+
759
+ ### Patch Changes
760
+
761
+ - 8cd6801: Add Update/Delete Registrations UI
762
+ - bb0c31e: Passkeys: Add Update/Delete Registration UI
763
+
764
+ ## 3.2.0
765
+
766
+ ### Minor Changes
767
+
768
+ - ec1962c: Enable passthrough OAuth paramters from UI configuration
769
+
770
+ ### Patch Changes
771
+
772
+ - Updated dependencies [ec1962c]
773
+ - @stytch/core@1.4.0
774
+
775
+ ## 3.1.1
776
+
777
+ ### Patch Changes
778
+
779
+ - 8fa9aeb: fix: AbortController Logic Passkey Authenticate
780
+
781
+ ## 3.1.0
782
+
783
+ ### Minor Changes
784
+
785
+ - 8cff174: B2C Passkeys Headless Support & UI components
786
+
787
+ ### Patch Changes
788
+
789
+ - Updated dependencies [8cff174]
790
+ - @stytch/core@1.3.0
791
+
792
+ ## 3.0.3
793
+
794
+ ### Patch Changes
795
+
796
+ - 965680c: Remove PasswordEMLCombinedDiscovery
797
+ - 32ed73a: Resolved a critical severity vulnerability with the @babel/traverse dependency
798
+ - Updated dependencies [ecef75b]
799
+ - Updated dependencies [2b9ed9c]
800
+ - Updated dependencies [32ed73a]
801
+ - @stytch/core@1.2.3
802
+
803
+ ## 3.0.2
804
+
805
+ ### Patch Changes
806
+
807
+ - 8c587e3: Update B2B Password Reset by Session to stay logged in
808
+ - 70475b5: remove unnecessary organization_id param from passwords.resetBySession in B2B client
809
+ - 5d13cfe: Minor copy change on the B2B Passwords UI component
810
+ - Updated dependencies [70475b5]
811
+ - Updated dependencies [311388d]
812
+ - @stytch/core@1.2.2
813
+
814
+ ## 3.0.1
815
+
816
+ ### Patch Changes
817
+
818
+ - b402097: Bug fix for clearing the local storage state and cookies when a stale session exists while using the SDK across subdomains
819
+
820
+ ## 3.0.0
821
+
822
+ ### Major Changes
823
+
824
+ - 5dd9d24: Change export of B2B Headless Client to separate subpackage to improve tree-shaking performance
825
+
826
+ ```javascript
827
+ import { StytchB2BHeadlessClient } from '@stytch/vanilla-js/b2b';
828
+ ```
829
+
830
+ Is now updated to
831
+
832
+ ```javascript
833
+ import { StytchB2BHeadlessClient } from '@stytch/vanilla-js/b2b/headless';
834
+ ```
835
+
836
+ ## 2.2.2
837
+
838
+ ### Patch Changes
839
+
840
+ - 3c4fa89: Don't delete cookies from datalayer, let SubscriptionService handle instead.
841
+
842
+ ## 2.2.1
843
+
844
+ ### Patch Changes
845
+
846
+ - Updated dependencies [04cec1b]
847
+ - @stytch/core@1.2.1
848
+
849
+ ## 2.2.0
850
+
851
+ ### Minor Changes
852
+
853
+ - 7c1940e: Add DFP Protectd Auth JS final release
854
+
855
+ ### Patch Changes
856
+
857
+ - 47eb388: Add Device Fingerprinting to the React Native SDK
858
+ - d008ef5: Don't delete cookies from the datalayer just because the localstorage is empty
859
+ - 47eb388: Add support for Observation and decisioning mode for DFP
860
+ - Updated dependencies [47eb388]
861
+ - Updated dependencies [47eb388]
862
+ - Updated dependencies [7c1940e]
863
+ - @stytch/core@1.2.0
864
+
865
+ ## 2.1.1
866
+
867
+ ### Patch Changes
868
+
869
+ - Updated dependencies [ab22732]
870
+ - @stytch/core@1.1.1
871
+
872
+ ## 2.1.0
873
+
874
+ ### Minor Changes
875
+
876
+ - 67d42f0: Add Device Fingerprinting Bot Detection to SDKs
877
+
878
+ ### Patch Changes
879
+
880
+ - Updated dependencies [67d42f0]
881
+ - Updated dependencies [42bf09d]
882
+ - Updated dependencies [a07cf3a]
883
+ - @stytch/core@1.1.0
884
+
885
+ ## 2.0.5
886
+
887
+ ### Patch Changes
888
+
889
+ - 81c47aa: Add new option to confiugre domain cookie should be set to
890
+ - 0bac513: Fixed a display bug on host websites modifying box-sizing
891
+ - 8066f95: fix bug with alignment of PhoneInput
892
+ - Updated dependencies [81c47aa]
893
+ - @stytch/core@1.0.1
894
+
895
+ ## 2.0.4
896
+
897
+ ### Patch Changes
898
+
899
+ - 2b8f0e6: Fix PKCE logic for password resets log in without password flow
900
+ - Updated dependencies [2b8f0e6]
901
+ - @stytch/core@1.0.0
902
+
903
+ ## 2.0.3
904
+
905
+ ### Patch Changes
906
+
907
+ - 1b1ea1b: updateStateAndTokens call in resetBySession and resetExistingPassword
908
+ - 47cd46c: fix bug where password reset email for returning passwordless user is not sent
909
+ - Updated dependencies [1b1ea1b]
910
+ - @stytch/core@0.15.2
911
+
912
+ ## 2.0.2
913
+
914
+ ### Patch Changes
915
+
916
+ - 0a18c34: Add docs for new verified fields on Member objects, and fix some docs links
917
+ - Updated dependencies [0a18c34]
918
+ - @stytch/core@0.15.1
919
+
920
+ ## 2.0.1
921
+
922
+ ### Patch Changes
923
+
924
+ - 9fd5d96: Define behavior for when SSO is only allowed auth method during discovery
925
+
926
+ ## 2.0.0
927
+
928
+ ### Major Changes
929
+
930
+ - a4083c7: Breaking Changes: The intermediate session token (IST) will no longer be accepted as an argument for the discovery list organizations, intermediate sessions exchange, and create organization via discovery endpoints. The IST will be passed in automatically. ISTs are stored as browser cookies or persisted on device when they are generated after calls to discovery authenticate endpoints, such as email magic link discovery authenticate, or primary authenticate endpoints in the case where MFA is required, such as email magic link authenticate or SSO authenticate.
931
+
932
+ New Features: Our B2B product now supports multi-factor authentication (MFA) with one-time passcodes (OTPs) via SMS. MFA policies can be set on the Organization level or on the Member level. See the Stytch docs for more information.
933
+
934
+ ### Patch Changes
935
+
936
+ - Updated dependencies [a4083c7]
937
+ - @stytch/core@0.15.0
938
+
939
+ ## 1.1.4
940
+
941
+ ### Patch Changes
942
+
943
+ - f3d8a3b: Updated UI to include error message for breached passwords. Added missing `breach_detection_on_create` key in the strength check response
944
+ - Updated dependencies [f3d8a3b]
945
+ - @stytch/core@0.14.4
946
+
947
+ ## 1.1.3
948
+
949
+ ### Patch Changes
950
+
951
+ - 83c017e: Updated types for the password strength method. Updated UI for the password strength check while using LUDS
952
+ - Updated dependencies [83c017e]
953
+ - @stytch/core@0.14.3
954
+
955
+ ## 1.1.2
956
+
957
+ ### Patch Changes
958
+
959
+ - 00eb1ce: Yahoo OAuth Fix (build)
960
+ - Updated dependencies [00eb1ce]
961
+ - @stytch/core@0.14.2
962
+
963
+ ## 1.1.1
964
+
965
+ ### Patch Changes
966
+
967
+ - e97e8ba: Yahoo OAuth
968
+ - Updated dependencies [e97e8ba]
969
+ - @stytch/core@0.14.1
970
+
971
+ ## 1.1.0
972
+
973
+ ### Minor Changes
974
+
975
+ - e7302d7: The intermediate session token will now be stored as a cookie after calls to the B2B magic link discovery authenticate endpoint and the OAuth discovery authenticate endpoint.
976
+
977
+ ### Patch Changes
978
+
979
+ - Updated dependencies [e7302d7]
980
+ - @stytch/core@0.14.0
981
+
982
+ ## 1.0.5
983
+
984
+ ### Patch Changes
985
+
986
+ - d847d9d: Added new OAuth Providers
987
+ - Updated dependencies [d847d9d]
988
+ - @stytch/core@0.13.5
989
+
990
+ ## 1.0.4
991
+
992
+ ### Patch Changes
993
+
994
+ - Updated dependencies [2443028]
995
+ - @stytch/core@0.13.4
996
+
997
+ ## 1.0.3
998
+
999
+ ### Patch Changes
1000
+
1001
+ - a8eac13: Update input type and mode for OTPs
1002
+
1003
+ ## 1.0.2
1004
+
1005
+ ### Patch Changes
1006
+
1007
+ - 89237c6: Fix a bug where Floating One Tap stays around after StytchLogin unmounts.
1008
+
1009
+ ## 1.0.1
1010
+
1011
+ ### Patch Changes
1012
+
1013
+ - 22503eb: Exposes API errors to the UI when attempting to create a new password instead of logging in with a passwordless method
1014
+
1015
+ ## 1.0.0
1016
+
1017
+ ### Major Changes
1018
+
1019
+ - f9c36c9: An additional configuration property to let developers render the Stytch SDK UI through the Shadow DOM. This is a major version change on the `@stytch/vanilla-js` package as the previous versions would render the UI through the Shadow DOM by default. It will now default to false. When the Shadow DOM is disabled, this also fixes an issue with the SDK UI to allow for emails and passwords to be auto-filled, along with support for browser password managers.
1020
+
1021
+ ### Patch Changes
1022
+
1023
+ - Updated dependencies [f9c36c9]
1024
+ - @stytch/core@0.13.3
1025
+
1026
+ ## 0.14.5
1027
+
1028
+ ### Patch Changes
1029
+
1030
+ - 9cfc339: update the consumer password flow to not let users change their email while signing up or logging in with their password
1031
+ - 55dcfdb: Add B2B OAuth
1032
+ - 84fd502: B2B OAuth UI
1033
+ - Updated dependencies [55dcfdb]
1034
+ - Updated dependencies [84fd502]
1035
+ - @stytch/core@0.13.2
1036
+
1037
+ ## 0.14.4
1038
+
1039
+ ### Patch Changes
1040
+
1041
+ - cf3094c: Fixes a bug with autocomplete in email fields on mobile.
1042
+
1043
+ ## 0.14.3
1044
+
1045
+ ### Patch Changes
1046
+
1047
+ - 0a626d1: bug fix for the B2B SDK UI: only showing the allowed auth methods when an organization has restricted auth methods
1048
+ - Updated dependencies [0a626d1]
1049
+ - @stytch/core@0.13.1
1050
+
1051
+ ## 0.14.2
1052
+
1053
+ ### Patch Changes
1054
+
1055
+ - Updated dependencies [91c0ee1]
1056
+ - @stytch/core@0.13.0
1057
+
1058
+ ## 0.14.1
1059
+
1060
+ ### Patch Changes
1061
+
1062
+ - Updated dependencies [1f54b59]
1063
+ - Updated dependencies [459b8e5]
1064
+ - @stytch/core@0.12.1
1065
+
1066
+ ## 0.14.0
1067
+
1068
+ ### Minor Changes
1069
+
1070
+ - c8e2d0b: B2B Passwords UI components
1071
+
1072
+ ### Patch Changes
1073
+
1074
+ - Updated dependencies [c8e2d0b]
1075
+ - @stytch/core@0.12.0
1076
+
1077
+ ## 0.13.4
1078
+
1079
+ ### Patch Changes
1080
+
1081
+ - 0d80d2e: Fix for the onEvent callback while creating a new organization in the B2B SDK UI. Missing export for the nextjs B2B package
1082
+
1083
+ ## 0.13.3
1084
+
1085
+ ### Patch Changes
1086
+
1087
+ - 26debeb: Fix support for the Passwords UI flow when developers have enabled LUDS in their passwords strength check config
1088
+
1089
+ ## 0.13.2
1090
+
1091
+ ### Patch Changes
1092
+
1093
+ - Updated dependencies [e1fd555]
1094
+ - Updated dependencies [b1ac8be]
1095
+ - Updated dependencies [1309266]
1096
+ - @stytch/core@0.11.1
1097
+
1098
+ ## 0.13.1
1099
+
1100
+ ### Patch Changes
1101
+
1102
+ - 5edfad8: Fixed a bug in the Consumer UI component while trying to click on the "Login without a password" button on the Forgot Password screen
1103
+ - 2c1c40b: Fixes for minor styling issues in our consumer SDK UI components
1104
+
1105
+ ## 0.13.0
1106
+
1107
+ ### Minor Changes
1108
+
1109
+ - 15dbe7d: Releasing UI components for our B2B SDKs.
1110
+
1111
+ ### Patch Changes
1112
+
1113
+ - Updated dependencies [15dbe7d]
1114
+ - @stytch/core@0.11.0
1115
+
1116
+ ## 0.12.1
1117
+
1118
+ ### Patch Changes
1119
+
1120
+ - 8d68904: Allow for empty strings in token/JWT
1121
+ - Updated dependencies [8d68904]
1122
+ - @stytch/core@0.10.1
1123
+
1124
+ ## 0.12.0
1125
+
1126
+ ### Minor Changes
1127
+
1128
+ - dde1f2a: Add B2B Passwords headless client
1129
+
1130
+ ### Patch Changes
1131
+
1132
+ - 6a27584: Make organization name and slug optional for discovery organization create
1133
+ - Updated dependencies [dde1f2a]
1134
+ - Updated dependencies [6a27584]
1135
+ - @stytch/core@0.10.0
1136
+
1137
+ ## 0.11.4
1138
+
1139
+ ### Patch Changes
1140
+
1141
+ - Updated dependencies [c1a312c]
1142
+ - @stytch/core@0.9.0
1143
+
1144
+ ## 0.11.3
1145
+
1146
+ ### Patch Changes
1147
+
1148
+ - 79ca7ba: Add locale argument to B2B email magic link methods
1149
+ - Updated dependencies [79ca7ba]
1150
+ - @stytch/core@0.8.2
1151
+
1152
+ ## 0.11.2
1153
+
1154
+ ### Patch Changes
1155
+
1156
+ - c924765: Include the b2b directory in package.json for the B2B SDK entrypoint
1157
+
1158
+ ## 0.11.1
1159
+
1160
+ ### Patch Changes
1161
+
1162
+ - 8e01eef: Fixes for bugs in the session logic when users are logged into multiple tabs
1163
+ - b55bc55: Add Session.updateSession to hydrate sessions from the backend
1164
+ - Updated dependencies [8e01eef]
1165
+ - Updated dependencies [b55bc55]
1166
+ - @stytch/core@0.8.1
1167
+
1168
+ ## 0.11.0
1169
+
1170
+ ### Minor Changes
1171
+
1172
+ - c0e42bc: Add B2B Discovery headless client and session exchange method
1173
+
1174
+ ### Patch Changes
1175
+
1176
+ - Updated dependencies [c0e42bc]
1177
+ - @stytch/core@0.8.0
1178
+
1179
+ ## 0.10.10
1180
+
1181
+ ### Patch Changes
1182
+
1183
+ - abfb9aa: Adding logic to ensure there is only a single session cookie when the availableToSubdomains boolean is flipped
1184
+
1185
+ ## 0.10.9
1186
+
1187
+ ### Patch Changes
1188
+
1189
+ - Updated dependencies
1190
+ - @stytch/core@0.7.7
1191
+
1192
+ ## 0.10.8
1193
+
1194
+ ### Patch Changes
1195
+
1196
+ - Updated dependencies [8ad1ec9]
1197
+ - @stytch/core@0.7.6
1198
+
1199
+ ## 0.10.7
1200
+
1201
+ ### Patch Changes
1202
+
1203
+ - 1652706: Fix session/user persisting after logging out
1204
+ - Updated dependencies [1652706]
1205
+ - @stytch/core@0.7.5
1206
+
1207
+ ## 0.10.6
1208
+
1209
+ ### Patch Changes
1210
+
1211
+ - ca5a31d: SDK-877 Fix session/user persisting after logging out
1212
+ - Updated dependencies [36c8114]
1213
+ - Updated dependencies [ca5a31d]
1214
+ - @stytch/core@0.7.4
1215
+
1216
+ ## 0.10.5
1217
+
1218
+ ### Patch Changes
1219
+
1220
+ - Updated dependencies [c6db664]
1221
+ - Updated dependencies [21e88af]
1222
+ - Updated dependencies [3f1f1ea]
1223
+ - @stytch/core@0.7.3
1224
+
1225
+ ## 0.10.4
1226
+
1227
+ ### Patch Changes
1228
+
1229
+ - e20ea7a: Added Google One Tap to the Headless OAuth Client
1230
+
1231
+ ## 0.10.3
1232
+
1233
+ ### Patch Changes
1234
+
1235
+ - Updated dependencies [bf518f8]
1236
+ - @stytch/core@0.7.2
1237
+
1238
+ ## 0.10.2
1239
+
1240
+ ### Patch Changes
1241
+
1242
+ - f1810c4: Add React Native OAuth callback, PKCE fix
1243
+ - Updated dependencies [f1810c4]
1244
+ - @stytch/core@0.7.1
1245
+
1246
+ ## 0.10.1
1247
+
1248
+ ### Patch Changes
1249
+
1250
+ - UI bugfixes
1251
+
1252
+ ## 0.10.0
1253
+
1254
+ ### Minor Changes
1255
+
1256
+ - Launching B2B SDKs
1257
+
1258
+ ### Patch Changes
1259
+
1260
+ - Updated dependencies
1261
+ - @stytch/core@0.7.0
1262
+
1263
+ ## 0.9.5
1264
+
1265
+ ### Patch Changes
1266
+
1267
+ - Updated dependencies
1268
+ - @stytch/core@0.6.1
1269
+
1270
+ ## 0.9.4
1271
+
1272
+ ### Patch Changes
1273
+
1274
+ - Updated dependencies
1275
+ - @stytch/core@0.6.0
1276
+
1277
+ ## 0.9.3
1278
+
1279
+ ### Patch Changes
1280
+
1281
+ - Fix cookie options
1282
+
1283
+ ## 0.9.2
1284
+
1285
+ ### Patch Changes
1286
+
1287
+ - Release Stytch Client Options
1288
+ - Updated dependencies
1289
+ - @stytch/core@0.5.1
1290
+
1291
+ ## 0.9.1
1292
+
1293
+ ### Patch Changes
1294
+
1295
+ - Fix one tap floating bug
1296
+
1297
+ ## 0.9.0
1298
+
1299
+ ### Minor Changes
1300
+
1301
+ - Fix Google One Tap
1302
+
1303
+ ## 0.6.0
1304
+
1305
+ ### Minor Changes
1306
+
1307
+ - Add support for template ID parameters to Magic link Login or create and Send methods, Email OTP Login or create and Send methods, and Reset Password Start
1308
+
1309
+ ### Patch Changes
1310
+
1311
+ - ac0cf89: Bold email on confirmation screen
1312
+ - Updated dependencies
1313
+ - @stytch/core@0.5.0
1314
+
1315
+ ## 0.5.5
1316
+
1317
+ ### Patch Changes
1318
+
1319
+ - Fix bug with PKCE code verifiers being shared over multiple methods
1320
+
1321
+ ## 0.5.4
1322
+
1323
+ ### Patch Changes
1324
+
1325
+ - Updated dependencies
1326
+ - @stytch/core@0.4.9
1327
+
1328
+ ## 0.5.3
1329
+
1330
+ ### Patch Changes
1331
+
1332
+ - Updated dependencies
1333
+ - @stytch/core@0.4.7
1334
+
1335
+ ## 0.5.2
1336
+
1337
+ ### Patch Changes
1338
+
1339
+ - Updated dependencies
1340
+ - @stytch/core@0.4.6
1341
+
1342
+ ## 0.5.1
1343
+
1344
+ ### Patch Changes
1345
+
1346
+ - Fix bug with divider not showing for passwords
1347
+ - Updated dependencies [b68343c]
1348
+ - @stytch/core@0.4.5
1349
+
1350
+ ## 0.5.0
1351
+
1352
+ ### Minor Changes
1353
+
1354
+ - new styling config
1355
+
1356
+ ### Patch Changes
1357
+
1358
+ - 422c698: Add type definitions for User Metadata fields
1359
+ - Updated dependencies [422c698]
1360
+ - Updated dependencies
1361
+ - @stytch/core@0.4.4
1362
+
1363
+ ## 0.4.6
1364
+
1365
+ ### Patch Changes
1366
+
1367
+ - Add support for custom email domains in magic link confirmation screen
1368
+ - Updated dependencies
1369
+ - @stytch/core@0.4.3
1370
+
1371
+ ## 0.4.5
1372
+
1373
+ ### Patch Changes
1374
+
1375
+ - Google one tap animation
1376
+
1377
+ ## 0.4.4
1378
+
1379
+ ### Patch Changes
1380
+
1381
+ - Send methods in the SDK
1382
+ - Updated dependencies
1383
+ - @stytch/core@0.4.2