@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.
- package/build/cjs/index.js +1 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +9 -2
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +9 -2
- package/build/cjs/meta.js +1 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +1 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +9 -2
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +9 -2
- package/build/es/meta.mjs +1 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +1 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +9 -2
- package/build/internal/cjs/index.typings.js +1 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +9 -2
- package/build/internal/cjs/meta.js +1 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +1 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +9 -2
- package/build/internal/es/index.typings.mjs +1 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +9 -2
- package/build/internal/es/meta.mjs +1 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -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;
|
|
@@ -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) => {
|