@wix/auto_sdk_ecom_orders 1.0.134 → 1.0.136
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-BGvWMrca.d.ts → ecom-v1-order-orders.universal-C3ADe9Sb.d.ts} +49 -1
- 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 +48 -2
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-BGvWMrca.d.mts → ecom-v1-order-orders.universal-C3ADe9Sb.d.mts} +49 -1
- 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 +48 -2
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-DdaUK3Pv.d.ts → ecom-v1-order-orders.universal-_nmG8kso.d.ts} +63 -1
- 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 +48 -2
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{ecom-v1-order-orders.universal-DdaUK3Pv.d.mts → ecom-v1-order-orders.universal-_nmG8kso.d.mts} +63 -1
- 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 +48 -2
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -185,6 +185,13 @@ interface Order {
|
|
|
185
185
|
* @immutable
|
|
186
186
|
*/
|
|
187
187
|
settings?: OrderSettings;
|
|
188
|
+
/**
|
|
189
|
+
* Forms associated with the Order's line items.
|
|
190
|
+
* @internal
|
|
191
|
+
* @readonly
|
|
192
|
+
* @maxSize 1000
|
|
193
|
+
*/
|
|
194
|
+
forms?: FormInfo[];
|
|
188
195
|
}
|
|
189
196
|
interface OrderLineItem {
|
|
190
197
|
/**
|
|
@@ -294,6 +301,8 @@ interface OrderLineItem {
|
|
|
294
301
|
* @maxSize 5
|
|
295
302
|
*/
|
|
296
303
|
locations?: LocationAndQuantity[];
|
|
304
|
+
/** Total price **after** catalog discounts and line item discounts. */
|
|
305
|
+
lineItemPrice?: Price;
|
|
297
306
|
/** Address used for tax calculation. */
|
|
298
307
|
taxableAddress?: TaxableAddress;
|
|
299
308
|
/**
|
|
@@ -4750,6 +4759,50 @@ interface TriggerReindexOrderRequest {
|
|
|
4750
4759
|
*/
|
|
4751
4760
|
orderId?: string;
|
|
4752
4761
|
}
|
|
4762
|
+
interface FormInfo {
|
|
4763
|
+
/**
|
|
4764
|
+
* The identifier of the form schema.
|
|
4765
|
+
* @readonly
|
|
4766
|
+
*/
|
|
4767
|
+
schemaIdentifier?: FormIdentifier;
|
|
4768
|
+
/**
|
|
4769
|
+
* The unique identifier of the form instance.
|
|
4770
|
+
* @format GUID
|
|
4771
|
+
* @readonly
|
|
4772
|
+
*/
|
|
4773
|
+
_id?: string;
|
|
4774
|
+
/**
|
|
4775
|
+
* The line item ids associated with this form.
|
|
4776
|
+
* @format GUID
|
|
4777
|
+
* @readonly
|
|
4778
|
+
* @maxSize 300
|
|
4779
|
+
*/
|
|
4780
|
+
lineItemIds?: string[];
|
|
4781
|
+
/**
|
|
4782
|
+
* The translated title of the form.
|
|
4783
|
+
* @maxLength 100
|
|
4784
|
+
* @readonly
|
|
4785
|
+
*/
|
|
4786
|
+
title?: string;
|
|
4787
|
+
/**
|
|
4788
|
+
* The translated subtitles of the form.
|
|
4789
|
+
* @maxSize 10
|
|
4790
|
+
* @maxLength 100
|
|
4791
|
+
* @readonly
|
|
4792
|
+
*/
|
|
4793
|
+
subtitles?: string[] | null;
|
|
4794
|
+
/**
|
|
4795
|
+
* The id of the form submission.
|
|
4796
|
+
* @format GUID
|
|
4797
|
+
*/
|
|
4798
|
+
formSubmissionId?: string | null;
|
|
4799
|
+
}
|
|
4800
|
+
interface FormIdentifier {
|
|
4801
|
+
/** @format GUID */
|
|
4802
|
+
formSchemaId?: string;
|
|
4803
|
+
/** @maxLength 100 */
|
|
4804
|
+
namespace?: string;
|
|
4805
|
+
}
|
|
4753
4806
|
interface DiffmatokyPayload {
|
|
4754
4807
|
left?: string;
|
|
4755
4808
|
right?: string;
|
|
@@ -7841,6 +7894,13 @@ interface UpdateOrder {
|
|
|
7841
7894
|
* @immutable
|
|
7842
7895
|
*/
|
|
7843
7896
|
settings?: OrderSettings;
|
|
7897
|
+
/**
|
|
7898
|
+
* Forms associated with the Order's line items.
|
|
7899
|
+
* @internal
|
|
7900
|
+
* @readonly
|
|
7901
|
+
* @maxSize 1000
|
|
7902
|
+
*/
|
|
7903
|
+
forms?: FormInfo[];
|
|
7844
7904
|
}
|
|
7845
7905
|
/**
|
|
7846
7906
|
* Updates up to 100 orders.
|
|
@@ -8052,6 +8112,8 @@ interface UpdateOrderLineItem {
|
|
|
8052
8112
|
* @maxSize 5
|
|
8053
8113
|
*/
|
|
8054
8114
|
locations?: LocationAndQuantity[];
|
|
8115
|
+
/** Total price **after** catalog discounts and line item discounts. */
|
|
8116
|
+
lineItemPrice?: Price;
|
|
8055
8117
|
/** Address used for tax calculation. */
|
|
8056
8118
|
taxableAddress?: TaxableAddress;
|
|
8057
8119
|
/**
|
|
@@ -8281,4 +8343,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
8281
8343
|
unassignTags?: Tags;
|
|
8282
8344
|
}
|
|
8283
8345
|
|
|
8284
|
-
export { type CancelOrderOptions as $, type BulkUpdateOrdersResponse as A, type BulkDeleteImportedOrdersOptions as B, type CreatePaymentGatewayOrderResponse as C, type CommitDeltasOptions as D, type CommitDeltasResponse as E, type CommitDeltasApplicationErrors as F, type GetPaymentCollectabilityStatusResponse as G, type UpdateOrderLineItemIdentifiers as H, type ImportOrderResponse as I, type UpdateOrderLineItem as J, type UpdateOrderLineItemResponse as K, type PublicActivity as L, type MarkOrderAsPaidResponse as M, type AddActivityResponse as N, type Order as O, type Price as P, type AddActivitiesOptions as Q, type RecordManuallyCollectedPaymentApplicationErrors as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type AddActivitiesResponse as W, type UpdateActivityIdentifiers as X, type UpdateActivityResponse as Y, type DeleteActivityIdentifiers as Z, type DeleteActivityResponse as _, type SetOrderNumberCounterResponse as a, InvoiceStatus as a$, type CancelOrderResponse as a0, type CancelOrderApplicationErrors as a1, type OrderStatusWithLiterals as a2, type UpdateOrderStatusResponse as a3, type UpdateOrderStatusApplicationErrors as a4, type AggregateOrdersOptions as a5, type AggregateOrdersResponse as a6, type BulkUpdateOrderTagsOptions as a7, type BulkUpdateOrderTagsResponse as a8, type OrderApprovedEnvelope as a9, PreviewEmailType as aA, ScheduledAction as aB, DurationUnit as aC, PaymentCollectabilityStatus as aD, RefundableStatus as aE, NonRefundableReason as aF, ManuallyRefundableReason as aG, RestockType as aH, TransactionStatus as aI, AuthorizationCaptureStatus as aJ, AuthorizationVoidStatus as aK, Reason as aL, ActionType as aM, ChargebackStatus as aN, MembershipPaymentStatus as aO, RefundStatus as aP, VersioningMode as aQ, SortOrder as aR, OrderApprovalStrategy as aS, DeltaPaymentOptionType as aT, InventoryAction as aU, Placement as aV, SubdivisionType as aW, SourceType as aX, CustomFieldGroup as aY, ValueType as aZ, DepositType as a_, type OrderUpdatedEnvelope as aa, type OrderCanceledEnvelope as ab, type OrderCreatedEnvelope as ac, type OrderPaymentStatusUpdatedEnvelope as ad, DescriptionLineType as ae, ItemTypePreset as af, PaymentOptionType as ag, JurisdictionType as ah, SubscriptionFrequency as ai, AdjustmentType as aj, TaxableAddressType as ak, PaymentStatus as al, FulfillmentStatus as am, WeightUnit as an, VatType as ao, PickupMethod as ap, OrderStatus as aq, DiscountType as ar, DiscountReason as as, LineItemQuantityChangeType as at, ActivityType as au, OrderActivityTypeEnumActivityType as av, AttributionSource as aw, ChannelType as ax, OrderActionType as ay, WebhookIdentityType as az, type BulkDeleteImportedOrdersResponse as b, type CustomActivity as b$, type OrderLineItem as b0, type ProductName as b1, type CatalogReference as b2, type DescriptionLine as b3, type DescriptionLineValueOneOf as b4, type DescriptionLineDescriptionLineValueOneOf as b5, type DescriptionLineName as b6, type PlainTextValue as b7, type Color as b8, type FocalPoint as b9, type AddressWithContact as bA, type Address as bB, type StreetAddress as bC, type AddressLocation as bD, type FullAddressContactDetails as bE, type VatId as bF, type V1ShippingInformation as bG, type DeliveryLogistics as bH, type DeliveryLogisticsAddressOneOf as bI, type PickupDetails as bJ, type PickupAddress as bK, type DeliveryTimeSlot as bL, type ShippingPrice as bM, type ShippingRegion as bN, type TaxSummary as bO, type OrderTaxInfo as bP, type OrderTaxBreakdown as bQ, type AppliedDiscount as bR, type AppliedDiscountDiscountSourceOneOf as bS, type Coupon as bT, type MerchantDiscount as bU, type MerchantDiscountMerchantDiscountReasonOneOf as bV, type DiscountRule as bW, type DiscountRuleName as bX, type LineItemDiscount as bY, type Activity as bZ, type ActivityContentOneOf as b_, type PhysicalProperties as ba, type ItemType as bb, type ItemTypeItemTypeDataOneOf as bc, type ItemTaxFullDetails as bd, type LineItemTaxInfo as be, type LineItemTaxBreakdown as bf, type DigitalFile as bg, type SubscriptionInfo as bh, type SubscriptionTitle as bi, type SubscriptionDescription as bj, type SubscriptionSettings as bk, type FreeTrialPeriod as bl, type BillingAdjustment as bm, type BillingAdjustmentPriceSummary as bn, type PriceDescription as bo, type LocationAndQuantity as bp, type TaxableAddress as bq, type TaxableAddressTaxableAddressDataOneOf as br, type ExtendedFields as bs, type ModifierGroup as bt, type TranslatableString as bu, type ItemModifier as bv, type BuyerInfo as bw, type BuyerInfoIdOneOf as bx, type CurrencyConversionDetails as by, type PriceSummary as bz, type PreparePaymentCollectionOptions as c, type OrderSettings as c$, type MerchantComment as c0, type OrderRefunded as c1, type OrderCreatedFromExchange as c2, type NewExchangeOrderCreated as c3, type LineItemExchangeData as c4, type DraftOrderChangesApplied as c5, type OrderChange as c6, type OrderChangeValueOneOf as c7, type LineItemChanges as c8, type LineItemQuantityChange as c9, type PaymentPendingPaymentDetailsOneOf as cA, type RegularPayment as cB, type RegularPaymentPaymentMethodDetailsOneOf as cC, type CreditCardDetails as cD, type PaymentCanceled as cE, type PaymentCanceledPaymentDetailsOneOf as cF, type PaymentDeclined as cG, type PaymentDeclinedPaymentDetailsOneOf as cH, type ReceiptCreated as cI, type ReceiptCreatedReceiptInfoOneOf as cJ, type WixReceipt as cK, type ExternalReceipt as cL, type ReceiptSent as cM, type ReceiptSentReceiptInfoOneOf as cN, type ChargebackCreated as cO, type ChargebackReversed as cP, type CreatedBy as cQ, type CreatedByStringOneOf as cR, type ChannelInfo as cS, type CustomField as cT, type BalanceSummary as cU, type Balance as cV, type AdditionalFee as cW, type FulfillmentStatusesAggregate as cX, type Tags as cY, type TagList as cZ, type Location as c_, type LineItemPriceChange as ca, type LineItemProductNameChange as cb, type LineItemDescriptionLineChange as cc, type LineItemModifiersChange as cd, type ManagedLineItem as ce, type ManagedDiscount as cf, type TranslatedValue as cg, type LineItemAmount as ch, type ManagedAdditionalFee as ci, type TotalPriceChange as cj, type ShippingInformationChange as ck, type ShippingInformation as cl, type SavedPaymentMethod as cm, type AuthorizedPaymentCreated as cn, type AuthorizedPaymentCaptured as co, type AuthorizedPaymentVoided as cp, type RefundInitiated as cq, type RefundedPayment as cr, type RefundedPaymentKindOneOf as cs, type RegularPaymentRefund as ct, type GiftCardPaymentRefund as cu, type MembershipPaymentRefund as cv, type PaymentRefunded as cw, type PaymentRefundFailed as cx, type RefundedAsStoreCredit as cy, type PaymentPending as cz, type PreparePaymentCollectionResponse as d, type PreviewShippingConfirmationEmailResponse as d$, type OrderSettingsAllowedActionsOneOf as d0, type CustomAllowedActions as d1, type OrderApproved as d2, type OrdersExperiments as d3, type OrderRejectedEventOrderRejected as d4, type OrderItemsRestocked as d5, type V1RestockItem as d6, type OrderImported as d7, type ImportedOrderDeleted as d8, type ImportOrderRequest as d9, type SendMerchantOrderReceivedNotificationResponse as dA, type SendCancelRefundEmailRequest as dB, type SendCancelRefundEmailResponse as dC, type SendRefundEmailRequest as dD, type SendRefundEmailResponse as dE, type SendMerchantOrderReceivedPushRequest as dF, type SendMerchantOrderReceivedPushResponse as dG, type PreviewEmailByTypeRequest as dH, type PreviewEmailByTypeResponse as dI, type PreviewRefundEmailRequest as dJ, type RefundDetails as dK, type RefundItem as dL, type LineItemRefund as dM, type AdditionalFeeRefund as dN, type ShippingRefund as dO, type PreviewRefundEmailResponse as dP, type PreviewCancelEmailRequest as dQ, type PreviewCancelEmailResponse as dR, type PreviewCancelRefundEmailRequest as dS, type PreviewCancelRefundEmailResponse as dT, type PreviewBuyerPaymentsReceivedEmailRequest as dU, type PreviewBuyerPaymentsReceivedEmailResponse as dV, type PreviewBuyerConfirmationEmailRequest as dW, type PreviewBuyerConfirmationEmailResponse as dX, type PreviewBuyerPickupConfirmationEmailRequest as dY, type PreviewBuyerPickupConfirmationEmailResponse as dZ, type PreviewShippingConfirmationEmailRequest as d_, type SetOrderNumberCounterRequest as da, type BulkDeleteImportedOrdersRequest as db, type DomainEvent as dc, type DomainEventBodyOneOf as dd, type EntityCreatedEvent as de, type RestoreInfo as df, type EntityUpdatedEvent as dg, type EntityDeletedEvent as dh, type ActionEvent as di, type MessageEnvelope as dj, type IdentificationData as dk, type IdentificationDataIdOneOf as dl, type SendBuyerConfirmationEmailRequest as dm, type SendBuyerConfirmationEmailResponse as dn, type SendBuyerPaymentsReceivedEmailRequest as dp, type SendBuyerPaymentsReceivedEmailResponse as dq, type SendBuyerPickupConfirmationEmailRequest as dr, type SendBuyerPickupConfirmationEmailResponse as ds, type BulkSendBuyerPickupConfirmationEmailsRequest as dt, type BulkSendBuyerPickupConfirmationEmailsResponse as du, type SendBuyerShippingConfirmationEmailRequest as dv, type SendBuyerShippingConfirmationEmailResponse as dw, type BulkSendBuyerShippingConfirmationEmailsRequest as dx, type BulkSendBuyerShippingConfirmationEmailsResponse as dy, type SendMerchantOrderReceivedNotificationRequest as dz, type PreparePaymentCollectionApplicationErrors as e, type InternalDocument as e$, type PreviewResendDownloadLinksEmailRequest as e0, type PreviewResendDownloadLinksEmailResponse as e1, type Empty as e2, type PreparePaymentCollectionRequest as e3, type RedirectUrls as e4, type DelayedCaptureSettings as e5, type Duration as e6, type GetPaymentCollectabilityStatusRequest as e7, type RecordManuallyCollectedPaymentRequest as e8, type RecordManuallyCollectedPaymentResponse as e9, type CreditCardPaymentMethodDetails as eA, type AuthorizationDetails as eB, type AuthorizationCapture as eC, type AuthorizationActionFailureDetails as eD, type AuthorizationVoid as eE, type V1ScheduledAction as eF, type Chargeback as eG, type GiftCardPaymentDetails as eH, type MembershipPaymentDetails as eI, type WixReceiptInfo as eJ, type ExternalReceiptInfo as eK, type Refund as eL, type RefundTransaction as eM, type RefundStatusInfo as eN, type AggregatedRefundSummary as eO, type RefundItemsBreakdown as eP, type LineItemRefundSummary as eQ, type CalculateRefundRequest as eR, type CalculateRefundItemRequest as eS, type CalculateRefundResponse as eT, type CalculateRefundItemResponse as eU, type VoidAuthorizedPaymentsRequest as eV, type CaptureAuthorizedPaymentsRequest as eW, type ChargeSavedPaymentMethodRequest as eX, type ChargeSavedPaymentMethodResponse as eY, type UpdateInternalDocumentsEvent as eZ, type UpdateInternalDocumentsEventOperationOneOf as e_, type MarkOrderAsPaidRequest as ea, type BulkMarkOrdersAsPaidRequest as eb, type BulkOrderResult as ec, type ItemMetadata as ed, type ApplicationError as ee, type BulkActionMetadata as ef, type GetRefundabilityStatusRequest as eg, type Refundability as eh, type RefundabilityAdditionalRefundabilityInfoOneOf as ei, type CreatePaymentGatewayOrderRequest as ej, type ChargedBy as ek, type ChargeMembershipsRequest as el, type MembershipChargeItem as em, type MembershipName as en, type ServiceProperties as eo, type ChargeMembershipsResponse as ep, type TriggerRefundRequest as eq, type RefundSideEffects as er, type RestockInfo as es, type RestockItem as et, type OrderTransactions as eu, type Payment as ev, type PaymentPaymentDetailsOneOf as ew, type PaymentReceiptInfoOneOf as ex, type RegularPaymentDetails as ey, type RegularPaymentDetailsPaymentMethodDetailsOneOf as ez, type PaymentCollectionMarkOrderAsPaidApplicationErrors as f, type BulkArchiveOrdersByFilterRequest as f$, type InternalDocumentUpdateOperation as f0, type DeleteByIdsOperation as f1, type DeleteByFilterOperation as f2, type InternalDocumentUpdateByFilterOperation as f3, type InternalUpdateExistingOperation as f4, type VersionedDocumentUpdateOperation as f5, type VersionedDeleteByIdsOperation as f6, type VersionedDocumentId as f7, type TriggerReindexRequest as f8, type TriggerReindexResponse as f9, type UpdateOrderResponse as fA, type BulkUpdateOrdersRequest as fB, type CommitDeltasRequest as fC, type DraftOrderDiffs as fD, type DraftOrderDiffsShippingUpdateInfoOneOf as fE, type DraftOrderDiffsBuyerUpdateInfoOneOf as fF, type DraftOrderDiffsBillingUpdateInfoOneOf as fG, type DraftOrderDiffsRecipientUpdateInfoOneOf as fH, type V1LineItemDelta as fI, type V1LineItemDeltaDeltaOneOf as fJ, type OrderLineItemChangedDetails as fK, type ItemChangedDetails as fL, type AppliedDiscountDelta as fM, type AppliedDiscountDeltaDeltaOneOf as fN, type AdditionalFeeDelta as fO, type AdditionalFeeDeltaDeltaOneOf as fP, type DraftOrderCommitSettings as fQ, type InventoryUpdateDetails as fR, type OrderDeltasCommitted as fS, type CommittedDiffs as fT, type CommittedDiffsShippingUpdateInfoOneOf as fU, type LineItemDelta as fV, type LineItemDeltaDeltaOneOf as fW, type ArchiveOrderRequest as fX, type ArchiveOrderResponse as fY, type BulkArchiveOrdersRequest as fZ, type BulkArchiveOrdersResponse as f_, type BatchOfTriggerReindexOrderRequest as fa, type TriggerReindexOrderRequest as fb, type DiffmatokyPayload as fc, type ErrorInformation as fd, type GetOrderRequest as fe, type GetOrderResponse as ff, type InternalQueryOrdersRequest as fg, type PlatformQuery as fh, type PlatformQueryPagingMethodOneOf as fi, type Sorting as fj, type PlatformPaging as fk, type CursorPaging as fl, type InternalQueryOrdersResponse as fm, type PlatformPagingMetadata as fn, type Cursors as fo, type QueryOrderRequest as fp, type QueryOrderResponse as fq, type SearchOrdersRequest as fr, type CursorSearch as fs, type CursorSearchPagingMethodOneOf as ft, type CursorPagingMetadata as fu, type CreateOrderRequest as fv, type OrderCreationSettings as fw, type OrderCreateNotifications as fx, type CreateOrderResponse as fy, type UpdateOrderRequest as fz, type BulkMarkOrdersAsPaidResponse as g, type MarkAsUnfulfilledRequest as g$, type BulkArchiveOrdersByFilterResponse as g0, type UnArchiveOrderRequest as g1, type UnArchiveOrderResponse as g2, type BulkUnArchiveOrdersRequest as g3, type BulkUnArchiveOrdersResponse as g4, type BulkUnArchiveOrdersByFilterRequest as g5, type BulkUnArchiveOrdersByFilterResponse as g6, type UpdateBuyerInfoRequest as g7, type BuyerInfoUpdate as g8, type UpdateBuyerInfoResponse as g9, type ShippingAddressEdited as gA, type EmailEdited as gB, type PickupReadyEmailSent as gC, type OrderPartiallyPaid as gD, type OrderPending as gE, type OrderRejected as gF, type AddInternalActivityResponse as gG, type AddActivityRequest as gH, type PublicActivityContentOneOf as gI, type AddActivitiesRequest as gJ, type UpdateActivityRequest as gK, type DeleteActivityRequest as gL, type UpdateLineItemsDescriptionLinesRequest as gM, type LineItemUpdate as gN, type UpdateLineItemsDescriptionLinesResponse as gO, type MarkOrderAsSeenByHumanRequest as gP, type MarkOrderAsSeenByHumanResponse as gQ, type CancelOrderRequest as gR, type OrderCanceledEventOrderCanceled as gS, type UpdateOrderStatusRequest as gT, type MarkAsFulfilledRequest as gU, type MarkAsFulfilledResponse as gV, type FulfillmentStatusUpdated as gW, type BulkMarkAsFulfilledRequest as gX, type BulkMarkAsFulfilledResponse as gY, type BulkMarkAsFulfilledByFilterRequest as gZ, type BulkMarkAsFulfilledByFilterResponse as g_, type UpdateBuyerEmailRequest as ga, type UpdateBuyerEmailResponse as gb, type UpdateOrderShippingAddressRequest as gc, type UpdateOrderShippingAddressResponse as gd, type UpdateBillingContactDetailsRequest as ge, type UpdateBillingContactDetailsResponse as gf, type UpdateOrderLineItemRequest as gg, type UpdateOrderLineItemsRequest as gh, type MaskedOrderLineItem as gi, type UpdateOrderLineItemsResponse as gj, type AddInternalActivityRequest as gk, type InternalActivity as gl, type InternalActivityContentOneOf as gm, type OrderPlaced as gn, type OrderPaid as go, type OrderFulfilled as gp, type OrderNotFulfilled as gq, type OrderCanceled as gr, type DownloadLinkSent as gs, type TrackingNumberAdded as gt, type TrackingNumberEdited as gu, type TrackingLinkAdded as gv, type ShippingConfirmationEmailSent as gw, type InvoiceAdded as gx, type InvoiceSent as gy, type FulfillerEmailSent as gz, type GetRefundabilityStatusResponse as h, type Deposit as h$, type MarkAsUnfulfilledResponse as h0, type BulkMarkAsUnfulfilledRequest as h1, type BulkMarkAsUnfulfilledResponse as h2, type BulkMarkAsUnfulfilledByFilterRequest as h3, type BulkMarkAsUnfulfilledByFilterResponse as h4, type BulkSetBusinessLocationRequest as h5, type BulkSetBusinessLocationResponse as h6, type BulkSetBusinessLocationResult as h7, type V1MarkOrderAsPaidRequest as h8, type V1MarkOrderAsPaidResponse as h9, type AddressDescription as hA, type Phone as hB, type Company as hC, type CommonAddress as hD, type CommonAddressStreetOneOf as hE, type Subdivision as hF, type StandardDetails as hG, type InvoiceDates as hH, type LineItems as hI, type LineItem as hJ, type BigDecimalWrapper as hK, type LineItemTax as hL, type Source as hM, type LineItemMetaData as hN, type Locale as hO, type TotalPrice as hP, type ItemizedFee as hQ, type Discount as hR, type DiscountOneDiscountTypeOneOf as hS, type CalculatedTaxes as hT, type CalculatedTax as hU, type Payments as hV, type InvoicesPayment as hW, type MetaData as hX, type InvoiceDynamicPriceTotals as hY, type CustomFieldValue as hZ, type Value as h_, type PaymentStatusUpdated as ha, type V1BulkMarkOrdersAsPaidRequest as hb, type V1BulkMarkOrdersAsPaidResponse as hc, type V1CreatePaymentGatewayOrderRequest as hd, type V1CreatePaymentGatewayOrderResponse as he, type GetShipmentsRequest as hf, type GetShipmentsResponse as hg, type AggregateOrdersRequest as hh, type DecrementItemsQuantityRequest as hi, type DecrementData as hj, type DecrementItemsQuantityResponse as hk, type BulkUpdateOrderTagsRequest as hl, type BulkUpdateOrderTagsResult as hm, type Task as hn, type TaskKey as ho, type TaskAction as hp, type TaskActionActionOneOf as hq, type Complete as hr, type Cancel as hs, type Reschedule as ht, type InvoiceSentEvent as hu, type IdAndVersion as hv, type InvoiceFields as hw, type Customer as hx, type Email as hy, type QuotesAddress as hz, type PaymentCollectionCreatePaymentGatewayOrderOptions as i, preparePaymentCollection as i$, type BaseEventMetadata as i0, type EventMetadata as i1, type OrderSearchSpec as i2, type DescriptionLineTypeWithLiterals as i3, type ItemTypePresetWithLiterals as i4, type PaymentOptionTypeWithLiterals as i5, type JurisdictionTypeWithLiterals as i6, type SubscriptionFrequencyWithLiterals as i7, type AdjustmentTypeWithLiterals as i8, type TaxableAddressTypeWithLiterals as i9, type AuthorizationVoidStatusWithLiterals as iA, type ReasonWithLiterals as iB, type ActionTypeWithLiterals as iC, type ChargebackStatusWithLiterals as iD, type MembershipPaymentStatusWithLiterals as iE, type RefundStatusWithLiterals as iF, type VersioningModeWithLiterals as iG, type SortOrderWithLiterals as iH, type OrderApprovalStrategyWithLiterals as iI, type DeltaPaymentOptionTypeWithLiterals as iJ, type InventoryActionWithLiterals as iK, type PlacementWithLiterals as iL, type SubdivisionTypeWithLiterals as iM, type SourceTypeWithLiterals as iN, type CustomFieldGroupWithLiterals as iO, type ValueTypeWithLiterals as iP, type DepositTypeWithLiterals as iQ, type InvoiceStatusWithLiterals as iR, type CommonSearchWithEntityContext as iS, onOrderApproved as iT, onOrderUpdated as iU, onOrderCanceled as iV, onOrderCreated as iW, onOrderPaymentStatusUpdated as iX, importOrder as iY, setOrderNumberCounter as iZ, bulkDeleteImportedOrders as i_, type PaymentStatusWithLiterals as ia, type FulfillmentStatusWithLiterals as ib, type WeightUnitWithLiterals as ic, type VatTypeWithLiterals as id, type PickupMethodWithLiterals as ie, type DiscountTypeWithLiterals as ig, type DiscountReasonWithLiterals as ih, type LineItemQuantityChangeTypeWithLiterals as ii, type ActivityTypeWithLiterals as ij, type OrderActivityTypeEnumActivityTypeWithLiterals as ik, type AttributionSourceWithLiterals as il, type ChannelTypeWithLiterals as im, type OrderActionTypeWithLiterals as io, type WebhookIdentityTypeWithLiterals as ip, type PreviewEmailTypeWithLiterals as iq, type ScheduledActionWithLiterals as ir, type DurationUnitWithLiterals as is, type PaymentCollectabilityStatusWithLiterals as it, type RefundableStatusWithLiterals as iu, type NonRefundableReasonWithLiterals as iv, type ManuallyRefundableReasonWithLiterals as iw, type RestockTypeWithLiterals as ix, type TransactionStatusWithLiterals as iy, type AuthorizationCaptureStatusWithLiterals as iz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as j, getPaymentCollectabilityStatus as j0, recordManuallyCollectedPayment as j1, paymentCollectionMarkOrderAsPaid as j2, paymentCollectionBulkMarkOrdersAsPaid as j3, getRefundabilityStatus as j4, paymentCollectionCreatePaymentGatewayOrder as j5, chargeMemberships as j6, triggerRefund as j7, voidAuthorizedPayments as j8, captureAuthorizedPayments as j9, getOrder as ja, createOrder as jb, updateOrder as jc, bulkUpdateOrders as jd, commitDeltas as je, updateOrderLineItem as jf, addActivity as jg, addActivities as jh, updateActivity as ji, deleteActivity as jj, cancelOrder as jk, updateOrderStatus as jl, aggregateOrders as jm, bulkUpdateOrderTags as jn, type ChargeMembershipsOptions as k, type PaymentRefund as l, type TriggerRefundResponse as m, type TriggerRefundApplicationErrors as n, type VoidAuthorizedPaymentsApplicationErrors as o, type PaymentCapture as p, type CaptureAuthorizedPaymentsResponse as q, type CaptureAuthorizedPaymentsApplicationErrors as r, type GetOrderApplicationErrors as s, type OrderSearch as t, type SearchOrdersResponse as u, type CreateOrderOptions as v, type CreateOrderApplicationErrors as w, type UpdateOrderApplicationErrors as x, type MaskedOrder as y, type BulkUpdateOrdersOptions as z };
|
|
8346
|
+
export { type CancelOrderOptions as $, type BulkUpdateOrdersResponse as A, type BulkDeleteImportedOrdersOptions as B, type CreatePaymentGatewayOrderResponse as C, type CommitDeltasOptions as D, type CommitDeltasResponse as E, type CommitDeltasApplicationErrors as F, type GetPaymentCollectabilityStatusResponse as G, type UpdateOrderLineItemIdentifiers as H, type ImportOrderResponse as I, type UpdateOrderLineItem as J, type UpdateOrderLineItemResponse as K, type PublicActivity as L, type MarkOrderAsPaidResponse as M, type AddActivityResponse as N, type Order as O, type Price as P, type AddActivitiesOptions as Q, type RecordManuallyCollectedPaymentApplicationErrors as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type AddActivitiesResponse as W, type UpdateActivityIdentifiers as X, type UpdateActivityResponse as Y, type DeleteActivityIdentifiers as Z, type DeleteActivityResponse as _, type SetOrderNumberCounterResponse as a, InvoiceStatus as a$, type CancelOrderResponse as a0, type CancelOrderApplicationErrors as a1, type OrderStatusWithLiterals as a2, type UpdateOrderStatusResponse as a3, type UpdateOrderStatusApplicationErrors as a4, type AggregateOrdersOptions as a5, type AggregateOrdersResponse as a6, type BulkUpdateOrderTagsOptions as a7, type BulkUpdateOrderTagsResponse as a8, type OrderApprovedEnvelope as a9, PreviewEmailType as aA, ScheduledAction as aB, DurationUnit as aC, PaymentCollectabilityStatus as aD, RefundableStatus as aE, NonRefundableReason as aF, ManuallyRefundableReason as aG, RestockType as aH, TransactionStatus as aI, AuthorizationCaptureStatus as aJ, AuthorizationVoidStatus as aK, Reason as aL, ActionType as aM, ChargebackStatus as aN, MembershipPaymentStatus as aO, RefundStatus as aP, VersioningMode as aQ, SortOrder as aR, OrderApprovalStrategy as aS, DeltaPaymentOptionType as aT, InventoryAction as aU, Placement as aV, SubdivisionType as aW, SourceType as aX, CustomFieldGroup as aY, ValueType as aZ, DepositType as a_, type OrderUpdatedEnvelope as aa, type OrderCanceledEnvelope as ab, type OrderCreatedEnvelope as ac, type OrderPaymentStatusUpdatedEnvelope as ad, DescriptionLineType as ae, ItemTypePreset as af, PaymentOptionType as ag, JurisdictionType as ah, SubscriptionFrequency as ai, AdjustmentType as aj, TaxableAddressType as ak, PaymentStatus as al, FulfillmentStatus as am, WeightUnit as an, VatType as ao, PickupMethod as ap, OrderStatus as aq, DiscountType as ar, DiscountReason as as, LineItemQuantityChangeType as at, ActivityType as au, OrderActivityTypeEnumActivityType as av, AttributionSource as aw, ChannelType as ax, OrderActionType as ay, WebhookIdentityType as az, type BulkDeleteImportedOrdersResponse as b, type CustomActivity as b$, type OrderLineItem as b0, type ProductName as b1, type CatalogReference as b2, type DescriptionLine as b3, type DescriptionLineValueOneOf as b4, type DescriptionLineDescriptionLineValueOneOf as b5, type DescriptionLineName as b6, type PlainTextValue as b7, type Color as b8, type FocalPoint as b9, type AddressWithContact as bA, type Address as bB, type StreetAddress as bC, type AddressLocation as bD, type FullAddressContactDetails as bE, type VatId as bF, type V1ShippingInformation as bG, type DeliveryLogistics as bH, type DeliveryLogisticsAddressOneOf as bI, type PickupDetails as bJ, type PickupAddress as bK, type DeliveryTimeSlot as bL, type ShippingPrice as bM, type ShippingRegion as bN, type TaxSummary as bO, type OrderTaxInfo as bP, type OrderTaxBreakdown as bQ, type AppliedDiscount as bR, type AppliedDiscountDiscountSourceOneOf as bS, type Coupon as bT, type MerchantDiscount as bU, type MerchantDiscountMerchantDiscountReasonOneOf as bV, type DiscountRule as bW, type DiscountRuleName as bX, type LineItemDiscount as bY, type Activity as bZ, type ActivityContentOneOf as b_, type PhysicalProperties as ba, type ItemType as bb, type ItemTypeItemTypeDataOneOf as bc, type ItemTaxFullDetails as bd, type LineItemTaxInfo as be, type LineItemTaxBreakdown as bf, type DigitalFile as bg, type SubscriptionInfo as bh, type SubscriptionTitle as bi, type SubscriptionDescription as bj, type SubscriptionSettings as bk, type FreeTrialPeriod as bl, type BillingAdjustment as bm, type BillingAdjustmentPriceSummary as bn, type PriceDescription as bo, type LocationAndQuantity as bp, type TaxableAddress as bq, type TaxableAddressTaxableAddressDataOneOf as br, type ExtendedFields as bs, type ModifierGroup as bt, type TranslatableString as bu, type ItemModifier as bv, type BuyerInfo as bw, type BuyerInfoIdOneOf as bx, type CurrencyConversionDetails as by, type PriceSummary as bz, type PreparePaymentCollectionOptions as c, type OrderSettings as c$, type MerchantComment as c0, type OrderRefunded as c1, type OrderCreatedFromExchange as c2, type NewExchangeOrderCreated as c3, type LineItemExchangeData as c4, type DraftOrderChangesApplied as c5, type OrderChange as c6, type OrderChangeValueOneOf as c7, type LineItemChanges as c8, type LineItemQuantityChange as c9, type PaymentPendingPaymentDetailsOneOf as cA, type RegularPayment as cB, type RegularPaymentPaymentMethodDetailsOneOf as cC, type CreditCardDetails as cD, type PaymentCanceled as cE, type PaymentCanceledPaymentDetailsOneOf as cF, type PaymentDeclined as cG, type PaymentDeclinedPaymentDetailsOneOf as cH, type ReceiptCreated as cI, type ReceiptCreatedReceiptInfoOneOf as cJ, type WixReceipt as cK, type ExternalReceipt as cL, type ReceiptSent as cM, type ReceiptSentReceiptInfoOneOf as cN, type ChargebackCreated as cO, type ChargebackReversed as cP, type CreatedBy as cQ, type CreatedByStringOneOf as cR, type ChannelInfo as cS, type CustomField as cT, type BalanceSummary as cU, type Balance as cV, type AdditionalFee as cW, type FulfillmentStatusesAggregate as cX, type Tags as cY, type TagList as cZ, type Location as c_, type LineItemPriceChange as ca, type LineItemProductNameChange as cb, type LineItemDescriptionLineChange as cc, type LineItemModifiersChange as cd, type ManagedLineItem as ce, type ManagedDiscount as cf, type TranslatedValue as cg, type LineItemAmount as ch, type ManagedAdditionalFee as ci, type TotalPriceChange as cj, type ShippingInformationChange as ck, type ShippingInformation as cl, type SavedPaymentMethod as cm, type AuthorizedPaymentCreated as cn, type AuthorizedPaymentCaptured as co, type AuthorizedPaymentVoided as cp, type RefundInitiated as cq, type RefundedPayment as cr, type RefundedPaymentKindOneOf as cs, type RegularPaymentRefund as ct, type GiftCardPaymentRefund as cu, type MembershipPaymentRefund as cv, type PaymentRefunded as cw, type PaymentRefundFailed as cx, type RefundedAsStoreCredit as cy, type PaymentPending as cz, type PreparePaymentCollectionResponse as d, type PreviewShippingConfirmationEmailResponse as d$, type OrderSettingsAllowedActionsOneOf as d0, type CustomAllowedActions as d1, type OrderApproved as d2, type OrdersExperiments as d3, type OrderRejectedEventOrderRejected as d4, type OrderItemsRestocked as d5, type V1RestockItem as d6, type OrderImported as d7, type ImportedOrderDeleted as d8, type ImportOrderRequest as d9, type SendMerchantOrderReceivedNotificationResponse as dA, type SendCancelRefundEmailRequest as dB, type SendCancelRefundEmailResponse as dC, type SendRefundEmailRequest as dD, type SendRefundEmailResponse as dE, type SendMerchantOrderReceivedPushRequest as dF, type SendMerchantOrderReceivedPushResponse as dG, type PreviewEmailByTypeRequest as dH, type PreviewEmailByTypeResponse as dI, type PreviewRefundEmailRequest as dJ, type RefundDetails as dK, type RefundItem as dL, type LineItemRefund as dM, type AdditionalFeeRefund as dN, type ShippingRefund as dO, type PreviewRefundEmailResponse as dP, type PreviewCancelEmailRequest as dQ, type PreviewCancelEmailResponse as dR, type PreviewCancelRefundEmailRequest as dS, type PreviewCancelRefundEmailResponse as dT, type PreviewBuyerPaymentsReceivedEmailRequest as dU, type PreviewBuyerPaymentsReceivedEmailResponse as dV, type PreviewBuyerConfirmationEmailRequest as dW, type PreviewBuyerConfirmationEmailResponse as dX, type PreviewBuyerPickupConfirmationEmailRequest as dY, type PreviewBuyerPickupConfirmationEmailResponse as dZ, type PreviewShippingConfirmationEmailRequest as d_, type SetOrderNumberCounterRequest as da, type BulkDeleteImportedOrdersRequest as db, type DomainEvent as dc, type DomainEventBodyOneOf as dd, type EntityCreatedEvent as de, type RestoreInfo as df, type EntityUpdatedEvent as dg, type EntityDeletedEvent as dh, type ActionEvent as di, type MessageEnvelope as dj, type IdentificationData as dk, type IdentificationDataIdOneOf as dl, type SendBuyerConfirmationEmailRequest as dm, type SendBuyerConfirmationEmailResponse as dn, type SendBuyerPaymentsReceivedEmailRequest as dp, type SendBuyerPaymentsReceivedEmailResponse as dq, type SendBuyerPickupConfirmationEmailRequest as dr, type SendBuyerPickupConfirmationEmailResponse as ds, type BulkSendBuyerPickupConfirmationEmailsRequest as dt, type BulkSendBuyerPickupConfirmationEmailsResponse as du, type SendBuyerShippingConfirmationEmailRequest as dv, type SendBuyerShippingConfirmationEmailResponse as dw, type BulkSendBuyerShippingConfirmationEmailsRequest as dx, type BulkSendBuyerShippingConfirmationEmailsResponse as dy, type SendMerchantOrderReceivedNotificationRequest as dz, type PreparePaymentCollectionApplicationErrors as e, type InternalDocument as e$, type PreviewResendDownloadLinksEmailRequest as e0, type PreviewResendDownloadLinksEmailResponse as e1, type Empty as e2, type PreparePaymentCollectionRequest as e3, type RedirectUrls as e4, type DelayedCaptureSettings as e5, type Duration as e6, type GetPaymentCollectabilityStatusRequest as e7, type RecordManuallyCollectedPaymentRequest as e8, type RecordManuallyCollectedPaymentResponse as e9, type CreditCardPaymentMethodDetails as eA, type AuthorizationDetails as eB, type AuthorizationCapture as eC, type AuthorizationActionFailureDetails as eD, type AuthorizationVoid as eE, type V1ScheduledAction as eF, type Chargeback as eG, type GiftCardPaymentDetails as eH, type MembershipPaymentDetails as eI, type WixReceiptInfo as eJ, type ExternalReceiptInfo as eK, type Refund as eL, type RefundTransaction as eM, type RefundStatusInfo as eN, type AggregatedRefundSummary as eO, type RefundItemsBreakdown as eP, type LineItemRefundSummary as eQ, type CalculateRefundRequest as eR, type CalculateRefundItemRequest as eS, type CalculateRefundResponse as eT, type CalculateRefundItemResponse as eU, type VoidAuthorizedPaymentsRequest as eV, type CaptureAuthorizedPaymentsRequest as eW, type ChargeSavedPaymentMethodRequest as eX, type ChargeSavedPaymentMethodResponse as eY, type UpdateInternalDocumentsEvent as eZ, type UpdateInternalDocumentsEventOperationOneOf as e_, type MarkOrderAsPaidRequest as ea, type BulkMarkOrdersAsPaidRequest as eb, type BulkOrderResult as ec, type ItemMetadata as ed, type ApplicationError as ee, type BulkActionMetadata as ef, type GetRefundabilityStatusRequest as eg, type Refundability as eh, type RefundabilityAdditionalRefundabilityInfoOneOf as ei, type CreatePaymentGatewayOrderRequest as ej, type ChargedBy as ek, type ChargeMembershipsRequest as el, type MembershipChargeItem as em, type MembershipName as en, type ServiceProperties as eo, type ChargeMembershipsResponse as ep, type TriggerRefundRequest as eq, type RefundSideEffects as er, type RestockInfo as es, type RestockItem as et, type OrderTransactions as eu, type Payment as ev, type PaymentPaymentDetailsOneOf as ew, type PaymentReceiptInfoOneOf as ex, type RegularPaymentDetails as ey, type RegularPaymentDetailsPaymentMethodDetailsOneOf as ez, type PaymentCollectionMarkOrderAsPaidApplicationErrors as f, type BulkArchiveOrdersRequest as f$, type InternalDocumentUpdateOperation as f0, type DeleteByIdsOperation as f1, type DeleteByFilterOperation as f2, type InternalDocumentUpdateByFilterOperation as f3, type InternalUpdateExistingOperation as f4, type VersionedDocumentUpdateOperation as f5, type VersionedDeleteByIdsOperation as f6, type VersionedDocumentId as f7, type TriggerReindexRequest as f8, type TriggerReindexResponse as f9, type CreateOrderResponse as fA, type UpdateOrderRequest as fB, type UpdateOrderResponse as fC, type BulkUpdateOrdersRequest as fD, type CommitDeltasRequest as fE, type DraftOrderDiffs as fF, type DraftOrderDiffsShippingUpdateInfoOneOf as fG, type DraftOrderDiffsBuyerUpdateInfoOneOf as fH, type DraftOrderDiffsBillingUpdateInfoOneOf as fI, type DraftOrderDiffsRecipientUpdateInfoOneOf as fJ, type V1LineItemDelta as fK, type V1LineItemDeltaDeltaOneOf as fL, type OrderLineItemChangedDetails as fM, type ItemChangedDetails as fN, type AppliedDiscountDelta as fO, type AppliedDiscountDeltaDeltaOneOf as fP, type AdditionalFeeDelta as fQ, type AdditionalFeeDeltaDeltaOneOf as fR, type DraftOrderCommitSettings as fS, type InventoryUpdateDetails as fT, type OrderDeltasCommitted as fU, type CommittedDiffs as fV, type CommittedDiffsShippingUpdateInfoOneOf as fW, type LineItemDelta as fX, type LineItemDeltaDeltaOneOf as fY, type ArchiveOrderRequest as fZ, type ArchiveOrderResponse as f_, type BatchOfTriggerReindexOrderRequest as fa, type TriggerReindexOrderRequest as fb, type FormInfo as fc, type FormIdentifier as fd, type DiffmatokyPayload as fe, type ErrorInformation as ff, type GetOrderRequest as fg, type GetOrderResponse as fh, type InternalQueryOrdersRequest as fi, type PlatformQuery as fj, type PlatformQueryPagingMethodOneOf as fk, type Sorting as fl, type PlatformPaging as fm, type CursorPaging as fn, type InternalQueryOrdersResponse as fo, type PlatformPagingMetadata as fp, type Cursors as fq, type QueryOrderRequest as fr, type QueryOrderResponse as fs, type SearchOrdersRequest as ft, type CursorSearch as fu, type CursorSearchPagingMethodOneOf as fv, type CursorPagingMetadata as fw, type CreateOrderRequest as fx, type OrderCreationSettings as fy, type OrderCreateNotifications as fz, type BulkMarkOrdersAsPaidResponse as g, type BulkMarkAsFulfilledByFilterRequest as g$, type BulkArchiveOrdersResponse as g0, type BulkArchiveOrdersByFilterRequest as g1, type BulkArchiveOrdersByFilterResponse as g2, type UnArchiveOrderRequest as g3, type UnArchiveOrderResponse as g4, type BulkUnArchiveOrdersRequest as g5, type BulkUnArchiveOrdersResponse as g6, type BulkUnArchiveOrdersByFilterRequest as g7, type BulkUnArchiveOrdersByFilterResponse as g8, type UpdateBuyerInfoRequest as g9, type InvoiceSent as gA, type FulfillerEmailSent as gB, type ShippingAddressEdited as gC, type EmailEdited as gD, type PickupReadyEmailSent as gE, type OrderPartiallyPaid as gF, type OrderPending as gG, type OrderRejected as gH, type AddInternalActivityResponse as gI, type AddActivityRequest as gJ, type PublicActivityContentOneOf as gK, type AddActivitiesRequest as gL, type UpdateActivityRequest as gM, type DeleteActivityRequest as gN, type UpdateLineItemsDescriptionLinesRequest as gO, type LineItemUpdate as gP, type UpdateLineItemsDescriptionLinesResponse as gQ, type MarkOrderAsSeenByHumanRequest as gR, type MarkOrderAsSeenByHumanResponse as gS, type CancelOrderRequest as gT, type OrderCanceledEventOrderCanceled as gU, type UpdateOrderStatusRequest as gV, type MarkAsFulfilledRequest as gW, type MarkAsFulfilledResponse as gX, type FulfillmentStatusUpdated as gY, type BulkMarkAsFulfilledRequest as gZ, type BulkMarkAsFulfilledResponse as g_, type BuyerInfoUpdate as ga, type UpdateBuyerInfoResponse as gb, type UpdateBuyerEmailRequest as gc, type UpdateBuyerEmailResponse as gd, type UpdateOrderShippingAddressRequest as ge, type UpdateOrderShippingAddressResponse as gf, type UpdateBillingContactDetailsRequest as gg, type UpdateBillingContactDetailsResponse as gh, type UpdateOrderLineItemRequest as gi, type UpdateOrderLineItemsRequest as gj, type MaskedOrderLineItem as gk, type UpdateOrderLineItemsResponse as gl, type AddInternalActivityRequest as gm, type InternalActivity as gn, type InternalActivityContentOneOf as go, type OrderPlaced as gp, type OrderPaid as gq, type OrderFulfilled as gr, type OrderNotFulfilled as gs, type OrderCanceled as gt, type DownloadLinkSent as gu, type TrackingNumberAdded as gv, type TrackingNumberEdited as gw, type TrackingLinkAdded as gx, type ShippingConfirmationEmailSent as gy, type InvoiceAdded as gz, type GetRefundabilityStatusResponse as h, type CustomFieldValue as h$, type BulkMarkAsFulfilledByFilterResponse as h0, type MarkAsUnfulfilledRequest as h1, type MarkAsUnfulfilledResponse as h2, type BulkMarkAsUnfulfilledRequest as h3, type BulkMarkAsUnfulfilledResponse as h4, type BulkMarkAsUnfulfilledByFilterRequest as h5, type BulkMarkAsUnfulfilledByFilterResponse as h6, type BulkSetBusinessLocationRequest as h7, type BulkSetBusinessLocationResponse as h8, type BulkSetBusinessLocationResult as h9, type Email as hA, type QuotesAddress as hB, type AddressDescription as hC, type Phone as hD, type Company as hE, type CommonAddress as hF, type CommonAddressStreetOneOf as hG, type Subdivision as hH, type StandardDetails as hI, type InvoiceDates as hJ, type LineItems as hK, type LineItem as hL, type BigDecimalWrapper as hM, type LineItemTax as hN, type Source as hO, type LineItemMetaData as hP, type Locale as hQ, type TotalPrice as hR, type ItemizedFee as hS, type Discount as hT, type DiscountOneDiscountTypeOneOf as hU, type CalculatedTaxes as hV, type CalculatedTax as hW, type Payments as hX, type InvoicesPayment as hY, type MetaData as hZ, type InvoiceDynamicPriceTotals as h_, type V1MarkOrderAsPaidRequest as ha, type V1MarkOrderAsPaidResponse as hb, type PaymentStatusUpdated as hc, type V1BulkMarkOrdersAsPaidRequest as hd, type V1BulkMarkOrdersAsPaidResponse as he, type V1CreatePaymentGatewayOrderRequest as hf, type V1CreatePaymentGatewayOrderResponse as hg, type GetShipmentsRequest as hh, type GetShipmentsResponse as hi, type AggregateOrdersRequest as hj, type DecrementItemsQuantityRequest as hk, type DecrementData as hl, type DecrementItemsQuantityResponse as hm, type BulkUpdateOrderTagsRequest as hn, type BulkUpdateOrderTagsResult as ho, type Task as hp, type TaskKey as hq, type TaskAction as hr, type TaskActionActionOneOf as hs, type Complete as ht, type Cancel as hu, type Reschedule as hv, type InvoiceSentEvent as hw, type IdAndVersion as hx, type InvoiceFields as hy, type Customer as hz, type PaymentCollectionCreatePaymentGatewayOrderOptions as i, setOrderNumberCounter as i$, type Value as i0, type Deposit as i1, type BaseEventMetadata as i2, type EventMetadata as i3, type OrderSearchSpec as i4, type DescriptionLineTypeWithLiterals as i5, type ItemTypePresetWithLiterals as i6, type PaymentOptionTypeWithLiterals as i7, type JurisdictionTypeWithLiterals as i8, type SubscriptionFrequencyWithLiterals as i9, type TransactionStatusWithLiterals as iA, type AuthorizationCaptureStatusWithLiterals as iB, type AuthorizationVoidStatusWithLiterals as iC, type ReasonWithLiterals as iD, type ActionTypeWithLiterals as iE, type ChargebackStatusWithLiterals as iF, type MembershipPaymentStatusWithLiterals as iG, type RefundStatusWithLiterals as iH, type VersioningModeWithLiterals as iI, type SortOrderWithLiterals as iJ, type OrderApprovalStrategyWithLiterals as iK, type DeltaPaymentOptionTypeWithLiterals as iL, type InventoryActionWithLiterals as iM, type PlacementWithLiterals as iN, type SubdivisionTypeWithLiterals as iO, type SourceTypeWithLiterals as iP, type CustomFieldGroupWithLiterals as iQ, type ValueTypeWithLiterals as iR, type DepositTypeWithLiterals as iS, type InvoiceStatusWithLiterals as iT, type CommonSearchWithEntityContext as iU, onOrderApproved as iV, onOrderUpdated as iW, onOrderCanceled as iX, onOrderCreated as iY, onOrderPaymentStatusUpdated as iZ, importOrder as i_, type AdjustmentTypeWithLiterals as ia, type TaxableAddressTypeWithLiterals as ib, type PaymentStatusWithLiterals as ic, type FulfillmentStatusWithLiterals as id, type WeightUnitWithLiterals as ie, type VatTypeWithLiterals as ig, type PickupMethodWithLiterals as ih, type DiscountTypeWithLiterals as ii, type DiscountReasonWithLiterals as ij, type LineItemQuantityChangeTypeWithLiterals as ik, type ActivityTypeWithLiterals as il, type OrderActivityTypeEnumActivityTypeWithLiterals as im, type AttributionSourceWithLiterals as io, type ChannelTypeWithLiterals as ip, type OrderActionTypeWithLiterals as iq, type WebhookIdentityTypeWithLiterals as ir, type PreviewEmailTypeWithLiterals as is, type ScheduledActionWithLiterals as it, type DurationUnitWithLiterals as iu, type PaymentCollectabilityStatusWithLiterals as iv, type RefundableStatusWithLiterals as iw, type NonRefundableReasonWithLiterals as ix, type ManuallyRefundableReasonWithLiterals as iy, type RestockTypeWithLiterals as iz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as j, bulkDeleteImportedOrders as j0, preparePaymentCollection as j1, getPaymentCollectabilityStatus as j2, recordManuallyCollectedPayment as j3, paymentCollectionMarkOrderAsPaid as j4, paymentCollectionBulkMarkOrdersAsPaid as j5, getRefundabilityStatus as j6, paymentCollectionCreatePaymentGatewayOrder as j7, chargeMemberships as j8, triggerRefund as j9, voidAuthorizedPayments as ja, captureAuthorizedPayments as jb, getOrder as jc, createOrder as jd, updateOrder as je, bulkUpdateOrders as jf, commitDeltas as jg, updateOrderLineItem as jh, addActivity as ji, addActivities as jj, updateActivity as jk, deleteActivity as jl, cancelOrder as jm, updateOrderStatus as jn, aggregateOrders as jo, bulkUpdateOrderTags as jp, type ChargeMembershipsOptions as k, type PaymentRefund as l, type TriggerRefundResponse as m, type TriggerRefundApplicationErrors as n, type VoidAuthorizedPaymentsApplicationErrors as o, type PaymentCapture as p, type CaptureAuthorizedPaymentsResponse as q, type CaptureAuthorizedPaymentsApplicationErrors as r, type GetOrderApplicationErrors as s, type OrderSearch as t, type SearchOrdersResponse as u, type CreateOrderOptions as v, type CreateOrderApplicationErrors as w, type UpdateOrderApplicationErrors as x, type MaskedOrder as y, type BulkUpdateOrdersOptions as z };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { O as Order, I as ImportOrderResponse, S as SetOrderNumberCounterOptions, a as SetOrderNumberCounterResponse, B as BulkDeleteImportedOrdersOptions, b as BulkDeleteImportedOrdersResponse, P as Price, c as PreparePaymentCollectionOptions, d as PreparePaymentCollectionResponse, e as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, R as RecordManuallyCollectedPaymentApplicationErrors, M as MarkOrderAsPaidResponse, f as PaymentCollectionMarkOrderAsPaidApplicationErrors, g as BulkMarkOrdersAsPaidResponse, h as GetRefundabilityStatusResponse, i as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, j as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, k as ChargeMembershipsOptions, l as PaymentRefund, T as TriggerRefundOptions, m as TriggerRefundResponse, n as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, o as VoidAuthorizedPaymentsApplicationErrors, p as PaymentCapture, q as CaptureAuthorizedPaymentsResponse, r as CaptureAuthorizedPaymentsApplicationErrors, s as GetOrderApplicationErrors, t as OrderSearch, u as SearchOrdersResponse, v as CreateOrderOptions, w as CreateOrderApplicationErrors, U as UpdateOrder, x as UpdateOrderApplicationErrors, y as MaskedOrder, z as BulkUpdateOrdersOptions, A as BulkUpdateOrdersResponse, D as CommitDeltasOptions, E as CommitDeltasResponse, F as CommitDeltasApplicationErrors, H as UpdateOrderLineItemIdentifiers, J as UpdateOrderLineItem, K as UpdateOrderLineItemResponse, L as PublicActivity, N as AddActivityResponse, Q as AddActivitiesOptions, W as AddActivitiesResponse, X as UpdateActivityIdentifiers, Y as UpdateActivityResponse, Z as DeleteActivityIdentifiers, _ as DeleteActivityResponse, $ as CancelOrderOptions, a0 as CancelOrderResponse, a1 as CancelOrderApplicationErrors, a2 as OrderStatusWithLiterals, a3 as UpdateOrderStatusResponse, a4 as UpdateOrderStatusApplicationErrors, a5 as AggregateOrdersOptions, a6 as AggregateOrdersResponse, a7 as BulkUpdateOrderTagsOptions, a8 as BulkUpdateOrderTagsResponse, a9 as OrderApprovedEnvelope, aa as OrderUpdatedEnvelope, ab as OrderCanceledEnvelope, ac as OrderCreatedEnvelope, ad as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-
|
|
3
|
-
export { di as ActionEvent, aM as ActionType, iC as ActionTypeWithLiterals, bZ as Activity, b_ as ActivityContentOneOf, au as ActivityType, ij as ActivityTypeWithLiterals, gJ as AddActivitiesRequest, gH as AddActivityRequest, gk as AddInternalActivityRequest, gG as AddInternalActivityResponse, cW as AdditionalFee, fO as AdditionalFeeDelta, fP as AdditionalFeeDeltaDeltaOneOf, dN as AdditionalFeeRefund, bB as Address, hA as AddressDescription, bD as AddressLocation, bA as AddressWithContact, aj as AdjustmentType, i8 as AdjustmentTypeWithLiterals, hh as AggregateOrdersRequest, eO as AggregatedRefundSummary, ee as ApplicationError, bR as AppliedDiscount, fM as AppliedDiscountDelta, fN as AppliedDiscountDeltaDeltaOneOf, bS as AppliedDiscountDiscountSourceOneOf, fX as ArchiveOrderRequest, fY as ArchiveOrderResponse, aw as AttributionSource, il as AttributionSourceWithLiterals, eD as AuthorizationActionFailureDetails, eC as AuthorizationCapture, aJ as AuthorizationCaptureStatus, iz as AuthorizationCaptureStatusWithLiterals, eB as AuthorizationDetails, eE as AuthorizationVoid, aK as AuthorizationVoidStatus, iA as AuthorizationVoidStatusWithLiterals, co as AuthorizedPaymentCaptured, cn as AuthorizedPaymentCreated, cp as AuthorizedPaymentVoided, cV as Balance, cU as BalanceSummary, i0 as BaseEventMetadata, fa as BatchOfTriggerReindexOrderRequest, hK as BigDecimalWrapper, bm as BillingAdjustment, bn as BillingAdjustmentPriceSummary, ef as BulkActionMetadata, f$ as BulkArchiveOrdersByFilterRequest, g0 as BulkArchiveOrdersByFilterResponse, fZ as BulkArchiveOrdersRequest, f_ as BulkArchiveOrdersResponse, db as BulkDeleteImportedOrdersRequest, gZ as BulkMarkAsFulfilledByFilterRequest, g_ as BulkMarkAsFulfilledByFilterResponse, gX as BulkMarkAsFulfilledRequest, gY as BulkMarkAsFulfilledResponse, h3 as BulkMarkAsUnfulfilledByFilterRequest, h4 as BulkMarkAsUnfulfilledByFilterResponse, h1 as BulkMarkAsUnfulfilledRequest, h2 as BulkMarkAsUnfulfilledResponse, eb as BulkMarkOrdersAsPaidRequest, ec as BulkOrderResult, dt as BulkSendBuyerPickupConfirmationEmailsRequest, du as BulkSendBuyerPickupConfirmationEmailsResponse, dx as BulkSendBuyerShippingConfirmationEmailsRequest, dy as BulkSendBuyerShippingConfirmationEmailsResponse, h5 as BulkSetBusinessLocationRequest, h6 as BulkSetBusinessLocationResponse, h7 as BulkSetBusinessLocationResult, g5 as BulkUnArchiveOrdersByFilterRequest, g6 as BulkUnArchiveOrdersByFilterResponse, g3 as BulkUnArchiveOrdersRequest, g4 as BulkUnArchiveOrdersResponse, hl as BulkUpdateOrderTagsRequest, hm as BulkUpdateOrderTagsResult, fB as BulkUpdateOrdersRequest, bw as BuyerInfo, bx as BuyerInfoIdOneOf, g8 as BuyerInfoUpdate, eS as CalculateRefundItemRequest, eU as CalculateRefundItemResponse, eR as CalculateRefundRequest, eT as CalculateRefundResponse, hU as CalculatedTax, hT as CalculatedTaxes, hs as Cancel, gR as CancelOrderRequest, eW as CaptureAuthorizedPaymentsRequest, b2 as CatalogReference, cS as ChannelInfo, ax as ChannelType, im as ChannelTypeWithLiterals, el as ChargeMembershipsRequest, ep as ChargeMembershipsResponse, eX as ChargeSavedPaymentMethodRequest, eY as ChargeSavedPaymentMethodResponse, eG as Chargeback, cO as ChargebackCreated, cP as ChargebackReversed, aN as ChargebackStatus, iD as ChargebackStatusWithLiterals, ek as ChargedBy, b8 as Color, fC as CommitDeltasRequest, fT as CommittedDiffs, fU as CommittedDiffsShippingUpdateInfoOneOf, hD as CommonAddress, hE as CommonAddressStreetOneOf, iS as CommonSearchWithEntityContext, hC as Company, hr as Complete, bT as Coupon, fv as CreateOrderRequest, fy as CreateOrderResponse, ej as CreatePaymentGatewayOrderRequest, cQ as CreatedBy, cR as CreatedByStringOneOf, cD as CreditCardDetails, eA as CreditCardPaymentMethodDetails, by as CurrencyConversionDetails, fl as CursorPaging, fu as CursorPagingMetadata, fs as CursorSearch, ft as CursorSearchPagingMethodOneOf, fo as Cursors, b$ as CustomActivity, d1 as CustomAllowedActions, cT as CustomField, aY as CustomFieldGroup, iO as CustomFieldGroupWithLiterals, hZ as CustomFieldValue, hx as Customer, hj as DecrementData, hi as DecrementItemsQuantityRequest, hk as DecrementItemsQuantityResponse, e5 as DelayedCaptureSettings, gL as DeleteActivityRequest, f2 as DeleteByFilterOperation, f1 as DeleteByIdsOperation, bH as DeliveryLogistics, bI as DeliveryLogisticsAddressOneOf, bL as DeliveryTimeSlot, aT as DeltaPaymentOptionType, iJ as DeltaPaymentOptionTypeWithLiterals, h$ as Deposit, a_ as DepositType, iQ as DepositTypeWithLiterals, b3 as DescriptionLine, b5 as DescriptionLineDescriptionLineValueOneOf, b6 as DescriptionLineName, ae as DescriptionLineType, i3 as DescriptionLineTypeWithLiterals, b4 as DescriptionLineValueOneOf, fc as DiffmatokyPayload, bg as DigitalFile, hR as Discount, hS as DiscountOneDiscountTypeOneOf, as as DiscountReason, ih as DiscountReasonWithLiterals, bW as DiscountRule, bX as DiscountRuleName, ar as DiscountType, ig as DiscountTypeWithLiterals, dc as DomainEvent, dd as DomainEventBodyOneOf, gs as DownloadLinkSent, c5 as DraftOrderChangesApplied, fQ as DraftOrderCommitSettings, fD as DraftOrderDiffs, fG as DraftOrderDiffsBillingUpdateInfoOneOf, fF as DraftOrderDiffsBuyerUpdateInfoOneOf, fH as DraftOrderDiffsRecipientUpdateInfoOneOf, fE as DraftOrderDiffsShippingUpdateInfoOneOf, e6 as Duration, aC as DurationUnit, is as DurationUnitWithLiterals, hy as Email, gB as EmailEdited, e2 as Empty, de as EntityCreatedEvent, dh as EntityDeletedEvent, dg as EntityUpdatedEvent, fd as ErrorInformation, i1 as EventMetadata, bs as ExtendedFields, cL as ExternalReceipt, eK as ExternalReceiptInfo, b9 as FocalPoint, bl as FreeTrialPeriod, gz as FulfillerEmailSent, am as FulfillmentStatus, gW as FulfillmentStatusUpdated, ib as FulfillmentStatusWithLiterals, cX as FulfillmentStatusesAggregate, bE as FullAddressContactDetails, fe as GetOrderRequest, ff as GetOrderResponse, e7 as GetPaymentCollectabilityStatusRequest, eg as GetRefundabilityStatusRequest, hf as GetShipmentsRequest, hg as GetShipmentsResponse, eH as GiftCardPaymentDetails, cu as GiftCardPaymentRefund, hv as IdAndVersion, dk as IdentificationData, dl as IdentificationDataIdOneOf, d9 as ImportOrderRequest, d8 as ImportedOrderDeleted, gl as InternalActivity, gm as InternalActivityContentOneOf, e$ as InternalDocument, f3 as InternalDocumentUpdateByFilterOperation, f0 as InternalDocumentUpdateOperation, fg as InternalQueryOrdersRequest, fm as InternalQueryOrdersResponse, f4 as InternalUpdateExistingOperation, aU as InventoryAction, iK as InventoryActionWithLiterals, fR as InventoryUpdateDetails, gx as InvoiceAdded, hH as InvoiceDates, hY as InvoiceDynamicPriceTotals, hw as InvoiceFields, gy as InvoiceSent, hu as InvoiceSentEvent, a$ as InvoiceStatus, iR as InvoiceStatusWithLiterals, hW as InvoicesPayment, fL as ItemChangedDetails, ed as ItemMetadata, bv as ItemModifier, bd as ItemTaxFullDetails, bb as ItemType, bc as ItemTypeItemTypeDataOneOf, af as ItemTypePreset, i4 as ItemTypePresetWithLiterals, hQ as ItemizedFee, ah as JurisdictionType, i6 as JurisdictionTypeWithLiterals, hJ as LineItem, ch as LineItemAmount, c8 as LineItemChanges, fV as LineItemDelta, fW as LineItemDeltaDeltaOneOf, cc as LineItemDescriptionLineChange, bY as LineItemDiscount, c4 as LineItemExchangeData, hN as LineItemMetaData, cd as LineItemModifiersChange, ca as LineItemPriceChange, cb as LineItemProductNameChange, c9 as LineItemQuantityChange, at as LineItemQuantityChangeType, ii as LineItemQuantityChangeTypeWithLiterals, dM as LineItemRefund, eQ as LineItemRefundSummary, hL as LineItemTax, bf as LineItemTaxBreakdown, be as LineItemTaxInfo, gN as LineItemUpdate, hI as LineItems, hO as Locale, c_ as Location, bp as LocationAndQuantity, ci as ManagedAdditionalFee, cf as ManagedDiscount, ce as ManagedLineItem, aG as ManuallyRefundableReason, iw as ManuallyRefundableReasonWithLiterals, gU as MarkAsFulfilledRequest, gV as MarkAsFulfilledResponse, g$ as MarkAsUnfulfilledRequest, h0 as MarkAsUnfulfilledResponse, ea as MarkOrderAsPaidRequest, gP as MarkOrderAsSeenByHumanRequest, gQ as MarkOrderAsSeenByHumanResponse, gi as MaskedOrderLineItem, em as MembershipChargeItem, en as MembershipName, eI as MembershipPaymentDetails, cv as MembershipPaymentRefund, aO as MembershipPaymentStatus, iE as MembershipPaymentStatusWithLiterals, c0 as MerchantComment, bU as MerchantDiscount, bV as MerchantDiscountMerchantDiscountReasonOneOf, dj as MessageEnvelope, hX as MetaData, bt as ModifierGroup, c3 as NewExchangeOrderCreated, aF as NonRefundableReason, iv as NonRefundableReasonWithLiterals, ay as OrderActionType, io as OrderActionTypeWithLiterals, av as OrderActivityTypeEnumActivityType, ik as OrderActivityTypeEnumActivityTypeWithLiterals, aS as OrderApprovalStrategy, iI as OrderApprovalStrategyWithLiterals, d2 as OrderApproved, gr as OrderCanceled, gS as OrderCanceledEventOrderCanceled, c6 as OrderChange, c7 as OrderChangeValueOneOf, fx as OrderCreateNotifications, c2 as OrderCreatedFromExchange, fw as OrderCreationSettings, fS as OrderDeltasCommitted, gp as OrderFulfilled, d7 as OrderImported, d5 as OrderItemsRestocked, b0 as OrderLineItem, fK as OrderLineItemChangedDetails, gq as OrderNotFulfilled, go as OrderPaid, gD as OrderPartiallyPaid, gE as OrderPending, gn as OrderPlaced, c1 as OrderRefunded, gF as OrderRejected, d4 as OrderRejectedEventOrderRejected, i2 as OrderSearchSpec, c$ as OrderSettings, d0 as OrderSettingsAllowedActionsOneOf, aq as OrderStatus, bQ as OrderTaxBreakdown, bP as OrderTaxInfo, eu as OrderTransactions, d3 as OrdersExperiments, ev as Payment, cE as PaymentCanceled, cF as PaymentCanceledPaymentDetailsOneOf, aD as PaymentCollectabilityStatus, it as PaymentCollectabilityStatusWithLiterals, cG as PaymentDeclined, cH as PaymentDeclinedPaymentDetailsOneOf, ag as PaymentOptionType, i5 as PaymentOptionTypeWithLiterals, ew as PaymentPaymentDetailsOneOf, cz as PaymentPending, cA as PaymentPendingPaymentDetailsOneOf, ex as PaymentReceiptInfoOneOf, cx as PaymentRefundFailed, cw as PaymentRefunded, al as PaymentStatus, ha as PaymentStatusUpdated, ia as PaymentStatusWithLiterals, hV as Payments, hB as Phone, ba as PhysicalProperties, bK as PickupAddress, bJ as PickupDetails, ap as PickupMethod, ie as PickupMethodWithLiterals, gC as PickupReadyEmailSent, aV as Placement, iL as PlacementWithLiterals, b7 as PlainTextValue, fk as PlatformPaging, fn as PlatformPagingMetadata, fh as PlatformQuery, fi as PlatformQueryPagingMethodOneOf, e3 as PreparePaymentCollectionRequest, dW as PreviewBuyerConfirmationEmailRequest, dX as PreviewBuyerConfirmationEmailResponse, dU as PreviewBuyerPaymentsReceivedEmailRequest, dV as PreviewBuyerPaymentsReceivedEmailResponse, dY as PreviewBuyerPickupConfirmationEmailRequest, dZ as PreviewBuyerPickupConfirmationEmailResponse, dQ as PreviewCancelEmailRequest, dR as PreviewCancelEmailResponse, dS as PreviewCancelRefundEmailRequest, dT as PreviewCancelRefundEmailResponse, dH as PreviewEmailByTypeRequest, dI as PreviewEmailByTypeResponse, aA as PreviewEmailType, iq as PreviewEmailTypeWithLiterals, dJ as PreviewRefundEmailRequest, dP as PreviewRefundEmailResponse, e0 as PreviewResendDownloadLinksEmailRequest, e1 as PreviewResendDownloadLinksEmailResponse, d_ as PreviewShippingConfirmationEmailRequest, d$ as PreviewShippingConfirmationEmailResponse, bo as PriceDescription, bz as PriceSummary, b1 as ProductName, gI as PublicActivityContentOneOf, fp as QueryOrderRequest, fq as QueryOrderResponse, hz as QuotesAddress, aL as Reason, iB as ReasonWithLiterals, cI as ReceiptCreated, cJ as ReceiptCreatedReceiptInfoOneOf, cM as ReceiptSent, cN as ReceiptSentReceiptInfoOneOf, e8 as RecordManuallyCollectedPaymentRequest, e9 as RecordManuallyCollectedPaymentResponse, e4 as RedirectUrls, eL as Refund, dK as RefundDetails, cq as RefundInitiated, dL as RefundItem, eP as RefundItemsBreakdown, er as RefundSideEffects, aP as RefundStatus, eN as RefundStatusInfo, iF as RefundStatusWithLiterals, eM as RefundTransaction, eh as Refundability, ei as RefundabilityAdditionalRefundabilityInfoOneOf, aE as RefundableStatus, iu as RefundableStatusWithLiterals, cy as RefundedAsStoreCredit, cr as RefundedPayment, cs as RefundedPaymentKindOneOf, cB as RegularPayment, ey as RegularPaymentDetails, ez as RegularPaymentDetailsPaymentMethodDetailsOneOf, cC as RegularPaymentPaymentMethodDetailsOneOf, ct as RegularPaymentRefund, ht as Reschedule, es as RestockInfo, et as RestockItem, aH as RestockType, ix as RestockTypeWithLiterals, df as RestoreInfo, cm as SavedPaymentMethod, aB as ScheduledAction, ir as ScheduledActionWithLiterals, fr as SearchOrdersRequest, dm as SendBuyerConfirmationEmailRequest, dn as SendBuyerConfirmationEmailResponse, dp as SendBuyerPaymentsReceivedEmailRequest, dq as SendBuyerPaymentsReceivedEmailResponse, dr as SendBuyerPickupConfirmationEmailRequest, ds as SendBuyerPickupConfirmationEmailResponse, dv as SendBuyerShippingConfirmationEmailRequest, dw as SendBuyerShippingConfirmationEmailResponse, dB as SendCancelRefundEmailRequest, dC as SendCancelRefundEmailResponse, dz as SendMerchantOrderReceivedNotificationRequest, dA as SendMerchantOrderReceivedNotificationResponse, dF as SendMerchantOrderReceivedPushRequest, dG as SendMerchantOrderReceivedPushResponse, dD as SendRefundEmailRequest, dE as SendRefundEmailResponse, eo as ServiceProperties, da as SetOrderNumberCounterRequest, gA as ShippingAddressEdited, gw as ShippingConfirmationEmailSent, cl as ShippingInformation, ck as ShippingInformationChange, bM as ShippingPrice, dO as ShippingRefund, bN as ShippingRegion, aR as SortOrder, iH as SortOrderWithLiterals, fj as Sorting, hM as Source, aX as SourceType, iN as SourceTypeWithLiterals, hG as StandardDetails, bC as StreetAddress, hF as Subdivision, aW as SubdivisionType, iM as SubdivisionTypeWithLiterals, bj as SubscriptionDescription, ai as SubscriptionFrequency, i7 as SubscriptionFrequencyWithLiterals, bh as SubscriptionInfo, bk as SubscriptionSettings, bi as SubscriptionTitle, cZ as TagList, cY as Tags, hn as Task, hp as TaskAction, hq as TaskActionActionOneOf, ho as TaskKey, bO as TaxSummary, bq as TaxableAddress, br as TaxableAddressTaxableAddressDataOneOf, ak as TaxableAddressType, i9 as TaxableAddressTypeWithLiterals, hP as TotalPrice, cj as TotalPriceChange, gv as TrackingLinkAdded, gt as TrackingNumberAdded, gu as TrackingNumberEdited, aI as TransactionStatus, iy as TransactionStatusWithLiterals, bu as TranslatableString, cg as TranslatedValue, eq as TriggerRefundRequest, fb as TriggerReindexOrderRequest, f8 as TriggerReindexRequest, f9 as TriggerReindexResponse, g1 as UnArchiveOrderRequest, g2 as UnArchiveOrderResponse, gK as UpdateActivityRequest, ge as UpdateBillingContactDetailsRequest, gf as UpdateBillingContactDetailsResponse, ga as UpdateBuyerEmailRequest, gb as UpdateBuyerEmailResponse, g7 as UpdateBuyerInfoRequest, g9 as UpdateBuyerInfoResponse, eZ as UpdateInternalDocumentsEvent, e_ as UpdateInternalDocumentsEventOperationOneOf, gM as UpdateLineItemsDescriptionLinesRequest, gO as UpdateLineItemsDescriptionLinesResponse, gg as UpdateOrderLineItemRequest, gh as UpdateOrderLineItemsRequest, gj as UpdateOrderLineItemsResponse, fz as UpdateOrderRequest, fA as UpdateOrderResponse, gc as UpdateOrderShippingAddressRequest, gd as UpdateOrderShippingAddressResponse, gT as UpdateOrderStatusRequest, hb as V1BulkMarkOrdersAsPaidRequest, hc as V1BulkMarkOrdersAsPaidResponse, hd as V1CreatePaymentGatewayOrderRequest, he as V1CreatePaymentGatewayOrderResponse, fI as V1LineItemDelta, fJ as V1LineItemDeltaDeltaOneOf, h8 as V1MarkOrderAsPaidRequest, h9 as V1MarkOrderAsPaidResponse, d6 as V1RestockItem, eF as V1ScheduledAction, bG as V1ShippingInformation, h_ as Value, aZ as ValueType, iP as ValueTypeWithLiterals, bF as VatId, ao as VatType, id as VatTypeWithLiterals, f6 as VersionedDeleteByIdsOperation, f7 as VersionedDocumentId, f5 as VersionedDocumentUpdateOperation, aQ as VersioningMode, iG as VersioningModeWithLiterals, eV as VoidAuthorizedPaymentsRequest, az as WebhookIdentityType, ip as WebhookIdentityTypeWithLiterals, an as WeightUnit, ic as WeightUnitWithLiterals, cK as WixReceipt, eJ as WixReceiptInfo } from './ecom-v1-order-orders.universal-DdaUK3Pv.js';
|
|
2
|
+
import { O as Order, I as ImportOrderResponse, S as SetOrderNumberCounterOptions, a as SetOrderNumberCounterResponse, B as BulkDeleteImportedOrdersOptions, b as BulkDeleteImportedOrdersResponse, P as Price, c as PreparePaymentCollectionOptions, d as PreparePaymentCollectionResponse, e as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, R as RecordManuallyCollectedPaymentApplicationErrors, M as MarkOrderAsPaidResponse, f as PaymentCollectionMarkOrderAsPaidApplicationErrors, g as BulkMarkOrdersAsPaidResponse, h as GetRefundabilityStatusResponse, i as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, j as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, k as ChargeMembershipsOptions, l as PaymentRefund, T as TriggerRefundOptions, m as TriggerRefundResponse, n as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, o as VoidAuthorizedPaymentsApplicationErrors, p as PaymentCapture, q as CaptureAuthorizedPaymentsResponse, r as CaptureAuthorizedPaymentsApplicationErrors, s as GetOrderApplicationErrors, t as OrderSearch, u as SearchOrdersResponse, v as CreateOrderOptions, w as CreateOrderApplicationErrors, U as UpdateOrder, x as UpdateOrderApplicationErrors, y as MaskedOrder, z as BulkUpdateOrdersOptions, A as BulkUpdateOrdersResponse, D as CommitDeltasOptions, E as CommitDeltasResponse, F as CommitDeltasApplicationErrors, H as UpdateOrderLineItemIdentifiers, J as UpdateOrderLineItem, K as UpdateOrderLineItemResponse, L as PublicActivity, N as AddActivityResponse, Q as AddActivitiesOptions, W as AddActivitiesResponse, X as UpdateActivityIdentifiers, Y as UpdateActivityResponse, Z as DeleteActivityIdentifiers, _ as DeleteActivityResponse, $ as CancelOrderOptions, a0 as CancelOrderResponse, a1 as CancelOrderApplicationErrors, a2 as OrderStatusWithLiterals, a3 as UpdateOrderStatusResponse, a4 as UpdateOrderStatusApplicationErrors, a5 as AggregateOrdersOptions, a6 as AggregateOrdersResponse, a7 as BulkUpdateOrderTagsOptions, a8 as BulkUpdateOrderTagsResponse, a9 as OrderApprovedEnvelope, aa as OrderUpdatedEnvelope, ab as OrderCanceledEnvelope, ac as OrderCreatedEnvelope, ad as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-_nmG8kso.js';
|
|
3
|
+
export { di as ActionEvent, aM as ActionType, iE as ActionTypeWithLiterals, bZ as Activity, b_ as ActivityContentOneOf, au as ActivityType, il as ActivityTypeWithLiterals, gL as AddActivitiesRequest, gJ as AddActivityRequest, gm as AddInternalActivityRequest, gI as AddInternalActivityResponse, cW as AdditionalFee, fQ as AdditionalFeeDelta, fR as AdditionalFeeDeltaDeltaOneOf, dN as AdditionalFeeRefund, bB as Address, hC as AddressDescription, bD as AddressLocation, bA as AddressWithContact, aj as AdjustmentType, ia as AdjustmentTypeWithLiterals, hj as AggregateOrdersRequest, eO as AggregatedRefundSummary, ee as ApplicationError, bR as AppliedDiscount, fO as AppliedDiscountDelta, fP as AppliedDiscountDeltaDeltaOneOf, bS as AppliedDiscountDiscountSourceOneOf, fZ as ArchiveOrderRequest, f_ as ArchiveOrderResponse, aw as AttributionSource, io as AttributionSourceWithLiterals, eD as AuthorizationActionFailureDetails, eC as AuthorizationCapture, aJ as AuthorizationCaptureStatus, iB as AuthorizationCaptureStatusWithLiterals, eB as AuthorizationDetails, eE as AuthorizationVoid, aK as AuthorizationVoidStatus, iC as AuthorizationVoidStatusWithLiterals, co as AuthorizedPaymentCaptured, cn as AuthorizedPaymentCreated, cp as AuthorizedPaymentVoided, cV as Balance, cU as BalanceSummary, i2 as BaseEventMetadata, fa as BatchOfTriggerReindexOrderRequest, hM as BigDecimalWrapper, bm as BillingAdjustment, bn as BillingAdjustmentPriceSummary, ef as BulkActionMetadata, g1 as BulkArchiveOrdersByFilterRequest, g2 as BulkArchiveOrdersByFilterResponse, f$ as BulkArchiveOrdersRequest, g0 as BulkArchiveOrdersResponse, db as BulkDeleteImportedOrdersRequest, g$ as BulkMarkAsFulfilledByFilterRequest, h0 as BulkMarkAsFulfilledByFilterResponse, gZ as BulkMarkAsFulfilledRequest, g_ as BulkMarkAsFulfilledResponse, h5 as BulkMarkAsUnfulfilledByFilterRequest, h6 as BulkMarkAsUnfulfilledByFilterResponse, h3 as BulkMarkAsUnfulfilledRequest, h4 as BulkMarkAsUnfulfilledResponse, eb as BulkMarkOrdersAsPaidRequest, ec as BulkOrderResult, dt as BulkSendBuyerPickupConfirmationEmailsRequest, du as BulkSendBuyerPickupConfirmationEmailsResponse, dx as BulkSendBuyerShippingConfirmationEmailsRequest, dy as BulkSendBuyerShippingConfirmationEmailsResponse, h7 as BulkSetBusinessLocationRequest, h8 as BulkSetBusinessLocationResponse, h9 as BulkSetBusinessLocationResult, g7 as BulkUnArchiveOrdersByFilterRequest, g8 as BulkUnArchiveOrdersByFilterResponse, g5 as BulkUnArchiveOrdersRequest, g6 as BulkUnArchiveOrdersResponse, hn as BulkUpdateOrderTagsRequest, ho as BulkUpdateOrderTagsResult, fD as BulkUpdateOrdersRequest, bw as BuyerInfo, bx as BuyerInfoIdOneOf, ga as BuyerInfoUpdate, eS as CalculateRefundItemRequest, eU as CalculateRefundItemResponse, eR as CalculateRefundRequest, eT as CalculateRefundResponse, hW as CalculatedTax, hV as CalculatedTaxes, hu as Cancel, gT as CancelOrderRequest, eW as CaptureAuthorizedPaymentsRequest, b2 as CatalogReference, cS as ChannelInfo, ax as ChannelType, ip as ChannelTypeWithLiterals, el as ChargeMembershipsRequest, ep as ChargeMembershipsResponse, eX as ChargeSavedPaymentMethodRequest, eY as ChargeSavedPaymentMethodResponse, eG as Chargeback, cO as ChargebackCreated, cP as ChargebackReversed, aN as ChargebackStatus, iF as ChargebackStatusWithLiterals, ek as ChargedBy, b8 as Color, fE as CommitDeltasRequest, fV as CommittedDiffs, fW as CommittedDiffsShippingUpdateInfoOneOf, hF as CommonAddress, hG as CommonAddressStreetOneOf, iU as CommonSearchWithEntityContext, hE as Company, ht as Complete, bT as Coupon, fx as CreateOrderRequest, fA as CreateOrderResponse, ej as CreatePaymentGatewayOrderRequest, cQ as CreatedBy, cR as CreatedByStringOneOf, cD as CreditCardDetails, eA as CreditCardPaymentMethodDetails, by as CurrencyConversionDetails, fn as CursorPaging, fw as CursorPagingMetadata, fu as CursorSearch, fv as CursorSearchPagingMethodOneOf, fq as Cursors, b$ as CustomActivity, d1 as CustomAllowedActions, cT as CustomField, aY as CustomFieldGroup, iQ as CustomFieldGroupWithLiterals, h$ as CustomFieldValue, hz as Customer, hl as DecrementData, hk as DecrementItemsQuantityRequest, hm as DecrementItemsQuantityResponse, e5 as DelayedCaptureSettings, gN as DeleteActivityRequest, f2 as DeleteByFilterOperation, f1 as DeleteByIdsOperation, bH as DeliveryLogistics, bI as DeliveryLogisticsAddressOneOf, bL as DeliveryTimeSlot, aT as DeltaPaymentOptionType, iL as DeltaPaymentOptionTypeWithLiterals, i1 as Deposit, a_ as DepositType, iS as DepositTypeWithLiterals, b3 as DescriptionLine, b5 as DescriptionLineDescriptionLineValueOneOf, b6 as DescriptionLineName, ae as DescriptionLineType, i5 as DescriptionLineTypeWithLiterals, b4 as DescriptionLineValueOneOf, fe as DiffmatokyPayload, bg as DigitalFile, hT as Discount, hU as DiscountOneDiscountTypeOneOf, as as DiscountReason, ij as DiscountReasonWithLiterals, bW as DiscountRule, bX as DiscountRuleName, ar as DiscountType, ii as DiscountTypeWithLiterals, dc as DomainEvent, dd as DomainEventBodyOneOf, gu as DownloadLinkSent, c5 as DraftOrderChangesApplied, fS as DraftOrderCommitSettings, fF as DraftOrderDiffs, fI as DraftOrderDiffsBillingUpdateInfoOneOf, fH as DraftOrderDiffsBuyerUpdateInfoOneOf, fJ as DraftOrderDiffsRecipientUpdateInfoOneOf, fG as DraftOrderDiffsShippingUpdateInfoOneOf, e6 as Duration, aC as DurationUnit, iu as DurationUnitWithLiterals, hA as Email, gD as EmailEdited, e2 as Empty, de as EntityCreatedEvent, dh as EntityDeletedEvent, dg as EntityUpdatedEvent, ff as ErrorInformation, i3 as EventMetadata, bs as ExtendedFields, cL as ExternalReceipt, eK as ExternalReceiptInfo, b9 as FocalPoint, fd as FormIdentifier, fc as FormInfo, bl as FreeTrialPeriod, gB as FulfillerEmailSent, am as FulfillmentStatus, gY as FulfillmentStatusUpdated, id as FulfillmentStatusWithLiterals, cX as FulfillmentStatusesAggregate, bE as FullAddressContactDetails, fg as GetOrderRequest, fh as GetOrderResponse, e7 as GetPaymentCollectabilityStatusRequest, eg as GetRefundabilityStatusRequest, hh as GetShipmentsRequest, hi as GetShipmentsResponse, eH as GiftCardPaymentDetails, cu as GiftCardPaymentRefund, hx as IdAndVersion, dk as IdentificationData, dl as IdentificationDataIdOneOf, d9 as ImportOrderRequest, d8 as ImportedOrderDeleted, gn as InternalActivity, go as InternalActivityContentOneOf, e$ as InternalDocument, f3 as InternalDocumentUpdateByFilterOperation, f0 as InternalDocumentUpdateOperation, fi as InternalQueryOrdersRequest, fo as InternalQueryOrdersResponse, f4 as InternalUpdateExistingOperation, aU as InventoryAction, iM as InventoryActionWithLiterals, fT as InventoryUpdateDetails, gz as InvoiceAdded, hJ as InvoiceDates, h_ as InvoiceDynamicPriceTotals, hy as InvoiceFields, gA as InvoiceSent, hw as InvoiceSentEvent, a$ as InvoiceStatus, iT as InvoiceStatusWithLiterals, hY as InvoicesPayment, fN as ItemChangedDetails, ed as ItemMetadata, bv as ItemModifier, bd as ItemTaxFullDetails, bb as ItemType, bc as ItemTypeItemTypeDataOneOf, af as ItemTypePreset, i6 as ItemTypePresetWithLiterals, hS as ItemizedFee, ah as JurisdictionType, i8 as JurisdictionTypeWithLiterals, hL as LineItem, ch as LineItemAmount, c8 as LineItemChanges, fX as LineItemDelta, fY as LineItemDeltaDeltaOneOf, cc as LineItemDescriptionLineChange, bY as LineItemDiscount, c4 as LineItemExchangeData, hP as LineItemMetaData, cd as LineItemModifiersChange, ca as LineItemPriceChange, cb as LineItemProductNameChange, c9 as LineItemQuantityChange, at as LineItemQuantityChangeType, ik as LineItemQuantityChangeTypeWithLiterals, dM as LineItemRefund, eQ as LineItemRefundSummary, hN as LineItemTax, bf as LineItemTaxBreakdown, be as LineItemTaxInfo, gP as LineItemUpdate, hK as LineItems, hQ as Locale, c_ as Location, bp as LocationAndQuantity, ci as ManagedAdditionalFee, cf as ManagedDiscount, ce as ManagedLineItem, aG as ManuallyRefundableReason, iy as ManuallyRefundableReasonWithLiterals, gW as MarkAsFulfilledRequest, gX as MarkAsFulfilledResponse, h1 as MarkAsUnfulfilledRequest, h2 as MarkAsUnfulfilledResponse, ea as MarkOrderAsPaidRequest, gR as MarkOrderAsSeenByHumanRequest, gS as MarkOrderAsSeenByHumanResponse, gk as MaskedOrderLineItem, em as MembershipChargeItem, en as MembershipName, eI as MembershipPaymentDetails, cv as MembershipPaymentRefund, aO as MembershipPaymentStatus, iG as MembershipPaymentStatusWithLiterals, c0 as MerchantComment, bU as MerchantDiscount, bV as MerchantDiscountMerchantDiscountReasonOneOf, dj as MessageEnvelope, hZ as MetaData, bt as ModifierGroup, c3 as NewExchangeOrderCreated, aF as NonRefundableReason, ix as NonRefundableReasonWithLiterals, ay as OrderActionType, iq as OrderActionTypeWithLiterals, av as OrderActivityTypeEnumActivityType, im as OrderActivityTypeEnumActivityTypeWithLiterals, aS as OrderApprovalStrategy, iK as OrderApprovalStrategyWithLiterals, d2 as OrderApproved, gt as OrderCanceled, gU as OrderCanceledEventOrderCanceled, c6 as OrderChange, c7 as OrderChangeValueOneOf, fz as OrderCreateNotifications, c2 as OrderCreatedFromExchange, fy as OrderCreationSettings, fU as OrderDeltasCommitted, gr as OrderFulfilled, d7 as OrderImported, d5 as OrderItemsRestocked, b0 as OrderLineItem, fM as OrderLineItemChangedDetails, gs as OrderNotFulfilled, gq as OrderPaid, gF as OrderPartiallyPaid, gG as OrderPending, gp as OrderPlaced, c1 as OrderRefunded, gH as OrderRejected, d4 as OrderRejectedEventOrderRejected, i4 as OrderSearchSpec, c$ as OrderSettings, d0 as OrderSettingsAllowedActionsOneOf, aq as OrderStatus, bQ as OrderTaxBreakdown, bP as OrderTaxInfo, eu as OrderTransactions, d3 as OrdersExperiments, ev as Payment, cE as PaymentCanceled, cF as PaymentCanceledPaymentDetailsOneOf, aD as PaymentCollectabilityStatus, iv as PaymentCollectabilityStatusWithLiterals, cG as PaymentDeclined, cH as PaymentDeclinedPaymentDetailsOneOf, ag as PaymentOptionType, i7 as PaymentOptionTypeWithLiterals, ew as PaymentPaymentDetailsOneOf, cz as PaymentPending, cA as PaymentPendingPaymentDetailsOneOf, ex as PaymentReceiptInfoOneOf, cx as PaymentRefundFailed, cw as PaymentRefunded, al as PaymentStatus, hc as PaymentStatusUpdated, ic as PaymentStatusWithLiterals, hX as Payments, hD as Phone, ba as PhysicalProperties, bK as PickupAddress, bJ as PickupDetails, ap as PickupMethod, ih as PickupMethodWithLiterals, gE as PickupReadyEmailSent, aV as Placement, iN as PlacementWithLiterals, b7 as PlainTextValue, fm as PlatformPaging, fp as PlatformPagingMetadata, fj as PlatformQuery, fk as PlatformQueryPagingMethodOneOf, e3 as PreparePaymentCollectionRequest, dW as PreviewBuyerConfirmationEmailRequest, dX as PreviewBuyerConfirmationEmailResponse, dU as PreviewBuyerPaymentsReceivedEmailRequest, dV as PreviewBuyerPaymentsReceivedEmailResponse, dY as PreviewBuyerPickupConfirmationEmailRequest, dZ as PreviewBuyerPickupConfirmationEmailResponse, dQ as PreviewCancelEmailRequest, dR as PreviewCancelEmailResponse, dS as PreviewCancelRefundEmailRequest, dT as PreviewCancelRefundEmailResponse, dH as PreviewEmailByTypeRequest, dI as PreviewEmailByTypeResponse, aA as PreviewEmailType, is as PreviewEmailTypeWithLiterals, dJ as PreviewRefundEmailRequest, dP as PreviewRefundEmailResponse, e0 as PreviewResendDownloadLinksEmailRequest, e1 as PreviewResendDownloadLinksEmailResponse, d_ as PreviewShippingConfirmationEmailRequest, d$ as PreviewShippingConfirmationEmailResponse, bo as PriceDescription, bz as PriceSummary, b1 as ProductName, gK as PublicActivityContentOneOf, fr as QueryOrderRequest, fs as QueryOrderResponse, hB as QuotesAddress, aL as Reason, iD as ReasonWithLiterals, cI as ReceiptCreated, cJ as ReceiptCreatedReceiptInfoOneOf, cM as ReceiptSent, cN as ReceiptSentReceiptInfoOneOf, e8 as RecordManuallyCollectedPaymentRequest, e9 as RecordManuallyCollectedPaymentResponse, e4 as RedirectUrls, eL as Refund, dK as RefundDetails, cq as RefundInitiated, dL as RefundItem, eP as RefundItemsBreakdown, er as RefundSideEffects, aP as RefundStatus, eN as RefundStatusInfo, iH as RefundStatusWithLiterals, eM as RefundTransaction, eh as Refundability, ei as RefundabilityAdditionalRefundabilityInfoOneOf, aE as RefundableStatus, iw as RefundableStatusWithLiterals, cy as RefundedAsStoreCredit, cr as RefundedPayment, cs as RefundedPaymentKindOneOf, cB as RegularPayment, ey as RegularPaymentDetails, ez as RegularPaymentDetailsPaymentMethodDetailsOneOf, cC as RegularPaymentPaymentMethodDetailsOneOf, ct as RegularPaymentRefund, hv as Reschedule, es as RestockInfo, et as RestockItem, aH as RestockType, iz as RestockTypeWithLiterals, df as RestoreInfo, cm as SavedPaymentMethod, aB as ScheduledAction, it as ScheduledActionWithLiterals, ft as SearchOrdersRequest, dm as SendBuyerConfirmationEmailRequest, dn as SendBuyerConfirmationEmailResponse, dp as SendBuyerPaymentsReceivedEmailRequest, dq as SendBuyerPaymentsReceivedEmailResponse, dr as SendBuyerPickupConfirmationEmailRequest, ds as SendBuyerPickupConfirmationEmailResponse, dv as SendBuyerShippingConfirmationEmailRequest, dw as SendBuyerShippingConfirmationEmailResponse, dB as SendCancelRefundEmailRequest, dC as SendCancelRefundEmailResponse, dz as SendMerchantOrderReceivedNotificationRequest, dA as SendMerchantOrderReceivedNotificationResponse, dF as SendMerchantOrderReceivedPushRequest, dG as SendMerchantOrderReceivedPushResponse, dD as SendRefundEmailRequest, dE as SendRefundEmailResponse, eo as ServiceProperties, da as SetOrderNumberCounterRequest, gC as ShippingAddressEdited, gy as ShippingConfirmationEmailSent, cl as ShippingInformation, ck as ShippingInformationChange, bM as ShippingPrice, dO as ShippingRefund, bN as ShippingRegion, aR as SortOrder, iJ as SortOrderWithLiterals, fl as Sorting, hO as Source, aX as SourceType, iP as SourceTypeWithLiterals, hI as StandardDetails, bC as StreetAddress, hH as Subdivision, aW as SubdivisionType, iO as SubdivisionTypeWithLiterals, bj as SubscriptionDescription, ai as SubscriptionFrequency, i9 as SubscriptionFrequencyWithLiterals, bh as SubscriptionInfo, bk as SubscriptionSettings, bi as SubscriptionTitle, cZ as TagList, cY as Tags, hp as Task, hr as TaskAction, hs as TaskActionActionOneOf, hq as TaskKey, bO as TaxSummary, bq as TaxableAddress, br as TaxableAddressTaxableAddressDataOneOf, ak as TaxableAddressType, ib as TaxableAddressTypeWithLiterals, hR as TotalPrice, cj as TotalPriceChange, gx as TrackingLinkAdded, gv as TrackingNumberAdded, gw as TrackingNumberEdited, aI as TransactionStatus, iA as TransactionStatusWithLiterals, bu as TranslatableString, cg as TranslatedValue, eq as TriggerRefundRequest, fb as TriggerReindexOrderRequest, f8 as TriggerReindexRequest, f9 as TriggerReindexResponse, g3 as UnArchiveOrderRequest, g4 as UnArchiveOrderResponse, gM as UpdateActivityRequest, gg as UpdateBillingContactDetailsRequest, gh as UpdateBillingContactDetailsResponse, gc as UpdateBuyerEmailRequest, gd as UpdateBuyerEmailResponse, g9 as UpdateBuyerInfoRequest, gb as UpdateBuyerInfoResponse, eZ as UpdateInternalDocumentsEvent, e_ as UpdateInternalDocumentsEventOperationOneOf, gO as UpdateLineItemsDescriptionLinesRequest, gQ as UpdateLineItemsDescriptionLinesResponse, gi as UpdateOrderLineItemRequest, gj as UpdateOrderLineItemsRequest, gl as UpdateOrderLineItemsResponse, fB as UpdateOrderRequest, fC as UpdateOrderResponse, ge as UpdateOrderShippingAddressRequest, gf as UpdateOrderShippingAddressResponse, gV as UpdateOrderStatusRequest, hd as V1BulkMarkOrdersAsPaidRequest, he as V1BulkMarkOrdersAsPaidResponse, hf as V1CreatePaymentGatewayOrderRequest, hg as V1CreatePaymentGatewayOrderResponse, fK as V1LineItemDelta, fL as V1LineItemDeltaDeltaOneOf, ha as V1MarkOrderAsPaidRequest, hb as V1MarkOrderAsPaidResponse, d6 as V1RestockItem, eF as V1ScheduledAction, bG as V1ShippingInformation, i0 as Value, aZ as ValueType, iR as ValueTypeWithLiterals, bF as VatId, ao as VatType, ig as VatTypeWithLiterals, f6 as VersionedDeleteByIdsOperation, f7 as VersionedDocumentId, f5 as VersionedDocumentUpdateOperation, aQ as VersioningMode, iI as VersioningModeWithLiterals, eV as VoidAuthorizedPaymentsRequest, az as WebhookIdentityType, ir as WebhookIdentityTypeWithLiterals, an as WeightUnit, ie as WeightUnitWithLiterals, cK as WixReceipt, eJ as WixReceiptInfo } from './ecom-v1-order-orders.universal-_nmG8kso.js';
|
|
4
4
|
|
|
5
5
|
/** @internal */
|
|
6
6
|
declare function importOrder$1(httpClient: HttpClient): ImportOrderSignature;
|