@wix/auto_sdk_ecom_draft-orders 1.0.100 → 1.0.101
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 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +8 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +8 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +8 -0
- 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 +8 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +8 -0
- 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 +8 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +8 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -4646,6 +4646,10 @@ type AddLineItemsToDraftOrderApplicationErrors = {
|
|
|
4646
4646
|
code?: 'DRAFT_ORDER_ALREADY_COMMITTED';
|
|
4647
4647
|
description?: string;
|
|
4648
4648
|
data?: Record<string, any>;
|
|
4649
|
+
} | {
|
|
4650
|
+
code?: 'DRAFT_ORDER_HAS_GLOBAL_DEPOSIT';
|
|
4651
|
+
description?: string;
|
|
4652
|
+
data?: Record<string, any>;
|
|
4649
4653
|
};
|
|
4650
4654
|
/** @docsIgnore */
|
|
4651
4655
|
type UpdateLineItemsApplicationErrors = {
|
|
@@ -4694,6 +4698,10 @@ type SetDepositApplicationErrors = {
|
|
|
4694
4698
|
code?: 'DRAFT_ORDER_ALREADY_COMMITTED';
|
|
4695
4699
|
description?: string;
|
|
4696
4700
|
data?: Record<string, any>;
|
|
4701
|
+
} | {
|
|
4702
|
+
code?: 'DRAFT_ORDER_HAS_DEPOSIT_LINE_ITEMS';
|
|
4703
|
+
description?: string;
|
|
4704
|
+
data?: Record<string, any>;
|
|
4697
4705
|
};
|
|
4698
4706
|
/** @docsIgnore */
|
|
4699
4707
|
type SetDiscountsApplicationErrors = {
|