@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
package/build/cjs/meta.d.ts
CHANGED
|
@@ -2324,9 +2324,9 @@ interface DiscountOption extends DiscountOptionDiscountAmountOneOf {
|
|
|
2324
2324
|
/** Amount to discount from the line item price. */
|
|
2325
2325
|
priceAmount?: Price;
|
|
2326
2326
|
/**
|
|
2327
|
-
* 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%.
|
|
2328
2328
|
* @format DECIMAL_VALUE
|
|
2329
|
-
* @decimalValue options { gte:0, lte:100, maxScale:2 }
|
|
2329
|
+
* @decimalValue options { gte:0.01, lte:100, maxScale:2 }
|
|
2330
2330
|
*/
|
|
2331
2331
|
percentage?: string | null;
|
|
2332
2332
|
/** Discount type. */
|
|
@@ -2368,9 +2368,9 @@ interface DiscountOptionDiscountAmountOneOf {
|
|
|
2368
2368
|
/** Amount to discount from the line item price. */
|
|
2369
2369
|
priceAmount?: Price;
|
|
2370
2370
|
/**
|
|
2371
|
-
* 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%.
|
|
2372
2372
|
* @format DECIMAL_VALUE
|
|
2373
|
-
* @decimalValue options { gte:0, lte:100, maxScale:2 }
|
|
2373
|
+
* @decimalValue options { gte:0.01, lte:100, maxScale:2 }
|
|
2374
2374
|
*/
|
|
2375
2375
|
percentage?: string | null;
|
|
2376
2376
|
}
|