@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
|
@@ -4822,6 +4822,8 @@ interface MessageEnvelope {
|
|
|
4822
4822
|
identity?: IdentificationData;
|
|
4823
4823
|
/** Stringify payload. */
|
|
4824
4824
|
data?: string;
|
|
4825
|
+
/** Details related to the account */
|
|
4826
|
+
accountInfo?: AccountInfo;
|
|
4825
4827
|
}
|
|
4826
4828
|
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
4827
4829
|
/**
|
|
@@ -4999,6 +5001,14 @@ type UpdateLineItemsApplicationErrors = {
|
|
|
4999
5001
|
code?: 'DRAFT_ORDER_ALREADY_COMMITTED';
|
|
5000
5002
|
description?: string;
|
|
5001
5003
|
data?: Record<string, any>;
|
|
5004
|
+
} | {
|
|
5005
|
+
code?: 'CANNOT_UPDATE_CATALOG_REFERENCE_OPTIONS_OF_NON_CATALOG_ITEM';
|
|
5006
|
+
description?: string;
|
|
5007
|
+
data?: Record<string, any>;
|
|
5008
|
+
} | {
|
|
5009
|
+
code?: 'CANNOT_UPDATE_CATALOG_REFERENCE_OPTIONS_OF_FULFILLED_ITEM';
|
|
5010
|
+
description?: string;
|
|
5011
|
+
data?: Record<string, any>;
|
|
5002
5012
|
};
|
|
5003
5013
|
/** @docsIgnore */
|
|
5004
5014
|
type SetDepositApplicationErrors = {
|
|
@@ -5261,6 +5271,8 @@ interface BaseEventMetadata {
|
|
|
5261
5271
|
eventType?: string;
|
|
5262
5272
|
/** The identification type and identity data. */
|
|
5263
5273
|
identity?: IdentificationData;
|
|
5274
|
+
/** Details related to the account */
|
|
5275
|
+
accountInfo?: AccountInfo;
|
|
5264
5276
|
}
|
|
5265
5277
|
interface EventMetadata extends BaseEventMetadata {
|
|
5266
5278
|
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|