@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.
@@ -3184,6 +3184,8 @@ interface MembershipsSPIConfig {
3184
3184
  * @maxSize 300
3185
3185
  */
3186
3186
  catalogAppDefIds?: string[];
3187
+ /** Set to true once your app implements the updated redemption methods (`ListExistingMemberships`, `ListPurchasablePlans`, `EnhanceAndValidateSelection`) */
3188
+ toggleUpdatedMethodsEnabled?: boolean;
3187
3189
  }
3188
3190
  interface LineItemsEnricherConfig {
3189
3191
  /** the base URI where all the methods are deployed. */
@@ -20215,13 +20217,32 @@ interface AutomationActionScope {
20215
20217
  interface ServiceTagsConfig {
20216
20218
  allowedTags?: string[];
20217
20219
  }
20218
- /** Static configuration each function instance provides */
20219
20220
  interface PointsAdjustmentProviderConfig {
20220
20221
  /**
20221
- * URI where the SPI Implementer is deployed.
20222
- * Functions will inject the function:// protocol URL here.
20222
+ * Base URI where the implementer is deployed. Wix sends `AdjustPoints`
20223
+ * requests to this URI.
20223
20224
  */
20224
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;
20225
20246
  }
20226
20247
  interface EarnPointsLimitProviderConfig {
20227
20248
  /** URI where the SPI implementer is deployed. */