@wix/auto_sdk_ecom_checkout 1.0.136 → 1.0.138

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.
@@ -2043,10 +2043,12 @@ declare enum ChannelType {
2043
2043
  /** [Faire marketplace integration](https://support.wix.com/en/article/wix-stores-creating-a-faire-store-using-the-faire-integration-app). */
2044
2044
  FAIRE_COM = "FAIRE_COM",
2045
2045
  /** PayPal Agentic Checkout sales channel. */
2046
- PAYPAL_AGENTIC_CHECKOUT = "PAYPAL_AGENTIC_CHECKOUT"
2046
+ PAYPAL_AGENTIC_CHECKOUT = "PAYPAL_AGENTIC_CHECKOUT",
2047
+ /** Stripe Agentic Checkout sales channel. */
2048
+ STRIPE_AGENTIC_CHECKOUT = "STRIPE_AGENTIC_CHECKOUT"
2047
2049
  }
2048
2050
  /** @enumType */
2049
- 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';
2051
+ 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';
2050
2052
  interface CreatedBy extends CreatedByIdOneOf {
2051
2053
  /**
2052
2054
  * User ID. When the order was created by a Wix user on behalf of a buyer.
@@ -2163,7 +2165,6 @@ interface MembershipPaymentCredits {
2163
2165
  /**
2164
2166
  * The amount to redeem from the `remaining` balance (per item).
2165
2167
  * @internal
2166
- * @min 1
2167
2168
  */
2168
2169
  redemptionCost?: number;
2169
2170
  /**
@@ -1489,6 +1489,7 @@ var ChannelType = /* @__PURE__ */ ((ChannelType2) => {
1489
1489
  ChannelType2["TIKTOK"] = "TIKTOK";
1490
1490
  ChannelType2["FAIRE_COM"] = "FAIRE_COM";
1491
1491
  ChannelType2["PAYPAL_AGENTIC_CHECKOUT"] = "PAYPAL_AGENTIC_CHECKOUT";
1492
+ ChannelType2["STRIPE_AGENTIC_CHECKOUT"] = "STRIPE_AGENTIC_CHECKOUT";
1492
1493
  return ChannelType2;
1493
1494
  })(ChannelType || {});
1494
1495
  var BalanceType = /* @__PURE__ */ ((BalanceType2) => {