@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
package/build/cjs/meta.d.ts
CHANGED
|
@@ -20243,13 +20243,32 @@ interface AutomationActionScope {
|
|
|
20243
20243
|
interface ServiceTagsConfig {
|
|
20244
20244
|
allowedTags?: string[];
|
|
20245
20245
|
}
|
|
20246
|
-
/** Static configuration each function instance provides */
|
|
20247
20246
|
interface PointsAdjustmentProviderConfig {
|
|
20248
20247
|
/**
|
|
20249
|
-
* URI where the
|
|
20250
|
-
*
|
|
20248
|
+
* Base URI where the implementer is deployed. Wix sends `AdjustPoints`
|
|
20249
|
+
* requests to this URI.
|
|
20251
20250
|
*/
|
|
20252
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;
|
|
20253
20272
|
}
|
|
20254
20273
|
interface EarnPointsLimitProviderConfig {
|
|
20255
20274
|
/** URI where the SPI implementer is deployed. */
|