@salesforce/storefront-next-runtime 0.2.0 → 0.3.0-alpha.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/dist/DesignFrame.js +6 -2
- package/dist/DesignFrame.js.map +1 -1
- package/dist/DesignRegion.js +2 -1
- package/dist/DesignRegion.js.map +1 -1
- package/dist/component.types.d.ts +6 -0
- package/dist/component.types.d.ts.map +1 -1
- package/dist/config-load.d.ts +27 -0
- package/dist/config-load.d.ts.map +1 -0
- package/dist/config-load.js +3 -0
- package/dist/config.d.ts +248 -1
- package/dist/config.d.ts.map +1 -0
- package/dist/config.js +429 -0
- package/dist/config.js.map +1 -0
- package/dist/design-data.d.ts +40 -27
- package/dist/design-data.d.ts.map +1 -1
- package/dist/design-data.js +50 -26
- package/dist/design-data.js.map +1 -1
- package/dist/design-react-core.d.ts +2 -2
- package/dist/design-react-core.js +3 -1
- package/dist/design-react-core.js.map +1 -1
- package/dist/events.d.ts +9 -4
- package/dist/events.d.ts.map +1 -1
- package/dist/events.js +6 -6
- package/dist/events.js.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/load-config.js +41 -0
- package/dist/load-config.js.map +1 -0
- package/dist/multi-site.d.ts +68 -43
- package/dist/multi-site.d.ts.map +1 -1
- package/dist/multi-site.js +36 -10
- package/dist/multi-site.js.map +1 -1
- package/dist/routing.d.ts.map +1 -1
- package/dist/routing.js +4 -37
- package/dist/routing.js.map +1 -1
- package/dist/scapi.d.ts +8 -0
- package/dist/scapi.d.ts.map +1 -1
- package/dist/scapi.js +1 -1
- package/dist/scapi.js.map +1 -1
- package/dist/schema.d.ts +78 -0
- package/dist/schema.d.ts.map +1 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +7 -1
package/dist/scapi.d.ts
CHANGED
|
@@ -27905,6 +27905,10 @@ interface PasswordRequestResetOptions {
|
|
|
27905
27905
|
locale?: string;
|
|
27906
27906
|
/** Method to receive OTP */
|
|
27907
27907
|
mode: PasswordActionMode;
|
|
27908
|
+
/** PKCE code challenge (required when hint is not cross_device) */
|
|
27909
|
+
codeChallenge?: string;
|
|
27910
|
+
/** Hint for password action. If not provided, 'cross_device' is sent by default. */
|
|
27911
|
+
hint?: string;
|
|
27908
27912
|
}
|
|
27909
27913
|
/**
|
|
27910
27914
|
* Options for resetting a password with a token.
|
|
@@ -27916,6 +27920,10 @@ interface PasswordResetOptions {
|
|
|
27916
27920
|
token: string;
|
|
27917
27921
|
/** New password to set */
|
|
27918
27922
|
newPassword: string;
|
|
27923
|
+
/** PKCE code verifier (required when hint is not cross_device) */
|
|
27924
|
+
codeVerifier?: string;
|
|
27925
|
+
/** Hint for password action. If not provided, 'cross_device' is sent by default. */
|
|
27926
|
+
hint?: string;
|
|
27919
27927
|
}
|
|
27920
27928
|
/**
|
|
27921
27929
|
* Options for getting a social login authorization URL.
|