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