@wix/auto_sdk_ecom_checkout-templates 1.0.94 → 1.0.95

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.
@@ -2019,6 +2019,15 @@ interface DiscountRuleName {
2019
2019
  */
2020
2020
  translated?: string | null;
2021
2021
  }
2022
+ interface LineItemDiscount {
2023
+ /**
2024
+ * ID of line item the discount applies to.
2025
+ * @format GUID
2026
+ */
2027
+ _id?: string;
2028
+ /** Discount value. */
2029
+ totalDiscountAmount?: MultiCurrencyPrice;
2030
+ }
2022
2031
  interface ItemCombination {
2023
2032
  /**
2024
2033
  * The number of times this exact combination of items (with the specified quantities) was applied together in the order.
@@ -2048,15 +2057,6 @@ interface ItemCombinationLineItem {
2048
2057
  */
2049
2058
  quantity?: number;
2050
2059
  }
2051
- interface LineItemDiscount {
2052
- /**
2053
- * ID of line item the discount applies to.
2054
- * @format GUID
2055
- */
2056
- _id?: string;
2057
- /** Discount value. */
2058
- totalDiscountAmount?: MultiCurrencyPrice;
2059
- }
2060
2060
  interface CustomField {
2061
2061
  /** Custom field value. */
2062
2062
  value?: any;