@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
|
@@ -4871,6 +4871,10 @@ type AddLineItemsToDraftOrderApplicationErrors = {
|
|
|
4871
4871
|
code?: 'DRAFT_ORDER_ALREADY_COMMITTED';
|
|
4872
4872
|
description?: string;
|
|
4873
4873
|
data?: Record<string, any>;
|
|
4874
|
+
} | {
|
|
4875
|
+
code?: 'DRAFT_ORDER_HAS_GLOBAL_DEPOSIT';
|
|
4876
|
+
description?: string;
|
|
4877
|
+
data?: Record<string, any>;
|
|
4874
4878
|
};
|
|
4875
4879
|
/** @docsIgnore */
|
|
4876
4880
|
type UpdateLineItemsApplicationErrors = {
|
|
@@ -4919,6 +4923,10 @@ type SetDepositApplicationErrors = {
|
|
|
4919
4923
|
code?: 'DRAFT_ORDER_ALREADY_COMMITTED';
|
|
4920
4924
|
description?: string;
|
|
4921
4925
|
data?: Record<string, any>;
|
|
4926
|
+
} | {
|
|
4927
|
+
code?: 'DRAFT_ORDER_HAS_DEPOSIT_LINE_ITEMS';
|
|
4928
|
+
description?: string;
|
|
4929
|
+
data?: Record<string, any>;
|
|
4922
4930
|
};
|
|
4923
4931
|
/** @docsIgnore */
|
|
4924
4932
|
type SetDiscountsApplicationErrors = {
|