@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.
@@ -3948,6 +3948,15 @@ interface DiscountRuleName {
3948
3948
  */
3949
3949
  translated?: string | null;
3950
3950
  }
3951
+ interface LineItemDiscount {
3952
+ /**
3953
+ * ID of line item the discount applies to.
3954
+ * @format GUID
3955
+ */
3956
+ id?: string;
3957
+ /** Discount value. */
3958
+ totalDiscountAmount?: MultiCurrencyPrice;
3959
+ }
3951
3960
  interface ItemCombination {
3952
3961
  /**
3953
3962
  * The number of times this exact combination of items (with the specified quantities) was applied together in the order.
@@ -3977,15 +3986,6 @@ interface ItemCombinationLineItem {
3977
3986
  */
3978
3987
  quantity?: number;
3979
3988
  }
3980
- interface LineItemDiscount {
3981
- /**
3982
- * ID of line item the discount applies to.
3983
- * @format GUID
3984
- */
3985
- id?: string;
3986
- /** Discount value. */
3987
- totalDiscountAmount?: MultiCurrencyPrice;
3988
- }
3989
3989
  interface CalculationErrors extends CalculationErrorsShippingCalculationErrorOneOf {
3990
3990
  /** General shipping calculation error. */
3991
3991
  generalShippingCalculationError?: Details;