@wix/auto_sdk_ecom_checkout 1.0.114 → 1.0.116

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.
@@ -974,6 +974,12 @@ interface CatalogOverrideFields {
974
974
  * Default: `false`
975
975
  */
976
976
  savePaymentMethod?: boolean | null;
977
+ /**
978
+ * ID of the app managing the inventory.
979
+ * @internal
980
+ * @format GUID
981
+ */
982
+ inventoryAppId?: string | null;
977
983
  }
978
984
  interface PaymentOption {
979
985
  /**
@@ -2418,9 +2424,15 @@ interface LineItemAdded {
2418
2424
  * @minLength 1
2419
2425
  * @maxLength 36
2420
2426
  */
2421
- appId?: string | null;
2427
+ catalogAppId?: string | null;
2422
2428
  /** Whether the line item is a custom line item. */
2423
2429
  customLineItem?: boolean;
2430
+ /**
2431
+ * ID of the app that added the line item to the cart (from the identity context).
2432
+ * @minLength 1
2433
+ * @maxLength 36
2434
+ */
2435
+ appDefId?: string | null;
2424
2436
  }
2425
2437
  interface CouponAdded {
2426
2438
  /**