@stytch/vanilla-js 0.14.4 → 1.0.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # @stytch/vanilla-js
2
2
 
3
+ ## 1.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - 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.
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [f9c36c9]
12
+ - @stytch/core@0.13.3
13
+
14
+ ## 0.14.5
15
+
16
+ ### Patch Changes
17
+
18
+ - 9cfc339: update the consumer password flow to not let users change their email while signing up or logging in with their password
19
+ - 55dcfdb: Add B2B OAuth
20
+ - 84fd502: B2B OAuth UI
21
+ - Updated dependencies [55dcfdb]
22
+ - Updated dependencies [84fd502]
23
+ - @stytch/core@0.13.2
24
+
3
25
  ## 0.14.4
4
26
 
5
27
  ### Patch Changes
@@ -1,4 +1,4 @@
1
- import { IHeadlessB2BSessionClient, IHeadlessB2BMagicLinksClient, IHeadlessB2BOrganizationClient, IHeadlessB2BMemberClient, IHeadlessB2BSSOClient, IHeadlessB2BDiscoveryClient, StytchClientOptions } from "@stytch/core/public";
1
+ import { IHeadlessB2BSessionClient, IHeadlessB2BMagicLinksClient, IHeadlessB2BOrganizationClient, IHeadlessB2BOAuthClient, IHeadlessB2BMemberClient, IHeadlessB2BSSOClient, IHeadlessB2BDiscoveryClient, StytchClientOptions } from "@stytch/core/public";
2
2
  import { Callbacks as Callbacks$0 } from "@stytch/core/public";
3
3
  import { StyleConfig as StyleConfig$0 } from "@stytch/core/public";
4
4
  import { StytchB2BUIConfig as StytchB2BUIConfig$0 } from "@stytch/core/public";
@@ -515,6 +515,7 @@ declare class StytchB2BHeadlessClient {
515
515
  session: IHeadlessB2BSessionClient;
516
516
  member: IHeadlessB2BMemberClient;
517
517
  organization: IHeadlessB2BOrganizationClient;
518
+ oauth: IHeadlessB2BOAuthClient;
518
519
  sso: IHeadlessB2BSSOClient;
519
520
  discovery: IHeadlessB2BDiscoveryClient;
520
521
  passwords: IHeadlessB2BPasswordClient;
@@ -1,4 +1,4 @@
1
- import { IHeadlessB2BSessionClient, IHeadlessB2BMagicLinksClient, IHeadlessB2BOrganizationClient, IHeadlessB2BMemberClient, IHeadlessB2BSSOClient, IHeadlessB2BDiscoveryClient, StytchClientOptions } from "@stytch/core/public";
1
+ import { IHeadlessB2BSessionClient, IHeadlessB2BMagicLinksClient, IHeadlessB2BOrganizationClient, IHeadlessB2BOAuthClient, IHeadlessB2BMemberClient, IHeadlessB2BSSOClient, IHeadlessB2BDiscoveryClient, StytchClientOptions } from "@stytch/core/public";
2
2
  import { Callbacks as Callbacks$0 } from "@stytch/core/public";
3
3
  import { StyleConfig as StyleConfig$0 } from "@stytch/core/public";
4
4
  import { StytchB2BUIConfig as StytchB2BUIConfig$0 } from "@stytch/core/public";
@@ -515,6 +515,7 @@ declare class StytchB2BHeadlessClient {
515
515
  session: IHeadlessB2BSessionClient;
516
516
  member: IHeadlessB2BMemberClient;
517
517
  organization: IHeadlessB2BOrganizationClient;
518
+ oauth: IHeadlessB2BOAuthClient;
518
519
  sso: IHeadlessB2BSSOClient;
519
520
  discovery: IHeadlessB2BDiscoveryClient;
520
521
  passwords: IHeadlessB2BPasswordClient;