@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.
@@ -908,6 +908,11 @@ interface CatalogOverrideFields {
908
908
  * Default: `false`
909
909
  */
910
910
  savePaymentMethod?: boolean | null;
911
+ /**
912
+ * ID of the app managing the inventory.
913
+ * @format GUID
914
+ */
915
+ inventoryAppId?: string | null;
911
916
  }
912
917
  interface PaymentOption {
913
918
  /**
@@ -1024,9 +1029,9 @@ interface PlatformFee {
1024
1029
  /**
1025
1030
  * Percentage rate charged as platform fee.
1026
1031
  *
1027
- * The fee rate expressed as a decimal fraction between 0 and 1. For example, `0.05` for 5%.
1032
+ * The fee rate percentage expressed as a decimal fraction between 0 and 1. For example, `0.05` for 5%.
1028
1033
  * @format DECIMAL_VALUE
1029
- * @decimalValue options { gte:0, lte:1, maxScale:4 }
1034
+ * @decimalValue options { gt:0, lte:1, maxScale:4 }
1030
1035
  */
1031
1036
  percentageRate?: string;
1032
1037
  }