@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.
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +11 -8
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +66 -6
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +11 -8
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +66 -6
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +5 -9
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +66 -6
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +5 -9
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +66 -6
- 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
|
/**
|
|
@@ -608,14 +614,11 @@ interface SubscriptionInfo {
|
|
|
608
614
|
* @format GUID
|
|
609
615
|
*/
|
|
610
616
|
_id?: string | null;
|
|
611
|
-
/**
|
|
612
|
-
* Subscription cycle. For example, if this order is for the 3rd cycle of a subscription, value will be `3`.
|
|
613
|
-
* @min 1
|
|
614
|
-
*/
|
|
617
|
+
/** Subscription cycle. For example, if this order is for the 3rd cycle of a subscription, value will be `3`. */
|
|
615
618
|
cycleNumber?: number;
|
|
616
619
|
/**
|
|
617
620
|
* Subscription option title. For example, `"Monthly coffee Subscription"`.
|
|
618
|
-
* @maxLength
|
|
621
|
+
* @maxLength 150
|
|
619
622
|
* @deprecated Subscription option title. For example, `"Monthly coffee Subscription"`.
|
|
620
623
|
* @replacedBy title
|
|
621
624
|
* @targetRemovalDate 2025-10-01
|
|
@@ -623,7 +626,7 @@ interface SubscriptionInfo {
|
|
|
623
626
|
subscriptionOptionTitle?: string;
|
|
624
627
|
/**
|
|
625
628
|
* Subscription option description. For example, `"1kg of selected coffee, once a month"`.
|
|
626
|
-
* @maxLength
|
|
629
|
+
* @maxLength 500
|
|
627
630
|
* @deprecated Subscription option description. For example, `"1kg of selected coffee, once a month"`.
|
|
628
631
|
* @replacedBy description
|
|
629
632
|
* @targetRemovalDate 2025-10-01
|
|
@@ -788,7 +791,7 @@ interface ExtendedFields {
|
|
|
788
791
|
}
|
|
789
792
|
interface ModifierGroup {
|
|
790
793
|
/**
|
|
791
|
-
* Modifier group
|
|
794
|
+
* Modifier group ID.
|
|
792
795
|
* @minLength 1
|
|
793
796
|
* @maxLength 36
|
|
794
797
|
*/
|
|
@@ -838,7 +841,7 @@ interface ItemModifier {
|
|
|
838
841
|
quantity?: number | null;
|
|
839
842
|
/** Primary display label for the modifier. */
|
|
840
843
|
label?: TranslatableString;
|
|
841
|
-
/**
|
|
844
|
+
/** Additional details. */
|
|
842
845
|
details?: TranslatableString;
|
|
843
846
|
/** The price of the modifier. */
|
|
844
847
|
price?: Price;
|