@wix/auto_sdk_ecom_draft-orders 1.0.176 → 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 +4 -4
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +4 -4
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +4 -4
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +4 -4
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +5 -5
- package/build/internal/cjs/meta.d.ts +5 -5
- package/build/internal/es/index.typings.d.mts +5 -5
- package/build/internal/es/meta.d.mts +5 -5
- package/package.json +2 -2
|
@@ -2295,9 +2295,9 @@ interface DiscountOption extends DiscountOptionDiscountAmountOneOf {
|
|
|
2295
2295
|
/** Amount to discount from the line item price. */
|
|
2296
2296
|
priceAmount?: Price;
|
|
2297
2297
|
/**
|
|
2298
|
-
* 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%.
|
|
2299
2299
|
* @format DECIMAL_VALUE
|
|
2300
|
-
* @decimalValue options { gte:0, lte:100, maxScale:2 }
|
|
2300
|
+
* @decimalValue options { gte:0.01, lte:100, maxScale:2 }
|
|
2301
2301
|
*/
|
|
2302
2302
|
percentage?: string | null;
|
|
2303
2303
|
/** Discount type. */
|
|
@@ -2339,9 +2339,9 @@ interface DiscountOptionDiscountAmountOneOf {
|
|
|
2339
2339
|
/** Amount to discount from the line item price. */
|
|
2340
2340
|
priceAmount?: Price;
|
|
2341
2341
|
/**
|
|
2342
|
-
* 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%.
|
|
2343
2343
|
* @format DECIMAL_VALUE
|
|
2344
|
-
* @decimalValue options { gte:0, lte:100, maxScale:2 }
|
|
2344
|
+
* @decimalValue options { gte:0.01, lte:100, maxScale:2 }
|
|
2345
2345
|
*/
|
|
2346
2346
|
percentage?: string | null;
|
|
2347
2347
|
}
|