@wix/auto_sdk_ecom_cart 1.0.117 → 1.0.118
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
|
@@ -2140,6 +2140,15 @@ interface V1DiscountRuleName {
|
|
|
2140
2140
|
*/
|
|
2141
2141
|
translated?: string | null;
|
|
2142
2142
|
}
|
|
2143
|
+
interface LineItemDiscount {
|
|
2144
|
+
/**
|
|
2145
|
+
* ID of line item the discount applies to.
|
|
2146
|
+
* @format GUID
|
|
2147
|
+
*/
|
|
2148
|
+
id?: string;
|
|
2149
|
+
/** Discount value. */
|
|
2150
|
+
totalDiscountAmount?: MultiCurrencyPrice;
|
|
2151
|
+
}
|
|
2143
2152
|
interface ItemCombination {
|
|
2144
2153
|
/**
|
|
2145
2154
|
* The number of times this exact combination of items (with the specified quantities) was applied together in the order.
|
|
@@ -2169,15 +2178,6 @@ interface ItemCombinationLineItem {
|
|
|
2169
2178
|
*/
|
|
2170
2179
|
quantity?: number;
|
|
2171
2180
|
}
|
|
2172
|
-
interface LineItemDiscount {
|
|
2173
|
-
/**
|
|
2174
|
-
* ID of line item the discount applies to.
|
|
2175
|
-
* @format GUID
|
|
2176
|
-
*/
|
|
2177
|
-
id?: string;
|
|
2178
|
-
/** Discount value. */
|
|
2179
|
-
totalDiscountAmount?: MultiCurrencyPrice;
|
|
2180
|
-
}
|
|
2181
2181
|
interface CalculationErrors extends CalculationErrorsShippingCalculationErrorOneOf {
|
|
2182
2182
|
/** General shipping calculation error. */
|
|
2183
2183
|
generalShippingCalculationError?: Details;
|