@wix/auto_sdk_ecom_checkout 1.0.133 → 1.0.135

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.
@@ -449,6 +449,13 @@ interface LineItem {
449
449
  * @readonly
450
450
  */
451
451
  modifiersTotalPrice?: MultiCurrencyPrice;
452
+ /**
453
+ * Line item ID in external systems.
454
+ * @internal
455
+ * @minLength 1
456
+ * @maxLength 100
457
+ */
458
+ externalResourceId?: string | null;
452
459
  }
453
460
  /** Used for grouping line items. Sent when an item is added to a cart, checkout, or order. */
454
461
  interface CatalogReference {
@@ -1738,15 +1745,8 @@ interface AppliedDiscount extends AppliedDiscountDiscountSourceOneOf {
1738
1745
  /** Discount type. */
1739
1746
  discountType?: DiscountTypeWithLiterals;
1740
1747
  /**
1741
- * Deprecated. Use `lineItemDiscounts` instead.
1742
- *
1743
1748
  * IDs of line items the discount applies to.
1744
1749
  * @format GUID
1745
- * @deprecated Deprecated. Use `lineItemDiscounts` instead.
1746
- *
1747
- * IDs of line items the discount applies to.
1748
- * @replacedBy line_items_discounts
1749
- * @targetRemovalDate 2026-03-31
1750
1750
  */
1751
1751
  lineItemIds?: string[];
1752
1752
  /**