@wix/auto_sdk_data-extension-schema_schemas 1.0.233 → 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 +22 -3
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +22 -3
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +22 -3
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +22 -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 +22 -3
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +22 -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 +22 -3
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +22 -3
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -20217,13 +20217,32 @@ interface AutomationActionScope {
|
|
|
20217
20217
|
interface ServiceTagsConfig {
|
|
20218
20218
|
allowedTags?: string[];
|
|
20219
20219
|
}
|
|
20220
|
-
/** Static configuration each function instance provides */
|
|
20221
20220
|
interface PointsAdjustmentProviderConfig {
|
|
20222
20221
|
/**
|
|
20223
|
-
* URI where the
|
|
20224
|
-
*
|
|
20222
|
+
* Base URI where the implementer is deployed. Wix sends `AdjustPoints`
|
|
20223
|
+
* requests to this URI.
|
|
20225
20224
|
*/
|
|
20226
20225
|
baseUri?: SpiBaseUri;
|
|
20226
|
+
/**
|
|
20227
|
+
* Display name of the points adjustment. Shown to the site owner when they
|
|
20228
|
+
* configure the points adjustment rule in their loyalty settings, and to
|
|
20229
|
+
* site visitors on the site's rewards page under the earn points rules.
|
|
20230
|
+
*
|
|
20231
|
+
* Doesn't affect how points are calculated. The number of points assigned
|
|
20232
|
+
* is determined solely by the `AdjustPoints` response.
|
|
20233
|
+
* @maxLength 100
|
|
20234
|
+
*/
|
|
20235
|
+
multiplierName?: string;
|
|
20236
|
+
/**
|
|
20237
|
+
* Description of the points adjustment, explaining how it works. Shown
|
|
20238
|
+
* alongside `multiplierName` to the site owner in their loyalty settings,
|
|
20239
|
+
* and to site visitors on the site's rewards page under the earn points
|
|
20240
|
+
* rules.
|
|
20241
|
+
*
|
|
20242
|
+
* Doesn't affect how points are calculated.
|
|
20243
|
+
* @maxLength 500
|
|
20244
|
+
*/
|
|
20245
|
+
multiplierDescription?: string;
|
|
20227
20246
|
}
|
|
20228
20247
|
interface EarnPointsLimitProviderConfig {
|
|
20229
20248
|
/** URI where the SPI implementer is deployed. */
|