@stytch/vanilla-js 0.5.3 → 0.5.5
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 +13 -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 +3 -3
- package/dist/index.headless.js +3 -3
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @stytch/vanilla-js
|
|
2
2
|
|
|
3
|
+
## 0.5.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix bug with PKCE code verifiers being shared over multiple methods
|
|
8
|
+
|
|
9
|
+
## 0.5.4
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
- @stytch/core@0.4.9
|
|
15
|
+
|
|
3
16
|
## 0.5.3
|
|
4
17
|
|
|
5
18
|
### 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;
|