@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.
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +5 -8
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +5 -8
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +5 -8
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +5 -8
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +6 -9
- package/build/internal/cjs/meta.d.ts +6 -9
- package/build/internal/es/index.typings.d.mts +6 -9
- package/build/internal/es/meta.d.mts +6 -9
- package/package.json +2 -2
|
@@ -768,10 +768,7 @@ interface SubscriptionInfo {
|
|
|
768
768
|
* @targetRemovalDate 2025-10-01
|
|
769
769
|
*/
|
|
770
770
|
subscriptionOptionDescription?: string | null;
|
|
771
|
-
/**
|
|
772
|
-
* Subscription detailed information.
|
|
773
|
-
* @immutable
|
|
774
|
-
*/
|
|
771
|
+
/** Subscription detailed information. */
|
|
775
772
|
subscriptionSettings?: SubscriptionSettings;
|
|
776
773
|
/**
|
|
777
774
|
* Description of the charges that will be applied for subscription.
|
|
@@ -2298,9 +2295,9 @@ interface DiscountOption extends DiscountOptionDiscountAmountOneOf {
|
|
|
2298
2295
|
/** Amount to discount from the line item price. */
|
|
2299
2296
|
priceAmount?: Price;
|
|
2300
2297
|
/**
|
|
2301
|
-
* Percentage to discount from the line item price.
|
|
2298
|
+
* Percentage to discount from the line item price. For example, `"12"` for a 12% discount, or `"0.12"` for 0.12%.
|
|
2302
2299
|
* @format DECIMAL_VALUE
|
|
2303
|
-
* @decimalValue options { gte:0, lte:100, maxScale:2 }
|
|
2300
|
+
* @decimalValue options { gte:0.01, lte:100, maxScale:2 }
|
|
2304
2301
|
*/
|
|
2305
2302
|
percentage?: string | null;
|
|
2306
2303
|
/** Discount type. */
|
|
@@ -2342,9 +2339,9 @@ interface DiscountOptionDiscountAmountOneOf {
|
|
|
2342
2339
|
/** Amount to discount from the line item price. */
|
|
2343
2340
|
priceAmount?: Price;
|
|
2344
2341
|
/**
|
|
2345
|
-
* Percentage to discount from the line item price.
|
|
2342
|
+
* Percentage to discount from the line item price. For example, `"12"` for a 12% discount, or `"0.12"` for 0.12%.
|
|
2346
2343
|
* @format DECIMAL_VALUE
|
|
2347
|
-
* @decimalValue options { gte:0, lte:100, maxScale:2 }
|
|
2344
|
+
* @decimalValue options { gte:0.01, lte:100, maxScale:2 }
|
|
2348
2345
|
*/
|
|
2349
2346
|
percentage?: string | null;
|
|
2350
2347
|
}
|