@stytch/vanilla-js 5.25.2 → 5.26.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.
@@ -0,0 +1,12 @@
1
+ import { IDPConsentScreenManifest } from '@stytch/core/public';
2
+
3
+ type IDPConsentManifestGenerator = (input: {
4
+ scopes: string[];
5
+ clientName: string;
6
+ }) => IDPConsentScreenManifest;
7
+ type B2BIDPConsentManifestGenerator = (input: {
8
+ scopes: string[];
9
+ clientName: string;
10
+ }) => IDPConsentScreenManifest;
11
+
12
+ export type { B2BIDPConsentManifestGenerator as B, IDPConsentManifestGenerator as I };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stytch/vanilla-js",
3
- "version": "5.25.2",
3
+ "version": "5.26.0",
4
4
  "description": "Stytch's official Javascript Client Library",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.esm.js",