@wix/auto_sdk_ecom_draft-orders 1.0.55 → 1.0.56
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 +4 -2
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +4 -2
- package/build/es/index.mjs +1 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +4 -2
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +4 -2
- 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 +4 -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 +4 -2
- 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 +4 -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 +4 -2
- package/package.json +2 -2
|
@@ -3492,10 +3492,12 @@ declare enum ChannelType {
|
|
|
3492
3492
|
/** [TikTok sales channel](https://support.wix.com/en/article/wix-stores-request-adding-tiktok-as-a-sales-channel). */
|
|
3493
3493
|
TIKTOK = "TIKTOK",
|
|
3494
3494
|
/** [Faire marketplace integration](https://support.wix.com/en/article/wix-stores-creating-a-faire-store-using-the-faire-integration-app). */
|
|
3495
|
-
FAIRE_COM = "FAIRE_COM"
|
|
3495
|
+
FAIRE_COM = "FAIRE_COM",
|
|
3496
|
+
/** PayPal Agentic Checkout sales channel. */
|
|
3497
|
+
PAYPAL_AGENTIC_CHECKOUT = "PAYPAL_AGENTIC_CHECKOUT"
|
|
3496
3498
|
}
|
|
3497
3499
|
/** @enumType */
|
|
3498
|
-
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';
|
|
3500
|
+
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';
|
|
3499
3501
|
interface CustomField {
|
|
3500
3502
|
/** Custom field value. */
|
|
3501
3503
|
value?: any;
|
|
@@ -3289,6 +3289,7 @@ var ChannelType = /* @__PURE__ */ ((ChannelType2) => {
|
|
|
3289
3289
|
ChannelType2["ETSY"] = "ETSY";
|
|
3290
3290
|
ChannelType2["TIKTOK"] = "TIKTOK";
|
|
3291
3291
|
ChannelType2["FAIRE_COM"] = "FAIRE_COM";
|
|
3292
|
+
ChannelType2["PAYPAL_AGENTIC_CHECKOUT"] = "PAYPAL_AGENTIC_CHECKOUT";
|
|
3292
3293
|
return ChannelType2;
|
|
3293
3294
|
})(ChannelType || {});
|
|
3294
3295
|
var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
|