@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.
@@ -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;