@wix/auto_sdk_ecom_orders 1.0.150 → 1.0.152
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-w6ZpfX3D.d.ts → ecom-v1-order-orders.universal-rM7XIM5J.d.ts} +30 -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 +31 -2
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-w6ZpfX3D.d.mts → ecom-v1-order-orders.universal-rM7XIM5J.d.mts} +30 -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 +31 -2
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-DG7Uu3-L.d.ts → ecom-v1-order-orders.universal-CxuQcKw1.d.ts} +40 -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 +31 -2
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{ecom-v1-order-orders.universal-DG7Uu3-L.d.mts → ecom-v1-order-orders.universal-CxuQcKw1.d.mts} +40 -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 +31 -2
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1472,6 +1472,16 @@ interface AppliedDiscount extends AppliedDiscountDiscountSourceOneOf {
|
|
|
1472
1472
|
* @max 999
|
|
1473
1473
|
*/
|
|
1474
1474
|
subscriptionCycles?: number | null;
|
|
1475
|
+
/**
|
|
1476
|
+
* A list of item combinations for this applied discount.
|
|
1477
|
+
* Each entry represents a unique combination of line items that triggered
|
|
1478
|
+
* or received this discount, along with how many times that combination was applied together.
|
|
1479
|
+
* Relevant ONLY for BXGY and Quantity-based promotions.
|
|
1480
|
+
* In BXGY the combination will contain the "X" items with discount amount of 0.
|
|
1481
|
+
* @internal
|
|
1482
|
+
* @maxSize 1000
|
|
1483
|
+
*/
|
|
1484
|
+
itemCombinations?: ItemCombination[];
|
|
1475
1485
|
}
|
|
1476
1486
|
/** @oneof */
|
|
1477
1487
|
interface AppliedDiscountDiscountSourceOneOf {
|
|
@@ -1575,6 +1585,35 @@ interface LineItemDiscount {
|
|
|
1575
1585
|
/** Total discount for this line item. */
|
|
1576
1586
|
totalDiscount?: Price;
|
|
1577
1587
|
}
|
|
1588
|
+
interface ItemCombination {
|
|
1589
|
+
/**
|
|
1590
|
+
* The number of times this exact combination of items (with the specified quantities) was applied together in the order.
|
|
1591
|
+
* @min 1
|
|
1592
|
+
* @max 100000
|
|
1593
|
+
*/
|
|
1594
|
+
count?: number;
|
|
1595
|
+
/**
|
|
1596
|
+
* Line items that participated together in this combination.
|
|
1597
|
+
* @minSize 1
|
|
1598
|
+
* @maxSize 100
|
|
1599
|
+
*/
|
|
1600
|
+
lineItems?: ItemCombinationLineItem[];
|
|
1601
|
+
}
|
|
1602
|
+
interface ItemCombinationLineItem {
|
|
1603
|
+
/**
|
|
1604
|
+
* The unique ID of the line item to which this discount applies.
|
|
1605
|
+
* @format GUID
|
|
1606
|
+
*/
|
|
1607
|
+
lineItemId?: string;
|
|
1608
|
+
/** Total discount amount for all units (quantity) of this line item in this combination. */
|
|
1609
|
+
discountAmount?: Price;
|
|
1610
|
+
/**
|
|
1611
|
+
* Number of units from this line item that participated in a single combination.
|
|
1612
|
+
* @min 1
|
|
1613
|
+
* @max 100000
|
|
1614
|
+
*/
|
|
1615
|
+
quantity?: number;
|
|
1616
|
+
}
|
|
1578
1617
|
interface Activity extends ActivityContentOneOf {
|
|
1579
1618
|
/** Custom activity details (optional). `activity.type` must be `CUSTOM_ACTIVITY`. */
|
|
1580
1619
|
customActivity?: CustomActivity;
|
|
@@ -8412,4 +8451,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
8412
8451
|
unassignTags?: Tags;
|
|
8413
8452
|
}
|
|
8414
8453
|
|
|
8415
|
-
export { type OrderStatusWithLiterals as $, type BulkUpdateOrdersResponse as A, type BulkDeleteImportedOrdersOptions as B, type CreatePaymentGatewayOrderResponse as C, type UpdateOrderLineItemIdentifiers as D, type UpdateOrderLineItem as E, type UpdateOrderLineItemResponse as F, type GetPaymentCollectabilityStatusResponse as G, type PublicActivity as H, type ImportOrderResponse as I, type AddActivityResponse as J, type AddActivitiesOptions as K, type AddActivitiesResponse as L, type MarkOrderAsPaidResponse as M, type UpdateActivityIdentifiers as N, type Order as O, type Price as P, type UpdateActivityResponse as Q, type RecordManuallyCollectedPaymentApplicationErrors as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type DeleteActivityIdentifiers as W, type DeleteActivityResponse as X, type CancelOrderOptions as Y, type CancelOrderResponse as Z, type CancelOrderApplicationErrors as _, type SetOrderNumberCounterResponse as a, type OrderLineItem as a$, type UpdateOrderStatusResponse as a0, type UpdateOrderStatusApplicationErrors as a1, type AggregateOrdersOptions as a2, type AggregateOrdersResponse as a3, type BulkUpdateOrderTagsOptions as a4, type BulkUpdateOrderTagsResponse as a5, type OrderApprovedEnvelope as a6, type OrderUpdatedEnvelope as a7, type OrderCanceledEnvelope as a8, type OrderCreatedEnvelope 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, SortOrder as aQ, OrderApprovalStrategy as aR, DeltaPaymentOptionType as aS, InventoryAction as aT, Placement as aU, SubdivisionType as aV, SourceType as aW, CustomFieldGroup as aX, ValueType as aY, DepositType as aZ, InvoiceStatus as a_, type OrderPaymentStatusUpdatedEnvelope as aa, DescriptionLineType as ab, ItemTypePreset as ac, PaymentOptionType as ad, JurisdictionType as ae, SubscriptionFrequency as af, AdjustmentType as ag, TaxableAddressType as ah, PaymentStatus as ai, FulfillmentStatus as aj, WeightUnit as ak, VatType as al, PickupMethod as am, OrderStatus as an, DiscountType as ao, DiscountReason as ap, LineItemQuantityChangeType as aq, ActivityType as ar, OrderActivityTypeEnumActivityType as as, AttributionSource as at, ChannelType as au, AdditionalFeeSource as av, OrderActionType as aw, ChargeType as ax, WebhookIdentityType as ay, VersioningMode as az, type BulkDeleteImportedOrdersResponse as b, type MerchantComment as b$, type ProductName as b0, type CatalogReference as b1, type DescriptionLine as b2, type DescriptionLineValueOneOf as b3, type DescriptionLineDescriptionLineValueOneOf as b4, type DescriptionLineName as b5, type PlainTextValue as b6, type Color as b7, type FocalPoint as b8, type PhysicalProperties as b9, type Address as bA, type StreetAddress as bB, type AddressLocation as bC, type FullAddressContactDetails as bD, type VatId as bE, type V1ShippingInformation as bF, type DeliveryLogistics as bG, type DeliveryLogisticsAddressOneOf as bH, type PickupDetails as bI, type PickupAddress as bJ, type DeliveryTimeSlot as bK, type ShippingPrice as bL, type ShippingRegion as bM, type TaxSummary as bN, type OrderTaxInfo as bO, type OrderTaxBreakdown as bP, type AppliedDiscount as bQ, type AppliedDiscountDiscountSourceOneOf as bR, type Coupon as bS, type MerchantDiscount as bT, type MerchantDiscountMerchantDiscountReasonOneOf as bU, type DiscountRule as bV, type DiscountRuleName as bW, type LineItemDiscount as bX, type Activity as bY, type ActivityContentOneOf as bZ, type CustomActivity as b_, type ItemType as ba, type ItemTypeItemTypeDataOneOf as bb, type ItemTaxFullDetails as bc, type LineItemTaxInfo as bd, type LineItemTaxBreakdown as be, type DigitalFile as bf, type SubscriptionInfo as bg, type SubscriptionTitle as bh, type SubscriptionDescription as bi, type SubscriptionSettings as bj, type FreeTrialPeriod as bk, type BillingAdjustment as bl, type BillingAdjustmentPriceSummary as bm, type PriceDescription as bn, type LocationAndQuantity as bo, type TaxableAddress as bp, type TaxableAddressTaxableAddressDataOneOf as bq, type ExtendedFields as br, type ModifierGroup as bs, type TranslatableString as bt, type ItemModifier as bu, type BuyerInfo as bv, type BuyerInfoIdOneOf as bw, type CurrencyConversionDetails as bx, type PriceSummary as by, type AddressWithContact as bz, type PreparePaymentCollectionOptions as c, type OrderSettingsAllowedActionsOneOf as c$, type OrderRefunded as c0, type OrderCreatedFromExchange as c1, type NewExchangeOrderCreated as c2, type LineItemExchangeData as c3, type DraftOrderChangesApplied as c4, type OrderChange as c5, type OrderChangeValueOneOf as c6, type LineItemChanges as c7, type LineItemQuantityChange as c8, type LineItemPriceChange as c9, type RegularPayment as cA, type RegularPaymentPaymentMethodDetailsOneOf as cB, type CreditCardDetails as cC, type PaymentCanceled as cD, type PaymentCanceledPaymentDetailsOneOf as cE, type PaymentDeclined as cF, type PaymentDeclinedPaymentDetailsOneOf as cG, type ReceiptCreated as cH, type ReceiptCreatedReceiptInfoOneOf as cI, type WixReceipt as cJ, type ExternalReceipt as cK, type ReceiptSent as cL, type ReceiptSentReceiptInfoOneOf as cM, type ChargebackCreated as cN, type ChargebackReversed as cO, type CreatedBy as cP, type CreatedByStringOneOf as cQ, type ChannelInfo as cR, type CustomField as cS, type BalanceSummary as cT, type Balance as cU, type AdditionalFee as cV, type FulfillmentStatusesAggregate as cW, type Tags as cX, type TagList as cY, type Location as cZ, type OrderSettings as c_, type LineItemProductNameChange as ca, type LineItemDescriptionLineChange as cb, type LineItemModifiersChange as cc, type ManagedLineItem as cd, type ManagedDiscount as ce, type TranslatedValue as cf, type LineItemAmount as cg, type ManagedAdditionalFee as ch, type TotalPriceChange as ci, type ShippingInformationChange as cj, type ShippingInformation as ck, type SavedPaymentMethod as cl, type AuthorizedPaymentCreated as cm, type AuthorizedPaymentCaptured as cn, type AuthorizedPaymentVoided as co, type RefundInitiated as cp, type RefundedPayment as cq, type RefundedPaymentKindOneOf as cr, type RegularPaymentRefund as cs, type GiftCardPaymentRefund as ct, type MembershipPaymentRefund as cu, type PaymentRefunded as cv, type PaymentRefundFailed as cw, type RefundedAsStoreCredit as cx, type PaymentPending as cy, type PaymentPendingPaymentDetailsOneOf as cz, type PreparePaymentCollectionResponse as d, type PreviewEmailByTypeResponse as d$, type CustomAllowedActions as d0, type FormInfo as d1, type FormIdentifier as d2, type PlatformFeeSummary as d3, type PlatformFee as d4, type OrderApproved as d5, type OrdersExperiments as d6, type OrderRejectedEventOrderRejected as d7, type OrderItemsRestocked as d8, type V1RestockItem as d9, type VersionedDocumentId as dA, type TriggerReindexRequest as dB, type TriggerReindexResponse as dC, type Empty as dD, type BatchOfTriggerReindexOrderRequest as dE, type TriggerReindexOrderRequest as dF, type SendBuyerConfirmationEmailRequest as dG, type SendBuyerConfirmationEmailResponse as dH, type SendBuyerPaymentsReceivedEmailRequest as dI, type SendBuyerPaymentsReceivedEmailResponse as dJ, type SendBuyerPickupConfirmationEmailRequest as dK, type SendBuyerPickupConfirmationEmailResponse as dL, type BulkSendBuyerPickupConfirmationEmailsRequest as dM, type BulkSendBuyerPickupConfirmationEmailsResponse as dN, type SendBuyerShippingConfirmationEmailRequest as dO, type SendBuyerShippingConfirmationEmailResponse as dP, type BulkSendBuyerShippingConfirmationEmailsRequest as dQ, type BulkSendBuyerShippingConfirmationEmailsResponse as dR, type SendMerchantOrderReceivedNotificationRequest as dS, type SendMerchantOrderReceivedNotificationResponse as dT, type SendCancelRefundEmailRequest as dU, type SendCancelRefundEmailResponse as dV, type SendRefundEmailRequest as dW, type SendRefundEmailResponse as dX, type SendMerchantOrderReceivedPushRequest as dY, type SendMerchantOrderReceivedPushResponse as dZ, type PreviewEmailByTypeRequest as d_, type OrderImported as da, type ImportedOrderDeleted as db, type ImportOrderRequest as dc, type SetOrderNumberCounterRequest as dd, type BulkDeleteImportedOrdersRequest as de, type DomainEvent as df, type DomainEventBodyOneOf as dg, type EntityCreatedEvent as dh, type RestoreInfo as di, type EntityUpdatedEvent as dj, type EntityDeletedEvent as dk, type ActionEvent as dl, type MessageEnvelope as dm, type IdentificationData as dn, type IdentificationDataIdOneOf as dp, type UpdateInternalDocumentsEvent as dq, type UpdateInternalDocumentsEventOperationOneOf as dr, type InternalDocument as ds, type InternalDocumentUpdateOperation as dt, type DeleteByIdsOperation as du, type DeleteByFilterOperation as dv, type InternalDocumentUpdateByFilterOperation as dw, type InternalUpdateExistingOperation as dx, type VersionedDocumentUpdateOperation as dy, type VersionedDeleteByIdsOperation as dz, type PreparePaymentCollectionApplicationErrors as e, type WixReceiptInfo as e$, type PreviewRefundEmailRequest as e0, type RefundDetails as e1, type RefundItem as e2, type LineItemRefund as e3, type AdditionalFeeRefund as e4, type ShippingRefund as e5, type PreviewRefundEmailResponse as e6, type PreviewCancelEmailRequest as e7, type PreviewCancelEmailResponse as e8, type PreviewCancelRefundEmailRequest as e9, type RefundabilityAdditionalRefundabilityInfoOneOf as eA, type CreatePaymentGatewayOrderRequest as eB, type ChargedBy as eC, type ChargeMembershipsRequest as eD, type MembershipChargeItem as eE, type MembershipName as eF, type ServiceProperties as eG, type ChargeMembershipsResponse as eH, type TriggerRefundRequest as eI, type RefundSideEffects as eJ, type RestockInfo as eK, type RestockItem as eL, type OrderTransactions as eM, type Payment as eN, type PaymentPaymentDetailsOneOf as eO, type PaymentReceiptInfoOneOf as eP, type RegularPaymentDetails as eQ, type RegularPaymentDetailsPaymentMethodDetailsOneOf as eR, type CreditCardPaymentMethodDetails as eS, type AuthorizationDetails as eT, type AuthorizationCapture as eU, type AuthorizationActionFailureDetails as eV, type AuthorizationVoid as eW, type V1ScheduledAction as eX, type Chargeback as eY, type GiftCardPaymentDetails as eZ, type MembershipPaymentDetails as e_, type PreviewCancelRefundEmailResponse as ea, type PreviewBuyerPaymentsReceivedEmailRequest as eb, type PreviewBuyerPaymentsReceivedEmailResponse as ec, type PreviewBuyerConfirmationEmailRequest as ed, type PreviewBuyerConfirmationEmailResponse as ee, type PreviewBuyerPickupConfirmationEmailRequest as ef, type PreviewBuyerPickupConfirmationEmailResponse as eg, type PreviewShippingConfirmationEmailRequest as eh, type PreviewShippingConfirmationEmailResponse as ei, type PreviewResendDownloadLinksEmailRequest as ej, type PreviewResendDownloadLinksEmailResponse as ek, type PreparePaymentCollectionRequest as el, type RedirectUrls as em, type DelayedCaptureSettings as en, type Duration as eo, type GetPaymentCollectabilityStatusRequest as ep, type RecordManuallyCollectedPaymentRequest as eq, type RecordManuallyCollectedPaymentResponse as er, type MarkOrderAsPaidRequest as es, type BulkMarkOrdersAsPaidRequest as et, type BulkOrderResult as eu, type ItemMetadata as ev, type ApplicationError as ew, type BulkActionMetadata as ex, type GetRefundabilityStatusRequest as ey, type Refundability as ez, type PaymentCollectionMarkOrderAsPaidApplicationErrors as f, type ArchiveOrderRequest as f$, type ExternalReceiptInfo as f0, type Refund as f1, type RefundTransaction as f2, type RefundStatusInfo as f3, type AggregatedRefundSummary as f4, type RefundItemsBreakdown as f5, type LineItemRefundSummary as f6, type CalculateRefundRequest as f7, type CalculateRefundItemRequest as f8, type CalculateRefundResponse as f9, type OrderCreateNotifications as fA, type CreateOrderResponse as fB, type UpdateOrderRequest as fC, type UpdateOrderResponse as fD, type BulkUpdateOrdersRequest as fE, type CommitDeltasRequest as fF, type DraftOrderDiffs as fG, type DraftOrderDiffsShippingUpdateInfoOneOf as fH, type DraftOrderDiffsBuyerUpdateInfoOneOf as fI, type DraftOrderDiffsBillingUpdateInfoOneOf as fJ, type DraftOrderDiffsRecipientUpdateInfoOneOf as fK, type V1LineItemDelta as fL, type V1LineItemDeltaDeltaOneOf as fM, type OrderLineItemChangedDetails as fN, type ItemChangedDetails as fO, type AppliedDiscountDelta as fP, type AppliedDiscountDeltaDeltaOneOf as fQ, type AdditionalFeeDelta as fR, type AdditionalFeeDeltaDeltaOneOf as fS, type DraftOrderCommitSettings as fT, type InventoryUpdateDetails as fU, type CommitDeltasResponse as fV, type OrderDeltasCommitted as fW, type CommittedDiffs as fX, type CommittedDiffsShippingUpdateInfoOneOf as fY, type LineItemDelta as fZ, type LineItemDeltaDeltaOneOf as f_, type CalculateRefundItemResponse as fa, type VoidAuthorizedPaymentsRequest as fb, type CaptureAuthorizedPaymentsRequest as fc, type ChargeSavedPaymentMethodRequest as fd, type ChargeSavedPaymentMethodResponse as fe, type DiffmatokyPayload as ff, type ErrorInformation as fg, type GetOrderRequest as fh, type GetOrderResponse as fi, type InternalQueryOrdersRequest as fj, type PlatformQuery as fk, type PlatformQueryPagingMethodOneOf as fl, type Sorting as fm, type PlatformPaging as fn, type CursorPaging as fo, type InternalQueryOrdersResponse as fp, type PlatformPagingMetadata as fq, type Cursors as fr, type QueryOrderRequest as fs, type QueryOrderResponse as ft, type SearchOrdersRequest as fu, type CursorSearch as fv, type CursorSearchPagingMethodOneOf as fw, type CursorPagingMetadata as fx, type CreateOrderRequest as fy, type OrderCreationSettings as fz, type BulkMarkOrdersAsPaidResponse as g, type BulkMarkAsFulfilledRequest as g$, type ArchiveOrderResponse as g0, type BulkArchiveOrdersRequest as g1, type BulkArchiveOrdersResponse as g2, type BulkArchiveOrdersByFilterRequest as g3, type BulkArchiveOrdersByFilterResponse as g4, type UnArchiveOrderRequest as g5, type UnArchiveOrderResponse as g6, type BulkUnArchiveOrdersRequest as g7, type BulkUnArchiveOrdersResponse as g8, type BulkUnArchiveOrdersByFilterRequest as g9, type ShippingConfirmationEmailSent as gA, type InvoiceAdded as gB, type InvoiceSent as gC, type FulfillerEmailSent as gD, type ShippingAddressEdited as gE, type EmailEdited as gF, type PickupReadyEmailSent as gG, type OrderPartiallyPaid as gH, type OrderPending as gI, type OrderRejected as gJ, type AddInternalActivityResponse as gK, type AddActivityRequest as gL, type PublicActivityContentOneOf as gM, type AddActivitiesRequest as gN, type UpdateActivityRequest as gO, type DeleteActivityRequest as gP, type UpdateLineItemsDescriptionLinesRequest as gQ, type LineItemUpdate as gR, type UpdateLineItemsDescriptionLinesResponse as gS, type MarkOrderAsSeenByHumanRequest as gT, type MarkOrderAsSeenByHumanResponse as gU, type CancelOrderRequest as gV, type OrderCanceledEventOrderCanceled as gW, type UpdateOrderStatusRequest as gX, type MarkAsFulfilledRequest as gY, type MarkAsFulfilledResponse as gZ, type FulfillmentStatusUpdated as g_, type BulkUnArchiveOrdersByFilterResponse as ga, type UpdateBuyerInfoRequest as gb, type BuyerInfoUpdate as gc, type UpdateBuyerInfoResponse as gd, type UpdateBuyerEmailRequest as ge, type UpdateBuyerEmailResponse as gf, type UpdateOrderShippingAddressRequest as gg, type UpdateOrderShippingAddressResponse as gh, type UpdateBillingContactDetailsRequest as gi, type UpdateBillingContactDetailsResponse as gj, type UpdateOrderLineItemRequest as gk, type UpdateOrderLineItemsRequest as gl, type MaskedOrderLineItem as gm, type UpdateOrderLineItemsResponse as gn, type AddInternalActivityRequest as go, type InternalActivity as gp, type InternalActivityContentOneOf as gq, type OrderPlaced as gr, type OrderPaid as gs, type OrderFulfilled as gt, type OrderNotFulfilled as gu, type OrderCanceled as gv, type DownloadLinkSent as gw, type TrackingNumberAdded as gx, type TrackingNumberEdited as gy, type TrackingLinkAdded as gz, type GetRefundabilityStatusResponse as h, type MetaData as h$, type BulkMarkAsFulfilledResponse as h0, type BulkMarkAsFulfilledByFilterRequest as h1, type BulkMarkAsFulfilledByFilterResponse as h2, type MarkAsUnfulfilledRequest as h3, type MarkAsUnfulfilledResponse as h4, type BulkMarkAsUnfulfilledRequest as h5, type BulkMarkAsUnfulfilledResponse as h6, type BulkMarkAsUnfulfilledByFilterRequest as h7, type BulkMarkAsUnfulfilledByFilterResponse as h8, type BulkSetBusinessLocationRequest as h9, type InvoiceFields as hA, type Customer as hB, type Email as hC, type QuotesAddress as hD, type AddressDescription as hE, type Phone as hF, type Company as hG, type CommonAddress as hH, type CommonAddressStreetOneOf as hI, type Subdivision as hJ, type StandardDetails as hK, type InvoiceDates as hL, type LineItems as hM, type LineItem as hN, type BigDecimalWrapper as hO, type LineItemTax as hP, type Source as hQ, type LineItemMetaData as hR, type Locale as hS, type TotalPrice as hT, type ItemizedFee as hU, type Discount as hV, type DiscountOneDiscountTypeOneOf as hW, type CalculatedTaxes as hX, type CalculatedTax as hY, type Payments as hZ, type InvoicesPayment as h_, type BulkSetBusinessLocationResponse as ha, type BulkSetBusinessLocationResult as hb, type V1MarkOrderAsPaidRequest as hc, type V1MarkOrderAsPaidResponse as hd, type PaymentStatusUpdated as he, type V1BulkMarkOrdersAsPaidRequest as hf, type V1BulkMarkOrdersAsPaidResponse as hg, type V1CreatePaymentGatewayOrderRequest as hh, type V1CreatePaymentGatewayOrderResponse as hi, type GetShipmentsRequest as hj, type GetShipmentsResponse as hk, type AggregateOrdersRequest as hl, type DecrementItemsQuantityRequest as hm, type DecrementData as hn, type DecrementItemsQuantityResponse as ho, type BulkUpdateOrderTagsRequest as hp, type BulkUpdateOrderTagsResult as hq, type Task as hr, type TaskKey as hs, type TaskAction as ht, type TaskActionActionOneOf as hu, type Complete as hv, type Cancel as hw, type Reschedule as hx, type InvoiceSentEvent as hy, type IdAndVersion as hz, type PaymentCollectionCreatePaymentGatewayOrderOptions as i, onOrderCanceled as i$, type InvoiceDynamicPriceTotals as i0, type CustomFieldValue as i1, type Value as i2, type Deposit as i3, type BaseEventMetadata as i4, type EventMetadata as i5, type OrderSearchSpec as i6, type DescriptionLineTypeWithLiterals as i7, type ItemTypePresetWithLiterals as i8, type PaymentOptionTypeWithLiterals as i9, type PaymentCollectabilityStatusWithLiterals as iA, type RefundableStatusWithLiterals as iB, type NonRefundableReasonWithLiterals as iC, type ManuallyRefundableReasonWithLiterals as iD, type RestockTypeWithLiterals as iE, type TransactionStatusWithLiterals as iF, type AuthorizationCaptureStatusWithLiterals as iG, type AuthorizationVoidStatusWithLiterals as iH, type ReasonWithLiterals as iI, type ActionTypeWithLiterals as iJ, type ChargebackStatusWithLiterals as iK, type MembershipPaymentStatusWithLiterals as iL, type RefundStatusWithLiterals as iM, type SortOrderWithLiterals as iN, type OrderApprovalStrategyWithLiterals as iO, type DeltaPaymentOptionTypeWithLiterals as iP, type InventoryActionWithLiterals as iQ, type PlacementWithLiterals as iR, type SubdivisionTypeWithLiterals as iS, type SourceTypeWithLiterals as iT, type CustomFieldGroupWithLiterals as iU, type ValueTypeWithLiterals as iV, type DepositTypeWithLiterals as iW, type InvoiceStatusWithLiterals as iX, type CommonSearchWithEntityContext as iY, onOrderApproved as iZ, onOrderUpdated as i_, type JurisdictionTypeWithLiterals as ia, type SubscriptionFrequencyWithLiterals as ib, type AdjustmentTypeWithLiterals as ic, type TaxableAddressTypeWithLiterals as id, type PaymentStatusWithLiterals as ie, type FulfillmentStatusWithLiterals as ig, type WeightUnitWithLiterals as ih, type VatTypeWithLiterals as ii, type PickupMethodWithLiterals as ij, type DiscountTypeWithLiterals as ik, type DiscountReasonWithLiterals as il, type LineItemQuantityChangeTypeWithLiterals as im, type ActivityTypeWithLiterals as io, type OrderActivityTypeEnumActivityTypeWithLiterals as ip, type AttributionSourceWithLiterals as iq, type ChannelTypeWithLiterals as ir, type AdditionalFeeSourceWithLiterals as is, type OrderActionTypeWithLiterals as it, type ChargeTypeWithLiterals as iu, type WebhookIdentityTypeWithLiterals as iv, type VersioningModeWithLiterals as iw, type PreviewEmailTypeWithLiterals as ix, type ScheduledActionWithLiterals as iy, type DurationUnitWithLiterals as iz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as j, onOrderCreated as j0, onOrderPaymentStatusUpdated as j1, importOrder as j2, setOrderNumberCounter as j3, bulkDeleteImportedOrders as j4, preparePaymentCollection as j5, getPaymentCollectabilityStatus as j6, recordManuallyCollectedPayment as j7, paymentCollectionMarkOrderAsPaid as j8, paymentCollectionBulkMarkOrdersAsPaid as j9, getRefundabilityStatus as ja, paymentCollectionCreatePaymentGatewayOrder as jb, chargeMemberships as jc, triggerRefund as jd, voidAuthorizedPayments as je, captureAuthorizedPayments as jf, getOrder as jg, createOrder as jh, updateOrder as ji, bulkUpdateOrders as jj, updateOrderLineItem as jk, addActivity as jl, addActivities as jm, updateActivity as jn, deleteActivity as jo, cancelOrder as jp, updateOrderStatus as jq, aggregateOrders as jr, bulkUpdateOrderTags as js, 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 };
|
|
8454
|
+
export { type OrderStatusWithLiterals as $, type BulkUpdateOrdersResponse as A, type BulkDeleteImportedOrdersOptions as B, type CreatePaymentGatewayOrderResponse as C, type UpdateOrderLineItemIdentifiers as D, type UpdateOrderLineItem as E, type UpdateOrderLineItemResponse as F, type GetPaymentCollectabilityStatusResponse as G, type PublicActivity as H, type ImportOrderResponse as I, type AddActivityResponse as J, type AddActivitiesOptions as K, type AddActivitiesResponse as L, type MarkOrderAsPaidResponse as M, type UpdateActivityIdentifiers as N, type Order as O, type Price as P, type UpdateActivityResponse as Q, type RecordManuallyCollectedPaymentApplicationErrors as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type DeleteActivityIdentifiers as W, type DeleteActivityResponse as X, type CancelOrderOptions as Y, type CancelOrderResponse as Z, type CancelOrderApplicationErrors as _, type SetOrderNumberCounterResponse as a, type OrderLineItem as a$, type UpdateOrderStatusResponse as a0, type UpdateOrderStatusApplicationErrors as a1, type AggregateOrdersOptions as a2, type AggregateOrdersResponse as a3, type BulkUpdateOrderTagsOptions as a4, type BulkUpdateOrderTagsResponse as a5, type OrderApprovedEnvelope as a6, type OrderUpdatedEnvelope as a7, type OrderCanceledEnvelope as a8, type OrderCreatedEnvelope 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, SortOrder as aQ, OrderApprovalStrategy as aR, DeltaPaymentOptionType as aS, InventoryAction as aT, Placement as aU, SubdivisionType as aV, SourceType as aW, CustomFieldGroup as aX, ValueType as aY, DepositType as aZ, InvoiceStatus as a_, type OrderPaymentStatusUpdatedEnvelope as aa, DescriptionLineType as ab, ItemTypePreset as ac, PaymentOptionType as ad, JurisdictionType as ae, SubscriptionFrequency as af, AdjustmentType as ag, TaxableAddressType as ah, PaymentStatus as ai, FulfillmentStatus as aj, WeightUnit as ak, VatType as al, PickupMethod as am, OrderStatus as an, DiscountType as ao, DiscountReason as ap, LineItemQuantityChangeType as aq, ActivityType as ar, OrderActivityTypeEnumActivityType as as, AttributionSource as at, ChannelType as au, AdditionalFeeSource as av, OrderActionType as aw, ChargeType as ax, WebhookIdentityType as ay, VersioningMode as az, type BulkDeleteImportedOrdersResponse as b, type ActivityContentOneOf as b$, type ProductName as b0, type CatalogReference as b1, type DescriptionLine as b2, type DescriptionLineValueOneOf as b3, type DescriptionLineDescriptionLineValueOneOf as b4, type DescriptionLineName as b5, type PlainTextValue as b6, type Color as b7, type FocalPoint as b8, type PhysicalProperties as b9, type Address as bA, type StreetAddress as bB, type AddressLocation as bC, type FullAddressContactDetails as bD, type VatId as bE, type V1ShippingInformation as bF, type DeliveryLogistics as bG, type DeliveryLogisticsAddressOneOf as bH, type PickupDetails as bI, type PickupAddress as bJ, type DeliveryTimeSlot as bK, type ShippingPrice as bL, type ShippingRegion as bM, type TaxSummary as bN, type OrderTaxInfo as bO, type OrderTaxBreakdown as bP, type AppliedDiscount as bQ, type AppliedDiscountDiscountSourceOneOf as bR, type Coupon as bS, type MerchantDiscount as bT, type MerchantDiscountMerchantDiscountReasonOneOf as bU, type DiscountRule as bV, type DiscountRuleName as bW, type LineItemDiscount as bX, type ItemCombination as bY, type ItemCombinationLineItem as bZ, type Activity as b_, type ItemType as ba, type ItemTypeItemTypeDataOneOf as bb, type ItemTaxFullDetails as bc, type LineItemTaxInfo as bd, type LineItemTaxBreakdown as be, type DigitalFile as bf, type SubscriptionInfo as bg, type SubscriptionTitle as bh, type SubscriptionDescription as bi, type SubscriptionSettings as bj, type FreeTrialPeriod as bk, type BillingAdjustment as bl, type BillingAdjustmentPriceSummary as bm, type PriceDescription as bn, type LocationAndQuantity as bo, type TaxableAddress as bp, type TaxableAddressTaxableAddressDataOneOf as bq, type ExtendedFields as br, type ModifierGroup as bs, type TranslatableString as bt, type ItemModifier as bu, type BuyerInfo as bv, type BuyerInfoIdOneOf as bw, type CurrencyConversionDetails as bx, type PriceSummary as by, type AddressWithContact as bz, type PreparePaymentCollectionOptions as c, type Location as c$, type CustomActivity as c0, type MerchantComment as c1, type OrderRefunded as c2, type OrderCreatedFromExchange as c3, type NewExchangeOrderCreated as c4, type LineItemExchangeData as c5, type DraftOrderChangesApplied as c6, type OrderChange as c7, type OrderChangeValueOneOf as c8, type LineItemChanges as c9, type PaymentPending as cA, type PaymentPendingPaymentDetailsOneOf as cB, type RegularPayment as cC, type RegularPaymentPaymentMethodDetailsOneOf as cD, type CreditCardDetails as cE, type PaymentCanceled as cF, type PaymentCanceledPaymentDetailsOneOf as cG, type PaymentDeclined as cH, type PaymentDeclinedPaymentDetailsOneOf as cI, type ReceiptCreated as cJ, type ReceiptCreatedReceiptInfoOneOf as cK, type WixReceipt as cL, type ExternalReceipt as cM, type ReceiptSent as cN, type ReceiptSentReceiptInfoOneOf as cO, type ChargebackCreated as cP, type ChargebackReversed as cQ, type CreatedBy as cR, type CreatedByStringOneOf as cS, type ChannelInfo as cT, type CustomField as cU, type BalanceSummary as cV, type Balance as cW, type AdditionalFee as cX, type FulfillmentStatusesAggregate as cY, type Tags as cZ, type TagList as c_, type LineItemQuantityChange as ca, type LineItemPriceChange as cb, type LineItemProductNameChange as cc, type LineItemDescriptionLineChange as cd, type LineItemModifiersChange as ce, type ManagedLineItem as cf, type ManagedDiscount as cg, type TranslatedValue as ch, type LineItemAmount as ci, type ManagedAdditionalFee as cj, type TotalPriceChange as ck, type ShippingInformationChange as cl, type ShippingInformation as cm, type SavedPaymentMethod as cn, type AuthorizedPaymentCreated as co, type AuthorizedPaymentCaptured as cp, type AuthorizedPaymentVoided as cq, type RefundInitiated as cr, type RefundedPayment as cs, type RefundedPaymentKindOneOf as ct, type RegularPaymentRefund as cu, type GiftCardPaymentRefund as cv, type MembershipPaymentRefund as cw, type PaymentRefunded as cx, type PaymentRefundFailed as cy, type RefundedAsStoreCredit as cz, type PreparePaymentCollectionResponse as d, type SendMerchantOrderReceivedPushResponse as d$, type OrderSettings as d0, type OrderSettingsAllowedActionsOneOf as d1, type CustomAllowedActions as d2, type FormInfo as d3, type FormIdentifier as d4, type PlatformFeeSummary as d5, type PlatformFee as d6, type OrderApproved as d7, type OrdersExperiments as d8, type OrderRejectedEventOrderRejected as d9, type VersionedDocumentUpdateOperation as dA, type VersionedDeleteByIdsOperation as dB, type VersionedDocumentId as dC, type TriggerReindexRequest as dD, type TriggerReindexResponse as dE, type Empty as dF, type BatchOfTriggerReindexOrderRequest as dG, type TriggerReindexOrderRequest as dH, type SendBuyerConfirmationEmailRequest as dI, type SendBuyerConfirmationEmailResponse as dJ, type SendBuyerPaymentsReceivedEmailRequest as dK, type SendBuyerPaymentsReceivedEmailResponse as dL, type SendBuyerPickupConfirmationEmailRequest as dM, type SendBuyerPickupConfirmationEmailResponse as dN, type BulkSendBuyerPickupConfirmationEmailsRequest as dO, type BulkSendBuyerPickupConfirmationEmailsResponse as dP, type SendBuyerShippingConfirmationEmailRequest as dQ, type SendBuyerShippingConfirmationEmailResponse as dR, type BulkSendBuyerShippingConfirmationEmailsRequest as dS, type BulkSendBuyerShippingConfirmationEmailsResponse as dT, type SendMerchantOrderReceivedNotificationRequest as dU, type SendMerchantOrderReceivedNotificationResponse as dV, type SendCancelRefundEmailRequest as dW, type SendCancelRefundEmailResponse as dX, type SendRefundEmailRequest as dY, type SendRefundEmailResponse as dZ, type SendMerchantOrderReceivedPushRequest as d_, type OrderItemsRestocked as da, type V1RestockItem as db, type OrderImported as dc, type ImportedOrderDeleted as dd, type ImportOrderRequest as de, type SetOrderNumberCounterRequest as df, type BulkDeleteImportedOrdersRequest as dg, type DomainEvent as dh, type DomainEventBodyOneOf as di, type EntityCreatedEvent as dj, type RestoreInfo as dk, type EntityUpdatedEvent as dl, type EntityDeletedEvent as dm, type ActionEvent as dn, type MessageEnvelope as dp, type IdentificationData as dq, type IdentificationDataIdOneOf as dr, type UpdateInternalDocumentsEvent as ds, type UpdateInternalDocumentsEventOperationOneOf as dt, type InternalDocument as du, type InternalDocumentUpdateOperation as dv, type DeleteByIdsOperation as dw, type DeleteByFilterOperation as dx, type InternalDocumentUpdateByFilterOperation as dy, type InternalUpdateExistingOperation as dz, type PreparePaymentCollectionApplicationErrors as e, type GiftCardPaymentDetails as e$, type PreviewEmailByTypeRequest as e0, type PreviewEmailByTypeResponse as e1, type PreviewRefundEmailRequest as e2, type RefundDetails as e3, type RefundItem as e4, type LineItemRefund as e5, type AdditionalFeeRefund as e6, type ShippingRefund as e7, type PreviewRefundEmailResponse as e8, type PreviewCancelEmailRequest as e9, type GetRefundabilityStatusRequest as eA, type Refundability as eB, type RefundabilityAdditionalRefundabilityInfoOneOf as eC, type CreatePaymentGatewayOrderRequest as eD, type ChargedBy as eE, type ChargeMembershipsRequest as eF, type MembershipChargeItem as eG, type MembershipName as eH, type ServiceProperties as eI, type ChargeMembershipsResponse as eJ, type TriggerRefundRequest as eK, type RefundSideEffects as eL, type RestockInfo as eM, type RestockItem as eN, type OrderTransactions as eO, type Payment as eP, type PaymentPaymentDetailsOneOf as eQ, type PaymentReceiptInfoOneOf as eR, type RegularPaymentDetails as eS, type RegularPaymentDetailsPaymentMethodDetailsOneOf as eT, type CreditCardPaymentMethodDetails as eU, type AuthorizationDetails as eV, type AuthorizationCapture as eW, type AuthorizationActionFailureDetails as eX, type AuthorizationVoid as eY, type V1ScheduledAction as eZ, type Chargeback as e_, type PreviewCancelEmailResponse as ea, type PreviewCancelRefundEmailRequest as eb, type PreviewCancelRefundEmailResponse as ec, type PreviewBuyerPaymentsReceivedEmailRequest as ed, type PreviewBuyerPaymentsReceivedEmailResponse as ee, type PreviewBuyerConfirmationEmailRequest as ef, type PreviewBuyerConfirmationEmailResponse as eg, type PreviewBuyerPickupConfirmationEmailRequest as eh, type PreviewBuyerPickupConfirmationEmailResponse as ei, type PreviewShippingConfirmationEmailRequest as ej, type PreviewShippingConfirmationEmailResponse as ek, type PreviewResendDownloadLinksEmailRequest as el, type PreviewResendDownloadLinksEmailResponse as em, type PreparePaymentCollectionRequest as en, type RedirectUrls as eo, type DelayedCaptureSettings as ep, type Duration as eq, type GetPaymentCollectabilityStatusRequest as er, type RecordManuallyCollectedPaymentRequest as es, type RecordManuallyCollectedPaymentResponse as et, type MarkOrderAsPaidRequest as eu, type BulkMarkOrdersAsPaidRequest as ev, type BulkOrderResult as ew, type ItemMetadata as ex, type ApplicationError as ey, type BulkActionMetadata as ez, type PaymentCollectionMarkOrderAsPaidApplicationErrors as f, type LineItemDelta as f$, type MembershipPaymentDetails as f0, type WixReceiptInfo as f1, type ExternalReceiptInfo as f2, type Refund as f3, type RefundTransaction as f4, type RefundStatusInfo as f5, type AggregatedRefundSummary as f6, type RefundItemsBreakdown as f7, type LineItemRefundSummary as f8, type CalculateRefundRequest as f9, type CreateOrderRequest as fA, type OrderCreationSettings as fB, type OrderCreateNotifications as fC, type CreateOrderResponse as fD, type UpdateOrderRequest as fE, type UpdateOrderResponse as fF, type BulkUpdateOrdersRequest as fG, type CommitDeltasRequest as fH, type DraftOrderDiffs as fI, type DraftOrderDiffsShippingUpdateInfoOneOf as fJ, type DraftOrderDiffsBuyerUpdateInfoOneOf as fK, type DraftOrderDiffsBillingUpdateInfoOneOf as fL, type DraftOrderDiffsRecipientUpdateInfoOneOf as fM, type V1LineItemDelta as fN, type V1LineItemDeltaDeltaOneOf as fO, type OrderLineItemChangedDetails as fP, type ItemChangedDetails as fQ, type AppliedDiscountDelta as fR, type AppliedDiscountDeltaDeltaOneOf as fS, type AdditionalFeeDelta as fT, type AdditionalFeeDeltaDeltaOneOf as fU, type DraftOrderCommitSettings as fV, type InventoryUpdateDetails as fW, type CommitDeltasResponse as fX, type OrderDeltasCommitted as fY, type CommittedDiffs as fZ, type CommittedDiffsShippingUpdateInfoOneOf as f_, type CalculateRefundItemRequest as fa, type CalculateRefundResponse as fb, type CalculateRefundItemResponse as fc, type VoidAuthorizedPaymentsRequest as fd, type CaptureAuthorizedPaymentsRequest as fe, type ChargeSavedPaymentMethodRequest as ff, type ChargeSavedPaymentMethodResponse as fg, type DiffmatokyPayload as fh, type ErrorInformation as fi, type GetOrderRequest as fj, type GetOrderResponse as fk, type InternalQueryOrdersRequest as fl, type PlatformQuery as fm, type PlatformQueryPagingMethodOneOf as fn, type Sorting as fo, type PlatformPaging as fp, type CursorPaging as fq, type InternalQueryOrdersResponse as fr, type PlatformPagingMetadata as fs, type Cursors as ft, type QueryOrderRequest as fu, type QueryOrderResponse as fv, type SearchOrdersRequest as fw, type CursorSearch as fx, type CursorSearchPagingMethodOneOf as fy, type CursorPagingMetadata as fz, type BulkMarkOrdersAsPaidResponse as g, type MarkAsFulfilledResponse as g$, type LineItemDeltaDeltaOneOf as g0, type ArchiveOrderRequest as g1, type ArchiveOrderResponse as g2, type BulkArchiveOrdersRequest as g3, type BulkArchiveOrdersResponse as g4, type BulkArchiveOrdersByFilterRequest as g5, type BulkArchiveOrdersByFilterResponse as g6, type UnArchiveOrderRequest as g7, type UnArchiveOrderResponse as g8, type BulkUnArchiveOrdersRequest as g9, type TrackingNumberEdited as gA, type TrackingLinkAdded as gB, type ShippingConfirmationEmailSent as gC, type InvoiceAdded as gD, type InvoiceSent as gE, type FulfillerEmailSent as gF, type ShippingAddressEdited as gG, type EmailEdited as gH, type PickupReadyEmailSent as gI, type OrderPartiallyPaid as gJ, type OrderPending as gK, type OrderRejected as gL, type AddInternalActivityResponse as gM, type AddActivityRequest as gN, type PublicActivityContentOneOf as gO, type AddActivitiesRequest as gP, type UpdateActivityRequest as gQ, type DeleteActivityRequest as gR, type UpdateLineItemsDescriptionLinesRequest as gS, type LineItemUpdate as gT, type UpdateLineItemsDescriptionLinesResponse as gU, type MarkOrderAsSeenByHumanRequest as gV, type MarkOrderAsSeenByHumanResponse as gW, type CancelOrderRequest as gX, type OrderCanceledEventOrderCanceled as gY, type UpdateOrderStatusRequest as gZ, type MarkAsFulfilledRequest as g_, type BulkUnArchiveOrdersResponse as ga, type BulkUnArchiveOrdersByFilterRequest as gb, type BulkUnArchiveOrdersByFilterResponse as gc, type UpdateBuyerInfoRequest as gd, type BuyerInfoUpdate as ge, type UpdateBuyerInfoResponse as gf, type UpdateBuyerEmailRequest as gg, type UpdateBuyerEmailResponse as gh, type UpdateOrderShippingAddressRequest as gi, type UpdateOrderShippingAddressResponse as gj, type UpdateBillingContactDetailsRequest as gk, type UpdateBillingContactDetailsResponse as gl, type UpdateOrderLineItemRequest as gm, type UpdateOrderLineItemsRequest as gn, type MaskedOrderLineItem as go, type UpdateOrderLineItemsResponse as gp, type AddInternalActivityRequest as gq, type InternalActivity as gr, type InternalActivityContentOneOf as gs, type OrderPlaced as gt, type OrderPaid as gu, type OrderFulfilled as gv, type OrderNotFulfilled as gw, type OrderCanceled as gx, type DownloadLinkSent as gy, type TrackingNumberAdded as gz, type GetRefundabilityStatusResponse as h, type Payments as h$, type FulfillmentStatusUpdated as h0, type BulkMarkAsFulfilledRequest as h1, type BulkMarkAsFulfilledResponse as h2, type BulkMarkAsFulfilledByFilterRequest as h3, type BulkMarkAsFulfilledByFilterResponse as h4, type MarkAsUnfulfilledRequest as h5, type MarkAsUnfulfilledResponse as h6, type BulkMarkAsUnfulfilledRequest as h7, type BulkMarkAsUnfulfilledResponse as h8, type BulkMarkAsUnfulfilledByFilterRequest as h9, type InvoiceSentEvent as hA, type IdAndVersion as hB, type InvoiceFields as hC, type Customer as hD, type Email as hE, type QuotesAddress as hF, type AddressDescription as hG, type Phone as hH, type Company as hI, type CommonAddress as hJ, type CommonAddressStreetOneOf as hK, type Subdivision as hL, type StandardDetails as hM, type InvoiceDates as hN, type LineItems as hO, type LineItem as hP, type BigDecimalWrapper as hQ, type LineItemTax as hR, type Source as hS, type LineItemMetaData as hT, type Locale as hU, type TotalPrice as hV, type ItemizedFee as hW, type Discount as hX, type DiscountOneDiscountTypeOneOf as hY, type CalculatedTaxes as hZ, type CalculatedTax as h_, type BulkMarkAsUnfulfilledByFilterResponse as ha, type BulkSetBusinessLocationRequest as hb, type BulkSetBusinessLocationResponse as hc, type BulkSetBusinessLocationResult as hd, type V1MarkOrderAsPaidRequest as he, type V1MarkOrderAsPaidResponse as hf, type PaymentStatusUpdated as hg, type V1BulkMarkOrdersAsPaidRequest as hh, type V1BulkMarkOrdersAsPaidResponse as hi, type V1CreatePaymentGatewayOrderRequest as hj, type V1CreatePaymentGatewayOrderResponse as hk, type GetShipmentsRequest as hl, type GetShipmentsResponse as hm, type AggregateOrdersRequest as hn, type DecrementItemsQuantityRequest as ho, type DecrementData as hp, type DecrementItemsQuantityResponse as hq, type BulkUpdateOrderTagsRequest as hr, type BulkUpdateOrderTagsResult as hs, type Task as ht, type TaskKey as hu, type TaskAction as hv, type TaskActionActionOneOf as hw, type Complete as hx, type Cancel as hy, type Reschedule as hz, type PaymentCollectionCreatePaymentGatewayOrderOptions as i, onOrderApproved as i$, type InvoicesPayment as i0, type MetaData as i1, type InvoiceDynamicPriceTotals as i2, type CustomFieldValue as i3, type Value as i4, type Deposit as i5, type BaseEventMetadata as i6, type EventMetadata as i7, type OrderSearchSpec as i8, type DescriptionLineTypeWithLiterals as i9, type ScheduledActionWithLiterals as iA, type DurationUnitWithLiterals as iB, type PaymentCollectabilityStatusWithLiterals as iC, type RefundableStatusWithLiterals as iD, type NonRefundableReasonWithLiterals as iE, type ManuallyRefundableReasonWithLiterals as iF, type RestockTypeWithLiterals as iG, type TransactionStatusWithLiterals as iH, type AuthorizationCaptureStatusWithLiterals as iI, type AuthorizationVoidStatusWithLiterals as iJ, type ReasonWithLiterals as iK, type ActionTypeWithLiterals as iL, type ChargebackStatusWithLiterals as iM, type MembershipPaymentStatusWithLiterals as iN, type RefundStatusWithLiterals as iO, type SortOrderWithLiterals as iP, type OrderApprovalStrategyWithLiterals as iQ, type DeltaPaymentOptionTypeWithLiterals as iR, type InventoryActionWithLiterals as iS, type PlacementWithLiterals as iT, type SubdivisionTypeWithLiterals as iU, type SourceTypeWithLiterals as iV, type CustomFieldGroupWithLiterals as iW, type ValueTypeWithLiterals as iX, type DepositTypeWithLiterals as iY, type InvoiceStatusWithLiterals as iZ, type CommonSearchWithEntityContext as i_, type ItemTypePresetWithLiterals as ia, type PaymentOptionTypeWithLiterals as ib, type JurisdictionTypeWithLiterals as ic, type SubscriptionFrequencyWithLiterals as id, type AdjustmentTypeWithLiterals as ie, type TaxableAddressTypeWithLiterals as ig, type PaymentStatusWithLiterals as ih, type FulfillmentStatusWithLiterals as ii, type WeightUnitWithLiterals as ij, type VatTypeWithLiterals as ik, type PickupMethodWithLiterals as il, type DiscountTypeWithLiterals as im, type DiscountReasonWithLiterals as io, type LineItemQuantityChangeTypeWithLiterals as ip, type ActivityTypeWithLiterals as iq, type OrderActivityTypeEnumActivityTypeWithLiterals as ir, type AttributionSourceWithLiterals as is, type ChannelTypeWithLiterals as it, type AdditionalFeeSourceWithLiterals as iu, type OrderActionTypeWithLiterals as iv, type ChargeTypeWithLiterals as iw, type WebhookIdentityTypeWithLiterals as ix, type VersioningModeWithLiterals as iy, type PreviewEmailTypeWithLiterals as iz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as j, onOrderUpdated as j0, onOrderCanceled as j1, onOrderCreated as j2, onOrderPaymentStatusUpdated as j3, importOrder as j4, setOrderNumberCounter as j5, bulkDeleteImportedOrders as j6, preparePaymentCollection as j7, getPaymentCollectabilityStatus as j8, recordManuallyCollectedPayment as j9, paymentCollectionMarkOrderAsPaid as ja, paymentCollectionBulkMarkOrdersAsPaid as jb, getRefundabilityStatus as jc, paymentCollectionCreatePaymentGatewayOrder as jd, chargeMemberships as je, triggerRefund as jf, voidAuthorizedPayments as jg, captureAuthorizedPayments as jh, getOrder as ji, createOrder as jj, updateOrder as jk, bulkUpdateOrders as jl, updateOrderLineItem as jm, addActivity as jn, addActivities as jo, updateActivity as jp, deleteActivity as jq, cancelOrder as jr, updateOrderStatus as js, aggregateOrders as jt, bulkUpdateOrderTags as ju, 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 UpdateOrderLineItemIdentifiers, E as UpdateOrderLineItem, F as UpdateOrderLineItemResponse, H as PublicActivity, J as AddActivityResponse, K as AddActivitiesOptions, L as AddActivitiesResponse, N as UpdateActivityIdentifiers, Q as UpdateActivityResponse, W as DeleteActivityIdentifiers, X as DeleteActivityResponse, Y as CancelOrderOptions, Z as CancelOrderResponse, _ as CancelOrderApplicationErrors, $ as OrderStatusWithLiterals, a0 as UpdateOrderStatusResponse, a1 as UpdateOrderStatusApplicationErrors, a2 as AggregateOrdersOptions, a3 as AggregateOrdersResponse, a4 as BulkUpdateOrderTagsOptions, a5 as BulkUpdateOrderTagsResponse, a6 as OrderApprovedEnvelope, a7 as OrderUpdatedEnvelope, a8 as OrderCanceledEnvelope, a9 as OrderCreatedEnvelope, aa as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-
|
|
3
|
-
export { dl as ActionEvent, aM as ActionType, iJ as ActionTypeWithLiterals, bY as Activity, bZ as ActivityContentOneOf, ar as ActivityType, io as ActivityTypeWithLiterals, gN as AddActivitiesRequest, gL as AddActivityRequest, go as AddInternalActivityRequest, gK as AddInternalActivityResponse, cV as AdditionalFee, fR as AdditionalFeeDelta, fS as AdditionalFeeDeltaDeltaOneOf, e4 as AdditionalFeeRefund, av as AdditionalFeeSource, is as AdditionalFeeSourceWithLiterals, bA as Address, hE as AddressDescription, bC as AddressLocation, bz as AddressWithContact, ag as AdjustmentType, ic as AdjustmentTypeWithLiterals, hl as AggregateOrdersRequest, f4 as AggregatedRefundSummary, ew as ApplicationError, bQ as AppliedDiscount, fP as AppliedDiscountDelta, fQ as AppliedDiscountDeltaDeltaOneOf, bR as AppliedDiscountDiscountSourceOneOf, f$ as ArchiveOrderRequest, g0 as ArchiveOrderResponse, at as AttributionSource, iq as AttributionSourceWithLiterals, eV as AuthorizationActionFailureDetails, eU as AuthorizationCapture, aJ as AuthorizationCaptureStatus, iG as AuthorizationCaptureStatusWithLiterals, eT as AuthorizationDetails, eW as AuthorizationVoid, aK as AuthorizationVoidStatus, iH as AuthorizationVoidStatusWithLiterals, cn as AuthorizedPaymentCaptured, cm as AuthorizedPaymentCreated, co as AuthorizedPaymentVoided, cU as Balance, cT as BalanceSummary, i4 as BaseEventMetadata, dE as BatchOfTriggerReindexOrderRequest, hO as BigDecimalWrapper, bl as BillingAdjustment, bm as BillingAdjustmentPriceSummary, ex as BulkActionMetadata, g3 as BulkArchiveOrdersByFilterRequest, g4 as BulkArchiveOrdersByFilterResponse, g1 as BulkArchiveOrdersRequest, g2 as BulkArchiveOrdersResponse, de as BulkDeleteImportedOrdersRequest, h1 as BulkMarkAsFulfilledByFilterRequest, h2 as BulkMarkAsFulfilledByFilterResponse, g$ as BulkMarkAsFulfilledRequest, h0 as BulkMarkAsFulfilledResponse, h7 as BulkMarkAsUnfulfilledByFilterRequest, h8 as BulkMarkAsUnfulfilledByFilterResponse, h5 as BulkMarkAsUnfulfilledRequest, h6 as BulkMarkAsUnfulfilledResponse, et as BulkMarkOrdersAsPaidRequest, eu as BulkOrderResult, dM as BulkSendBuyerPickupConfirmationEmailsRequest, dN as BulkSendBuyerPickupConfirmationEmailsResponse, dQ as BulkSendBuyerShippingConfirmationEmailsRequest, dR as BulkSendBuyerShippingConfirmationEmailsResponse, h9 as BulkSetBusinessLocationRequest, ha as BulkSetBusinessLocationResponse, hb as BulkSetBusinessLocationResult, g9 as BulkUnArchiveOrdersByFilterRequest, ga as BulkUnArchiveOrdersByFilterResponse, g7 as BulkUnArchiveOrdersRequest, g8 as BulkUnArchiveOrdersResponse, hp as BulkUpdateOrderTagsRequest, hq as BulkUpdateOrderTagsResult, fE as BulkUpdateOrdersRequest, bv as BuyerInfo, bw as BuyerInfoIdOneOf, gc as BuyerInfoUpdate, f8 as CalculateRefundItemRequest, fa as CalculateRefundItemResponse, f7 as CalculateRefundRequest, f9 as CalculateRefundResponse, hY as CalculatedTax, hX as CalculatedTaxes, hw as Cancel, gV as CancelOrderRequest, fc as CaptureAuthorizedPaymentsRequest, b1 as CatalogReference, cR as ChannelInfo, au as ChannelType, ir as ChannelTypeWithLiterals, eD as ChargeMembershipsRequest, eH as ChargeMembershipsResponse, fd as ChargeSavedPaymentMethodRequest, fe as ChargeSavedPaymentMethodResponse, ax as ChargeType, iu as ChargeTypeWithLiterals, eY as Chargeback, cN as ChargebackCreated, cO as ChargebackReversed, aN as ChargebackStatus, iK as ChargebackStatusWithLiterals, eC as ChargedBy, b7 as Color, fF as CommitDeltasRequest, fV as CommitDeltasResponse, fX as CommittedDiffs, fY as CommittedDiffsShippingUpdateInfoOneOf, hH as CommonAddress, hI as CommonAddressStreetOneOf, iY as CommonSearchWithEntityContext, hG as Company, hv as Complete, bS as Coupon, fy as CreateOrderRequest, fB as CreateOrderResponse, eB as CreatePaymentGatewayOrderRequest, cP as CreatedBy, cQ as CreatedByStringOneOf, cC as CreditCardDetails, eS as CreditCardPaymentMethodDetails, bx as CurrencyConversionDetails, fo as CursorPaging, fx as CursorPagingMetadata, fv as CursorSearch, fw as CursorSearchPagingMethodOneOf, fr as Cursors, b_ as CustomActivity, d0 as CustomAllowedActions, cS as CustomField, aX as CustomFieldGroup, iU as CustomFieldGroupWithLiterals, i1 as CustomFieldValue, hB as Customer, hn as DecrementData, hm as DecrementItemsQuantityRequest, ho as DecrementItemsQuantityResponse, en as DelayedCaptureSettings, gP as DeleteActivityRequest, dv as DeleteByFilterOperation, du as DeleteByIdsOperation, bG as DeliveryLogistics, bH as DeliveryLogisticsAddressOneOf, bK as DeliveryTimeSlot, aS as DeltaPaymentOptionType, iP as DeltaPaymentOptionTypeWithLiterals, i3 as Deposit, aZ as DepositType, iW as DepositTypeWithLiterals, b2 as DescriptionLine, b4 as DescriptionLineDescriptionLineValueOneOf, b5 as DescriptionLineName, ab as DescriptionLineType, i7 as DescriptionLineTypeWithLiterals, b3 as DescriptionLineValueOneOf, ff as DiffmatokyPayload, bf as DigitalFile, hV as Discount, hW as DiscountOneDiscountTypeOneOf, ap as DiscountReason, il as DiscountReasonWithLiterals, bV as DiscountRule, bW as DiscountRuleName, ao as DiscountType, ik as DiscountTypeWithLiterals, df as DomainEvent, dg as DomainEventBodyOneOf, gw as DownloadLinkSent, c4 as DraftOrderChangesApplied, fT as DraftOrderCommitSettings, fG as DraftOrderDiffs, fJ as DraftOrderDiffsBillingUpdateInfoOneOf, fI as DraftOrderDiffsBuyerUpdateInfoOneOf, fK as DraftOrderDiffsRecipientUpdateInfoOneOf, fH as DraftOrderDiffsShippingUpdateInfoOneOf, eo as Duration, aC as DurationUnit, iz as DurationUnitWithLiterals, hC as Email, gF as EmailEdited, dD as Empty, dh as EntityCreatedEvent, dk as EntityDeletedEvent, dj as EntityUpdatedEvent, fg as ErrorInformation, i5 as EventMetadata, br as ExtendedFields, cK as ExternalReceipt, f0 as ExternalReceiptInfo, b8 as FocalPoint, d2 as FormIdentifier, d1 as FormInfo, bk as FreeTrialPeriod, gD as FulfillerEmailSent, aj as FulfillmentStatus, g_ as FulfillmentStatusUpdated, ig as FulfillmentStatusWithLiterals, cW as FulfillmentStatusesAggregate, bD as FullAddressContactDetails, fh as GetOrderRequest, fi as GetOrderResponse, ep as GetPaymentCollectabilityStatusRequest, ey as GetRefundabilityStatusRequest, hj as GetShipmentsRequest, hk as GetShipmentsResponse, eZ as GiftCardPaymentDetails, ct as GiftCardPaymentRefund, hz as IdAndVersion, dn as IdentificationData, dp as IdentificationDataIdOneOf, dc as ImportOrderRequest, db as ImportedOrderDeleted, gp as InternalActivity, gq as InternalActivityContentOneOf, ds as InternalDocument, dw as InternalDocumentUpdateByFilterOperation, dt as InternalDocumentUpdateOperation, fj as InternalQueryOrdersRequest, fp as InternalQueryOrdersResponse, dx as InternalUpdateExistingOperation, aT as InventoryAction, iQ as InventoryActionWithLiterals, fU as InventoryUpdateDetails, gB as InvoiceAdded, hL as InvoiceDates, i0 as InvoiceDynamicPriceTotals, hA as InvoiceFields, gC as InvoiceSent, hy as InvoiceSentEvent, a_ as InvoiceStatus, iX as InvoiceStatusWithLiterals, h_ as InvoicesPayment, fO as ItemChangedDetails, ev as ItemMetadata, bu as ItemModifier, bc as ItemTaxFullDetails, ba as ItemType, bb as ItemTypeItemTypeDataOneOf, ac as ItemTypePreset, i8 as ItemTypePresetWithLiterals, hU as ItemizedFee, ae as JurisdictionType, ia as JurisdictionTypeWithLiterals, hN as LineItem, cg as LineItemAmount, c7 as LineItemChanges, fZ as LineItemDelta, f_ as LineItemDeltaDeltaOneOf, cb as LineItemDescriptionLineChange, bX as LineItemDiscount, c3 as LineItemExchangeData, hR as LineItemMetaData, cc as LineItemModifiersChange, c9 as LineItemPriceChange, ca as LineItemProductNameChange, c8 as LineItemQuantityChange, aq as LineItemQuantityChangeType, im as LineItemQuantityChangeTypeWithLiterals, e3 as LineItemRefund, f6 as LineItemRefundSummary, hP as LineItemTax, be as LineItemTaxBreakdown, bd as LineItemTaxInfo, gR as LineItemUpdate, hM as LineItems, hS as Locale, cZ as Location, bo as LocationAndQuantity, ch as ManagedAdditionalFee, ce as ManagedDiscount, cd as ManagedLineItem, aG as ManuallyRefundableReason, iD as ManuallyRefundableReasonWithLiterals, gY as MarkAsFulfilledRequest, gZ as MarkAsFulfilledResponse, h3 as MarkAsUnfulfilledRequest, h4 as MarkAsUnfulfilledResponse, es as MarkOrderAsPaidRequest, gT as MarkOrderAsSeenByHumanRequest, gU as MarkOrderAsSeenByHumanResponse, gm as MaskedOrderLineItem, eE as MembershipChargeItem, eF as MembershipName, e_ as MembershipPaymentDetails, cu as MembershipPaymentRefund, aO as MembershipPaymentStatus, iL as MembershipPaymentStatusWithLiterals, b$ as MerchantComment, bT as MerchantDiscount, bU as MerchantDiscountMerchantDiscountReasonOneOf, dm as MessageEnvelope, h$ as MetaData, bs as ModifierGroup, c2 as NewExchangeOrderCreated, aF as NonRefundableReason, iC as NonRefundableReasonWithLiterals, aw as OrderActionType, it as OrderActionTypeWithLiterals, as as OrderActivityTypeEnumActivityType, ip as OrderActivityTypeEnumActivityTypeWithLiterals, aR as OrderApprovalStrategy, iO as OrderApprovalStrategyWithLiterals, d5 as OrderApproved, gv as OrderCanceled, gW as OrderCanceledEventOrderCanceled, c5 as OrderChange, c6 as OrderChangeValueOneOf, fA as OrderCreateNotifications, c1 as OrderCreatedFromExchange, fz as OrderCreationSettings, fW as OrderDeltasCommitted, gt as OrderFulfilled, da as OrderImported, d8 as OrderItemsRestocked, a$ as OrderLineItem, fN as OrderLineItemChangedDetails, gu as OrderNotFulfilled, gs as OrderPaid, gH as OrderPartiallyPaid, gI as OrderPending, gr as OrderPlaced, c0 as OrderRefunded, gJ as OrderRejected, d7 as OrderRejectedEventOrderRejected, i6 as OrderSearchSpec, c_ as OrderSettings, c$ as OrderSettingsAllowedActionsOneOf, an as OrderStatus, bP as OrderTaxBreakdown, bO as OrderTaxInfo, eM as OrderTransactions, d6 as OrdersExperiments, eN as Payment, cD as PaymentCanceled, cE as PaymentCanceledPaymentDetailsOneOf, aD as PaymentCollectabilityStatus, iA as PaymentCollectabilityStatusWithLiterals, cF as PaymentDeclined, cG as PaymentDeclinedPaymentDetailsOneOf, ad as PaymentOptionType, i9 as PaymentOptionTypeWithLiterals, eO as PaymentPaymentDetailsOneOf, cy as PaymentPending, cz as PaymentPendingPaymentDetailsOneOf, eP as PaymentReceiptInfoOneOf, cw as PaymentRefundFailed, cv as PaymentRefunded, ai as PaymentStatus, he as PaymentStatusUpdated, ie as PaymentStatusWithLiterals, hZ as Payments, hF as Phone, b9 as PhysicalProperties, bJ as PickupAddress, bI as PickupDetails, am as PickupMethod, ij as PickupMethodWithLiterals, gG as PickupReadyEmailSent, aU as Placement, iR as PlacementWithLiterals, b6 as PlainTextValue, d4 as PlatformFee, d3 as PlatformFeeSummary, fn as PlatformPaging, fq as PlatformPagingMetadata, fk as PlatformQuery, fl as PlatformQueryPagingMethodOneOf, el as PreparePaymentCollectionRequest, ed as PreviewBuyerConfirmationEmailRequest, ee as PreviewBuyerConfirmationEmailResponse, eb as PreviewBuyerPaymentsReceivedEmailRequest, ec as PreviewBuyerPaymentsReceivedEmailResponse, ef as PreviewBuyerPickupConfirmationEmailRequest, eg as PreviewBuyerPickupConfirmationEmailResponse, e7 as PreviewCancelEmailRequest, e8 as PreviewCancelEmailResponse, e9 as PreviewCancelRefundEmailRequest, ea as PreviewCancelRefundEmailResponse, d_ as PreviewEmailByTypeRequest, d$ as PreviewEmailByTypeResponse, aA as PreviewEmailType, ix as PreviewEmailTypeWithLiterals, e0 as PreviewRefundEmailRequest, e6 as PreviewRefundEmailResponse, ej as PreviewResendDownloadLinksEmailRequest, ek as PreviewResendDownloadLinksEmailResponse, eh as PreviewShippingConfirmationEmailRequest, ei as PreviewShippingConfirmationEmailResponse, bn as PriceDescription, by as PriceSummary, b0 as ProductName, gM as PublicActivityContentOneOf, fs as QueryOrderRequest, ft as QueryOrderResponse, hD as QuotesAddress, aL as Reason, iI as ReasonWithLiterals, cH as ReceiptCreated, cI as ReceiptCreatedReceiptInfoOneOf, cL as ReceiptSent, cM as ReceiptSentReceiptInfoOneOf, eq as RecordManuallyCollectedPaymentRequest, er as RecordManuallyCollectedPaymentResponse, em as RedirectUrls, f1 as Refund, e1 as RefundDetails, cp as RefundInitiated, e2 as RefundItem, f5 as RefundItemsBreakdown, eJ as RefundSideEffects, aP as RefundStatus, f3 as RefundStatusInfo, iM as RefundStatusWithLiterals, f2 as RefundTransaction, ez as Refundability, eA as RefundabilityAdditionalRefundabilityInfoOneOf, aE as RefundableStatus, iB as RefundableStatusWithLiterals, cx as RefundedAsStoreCredit, cq as RefundedPayment, cr as RefundedPaymentKindOneOf, cA as RegularPayment, eQ as RegularPaymentDetails, eR as RegularPaymentDetailsPaymentMethodDetailsOneOf, cB as RegularPaymentPaymentMethodDetailsOneOf, cs as RegularPaymentRefund, hx as Reschedule, eK as RestockInfo, eL as RestockItem, aH as RestockType, iE as RestockTypeWithLiterals, di as RestoreInfo, cl as SavedPaymentMethod, aB as ScheduledAction, iy as ScheduledActionWithLiterals, fu as SearchOrdersRequest, dG as SendBuyerConfirmationEmailRequest, dH as SendBuyerConfirmationEmailResponse, dI as SendBuyerPaymentsReceivedEmailRequest, dJ as SendBuyerPaymentsReceivedEmailResponse, dK as SendBuyerPickupConfirmationEmailRequest, dL as SendBuyerPickupConfirmationEmailResponse, dO as SendBuyerShippingConfirmationEmailRequest, dP as SendBuyerShippingConfirmationEmailResponse, dU as SendCancelRefundEmailRequest, dV as SendCancelRefundEmailResponse, dS as SendMerchantOrderReceivedNotificationRequest, dT as SendMerchantOrderReceivedNotificationResponse, dY as SendMerchantOrderReceivedPushRequest, dZ as SendMerchantOrderReceivedPushResponse, dW as SendRefundEmailRequest, dX as SendRefundEmailResponse, eG as ServiceProperties, dd as SetOrderNumberCounterRequest, gE as ShippingAddressEdited, gA as ShippingConfirmationEmailSent, ck as ShippingInformation, cj as ShippingInformationChange, bL as ShippingPrice, e5 as ShippingRefund, bM as ShippingRegion, aQ as SortOrder, iN as SortOrderWithLiterals, fm as Sorting, hQ as Source, aW as SourceType, iT as SourceTypeWithLiterals, hK as StandardDetails, bB as StreetAddress, hJ as Subdivision, aV as SubdivisionType, iS as SubdivisionTypeWithLiterals, bi as SubscriptionDescription, af as SubscriptionFrequency, ib as SubscriptionFrequencyWithLiterals, bg as SubscriptionInfo, bj as SubscriptionSettings, bh as SubscriptionTitle, cY as TagList, cX as Tags, hr as Task, ht as TaskAction, hu as TaskActionActionOneOf, hs as TaskKey, bN as TaxSummary, bp as TaxableAddress, bq as TaxableAddressTaxableAddressDataOneOf, ah as TaxableAddressType, id as TaxableAddressTypeWithLiterals, hT as TotalPrice, ci as TotalPriceChange, gz as TrackingLinkAdded, gx as TrackingNumberAdded, gy as TrackingNumberEdited, aI as TransactionStatus, iF as TransactionStatusWithLiterals, bt as TranslatableString, cf as TranslatedValue, eI as TriggerRefundRequest, dF as TriggerReindexOrderRequest, dB as TriggerReindexRequest, dC as TriggerReindexResponse, g5 as UnArchiveOrderRequest, g6 as UnArchiveOrderResponse, gO as UpdateActivityRequest, gi as UpdateBillingContactDetailsRequest, gj as UpdateBillingContactDetailsResponse, ge as UpdateBuyerEmailRequest, gf as UpdateBuyerEmailResponse, gb as UpdateBuyerInfoRequest, gd as UpdateBuyerInfoResponse, dq as UpdateInternalDocumentsEvent, dr as UpdateInternalDocumentsEventOperationOneOf, gQ as UpdateLineItemsDescriptionLinesRequest, gS as UpdateLineItemsDescriptionLinesResponse, gk as UpdateOrderLineItemRequest, gl as UpdateOrderLineItemsRequest, gn as UpdateOrderLineItemsResponse, fC as UpdateOrderRequest, fD as UpdateOrderResponse, gg as UpdateOrderShippingAddressRequest, gh as UpdateOrderShippingAddressResponse, gX as UpdateOrderStatusRequest, hf as V1BulkMarkOrdersAsPaidRequest, hg as V1BulkMarkOrdersAsPaidResponse, hh as V1CreatePaymentGatewayOrderRequest, hi as V1CreatePaymentGatewayOrderResponse, fL as V1LineItemDelta, fM as V1LineItemDeltaDeltaOneOf, hc as V1MarkOrderAsPaidRequest, hd as V1MarkOrderAsPaidResponse, d9 as V1RestockItem, eX as V1ScheduledAction, bF as V1ShippingInformation, i2 as Value, aY as ValueType, iV as ValueTypeWithLiterals, bE as VatId, al as VatType, ii as VatTypeWithLiterals, dz as VersionedDeleteByIdsOperation, dA as VersionedDocumentId, dy as VersionedDocumentUpdateOperation, az as VersioningMode, iw as VersioningModeWithLiterals, fb as VoidAuthorizedPaymentsRequest, ay as WebhookIdentityType, iv as WebhookIdentityTypeWithLiterals, ak as WeightUnit, ih as WeightUnitWithLiterals, cJ as WixReceipt, e$ as WixReceiptInfo } from './ecom-v1-order-orders.universal-DG7Uu3-L.mjs';
|
|
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 UpdateOrderLineItemIdentifiers, E as UpdateOrderLineItem, F as UpdateOrderLineItemResponse, H as PublicActivity, J as AddActivityResponse, K as AddActivitiesOptions, L as AddActivitiesResponse, N as UpdateActivityIdentifiers, Q as UpdateActivityResponse, W as DeleteActivityIdentifiers, X as DeleteActivityResponse, Y as CancelOrderOptions, Z as CancelOrderResponse, _ as CancelOrderApplicationErrors, $ as OrderStatusWithLiterals, a0 as UpdateOrderStatusResponse, a1 as UpdateOrderStatusApplicationErrors, a2 as AggregateOrdersOptions, a3 as AggregateOrdersResponse, a4 as BulkUpdateOrderTagsOptions, a5 as BulkUpdateOrderTagsResponse, a6 as OrderApprovedEnvelope, a7 as OrderUpdatedEnvelope, a8 as OrderCanceledEnvelope, a9 as OrderCreatedEnvelope, aa as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-CxuQcKw1.mjs';
|
|
3
|
+
export { dn as ActionEvent, aM as ActionType, iL as ActionTypeWithLiterals, b_ as Activity, b$ as ActivityContentOneOf, ar as ActivityType, iq as ActivityTypeWithLiterals, gP as AddActivitiesRequest, gN as AddActivityRequest, gq as AddInternalActivityRequest, gM as AddInternalActivityResponse, cX as AdditionalFee, fT as AdditionalFeeDelta, fU as AdditionalFeeDeltaDeltaOneOf, e6 as AdditionalFeeRefund, av as AdditionalFeeSource, iu as AdditionalFeeSourceWithLiterals, bA as Address, hG as AddressDescription, bC as AddressLocation, bz as AddressWithContact, ag as AdjustmentType, ie as AdjustmentTypeWithLiterals, hn as AggregateOrdersRequest, f6 as AggregatedRefundSummary, ey as ApplicationError, bQ as AppliedDiscount, fR as AppliedDiscountDelta, fS as AppliedDiscountDeltaDeltaOneOf, bR as AppliedDiscountDiscountSourceOneOf, g1 as ArchiveOrderRequest, g2 as ArchiveOrderResponse, at as AttributionSource, is as AttributionSourceWithLiterals, eX as AuthorizationActionFailureDetails, eW as AuthorizationCapture, aJ as AuthorizationCaptureStatus, iI as AuthorizationCaptureStatusWithLiterals, eV as AuthorizationDetails, eY as AuthorizationVoid, aK as AuthorizationVoidStatus, iJ as AuthorizationVoidStatusWithLiterals, cp as AuthorizedPaymentCaptured, co as AuthorizedPaymentCreated, cq as AuthorizedPaymentVoided, cW as Balance, cV as BalanceSummary, i6 as BaseEventMetadata, dG as BatchOfTriggerReindexOrderRequest, hQ as BigDecimalWrapper, bl as BillingAdjustment, bm as BillingAdjustmentPriceSummary, ez as BulkActionMetadata, g5 as BulkArchiveOrdersByFilterRequest, g6 as BulkArchiveOrdersByFilterResponse, g3 as BulkArchiveOrdersRequest, g4 as BulkArchiveOrdersResponse, dg as BulkDeleteImportedOrdersRequest, h3 as BulkMarkAsFulfilledByFilterRequest, h4 as BulkMarkAsFulfilledByFilterResponse, h1 as BulkMarkAsFulfilledRequest, h2 as BulkMarkAsFulfilledResponse, h9 as BulkMarkAsUnfulfilledByFilterRequest, ha as BulkMarkAsUnfulfilledByFilterResponse, h7 as BulkMarkAsUnfulfilledRequest, h8 as BulkMarkAsUnfulfilledResponse, ev as BulkMarkOrdersAsPaidRequest, ew as BulkOrderResult, dO as BulkSendBuyerPickupConfirmationEmailsRequest, dP as BulkSendBuyerPickupConfirmationEmailsResponse, dS as BulkSendBuyerShippingConfirmationEmailsRequest, dT as BulkSendBuyerShippingConfirmationEmailsResponse, hb as BulkSetBusinessLocationRequest, hc as BulkSetBusinessLocationResponse, hd as BulkSetBusinessLocationResult, gb as BulkUnArchiveOrdersByFilterRequest, gc as BulkUnArchiveOrdersByFilterResponse, g9 as BulkUnArchiveOrdersRequest, ga as BulkUnArchiveOrdersResponse, hr as BulkUpdateOrderTagsRequest, hs as BulkUpdateOrderTagsResult, fG as BulkUpdateOrdersRequest, bv as BuyerInfo, bw as BuyerInfoIdOneOf, ge as BuyerInfoUpdate, fa as CalculateRefundItemRequest, fc as CalculateRefundItemResponse, f9 as CalculateRefundRequest, fb as CalculateRefundResponse, h_ as CalculatedTax, hZ as CalculatedTaxes, hy as Cancel, gX as CancelOrderRequest, fe as CaptureAuthorizedPaymentsRequest, b1 as CatalogReference, cT as ChannelInfo, au as ChannelType, it as ChannelTypeWithLiterals, eF as ChargeMembershipsRequest, eJ as ChargeMembershipsResponse, ff as ChargeSavedPaymentMethodRequest, fg as ChargeSavedPaymentMethodResponse, ax as ChargeType, iw as ChargeTypeWithLiterals, e_ as Chargeback, cP as ChargebackCreated, cQ as ChargebackReversed, aN as ChargebackStatus, iM as ChargebackStatusWithLiterals, eE as ChargedBy, b7 as Color, fH as CommitDeltasRequest, fX as CommitDeltasResponse, fZ as CommittedDiffs, f_ as CommittedDiffsShippingUpdateInfoOneOf, hJ as CommonAddress, hK as CommonAddressStreetOneOf, i_ as CommonSearchWithEntityContext, hI as Company, hx as Complete, bS as Coupon, fA as CreateOrderRequest, fD as CreateOrderResponse, eD as CreatePaymentGatewayOrderRequest, cR as CreatedBy, cS as CreatedByStringOneOf, cE as CreditCardDetails, eU as CreditCardPaymentMethodDetails, bx as CurrencyConversionDetails, fq as CursorPaging, fz as CursorPagingMetadata, fx as CursorSearch, fy as CursorSearchPagingMethodOneOf, ft as Cursors, c0 as CustomActivity, d2 as CustomAllowedActions, cU as CustomField, aX as CustomFieldGroup, iW as CustomFieldGroupWithLiterals, i3 as CustomFieldValue, hD as Customer, hp as DecrementData, ho as DecrementItemsQuantityRequest, hq as DecrementItemsQuantityResponse, ep as DelayedCaptureSettings, gR as DeleteActivityRequest, dx as DeleteByFilterOperation, dw as DeleteByIdsOperation, bG as DeliveryLogistics, bH as DeliveryLogisticsAddressOneOf, bK as DeliveryTimeSlot, aS as DeltaPaymentOptionType, iR as DeltaPaymentOptionTypeWithLiterals, i5 as Deposit, aZ as DepositType, iY as DepositTypeWithLiterals, b2 as DescriptionLine, b4 as DescriptionLineDescriptionLineValueOneOf, b5 as DescriptionLineName, ab as DescriptionLineType, i9 as DescriptionLineTypeWithLiterals, b3 as DescriptionLineValueOneOf, fh as DiffmatokyPayload, bf as DigitalFile, hX as Discount, hY as DiscountOneDiscountTypeOneOf, ap as DiscountReason, io as DiscountReasonWithLiterals, bV as DiscountRule, bW as DiscountRuleName, ao as DiscountType, im as DiscountTypeWithLiterals, dh as DomainEvent, di as DomainEventBodyOneOf, gy as DownloadLinkSent, c6 as DraftOrderChangesApplied, fV as DraftOrderCommitSettings, fI as DraftOrderDiffs, fL as DraftOrderDiffsBillingUpdateInfoOneOf, fK as DraftOrderDiffsBuyerUpdateInfoOneOf, fM as DraftOrderDiffsRecipientUpdateInfoOneOf, fJ as DraftOrderDiffsShippingUpdateInfoOneOf, eq as Duration, aC as DurationUnit, iB as DurationUnitWithLiterals, hE as Email, gH as EmailEdited, dF as Empty, dj as EntityCreatedEvent, dm as EntityDeletedEvent, dl as EntityUpdatedEvent, fi as ErrorInformation, i7 as EventMetadata, br as ExtendedFields, cM as ExternalReceipt, f2 as ExternalReceiptInfo, b8 as FocalPoint, d4 as FormIdentifier, d3 as FormInfo, bk as FreeTrialPeriod, gF as FulfillerEmailSent, aj as FulfillmentStatus, h0 as FulfillmentStatusUpdated, ii as FulfillmentStatusWithLiterals, cY as FulfillmentStatusesAggregate, bD as FullAddressContactDetails, fj as GetOrderRequest, fk as GetOrderResponse, er as GetPaymentCollectabilityStatusRequest, eA as GetRefundabilityStatusRequest, hl as GetShipmentsRequest, hm as GetShipmentsResponse, e$ as GiftCardPaymentDetails, cv as GiftCardPaymentRefund, hB as IdAndVersion, dq as IdentificationData, dr as IdentificationDataIdOneOf, de as ImportOrderRequest, dd as ImportedOrderDeleted, gr as InternalActivity, gs as InternalActivityContentOneOf, du as InternalDocument, dy as InternalDocumentUpdateByFilterOperation, dv as InternalDocumentUpdateOperation, fl as InternalQueryOrdersRequest, fr as InternalQueryOrdersResponse, dz as InternalUpdateExistingOperation, aT as InventoryAction, iS as InventoryActionWithLiterals, fW as InventoryUpdateDetails, gD as InvoiceAdded, hN as InvoiceDates, i2 as InvoiceDynamicPriceTotals, hC as InvoiceFields, gE as InvoiceSent, hA as InvoiceSentEvent, a_ as InvoiceStatus, iZ as InvoiceStatusWithLiterals, i0 as InvoicesPayment, fQ as ItemChangedDetails, bY as ItemCombination, bZ as ItemCombinationLineItem, ex as ItemMetadata, bu as ItemModifier, bc as ItemTaxFullDetails, ba as ItemType, bb as ItemTypeItemTypeDataOneOf, ac as ItemTypePreset, ia as ItemTypePresetWithLiterals, hW as ItemizedFee, ae as JurisdictionType, ic as JurisdictionTypeWithLiterals, hP as LineItem, ci as LineItemAmount, c9 as LineItemChanges, f$ as LineItemDelta, g0 as LineItemDeltaDeltaOneOf, cd as LineItemDescriptionLineChange, bX as LineItemDiscount, c5 as LineItemExchangeData, hT as LineItemMetaData, ce as LineItemModifiersChange, cb as LineItemPriceChange, cc as LineItemProductNameChange, ca as LineItemQuantityChange, aq as LineItemQuantityChangeType, ip as LineItemQuantityChangeTypeWithLiterals, e5 as LineItemRefund, f8 as LineItemRefundSummary, hR as LineItemTax, be as LineItemTaxBreakdown, bd as LineItemTaxInfo, gT as LineItemUpdate, hO as LineItems, hU as Locale, c$ as Location, bo as LocationAndQuantity, cj as ManagedAdditionalFee, cg as ManagedDiscount, cf as ManagedLineItem, aG as ManuallyRefundableReason, iF as ManuallyRefundableReasonWithLiterals, g_ as MarkAsFulfilledRequest, g$ as MarkAsFulfilledResponse, h5 as MarkAsUnfulfilledRequest, h6 as MarkAsUnfulfilledResponse, eu as MarkOrderAsPaidRequest, gV as MarkOrderAsSeenByHumanRequest, gW as MarkOrderAsSeenByHumanResponse, go as MaskedOrderLineItem, eG as MembershipChargeItem, eH as MembershipName, f0 as MembershipPaymentDetails, cw as MembershipPaymentRefund, aO as MembershipPaymentStatus, iN as MembershipPaymentStatusWithLiterals, c1 as MerchantComment, bT as MerchantDiscount, bU as MerchantDiscountMerchantDiscountReasonOneOf, dp as MessageEnvelope, i1 as MetaData, bs as ModifierGroup, c4 as NewExchangeOrderCreated, aF as NonRefundableReason, iE as NonRefundableReasonWithLiterals, aw as OrderActionType, iv as OrderActionTypeWithLiterals, as as OrderActivityTypeEnumActivityType, ir as OrderActivityTypeEnumActivityTypeWithLiterals, aR as OrderApprovalStrategy, iQ as OrderApprovalStrategyWithLiterals, d7 as OrderApproved, gx as OrderCanceled, gY as OrderCanceledEventOrderCanceled, c7 as OrderChange, c8 as OrderChangeValueOneOf, fC as OrderCreateNotifications, c3 as OrderCreatedFromExchange, fB as OrderCreationSettings, fY as OrderDeltasCommitted, gv as OrderFulfilled, dc as OrderImported, da as OrderItemsRestocked, a$ as OrderLineItem, fP as OrderLineItemChangedDetails, gw as OrderNotFulfilled, gu as OrderPaid, gJ as OrderPartiallyPaid, gK as OrderPending, gt as OrderPlaced, c2 as OrderRefunded, gL as OrderRejected, d9 as OrderRejectedEventOrderRejected, i8 as OrderSearchSpec, d0 as OrderSettings, d1 as OrderSettingsAllowedActionsOneOf, an as OrderStatus, bP as OrderTaxBreakdown, bO as OrderTaxInfo, eO as OrderTransactions, d8 as OrdersExperiments, eP as Payment, cF as PaymentCanceled, cG as PaymentCanceledPaymentDetailsOneOf, aD as PaymentCollectabilityStatus, iC as PaymentCollectabilityStatusWithLiterals, cH as PaymentDeclined, cI as PaymentDeclinedPaymentDetailsOneOf, ad as PaymentOptionType, ib as PaymentOptionTypeWithLiterals, eQ as PaymentPaymentDetailsOneOf, cA as PaymentPending, cB as PaymentPendingPaymentDetailsOneOf, eR as PaymentReceiptInfoOneOf, cy as PaymentRefundFailed, cx as PaymentRefunded, ai as PaymentStatus, hg as PaymentStatusUpdated, ih as PaymentStatusWithLiterals, h$ as Payments, hH as Phone, b9 as PhysicalProperties, bJ as PickupAddress, bI as PickupDetails, am as PickupMethod, il as PickupMethodWithLiterals, gI as PickupReadyEmailSent, aU as Placement, iT as PlacementWithLiterals, b6 as PlainTextValue, d6 as PlatformFee, d5 as PlatformFeeSummary, fp as PlatformPaging, fs as PlatformPagingMetadata, fm as PlatformQuery, fn as PlatformQueryPagingMethodOneOf, en as PreparePaymentCollectionRequest, ef as PreviewBuyerConfirmationEmailRequest, eg as PreviewBuyerConfirmationEmailResponse, ed as PreviewBuyerPaymentsReceivedEmailRequest, ee as PreviewBuyerPaymentsReceivedEmailResponse, eh as PreviewBuyerPickupConfirmationEmailRequest, ei as PreviewBuyerPickupConfirmationEmailResponse, e9 as PreviewCancelEmailRequest, ea as PreviewCancelEmailResponse, eb as PreviewCancelRefundEmailRequest, ec as PreviewCancelRefundEmailResponse, e0 as PreviewEmailByTypeRequest, e1 as PreviewEmailByTypeResponse, aA as PreviewEmailType, iz as PreviewEmailTypeWithLiterals, e2 as PreviewRefundEmailRequest, e8 as PreviewRefundEmailResponse, el as PreviewResendDownloadLinksEmailRequest, em as PreviewResendDownloadLinksEmailResponse, ej as PreviewShippingConfirmationEmailRequest, ek as PreviewShippingConfirmationEmailResponse, bn as PriceDescription, by as PriceSummary, b0 as ProductName, gO as PublicActivityContentOneOf, fu as QueryOrderRequest, fv as QueryOrderResponse, hF as QuotesAddress, aL as Reason, iK as ReasonWithLiterals, cJ as ReceiptCreated, cK as ReceiptCreatedReceiptInfoOneOf, cN as ReceiptSent, cO as ReceiptSentReceiptInfoOneOf, es as RecordManuallyCollectedPaymentRequest, et as RecordManuallyCollectedPaymentResponse, eo as RedirectUrls, f3 as Refund, e3 as RefundDetails, cr as RefundInitiated, e4 as RefundItem, f7 as RefundItemsBreakdown, eL as RefundSideEffects, aP as RefundStatus, f5 as RefundStatusInfo, iO as RefundStatusWithLiterals, f4 as RefundTransaction, eB as Refundability, eC as RefundabilityAdditionalRefundabilityInfoOneOf, aE as RefundableStatus, iD as RefundableStatusWithLiterals, cz as RefundedAsStoreCredit, cs as RefundedPayment, ct as RefundedPaymentKindOneOf, cC as RegularPayment, eS as RegularPaymentDetails, eT as RegularPaymentDetailsPaymentMethodDetailsOneOf, cD as RegularPaymentPaymentMethodDetailsOneOf, cu as RegularPaymentRefund, hz as Reschedule, eM as RestockInfo, eN as RestockItem, aH as RestockType, iG as RestockTypeWithLiterals, dk as RestoreInfo, cn as SavedPaymentMethod, aB as ScheduledAction, iA as ScheduledActionWithLiterals, fw as SearchOrdersRequest, dI as SendBuyerConfirmationEmailRequest, dJ as SendBuyerConfirmationEmailResponse, dK as SendBuyerPaymentsReceivedEmailRequest, dL as SendBuyerPaymentsReceivedEmailResponse, dM as SendBuyerPickupConfirmationEmailRequest, dN as SendBuyerPickupConfirmationEmailResponse, dQ as SendBuyerShippingConfirmationEmailRequest, dR as SendBuyerShippingConfirmationEmailResponse, dW as SendCancelRefundEmailRequest, dX as SendCancelRefundEmailResponse, dU as SendMerchantOrderReceivedNotificationRequest, dV as SendMerchantOrderReceivedNotificationResponse, d_ as SendMerchantOrderReceivedPushRequest, d$ as SendMerchantOrderReceivedPushResponse, dY as SendRefundEmailRequest, dZ as SendRefundEmailResponse, eI as ServiceProperties, df as SetOrderNumberCounterRequest, gG as ShippingAddressEdited, gC as ShippingConfirmationEmailSent, cm as ShippingInformation, cl as ShippingInformationChange, bL as ShippingPrice, e7 as ShippingRefund, bM as ShippingRegion, aQ as SortOrder, iP as SortOrderWithLiterals, fo as Sorting, hS as Source, aW as SourceType, iV as SourceTypeWithLiterals, hM as StandardDetails, bB as StreetAddress, hL as Subdivision, aV as SubdivisionType, iU as SubdivisionTypeWithLiterals, bi as SubscriptionDescription, af as SubscriptionFrequency, id as SubscriptionFrequencyWithLiterals, bg as SubscriptionInfo, bj as SubscriptionSettings, bh as SubscriptionTitle, c_ as TagList, cZ as Tags, ht as Task, hv as TaskAction, hw as TaskActionActionOneOf, hu as TaskKey, bN as TaxSummary, bp as TaxableAddress, bq as TaxableAddressTaxableAddressDataOneOf, ah as TaxableAddressType, ig as TaxableAddressTypeWithLiterals, hV as TotalPrice, ck as TotalPriceChange, gB as TrackingLinkAdded, gz as TrackingNumberAdded, gA as TrackingNumberEdited, aI as TransactionStatus, iH as TransactionStatusWithLiterals, bt as TranslatableString, ch as TranslatedValue, eK as TriggerRefundRequest, dH as TriggerReindexOrderRequest, dD as TriggerReindexRequest, dE as TriggerReindexResponse, g7 as UnArchiveOrderRequest, g8 as UnArchiveOrderResponse, gQ as UpdateActivityRequest, gk as UpdateBillingContactDetailsRequest, gl as UpdateBillingContactDetailsResponse, gg as UpdateBuyerEmailRequest, gh as UpdateBuyerEmailResponse, gd as UpdateBuyerInfoRequest, gf as UpdateBuyerInfoResponse, ds as UpdateInternalDocumentsEvent, dt as UpdateInternalDocumentsEventOperationOneOf, gS as UpdateLineItemsDescriptionLinesRequest, gU as UpdateLineItemsDescriptionLinesResponse, gm as UpdateOrderLineItemRequest, gn as UpdateOrderLineItemsRequest, gp as UpdateOrderLineItemsResponse, fE as UpdateOrderRequest, fF as UpdateOrderResponse, gi as UpdateOrderShippingAddressRequest, gj as UpdateOrderShippingAddressResponse, gZ as UpdateOrderStatusRequest, hh as V1BulkMarkOrdersAsPaidRequest, hi as V1BulkMarkOrdersAsPaidResponse, hj as V1CreatePaymentGatewayOrderRequest, hk as V1CreatePaymentGatewayOrderResponse, fN as V1LineItemDelta, fO as V1LineItemDeltaDeltaOneOf, he as V1MarkOrderAsPaidRequest, hf as V1MarkOrderAsPaidResponse, db as V1RestockItem, eZ as V1ScheduledAction, bF as V1ShippingInformation, i4 as Value, aY as ValueType, iX as ValueTypeWithLiterals, bE as VatId, al as VatType, ik as VatTypeWithLiterals, dB as VersionedDeleteByIdsOperation, dC as VersionedDocumentId, dA as VersionedDocumentUpdateOperation, az as VersioningMode, iy as VersioningModeWithLiterals, fd as VoidAuthorizedPaymentsRequest, ay as WebhookIdentityType, ix as WebhookIdentityTypeWithLiterals, ak as WeightUnit, ij as WeightUnitWithLiterals, cL as WixReceipt, f1 as WixReceiptInfo } from './ecom-v1-order-orders.universal-CxuQcKw1.mjs';
|
|
4
4
|
|
|
5
5
|
/** @internal */
|
|
6
6
|
declare function importOrder$1(httpClient: HttpClient): ImportOrderSignature;
|