@wix/auto_sdk_ecom_orders 1.0.178 → 1.0.180
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/{ecom-v1-order-orders.universal-DJjccA2m.d.ts → ecom-v1-order-orders.universal-BxEUDZMO.d.ts} +74 -45
- package/build/cjs/index.d.ts +14 -18
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +7 -8
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +66 -38
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-DJjccA2m.d.mts → ecom-v1-order-orders.universal-BxEUDZMO.d.mts} +74 -45
- package/build/es/index.d.mts +14 -18
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +7 -8
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +66 -38
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-2VQJF3IE.d.ts → ecom-v1-order-orders.universal-Bdk3i4E7.d.ts} +96 -50
- package/build/internal/cjs/index.d.ts +21 -25
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +7 -8
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +66 -38
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{ecom-v1-order-orders.universal-2VQJF3IE.d.mts → ecom-v1-order-orders.universal-Bdk3i4E7.d.mts} +96 -50
- package/build/internal/es/index.d.mts +21 -25
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +7 -8
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +66 -38
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { SearchSpec, Search, NonNullablePaths } from '@wix/sdk-types';
|
|
2
2
|
|
|
3
|
+
/**
|
|
4
|
+
* An order represents a completed purchase from a buyer. Orders are created through the checkout flow or manually via the Create Order endpoint.
|
|
5
|
+
*
|
|
6
|
+
* The order contains details about purchased items, buyer and recipient information, pricing, tax, shipping, fulfillment status, and payment status.
|
|
7
|
+
*/
|
|
3
8
|
interface Order {
|
|
4
9
|
/**
|
|
5
10
|
* Order ID.
|
|
@@ -146,10 +151,10 @@ interface Order {
|
|
|
146
151
|
*/
|
|
147
152
|
purchaseFlowId?: string | null;
|
|
148
153
|
/**
|
|
149
|
-
*
|
|
154
|
+
* Final recipient's address and contact details.
|
|
150
155
|
*
|
|
151
|
-
* This field
|
|
152
|
-
* + The chosen shipping option is pickup point or store pickup.
|
|
156
|
+
* This field represents who will ultimately receive the order. It may differ from `shippingInfo.logistics.shippingDestination` when:
|
|
157
|
+
* + The chosen shipping option is a pickup point or store pickup, where `shippingDestination` contains the pickup location.
|
|
153
158
|
* + No shipping option is selected.
|
|
154
159
|
*/
|
|
155
160
|
recipientInfo?: AddressWithContact;
|
|
@@ -181,6 +186,7 @@ interface OrderLineItem {
|
|
|
181
186
|
_id?: string;
|
|
182
187
|
/**
|
|
183
188
|
* Item name.
|
|
189
|
+
*
|
|
184
190
|
* + Stores - `product.name`
|
|
185
191
|
* + Bookings - `service.info.name`
|
|
186
192
|
* + Events - `ticket.name`
|
|
@@ -857,15 +863,15 @@ interface ItemModifier {
|
|
|
857
863
|
/** The price of the modifier. */
|
|
858
864
|
price?: Price;
|
|
859
865
|
}
|
|
860
|
-
/** Buyer
|
|
866
|
+
/** Buyer information. */
|
|
861
867
|
interface BuyerInfo extends BuyerInfoIdOneOf {
|
|
862
868
|
/**
|
|
863
|
-
* Visitor ID
|
|
869
|
+
* Visitor ID. Returned when the buyer isn't a logged-in site member.
|
|
864
870
|
* @format GUID
|
|
865
871
|
*/
|
|
866
872
|
visitorId?: string;
|
|
867
873
|
/**
|
|
868
|
-
* Member ID
|
|
874
|
+
* Member ID. Returned when the buyer is a logged-in site member.
|
|
869
875
|
* @format GUID
|
|
870
876
|
*/
|
|
871
877
|
memberId?: string;
|
|
@@ -875,7 +881,7 @@ interface BuyerInfo extends BuyerInfoIdOneOf {
|
|
|
875
881
|
*/
|
|
876
882
|
contactId?: string | null;
|
|
877
883
|
/**
|
|
878
|
-
* Buyer email address.
|
|
884
|
+
* Buyer's email address.
|
|
879
885
|
* @format EMAIL
|
|
880
886
|
*/
|
|
881
887
|
email?: string | null;
|
|
@@ -883,12 +889,12 @@ interface BuyerInfo extends BuyerInfoIdOneOf {
|
|
|
883
889
|
/** @oneof */
|
|
884
890
|
interface BuyerInfoIdOneOf {
|
|
885
891
|
/**
|
|
886
|
-
* Visitor ID
|
|
892
|
+
* Visitor ID. Returned when the buyer isn't a logged-in site member.
|
|
887
893
|
* @format GUID
|
|
888
894
|
*/
|
|
889
895
|
visitorId?: string;
|
|
890
896
|
/**
|
|
891
|
-
* Member ID
|
|
897
|
+
* Member ID. Returned when the buyer is a logged-in site member.
|
|
892
898
|
* @format GUID
|
|
893
899
|
*/
|
|
894
900
|
memberId?: string;
|
|
@@ -978,17 +984,17 @@ interface CurrencyConversionDetails {
|
|
|
978
984
|
conversionRate?: string | null;
|
|
979
985
|
}
|
|
980
986
|
interface PriceSummary {
|
|
981
|
-
/** Subtotal of all
|
|
987
|
+
/** Subtotal of all line items, before discounts and before tax. */
|
|
982
988
|
subtotal?: Price;
|
|
983
989
|
/** Total shipping price, before discounts and before tax. */
|
|
984
990
|
shipping?: Price;
|
|
985
|
-
/** Total tax
|
|
991
|
+
/** Total tax applied to the order. */
|
|
986
992
|
tax?: Price;
|
|
987
|
-
/** Total
|
|
993
|
+
/** Total discount amount applied to the order. */
|
|
988
994
|
discount?: Price;
|
|
989
|
-
/** Order
|
|
995
|
+
/** Order's total price after discounts and tax. */
|
|
990
996
|
total?: Price;
|
|
991
|
-
/** Total
|
|
997
|
+
/** Total additional fees before tax. */
|
|
992
998
|
totalAdditionalFees?: Price;
|
|
993
999
|
}
|
|
994
1000
|
/** Billing Info and shipping details */
|
|
@@ -1131,9 +1137,9 @@ interface V1ShippingInformation {
|
|
|
1131
1137
|
region?: ShippingRegion;
|
|
1132
1138
|
}
|
|
1133
1139
|
interface DeliveryLogistics extends DeliveryLogisticsAddressOneOf {
|
|
1134
|
-
/** Shipping address and contact details. */
|
|
1140
|
+
/** Shipping destination address and contact details. For pickup orders, this contains the pickup location address, not the recipient's address. */
|
|
1135
1141
|
shippingDestination?: AddressWithContact;
|
|
1136
|
-
/** Pickup details. */
|
|
1142
|
+
/** Pickup details for store pickup or pickup point orders. */
|
|
1137
1143
|
pickupDetails?: PickupDetails;
|
|
1138
1144
|
/**
|
|
1139
1145
|
* Expected delivery time in free text. For example, `"3-5 business days"`.
|
|
@@ -1141,7 +1147,7 @@ interface DeliveryLogistics extends DeliveryLogisticsAddressOneOf {
|
|
|
1141
1147
|
*/
|
|
1142
1148
|
deliveryTime?: string | null;
|
|
1143
1149
|
/**
|
|
1144
|
-
* Instructions for carrier. For example, `"Please knock on the door. If unanswered, please call contact number.
|
|
1150
|
+
* Instructions for the carrier. For example, `"Please knock on the door. If unanswered, please call contact number."`.
|
|
1145
1151
|
* @maxLength 1000
|
|
1146
1152
|
*/
|
|
1147
1153
|
instructions?: string | null;
|
|
@@ -1150,14 +1156,14 @@ interface DeliveryLogistics extends DeliveryLogisticsAddressOneOf {
|
|
|
1150
1156
|
* @deprecated
|
|
1151
1157
|
*/
|
|
1152
1158
|
deliverByDate?: Date | null;
|
|
1153
|
-
/** Expected delivery time. */
|
|
1159
|
+
/** Expected delivery time slot with start and end times. */
|
|
1154
1160
|
deliveryTimeSlot?: DeliveryTimeSlot;
|
|
1155
1161
|
}
|
|
1156
1162
|
/** @oneof */
|
|
1157
1163
|
interface DeliveryLogisticsAddressOneOf {
|
|
1158
|
-
/** Shipping address and contact details. */
|
|
1164
|
+
/** Shipping destination address and contact details. For pickup orders, this contains the pickup location address, not the recipient's address. */
|
|
1159
1165
|
shippingDestination?: AddressWithContact;
|
|
1160
|
-
/** Pickup details. */
|
|
1166
|
+
/** Pickup details for store pickup or pickup point orders. */
|
|
1161
1167
|
pickupDetails?: PickupDetails;
|
|
1162
1168
|
}
|
|
1163
1169
|
interface PickupDetails {
|
|
@@ -1265,14 +1271,14 @@ declare enum OrderStatus {
|
|
|
1265
1271
|
/**
|
|
1266
1272
|
* Order approved.
|
|
1267
1273
|
*
|
|
1268
|
-
* This happens when either an online payment is received **or** when `
|
|
1274
|
+
* This happens when either an online payment is received **or** when `priceSummary.total` is `0` (a zero-total order).
|
|
1269
1275
|
* Offline orders (cash payment) are automatically approved.
|
|
1270
1276
|
*/
|
|
1271
1277
|
APPROVED = "APPROVED",
|
|
1272
|
-
/** Order canceled by the
|
|
1278
|
+
/** Order canceled by the merchant or buyer. */
|
|
1273
1279
|
CANCELED = "CANCELED",
|
|
1274
1280
|
/**
|
|
1275
|
-
* Order
|
|
1281
|
+
* Order is waiting for the buyer to complete checkout.
|
|
1276
1282
|
* @documentationMaturity preview
|
|
1277
1283
|
*/
|
|
1278
1284
|
PENDING = "PENDING",
|
|
@@ -1497,8 +1503,6 @@ interface ItemCombinationLineItem {
|
|
|
1497
1503
|
quantity?: number;
|
|
1498
1504
|
}
|
|
1499
1505
|
interface Activity extends ActivityContentOneOf {
|
|
1500
|
-
/** Custom activity details (optional). `activity.type` must be `CUSTOM_ACTIVITY`. */
|
|
1501
|
-
customActivity?: CustomActivity;
|
|
1502
1506
|
/** Merchant comment details (optional). `activity.type` must be `MERCHANT_COMMENT`. */
|
|
1503
1507
|
merchantComment?: MerchantComment;
|
|
1504
1508
|
/** Additional info about order refunded activity (optional). `activity.type` must be `ORDER_REFUNDED`. */
|
|
@@ -1579,8 +1583,6 @@ interface Activity extends ActivityContentOneOf {
|
|
|
1579
1583
|
}
|
|
1580
1584
|
/** @oneof */
|
|
1581
1585
|
interface ActivityContentOneOf {
|
|
1582
|
-
/** Custom activity details (optional). `activity.type` must be `CUSTOM_ACTIVITY`. */
|
|
1583
|
-
customActivity?: CustomActivity;
|
|
1584
1586
|
/** Merchant comment details (optional). `activity.type` must be `MERCHANT_COMMENT`. */
|
|
1585
1587
|
merchantComment?: MerchantComment;
|
|
1586
1588
|
/** Additional info about order refunded activity (optional). `activity.type` must be `ORDER_REFUNDED`. */
|
|
@@ -2556,15 +2558,19 @@ interface CreatedByStringOneOf {
|
|
|
2556
2558
|
appId?: string;
|
|
2557
2559
|
}
|
|
2558
2560
|
interface ChannelInfo {
|
|
2559
|
-
/**
|
|
2561
|
+
/**
|
|
2562
|
+
* Sales channel that submitted the order.
|
|
2563
|
+
*
|
|
2564
|
+
* When creating an order via the API to record an external order, use the channel type that matches the original source. If no matching type exists, use `OTHER_PLATFORM`.
|
|
2565
|
+
*/
|
|
2560
2566
|
type?: ChannelTypeWithLiterals;
|
|
2561
2567
|
/**
|
|
2562
|
-
* Reference to an order ID from an external system.
|
|
2568
|
+
* Reference to an order ID from an external system. Relevant when recording orders from external platforms.
|
|
2563
2569
|
* @maxLength 100
|
|
2564
2570
|
*/
|
|
2565
2571
|
externalOrderId?: string | null;
|
|
2566
2572
|
/**
|
|
2567
|
-
* URL to the order in the external system.
|
|
2573
|
+
* URL to the order in the external system. Relevant when recording orders from external platforms.
|
|
2568
2574
|
* @maxLength 300
|
|
2569
2575
|
*/
|
|
2570
2576
|
externalOrderUrl?: string | null;
|
|
@@ -3973,6 +3979,11 @@ interface TriggerRefundResponse {
|
|
|
3973
3979
|
/** Payment ID's that the refund execution had failed for */
|
|
3974
3980
|
failedPaymentIds?: ItemMetadata[];
|
|
3975
3981
|
}
|
|
3982
|
+
/**
|
|
3983
|
+
* A record of all payments and refunds associated with an order.
|
|
3984
|
+
*
|
|
3985
|
+
* Use order transactions to track payment status, add payment records, process refunds, and monitor chargebacks.
|
|
3986
|
+
*/
|
|
3976
3987
|
interface OrderTransactions {
|
|
3977
3988
|
/**
|
|
3978
3989
|
* Order ID.
|
|
@@ -4042,9 +4053,17 @@ interface RegularPaymentDetails extends RegularPaymentDetailsPaymentMethodDetail
|
|
|
4042
4053
|
*/
|
|
4043
4054
|
gatewayTransactionId?: string | null;
|
|
4044
4055
|
/**
|
|
4045
|
-
* Payment method.
|
|
4056
|
+
* Payment method.
|
|
4057
|
+
* Deprecated. Use `paymentMethodName.buyerLanguageName` instead.
|
|
4058
|
+
* Non-exhaustive list of supported values:
|
|
4046
4059
|
* + `CreditCard`, `Alipay`, `AstropayCash`, `AstropayDBT`, `AstropayMBT`, `Bitcoin`, `BitPay`, `Cash`, `ConvenienceStore`, `EPay`, `Fake`, `Giropay`, `IDeal`, `InPerson`, `Klarna`, `MercadoPago`, `Netpay`, `NordeaSolo`, `Offline`, `PagSeguro`, `PayEasy`, `PayPal`, `Paysafecard`, `Paysafecash`, `PointOfSale`, `Poli`, `Privat24`, `Przelewy24`, `RapidTransfer`, `Sepa`, `Skrill`, `Sofort`, `Trustly`, `Neteller`, `Unionpay`, `UniPay`, `Yandex`
|
|
4047
4060
|
* @maxLength 100
|
|
4061
|
+
* @deprecated Payment method.
|
|
4062
|
+
* Deprecated. Use `paymentMethodName.buyerLanguageName` instead.
|
|
4063
|
+
* Non-exhaustive list of supported values:
|
|
4064
|
+
* + `CreditCard`, `Alipay`, `AstropayCash`, `AstropayDBT`, `AstropayMBT`, `Bitcoin`, `BitPay`, `Cash`, `ConvenienceStore`, `EPay`, `Fake`, `Giropay`, `IDeal`, `InPerson`, `Klarna`, `MercadoPago`, `Netpay`, `NordeaSolo`, `Offline`, `PagSeguro`, `PayEasy`, `PayPal`, `Paysafecard`, `Paysafecash`, `PointOfSale`, `Poli`, `Privat24`, `Przelewy24`, `RapidTransfer`, `Sepa`, `Skrill`, `Sofort`, `Trustly`, `Neteller`, `Unionpay`, `UniPay`, `Yandex`
|
|
4065
|
+
* @replacedBy payment_method_name
|
|
4066
|
+
* @targetRemovalDate 2026-07-01
|
|
4048
4067
|
*/
|
|
4049
4068
|
paymentMethod?: string | null;
|
|
4050
4069
|
/**
|
|
@@ -4250,6 +4269,18 @@ declare enum ChargebackStatus {
|
|
|
4250
4269
|
}
|
|
4251
4270
|
/** @enumType */
|
|
4252
4271
|
type ChargebackStatusWithLiterals = ChargebackStatus | 'UNSPECIFIED' | 'APPROVED' | 'REVERSED';
|
|
4272
|
+
interface PaymentMethodName {
|
|
4273
|
+
/**
|
|
4274
|
+
* Translated payment method name in buyer language.
|
|
4275
|
+
* @maxLength 100
|
|
4276
|
+
*/
|
|
4277
|
+
buyerLanguageName?: string | null;
|
|
4278
|
+
/**
|
|
4279
|
+
* Translated payment method name in site owner language.
|
|
4280
|
+
* @maxLength 100
|
|
4281
|
+
*/
|
|
4282
|
+
siteLanguageName?: string | null;
|
|
4283
|
+
}
|
|
4253
4284
|
interface GiftCardPaymentDetails {
|
|
4254
4285
|
/**
|
|
4255
4286
|
* Gift card payment ID.
|
|
@@ -7187,7 +7218,7 @@ declare function captureAuthorizedPayments(ecomOrderId: string, payments: NonNul
|
|
|
7187
7218
|
* @returns Fulfilled - The requested order.
|
|
7188
7219
|
* @fqn com.wix.ecom.orders.v1.Orders.GetOrder
|
|
7189
7220
|
*/
|
|
7190
|
-
declare function getOrder(_id: string): Promise<NonNullablePaths<Order, `number` | `lineItems` | `lineItems.${number}._id` | `lineItems.${number}.productName.original` | `lineItems.${number}.catalogReference.catalogItemId` | `lineItems.${number}.catalogReference.appId` | `lineItems.${number}.quantity` | `lineItems.${number}.totalDiscount.amount` | `lineItems.${number}.totalDiscount.formattedAmount` | `lineItems.${number}.physicalProperties.shippable` | `lineItems.${number}.itemType.preset` | `lineItems.${number}.itemType.custom` | `lineItems.${number}.paymentOption` | `lineItems.${number}.taxDetails.taxRate` | `lineItems.${number}.taxInfo.taxIncludedInPrice` | `lineItems.${number}.digitalFile.fileId` | `lineItems.${number}.subscriptionInfo.cycleNumber` | `lineItems.${number}.subscriptionInfo.subscriptionOptionTitle` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.frequency` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.autoRenewal` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.enableCustomerCancellation` | `lineItems.${number}.priceDescription.original` | `lineItems.${number}.taxableAddress.addressType` | `lineItems.${number}.priceUndetermined` | `buyerInfo.visitorId` | `buyerInfo.memberId` | `paymentStatus` | `fulfillmentStatus` | `weightUnit` | `taxIncludedInPrices` | `billingInfo.address.streetAddress.number` | `billingInfo.address.streetAddress.name` | `billingInfo.contactDetails.vatId._id` | `billingInfo.contactDetails.vatId.type` | `shippingInfo.title` | `shippingInfo.logistics.pickupDetails.pickupMethod` | `status` | `taxInfo.taxBreakdown` | `taxInfo.taxBreakdown.${number}.taxName` | `taxInfo.taxBreakdown.${number}.taxType` | `taxInfo.taxBreakdown.${number}.jurisdiction` | `taxInfo.taxBreakdown.${number}.jurisdictionType` | `taxInfo.taxBreakdown.${number}.rate` | `appliedDiscounts` | `appliedDiscounts.${number}.coupon._id` | `appliedDiscounts.${number}.coupon.code` | `appliedDiscounts.${number}.coupon.name` | `appliedDiscounts.${number}.merchantDiscount.discountReason` | `appliedDiscounts.${number}.discountRule._id` | `appliedDiscounts.${number}.discountRule.name.original` | `appliedDiscounts.${number}.discountType` | `activities` | `activities.${number}.
|
|
7221
|
+
declare function getOrder(_id: string): Promise<NonNullablePaths<Order, `number` | `lineItems` | `lineItems.${number}._id` | `lineItems.${number}.productName.original` | `lineItems.${number}.catalogReference.catalogItemId` | `lineItems.${number}.catalogReference.appId` | `lineItems.${number}.quantity` | `lineItems.${number}.totalDiscount.amount` | `lineItems.${number}.totalDiscount.formattedAmount` | `lineItems.${number}.physicalProperties.shippable` | `lineItems.${number}.itemType.preset` | `lineItems.${number}.itemType.custom` | `lineItems.${number}.paymentOption` | `lineItems.${number}.taxDetails.taxRate` | `lineItems.${number}.taxInfo.taxIncludedInPrice` | `lineItems.${number}.digitalFile.fileId` | `lineItems.${number}.subscriptionInfo.cycleNumber` | `lineItems.${number}.subscriptionInfo.subscriptionOptionTitle` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.frequency` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.autoRenewal` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.enableCustomerCancellation` | `lineItems.${number}.priceDescription.original` | `lineItems.${number}.taxableAddress.addressType` | `lineItems.${number}.priceUndetermined` | `buyerInfo.visitorId` | `buyerInfo.memberId` | `paymentStatus` | `fulfillmentStatus` | `weightUnit` | `taxIncludedInPrices` | `billingInfo.address.streetAddress.number` | `billingInfo.address.streetAddress.name` | `billingInfo.contactDetails.vatId._id` | `billingInfo.contactDetails.vatId.type` | `shippingInfo.title` | `shippingInfo.logistics.pickupDetails.pickupMethod` | `status` | `taxInfo.taxBreakdown` | `taxInfo.taxBreakdown.${number}.taxName` | `taxInfo.taxBreakdown.${number}.taxType` | `taxInfo.taxBreakdown.${number}.jurisdiction` | `taxInfo.taxBreakdown.${number}.jurisdictionType` | `taxInfo.taxBreakdown.${number}.rate` | `appliedDiscounts` | `appliedDiscounts.${number}.coupon._id` | `appliedDiscounts.${number}.coupon.code` | `appliedDiscounts.${number}.coupon.name` | `appliedDiscounts.${number}.merchantDiscount.discountReason` | `appliedDiscounts.${number}.discountRule._id` | `appliedDiscounts.${number}.discountRule.name.original` | `appliedDiscounts.${number}.discountType` | `activities` | `activities.${number}.merchantComment.message` | `activities.${number}.orderRefunded.manual` | `activities.${number}.orderRefunded.reason` | `activities.${number}.draftOrderChangesApplied.draftOrderId` | `activities.${number}.savedPaymentMethod.name` | `activities.${number}.authorizedPaymentCreated.paymentId` | `activities.${number}.authorizedPaymentCaptured.paymentId` | `activities.${number}.authorizedPaymentVoided.paymentId` | `activities.${number}.refundInitiated.refundId` | `activities.${number}.paymentRefunded.refundId` | `activities.${number}.paymentRefundFailed.refundId` | `activities.${number}.paymentPending.paymentId` | `activities.${number}.paymentCanceled.paymentId` | `activities.${number}.paymentDeclined.paymentId` | `activities.${number}.receiptCreated.wixReceipt.receiptId` | `activities.${number}.receiptCreated.paymentId` | `activities.${number}.receiptSent.paymentId` | `activities.${number}.chargebackCreated.paymentId` | `activities.${number}.chargebackCreated.chargebackId` | `activities.${number}.chargebackReversed.paymentId` | `activities.${number}.chargebackReversed.chargebackId` | `activities.${number}.type` | `activities.${number}.activityType` | `attributionSource` | `createdBy.userId` | `createdBy.memberId` | `createdBy.visitorId` | `createdBy.appId` | `channelInfo.type` | `customFields` | `customFields.${number}.title` | `balanceSummary.balance.amount` | `balanceSummary.balance.formattedAmount` | `additionalFees` | `additionalFees.${number}.name` | `additionalFees.${number}._id` | `tags.privateTags.tagIds` | `businessLocation._id` | `businessLocation.name`, 6> & {
|
|
7191
7222
|
__applicationErrorsType?: GetOrderApplicationErrors;
|
|
7192
7223
|
}>;
|
|
7193
7224
|
interface OrderSearchSpec extends SearchSpec {
|
|
@@ -7342,7 +7373,7 @@ type OrderSearch = {
|
|
|
7342
7373
|
* @returns Newly created order.
|
|
7343
7374
|
* @fqn com.wix.ecom.orders.v1.Orders.CreateOrder
|
|
7344
7375
|
*/
|
|
7345
|
-
declare function createOrder(order: NonNullablePaths<Order, `channelInfo` | `currencyConversionDetails.conversionRate` | `currencyConversionDetails.originalCurrency` | `lineItems` | `lineItems.${number}.catalogReference.appId` | `lineItems.${number}.catalogReference.catalogItemId` | `lineItems.${number}.itemType` | `lineItems.${number}.price` | `lineItems.${number}.productName` | `lineItems.${number}.productName.original` | `lineItems.${number}.quantity` | `priceSummary`, 5>, options?: CreateOrderOptions): Promise<NonNullablePaths<Order, `number` | `lineItems` | `lineItems.${number}._id` | `lineItems.${number}.productName.original` | `lineItems.${number}.catalogReference.catalogItemId` | `lineItems.${number}.catalogReference.appId` | `lineItems.${number}.quantity` | `lineItems.${number}.totalDiscount.amount` | `lineItems.${number}.totalDiscount.formattedAmount` | `lineItems.${number}.physicalProperties.shippable` | `lineItems.${number}.itemType.preset` | `lineItems.${number}.itemType.custom` | `lineItems.${number}.paymentOption` | `lineItems.${number}.taxDetails.taxRate` | `lineItems.${number}.taxInfo.taxIncludedInPrice` | `lineItems.${number}.digitalFile.fileId` | `lineItems.${number}.subscriptionInfo.cycleNumber` | `lineItems.${number}.subscriptionInfo.subscriptionOptionTitle` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.frequency` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.autoRenewal` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.enableCustomerCancellation` | `lineItems.${number}.priceDescription.original` | `lineItems.${number}.taxableAddress.addressType` | `lineItems.${number}.priceUndetermined` | `buyerInfo.visitorId` | `buyerInfo.memberId` | `paymentStatus` | `fulfillmentStatus` | `weightUnit` | `taxIncludedInPrices` | `billingInfo.address.streetAddress.number` | `billingInfo.address.streetAddress.name` | `billingInfo.contactDetails.vatId._id` | `billingInfo.contactDetails.vatId.type` | `shippingInfo.title` | `shippingInfo.logistics.pickupDetails.pickupMethod` | `status` | `taxInfo.taxBreakdown` | `taxInfo.taxBreakdown.${number}.taxName` | `taxInfo.taxBreakdown.${number}.taxType` | `taxInfo.taxBreakdown.${number}.jurisdiction` | `taxInfo.taxBreakdown.${number}.jurisdictionType` | `taxInfo.taxBreakdown.${number}.rate` | `appliedDiscounts` | `appliedDiscounts.${number}.coupon._id` | `appliedDiscounts.${number}.coupon.code` | `appliedDiscounts.${number}.coupon.name` | `appliedDiscounts.${number}.merchantDiscount.discountReason` | `appliedDiscounts.${number}.discountRule._id` | `appliedDiscounts.${number}.discountRule.name.original` | `appliedDiscounts.${number}.discountType` | `activities` | `activities.${number}.
|
|
7376
|
+
declare function createOrder(order: NonNullablePaths<Order, `channelInfo` | `currencyConversionDetails.conversionRate` | `currencyConversionDetails.originalCurrency` | `lineItems` | `lineItems.${number}.catalogReference.appId` | `lineItems.${number}.catalogReference.catalogItemId` | `lineItems.${number}.itemType` | `lineItems.${number}.price` | `lineItems.${number}.productName` | `lineItems.${number}.productName.original` | `lineItems.${number}.quantity` | `priceSummary`, 5>, options?: CreateOrderOptions): Promise<NonNullablePaths<Order, `number` | `lineItems` | `lineItems.${number}._id` | `lineItems.${number}.productName.original` | `lineItems.${number}.catalogReference.catalogItemId` | `lineItems.${number}.catalogReference.appId` | `lineItems.${number}.quantity` | `lineItems.${number}.totalDiscount.amount` | `lineItems.${number}.totalDiscount.formattedAmount` | `lineItems.${number}.physicalProperties.shippable` | `lineItems.${number}.itemType.preset` | `lineItems.${number}.itemType.custom` | `lineItems.${number}.paymentOption` | `lineItems.${number}.taxDetails.taxRate` | `lineItems.${number}.taxInfo.taxIncludedInPrice` | `lineItems.${number}.digitalFile.fileId` | `lineItems.${number}.subscriptionInfo.cycleNumber` | `lineItems.${number}.subscriptionInfo.subscriptionOptionTitle` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.frequency` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.autoRenewal` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.enableCustomerCancellation` | `lineItems.${number}.priceDescription.original` | `lineItems.${number}.taxableAddress.addressType` | `lineItems.${number}.priceUndetermined` | `buyerInfo.visitorId` | `buyerInfo.memberId` | `paymentStatus` | `fulfillmentStatus` | `weightUnit` | `taxIncludedInPrices` | `billingInfo.address.streetAddress.number` | `billingInfo.address.streetAddress.name` | `billingInfo.contactDetails.vatId._id` | `billingInfo.contactDetails.vatId.type` | `shippingInfo.title` | `shippingInfo.logistics.pickupDetails.pickupMethod` | `status` | `taxInfo.taxBreakdown` | `taxInfo.taxBreakdown.${number}.taxName` | `taxInfo.taxBreakdown.${number}.taxType` | `taxInfo.taxBreakdown.${number}.jurisdiction` | `taxInfo.taxBreakdown.${number}.jurisdictionType` | `taxInfo.taxBreakdown.${number}.rate` | `appliedDiscounts` | `appliedDiscounts.${number}.coupon._id` | `appliedDiscounts.${number}.coupon.code` | `appliedDiscounts.${number}.coupon.name` | `appliedDiscounts.${number}.merchantDiscount.discountReason` | `appliedDiscounts.${number}.discountRule._id` | `appliedDiscounts.${number}.discountRule.name.original` | `appliedDiscounts.${number}.discountType` | `activities` | `activities.${number}.merchantComment.message` | `activities.${number}.orderRefunded.manual` | `activities.${number}.orderRefunded.reason` | `activities.${number}.draftOrderChangesApplied.draftOrderId` | `activities.${number}.savedPaymentMethod.name` | `activities.${number}.authorizedPaymentCreated.paymentId` | `activities.${number}.authorizedPaymentCaptured.paymentId` | `activities.${number}.authorizedPaymentVoided.paymentId` | `activities.${number}.refundInitiated.refundId` | `activities.${number}.paymentRefunded.refundId` | `activities.${number}.paymentRefundFailed.refundId` | `activities.${number}.paymentPending.paymentId` | `activities.${number}.paymentCanceled.paymentId` | `activities.${number}.paymentDeclined.paymentId` | `activities.${number}.receiptCreated.wixReceipt.receiptId` | `activities.${number}.receiptCreated.paymentId` | `activities.${number}.receiptSent.paymentId` | `activities.${number}.chargebackCreated.paymentId` | `activities.${number}.chargebackCreated.chargebackId` | `activities.${number}.chargebackReversed.paymentId` | `activities.${number}.chargebackReversed.chargebackId` | `activities.${number}.type` | `activities.${number}.activityType` | `attributionSource` | `createdBy.userId` | `createdBy.memberId` | `createdBy.visitorId` | `createdBy.appId` | `channelInfo.type` | `customFields` | `customFields.${number}.title` | `balanceSummary.balance.amount` | `balanceSummary.balance.formattedAmount` | `additionalFees` | `additionalFees.${number}.name` | `additionalFees.${number}._id` | `tags.privateTags.tagIds` | `businessLocation._id` | `businessLocation.name`, 6> & {
|
|
7346
7377
|
__applicationErrorsType?: CreateOrderApplicationErrors;
|
|
7347
7378
|
}>;
|
|
7348
7379
|
interface CreateOrderOptions {
|
|
@@ -7385,7 +7416,7 @@ interface CreateOrderOptions {
|
|
|
7385
7416
|
* @returns Newly created order.
|
|
7386
7417
|
* @fqn com.wix.ecom.orders.v1.Orders.UpdateOrder
|
|
7387
7418
|
*/
|
|
7388
|
-
declare function updateOrder(_id: string, order: UpdateOrder): Promise<NonNullablePaths<Order, `number` | `lineItems` | `lineItems.${number}._id` | `lineItems.${number}.productName.original` | `lineItems.${number}.catalogReference.catalogItemId` | `lineItems.${number}.catalogReference.appId` | `lineItems.${number}.quantity` | `lineItems.${number}.totalDiscount.amount` | `lineItems.${number}.totalDiscount.formattedAmount` | `lineItems.${number}.physicalProperties.shippable` | `lineItems.${number}.itemType.preset` | `lineItems.${number}.itemType.custom` | `lineItems.${number}.paymentOption` | `lineItems.${number}.taxDetails.taxRate` | `lineItems.${number}.taxInfo.taxIncludedInPrice` | `lineItems.${number}.digitalFile.fileId` | `lineItems.${number}.subscriptionInfo.cycleNumber` | `lineItems.${number}.subscriptionInfo.subscriptionOptionTitle` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.frequency` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.autoRenewal` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.enableCustomerCancellation` | `lineItems.${number}.priceDescription.original` | `lineItems.${number}.taxableAddress.addressType` | `lineItems.${number}.priceUndetermined` | `buyerInfo.visitorId` | `buyerInfo.memberId` | `paymentStatus` | `fulfillmentStatus` | `weightUnit` | `taxIncludedInPrices` | `billingInfo.address.streetAddress.number` | `billingInfo.address.streetAddress.name` | `billingInfo.contactDetails.vatId._id` | `billingInfo.contactDetails.vatId.type` | `shippingInfo.title` | `shippingInfo.logistics.pickupDetails.pickupMethod` | `status` | `taxInfo.taxBreakdown` | `taxInfo.taxBreakdown.${number}.taxName` | `taxInfo.taxBreakdown.${number}.taxType` | `taxInfo.taxBreakdown.${number}.jurisdiction` | `taxInfo.taxBreakdown.${number}.jurisdictionType` | `taxInfo.taxBreakdown.${number}.rate` | `appliedDiscounts` | `appliedDiscounts.${number}.coupon._id` | `appliedDiscounts.${number}.coupon.code` | `appliedDiscounts.${number}.coupon.name` | `appliedDiscounts.${number}.merchantDiscount.discountReason` | `appliedDiscounts.${number}.discountRule._id` | `appliedDiscounts.${number}.discountRule.name.original` | `appliedDiscounts.${number}.discountType` | `activities` | `activities.${number}.
|
|
7419
|
+
declare function updateOrder(_id: string, order: UpdateOrder): Promise<NonNullablePaths<Order, `number` | `lineItems` | `lineItems.${number}._id` | `lineItems.${number}.productName.original` | `lineItems.${number}.catalogReference.catalogItemId` | `lineItems.${number}.catalogReference.appId` | `lineItems.${number}.quantity` | `lineItems.${number}.totalDiscount.amount` | `lineItems.${number}.totalDiscount.formattedAmount` | `lineItems.${number}.physicalProperties.shippable` | `lineItems.${number}.itemType.preset` | `lineItems.${number}.itemType.custom` | `lineItems.${number}.paymentOption` | `lineItems.${number}.taxDetails.taxRate` | `lineItems.${number}.taxInfo.taxIncludedInPrice` | `lineItems.${number}.digitalFile.fileId` | `lineItems.${number}.subscriptionInfo.cycleNumber` | `lineItems.${number}.subscriptionInfo.subscriptionOptionTitle` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.frequency` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.autoRenewal` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.enableCustomerCancellation` | `lineItems.${number}.priceDescription.original` | `lineItems.${number}.taxableAddress.addressType` | `lineItems.${number}.priceUndetermined` | `buyerInfo.visitorId` | `buyerInfo.memberId` | `paymentStatus` | `fulfillmentStatus` | `weightUnit` | `taxIncludedInPrices` | `billingInfo.address.streetAddress.number` | `billingInfo.address.streetAddress.name` | `billingInfo.contactDetails.vatId._id` | `billingInfo.contactDetails.vatId.type` | `shippingInfo.title` | `shippingInfo.logistics.pickupDetails.pickupMethod` | `status` | `taxInfo.taxBreakdown` | `taxInfo.taxBreakdown.${number}.taxName` | `taxInfo.taxBreakdown.${number}.taxType` | `taxInfo.taxBreakdown.${number}.jurisdiction` | `taxInfo.taxBreakdown.${number}.jurisdictionType` | `taxInfo.taxBreakdown.${number}.rate` | `appliedDiscounts` | `appliedDiscounts.${number}.coupon._id` | `appliedDiscounts.${number}.coupon.code` | `appliedDiscounts.${number}.coupon.name` | `appliedDiscounts.${number}.merchantDiscount.discountReason` | `appliedDiscounts.${number}.discountRule._id` | `appliedDiscounts.${number}.discountRule.name.original` | `appliedDiscounts.${number}.discountType` | `activities` | `activities.${number}.merchantComment.message` | `activities.${number}.orderRefunded.manual` | `activities.${number}.orderRefunded.reason` | `activities.${number}.draftOrderChangesApplied.draftOrderId` | `activities.${number}.savedPaymentMethod.name` | `activities.${number}.authorizedPaymentCreated.paymentId` | `activities.${number}.authorizedPaymentCaptured.paymentId` | `activities.${number}.authorizedPaymentVoided.paymentId` | `activities.${number}.refundInitiated.refundId` | `activities.${number}.paymentRefunded.refundId` | `activities.${number}.paymentRefundFailed.refundId` | `activities.${number}.paymentPending.paymentId` | `activities.${number}.paymentCanceled.paymentId` | `activities.${number}.paymentDeclined.paymentId` | `activities.${number}.receiptCreated.wixReceipt.receiptId` | `activities.${number}.receiptCreated.paymentId` | `activities.${number}.receiptSent.paymentId` | `activities.${number}.chargebackCreated.paymentId` | `activities.${number}.chargebackCreated.chargebackId` | `activities.${number}.chargebackReversed.paymentId` | `activities.${number}.chargebackReversed.chargebackId` | `activities.${number}.type` | `activities.${number}.activityType` | `attributionSource` | `createdBy.userId` | `createdBy.memberId` | `createdBy.visitorId` | `createdBy.appId` | `channelInfo.type` | `customFields` | `customFields.${number}.title` | `balanceSummary.balance.amount` | `balanceSummary.balance.formattedAmount` | `additionalFees` | `additionalFees.${number}.name` | `additionalFees.${number}._id` | `tags.privateTags.tagIds` | `businessLocation._id` | `businessLocation.name`, 6> & {
|
|
7389
7420
|
__applicationErrorsType?: UpdateOrderApplicationErrors;
|
|
7390
7421
|
}>;
|
|
7391
7422
|
interface UpdateOrder {
|
|
@@ -7534,10 +7565,10 @@ interface UpdateOrder {
|
|
|
7534
7565
|
*/
|
|
7535
7566
|
purchaseFlowId?: string | null;
|
|
7536
7567
|
/**
|
|
7537
|
-
*
|
|
7568
|
+
* Final recipient's address and contact details.
|
|
7538
7569
|
*
|
|
7539
|
-
* This field
|
|
7540
|
-
* + The chosen shipping option is pickup point or store pickup.
|
|
7570
|
+
* This field represents who will ultimately receive the order. It may differ from `shippingInfo.logistics.shippingDestination` when:
|
|
7571
|
+
* + The chosen shipping option is a pickup point or store pickup, where `shippingDestination` contains the pickup location.
|
|
7541
7572
|
* + No shipping option is selected.
|
|
7542
7573
|
*/
|
|
7543
7574
|
recipientInfo?: AddressWithContact;
|
|
@@ -7626,6 +7657,7 @@ interface UpdateOrderLineItem {
|
|
|
7626
7657
|
_id?: string;
|
|
7627
7658
|
/**
|
|
7628
7659
|
* Item name.
|
|
7660
|
+
*
|
|
7629
7661
|
* + Stores - `product.name`
|
|
7630
7662
|
* + Bookings - `service.info.name`
|
|
7631
7663
|
* + Events - `ticket.name`
|
|
@@ -7752,11 +7784,8 @@ interface UpdateOrderLineItem {
|
|
|
7752
7784
|
/**
|
|
7753
7785
|
* Adds up to 300 activities to an order in a single request.
|
|
7754
7786
|
*
|
|
7755
|
-
*
|
|
7756
|
-
*
|
|
7757
|
-
* + Order lifecycle events, such as order placement, payment confirmation, and fulfillment.
|
|
7758
|
-
* + Payment processing statuses and events, such as payment authorization, refunds, and captures.
|
|
7759
|
-
* + Order operations, customer communications, and other order-related actions.
|
|
7787
|
+
*
|
|
7788
|
+
* An order activity is a record of an action taken on an order. Use this endpoint to add merchant comments or record order-related events.
|
|
7760
7789
|
* @param orderId - ID of the order to add activities to.
|
|
7761
7790
|
* @public
|
|
7762
7791
|
* @documentationMaturity preview
|
|
@@ -7766,7 +7795,7 @@ interface UpdateOrderLineItem {
|
|
|
7766
7795
|
* @applicableIdentity APP
|
|
7767
7796
|
* @fqn com.wix.ecom.orders.v1.Orders.AddActivities
|
|
7768
7797
|
*/
|
|
7769
|
-
declare function addActivities(orderId: string, options?: NonNullablePaths<AddActivitiesOptions, `orderActivities.${number}.activityType`, 4>): Promise<NonNullablePaths<AddActivitiesResponse, `order.number` | `order.lineItems` | `order.lineItems.${number}._id` | `order.lineItems.${number}.productName.original` | `order.lineItems.${number}.catalogReference.catalogItemId` | `order.lineItems.${number}.catalogReference.appId` | `order.lineItems.${number}.quantity` | `order.lineItems.${number}.totalDiscount.amount` | `order.lineItems.${number}.totalDiscount.formattedAmount` | `order.lineItems.${number}.physicalProperties.shippable` | `order.lineItems.${number}.itemType.preset` | `order.lineItems.${number}.itemType.custom` | `order.lineItems.${number}.paymentOption` | `order.lineItems.${number}.taxDetails.taxRate` | `order.lineItems.${number}.taxInfo.taxIncludedInPrice` | `order.lineItems.${number}.digitalFile.fileId` | `order.lineItems.${number}.subscriptionInfo.cycleNumber` | `order.lineItems.${number}.subscriptionInfo.subscriptionOptionTitle` | `order.lineItems.${number}.subscriptionInfo.subscriptionSettings.frequency` | `order.lineItems.${number}.subscriptionInfo.subscriptionSettings.autoRenewal` | `order.lineItems.${number}.subscriptionInfo.subscriptionSettings.enableCustomerCancellation` | `order.lineItems.${number}.priceDescription.original` | `order.lineItems.${number}.taxableAddress.addressType` | `order.lineItems.${number}.priceUndetermined` | `order.buyerInfo.visitorId` | `order.buyerInfo.memberId` | `order.paymentStatus` | `order.fulfillmentStatus` | `order.weightUnit` | `order.taxIncludedInPrices` | `order.billingInfo.address.streetAddress.number` | `order.billingInfo.address.streetAddress.name` | `order.billingInfo.contactDetails.vatId._id` | `order.billingInfo.contactDetails.vatId.type` | `order.shippingInfo.title` | `order.shippingInfo.logistics.pickupDetails.pickupMethod` | `order.status` | `order.taxInfo.taxBreakdown` | `order.taxInfo.taxBreakdown.${number}.taxName` | `order.taxInfo.taxBreakdown.${number}.taxType` | `order.taxInfo.taxBreakdown.${number}.jurisdiction` | `order.taxInfo.taxBreakdown.${number}.jurisdictionType` | `order.taxInfo.taxBreakdown.${number}.rate` | `order.appliedDiscounts` | `order.appliedDiscounts.${number}.coupon._id` | `order.appliedDiscounts.${number}.coupon.code` | `order.appliedDiscounts.${number}.coupon.name` | `order.appliedDiscounts.${number}.merchantDiscount.discountReason` | `order.appliedDiscounts.${number}.discountRule._id` | `order.appliedDiscounts.${number}.discountRule.name.original` | `order.appliedDiscounts.${number}.discountType` | `order.activities` | `order.activities.${number}.
|
|
7798
|
+
declare function addActivities(orderId: string, options?: NonNullablePaths<AddActivitiesOptions, `orderActivities.${number}.activityType`, 4>): Promise<NonNullablePaths<AddActivitiesResponse, `order.number` | `order.lineItems` | `order.lineItems.${number}._id` | `order.lineItems.${number}.productName.original` | `order.lineItems.${number}.catalogReference.catalogItemId` | `order.lineItems.${number}.catalogReference.appId` | `order.lineItems.${number}.quantity` | `order.lineItems.${number}.totalDiscount.amount` | `order.lineItems.${number}.totalDiscount.formattedAmount` | `order.lineItems.${number}.physicalProperties.shippable` | `order.lineItems.${number}.itemType.preset` | `order.lineItems.${number}.itemType.custom` | `order.lineItems.${number}.paymentOption` | `order.lineItems.${number}.taxDetails.taxRate` | `order.lineItems.${number}.taxInfo.taxIncludedInPrice` | `order.lineItems.${number}.digitalFile.fileId` | `order.lineItems.${number}.subscriptionInfo.cycleNumber` | `order.lineItems.${number}.subscriptionInfo.subscriptionOptionTitle` | `order.lineItems.${number}.subscriptionInfo.subscriptionSettings.frequency` | `order.lineItems.${number}.subscriptionInfo.subscriptionSettings.autoRenewal` | `order.lineItems.${number}.subscriptionInfo.subscriptionSettings.enableCustomerCancellation` | `order.lineItems.${number}.priceDescription.original` | `order.lineItems.${number}.taxableAddress.addressType` | `order.lineItems.${number}.priceUndetermined` | `order.buyerInfo.visitorId` | `order.buyerInfo.memberId` | `order.paymentStatus` | `order.fulfillmentStatus` | `order.weightUnit` | `order.taxIncludedInPrices` | `order.billingInfo.address.streetAddress.number` | `order.billingInfo.address.streetAddress.name` | `order.billingInfo.contactDetails.vatId._id` | `order.billingInfo.contactDetails.vatId.type` | `order.shippingInfo.title` | `order.shippingInfo.logistics.pickupDetails.pickupMethod` | `order.status` | `order.taxInfo.taxBreakdown` | `order.taxInfo.taxBreakdown.${number}.taxName` | `order.taxInfo.taxBreakdown.${number}.taxType` | `order.taxInfo.taxBreakdown.${number}.jurisdiction` | `order.taxInfo.taxBreakdown.${number}.jurisdictionType` | `order.taxInfo.taxBreakdown.${number}.rate` | `order.appliedDiscounts` | `order.appliedDiscounts.${number}.coupon._id` | `order.appliedDiscounts.${number}.coupon.code` | `order.appliedDiscounts.${number}.coupon.name` | `order.appliedDiscounts.${number}.merchantDiscount.discountReason` | `order.appliedDiscounts.${number}.discountRule._id` | `order.appliedDiscounts.${number}.discountRule.name.original` | `order.appliedDiscounts.${number}.discountType` | `order.activities` | `order.activities.${number}.merchantComment.message` | `order.activities.${number}.orderRefunded.manual` | `order.activities.${number}.orderRefunded.reason` | `order.activities.${number}.draftOrderChangesApplied.draftOrderId` | `order.activities.${number}.savedPaymentMethod.name` | `order.activities.${number}.authorizedPaymentCreated.paymentId` | `order.activities.${number}.authorizedPaymentCaptured.paymentId` | `order.activities.${number}.authorizedPaymentVoided.paymentId` | `order.activities.${number}.refundInitiated.refundId` | `order.activities.${number}.paymentRefunded.refundId` | `order.activities.${number}.paymentRefundFailed.refundId` | `order.activities.${number}.paymentPending.paymentId` | `order.activities.${number}.paymentCanceled.paymentId` | `order.activities.${number}.paymentDeclined.paymentId` | `order.activities.${number}.receiptCreated.wixReceipt.receiptId` | `order.activities.${number}.receiptCreated.paymentId` | `order.activities.${number}.receiptSent.paymentId` | `order.activities.${number}.chargebackCreated.paymentId` | `order.activities.${number}.chargebackCreated.chargebackId` | `order.activities.${number}.chargebackReversed.paymentId` | `order.activities.${number}.chargebackReversed.chargebackId` | `order.activities.${number}.type` | `order.activities.${number}.activityType` | `order.attributionSource` | `order.createdBy.userId` | `order.createdBy.memberId` | `order.createdBy.visitorId` | `order.createdBy.appId` | `order.channelInfo.type` | `order.customFields` | `order.customFields.${number}.title` | `order.balanceSummary.balance.amount` | `order.balanceSummary.balance.formattedAmount` | `order.additionalFees` | `order.additionalFees.${number}.name` | `order.additionalFees.${number}._id` | `order.tags.privateTags.tagIds` | `order.businessLocation._id` | `order.businessLocation.name` | `activityIds`, 7>>;
|
|
7770
7799
|
interface AddActivitiesOptions {
|
|
7771
7800
|
/**
|
|
7772
7801
|
* Activities to add to the order.
|
|
@@ -7812,7 +7841,7 @@ interface DeleteActivityIdentifiers {
|
|
|
7812
7841
|
* @applicableIdentity APP
|
|
7813
7842
|
* @fqn com.wix.ecom.orders.v1.Orders.CancelOrder
|
|
7814
7843
|
*/
|
|
7815
|
-
declare function cancelOrder(_id: string, options?: CancelOrderOptions): Promise<NonNullablePaths<CancelOrderResponse, `order.number` | `order.lineItems` | `order.lineItems.${number}._id` | `order.lineItems.${number}.productName.original` | `order.lineItems.${number}.catalogReference.catalogItemId` | `order.lineItems.${number}.catalogReference.appId` | `order.lineItems.${number}.quantity` | `order.lineItems.${number}.totalDiscount.amount` | `order.lineItems.${number}.totalDiscount.formattedAmount` | `order.lineItems.${number}.physicalProperties.shippable` | `order.lineItems.${number}.itemType.preset` | `order.lineItems.${number}.itemType.custom` | `order.lineItems.${number}.paymentOption` | `order.lineItems.${number}.taxDetails.taxRate` | `order.lineItems.${number}.taxInfo.taxIncludedInPrice` | `order.lineItems.${number}.digitalFile.fileId` | `order.lineItems.${number}.subscriptionInfo.cycleNumber` | `order.lineItems.${number}.subscriptionInfo.subscriptionOptionTitle` | `order.lineItems.${number}.subscriptionInfo.subscriptionSettings.frequency` | `order.lineItems.${number}.subscriptionInfo.subscriptionSettings.autoRenewal` | `order.lineItems.${number}.subscriptionInfo.subscriptionSettings.enableCustomerCancellation` | `order.lineItems.${number}.priceDescription.original` | `order.lineItems.${number}.taxableAddress.addressType` | `order.lineItems.${number}.priceUndetermined` | `order.buyerInfo.visitorId` | `order.buyerInfo.memberId` | `order.paymentStatus` | `order.fulfillmentStatus` | `order.weightUnit` | `order.taxIncludedInPrices` | `order.billingInfo.address.streetAddress.number` | `order.billingInfo.address.streetAddress.name` | `order.billingInfo.contactDetails.vatId._id` | `order.billingInfo.contactDetails.vatId.type` | `order.shippingInfo.title` | `order.shippingInfo.logistics.pickupDetails.pickupMethod` | `order.status` | `order.taxInfo.taxBreakdown` | `order.taxInfo.taxBreakdown.${number}.taxName` | `order.taxInfo.taxBreakdown.${number}.taxType` | `order.taxInfo.taxBreakdown.${number}.jurisdiction` | `order.taxInfo.taxBreakdown.${number}.jurisdictionType` | `order.taxInfo.taxBreakdown.${number}.rate` | `order.appliedDiscounts` | `order.appliedDiscounts.${number}.coupon._id` | `order.appliedDiscounts.${number}.coupon.code` | `order.appliedDiscounts.${number}.coupon.name` | `order.appliedDiscounts.${number}.merchantDiscount.discountReason` | `order.appliedDiscounts.${number}.discountRule._id` | `order.appliedDiscounts.${number}.discountRule.name.original` | `order.appliedDiscounts.${number}.discountType` | `order.activities` | `order.activities.${number}.
|
|
7844
|
+
declare function cancelOrder(_id: string, options?: CancelOrderOptions): Promise<NonNullablePaths<CancelOrderResponse, `order.number` | `order.lineItems` | `order.lineItems.${number}._id` | `order.lineItems.${number}.productName.original` | `order.lineItems.${number}.catalogReference.catalogItemId` | `order.lineItems.${number}.catalogReference.appId` | `order.lineItems.${number}.quantity` | `order.lineItems.${number}.totalDiscount.amount` | `order.lineItems.${number}.totalDiscount.formattedAmount` | `order.lineItems.${number}.physicalProperties.shippable` | `order.lineItems.${number}.itemType.preset` | `order.lineItems.${number}.itemType.custom` | `order.lineItems.${number}.paymentOption` | `order.lineItems.${number}.taxDetails.taxRate` | `order.lineItems.${number}.taxInfo.taxIncludedInPrice` | `order.lineItems.${number}.digitalFile.fileId` | `order.lineItems.${number}.subscriptionInfo.cycleNumber` | `order.lineItems.${number}.subscriptionInfo.subscriptionOptionTitle` | `order.lineItems.${number}.subscriptionInfo.subscriptionSettings.frequency` | `order.lineItems.${number}.subscriptionInfo.subscriptionSettings.autoRenewal` | `order.lineItems.${number}.subscriptionInfo.subscriptionSettings.enableCustomerCancellation` | `order.lineItems.${number}.priceDescription.original` | `order.lineItems.${number}.taxableAddress.addressType` | `order.lineItems.${number}.priceUndetermined` | `order.buyerInfo.visitorId` | `order.buyerInfo.memberId` | `order.paymentStatus` | `order.fulfillmentStatus` | `order.weightUnit` | `order.taxIncludedInPrices` | `order.billingInfo.address.streetAddress.number` | `order.billingInfo.address.streetAddress.name` | `order.billingInfo.contactDetails.vatId._id` | `order.billingInfo.contactDetails.vatId.type` | `order.shippingInfo.title` | `order.shippingInfo.logistics.pickupDetails.pickupMethod` | `order.status` | `order.taxInfo.taxBreakdown` | `order.taxInfo.taxBreakdown.${number}.taxName` | `order.taxInfo.taxBreakdown.${number}.taxType` | `order.taxInfo.taxBreakdown.${number}.jurisdiction` | `order.taxInfo.taxBreakdown.${number}.jurisdictionType` | `order.taxInfo.taxBreakdown.${number}.rate` | `order.appliedDiscounts` | `order.appliedDiscounts.${number}.coupon._id` | `order.appliedDiscounts.${number}.coupon.code` | `order.appliedDiscounts.${number}.coupon.name` | `order.appliedDiscounts.${number}.merchantDiscount.discountReason` | `order.appliedDiscounts.${number}.discountRule._id` | `order.appliedDiscounts.${number}.discountRule.name.original` | `order.appliedDiscounts.${number}.discountType` | `order.activities` | `order.activities.${number}.merchantComment.message` | `order.activities.${number}.orderRefunded.manual` | `order.activities.${number}.orderRefunded.reason` | `order.activities.${number}.draftOrderChangesApplied.draftOrderId` | `order.activities.${number}.savedPaymentMethod.name` | `order.activities.${number}.authorizedPaymentCreated.paymentId` | `order.activities.${number}.authorizedPaymentCaptured.paymentId` | `order.activities.${number}.authorizedPaymentVoided.paymentId` | `order.activities.${number}.refundInitiated.refundId` | `order.activities.${number}.paymentRefunded.refundId` | `order.activities.${number}.paymentRefundFailed.refundId` | `order.activities.${number}.paymentPending.paymentId` | `order.activities.${number}.paymentCanceled.paymentId` | `order.activities.${number}.paymentDeclined.paymentId` | `order.activities.${number}.receiptCreated.wixReceipt.receiptId` | `order.activities.${number}.receiptCreated.paymentId` | `order.activities.${number}.receiptSent.paymentId` | `order.activities.${number}.chargebackCreated.paymentId` | `order.activities.${number}.chargebackCreated.chargebackId` | `order.activities.${number}.chargebackReversed.paymentId` | `order.activities.${number}.chargebackReversed.chargebackId` | `order.activities.${number}.type` | `order.activities.${number}.activityType` | `order.attributionSource` | `order.createdBy.userId` | `order.createdBy.memberId` | `order.createdBy.visitorId` | `order.createdBy.appId` | `order.channelInfo.type` | `order.customFields` | `order.customFields.${number}.title` | `order.balanceSummary.balance.amount` | `order.balanceSummary.balance.formattedAmount` | `order.additionalFees` | `order.additionalFees.${number}.name` | `order.additionalFees.${number}._id` | `order.tags.privateTags.tagIds` | `order.businessLocation._id` | `order.businessLocation.name`, 7> & {
|
|
7816
7845
|
__applicationErrorsType?: CancelOrderApplicationErrors;
|
|
7817
7846
|
}>;
|
|
7818
7847
|
interface CancelOrderOptions {
|
|
@@ -7863,4 +7892,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
7863
7892
|
unassignTags?: Tags;
|
|
7864
7893
|
}
|
|
7865
7894
|
|
|
7866
|
-
export { AdditionalFeeSource as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PaymentStatus as E, FulfillmentStatus as F, type GetPaymentCollectabilityStatusResponse as G, VatType as H, ItemTypePreset as I, JurisdictionType as J, PickupMethod as K, OrderStatus as L, type MaskedOrder as M, DiscountType as N, type Order as O, type Price as P, DiscountReason as Q, LineItemQuantityChangeType as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, ActivityType as X, OrderActivityTypeEnumActivityType as Y, AttributionSource as Z, ChannelType as _, type PreparePaymentCollectionOptions as a, type BuyerInfo as a$, OrderActionType as a0, ChargeType as a1, WebhookIdentityType as a2, PreviewEmailType as a3, ScheduledAction as a4, DurationUnit as a5, PaymentCollectabilityStatus as a6, RefundableStatus as a7, NonRefundableReason as a8, ManuallyRefundableReason as a9, type DescriptionLineDescriptionLineValueOneOf as aA, type DescriptionLineName as aB, type PlainTextValue as aC, type Color as aD, type FocalPoint as aE, type PhysicalProperties as aF, type ItemType as aG, type ItemTypeItemTypeDataOneOf as aH, type ItemTaxFullDetails as aI, type LineItemTaxInfo as aJ, type LineItemTaxBreakdown as aK, type DigitalFile as aL, type SubscriptionInfo as aM, type SubscriptionTitle as aN, type SubscriptionDescription as aO, type SubscriptionSettings as aP, type FreeTrialPeriod as aQ, type BillingAdjustment as aR, type BillingAdjustmentPriceSummary as aS, type PriceDescription as aT, type LocationAndQuantity as aU, type TaxableAddress as aV, type TaxableAddressTaxableAddressDataOneOf as aW, type ExtendedFields as aX, type ModifierGroup as aY, type TranslatableString as aZ, type ItemModifier as a_, RestockType as aa, TransactionStatus as ab, AuthorizationCaptureStatus as ac, AuthorizationVoidStatus as ad, Reason as ae, ActionType as af, ChargebackStatus as ag, MembershipPaymentStatus as ah, RefundStatus as ai, VersioningMode as aj, SortOrder as ak, OrderApprovalStrategy as al, DeltaPaymentOptionType as am, InventoryAction as an, Placement as ao, SubdivisionType as ap, SourceType as aq, CustomFieldGroup as ar, ValueType as as, DepositType as at, InvoiceStatus as au, type OrderLineItem as av, type ProductName as aw, type CatalogReference as ax, type DescriptionLine as ay, type DescriptionLineValueOneOf as az, type PreparePaymentCollectionResponse as b, type GiftCardPaymentRefund as b$, type BuyerInfoIdOneOf as b0, type CurrencyConversionDetails as b1, type PriceSummary as b2, type AddressWithContact as b3, type Address as b4, type StreetAddress as b5, type AddressLocation as b6, type FullAddressContactDetails as b7, type VatId as b8, type V1ShippingInformation as b9, type NewExchangeOrderCreated as bA, type LineItemExchangeData as bB, type DraftOrderChangesApplied as bC, type OrderChange as bD, type OrderChangeValueOneOf as bE, type LineItemChanges as bF, type LineItemQuantityChange as bG, type LineItemPriceChange as bH, type LineItemProductNameChange as bI, type LineItemDescriptionLineChange as bJ, type LineItemModifiersChange as bK, type ManagedLineItem as bL, type ManagedDiscount as bM, type TranslatedValue as bN, type LineItemAmount as bO, type ManagedAdditionalFee as bP, type TotalPriceChange as bQ, type ShippingInformationChange as bR, type ShippingInformation as bS, type SavedPaymentMethod as bT, type AuthorizedPaymentCreated as bU, type AuthorizedPaymentCaptured as bV, type AuthorizedPaymentVoided as bW, type RefundInitiated as bX, type RefundedPayment as bY, type RefundedPaymentKindOneOf as bZ, type RegularPaymentRefund as b_, type DeliveryLogistics as ba, type DeliveryLogisticsAddressOneOf as bb, type PickupDetails as bc, type PickupAddress as bd, type DeliveryTimeSlot as be, type ShippingPrice as bf, type ShippingRegion as bg, type TaxSummary as bh, type OrderTaxInfo as bi, type OrderTaxBreakdown as bj, type AppliedDiscount as bk, type AppliedDiscountDiscountSourceOneOf as bl, type Coupon as bm, type MerchantDiscount as bn, type MerchantDiscountMerchantDiscountReasonOneOf as bo, type DiscountRule as bp, type DiscountRuleName as bq, type LineItemDiscount as br, type ItemCombination as bs, type ItemCombinationLineItem as bt, type Activity as bu, type ActivityContentOneOf as bv, type CustomActivity as bw, type MerchantComment as bx, type OrderRefunded as by, type OrderCreatedFromExchange as bz, type PreparePaymentCollectionApplicationErrors as c, type IdentificationDataIdOneOf as c$, type MembershipPaymentRefund as c0, type PaymentRefunded as c1, type PaymentRefundFailed as c2, type RefundedAsStoreCredit as c3, type PaymentPending as c4, type PaymentPendingPaymentDetailsOneOf as c5, type RegularPayment as c6, type RegularPaymentPaymentMethodDetailsOneOf as c7, type CreditCardDetails as c8, type PaymentCanceled as c9, type OwnerApps as cA, type FormInfo as cB, type FormIdentifier as cC, type PlatformFeeSummary as cD, type PlatformFee as cE, type OrderApproved as cF, type OrdersExperiments as cG, type OrderRejectedEventOrderRejected as cH, type OrderItemsRestocked as cI, type V1RestockItem as cJ, type OrderImported as cK, type ImportedOrderDeleted as cL, type ImportOrderRequest as cM, type ImportOrderResponse as cN, type SetOrderNumberCounterRequest as cO, type SetOrderNumberCounterResponse as cP, type BulkDeleteImportedOrdersRequest as cQ, type BulkDeleteImportedOrdersResponse as cR, type DomainEvent as cS, type DomainEventBodyOneOf as cT, type EntityCreatedEvent as cU, type RestoreInfo as cV, type EntityUpdatedEvent as cW, type EntityDeletedEvent as cX, type ActionEvent as cY, type MessageEnvelope as cZ, type IdentificationData as c_, type PaymentCanceledPaymentDetailsOneOf as ca, type PaymentDeclined as cb, type PaymentDeclinedPaymentDetailsOneOf as cc, type ReceiptCreated as cd, type ReceiptCreatedReceiptInfoOneOf as ce, type WixReceipt as cf, type ExternalReceipt as cg, type ReceiptSent as ch, type ReceiptSentReceiptInfoOneOf as ci, type ChargebackCreated as cj, type ChargebackReversed as ck, type CreatedBy as cl, type CreatedByStringOneOf as cm, type ChannelInfo as cn, type CustomField as co, type BalanceSummary as cp, type Balance as cq, type AdditionalFee as cr, type FulfillmentStatusesAggregate as cs, type Tags as ct, type TagList as cu, type Location as cv, type OrderSettings as cw, type OrderSettingsAllowedActionsOneOf as cx, type OrderSettingsEditableByOneOf as cy, type CustomAllowedActions as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type Refundability as d$, type AccountInfo as d0, type SendBuyerConfirmationEmailRequest as d1, type SendBuyerConfirmationEmailResponse as d2, type SendBuyerPaymentsReceivedEmailRequest as d3, type SendBuyerPaymentsReceivedEmailResponse as d4, type SendBuyerPickupConfirmationEmailRequest as d5, type SendBuyerPickupConfirmationEmailResponse as d6, type BulkSendBuyerPickupConfirmationEmailsRequest as d7, type BulkSendBuyerPickupConfirmationEmailsResponse as d8, type SendBuyerShippingConfirmationEmailRequest as d9, type PreviewBuyerPaymentsReceivedEmailResponse as dA, type PreviewBuyerConfirmationEmailRequest as dB, type PreviewBuyerConfirmationEmailResponse as dC, type PreviewBuyerPickupConfirmationEmailRequest as dD, type PreviewBuyerPickupConfirmationEmailResponse as dE, type PreviewShippingConfirmationEmailRequest as dF, type PreviewShippingConfirmationEmailResponse as dG, type PreviewResendDownloadLinksEmailRequest as dH, type PreviewResendDownloadLinksEmailResponse as dI, type Empty as dJ, type PreparePaymentCollectionRequest as dK, type RedirectUrls as dL, type DelayedCaptureSettings as dM, type Duration as dN, type GetPaymentCollectabilityStatusRequest as dO, type RecordManuallyCollectedPaymentRequest as dP, type RecordManuallyCollectedPaymentResponse as dQ, type MarkOrderAsPaidRequest as dR, type MarkOrderAsPaidResponse as dS, type BulkMarkOrdersAsPaidRequest as dT, type BulkMarkOrdersAsPaidResponse as dU, type BulkOrderResult as dV, type ItemMetadata as dW, type ApplicationError as dX, type BulkActionMetadata as dY, type GetRefundabilityStatusRequest as dZ, type GetRefundabilityStatusResponse as d_, type SendBuyerShippingConfirmationEmailResponse as da, type BulkSendBuyerShippingConfirmationEmailsRequest as db, type BulkSendBuyerShippingConfirmationEmailsResponse as dc, type SendMerchantOrderReceivedNotificationRequest as dd, type SendMerchantOrderReceivedNotificationResponse as de, type SendCancelRefundEmailRequest as df, type SendCancelRefundEmailResponse as dg, type SendRefundEmailRequest as dh, type SendRefundEmailResponse as di, type SendMerchantOrderReceivedPushRequest as dj, type SendMerchantOrderReceivedPushResponse as dk, type PreviewEmailByTypeRequest as dl, type PreviewEmailByTypeResponse as dm, type PreviewRefundEmailRequest as dn, type RefundDetails as dp, type RefundItem as dq, type LineItemRefund as dr, type AdditionalFeeRefund as ds, type ShippingRefund as dt, type PreviewRefundEmailResponse as du, type PreviewCancelEmailRequest as dv, type PreviewCancelEmailResponse as dw, type PreviewCancelRefundEmailRequest as dx, type PreviewCancelRefundEmailResponse as dy, type PreviewBuyerPaymentsReceivedEmailRequest as dz, type PaymentCapture as e, type GetOrderRequest as e$, type RefundabilityAdditionalRefundabilityInfoOneOf as e0, type CreatePaymentGatewayOrderRequest as e1, type ChargedBy as e2, type CreatePaymentGatewayOrderResponse as e3, type ChargeMembershipsRequest as e4, type MembershipChargeItem as e5, type MembershipName as e6, type ServiceProperties as e7, type ChargeMembershipsResponse as e8, type TriggerRefundRequest as e9, type RefundItemsBreakdown as eA, type LineItemRefundSummary as eB, type CalculateRefundRequest as eC, type CalculateRefundItemRequest as eD, type CalculateRefundResponse as eE, type CalculateRefundItemResponse as eF, type VoidAuthorizedPaymentsRequest as eG, type CaptureAuthorizedPaymentsRequest as eH, type ChargeSavedPaymentMethodRequest as eI, type ChargeSavedPaymentMethodResponse as eJ, type UpdateInternalDocumentsEvent as eK, type UpdateInternalDocumentsEventOperationOneOf as eL, type InternalDocument as eM, type InternalDocumentUpdateOperation as eN, type DeleteByIdsOperation as eO, type DeleteByFilterOperation as eP, type InternalDocumentUpdateByFilterOperation as eQ, type InternalUpdateExistingOperation as eR, type VersionedDocumentUpdateOperation as eS, type VersionedDeleteByIdsOperation as eT, type VersionedDocumentId as eU, type TriggerReindexRequest as eV, type TriggerReindexResponse as eW, type BatchOfTriggerReindexOrderRequest as eX, type TriggerReindexOrderRequest as eY, type DiffmatokyPayload as eZ, type ErrorInformation as e_, type PaymentRefund as ea, type RefundSideEffects as eb, type RestockInfo as ec, type RestockItem as ed, type TriggerRefundResponse as ee, type OrderTransactions as ef, type Payment as eg, type PaymentPaymentDetailsOneOf as eh, type PaymentReceiptInfoOneOf as ei, type RegularPaymentDetails as ej, type RegularPaymentDetailsPaymentMethodDetailsOneOf as ek, type CreditCardPaymentMethodDetails as el, type AuthorizationDetails as em, type AuthorizationCapture as en, type AuthorizationActionFailureDetails as eo, type AuthorizationVoid as ep, type V1ScheduledAction as eq, type Chargeback as er, type GiftCardPaymentDetails as es, type MembershipPaymentDetails as et, type WixReceiptInfo as eu, type ExternalReceiptInfo as ev, type Refund as ew, type RefundTransaction as ex, type RefundStatusInfo as ey, type AggregatedRefundSummary as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type UpdateOrderShippingAddressRequest as f$, type GetOrderResponse as f0, type InternalQueryOrdersRequest as f1, type PlatformQuery as f2, type PlatformQueryPagingMethodOneOf as f3, type Sorting as f4, type PlatformPaging as f5, type CursorPaging as f6, type InternalQueryOrdersResponse as f7, type PlatformPagingMetadata as f8, type Cursors as f9, type AdditionalFeeDelta as fA, type AdditionalFeeDeltaDeltaOneOf as fB, type DraftOrderCommitSettings as fC, type InventoryUpdateDetails as fD, type CommitDeltasResponse as fE, type OrderDeltasCommitted as fF, type CommittedDiffs as fG, type CommittedDiffsShippingUpdateInfoOneOf as fH, type LineItemDelta as fI, type LineItemDeltaDeltaOneOf as fJ, type ArchiveOrderRequest as fK, type ArchiveOrderResponse as fL, type BulkArchiveOrdersRequest as fM, type BulkArchiveOrdersResponse as fN, type BulkArchiveOrdersByFilterRequest as fO, type BulkArchiveOrdersByFilterResponse as fP, type UnArchiveOrderRequest as fQ, type UnArchiveOrderResponse as fR, type BulkUnArchiveOrdersRequest as fS, type BulkUnArchiveOrdersResponse as fT, type BulkUnArchiveOrdersByFilterRequest as fU, type BulkUnArchiveOrdersByFilterResponse as fV, type UpdateBuyerInfoRequest as fW, type BuyerInfoUpdate as fX, type UpdateBuyerInfoResponse as fY, type UpdateBuyerEmailRequest as fZ, type UpdateBuyerEmailResponse as f_, type QueryOrderRequest as fa, type QueryOrderResponse as fb, type SearchOrdersRequest as fc, type CursorSearch as fd, type CursorSearchPagingMethodOneOf as fe, type CursorPagingMetadata as ff, type CreateOrderRequest as fg, type OrderCreationSettings as fh, type OrderCreationSettingsEditableByOneOf as fi, type OrderCreateNotifications as fj, type CreateOrderResponse as fk, type UpdateOrderRequest as fl, type UpdateOrderResponse as fm, type BulkUpdateOrdersRequest as fn, type CommitDeltasRequest as fo, type DraftOrderDiffs as fp, type DraftOrderDiffsShippingUpdateInfoOneOf as fq, type DraftOrderDiffsBuyerUpdateInfoOneOf as fr, type DraftOrderDiffsBillingUpdateInfoOneOf as fs, type DraftOrderDiffsRecipientUpdateInfoOneOf as ft, type V1LineItemDelta as fu, type V1LineItemDeltaDeltaOneOf as fv, type OrderLineItemChangedDetails as fw, type ItemChangedDetails as fx, type AppliedDiscountDelta as fy, type AppliedDiscountDeltaDeltaOneOf as fz, type GetOrderApplicationErrors as g, type BulkSetBusinessLocationResponse as g$, type UpdateOrderShippingAddressResponse as g0, type UpdateBillingContactDetailsRequest as g1, type UpdateBillingContactDetailsResponse as g2, type UpdateOrderLineItemRequest as g3, type UpdateOrderLineItemResponse as g4, type UpdateOrderLineItemsRequest as g5, type MaskedOrderLineItem as g6, type UpdateOrderLineItemsResponse as g7, type AddInternalActivityRequest as g8, type InternalActivity as g9, type UpdateActivityRequest as gA, type UpdateActivityResponse as gB, type DeleteActivityRequest as gC, type DeleteActivityResponse as gD, type UpdateLineItemsDescriptionLinesRequest as gE, type LineItemUpdate as gF, type UpdateLineItemsDescriptionLinesResponse as gG, type MarkOrderAsSeenByHumanRequest as gH, type MarkOrderAsSeenByHumanResponse as gI, type CancelOrderRequest as gJ, type OrderCanceledEventOrderCanceled as gK, type UpdateOrderStatusRequest as gL, type UpdateOrderStatusResponse as gM, type MarkAsFulfilledRequest as gN, type MarkAsFulfilledResponse as gO, type FulfillmentStatusUpdated as gP, type BulkMarkAsFulfilledRequest as gQ, type BulkMarkAsFulfilledResponse as gR, type BulkMarkAsFulfilledByFilterRequest as gS, type BulkMarkAsFulfilledByFilterResponse as gT, type MarkAsUnfulfilledRequest as gU, type MarkAsUnfulfilledResponse as gV, type BulkMarkAsUnfulfilledRequest as gW, type BulkMarkAsUnfulfilledResponse as gX, type BulkMarkAsUnfulfilledByFilterRequest as gY, type BulkMarkAsUnfulfilledByFilterResponse as gZ, type BulkSetBusinessLocationRequest as g_, type InternalActivityContentOneOf as ga, type OrderPlaced as gb, type OrderPaid as gc, type OrderFulfilled as gd, type OrderNotFulfilled as ge, type OrderCanceled as gf, type DownloadLinkSent as gg, type TrackingNumberAdded as gh, type TrackingNumberEdited as gi, type TrackingLinkAdded as gj, type ShippingConfirmationEmailSent as gk, type InvoiceAdded as gl, type InvoiceSent as gm, type FulfillerEmailSent as gn, type ShippingAddressEdited as go, type EmailEdited as gp, type PickupReadyEmailSent as gq, type OrderPartiallyPaid as gr, type OrderPending as gs, type OrderRejected as gt, type AddInternalActivityResponse as gu, type AddActivityRequest as gv, type PublicActivity as gw, type PublicActivityContentOneOf as gx, type AddActivityResponse as gy, type AddActivitiesRequest as gz, type OrderSearch as h, type PaymentCollectionCreatePaymentGatewayOrderOptions as h$, type BulkSetBusinessLocationResult as h0, type V1MarkOrderAsPaidRequest as h1, type V1MarkOrderAsPaidResponse as h2, type PaymentStatusUpdated as h3, type V1BulkMarkOrdersAsPaidRequest as h4, type V1BulkMarkOrdersAsPaidResponse as h5, type V1CreatePaymentGatewayOrderRequest as h6, type V1CreatePaymentGatewayOrderResponse as h7, type GetShipmentsRequest as h8, type GetShipmentsResponse as h9, type StandardDetails as hA, type InvoiceDates as hB, type LineItems as hC, type LineItem as hD, type BigDecimalWrapper as hE, type LineItemTax as hF, type Source as hG, type LineItemMetaData as hH, type Locale as hI, type TotalPrice as hJ, type ItemizedFee as hK, type Discount as hL, type DiscountOneDiscountTypeOneOf as hM, type CalculatedTaxes as hN, type CalculatedTax as hO, type Payments as hP, type InvoicesPayment as hQ, type MetaData as hR, type InvoiceDynamicPriceTotals as hS, type CustomFieldValue as hT, type Value as hU, type Deposit as hV, type BaseEventMetadata as hW, type EventMetadata as hX, type AccountInfoMetadata as hY, type SetOrderNumberCounterOptions as hZ, type BulkDeleteImportedOrdersOptions as h_, type AggregateOrdersRequest as ha, type AggregateOrdersResponse as hb, type DecrementItemsQuantityRequest as hc, type DecrementData as hd, type DecrementItemsQuantityResponse as he, type BulkUpdateOrderTagsRequest as hf, type BulkUpdateOrderTagsResult as hg, type Task as hh, type TaskKey as hi, type TaskAction as hj, type TaskActionActionOneOf as hk, type Complete as hl, type Cancel as hm, type Reschedule as hn, type InvoiceSentEvent as ho, type IdAndVersion as hp, type InvoiceFields as hq, type Customer as hr, type Email as hs, type QuotesAddress as ht, type AddressDescription as hu, type Phone as hv, type Company as hw, type CommonAddress as hx, type CommonAddressStreetOneOf as hy, type Subdivision as hz, type CreateOrderOptions as i, type PaymentCollectionMarkOrderAsPaidApplicationErrors as i$, type ChargeMembershipsOptions as i0, type TriggerRefundOptions as i1, type OrderSearchSpec as i2, type UpdateOrderLineItemIdentifiers as i3, type UpdateOrderLineItem as i4, type UpdateActivityIdentifiers as i5, type DeleteActivityIdentifiers as i6, type AggregateOrdersOptions as i7, type DescriptionLineTypeWithLiterals as i8, type ItemTypePresetWithLiterals as i9, type DurationUnitWithLiterals as iA, type PaymentCollectabilityStatusWithLiterals as iB, type RefundableStatusWithLiterals as iC, type NonRefundableReasonWithLiterals as iD, type ManuallyRefundableReasonWithLiterals as iE, type RestockTypeWithLiterals as iF, type TransactionStatusWithLiterals as iG, type AuthorizationCaptureStatusWithLiterals as iH, type AuthorizationVoidStatusWithLiterals as iI, type ReasonWithLiterals as iJ, type ActionTypeWithLiterals as iK, type ChargebackStatusWithLiterals as iL, type MembershipPaymentStatusWithLiterals as iM, type RefundStatusWithLiterals as iN, type VersioningModeWithLiterals as iO, type SortOrderWithLiterals as iP, type OrderApprovalStrategyWithLiterals as iQ, type DeltaPaymentOptionTypeWithLiterals as iR, type InventoryActionWithLiterals as iS, type PlacementWithLiterals as iT, type SubdivisionTypeWithLiterals as iU, type SourceTypeWithLiterals as iV, type CustomFieldGroupWithLiterals as iW, type ValueTypeWithLiterals as iX, type DepositTypeWithLiterals as iY, type InvoiceStatusWithLiterals as iZ, type RecordManuallyCollectedPaymentApplicationErrors as i_, type PaymentOptionTypeWithLiterals as ia, type JurisdictionTypeWithLiterals as ib, type SubscriptionFrequencyWithLiterals as ic, type AdjustmentTypeWithLiterals as id, type TaxableAddressTypeWithLiterals as ie, type PaymentStatusWithLiterals as ig, type FulfillmentStatusWithLiterals as ih, type WeightUnitWithLiterals as ii, type VatTypeWithLiterals as ij, type PickupMethodWithLiterals as ik, type OrderStatusWithLiterals as il, type DiscountTypeWithLiterals as im, type DiscountReasonWithLiterals as io, type LineItemQuantityChangeTypeWithLiterals as ip, type ActivityTypeWithLiterals as iq, type OrderActivityTypeEnumActivityTypeWithLiterals as ir, type AttributionSourceWithLiterals as is, type ChannelTypeWithLiterals as it, type AdditionalFeeSourceWithLiterals as iu, type OrderActionTypeWithLiterals as iv, type ChargeTypeWithLiterals as iw, type WebhookIdentityTypeWithLiterals as ix, type PreviewEmailTypeWithLiterals as iy, type ScheduledActionWithLiterals as iz, type CreateOrderApplicationErrors as j, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as j0, type TriggerRefundApplicationErrors as j1, type UpdateOrderStatusApplicationErrors as j2, type CommonSearchWithEntityContext as j3, onOrderApproved as j4, onOrderUpdated as j5, onOrderCanceled as j6, onOrderCreated as j7, onOrderPaymentStatusUpdated as j8, preparePaymentCollection as j9, getPaymentCollectabilityStatus as ja, voidAuthorizedPayments as jb, captureAuthorizedPayments as jc, getOrder as jd, createOrder as je, updateOrder as jf, bulkUpdateOrders as jg, addActivities as jh, cancelOrder as ji, bulkUpdateOrderTags as jj, type UpdateOrderApplicationErrors as k, type BulkUpdateOrdersResponse as l, type AddActivitiesResponse as m, type CancelOrderOptions as n, type CancelOrderResponse as o, type CancelOrderApplicationErrors as p, type BulkUpdateOrderTagsOptions as q, type BulkUpdateOrderTagsResponse as r, type OrderApprovedEnvelope as s, type OrderUpdatedEnvelope as t, type OrderCanceledEnvelope as u, type OrderCreatedEnvelope as v, type OrderPaymentStatusUpdatedEnvelope as w, PaymentOptionType as x, SubscriptionFrequency as y, AdjustmentType as z };
|
|
7895
|
+
export { AdditionalFeeSource as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PaymentStatus as E, FulfillmentStatus as F, type GetPaymentCollectabilityStatusResponse as G, VatType as H, ItemTypePreset as I, JurisdictionType as J, PickupMethod as K, OrderStatus as L, type MaskedOrder as M, DiscountType as N, type Order as O, type Price as P, DiscountReason as Q, LineItemQuantityChangeType as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, ActivityType as X, OrderActivityTypeEnumActivityType as Y, AttributionSource as Z, ChannelType as _, type PreparePaymentCollectionOptions as a, type BuyerInfo as a$, OrderActionType as a0, ChargeType as a1, WebhookIdentityType as a2, PreviewEmailType as a3, ScheduledAction as a4, DurationUnit as a5, PaymentCollectabilityStatus as a6, RefundableStatus as a7, NonRefundableReason as a8, ManuallyRefundableReason as a9, type DescriptionLineDescriptionLineValueOneOf as aA, type DescriptionLineName as aB, type PlainTextValue as aC, type Color as aD, type FocalPoint as aE, type PhysicalProperties as aF, type ItemType as aG, type ItemTypeItemTypeDataOneOf as aH, type ItemTaxFullDetails as aI, type LineItemTaxInfo as aJ, type LineItemTaxBreakdown as aK, type DigitalFile as aL, type SubscriptionInfo as aM, type SubscriptionTitle as aN, type SubscriptionDescription as aO, type SubscriptionSettings as aP, type FreeTrialPeriod as aQ, type BillingAdjustment as aR, type BillingAdjustmentPriceSummary as aS, type PriceDescription as aT, type LocationAndQuantity as aU, type TaxableAddress as aV, type TaxableAddressTaxableAddressDataOneOf as aW, type ExtendedFields as aX, type ModifierGroup as aY, type TranslatableString as aZ, type ItemModifier as a_, RestockType as aa, TransactionStatus as ab, AuthorizationCaptureStatus as ac, AuthorizationVoidStatus as ad, Reason as ae, ActionType as af, ChargebackStatus as ag, MembershipPaymentStatus as ah, RefundStatus as ai, VersioningMode as aj, SortOrder as ak, OrderApprovalStrategy as al, DeltaPaymentOptionType as am, InventoryAction as an, Placement as ao, SubdivisionType as ap, SourceType as aq, CustomFieldGroup as ar, ValueType as as, DepositType as at, InvoiceStatus as au, type OrderLineItem as av, type ProductName as aw, type CatalogReference as ax, type DescriptionLine as ay, type DescriptionLineValueOneOf as az, type PreparePaymentCollectionResponse as b, type GiftCardPaymentRefund as b$, type BuyerInfoIdOneOf as b0, type CurrencyConversionDetails as b1, type PriceSummary as b2, type AddressWithContact as b3, type Address as b4, type StreetAddress as b5, type AddressLocation as b6, type FullAddressContactDetails as b7, type VatId as b8, type V1ShippingInformation as b9, type NewExchangeOrderCreated as bA, type LineItemExchangeData as bB, type DraftOrderChangesApplied as bC, type OrderChange as bD, type OrderChangeValueOneOf as bE, type LineItemChanges as bF, type LineItemQuantityChange as bG, type LineItemPriceChange as bH, type LineItemProductNameChange as bI, type LineItemDescriptionLineChange as bJ, type LineItemModifiersChange as bK, type ManagedLineItem as bL, type ManagedDiscount as bM, type TranslatedValue as bN, type LineItemAmount as bO, type ManagedAdditionalFee as bP, type TotalPriceChange as bQ, type ShippingInformationChange as bR, type ShippingInformation as bS, type SavedPaymentMethod as bT, type AuthorizedPaymentCreated as bU, type AuthorizedPaymentCaptured as bV, type AuthorizedPaymentVoided as bW, type RefundInitiated as bX, type RefundedPayment as bY, type RefundedPaymentKindOneOf as bZ, type RegularPaymentRefund as b_, type DeliveryLogistics as ba, type DeliveryLogisticsAddressOneOf as bb, type PickupDetails as bc, type PickupAddress as bd, type DeliveryTimeSlot as be, type ShippingPrice as bf, type ShippingRegion as bg, type TaxSummary as bh, type OrderTaxInfo as bi, type OrderTaxBreakdown as bj, type AppliedDiscount as bk, type AppliedDiscountDiscountSourceOneOf as bl, type Coupon as bm, type MerchantDiscount as bn, type MerchantDiscountMerchantDiscountReasonOneOf as bo, type DiscountRule as bp, type DiscountRuleName as bq, type LineItemDiscount as br, type ItemCombination as bs, type ItemCombinationLineItem as bt, type Activity as bu, type ActivityContentOneOf as bv, type CustomActivity as bw, type MerchantComment as bx, type OrderRefunded as by, type OrderCreatedFromExchange as bz, type PreparePaymentCollectionApplicationErrors as c, type IdentificationDataIdOneOf as c$, type MembershipPaymentRefund as c0, type PaymentRefunded as c1, type PaymentRefundFailed as c2, type RefundedAsStoreCredit as c3, type PaymentPending as c4, type PaymentPendingPaymentDetailsOneOf as c5, type RegularPayment as c6, type RegularPaymentPaymentMethodDetailsOneOf as c7, type CreditCardDetails as c8, type PaymentCanceled as c9, type OwnerApps as cA, type FormInfo as cB, type FormIdentifier as cC, type PlatformFeeSummary as cD, type PlatformFee as cE, type OrderApproved as cF, type OrdersExperiments as cG, type OrderRejectedEventOrderRejected as cH, type OrderItemsRestocked as cI, type V1RestockItem as cJ, type OrderImported as cK, type ImportedOrderDeleted as cL, type ImportOrderRequest as cM, type ImportOrderResponse as cN, type SetOrderNumberCounterRequest as cO, type SetOrderNumberCounterResponse as cP, type BulkDeleteImportedOrdersRequest as cQ, type BulkDeleteImportedOrdersResponse as cR, type DomainEvent as cS, type DomainEventBodyOneOf as cT, type EntityCreatedEvent as cU, type RestoreInfo as cV, type EntityUpdatedEvent as cW, type EntityDeletedEvent as cX, type ActionEvent as cY, type MessageEnvelope as cZ, type IdentificationData as c_, type PaymentCanceledPaymentDetailsOneOf as ca, type PaymentDeclined as cb, type PaymentDeclinedPaymentDetailsOneOf as cc, type ReceiptCreated as cd, type ReceiptCreatedReceiptInfoOneOf as ce, type WixReceipt as cf, type ExternalReceipt as cg, type ReceiptSent as ch, type ReceiptSentReceiptInfoOneOf as ci, type ChargebackCreated as cj, type ChargebackReversed as ck, type CreatedBy as cl, type CreatedByStringOneOf as cm, type ChannelInfo as cn, type CustomField as co, type BalanceSummary as cp, type Balance as cq, type AdditionalFee as cr, type FulfillmentStatusesAggregate as cs, type Tags as ct, type TagList as cu, type Location as cv, type OrderSettings as cw, type OrderSettingsAllowedActionsOneOf as cx, type OrderSettingsEditableByOneOf as cy, type CustomAllowedActions as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type Refundability as d$, type AccountInfo as d0, type SendBuyerConfirmationEmailRequest as d1, type SendBuyerConfirmationEmailResponse as d2, type SendBuyerPaymentsReceivedEmailRequest as d3, type SendBuyerPaymentsReceivedEmailResponse as d4, type SendBuyerPickupConfirmationEmailRequest as d5, type SendBuyerPickupConfirmationEmailResponse as d6, type BulkSendBuyerPickupConfirmationEmailsRequest as d7, type BulkSendBuyerPickupConfirmationEmailsResponse as d8, type SendBuyerShippingConfirmationEmailRequest as d9, type PreviewBuyerPaymentsReceivedEmailResponse as dA, type PreviewBuyerConfirmationEmailRequest as dB, type PreviewBuyerConfirmationEmailResponse as dC, type PreviewBuyerPickupConfirmationEmailRequest as dD, type PreviewBuyerPickupConfirmationEmailResponse as dE, type PreviewShippingConfirmationEmailRequest as dF, type PreviewShippingConfirmationEmailResponse as dG, type PreviewResendDownloadLinksEmailRequest as dH, type PreviewResendDownloadLinksEmailResponse as dI, type Empty as dJ, type PreparePaymentCollectionRequest as dK, type RedirectUrls as dL, type DelayedCaptureSettings as dM, type Duration as dN, type GetPaymentCollectabilityStatusRequest as dO, type RecordManuallyCollectedPaymentRequest as dP, type RecordManuallyCollectedPaymentResponse as dQ, type MarkOrderAsPaidRequest as dR, type MarkOrderAsPaidResponse as dS, type BulkMarkOrdersAsPaidRequest as dT, type BulkMarkOrdersAsPaidResponse as dU, type BulkOrderResult as dV, type ItemMetadata as dW, type ApplicationError as dX, type BulkActionMetadata as dY, type GetRefundabilityStatusRequest as dZ, type GetRefundabilityStatusResponse as d_, type SendBuyerShippingConfirmationEmailResponse as da, type BulkSendBuyerShippingConfirmationEmailsRequest as db, type BulkSendBuyerShippingConfirmationEmailsResponse as dc, type SendMerchantOrderReceivedNotificationRequest as dd, type SendMerchantOrderReceivedNotificationResponse as de, type SendCancelRefundEmailRequest as df, type SendCancelRefundEmailResponse as dg, type SendRefundEmailRequest as dh, type SendRefundEmailResponse as di, type SendMerchantOrderReceivedPushRequest as dj, type SendMerchantOrderReceivedPushResponse as dk, type PreviewEmailByTypeRequest as dl, type PreviewEmailByTypeResponse as dm, type PreviewRefundEmailRequest as dn, type RefundDetails as dp, type RefundItem as dq, type LineItemRefund as dr, type AdditionalFeeRefund as ds, type ShippingRefund as dt, type PreviewRefundEmailResponse as du, type PreviewCancelEmailRequest as dv, type PreviewCancelEmailResponse as dw, type PreviewCancelRefundEmailRequest as dx, type PreviewCancelRefundEmailResponse as dy, type PreviewBuyerPaymentsReceivedEmailRequest as dz, type PaymentCapture as e, type ErrorInformation as e$, type RefundabilityAdditionalRefundabilityInfoOneOf as e0, type CreatePaymentGatewayOrderRequest as e1, type ChargedBy as e2, type CreatePaymentGatewayOrderResponse as e3, type ChargeMembershipsRequest as e4, type MembershipChargeItem as e5, type MembershipName as e6, type ServiceProperties as e7, type ChargeMembershipsResponse as e8, type TriggerRefundRequest as e9, type AggregatedRefundSummary as eA, type RefundItemsBreakdown as eB, type LineItemRefundSummary as eC, type CalculateRefundRequest as eD, type CalculateRefundItemRequest as eE, type CalculateRefundResponse as eF, type CalculateRefundItemResponse as eG, type VoidAuthorizedPaymentsRequest as eH, type CaptureAuthorizedPaymentsRequest as eI, type ChargeSavedPaymentMethodRequest as eJ, type ChargeSavedPaymentMethodResponse as eK, type UpdateInternalDocumentsEvent as eL, type UpdateInternalDocumentsEventOperationOneOf as eM, type InternalDocument as eN, type InternalDocumentUpdateOperation as eO, type DeleteByIdsOperation as eP, type DeleteByFilterOperation as eQ, type InternalDocumentUpdateByFilterOperation as eR, type InternalUpdateExistingOperation as eS, type VersionedDocumentUpdateOperation as eT, type VersionedDeleteByIdsOperation as eU, type VersionedDocumentId as eV, type TriggerReindexRequest as eW, type TriggerReindexResponse as eX, type BatchOfTriggerReindexOrderRequest as eY, type TriggerReindexOrderRequest as eZ, type DiffmatokyPayload as e_, type PaymentRefund as ea, type RefundSideEffects as eb, type RestockInfo as ec, type RestockItem as ed, type TriggerRefundResponse as ee, type OrderTransactions as ef, type Payment as eg, type PaymentPaymentDetailsOneOf as eh, type PaymentReceiptInfoOneOf as ei, type RegularPaymentDetails as ej, type RegularPaymentDetailsPaymentMethodDetailsOneOf as ek, type CreditCardPaymentMethodDetails as el, type AuthorizationDetails as em, type AuthorizationCapture as en, type AuthorizationActionFailureDetails as eo, type AuthorizationVoid as ep, type V1ScheduledAction as eq, type Chargeback as er, type PaymentMethodName as es, type GiftCardPaymentDetails as et, type MembershipPaymentDetails as eu, type WixReceiptInfo as ev, type ExternalReceiptInfo as ew, type Refund as ex, type RefundTransaction as ey, type RefundStatusInfo as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type UpdateBuyerEmailResponse as f$, type GetOrderRequest as f0, type GetOrderResponse as f1, type InternalQueryOrdersRequest as f2, type PlatformQuery as f3, type PlatformQueryPagingMethodOneOf as f4, type Sorting as f5, type PlatformPaging as f6, type CursorPaging as f7, type InternalQueryOrdersResponse as f8, type PlatformPagingMetadata as f9, type AppliedDiscountDeltaDeltaOneOf as fA, type AdditionalFeeDelta as fB, type AdditionalFeeDeltaDeltaOneOf as fC, type DraftOrderCommitSettings as fD, type InventoryUpdateDetails as fE, type CommitDeltasResponse as fF, type OrderDeltasCommitted as fG, type CommittedDiffs as fH, type CommittedDiffsShippingUpdateInfoOneOf as fI, type LineItemDelta as fJ, type LineItemDeltaDeltaOneOf as fK, type ArchiveOrderRequest as fL, type ArchiveOrderResponse as fM, type BulkArchiveOrdersRequest as fN, type BulkArchiveOrdersResponse as fO, type BulkArchiveOrdersByFilterRequest as fP, type BulkArchiveOrdersByFilterResponse as fQ, type UnArchiveOrderRequest as fR, type UnArchiveOrderResponse as fS, type BulkUnArchiveOrdersRequest as fT, type BulkUnArchiveOrdersResponse as fU, type BulkUnArchiveOrdersByFilterRequest as fV, type BulkUnArchiveOrdersByFilterResponse as fW, type UpdateBuyerInfoRequest as fX, type BuyerInfoUpdate as fY, type UpdateBuyerInfoResponse as fZ, type UpdateBuyerEmailRequest as f_, type Cursors as fa, type QueryOrderRequest as fb, type QueryOrderResponse as fc, type SearchOrdersRequest as fd, type CursorSearch as fe, type CursorSearchPagingMethodOneOf as ff, type CursorPagingMetadata as fg, type CreateOrderRequest as fh, type OrderCreationSettings as fi, type OrderCreationSettingsEditableByOneOf as fj, type OrderCreateNotifications as fk, type CreateOrderResponse as fl, type UpdateOrderRequest as fm, type UpdateOrderResponse as fn, type BulkUpdateOrdersRequest as fo, type CommitDeltasRequest as fp, type DraftOrderDiffs as fq, type DraftOrderDiffsShippingUpdateInfoOneOf as fr, type DraftOrderDiffsBuyerUpdateInfoOneOf as fs, type DraftOrderDiffsBillingUpdateInfoOneOf as ft, type DraftOrderDiffsRecipientUpdateInfoOneOf as fu, type V1LineItemDelta as fv, type V1LineItemDeltaDeltaOneOf as fw, type OrderLineItemChangedDetails as fx, type ItemChangedDetails as fy, type AppliedDiscountDelta as fz, type GetOrderApplicationErrors as g, type BulkSetBusinessLocationRequest as g$, type UpdateOrderShippingAddressRequest as g0, type UpdateOrderShippingAddressResponse as g1, type UpdateBillingContactDetailsRequest as g2, type UpdateBillingContactDetailsResponse as g3, type UpdateOrderLineItemRequest as g4, type UpdateOrderLineItemResponse as g5, type UpdateOrderLineItemsRequest as g6, type MaskedOrderLineItem as g7, type UpdateOrderLineItemsResponse as g8, type AddInternalActivityRequest as g9, type AddActivitiesRequest as gA, type UpdateActivityRequest as gB, type UpdateActivityResponse as gC, type DeleteActivityRequest as gD, type DeleteActivityResponse as gE, type UpdateLineItemsDescriptionLinesRequest as gF, type LineItemUpdate as gG, type UpdateLineItemsDescriptionLinesResponse as gH, type MarkOrderAsSeenByHumanRequest as gI, type MarkOrderAsSeenByHumanResponse as gJ, type CancelOrderRequest as gK, type OrderCanceledEventOrderCanceled as gL, type UpdateOrderStatusRequest as gM, type UpdateOrderStatusResponse as gN, type MarkAsFulfilledRequest as gO, type MarkAsFulfilledResponse as gP, type FulfillmentStatusUpdated as gQ, type BulkMarkAsFulfilledRequest as gR, type BulkMarkAsFulfilledResponse as gS, type BulkMarkAsFulfilledByFilterRequest as gT, type BulkMarkAsFulfilledByFilterResponse as gU, type MarkAsUnfulfilledRequest as gV, type MarkAsUnfulfilledResponse as gW, type BulkMarkAsUnfulfilledRequest as gX, type BulkMarkAsUnfulfilledResponse as gY, type BulkMarkAsUnfulfilledByFilterRequest as gZ, type BulkMarkAsUnfulfilledByFilterResponse as g_, type InternalActivity as ga, type InternalActivityContentOneOf as gb, type OrderPlaced as gc, type OrderPaid as gd, type OrderFulfilled as ge, type OrderNotFulfilled as gf, type OrderCanceled as gg, type DownloadLinkSent as gh, type TrackingNumberAdded as gi, type TrackingNumberEdited as gj, type TrackingLinkAdded as gk, type ShippingConfirmationEmailSent as gl, type InvoiceAdded as gm, type InvoiceSent as gn, type FulfillerEmailSent as go, type ShippingAddressEdited as gp, type EmailEdited as gq, type PickupReadyEmailSent as gr, type OrderPartiallyPaid as gs, type OrderPending as gt, type OrderRejected as gu, type AddInternalActivityResponse as gv, type AddActivityRequest as gw, type PublicActivity as gx, type PublicActivityContentOneOf as gy, type AddActivityResponse as gz, type OrderSearch as h, type BulkDeleteImportedOrdersOptions as h$, type BulkSetBusinessLocationResponse as h0, type BulkSetBusinessLocationResult as h1, type V1MarkOrderAsPaidRequest as h2, type V1MarkOrderAsPaidResponse as h3, type PaymentStatusUpdated as h4, type V1BulkMarkOrdersAsPaidRequest as h5, type V1BulkMarkOrdersAsPaidResponse as h6, type V1CreatePaymentGatewayOrderRequest as h7, type V1CreatePaymentGatewayOrderResponse as h8, type GetShipmentsRequest as h9, type Subdivision as hA, type StandardDetails as hB, type InvoiceDates as hC, type LineItems as hD, type LineItem as hE, type BigDecimalWrapper as hF, type LineItemTax as hG, type Source as hH, type LineItemMetaData as hI, type Locale as hJ, type TotalPrice as hK, type ItemizedFee as hL, type Discount as hM, type DiscountOneDiscountTypeOneOf as hN, type CalculatedTaxes as hO, type CalculatedTax as hP, type Payments as hQ, type InvoicesPayment as hR, type MetaData as hS, type InvoiceDynamicPriceTotals as hT, type CustomFieldValue as hU, type Value as hV, type Deposit as hW, type BaseEventMetadata as hX, type EventMetadata as hY, type AccountInfoMetadata as hZ, type SetOrderNumberCounterOptions as h_, type GetShipmentsResponse as ha, type AggregateOrdersRequest as hb, type AggregateOrdersResponse as hc, type DecrementItemsQuantityRequest as hd, type DecrementData as he, type DecrementItemsQuantityResponse as hf, type BulkUpdateOrderTagsRequest as hg, type BulkUpdateOrderTagsResult as hh, type Task as hi, type TaskKey as hj, type TaskAction as hk, type TaskActionActionOneOf as hl, type Complete as hm, type Cancel as hn, type Reschedule as ho, type InvoiceSentEvent as hp, type IdAndVersion as hq, type InvoiceFields as hr, type Customer as hs, type Email as ht, type QuotesAddress as hu, type AddressDescription as hv, type Phone as hw, type Company as hx, type CommonAddress as hy, type CommonAddressStreetOneOf as hz, type CreateOrderOptions as i, type RecordManuallyCollectedPaymentApplicationErrors as i$, type PaymentCollectionCreatePaymentGatewayOrderOptions as i0, type ChargeMembershipsOptions as i1, type TriggerRefundOptions as i2, type OrderSearchSpec as i3, type UpdateOrderLineItemIdentifiers as i4, type UpdateOrderLineItem as i5, type UpdateActivityIdentifiers as i6, type DeleteActivityIdentifiers as i7, type AggregateOrdersOptions as i8, type DescriptionLineTypeWithLiterals as i9, type ScheduledActionWithLiterals as iA, type DurationUnitWithLiterals as iB, type PaymentCollectabilityStatusWithLiterals as iC, type RefundableStatusWithLiterals as iD, type NonRefundableReasonWithLiterals as iE, type ManuallyRefundableReasonWithLiterals as iF, type RestockTypeWithLiterals as iG, type TransactionStatusWithLiterals as iH, type AuthorizationCaptureStatusWithLiterals as iI, type AuthorizationVoidStatusWithLiterals as iJ, type ReasonWithLiterals as iK, type ActionTypeWithLiterals as iL, type ChargebackStatusWithLiterals as iM, type MembershipPaymentStatusWithLiterals as iN, type RefundStatusWithLiterals as iO, type VersioningModeWithLiterals as iP, type SortOrderWithLiterals as iQ, type OrderApprovalStrategyWithLiterals as iR, type DeltaPaymentOptionTypeWithLiterals as iS, type InventoryActionWithLiterals as iT, type PlacementWithLiterals as iU, type SubdivisionTypeWithLiterals as iV, type SourceTypeWithLiterals as iW, type CustomFieldGroupWithLiterals as iX, type ValueTypeWithLiterals as iY, type DepositTypeWithLiterals as iZ, type InvoiceStatusWithLiterals as i_, type ItemTypePresetWithLiterals as ia, type PaymentOptionTypeWithLiterals as ib, type JurisdictionTypeWithLiterals as ic, type SubscriptionFrequencyWithLiterals as id, type AdjustmentTypeWithLiterals as ie, type TaxableAddressTypeWithLiterals as ig, type PaymentStatusWithLiterals as ih, type FulfillmentStatusWithLiterals as ii, type WeightUnitWithLiterals as ij, type VatTypeWithLiterals as ik, type PickupMethodWithLiterals as il, type OrderStatusWithLiterals as im, type DiscountTypeWithLiterals as io, type DiscountReasonWithLiterals as ip, type LineItemQuantityChangeTypeWithLiterals as iq, type ActivityTypeWithLiterals as ir, type OrderActivityTypeEnumActivityTypeWithLiterals as is, type AttributionSourceWithLiterals as it, type ChannelTypeWithLiterals as iu, type AdditionalFeeSourceWithLiterals as iv, type OrderActionTypeWithLiterals as iw, type ChargeTypeWithLiterals as ix, type WebhookIdentityTypeWithLiterals as iy, type PreviewEmailTypeWithLiterals as iz, type CreateOrderApplicationErrors as j, type PaymentCollectionMarkOrderAsPaidApplicationErrors as j0, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as j1, type TriggerRefundApplicationErrors as j2, type UpdateOrderStatusApplicationErrors as j3, type CommonSearchWithEntityContext as j4, onOrderApproved as j5, onOrderUpdated as j6, onOrderCanceled as j7, onOrderCreated as j8, onOrderPaymentStatusUpdated as j9, preparePaymentCollection as ja, getPaymentCollectabilityStatus as jb, voidAuthorizedPayments as jc, captureAuthorizedPayments as jd, getOrder as je, createOrder as jf, updateOrder as jg, bulkUpdateOrders as jh, addActivities as ji, cancelOrder as jj, bulkUpdateOrderTags as jk, type UpdateOrderApplicationErrors as k, type BulkUpdateOrdersResponse as l, type AddActivitiesResponse as m, type CancelOrderOptions as n, type CancelOrderResponse as o, type CancelOrderApplicationErrors as p, type BulkUpdateOrderTagsOptions as q, type BulkUpdateOrderTagsResponse as r, type OrderApprovedEnvelope as s, type OrderUpdatedEnvelope as t, type OrderCanceledEnvelope as u, type OrderCreatedEnvelope as v, type OrderPaymentStatusUpdatedEnvelope as w, PaymentOptionType as x, SubscriptionFrequency as y, AdjustmentType as z };
|