@stytch/vanilla-js 0.5.4 → 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 +18 -0
- package/dist/index.d.ts +0 -1
- package/dist/index.esm.d.ts +0 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.headless.d.ts +0 -1
- package/dist/index.headless.esm.d.ts +0 -1
- package/dist/index.headless.esm.js +2 -2
- package/dist/index.headless.js +2 -2
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @stytch/vanilla-js
|
|
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
|
+
- ac0cf89: Bold email on confirmation screen
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
- @stytch/core@0.5.0
|
|
14
|
+
|
|
15
|
+
## 0.5.5
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Fix bug with PKCE code verifiers being shared over multiple methods
|
|
20
|
+
|
|
3
21
|
## 0.5.4
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -17,7 +17,6 @@ declare class StytchHeadlessClient {
|
|
|
17
17
|
private readonly _sessionManager;
|
|
18
18
|
private readonly _networkClient;
|
|
19
19
|
private readonly _dataLayer;
|
|
20
|
-
private readonly _pkceManager;
|
|
21
20
|
// External API Clients
|
|
22
21
|
user: IHeadlessUserClient;
|
|
23
22
|
magicLinks: IHeadlessMagicLinksClient;
|
package/dist/index.esm.d.ts
CHANGED
|
@@ -17,7 +17,6 @@ declare class StytchHeadlessClient {
|
|
|
17
17
|
private readonly _sessionManager;
|
|
18
18
|
private readonly _networkClient;
|
|
19
19
|
private readonly _dataLayer;
|
|
20
|
-
private readonly _pkceManager;
|
|
21
20
|
// External API Clients
|
|
22
21
|
user: IHeadlessUserClient;
|
|
23
22
|
magicLinks: IHeadlessMagicLinksClient;
|