@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
|
@@ -4535,6 +4535,8 @@ interface MessageEnvelope {
|
|
|
4535
4535
|
identity?: IdentificationData;
|
|
4536
4536
|
/** Stringify payload. */
|
|
4537
4537
|
data?: string;
|
|
4538
|
+
/** Details related to the account */
|
|
4539
|
+
accountInfo?: AccountInfo;
|
|
4538
4540
|
}
|
|
4539
4541
|
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
4540
4542
|
/**
|
|
@@ -4712,6 +4714,14 @@ type UpdateLineItemsApplicationErrors = {
|
|
|
4712
4714
|
code?: 'DRAFT_ORDER_ALREADY_COMMITTED';
|
|
4713
4715
|
description?: string;
|
|
4714
4716
|
data?: Record<string, any>;
|
|
4717
|
+
} | {
|
|
4718
|
+
code?: 'CANNOT_UPDATE_CATALOG_REFERENCE_OPTIONS_OF_NON_CATALOG_ITEM';
|
|
4719
|
+
description?: string;
|
|
4720
|
+
data?: Record<string, any>;
|
|
4721
|
+
} | {
|
|
4722
|
+
code?: 'CANNOT_UPDATE_CATALOG_REFERENCE_OPTIONS_OF_FULFILLED_ITEM';
|
|
4723
|
+
description?: string;
|
|
4724
|
+
data?: Record<string, any>;
|
|
4715
4725
|
};
|
|
4716
4726
|
/** @docsIgnore */
|
|
4717
4727
|
type SetDepositApplicationErrors = {
|
|
@@ -4974,6 +4984,8 @@ interface BaseEventMetadata {
|
|
|
4974
4984
|
eventType?: string;
|
|
4975
4985
|
/** The identification type and identity data. */
|
|
4976
4986
|
identity?: IdentificationData;
|
|
4987
|
+
/** Details related to the account */
|
|
4988
|
+
accountInfo?: AccountInfo;
|
|
4977
4989
|
}
|
|
4978
4990
|
interface EventMetadata extends BaseEventMetadata {
|
|
4979
4991
|
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|