@wix/auto_sdk_ecom_subscription-contracts 1.0.98 → 1.0.100

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.
@@ -1459,6 +1459,11 @@ interface AppliedDiscount extends AppliedDiscountDiscountSourceOneOf {
1459
1459
  * @immutable
1460
1460
  */
1461
1461
  _id?: string | null;
1462
+ /**
1463
+ * Line items the discount applies to, including the discount amount for each.
1464
+ * @maxSize 300
1465
+ */
1466
+ lineItemDiscounts?: LineItemDiscount[];
1462
1467
  /**
1463
1468
  * Number of subscription billing cycles the discount applies to.
1464
1469
  * If None and discount is linked to subscription line item, it applies to all cycles.
@@ -1664,10 +1669,12 @@ declare enum ChannelType {
1664
1669
  /** [Faire marketplace integration](https://support.wix.com/en/article/wix-stores-creating-a-faire-store-using-the-faire-integration-app). */
1665
1670
  FAIRE_COM = "FAIRE_COM",
1666
1671
  /** PayPal Agentic Checkout sales channel. */
1667
- PAYPAL_AGENTIC_CHECKOUT = "PAYPAL_AGENTIC_CHECKOUT"
1672
+ PAYPAL_AGENTIC_CHECKOUT = "PAYPAL_AGENTIC_CHECKOUT",
1673
+ /** Stripe Agentic Checkout sales channel. */
1674
+ STRIPE_AGENTIC_CHECKOUT = "STRIPE_AGENTIC_CHECKOUT"
1668
1675
  }
1669
1676
  /** @enumType */
1670
- type ChannelTypeWithLiterals = ChannelType | 'UNSPECIFIED' | 'WEB' | 'POS' | 'EBAY' | 'AMAZON' | 'OTHER_PLATFORM' | 'WIX_APP_STORE' | 'WIX_INVOICES' | 'BACKOFFICE_MERCHANT' | 'WISH' | 'CLASS_PASS' | 'GLOBAL_E' | 'FACEBOOK' | 'ETSY' | 'TIKTOK' | 'FAIRE_COM' | 'PAYPAL_AGENTIC_CHECKOUT';
1677
+ type ChannelTypeWithLiterals = ChannelType | 'UNSPECIFIED' | 'WEB' | 'POS' | 'EBAY' | 'AMAZON' | 'OTHER_PLATFORM' | 'WIX_APP_STORE' | 'WIX_INVOICES' | 'BACKOFFICE_MERCHANT' | 'WISH' | 'CLASS_PASS' | 'GLOBAL_E' | 'FACEBOOK' | 'ETSY' | 'TIKTOK' | 'FAIRE_COM' | 'PAYPAL_AGENTIC_CHECKOUT' | 'STRIPE_AGENTIC_CHECKOUT';
1671
1678
  interface CustomField {
1672
1679
  /** Custom field value. */
1673
1680
  value?: any;
@@ -356,6 +356,7 @@ var ChannelType = /* @__PURE__ */ ((ChannelType2) => {
356
356
  ChannelType2["TIKTOK"] = "TIKTOK";
357
357
  ChannelType2["FAIRE_COM"] = "FAIRE_COM";
358
358
  ChannelType2["PAYPAL_AGENTIC_CHECKOUT"] = "PAYPAL_AGENTIC_CHECKOUT";
359
+ ChannelType2["STRIPE_AGENTIC_CHECKOUT"] = "STRIPE_AGENTIC_CHECKOUT";
359
360
  return ChannelType2;
360
361
  })(ChannelType || {});
361
362
  var AdditionalFeeSource = /* @__PURE__ */ ((AdditionalFeeSource2) => {