@wix/auto_sdk_ecom_checkout-templates 1.0.94 → 1.0.96

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.
@@ -2061,6 +2061,15 @@ interface DiscountRuleName {
2061
2061
  */
2062
2062
  translated?: string | null;
2063
2063
  }
2064
+ interface LineItemDiscount {
2065
+ /**
2066
+ * ID of line item the discount applies to.
2067
+ * @format GUID
2068
+ */
2069
+ id?: string;
2070
+ /** Discount value. */
2071
+ totalDiscountAmount?: MultiCurrencyPrice;
2072
+ }
2064
2073
  interface ItemCombination {
2065
2074
  /**
2066
2075
  * The number of times this exact combination of items (with the specified quantities) was applied together in the order.
@@ -2090,15 +2099,6 @@ interface ItemCombinationLineItem {
2090
2099
  */
2091
2100
  quantity?: number;
2092
2101
  }
2093
- interface LineItemDiscount {
2094
- /**
2095
- * ID of line item the discount applies to.
2096
- * @format GUID
2097
- */
2098
- id?: string;
2099
- /** Discount value. */
2100
- totalDiscountAmount?: MultiCurrencyPrice;
2101
- }
2102
2102
  interface CustomField {
2103
2103
  /** Custom field value. */
2104
2104
  value?: any;