@wix/auto_sdk_ecom_cart 1.0.119 → 1.0.121

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.
@@ -738,6 +738,11 @@ interface CatalogOverrideFields {
738
738
  * Default: `false`
739
739
  */
740
740
  savePaymentMethod?: boolean | null;
741
+ /**
742
+ * ID of the app managing the inventory.
743
+ * @format GUID
744
+ */
745
+ inventoryAppId?: string | null;
741
746
  }
742
747
  interface PaymentOption {
743
748
  /**
@@ -854,9 +859,9 @@ interface PlatformFee {
854
859
  /**
855
860
  * Percentage rate charged as platform fee.
856
861
  *
857
- * The fee rate expressed as a decimal fraction between 0 and 1. For example, `0.05` for 5%.
862
+ * The fee rate percentage expressed as a decimal fraction between 0 and 1. For example, `0.05` for 5%.
858
863
  * @format DECIMAL_VALUE
859
- * @decimalValue options { gte:0, lte:1, maxScale:4 }
864
+ * @decimalValue options { gt:0, lte:1, maxScale:4 }
860
865
  */
861
866
  percentageRate?: string;
862
867
  }