@wix/auto_sdk_ecom_draft-orders 1.0.107 → 1.0.109
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 +12 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +10 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +12 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +10 -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 +12 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +10 -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 +12 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +10 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -4567,6 +4567,8 @@ interface MessageEnvelope {
|
|
|
4567
4567
|
identity?: IdentificationData;
|
|
4568
4568
|
/** Stringify payload. */
|
|
4569
4569
|
data?: string;
|
|
4570
|
+
/** Details related to the account */
|
|
4571
|
+
accountInfo?: AccountInfo;
|
|
4570
4572
|
}
|
|
4571
4573
|
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
4572
4574
|
/**
|
|
@@ -4744,6 +4746,14 @@ type UpdateLineItemsApplicationErrors = {
|
|
|
4744
4746
|
code?: 'DRAFT_ORDER_ALREADY_COMMITTED';
|
|
4745
4747
|
description?: string;
|
|
4746
4748
|
data?: Record<string, any>;
|
|
4749
|
+
} | {
|
|
4750
|
+
code?: 'CANNOT_UPDATE_CATALOG_REFERENCE_OPTIONS_OF_NON_CATALOG_ITEM';
|
|
4751
|
+
description?: string;
|
|
4752
|
+
data?: Record<string, any>;
|
|
4753
|
+
} | {
|
|
4754
|
+
code?: 'CANNOT_UPDATE_CATALOG_REFERENCE_OPTIONS_OF_FULFILLED_ITEM';
|
|
4755
|
+
description?: string;
|
|
4756
|
+
data?: Record<string, any>;
|
|
4747
4757
|
};
|
|
4748
4758
|
/** @docsIgnore */
|
|
4749
4759
|
type SetDepositApplicationErrors = {
|