@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.
@@ -1361,6 +1361,11 @@ interface AppliedDiscount extends AppliedDiscountDiscountSourceOneOf {
1361
1361
  * @immutable
1362
1362
  */
1363
1363
  _id?: string | null;
1364
+ /**
1365
+ * Line items the discount applies to, including the discount amount for each.
1366
+ * @maxSize 300
1367
+ */
1368
+ lineItemDiscounts?: LineItemDiscount[];
1364
1369
  }
1365
1370
  /** @oneof */
1366
1371
  interface AppliedDiscountDiscountSourceOneOf {
@@ -1541,10 +1546,12 @@ declare enum ChannelType {
1541
1546
  /** [Faire marketplace integration](https://support.wix.com/en/article/wix-stores-creating-a-faire-store-using-the-faire-integration-app). */
1542
1547
  FAIRE_COM = "FAIRE_COM",
1543
1548
  /** PayPal Agentic Checkout sales channel. */
1544
- PAYPAL_AGENTIC_CHECKOUT = "PAYPAL_AGENTIC_CHECKOUT"
1549
+ PAYPAL_AGENTIC_CHECKOUT = "PAYPAL_AGENTIC_CHECKOUT",
1550
+ /** Stripe Agentic Checkout sales channel. */
1551
+ STRIPE_AGENTIC_CHECKOUT = "STRIPE_AGENTIC_CHECKOUT"
1545
1552
  }
1546
1553
  /** @enumType */
1547
- 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';
1554
+ 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';
1548
1555
  interface CustomField {
1549
1556
  /** Custom field value. */
1550
1557
  value?: any;
@@ -401,6 +401,7 @@ var ChannelType = /* @__PURE__ */ ((ChannelType2) => {
401
401
  ChannelType2["TIKTOK"] = "TIKTOK";
402
402
  ChannelType2["FAIRE_COM"] = "FAIRE_COM";
403
403
  ChannelType2["PAYPAL_AGENTIC_CHECKOUT"] = "PAYPAL_AGENTIC_CHECKOUT";
404
+ ChannelType2["STRIPE_AGENTIC_CHECKOUT"] = "STRIPE_AGENTIC_CHECKOUT";
404
405
  return ChannelType2;
405
406
  })(ChannelType || {});
406
407
  var AdditionalFeeSource = /* @__PURE__ */ ((AdditionalFeeSource2) => {