@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.
- 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
package/build/es/meta.d.mts
CHANGED
|
@@ -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;
|