@stytch/vanilla-js 5.9.1 → 5.9.2
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 +8 -0
- package/dist/b2b/index.esm.js +0 -8
- package/dist/b2b/index.headless.esm.js +1 -1
- package/dist/b2b/index.headless.js +1 -1
- package/dist/b2b/index.js +0 -8
- package/dist/index.esm.js +1 -1
- package/dist/index.headless.esm.js +1 -1
- package/dist/index.headless.js +1 -1
- package/dist/index.js +1 -1
- package/dist/utils/index.d.ts +2 -2
- package/package.json +2 -2
package/dist/utils/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { InternalStytchClientOptions } from '@stytch/core';
|
|
2
2
|
import { EmailMagicLinksOptions, MagicLinksLoginOrCreateOptions, PasswordOptions, PasswordResetByEmailStartOptions } from '@stytch/core/public';
|
|
3
3
|
export declare const EMAIL_REGEX: RegExp;
|
|
4
|
-
export declare const convertMagicLinkOptions: (options
|
|
5
|
-
export declare const convertPasswordResetOptions: (email: string, options
|
|
4
|
+
export declare const convertMagicLinkOptions: (options?: EmailMagicLinksOptions) => MagicLinksLoginOrCreateOptions;
|
|
5
|
+
export declare const convertPasswordResetOptions: (email: string, options?: PasswordOptions) => PasswordResetByEmailStartOptions;
|
|
6
6
|
export declare const debounce: <F extends (...args: Parameters<F>) => ReturnType<F>>(func: F, waitFor?: number) => (...args: Parameters<F>) => void;
|
|
7
7
|
export declare const isLocalhost: () => boolean;
|
|
8
8
|
export type DeepRequired<T> = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stytch/vanilla-js",
|
|
3
|
-
"version": "5.9.
|
|
3
|
+
"version": "5.9.2",
|
|
4
4
|
"description": "Stytch's official Javascript Client Library",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.esm.js",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"hoistingLimits": "workspaces"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@stytch/core": "2.34.
|
|
42
|
+
"@stytch/core": "2.34.2",
|
|
43
43
|
"@types/google-one-tap": "^1.2.0",
|
|
44
44
|
"type-fest": "4.15.0"
|
|
45
45
|
},
|