@stytch/nextjs 0.4.5 → 0.5.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 +17 -0
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @stytch/nextjs
|
|
2
2
|
|
|
3
|
+
## 0.5.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 422c698: Add type definitions for User Metadata fields
|
|
8
|
+
- Updated dependencies [422c698]
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @stytch/vanilla-js@0.5.0
|
|
11
|
+
|
|
12
|
+
## 0.4.6
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Add support for custom email domains in magic link confirmation screen
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
- @stytch/vanilla-js@0.4.6
|
|
19
|
+
|
|
3
20
|
## 0.4.5
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stytch/nextjs",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "Stytch's official Next.js Library",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.esm.js",
|
|
@@ -21,13 +21,14 @@
|
|
|
21
21
|
"author": "Stytch",
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@babel/runtime": "7.18.6",
|
|
24
|
-
"@stytch/vanilla-js": "0.
|
|
24
|
+
"@stytch/vanilla-js": "0.5.0",
|
|
25
|
+
"@testing-library/react": "12.1.3",
|
|
25
26
|
"eslint-config-custom": "0.0.0",
|
|
26
27
|
"rollup": "2.56.3",
|
|
27
28
|
"typescript": "4.7.4"
|
|
28
29
|
},
|
|
29
30
|
"peerDependencies": {
|
|
30
|
-
"@stytch/vanilla-js": "^0.
|
|
31
|
+
"@stytch/vanilla-js": "^0.5.0",
|
|
31
32
|
"react": ">= 17.0.2",
|
|
32
33
|
"react-dom": ">= 17.0.2"
|
|
33
34
|
},
|