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