@stytch/vanilla-js 4.7.7 → 4.8.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 +26 -0
- package/dist/b2b/index.esm.js +82 -79
- package/dist/b2b/index.headless.esm.js +2 -2
- package/dist/b2b/index.headless.js +40 -40
- package/dist/b2b/index.js +82 -79
- package/dist/index.d.ts +1 -0
- package/dist/index.esm.d.ts +1 -0
- package/dist/index.esm.js +3050 -3022
- package/dist/index.headless.d.ts +1 -0
- package/dist/index.headless.esm.d.ts +1 -0
- package/dist/index.headless.esm.js +210 -198
- package/dist/index.headless.js +255 -243
- package/dist/index.js +3105 -3077
- package/package.json +3 -3
package/dist/index.headless.d.ts
CHANGED
|
@@ -24,6 +24,7 @@ type GoogleOneTapOAuthOptions = {
|
|
|
24
24
|
signup_redirect_url?: string;
|
|
25
25
|
/**
|
|
26
26
|
* An optional callback function that runs when a user explicitly cancels out of the one tap flow.
|
|
27
|
+
* This callback may not be invoked immediately or at all depending on the behavior of the browser and Google's SDK.
|
|
27
28
|
*/
|
|
28
29
|
onOneTapCancelled?: () => void;
|
|
29
30
|
};
|
|
@@ -24,6 +24,7 @@ type GoogleOneTapOAuthOptions = {
|
|
|
24
24
|
signup_redirect_url?: string;
|
|
25
25
|
/**
|
|
26
26
|
* An optional callback function that runs when a user explicitly cancels out of the one tap flow.
|
|
27
|
+
* This callback may not be invoked immediately or at all depending on the behavior of the browser and Google's SDK.
|
|
27
28
|
*/
|
|
28
29
|
onOneTapCancelled?: () => void;
|
|
29
30
|
};
|