@wix/auto_sdk_ecom_cart 1.0.117 → 1.0.119
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 +25 -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 +25 -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
|
@@ -2101,6 +2101,15 @@ interface V1DiscountRuleName {
|
|
|
2101
2101
|
*/
|
|
2102
2102
|
translated?: string | null;
|
|
2103
2103
|
}
|
|
2104
|
+
interface LineItemDiscount {
|
|
2105
|
+
/**
|
|
2106
|
+
* ID of line item the discount applies to.
|
|
2107
|
+
* @format GUID
|
|
2108
|
+
*/
|
|
2109
|
+
_id?: string;
|
|
2110
|
+
/** Discount value. */
|
|
2111
|
+
totalDiscountAmount?: MultiCurrencyPrice;
|
|
2112
|
+
}
|
|
2104
2113
|
interface ItemCombination {
|
|
2105
2114
|
/**
|
|
2106
2115
|
* The number of times this exact combination of items (with the specified quantities) was applied together in the order.
|
|
@@ -2130,15 +2139,6 @@ interface ItemCombinationLineItem {
|
|
|
2130
2139
|
*/
|
|
2131
2140
|
quantity?: number;
|
|
2132
2141
|
}
|
|
2133
|
-
interface LineItemDiscount {
|
|
2134
|
-
/**
|
|
2135
|
-
* ID of line item the discount applies to.
|
|
2136
|
-
* @format GUID
|
|
2137
|
-
*/
|
|
2138
|
-
_id?: string;
|
|
2139
|
-
/** Discount value. */
|
|
2140
|
-
totalDiscountAmount?: MultiCurrencyPrice;
|
|
2141
|
-
}
|
|
2142
2142
|
interface CalculationErrors extends CalculationErrorsShippingCalculationErrorOneOf {
|
|
2143
2143
|
/** General shipping calculation error. */
|
|
2144
2144
|
generalShippingCalculationError?: Details;
|