@wix/auto_sdk_data-extension-schema_schemas 1.0.232 → 1.0.234
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/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +24 -3
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +24 -3
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +24 -3
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +24 -3
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +24 -3
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +24 -3
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +24 -3
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +24 -3
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/es/meta.d.mts
CHANGED
|
@@ -3210,6 +3210,8 @@ interface MembershipsSPIConfig {
|
|
|
3210
3210
|
* @maxSize 300
|
|
3211
3211
|
*/
|
|
3212
3212
|
catalogAppDefIds?: string[];
|
|
3213
|
+
/** Set to true once your app implements the updated redemption methods (`ListExistingMemberships`, `ListPurchasablePlans`, `EnhanceAndValidateSelection`) */
|
|
3214
|
+
toggleUpdatedMethodsEnabled?: boolean;
|
|
3213
3215
|
}
|
|
3214
3216
|
interface LineItemsEnricherConfig {
|
|
3215
3217
|
/** the base URI where all the methods are deployed. */
|
|
@@ -20241,13 +20243,32 @@ interface AutomationActionScope {
|
|
|
20241
20243
|
interface ServiceTagsConfig {
|
|
20242
20244
|
allowedTags?: string[];
|
|
20243
20245
|
}
|
|
20244
|
-
/** Static configuration each function instance provides */
|
|
20245
20246
|
interface PointsAdjustmentProviderConfig {
|
|
20246
20247
|
/**
|
|
20247
|
-
* URI where the
|
|
20248
|
-
*
|
|
20248
|
+
* Base URI where the implementer is deployed. Wix sends `AdjustPoints`
|
|
20249
|
+
* requests to this URI.
|
|
20249
20250
|
*/
|
|
20250
20251
|
baseUri?: SpiBaseUri;
|
|
20252
|
+
/**
|
|
20253
|
+
* Display name of the points adjustment. Shown to the site owner when they
|
|
20254
|
+
* configure the points adjustment rule in their loyalty settings, and to
|
|
20255
|
+
* site visitors on the site's rewards page under the earn points rules.
|
|
20256
|
+
*
|
|
20257
|
+
* Doesn't affect how points are calculated. The number of points assigned
|
|
20258
|
+
* is determined solely by the `AdjustPoints` response.
|
|
20259
|
+
* @maxLength 100
|
|
20260
|
+
*/
|
|
20261
|
+
multiplierName?: string;
|
|
20262
|
+
/**
|
|
20263
|
+
* Description of the points adjustment, explaining how it works. Shown
|
|
20264
|
+
* alongside `multiplierName` to the site owner in their loyalty settings,
|
|
20265
|
+
* and to site visitors on the site's rewards page under the earn points
|
|
20266
|
+
* rules.
|
|
20267
|
+
*
|
|
20268
|
+
* Doesn't affect how points are calculated.
|
|
20269
|
+
* @maxLength 500
|
|
20270
|
+
*/
|
|
20271
|
+
multiplierDescription?: string;
|
|
20251
20272
|
}
|
|
20252
20273
|
interface EarnPointsLimitProviderConfig {
|
|
20253
20274
|
/** URI where the SPI implementer is deployed. */
|