@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.
@@ -4712,6 +4712,14 @@ type UpdateLineItemsApplicationErrors = {
4712
4712
  code?: 'DRAFT_ORDER_ALREADY_COMMITTED';
4713
4713
  description?: string;
4714
4714
  data?: Record<string, any>;
4715
+ } | {
4716
+ code?: 'CANNOT_UPDATE_CATALOG_REFERENCE_OPTIONS_OF_NON_CATALOG_ITEM';
4717
+ description?: string;
4718
+ data?: Record<string, any>;
4719
+ } | {
4720
+ code?: 'CANNOT_UPDATE_CATALOG_REFERENCE_OPTIONS_OF_FULFILLED_ITEM';
4721
+ description?: string;
4722
+ data?: Record<string, any>;
4715
4723
  };
4716
4724
  /** @docsIgnore */
4717
4725
  type SetDepositApplicationErrors = {
@@ -4912,6 +4920,10 @@ type CreateOrderFromDraftApplicationErrors = {
4912
4920
  code?: 'DRAFT_ORDER_ALREADY_COMMITTED';
4913
4921
  description?: string;
4914
4922
  data?: Record<string, any>;
4923
+ } | {
4924
+ code?: 'DRAFT_ORDER_DEPOSIT_AMOUNT_EXCEEDS_ORDER_TOTAL';
4925
+ description?: string;
4926
+ data?: Record<string, any>;
4915
4927
  };
4916
4928
  /** @docsIgnore */
4917
4929
  type DeleteDraftOrderApplicationErrors = {