@wix/auto_sdk_ecom_draft-orders 1.0.53 → 1.0.54
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 +8 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +63 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +8 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +63 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -3
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +63 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -3
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +63 -0
- package/package.json +2 -2
|
@@ -316,6 +316,12 @@ interface OrderLineItem {
|
|
|
316
316
|
* [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields) must be configured in the app dashboard before they can be accessed with API calls.
|
|
317
317
|
*/
|
|
318
318
|
extendedFields?: ExtendedFields;
|
|
319
|
+
/**
|
|
320
|
+
* Modifier groups that were added to the item.
|
|
321
|
+
* @readonly
|
|
322
|
+
* @maxSize 10
|
|
323
|
+
*/
|
|
324
|
+
modifierGroups?: ModifierGroup[];
|
|
319
325
|
}
|
|
320
326
|
interface ProductName {
|
|
321
327
|
/**
|
|
@@ -785,7 +791,7 @@ interface ExtendedFields {
|
|
|
785
791
|
}
|
|
786
792
|
interface ModifierGroup {
|
|
787
793
|
/**
|
|
788
|
-
* Modifier group
|
|
794
|
+
* Modifier group ID.
|
|
789
795
|
* @minLength 1
|
|
790
796
|
* @maxLength 36
|
|
791
797
|
*/
|
|
@@ -835,7 +841,7 @@ interface ItemModifier {
|
|
|
835
841
|
quantity?: number | null;
|
|
836
842
|
/** Primary display label for the modifier. */
|
|
837
843
|
label?: TranslatableString;
|
|
838
|
-
/**
|
|
844
|
+
/** Additional details. */
|
|
839
845
|
details?: TranslatableString;
|
|
840
846
|
/** The price of the modifier. */
|
|
841
847
|
price?: Price;
|