@wix/auto_sdk_ecom_draft-orders 1.0.52 → 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.
@@ -324,7 +324,6 @@ interface OrderLineItem {
324
324
  extendedFields?: ExtendedFields;
325
325
  /**
326
326
  * Modifier groups that were added to the item.
327
- * @internal
328
327
  * @readonly
329
328
  * @maxSize 10
330
329
  */
@@ -626,14 +625,11 @@ interface SubscriptionInfo {
626
625
  * @format GUID
627
626
  */
628
627
  _id?: string | null;
629
- /**
630
- * Subscription cycle. For example, if this order is for the 3rd cycle of a subscription, value will be `3`.
631
- * @min 1
632
- */
628
+ /** Subscription cycle. For example, if this order is for the 3rd cycle of a subscription, value will be `3`. */
633
629
  cycleNumber?: number;
634
630
  /**
635
631
  * Subscription option title. For example, `"Monthly coffee Subscription"`.
636
- * @maxLength 20
632
+ * @maxLength 150
637
633
  * @deprecated Subscription option title. For example, `"Monthly coffee Subscription"`.
638
634
  * @replacedBy title
639
635
  * @targetRemovalDate 2025-10-01
@@ -646,7 +642,7 @@ interface SubscriptionInfo {
646
642
  title?: SubscriptionTitle;
647
643
  /**
648
644
  * Subscription option description. For example, `"1kg of selected coffee, once a month"`.
649
- * @maxLength 60
645
+ * @maxLength 500
650
646
  * @deprecated Subscription option description. For example, `"1kg of selected coffee, once a month"`.
651
647
  * @replacedBy description
652
648
  * @targetRemovalDate 2025-10-01
@@ -826,7 +822,7 @@ interface ExtendedFields {
826
822
  }
827
823
  interface ModifierGroup {
828
824
  /**
829
- * Modifier group id.
825
+ * Modifier group ID.
830
826
  * @minLength 1
831
827
  * @maxLength 36
832
828
  */
@@ -876,7 +872,7 @@ interface ItemModifier {
876
872
  quantity?: number | null;
877
873
  /** Primary display label for the modifier. */
878
874
  label?: TranslatableString;
879
- /** Optional additional details or clarification for the modifier. */
875
+ /** Additional details. */
880
876
  details?: TranslatableString;
881
877
  /** The price of the modifier. */
882
878
  price?: Price;