@wix/auto_sdk_ecom_draft-orders 1.0.175 → 1.0.177

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.
@@ -791,10 +791,7 @@ interface SubscriptionInfo {
791
791
  * @targetRemovalDate 2025-10-01
792
792
  */
793
793
  subscriptionOptionDescription?: string | null;
794
- /**
795
- * Subscription detailed information.
796
- * @immutable
797
- */
794
+ /** Subscription detailed information. */
798
795
  subscriptionSettings?: SubscriptionSettings;
799
796
  /**
800
797
  * Description of the charges that will be applied for subscription.
@@ -2327,9 +2324,9 @@ interface DiscountOption extends DiscountOptionDiscountAmountOneOf {
2327
2324
  /** Amount to discount from the line item price. */
2328
2325
  priceAmount?: Price;
2329
2326
  /**
2330
- * Percentage to discount from the line item price.
2327
+ * Percentage to discount from the line item price. For example, `"12"` for a 12% discount, or `"0.12"` for 0.12%.
2331
2328
  * @format DECIMAL_VALUE
2332
- * @decimalValue options { gte:0, lte:100, maxScale:2 }
2329
+ * @decimalValue options { gte:0.01, lte:100, maxScale:2 }
2333
2330
  */
2334
2331
  percentage?: string | null;
2335
2332
  /** Discount type. */
@@ -2371,9 +2368,9 @@ interface DiscountOptionDiscountAmountOneOf {
2371
2368
  /** Amount to discount from the line item price. */
2372
2369
  priceAmount?: Price;
2373
2370
  /**
2374
- * Percentage to discount from the line item price.
2371
+ * Percentage to discount from the line item price. For example, `"12"` for a 12% discount, or `"0.12"` for 0.12%.
2375
2372
  * @format DECIMAL_VALUE
2376
- * @decimalValue options { gte:0, lte:100, maxScale:2 }
2373
+ * @decimalValue options { gte:0.01, lte:100, maxScale:2 }
2377
2374
  */
2378
2375
  percentage?: string | null;
2379
2376
  }