@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.
@@ -3191,6 +3191,8 @@ interface MembershipsSPIConfig {
3191
3191
  * @maxSize 300
3192
3192
  */
3193
3193
  catalogAppDefIds?: string[];
3194
+ /** Set to true once your app implements the updated redemption methods (`ListExistingMemberships`, `ListPurchasablePlans`, `EnhanceAndValidateSelection`) */
3195
+ toggleUpdatedMethodsEnabled?: boolean;
3194
3196
  }
3195
3197
  interface LineItemsEnricherConfig {
3196
3198
  /** the base URI where all the methods are deployed. */
@@ -20222,13 +20224,32 @@ interface AutomationActionScope {
20222
20224
  interface ServiceTagsConfig {
20223
20225
  allowedTags?: string[];
20224
20226
  }
20225
- /** Static configuration each function instance provides */
20226
20227
  interface PointsAdjustmentProviderConfig {
20227
20228
  /**
20228
- * URI where the SPI Implementer is deployed.
20229
- * Functions will inject the function:// protocol URL here.
20229
+ * Base URI where the implementer is deployed. Wix sends `AdjustPoints`
20230
+ * requests to this URI.
20230
20231
  */
20231
20232
  baseUri?: SpiBaseUri;
20233
+ /**
20234
+ * Display name of the points adjustment. Shown to the site owner when they
20235
+ * configure the points adjustment rule in their loyalty settings, and to
20236
+ * site visitors on the site's rewards page under the earn points rules.
20237
+ *
20238
+ * Doesn't affect how points are calculated. The number of points assigned
20239
+ * is determined solely by the `AdjustPoints` response.
20240
+ * @maxLength 100
20241
+ */
20242
+ multiplierName?: string;
20243
+ /**
20244
+ * Description of the points adjustment, explaining how it works. Shown
20245
+ * alongside `multiplierName` to the site owner in their loyalty settings,
20246
+ * and to site visitors on the site's rewards page under the earn points
20247
+ * rules.
20248
+ *
20249
+ * Doesn't affect how points are calculated.
20250
+ * @maxLength 500
20251
+ */
20252
+ multiplierDescription?: string;
20232
20253
  }
20233
20254
  interface EarnPointsLimitProviderConfig {
20234
20255
  /** URI where the SPI implementer is deployed. */