@stytch/nextjs 3.0.2 → 5.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 +20 -0
- package/dist/b2b/index.d.ts +2 -2
- package/dist/b2b/index.esm.d.ts +2 -2
- package/dist/b2b/index.esm.js +5009 -460
- package/dist/b2b/index.js +5005 -456
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @stytch/nextjs
|
|
2
2
|
|
|
3
|
+
## 5.0.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 15dbe7d: Releasing UI components for our B2B SDKs.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [15dbe7d]
|
|
12
|
+
- @stytch/vanilla-js@0.13.0
|
|
13
|
+
|
|
14
|
+
## 4.0.0
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 6a27584: Make organization name and slug optional for discovery organization create
|
|
19
|
+
- Updated dependencies [dde1f2a]
|
|
20
|
+
- Updated dependencies [6a27584]
|
|
21
|
+
- @stytch/vanilla-js@0.12.0
|
|
22
|
+
|
|
3
23
|
## 3.0.2
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/dist/b2b/index.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import React from "react";
|
|
3
3
|
import { ReactNode } from "react";
|
|
4
|
-
import { StytchB2BHeadlessClient, Member, MemberSession } from "@stytch/vanilla-js/b2b/";
|
|
4
|
+
import { StytchB2BHeadlessClient, StytchB2BUIClient, Member, MemberSession } from "@stytch/vanilla-js/b2b/";
|
|
5
5
|
import { StytchB2BHeadlessClient as StytchB2BHeadlessClient$0 } from "@stytch/vanilla-js/b2b";
|
|
6
6
|
/**
|
|
7
7
|
* The Stytch Client object passed in to <StytchProvider /> in your `_app.js`.
|
|
8
8
|
* Either a StytchUIClient or StytchHeadlessClient.
|
|
9
9
|
*/
|
|
10
|
-
type StytchB2BClient = StytchB2BHeadlessClient;
|
|
10
|
+
type StytchB2BClient = StytchB2BHeadlessClient | StytchB2BUIClient;
|
|
11
11
|
type SWRMember = {
|
|
12
12
|
member: null;
|
|
13
13
|
fromCache: false;
|
package/dist/b2b/index.esm.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import React from "react";
|
|
3
3
|
import { ReactNode } from "react";
|
|
4
|
-
import { StytchB2BHeadlessClient, Member, MemberSession } from "@stytch/vanilla-js/b2b/";
|
|
4
|
+
import { StytchB2BHeadlessClient, StytchB2BUIClient, Member, MemberSession } from "@stytch/vanilla-js/b2b/";
|
|
5
5
|
import { StytchB2BHeadlessClient as StytchB2BHeadlessClient$0 } from "@stytch/vanilla-js/b2b";
|
|
6
6
|
/**
|
|
7
7
|
* The Stytch Client object passed in to <StytchProvider /> in your `_app.js`.
|
|
8
8
|
* Either a StytchUIClient or StytchHeadlessClient.
|
|
9
9
|
*/
|
|
10
|
-
type StytchB2BClient = StytchB2BHeadlessClient;
|
|
10
|
+
type StytchB2BClient = StytchB2BHeadlessClient | StytchB2BUIClient;
|
|
11
11
|
type SWRMember = {
|
|
12
12
|
member: null;
|
|
13
13
|
fromCache: false;
|