@wix/auto_sdk_ecom_checkout-templates 1.0.96 → 1.0.98

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.
@@ -173,6 +173,11 @@ interface CatalogOverrideFields {
173
173
  * Default: `false`
174
174
  */
175
175
  savePaymentMethod?: boolean | null;
176
+ /**
177
+ * ID of the app managing the inventory.
178
+ * @format GUID
179
+ */
180
+ inventoryAppId?: string | null;
176
181
  }
177
182
  interface ProductName {
178
183
  /**
@@ -1362,9 +1367,9 @@ interface PlatformFee {
1362
1367
  /**
1363
1368
  * Percentage rate charged as platform fee.
1364
1369
  *
1365
- * The fee rate expressed as a decimal fraction between 0 and 1. For example, `0.05` for 5%.
1370
+ * The fee rate percentage expressed as a decimal fraction between 0 and 1. For example, `0.05` for 5%.
1366
1371
  * @format DECIMAL_VALUE
1367
- * @decimalValue options { gte:0, lte:1, maxScale:4 }
1372
+ * @decimalValue options { gt:0, lte:1, maxScale:4 }
1368
1373
  */
1369
1374
  percentageRate?: string;
1370
1375
  }