@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.
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +9 -9
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +9 -9
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +9 -9
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +9 -9
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +19 -19
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +9 -9
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +19 -19
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +9 -9
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -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;
|