@wix/auto_sdk_ecom_cart-v-2 1.0.65 → 1.0.66
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 +9 -9
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +9 -9
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +9 -9
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +9 -9
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +19 -19
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +9 -9
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +19 -19
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +9 -9
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -3900,6 +3900,15 @@ interface DiscountRuleName {
|
|
|
3900
3900
|
*/
|
|
3901
3901
|
translated?: string | null;
|
|
3902
3902
|
}
|
|
3903
|
+
interface LineItemDiscount {
|
|
3904
|
+
/**
|
|
3905
|
+
* ID of line item the discount applies to.
|
|
3906
|
+
* @format GUID
|
|
3907
|
+
*/
|
|
3908
|
+
_id?: string;
|
|
3909
|
+
/** Discount value. */
|
|
3910
|
+
totalDiscountAmount?: MultiCurrencyPrice;
|
|
3911
|
+
}
|
|
3903
3912
|
interface ItemCombination {
|
|
3904
3913
|
/**
|
|
3905
3914
|
* The number of times this exact combination of items (with the specified quantities) was applied together in the order.
|
|
@@ -3929,15 +3938,6 @@ interface ItemCombinationLineItem {
|
|
|
3929
3938
|
*/
|
|
3930
3939
|
quantity?: number;
|
|
3931
3940
|
}
|
|
3932
|
-
interface LineItemDiscount {
|
|
3933
|
-
/**
|
|
3934
|
-
* ID of line item the discount applies to.
|
|
3935
|
-
* @format GUID
|
|
3936
|
-
*/
|
|
3937
|
-
_id?: string;
|
|
3938
|
-
/** Discount value. */
|
|
3939
|
-
totalDiscountAmount?: MultiCurrencyPrice;
|
|
3940
|
-
}
|
|
3941
3941
|
interface CalculationErrors extends CalculationErrorsShippingCalculationErrorOneOf {
|
|
3942
3942
|
/** General shipping calculation error. */
|
|
3943
3943
|
generalShippingCalculationError?: Details;
|