@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.
@@ -4744,6 +4744,14 @@ type UpdateLineItemsApplicationErrors = {
4744
4744
  code?: 'DRAFT_ORDER_ALREADY_COMMITTED';
4745
4745
  description?: string;
4746
4746
  data?: Record<string, any>;
4747
+ } | {
4748
+ code?: 'CANNOT_UPDATE_CATALOG_REFERENCE_OPTIONS_OF_NON_CATALOG_ITEM';
4749
+ description?: string;
4750
+ data?: Record<string, any>;
4751
+ } | {
4752
+ code?: 'CANNOT_UPDATE_CATALOG_REFERENCE_OPTIONS_OF_FULFILLED_ITEM';
4753
+ description?: string;
4754
+ data?: Record<string, any>;
4747
4755
  };
4748
4756
  /** @docsIgnore */
4749
4757
  type SetDepositApplicationErrors = {
@@ -4944,6 +4952,10 @@ type CreateOrderFromDraftApplicationErrors = {
4944
4952
  code?: 'DRAFT_ORDER_ALREADY_COMMITTED';
4945
4953
  description?: string;
4946
4954
  data?: Record<string, any>;
4955
+ } | {
4956
+ code?: 'DRAFT_ORDER_DEPOSIT_AMOUNT_EXCEEDS_ORDER_TOTAL';
4957
+ description?: string;
4958
+ data?: Record<string, any>;
4947
4959
  };
4948
4960
  /** @docsIgnore */
4949
4961
  type DeleteDraftOrderApplicationErrors = {