@wix/auto_sdk_ecom_draft-orders 1.0.106 → 1.0.108

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.
@@ -4999,6 +4999,14 @@ type UpdateLineItemsApplicationErrors = {
4999
4999
  code?: 'DRAFT_ORDER_ALREADY_COMMITTED';
5000
5000
  description?: string;
5001
5001
  data?: Record<string, any>;
5002
+ } | {
5003
+ code?: 'CANNOT_UPDATE_CATALOG_REFERENCE_OPTIONS_OF_NON_CATALOG_ITEM';
5004
+ description?: string;
5005
+ data?: Record<string, any>;
5006
+ } | {
5007
+ code?: 'CANNOT_UPDATE_CATALOG_REFERENCE_OPTIONS_OF_FULFILLED_ITEM';
5008
+ description?: string;
5009
+ data?: Record<string, any>;
5002
5010
  };
5003
5011
  /** @docsIgnore */
5004
5012
  type SetDepositApplicationErrors = {
@@ -5199,6 +5207,10 @@ type CreateOrderFromDraftApplicationErrors = {
5199
5207
  code?: 'DRAFT_ORDER_ALREADY_COMMITTED';
5200
5208
  description?: string;
5201
5209
  data?: Record<string, any>;
5210
+ } | {
5211
+ code?: 'DRAFT_ORDER_DEPOSIT_AMOUNT_EXCEEDS_ORDER_TOTAL';
5212
+ description?: string;
5213
+ data?: Record<string, any>;
5202
5214
  };
5203
5215
  /** @docsIgnore */
5204
5216
  type DeleteDraftOrderApplicationErrors = {