@stytch/react 0.4.6 → 0.6.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 +21 -0
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @stytch/react
|
|
2
2
|
|
|
3
|
+
## 0.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 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
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- Updated dependencies [ac0cf89]
|
|
13
|
+
- @stytch/vanilla-js@0.6.0
|
|
14
|
+
|
|
15
|
+
## 0.5.0
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- 422c698: Add type definitions for User Metadata fields
|
|
20
|
+
- Updated dependencies [422c698]
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
- @stytch/vanilla-js@0.5.0
|
|
23
|
+
|
|
3
24
|
## 0.4.6
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stytch/react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "Stytch's official React Library",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.esm.js",
|
|
@@ -31,13 +31,14 @@
|
|
|
31
31
|
],
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@babel/runtime": "7.18.6",
|
|
34
|
-
"@stytch/vanilla-js": "0.
|
|
34
|
+
"@stytch/vanilla-js": "0.6.0",
|
|
35
|
+
"@testing-library/react": "12.1.3",
|
|
35
36
|
"eslint-config-custom": "0.0.0",
|
|
36
37
|
"rollup": "2.56.3",
|
|
37
38
|
"typescript": "4.7.4"
|
|
38
39
|
},
|
|
39
40
|
"peerDependencies": {
|
|
40
|
-
"@stytch/vanilla-js": "^0.
|
|
41
|
+
"@stytch/vanilla-js": "^0.6.0",
|
|
41
42
|
"react": ">= 17.0.2",
|
|
42
43
|
"react-dom": ">= 17.0.2"
|
|
43
44
|
}
|