@wix/auto_sdk_ecom_checkout 1.0.116 → 1.0.118

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.
@@ -938,6 +938,11 @@ interface CatalogOverrideFields {
938
938
  * Default: `false`
939
939
  */
940
940
  savePaymentMethod?: boolean | null;
941
+ /**
942
+ * ID of the app managing the inventory.
943
+ * @format GUID
944
+ */
945
+ inventoryAppId?: string | null;
941
946
  }
942
947
  interface Image {
943
948
  /** WixMedia image ID. */
@@ -1066,9 +1071,9 @@ interface PlatformFee {
1066
1071
  /**
1067
1072
  * Percentage rate charged as platform fee.
1068
1073
  *
1069
- * The fee rate expressed as a decimal fraction between 0 and 1. For example, `0.05` for 5%.
1074
+ * The fee rate percentage expressed as a decimal fraction between 0 and 1. For example, `0.05` for 5%.
1070
1075
  * @format DECIMAL_VALUE
1071
- * @decimalValue options { gte:0, lte:1, maxScale:4 }
1076
+ * @decimalValue options { gt:0, lte:1, maxScale:4 }
1072
1077
  */
1073
1078
  percentageRate?: string;
1074
1079
  }