@wix/auto_sdk_ecom_orders 1.0.112 → 1.0.114
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-ClOW8D9o.d.ts → ecom-v1-order-orders.universal-el5SGD40.d.ts} +27 -4
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +28 -5
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-ClOW8D9o.d.mts → ecom-v1-order-orders.universal-el5SGD40.d.mts} +27 -4
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +28 -5
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-DxwPrJ1h.d.ts → ecom-v1-order-orders.universal-CQmC9WuX.d.ts} +27 -4
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +28 -5
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{ecom-v1-order-orders.universal-DxwPrJ1h.d.mts → ecom-v1-order-orders.universal-CQmC9WuX.d.mts} +27 -4
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +28 -5
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1292,8 +1292,15 @@ interface ShippingPrice {
|
|
|
1292
1292
|
* @readonly
|
|
1293
1293
|
*/
|
|
1294
1294
|
totalPriceAfterTax?: Price;
|
|
1295
|
-
/**
|
|
1295
|
+
/**
|
|
1296
|
+
* Tax details.
|
|
1297
|
+
* @deprecated Tax details.
|
|
1298
|
+
* @replacedBy tax_info
|
|
1299
|
+
* @targetRemovalDate 2026-03-30
|
|
1300
|
+
*/
|
|
1296
1301
|
taxDetails?: ItemTaxFullDetails;
|
|
1302
|
+
/** Represents all the relevant tax details for a shipping. */
|
|
1303
|
+
taxInfo?: LineItemTaxInfo;
|
|
1297
1304
|
/**
|
|
1298
1305
|
* Shipping discount before tax.
|
|
1299
1306
|
* @readonly
|
|
@@ -2621,8 +2628,15 @@ interface AdditionalFee {
|
|
|
2621
2628
|
name?: string;
|
|
2622
2629
|
/** Additional fee's price. */
|
|
2623
2630
|
price?: Price;
|
|
2624
|
-
/**
|
|
2631
|
+
/**
|
|
2632
|
+
* Tax details.
|
|
2633
|
+
* @deprecated Tax details.
|
|
2634
|
+
* @replacedBy tax_info
|
|
2635
|
+
* @targetRemovalDate 2026-03-30
|
|
2636
|
+
*/
|
|
2625
2637
|
taxDetails?: ItemTaxFullDetails;
|
|
2638
|
+
/** Represents all the relevant tax details for additional fee. */
|
|
2639
|
+
taxInfo?: LineItemTaxInfo;
|
|
2626
2640
|
/**
|
|
2627
2641
|
* SPI implementer's `appId`.
|
|
2628
2642
|
* @format GUID
|
|
@@ -5621,11 +5635,18 @@ interface AddActivitiesRequest {
|
|
|
5621
5635
|
*/
|
|
5622
5636
|
orderId?: string;
|
|
5623
5637
|
/**
|
|
5624
|
-
* Activities to add.
|
|
5625
|
-
* @minSize 1
|
|
5638
|
+
* Activities to add. Deprecated.
|
|
5626
5639
|
* @maxSize 300
|
|
5640
|
+
* @deprecated Activities to add. Deprecated.
|
|
5641
|
+
* @replacedBy order_activities
|
|
5642
|
+
* @targetRemovalDate 2026-01-01
|
|
5627
5643
|
*/
|
|
5628
5644
|
activities?: PublicActivity[];
|
|
5645
|
+
/**
|
|
5646
|
+
* Activities to add.
|
|
5647
|
+
* @maxSize 300
|
|
5648
|
+
*/
|
|
5649
|
+
orderActivities?: Activity[];
|
|
5629
5650
|
}
|
|
5630
5651
|
interface AddActivitiesResponse {
|
|
5631
5652
|
/** Updated order. */
|
|
@@ -5634,6 +5655,8 @@ interface AddActivitiesResponse {
|
|
|
5634
5655
|
* IDs of the added activities.
|
|
5635
5656
|
* Use this IDs to either [update](https://bo.wix.com/wix-docs/rest/ecommerce/orders/update-activities) or [delete](https://bo.wix.com/wix-docs/rest/ecommerce/orders/delete-activities) the activities.
|
|
5636
5657
|
* @format GUID
|
|
5658
|
+
* @minSize 1
|
|
5659
|
+
* @maxSize 300
|
|
5637
5660
|
*/
|
|
5638
5661
|
activityIds?: string[];
|
|
5639
5662
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { P as Price, a as PreparePaymentCollectionOptions, b as PreparePaymentCollectionResponse, c as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, R as RecordManuallyCollectedPaymentApplicationErrors, M as MarkOrderAsPaidResponse, d as PaymentCollectionMarkOrderAsPaidApplicationErrors, B as BulkMarkOrdersAsPaidResponse, e as GetRefundabilityStatusResponse, f as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, g as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, h as ChargeMembershipsOptions, i as PaymentRefund, T as TriggerRefundOptions, j as TriggerRefundResponse, k as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, l as VoidAuthorizedPaymentsApplicationErrors, m as PaymentCapture, n as CaptureAuthorizedPaymentsResponse, o as CaptureAuthorizedPaymentsApplicationErrors, O as Order, p as GetOrderApplicationErrors, q as OrderSearch, S as SearchOrdersResponse, r as CreateOrderOptions, s as CreateOrderApplicationErrors, U as UpdateOrder, t as UpdateOrderApplicationErrors, u as MaskedOrder, v as BulkUpdateOrdersOptions, w as BulkUpdateOrdersResponse, x as CommitDeltasOptions, y as CommitDeltasResponse, z as CommitDeltasApplicationErrors, A as UpdateOrderLineItemIdentifiers, D as UpdateOrderLineItem, E as UpdateOrderLineItemResponse, F as PublicActivity, H as AddActivityResponse, I as UpdateActivityIdentifiers, J as UpdateActivityResponse, K as DeleteActivityIdentifiers, L as DeleteActivityResponse, N as CancelOrderOptions, Q as CancelOrderResponse, W as CancelOrderApplicationErrors, X as OrderStatusWithLiterals, Y as UpdateOrderStatusResponse, Z as UpdateOrderStatusApplicationErrors, _ as AggregateOrdersOptions, $ as AggregateOrdersResponse, a0 as BulkUpdateOrderTagsOptions, a1 as BulkUpdateOrderTagsResponse, a2 as OrderApprovedEnvelope, a3 as OrderUpdatedEnvelope, a4 as OrderCanceledEnvelope, a5 as OrderCreatedEnvelope, a6 as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-
|
|
3
|
-
export { dJ as ActionEvent, aD as ActionType, ij as ActionTypeWithLiterals, bQ as Activity, bR as ActivityContentOneOf, an as ActivityType, i2 as ActivityTypeWithLiterals, gs as AddActivitiesRequest, gt as AddActivitiesResponse, gq as AddActivityRequest, g3 as AddInternalActivityRequest, gp as AddInternalActivityResponse, cN as AdditionalFee, fx as AdditionalFeeDelta, fy as AdditionalFeeDeltaDeltaOneOf, dl as AdditionalFeeRefund, bs as Address, hk as AddressDescription, bu as AddressLocation, br as AddressWithContact, ac as AdjustmentType, hU as AdjustmentTypeWithLiterals, h1 as AggregateOrdersRequest, ex as AggregatedRefundSummary, dZ as ApplicationError, bI as AppliedDiscount, fv as AppliedDiscountDelta, fw as AppliedDiscountDeltaDeltaOneOf, bJ as AppliedDiscountDiscountSourceOneOf, fG as ArchiveOrderRequest, fH as ArchiveOrderResponse, ao as AttributionSource, i3 as AttributionSourceWithLiterals, em as AuthorizationActionFailureDetails, el as AuthorizationCapture, aA as AuthorizationCaptureStatus, ig as AuthorizationCaptureStatusWithLiterals, ek as AuthorizationDetails, en as AuthorizationVoid, aB as AuthorizationVoidStatus, ih as AuthorizationVoidStatusWithLiterals, cf as AuthorizedPaymentCaptured, ce as AuthorizedPaymentCreated, cg as AuthorizedPaymentVoided, cM as Balance, cL as BalanceSummary, hM as BaseEventMetadata, eV as BatchOfTriggerReindexOrderRequest, hu as BigDecimalWrapper, bd as BillingAdjustment, be as BillingAdjustmentPriceSummary, d_ as BulkActionMetadata, fK as BulkArchiveOrdersByFilterRequest, fL as BulkArchiveOrdersByFilterResponse, fI as BulkArchiveOrdersRequest, fJ as BulkArchiveOrdersResponse, gJ as BulkMarkAsFulfilledByFilterRequest, gK as BulkMarkAsFulfilledByFilterResponse, gH as BulkMarkAsFulfilledRequest, gI as BulkMarkAsFulfilledResponse, gP as BulkMarkAsUnfulfilledByFilterRequest, gQ as BulkMarkAsUnfulfilledByFilterResponse, gN as BulkMarkAsUnfulfilledRequest, gO as BulkMarkAsUnfulfilledResponse, dW as BulkMarkOrdersAsPaidRequest, dX as BulkOrderResult, d1 as BulkSendBuyerPickupConfirmationEmailsRequest, d2 as BulkSendBuyerPickupConfirmationEmailsResponse, d5 as BulkSendBuyerShippingConfirmationEmailsRequest, d6 as BulkSendBuyerShippingConfirmationEmailsResponse, gR as BulkSetBusinessLocationRequest, gS as BulkSetBusinessLocationResponse, gT as BulkSetBusinessLocationResult, fQ as BulkUnArchiveOrdersByFilterRequest, fR as BulkUnArchiveOrdersByFilterResponse, fO as BulkUnArchiveOrdersRequest, fP as BulkUnArchiveOrdersResponse, h5 as BulkUpdateOrderTagsRequest, h6 as BulkUpdateOrderTagsResult, fk as BulkUpdateOrdersRequest, bn as BuyerInfo, bo as BuyerInfoIdOneOf, fT as BuyerInfoUpdate, eB as CalculateRefundItemRequest, eD as CalculateRefundItemResponse, eA as CalculateRefundRequest, eC as CalculateRefundResponse, hE as CalculatedTax, hD as CalculatedTaxes, hc as Cancel, gB as CancelOrderRequest, eF as CaptureAuthorizedPaymentsRequest, aV as CatalogReference, cJ as ChannelInfo, ap as ChannelType, i4 as ChannelTypeWithLiterals, e4 as ChargeMembershipsRequest, e8 as ChargeMembershipsResponse, eG as ChargeSavedPaymentMethodRequest, eH as ChargeSavedPaymentMethodResponse, ep as Chargeback, cF as ChargebackCreated, cG as ChargebackReversed, aE as ChargebackStatus, ik as ChargebackStatusWithLiterals, e3 as ChargedBy, a$ as Color, fl as CommitDeltasRequest, fC as CommittedDiffs, fD as CommittedDiffsShippingUpdateInfoOneOf, hn as CommonAddress, ho as CommonAddressStreetOneOf, iA as CommonSearchWithEntityContext, hm as Company, hb as Complete, bK as Coupon, fe as CreateOrderRequest, fh as CreateOrderResponse, e2 as CreatePaymentGatewayOrderRequest, cH as CreatedBy, cI as CreatedByStringOneOf, cu as CreditCardDetails, ej as CreditCardPaymentMethodDetails, bp as CurrencyConversionDetails, f4 as CursorPaging, fd as CursorPagingMetadata, fb as CursorSearch, fc as CursorSearchPagingMethodOneOf, f7 as Cursors, bS as CustomActivity, cK as CustomField, aP as CustomFieldGroup, iw as CustomFieldGroupWithLiterals, hJ as CustomFieldValue, hh as Customer, h3 as DecrementData, h2 as DecrementItemsQuantityRequest, h4 as DecrementItemsQuantityResponse, dQ as DelayedCaptureSettings, gv as DeleteActivityRequest, eN as DeleteByFilterOperation, eM as DeleteByIdsOperation, by as DeliveryLogistics, bz as DeliveryLogisticsAddressOneOf, bC as DeliveryTimeSlot, aK as DeltaPaymentOptionType, ir as DeltaPaymentOptionTypeWithLiterals, hL as Deposit, aR as DepositType, iy as DepositTypeWithLiterals, aW as DescriptionLine, aY as DescriptionLineDescriptionLineValueOneOf, aZ as DescriptionLineName, a7 as DescriptionLineType, hP as DescriptionLineTypeWithLiterals, aX as DescriptionLineValueOneOf, eX as DiffmatokyPayload, b7 as DigitalFile, hB as Discount, hC as DiscountOneDiscountTypeOneOf, al as DiscountReason, i0 as DiscountReasonWithLiterals, bN as DiscountRule, bO as DiscountRuleName, ak as DiscountType, h$ as DiscountTypeWithLiterals, dD as DomainEvent, dE as DomainEventBodyOneOf, gb as DownloadLinkSent, bY as DraftOrderChangesApplied, fz as DraftOrderCommitSettings, fm as DraftOrderDiffs, fp as DraftOrderDiffsBillingUpdateInfoOneOf, fo as DraftOrderDiffsBuyerUpdateInfoOneOf, fq as DraftOrderDiffsRecipientUpdateInfoOneOf, fn as DraftOrderDiffsShippingUpdateInfoOneOf, dR as Duration, at as DurationUnit, i8 as DurationUnitWithLiterals, hi as Email, gk as EmailEdited, dK as Empty, dF as EntityCreatedEvent, dI as EntityDeletedEvent, dH as EntityUpdatedEvent, eY as ErrorInformation, hN as EventMetadata, bj as ExtendedFields, cC as ExternalReceipt, et as ExternalReceiptInfo, b0 as FocalPoint, bc as FreeTrialPeriod, gi as FulfillerEmailSent, af as FulfillmentStatus, gG as FulfillmentStatusUpdated, hX as FulfillmentStatusWithLiterals, cO as FulfillmentStatusesAggregate, bv as FullAddressContactDetails, eZ as GetOrderRequest, e_ as GetOrderResponse, dS as GetPaymentCollectabilityStatusRequest, d$ as GetRefundabilityStatusRequest, g$ as GetShipmentsRequest, h0 as GetShipmentsResponse, eq as GiftCardPaymentDetails, cl as GiftCardPaymentRefund, hf as IdAndVersion, dM as IdentificationData, dN as IdentificationDataIdOneOf, g4 as InternalActivity, g5 as InternalActivityContentOneOf, eK as InternalDocument, eO as InternalDocumentUpdateByFilterOperation, eL as InternalDocumentUpdateOperation, e$ as InternalQueryOrdersRequest, f5 as InternalQueryOrdersResponse, eP as InternalUpdateExistingOperation, aL as InventoryAction, is as InventoryActionWithLiterals, fA as InventoryUpdateDetails, gg as InvoiceAdded, hr as InvoiceDates, hI as InvoiceDynamicPriceTotals, hg as InvoiceFields, gh as InvoiceSent, he as InvoiceSentEvent, aS as InvoiceStatus, iz as InvoiceStatusWithLiterals, hG as InvoicesPayment, fu as ItemChangedDetails, dY as ItemMetadata, bm as ItemModifier, b4 as ItemTaxFullDetails, b2 as ItemType, a8 as ItemTypeItemType, b3 as ItemTypeItemTypeDataOneOf, hQ as ItemTypeItemTypeWithLiterals, hA as ItemizedFee, aa as JurisdictionType, hS as JurisdictionTypeWithLiterals, ht as LineItem, c8 as LineItemAmount, b$ as LineItemChanges, fE as LineItemDelta, fF as LineItemDeltaDeltaOneOf, c3 as LineItemDescriptionLineChange, bP as LineItemDiscount, bX as LineItemExchangeData, hx as LineItemMetaData, c4 as LineItemModifiersChange, c1 as LineItemPriceChange, c2 as LineItemProductNameChange, c0 as LineItemQuantityChange, am as LineItemQuantityChangeType, i1 as LineItemQuantityChangeTypeWithLiterals, dk as LineItemRefund, ez as LineItemRefundSummary, hv as LineItemTax, b6 as LineItemTaxBreakdown, b5 as LineItemTaxInfo, gx as LineItemUpdate, hs as LineItems, hy as Locale, cR as Location, bg as LocationAndQuantity, c9 as ManagedAdditionalFee, c6 as ManagedDiscount, c5 as ManagedLineItem, ax as ManuallyRefundableReason, ic as ManuallyRefundableReasonWithLiterals, gE as MarkAsFulfilledRequest, gF as MarkAsFulfilledResponse, gL as MarkAsUnfulfilledRequest, gM as MarkAsUnfulfilledResponse, dV as MarkOrderAsPaidRequest, gz as MarkOrderAsSeenByHumanRequest, gA as MarkOrderAsSeenByHumanResponse, g1 as MaskedOrderLineItem, e5 as MembershipChargeItem, e6 as MembershipName, er as MembershipPaymentDetails, cm as MembershipPaymentRefund, aF as MembershipPaymentStatus, il as MembershipPaymentStatusWithLiterals, bT as MerchantComment, bL as MerchantDiscount, bM as MerchantDiscountMerchantDiscountReasonOneOf, dL as MessageEnvelope, hH as MetaData, bk as ModifierGroup, bW as NewExchangeOrderCreated, aw as NonRefundableReason, ib as NonRefundableReasonWithLiterals, aJ as OrderApprovalStrategy, iq as OrderApprovalStrategyWithLiterals, cS as OrderApproved, ga as OrderCanceled, gC as OrderCanceledEventOrderCanceled, bZ as OrderChange, b_ as OrderChangeValueOneOf, fg as OrderCreateNotifications, bV as OrderCreatedFromExchange, ff as OrderCreationSettings, fB as OrderDeltasCommitted, g8 as OrderFulfilled, cV as OrderItemsRestocked, aT as OrderLineItem, ft as OrderLineItemChangedDetails, g9 as OrderNotFulfilled, g7 as OrderPaid, gm as OrderPartiallyPaid, gn as OrderPending, g6 as OrderPlaced, bU as OrderRefunded, go as OrderRejected, cU as OrderRejectedEventOrderRejected, hO as OrderSearchSpec, aj as OrderStatus, bH as OrderTaxBreakdown, bG as OrderTaxInfo, ed as OrderTransactions, cT as OrdersExperiments, ee as Payment, cv as PaymentCanceled, cw as PaymentCanceledPaymentDetailsOneOf, au as PaymentCollectabilityStatus, i9 as PaymentCollectabilityStatusWithLiterals, cx as PaymentDeclined, cy as PaymentDeclinedPaymentDetailsOneOf, a9 as PaymentOptionType, hR as PaymentOptionTypeWithLiterals, ef as PaymentPaymentDetailsOneOf, cq as PaymentPending, cr as PaymentPendingPaymentDetailsOneOf, eg as PaymentReceiptInfoOneOf, co as PaymentRefundFailed, cn as PaymentRefunded, ae as PaymentStatus, gW as PaymentStatusUpdated, hW as PaymentStatusWithLiterals, hF as Payments, hl as Phone, b1 as PhysicalProperties, bB as PickupAddress, bA as PickupDetails, ai as PickupMethod, h_ as PickupMethodWithLiterals, gl as PickupReadyEmailSent, aM as Placement, it as PlacementWithLiterals, a_ as PlainTextValue, f3 as PlatformPaging, f6 as PlatformPagingMetadata, f0 as PlatformQuery, f1 as PlatformQueryPagingMethodOneOf, dO as PreparePaymentCollectionRequest, dv as PreviewBuyerConfirmationEmailRequest, dw as PreviewBuyerConfirmationEmailResponse, dt as PreviewBuyerPaymentsReceivedEmailRequest, du as PreviewBuyerPaymentsReceivedEmailResponse, dx as PreviewBuyerPickupConfirmationEmailRequest, dy as PreviewBuyerPickupConfirmationEmailResponse, dp as PreviewCancelEmailRequest, dq as PreviewCancelEmailResponse, dr as PreviewCancelRefundEmailRequest, ds as PreviewCancelRefundEmailResponse, df as PreviewEmailByTypeRequest, dg as PreviewEmailByTypeResponse, aq as PreviewEmailType, i5 as PreviewEmailTypeWithLiterals, dh as PreviewRefundEmailRequest, dn as PreviewRefundEmailResponse, dB as PreviewResendDownloadLinksEmailRequest, dC as PreviewResendDownloadLinksEmailResponse, dz as PreviewShippingConfirmationEmailRequest, dA as PreviewShippingConfirmationEmailResponse, bf as PriceDescription, bq as PriceSummary, aU as ProductName, gr as PublicActivityContentOneOf, f8 as QueryOrderRequest, f9 as QueryOrderResponse, hj as QuotesAddress, aC as Reason, ii as ReasonWithLiterals, cz as ReceiptCreated, cA as ReceiptCreatedReceiptInfoOneOf, cD as ReceiptSent, cE as ReceiptSentReceiptInfoOneOf, dT as RecordManuallyCollectedPaymentRequest, dU as RecordManuallyCollectedPaymentResponse, dP as RedirectUrls, eu as Refund, di as RefundDetails, ch as RefundInitiated, dj as RefundItem, ey as RefundItemsBreakdown, ea as RefundSideEffects, aG as RefundStatus, ew as RefundStatusInfo, im as RefundStatusWithLiterals, ev as RefundTransaction, e0 as Refundability, e1 as RefundabilityAdditionalRefundabilityInfoOneOf, av as RefundableStatus, ia as RefundableStatusWithLiterals, cp as RefundedAsStoreCredit, ci as RefundedPayment, cj as RefundedPaymentKindOneOf, cs as RegularPayment, eh as RegularPaymentDetails, ei as RegularPaymentDetailsPaymentMethodDetailsOneOf, ct as RegularPaymentPaymentMethodDetailsOneOf, ck as RegularPaymentRefund, hd as Reschedule, eb as RestockInfo, ec as RestockItem, ay as RestockType, id as RestockTypeWithLiterals, dG as RestoreInfo, cd as SavedPaymentMethod, as as ScheduledAction, i7 as ScheduledActionWithLiterals, fa as SearchOrdersRequest, cX as SendBuyerConfirmationEmailRequest, cY as SendBuyerConfirmationEmailResponse, cZ as SendBuyerPaymentsReceivedEmailRequest, c_ as SendBuyerPaymentsReceivedEmailResponse, c$ as SendBuyerPickupConfirmationEmailRequest, d0 as SendBuyerPickupConfirmationEmailResponse, d3 as SendBuyerShippingConfirmationEmailRequest, d4 as SendBuyerShippingConfirmationEmailResponse, d9 as SendCancelRefundEmailRequest, da as SendCancelRefundEmailResponse, d7 as SendMerchantOrderReceivedNotificationRequest, d8 as SendMerchantOrderReceivedNotificationResponse, dd as SendMerchantOrderReceivedPushRequest, de as SendMerchantOrderReceivedPushResponse, db as SendRefundEmailRequest, dc as SendRefundEmailResponse, e7 as ServiceProperties, gj as ShippingAddressEdited, gf as ShippingConfirmationEmailSent, cc as ShippingInformation, cb as ShippingInformationChange, bD as ShippingPrice, dm as ShippingRefund, bE as ShippingRegion, aI as SortOrder, ip as SortOrderWithLiterals, f2 as Sorting, hw as Source, aO as SourceType, iv as SourceTypeWithLiterals, hq as StandardDetails, bt as StreetAddress, hp as Subdivision, aN as SubdivisionType, iu as SubdivisionTypeWithLiterals, ba as SubscriptionDescription, ab as SubscriptionFrequency, hT as SubscriptionFrequencyWithLiterals, b8 as SubscriptionInfo, bb as SubscriptionSettings, b9 as SubscriptionTitle, cQ as TagList, cP as Tags, h7 as Task, h9 as TaskAction, ha as TaskActionActionOneOf, h8 as TaskKey, bF as TaxSummary, bh as TaxableAddress, bi as TaxableAddressTaxableAddressDataOneOf, ad as TaxableAddressType, hV as TaxableAddressTypeWithLiterals, hz as TotalPrice, ca as TotalPriceChange, ge as TrackingLinkAdded, gc as TrackingNumberAdded, gd as TrackingNumberEdited, az as TransactionStatus, ie as TransactionStatusWithLiterals, bl as TranslatableString, c7 as TranslatedValue, e9 as TriggerRefundRequest, eW as TriggerReindexOrderRequest, eT as TriggerReindexRequest, eU as TriggerReindexResponse, fM as UnArchiveOrderRequest, fN as UnArchiveOrderResponse, gu as UpdateActivityRequest, fZ as UpdateBillingContactDetailsRequest, f_ as UpdateBillingContactDetailsResponse, fV as UpdateBuyerEmailRequest, fW as UpdateBuyerEmailResponse, fS as UpdateBuyerInfoRequest, fU as UpdateBuyerInfoResponse, eI as UpdateInternalDocumentsEvent, eJ as UpdateInternalDocumentsEventOperationOneOf, gw as UpdateLineItemsDescriptionLinesRequest, gy as UpdateLineItemsDescriptionLinesResponse, f$ as UpdateOrderLineItemRequest, g0 as UpdateOrderLineItemsRequest, g2 as UpdateOrderLineItemsResponse, fi as UpdateOrderRequest, fj as UpdateOrderResponse, fX as UpdateOrderShippingAddressRequest, fY as UpdateOrderShippingAddressResponse, gD as UpdateOrderStatusRequest, gX as V1BulkMarkOrdersAsPaidRequest, gY as V1BulkMarkOrdersAsPaidResponse, gZ as V1CreatePaymentGatewayOrderRequest, g_ as V1CreatePaymentGatewayOrderResponse, fr as V1LineItemDelta, fs as V1LineItemDeltaDeltaOneOf, gU as V1MarkOrderAsPaidRequest, gV as V1MarkOrderAsPaidResponse, cW as V1RestockItem, eo as V1ScheduledAction, bx as V1ShippingInformation, hK as Value, aQ as ValueType, ix as ValueTypeWithLiterals, bw as VatId, ah as VatType, hZ as VatTypeWithLiterals, eR as VersionedDeleteByIdsOperation, eS as VersionedDocumentId, eQ as VersionedDocumentUpdateOperation, aH as VersioningMode, io as VersioningModeWithLiterals, eE as VoidAuthorizedPaymentsRequest, ar as WebhookIdentityType, i6 as WebhookIdentityTypeWithLiterals, ag as WeightUnit, hY as WeightUnitWithLiterals, cB as WixReceipt, es as WixReceiptInfo } from './ecom-v1-order-orders.universal-DxwPrJ1h.js';
|
|
2
|
+
import { P as Price, a as PreparePaymentCollectionOptions, b as PreparePaymentCollectionResponse, c as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, R as RecordManuallyCollectedPaymentApplicationErrors, M as MarkOrderAsPaidResponse, d as PaymentCollectionMarkOrderAsPaidApplicationErrors, B as BulkMarkOrdersAsPaidResponse, e as GetRefundabilityStatusResponse, f as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, g as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, h as ChargeMembershipsOptions, i as PaymentRefund, T as TriggerRefundOptions, j as TriggerRefundResponse, k as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, l as VoidAuthorizedPaymentsApplicationErrors, m as PaymentCapture, n as CaptureAuthorizedPaymentsResponse, o as CaptureAuthorizedPaymentsApplicationErrors, O as Order, p as GetOrderApplicationErrors, q as OrderSearch, S as SearchOrdersResponse, r as CreateOrderOptions, s as CreateOrderApplicationErrors, U as UpdateOrder, t as UpdateOrderApplicationErrors, u as MaskedOrder, v as BulkUpdateOrdersOptions, w as BulkUpdateOrdersResponse, x as CommitDeltasOptions, y as CommitDeltasResponse, z as CommitDeltasApplicationErrors, A as UpdateOrderLineItemIdentifiers, D as UpdateOrderLineItem, E as UpdateOrderLineItemResponse, F as PublicActivity, H as AddActivityResponse, I as UpdateActivityIdentifiers, J as UpdateActivityResponse, K as DeleteActivityIdentifiers, L as DeleteActivityResponse, N as CancelOrderOptions, Q as CancelOrderResponse, W as CancelOrderApplicationErrors, X as OrderStatusWithLiterals, Y as UpdateOrderStatusResponse, Z as UpdateOrderStatusApplicationErrors, _ as AggregateOrdersOptions, $ as AggregateOrdersResponse, a0 as BulkUpdateOrderTagsOptions, a1 as BulkUpdateOrderTagsResponse, a2 as OrderApprovedEnvelope, a3 as OrderUpdatedEnvelope, a4 as OrderCanceledEnvelope, a5 as OrderCreatedEnvelope, a6 as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-CQmC9WuX.js';
|
|
3
|
+
export { dJ as ActionEvent, aD as ActionType, ij as ActionTypeWithLiterals, bQ as Activity, bR as ActivityContentOneOf, an as ActivityType, i2 as ActivityTypeWithLiterals, gs as AddActivitiesRequest, gt as AddActivitiesResponse, gq as AddActivityRequest, g3 as AddInternalActivityRequest, gp as AddInternalActivityResponse, cN as AdditionalFee, fx as AdditionalFeeDelta, fy as AdditionalFeeDeltaDeltaOneOf, dl as AdditionalFeeRefund, bs as Address, hk as AddressDescription, bu as AddressLocation, br as AddressWithContact, ac as AdjustmentType, hU as AdjustmentTypeWithLiterals, h1 as AggregateOrdersRequest, ex as AggregatedRefundSummary, dZ as ApplicationError, bI as AppliedDiscount, fv as AppliedDiscountDelta, fw as AppliedDiscountDeltaDeltaOneOf, bJ as AppliedDiscountDiscountSourceOneOf, fG as ArchiveOrderRequest, fH as ArchiveOrderResponse, ao as AttributionSource, i3 as AttributionSourceWithLiterals, em as AuthorizationActionFailureDetails, el as AuthorizationCapture, aA as AuthorizationCaptureStatus, ig as AuthorizationCaptureStatusWithLiterals, ek as AuthorizationDetails, en as AuthorizationVoid, aB as AuthorizationVoidStatus, ih as AuthorizationVoidStatusWithLiterals, cf as AuthorizedPaymentCaptured, ce as AuthorizedPaymentCreated, cg as AuthorizedPaymentVoided, cM as Balance, cL as BalanceSummary, hM as BaseEventMetadata, eV as BatchOfTriggerReindexOrderRequest, hu as BigDecimalWrapper, bd as BillingAdjustment, be as BillingAdjustmentPriceSummary, d_ as BulkActionMetadata, fK as BulkArchiveOrdersByFilterRequest, fL as BulkArchiveOrdersByFilterResponse, fI as BulkArchiveOrdersRequest, fJ as BulkArchiveOrdersResponse, gJ as BulkMarkAsFulfilledByFilterRequest, gK as BulkMarkAsFulfilledByFilterResponse, gH as BulkMarkAsFulfilledRequest, gI as BulkMarkAsFulfilledResponse, gP as BulkMarkAsUnfulfilledByFilterRequest, gQ as BulkMarkAsUnfulfilledByFilterResponse, gN as BulkMarkAsUnfulfilledRequest, gO as BulkMarkAsUnfulfilledResponse, dW as BulkMarkOrdersAsPaidRequest, dX as BulkOrderResult, d1 as BulkSendBuyerPickupConfirmationEmailsRequest, d2 as BulkSendBuyerPickupConfirmationEmailsResponse, d5 as BulkSendBuyerShippingConfirmationEmailsRequest, d6 as BulkSendBuyerShippingConfirmationEmailsResponse, gR as BulkSetBusinessLocationRequest, gS as BulkSetBusinessLocationResponse, gT as BulkSetBusinessLocationResult, fQ as BulkUnArchiveOrdersByFilterRequest, fR as BulkUnArchiveOrdersByFilterResponse, fO as BulkUnArchiveOrdersRequest, fP as BulkUnArchiveOrdersResponse, h5 as BulkUpdateOrderTagsRequest, h6 as BulkUpdateOrderTagsResult, fk as BulkUpdateOrdersRequest, bn as BuyerInfo, bo as BuyerInfoIdOneOf, fT as BuyerInfoUpdate, eB as CalculateRefundItemRequest, eD as CalculateRefundItemResponse, eA as CalculateRefundRequest, eC as CalculateRefundResponse, hE as CalculatedTax, hD as CalculatedTaxes, hc as Cancel, gB as CancelOrderRequest, eF as CaptureAuthorizedPaymentsRequest, aV as CatalogReference, cJ as ChannelInfo, ap as ChannelType, i4 as ChannelTypeWithLiterals, e4 as ChargeMembershipsRequest, e8 as ChargeMembershipsResponse, eG as ChargeSavedPaymentMethodRequest, eH as ChargeSavedPaymentMethodResponse, ep as Chargeback, cF as ChargebackCreated, cG as ChargebackReversed, aE as ChargebackStatus, ik as ChargebackStatusWithLiterals, e3 as ChargedBy, a$ as Color, fl as CommitDeltasRequest, fC as CommittedDiffs, fD as CommittedDiffsShippingUpdateInfoOneOf, hn as CommonAddress, ho as CommonAddressStreetOneOf, iA as CommonSearchWithEntityContext, hm as Company, hb as Complete, bK as Coupon, fe as CreateOrderRequest, fh as CreateOrderResponse, e2 as CreatePaymentGatewayOrderRequest, cH as CreatedBy, cI as CreatedByStringOneOf, cu as CreditCardDetails, ej as CreditCardPaymentMethodDetails, bp as CurrencyConversionDetails, f4 as CursorPaging, fd as CursorPagingMetadata, fb as CursorSearch, fc as CursorSearchPagingMethodOneOf, f7 as Cursors, bS as CustomActivity, cK as CustomField, aP as CustomFieldGroup, iw as CustomFieldGroupWithLiterals, hJ as CustomFieldValue, hh as Customer, h3 as DecrementData, h2 as DecrementItemsQuantityRequest, h4 as DecrementItemsQuantityResponse, dQ as DelayedCaptureSettings, gv as DeleteActivityRequest, eN as DeleteByFilterOperation, eM as DeleteByIdsOperation, by as DeliveryLogistics, bz as DeliveryLogisticsAddressOneOf, bC as DeliveryTimeSlot, aK as DeltaPaymentOptionType, ir as DeltaPaymentOptionTypeWithLiterals, hL as Deposit, aR as DepositType, iy as DepositTypeWithLiterals, aW as DescriptionLine, aY as DescriptionLineDescriptionLineValueOneOf, aZ as DescriptionLineName, a7 as DescriptionLineType, hP as DescriptionLineTypeWithLiterals, aX as DescriptionLineValueOneOf, eX as DiffmatokyPayload, b7 as DigitalFile, hB as Discount, hC as DiscountOneDiscountTypeOneOf, al as DiscountReason, i0 as DiscountReasonWithLiterals, bN as DiscountRule, bO as DiscountRuleName, ak as DiscountType, h$ as DiscountTypeWithLiterals, dD as DomainEvent, dE as DomainEventBodyOneOf, gb as DownloadLinkSent, bY as DraftOrderChangesApplied, fz as DraftOrderCommitSettings, fm as DraftOrderDiffs, fp as DraftOrderDiffsBillingUpdateInfoOneOf, fo as DraftOrderDiffsBuyerUpdateInfoOneOf, fq as DraftOrderDiffsRecipientUpdateInfoOneOf, fn as DraftOrderDiffsShippingUpdateInfoOneOf, dR as Duration, at as DurationUnit, i8 as DurationUnitWithLiterals, hi as Email, gk as EmailEdited, dK as Empty, dF as EntityCreatedEvent, dI as EntityDeletedEvent, dH as EntityUpdatedEvent, eY as ErrorInformation, hN as EventMetadata, bj as ExtendedFields, cC as ExternalReceipt, et as ExternalReceiptInfo, b0 as FocalPoint, bc as FreeTrialPeriod, gi as FulfillerEmailSent, af as FulfillmentStatus, gG as FulfillmentStatusUpdated, hX as FulfillmentStatusWithLiterals, cO as FulfillmentStatusesAggregate, bv as FullAddressContactDetails, eZ as GetOrderRequest, e_ as GetOrderResponse, dS as GetPaymentCollectabilityStatusRequest, d$ as GetRefundabilityStatusRequest, g$ as GetShipmentsRequest, h0 as GetShipmentsResponse, eq as GiftCardPaymentDetails, cl as GiftCardPaymentRefund, hf as IdAndVersion, dM as IdentificationData, dN as IdentificationDataIdOneOf, g4 as InternalActivity, g5 as InternalActivityContentOneOf, eK as InternalDocument, eO as InternalDocumentUpdateByFilterOperation, eL as InternalDocumentUpdateOperation, e$ as InternalQueryOrdersRequest, f5 as InternalQueryOrdersResponse, eP as InternalUpdateExistingOperation, aL as InventoryAction, is as InventoryActionWithLiterals, fA as InventoryUpdateDetails, gg as InvoiceAdded, hr as InvoiceDates, hI as InvoiceDynamicPriceTotals, hg as InvoiceFields, gh as InvoiceSent, he as InvoiceSentEvent, aS as InvoiceStatus, iz as InvoiceStatusWithLiterals, hG as InvoicesPayment, fu as ItemChangedDetails, dY as ItemMetadata, bm as ItemModifier, b4 as ItemTaxFullDetails, b2 as ItemType, a8 as ItemTypeItemType, b3 as ItemTypeItemTypeDataOneOf, hQ as ItemTypeItemTypeWithLiterals, hA as ItemizedFee, aa as JurisdictionType, hS as JurisdictionTypeWithLiterals, ht as LineItem, c8 as LineItemAmount, b$ as LineItemChanges, fE as LineItemDelta, fF as LineItemDeltaDeltaOneOf, c3 as LineItemDescriptionLineChange, bP as LineItemDiscount, bX as LineItemExchangeData, hx as LineItemMetaData, c4 as LineItemModifiersChange, c1 as LineItemPriceChange, c2 as LineItemProductNameChange, c0 as LineItemQuantityChange, am as LineItemQuantityChangeType, i1 as LineItemQuantityChangeTypeWithLiterals, dk as LineItemRefund, ez as LineItemRefundSummary, hv as LineItemTax, b6 as LineItemTaxBreakdown, b5 as LineItemTaxInfo, gx as LineItemUpdate, hs as LineItems, hy as Locale, cR as Location, bg as LocationAndQuantity, c9 as ManagedAdditionalFee, c6 as ManagedDiscount, c5 as ManagedLineItem, ax as ManuallyRefundableReason, ic as ManuallyRefundableReasonWithLiterals, gE as MarkAsFulfilledRequest, gF as MarkAsFulfilledResponse, gL as MarkAsUnfulfilledRequest, gM as MarkAsUnfulfilledResponse, dV as MarkOrderAsPaidRequest, gz as MarkOrderAsSeenByHumanRequest, gA as MarkOrderAsSeenByHumanResponse, g1 as MaskedOrderLineItem, e5 as MembershipChargeItem, e6 as MembershipName, er as MembershipPaymentDetails, cm as MembershipPaymentRefund, aF as MembershipPaymentStatus, il as MembershipPaymentStatusWithLiterals, bT as MerchantComment, bL as MerchantDiscount, bM as MerchantDiscountMerchantDiscountReasonOneOf, dL as MessageEnvelope, hH as MetaData, bk as ModifierGroup, bW as NewExchangeOrderCreated, aw as NonRefundableReason, ib as NonRefundableReasonWithLiterals, aJ as OrderApprovalStrategy, iq as OrderApprovalStrategyWithLiterals, cS as OrderApproved, ga as OrderCanceled, gC as OrderCanceledEventOrderCanceled, bZ as OrderChange, b_ as OrderChangeValueOneOf, fg as OrderCreateNotifications, bV as OrderCreatedFromExchange, ff as OrderCreationSettings, fB as OrderDeltasCommitted, g8 as OrderFulfilled, cV as OrderItemsRestocked, aT as OrderLineItem, ft as OrderLineItemChangedDetails, g9 as OrderNotFulfilled, g7 as OrderPaid, gm as OrderPartiallyPaid, gn as OrderPending, g6 as OrderPlaced, bU as OrderRefunded, go as OrderRejected, cU as OrderRejectedEventOrderRejected, hO as OrderSearchSpec, aj as OrderStatus, bH as OrderTaxBreakdown, bG as OrderTaxInfo, ed as OrderTransactions, cT as OrdersExperiments, ee as Payment, cv as PaymentCanceled, cw as PaymentCanceledPaymentDetailsOneOf, au as PaymentCollectabilityStatus, i9 as PaymentCollectabilityStatusWithLiterals, cx as PaymentDeclined, cy as PaymentDeclinedPaymentDetailsOneOf, a9 as PaymentOptionType, hR as PaymentOptionTypeWithLiterals, ef as PaymentPaymentDetailsOneOf, cq as PaymentPending, cr as PaymentPendingPaymentDetailsOneOf, eg as PaymentReceiptInfoOneOf, co as PaymentRefundFailed, cn as PaymentRefunded, ae as PaymentStatus, gW as PaymentStatusUpdated, hW as PaymentStatusWithLiterals, hF as Payments, hl as Phone, b1 as PhysicalProperties, bB as PickupAddress, bA as PickupDetails, ai as PickupMethod, h_ as PickupMethodWithLiterals, gl as PickupReadyEmailSent, aM as Placement, it as PlacementWithLiterals, a_ as PlainTextValue, f3 as PlatformPaging, f6 as PlatformPagingMetadata, f0 as PlatformQuery, f1 as PlatformQueryPagingMethodOneOf, dO as PreparePaymentCollectionRequest, dv as PreviewBuyerConfirmationEmailRequest, dw as PreviewBuyerConfirmationEmailResponse, dt as PreviewBuyerPaymentsReceivedEmailRequest, du as PreviewBuyerPaymentsReceivedEmailResponse, dx as PreviewBuyerPickupConfirmationEmailRequest, dy as PreviewBuyerPickupConfirmationEmailResponse, dp as PreviewCancelEmailRequest, dq as PreviewCancelEmailResponse, dr as PreviewCancelRefundEmailRequest, ds as PreviewCancelRefundEmailResponse, df as PreviewEmailByTypeRequest, dg as PreviewEmailByTypeResponse, aq as PreviewEmailType, i5 as PreviewEmailTypeWithLiterals, dh as PreviewRefundEmailRequest, dn as PreviewRefundEmailResponse, dB as PreviewResendDownloadLinksEmailRequest, dC as PreviewResendDownloadLinksEmailResponse, dz as PreviewShippingConfirmationEmailRequest, dA as PreviewShippingConfirmationEmailResponse, bf as PriceDescription, bq as PriceSummary, aU as ProductName, gr as PublicActivityContentOneOf, f8 as QueryOrderRequest, f9 as QueryOrderResponse, hj as QuotesAddress, aC as Reason, ii as ReasonWithLiterals, cz as ReceiptCreated, cA as ReceiptCreatedReceiptInfoOneOf, cD as ReceiptSent, cE as ReceiptSentReceiptInfoOneOf, dT as RecordManuallyCollectedPaymentRequest, dU as RecordManuallyCollectedPaymentResponse, dP as RedirectUrls, eu as Refund, di as RefundDetails, ch as RefundInitiated, dj as RefundItem, ey as RefundItemsBreakdown, ea as RefundSideEffects, aG as RefundStatus, ew as RefundStatusInfo, im as RefundStatusWithLiterals, ev as RefundTransaction, e0 as Refundability, e1 as RefundabilityAdditionalRefundabilityInfoOneOf, av as RefundableStatus, ia as RefundableStatusWithLiterals, cp as RefundedAsStoreCredit, ci as RefundedPayment, cj as RefundedPaymentKindOneOf, cs as RegularPayment, eh as RegularPaymentDetails, ei as RegularPaymentDetailsPaymentMethodDetailsOneOf, ct as RegularPaymentPaymentMethodDetailsOneOf, ck as RegularPaymentRefund, hd as Reschedule, eb as RestockInfo, ec as RestockItem, ay as RestockType, id as RestockTypeWithLiterals, dG as RestoreInfo, cd as SavedPaymentMethod, as as ScheduledAction, i7 as ScheduledActionWithLiterals, fa as SearchOrdersRequest, cX as SendBuyerConfirmationEmailRequest, cY as SendBuyerConfirmationEmailResponse, cZ as SendBuyerPaymentsReceivedEmailRequest, c_ as SendBuyerPaymentsReceivedEmailResponse, c$ as SendBuyerPickupConfirmationEmailRequest, d0 as SendBuyerPickupConfirmationEmailResponse, d3 as SendBuyerShippingConfirmationEmailRequest, d4 as SendBuyerShippingConfirmationEmailResponse, d9 as SendCancelRefundEmailRequest, da as SendCancelRefundEmailResponse, d7 as SendMerchantOrderReceivedNotificationRequest, d8 as SendMerchantOrderReceivedNotificationResponse, dd as SendMerchantOrderReceivedPushRequest, de as SendMerchantOrderReceivedPushResponse, db as SendRefundEmailRequest, dc as SendRefundEmailResponse, e7 as ServiceProperties, gj as ShippingAddressEdited, gf as ShippingConfirmationEmailSent, cc as ShippingInformation, cb as ShippingInformationChange, bD as ShippingPrice, dm as ShippingRefund, bE as ShippingRegion, aI as SortOrder, ip as SortOrderWithLiterals, f2 as Sorting, hw as Source, aO as SourceType, iv as SourceTypeWithLiterals, hq as StandardDetails, bt as StreetAddress, hp as Subdivision, aN as SubdivisionType, iu as SubdivisionTypeWithLiterals, ba as SubscriptionDescription, ab as SubscriptionFrequency, hT as SubscriptionFrequencyWithLiterals, b8 as SubscriptionInfo, bb as SubscriptionSettings, b9 as SubscriptionTitle, cQ as TagList, cP as Tags, h7 as Task, h9 as TaskAction, ha as TaskActionActionOneOf, h8 as TaskKey, bF as TaxSummary, bh as TaxableAddress, bi as TaxableAddressTaxableAddressDataOneOf, ad as TaxableAddressType, hV as TaxableAddressTypeWithLiterals, hz as TotalPrice, ca as TotalPriceChange, ge as TrackingLinkAdded, gc as TrackingNumberAdded, gd as TrackingNumberEdited, az as TransactionStatus, ie as TransactionStatusWithLiterals, bl as TranslatableString, c7 as TranslatedValue, e9 as TriggerRefundRequest, eW as TriggerReindexOrderRequest, eT as TriggerReindexRequest, eU as TriggerReindexResponse, fM as UnArchiveOrderRequest, fN as UnArchiveOrderResponse, gu as UpdateActivityRequest, fZ as UpdateBillingContactDetailsRequest, f_ as UpdateBillingContactDetailsResponse, fV as UpdateBuyerEmailRequest, fW as UpdateBuyerEmailResponse, fS as UpdateBuyerInfoRequest, fU as UpdateBuyerInfoResponse, eI as UpdateInternalDocumentsEvent, eJ as UpdateInternalDocumentsEventOperationOneOf, gw as UpdateLineItemsDescriptionLinesRequest, gy as UpdateLineItemsDescriptionLinesResponse, f$ as UpdateOrderLineItemRequest, g0 as UpdateOrderLineItemsRequest, g2 as UpdateOrderLineItemsResponse, fi as UpdateOrderRequest, fj as UpdateOrderResponse, fX as UpdateOrderShippingAddressRequest, fY as UpdateOrderShippingAddressResponse, gD as UpdateOrderStatusRequest, gX as V1BulkMarkOrdersAsPaidRequest, gY as V1BulkMarkOrdersAsPaidResponse, gZ as V1CreatePaymentGatewayOrderRequest, g_ as V1CreatePaymentGatewayOrderResponse, fr as V1LineItemDelta, fs as V1LineItemDeltaDeltaOneOf, gU as V1MarkOrderAsPaidRequest, gV as V1MarkOrderAsPaidResponse, cW as V1RestockItem, eo as V1ScheduledAction, bx as V1ShippingInformation, hK as Value, aQ as ValueType, ix as ValueTypeWithLiterals, bw as VatId, ah as VatType, hZ as VatTypeWithLiterals, eR as VersionedDeleteByIdsOperation, eS as VersionedDocumentId, eQ as VersionedDocumentUpdateOperation, aH as VersioningMode, io as VersioningModeWithLiterals, eE as VoidAuthorizedPaymentsRequest, ar as WebhookIdentityType, i6 as WebhookIdentityTypeWithLiterals, ag as WeightUnit, hY as WeightUnitWithLiterals, cB as WixReceipt, es as WixReceiptInfo } from './ecom-v1-order-orders.universal-CQmC9WuX.js';
|
|
4
4
|
|
|
5
5
|
declare function preparePaymentCollection$1(httpClient: HttpClient): PreparePaymentCollectionSignature;
|
|
6
6
|
interface PreparePaymentCollectionSignature {
|