@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.
@@ -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 id.
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
- /** Optional additional details or clarification for the modifier. */
844
+ /** Additional details. */
839
845
  details?: TranslatableString;
840
846
  /** The price of the modifier. */
841
847
  price?: Price;