@wix/auto_sdk_ecom_orders 1.0.217 → 1.0.218
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-CF0kleOw.d.ts → ecom-v1-order-orders.universal-u09r8hRJ.d.ts} +19 -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 +18 -2
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-CF0kleOw.d.mts → ecom-v1-order-orders.universal-u09r8hRJ.d.mts} +19 -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 +18 -2
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-dDfQOcE9.d.ts → ecom-v1-order-orders.universal-B_SIJVco.d.ts} +47 -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 +18 -2
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{ecom-v1-order-orders.universal-dDfQOcE9.d.mts → ecom-v1-order-orders.universal-B_SIJVco.d.mts} +47 -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 +18 -2
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -258,9 +258,22 @@ interface OrderLineItem {
|
|
|
258
258
|
refundQuantity?: number | null;
|
|
259
259
|
/**
|
|
260
260
|
* Number of items restocked.
|
|
261
|
+
*
|
|
262
|
+
* For a per-location breakdown, see `restockLocations`.
|
|
261
263
|
* @max 100000
|
|
262
264
|
*/
|
|
263
265
|
restockQuantity?: number | null;
|
|
266
|
+
/**
|
|
267
|
+
* Per-location restock breakdown.
|
|
268
|
+
*
|
|
269
|
+
* Populated when items are restocked to specific locations.
|
|
270
|
+
* The sum of all `quantity` values equals `restockQuantity`.
|
|
271
|
+
* Empty when no location-specific restock was performed.
|
|
272
|
+
* @internal
|
|
273
|
+
* @maxSize 5
|
|
274
|
+
* @readonly
|
|
275
|
+
*/
|
|
276
|
+
restockLocations?: RestockLocation[];
|
|
264
277
|
/** Line item price after line item discounts for display purposes. */
|
|
265
278
|
price?: Price;
|
|
266
279
|
/**
|
|
@@ -3312,6 +3325,12 @@ interface V1RestockItem {
|
|
|
3312
3325
|
* @max 100000
|
|
3313
3326
|
*/
|
|
3314
3327
|
quantity?: number;
|
|
3328
|
+
/**
|
|
3329
|
+
* Per-location breakdown of restock quantities.
|
|
3330
|
+
* @internal
|
|
3331
|
+
* @maxSize 5
|
|
3332
|
+
*/
|
|
3333
|
+
restockLocations?: RestockLocation[];
|
|
3315
3334
|
}
|
|
3316
3335
|
/** Triggered when order is imported */
|
|
3317
3336
|
interface OrderImported {
|
|
@@ -6066,6 +6085,20 @@ interface ChargeSavedPaymentMethodResponse {
|
|
|
6066
6085
|
/** Payment gateway's order ID (e.g Wix Payments) */
|
|
6067
6086
|
paymentGatewayOrderId?: string;
|
|
6068
6087
|
}
|
|
6088
|
+
/** Quantity of items restocked at a specific location. */
|
|
6089
|
+
interface RestockLocation {
|
|
6090
|
+
/**
|
|
6091
|
+
* ID of the location where items were restocked.
|
|
6092
|
+
* @format GUID
|
|
6093
|
+
*/
|
|
6094
|
+
locationId?: string;
|
|
6095
|
+
/**
|
|
6096
|
+
* Number of items restocked at this location.
|
|
6097
|
+
* @min 1
|
|
6098
|
+
* @max 100000
|
|
6099
|
+
*/
|
|
6100
|
+
quantity?: number;
|
|
6101
|
+
}
|
|
6069
6102
|
interface DiffmatokyPayload {
|
|
6070
6103
|
left?: string;
|
|
6071
6104
|
right?: string;
|
|
@@ -9162,9 +9195,22 @@ interface UpdateOrderLineItem {
|
|
|
9162
9195
|
refundQuantity?: number | null;
|
|
9163
9196
|
/**
|
|
9164
9197
|
* Number of items restocked.
|
|
9198
|
+
*
|
|
9199
|
+
* For a per-location breakdown, see `restockLocations`.
|
|
9165
9200
|
* @max 100000
|
|
9166
9201
|
*/
|
|
9167
9202
|
restockQuantity?: number | null;
|
|
9203
|
+
/**
|
|
9204
|
+
* Per-location restock breakdown.
|
|
9205
|
+
*
|
|
9206
|
+
* Populated when items are restocked to specific locations.
|
|
9207
|
+
* The sum of all `quantity` values equals `restockQuantity`.
|
|
9208
|
+
* Empty when no location-specific restock was performed.
|
|
9209
|
+
* @internal
|
|
9210
|
+
* @maxSize 5
|
|
9211
|
+
* @readonly
|
|
9212
|
+
*/
|
|
9213
|
+
restockLocations?: RestockLocation[];
|
|
9168
9214
|
/** Line item price after line item discounts for display purposes. */
|
|
9169
9215
|
price?: Price;
|
|
9170
9216
|
/**
|
|
@@ -9446,4 +9492,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
9446
9492
|
unassignTags?: TagsTags;
|
|
9447
9493
|
}
|
|
9448
9494
|
|
|
9449
|
-
export { type CancelOrderResponse as $, type MaskedOrder as A, type BulkDeleteImportedOrdersOptions as B, type CreatePaymentGatewayOrderResponse as C, type BulkUpdateOrdersOptions as D, type BulkUpdateOrdersResponse as E, type UpdateOrderLineItemIdentifiers as F, type GetPaymentCollectabilityStatusResponse as G, type UpdateOrderLineItem as H, type ImportOrderResponse as I, type UpdateOrderLineItemResponse as J, type PublicActivity as K, type AddActivityResponse as L, type MarkOrderAsPaidResponse as M, type AddActivitiesOptions as N, type Order as O, type Price as P, type AddActivitiesResponse as Q, type RecordManuallyCollectedPaymentOptions as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type UpdateActivityIdentifiers as W, type UpdateActivityResponse as X, type DeleteActivityIdentifiers as Y, type DeleteActivityResponse as Z, type CancelOrderOptions as _, type SetOrderNumberCounterResponse as a, MembershipPaymentStatus as a$, type CancelOrderApplicationErrors as a0, type OrderStatusWithLiterals as a1, type UpdateOrderStatusResponse as a2, type UpdateOrderStatusApplicationErrors as a3, type AggregateOrdersOptions as a4, type AggregateOrdersResponse as a5, type BulkUpdateOrderTagsOptions as a6, type BulkUpdateOrderTagsResponse as a7, type OrderApprovedEnvelope as a8, type OrderCanceledEnvelope as a9, AdditionalFeeSource as aA, OrderActionType as aB, SpecificItemsCouponBehavior as aC, ChargeType as aD, DeltaPaymentOptionType as aE, InventoryAction as aF, WebhookIdentityType as aG, VersioningMode as aH, PreviewEmailType as aI, State as aJ, SiteCreatedContext as aK, Namespace as aL, DeleteStatus as aM, ScheduledAction as aN, DurationUnit as aO, PaymentCollectabilityStatus as aP, PredefinedPaymentMethod as aQ, RefundableStatus as aR, NonRefundableReason as aS, ManuallyRefundableReason as aT, RestockType as aU, TransactionStatus as aV, AuthorizationCaptureStatus as aW, AuthorizationVoidStatus as aX, Reason as aY, ActionType as aZ, ChargebackStatus as a_, type OrderCommittedEnvelope as aa, type OrderCreatedEnvelope as ab, type OrderFulfilledEnvelope as ac, type OrderPaymentStatusUpdatedEnvelope as ad, type OrderUpdatedEnvelope as ae, DescriptionLineType as af, DimensionsUnit as ag, ItemTypePreset as ah, PaymentOptionType as ai, JurisdictionType as aj, SubscriptionFrequency as ak, AdjustmentType as al, TaxableAddressType as am, PaymentStatus as an, FulfillmentStatus as ao, WeightUnit as ap, VatType as aq, PickupMethod as ar, OrderStatus as as, DiscountType as at, DiscountReason as au, LineItemQuantityChangeType as av, ActivityType as aw, OrderActivityTypeEnumActivityType as ax, AttributionSource as ay, ChannelType as az, type BulkDeleteImportedOrdersResponse as b, type OrderTaxBreakdown as b$, RefundStatus as b0, SortOrder as b1, OrderApprovalStrategy as b2, Placement as b3, SubdivisionType as b4, SourceType as b5, CustomFieldGroup as b6, ValueType as b7, DepositType as b8, InvoiceStatus as b9, type LocationAndQuantity as bA, type TaxableAddress as bB, type TaxableAddressTaxableAddressDataOneOf as bC, type ExtendedFields as bD, type ModifierGroup as bE, type TranslatableString as bF, type ItemModifier as bG, type BuyerInfo as bH, type BuyerInfoIdOneOf as bI, type CurrencyConversionDetails as bJ, type PriceSummary as bK, type AddressWithContact as bL, type Address as bM, type StreetAddress as bN, type AddressLocation as bO, type FullAddressContactDetails as bP, type VatId as bQ, type V1ShippingInformation as bR, type DeliveryLogistics as bS, type DeliveryLogisticsAddressOneOf as bT, type PickupDetails as bU, type PickupAddress as bV, type DeliveryTimeSlot as bW, type ShippingPrice as bX, type ShippingRegion as bY, type TaxSummary as bZ, type OrderTaxInfo as b_, type OrderLineItem as ba, type ProductName as bb, type CatalogReference as bc, type DescriptionLine as bd, type DescriptionLineValueOneOf as be, type DescriptionLineDescriptionLineValueOneOf as bf, type DescriptionLineName as bg, type PlainTextValue as bh, type Color as bi, type FocalPoint as bj, type PhysicalProperties as bk, type Dimensions as bl, type ItemType as bm, type ItemTypeItemTypeDataOneOf as bn, type ItemTaxFullDetails as bo, type LineItemTaxInfo as bp, type LineItemTaxBreakdown as bq, type DigitalFile as br, type SubscriptionInfo as bs, type SubscriptionTitle as bt, type SubscriptionDescription as bu, type SubscriptionSettings as bv, type FreeTrialPeriod as bw, type BillingAdjustment as bx, type BillingAdjustmentPriceSummary as by, type PriceDescription as bz, type PreparePaymentCollectionOptions as c, type ChargebackCreated as c$, type AppliedDiscount as c0, type AppliedDiscountDiscountSourceOneOf as c1, type Coupon as c2, type MerchantDiscount as c3, type MerchantDiscountMerchantDiscountReasonOneOf as c4, type DiscountRule as c5, type DiscountRuleName as c6, type LineItemDiscount as c7, type ItemCombination as c8, type ItemCombinationLineItem as c9, type AuthorizedPaymentCreated as cA, type AuthorizedPaymentCaptured as cB, type AuthorizedPaymentVoided as cC, type RefundInitiated as cD, type RefundedPayment as cE, type RefundedPaymentKindOneOf as cF, type RegularPaymentRefund as cG, type GiftCardPaymentRefund as cH, type MembershipPaymentRefund as cI, type PaymentRefunded as cJ, type PaymentRefundFailed as cK, type RefundedAsStoreCredit as cL, type PaymentPending as cM, type PaymentPendingPaymentDetailsOneOf as cN, type RegularPayment as cO, type RegularPaymentPaymentMethodDetailsOneOf as cP, type CreditCardDetails as cQ, type PaymentCanceled as cR, type PaymentCanceledPaymentDetailsOneOf as cS, type PaymentDeclined as cT, type PaymentDeclinedPaymentDetailsOneOf as cU, type ReceiptCreated as cV, type ReceiptCreatedReceiptInfoOneOf as cW, type WixReceipt as cX, type ExternalReceipt as cY, type ReceiptSent as cZ, type ReceiptSentReceiptInfoOneOf as c_, type Activity as ca, type ActivityContentOneOf as cb, type CustomActivity as cc, type MerchantComment as cd, type OrderRefunded as ce, type OrderCreatedFromExchange as cf, type NewExchangeOrderCreated as cg, type LineItemExchangeData as ch, type DraftOrderChangesApplied as ci, type OrderChange as cj, type OrderChangeValueOneOf as ck, type LineItemChanges as cl, type LineItemQuantityChange as cm, type LineItemPriceChange as cn, type LineItemProductNameChange as co, type LineItemDescriptionLineChange as cp, type LineItemModifiersChange as cq, type ManagedLineItem as cr, type ManagedDiscount as cs, type TranslatedValue as ct, type LineItemAmount as cu, type ManagedAdditionalFee as cv, type TotalPriceChange as cw, type ShippingInformationChange as cx, type ShippingInformation as cy, type SavedPaymentMethod as cz, type PreparePaymentCollectionResponse as d, type InternalDocumentUpdateOperation as d$, type ChargebackReversed as d0, type CreatedBy as d1, type CreatedByStringOneOf as d2, type ChannelInfo as d3, type CustomField as d4, type BalanceSummary as d5, type Balance as d6, type CashRounding as d7, type AdditionalFee as d8, type FulfillmentStatusesAggregate as d9, type ItemChangedDetails as dA, type OrderLineItemChangedDetails as dB, type LineItemDelta as dC, type LineItemDeltaDeltaOneOf as dD, type AppliedDiscountDelta as dE, type AppliedDiscountDeltaDeltaOneOf as dF, type AdditionalFeeDelta as dG, type AdditionalFeeDeltaDeltaOneOf as dH, type DraftOrderCommitSettings as dI, type InventoryUpdateDetails as dJ, type ImportOrderRequest as dK, type SetOrderNumberCounterRequest as dL, type BulkDeleteImportedOrdersRequest as dM, type DomainEvent as dN, type DomainEventBodyOneOf as dO, type EntityCreatedEvent as dP, type RestoreInfo as dQ, type EntityUpdatedEvent as dR, type EntityDeletedEvent as dS, type ActionEvent as dT, type MessageEnvelope as dU, type IdentificationData as dV, type IdentificationDataIdOneOf as dW, type AccountInfo as dX, type UpdateInternalDocumentsEvent as dY, type UpdateInternalDocumentsEventOperationOneOf as dZ, type InternalDocument as d_, type Tags as da, type TagList as db, type Location as dc, type OrderSettings as dd, type OrderSettingsAllowedActionsOneOf as de, type OrderSettingsEditableByOneOf as df, type CustomAllowedActions as dg, type OwnerApps as dh, type FormInfo as di, type FormIdentifier as dj, type PlatformFeeSummary as dk, type PlatformFee as dl, type OrderApproved as dm, type OrdersExperiments as dn, type OrderRejectedEventOrderRejected as dp, type OrderItemsRestocked as dq, type V1RestockItem as dr, type OrderImported as ds, type ImportedOrderDeleted as dt, type PaymentStatusUpdated as du, type FulfillmentStatusUpdated as dv, type OrderCanceledEventOrderCanceled as dw, type OrderDeltasCommitted as dx, type CommittedDiffs as dy, type CommittedDiffsShippingUpdateInfoOneOf as dz, type PreparePaymentCollectionApplicationErrors as e, type SiteUndeleted as e$, type DeleteByIdsOperation as e0, type DeleteByFilterOperation as e1, type InternalDocumentUpdateByFilterOperation as e2, type InternalUpdateExistingOperation as e3, type VersionedDocumentUpdateOperation as e4, type VersionedDeleteByIdsOperation as e5, type VersionedDocumentId as e6, type TriggerReindexRequest as e7, type TriggerReindexResponse as e8, type Empty as e9, type RefundDetails as eA, type RefundItem as eB, type LineItemRefund as eC, type AdditionalFeeRefund as eD, type ShippingRefund as eE, type PreviewRefundEmailResponse as eF, type PreviewCancelEmailRequest as eG, type PreviewCancelEmailResponse as eH, type PreviewCancelRefundEmailRequest as eI, type PreviewCancelRefundEmailResponse as eJ, type PreviewBuyerPaymentsReceivedEmailRequest as eK, type PreviewBuyerPaymentsReceivedEmailResponse as eL, type PreviewBuyerConfirmationEmailRequest as eM, type PreviewBuyerConfirmationEmailResponse as eN, type PreviewBuyerPickupConfirmationEmailRequest as eO, type PreviewBuyerPickupConfirmationEmailResponse as eP, type PreviewShippingConfirmationEmailRequest as eQ, type PreviewShippingConfirmationEmailResponse as eR, type PreviewResendDownloadLinksEmailRequest as eS, type PreviewResendDownloadLinksEmailResponse as eT, type MetaSiteSpecialEvent as eU, type MetaSiteSpecialEventPayloadOneOf as eV, type Asset as eW, type SiteCreated as eX, type SiteTransferred as eY, type SiteDeleted as eZ, type DeleteContext as e_, type TriggerReindexOrderRequest as ea, type SendBuyerConfirmationEmailRequest as eb, type SendBuyerConfirmationEmailResponse as ec, type SendBuyerPaymentsReceivedEmailRequest as ed, type SendBuyerPaymentsReceivedEmailResponse as ee, type SendBuyerPickupConfirmationEmailRequest as ef, type SendBuyerPickupConfirmationEmailResponse as eg, type BulkSendBuyerPickupConfirmationEmailsRequest as eh, type BulkSendBuyerPickupConfirmationEmailsResponse as ei, type SendBuyerShippingConfirmationEmailRequest as ej, type SendBuyerShippingConfirmationEmailResponse as ek, type BulkSendBuyerShippingConfirmationEmailsRequest as el, type BulkSendBuyerShippingConfirmationEmailsResponse as em, type SendMerchantOrderReceivedNotificationRequest as en, type SendMerchantOrderReceivedNotificationResponse as eo, type SendCancelRefundEmailRequest as ep, type SendCancelRefundEmailResponse as eq, type SendRefundEmailRequest as er, type SendRefundEmailResponse as es, type SendFulfillmentEmailRequest as et, type SendFulfillmentEmailResponse as eu, type SendMerchantOrderReceivedPushRequest as ev, type SendMerchantOrderReceivedPushResponse as ew, type PreviewEmailByTypeRequest as ex, type PreviewEmailByTypeResponse as ey, type PreviewRefundEmailRequest as ez, type RecordManuallyCollectedPaymentApplicationErrors as f, type PaymentReceiptInfoOneOf as f$, type SitePublished as f0, type SiteUnpublished as f1, type SiteMarkedAsTemplate as f2, type SiteMarkedAsWixSite as f3, type ServiceProvisioned as f4, type ServiceRemoved as f5, type SiteRenamed as f6, type SiteHardDeleted as f7, type NamespaceChanged as f8, type StudioAssigned as f9, type RecordManuallyCollectedPaymentRequest as fA, type UserDefinedPaymentMethodName as fB, type UserDefinedPaymentMethodNameKindOneOf as fC, type RecordManuallyCollectedPaymentResponse as fD, type MarkOrderAsPaidRequest as fE, type BulkMarkOrdersAsPaidRequest as fF, type BulkOrderResult as fG, type ItemMetadata as fH, type ApplicationError as fI, type BulkActionMetadata as fJ, type GetRefundabilityStatusRequest as fK, type Refundability as fL, type RefundabilityAdditionalRefundabilityInfoOneOf as fM, type CreatePaymentGatewayOrderRequest as fN, type ChargedBy as fO, type ChargeMembershipsRequest as fP, type MembershipChargeItem as fQ, type MembershipName as fR, type ServiceProperties as fS, type ChargeMembershipsResponse as fT, type TriggerRefundRequest as fU, type RefundSideEffects as fV, type RestockInfo as fW, type RestockItem as fX, type OrderTransactions as fY, type Payment as fZ, type PaymentPaymentDetailsOneOf as f_, type StudioUnassigned as fa, type SiteUrlChanged as fb, type SitePurgedExternally as fc, type OdeditorAssigned as fd, type OdeditorUnassigned as fe, type PicassoAssigned as ff, type PicassoUnassigned as fg, type WixelAssigned as fh, type WixelUnassigned as fi, type StudioTwoAssigned as fj, type StudioTwoUnassigned as fk, type UserDomainMediaEnabled as fl, type UserDomainMediaDisabled as fm, type EditorlessAssigned as fn, type EditorlessUnassigned as fo, type HasCustomEmailConfigurationsRequest as fp, type HasCustomEmailConfigurationsResponse as fq, type AddToAutomationMigrationPopulationRequest as fr, type AddToAutomationMigrationPopulationResponse as fs, type IsInAutomationMigrationPopulationRequest as ft, type IsInAutomationMigrationPopulationResponse as fu, type PreparePaymentCollectionRequest as fv, type RedirectUrls as fw, type DelayedCaptureSettings as fx, type Duration as fy, type GetPaymentCollectabilityStatusRequest as fz, type PaymentCollectionMarkOrderAsPaidOptions as g, type V1LineItemDeltaDeltaOneOf as g$, type RegularPaymentDetails as g0, type RegularPaymentDetailsPaymentMethodDetailsOneOf as g1, type CreditCardPaymentMethodDetails as g2, type AuthorizationDetails as g3, type AuthorizationCapture as g4, type AuthorizationActionFailureDetails as g5, type AuthorizationVoid as g6, type V1ScheduledAction as g7, type Chargeback as g8, type PaymentMethodName as g9, type Sorting as gA, type PlatformPaging as gB, type CursorPaging as gC, type InternalQueryOrdersResponse as gD, type PlatformPagingMetadata as gE, type Cursors as gF, type QueryOrderRequest as gG, type QueryOrderResponse as gH, type SearchOrdersRequest as gI, type CursorSearch as gJ, type CursorSearchPagingMethodOneOf as gK, type CursorPagingMetadata as gL, type CreateOrderRequest as gM, type OrderCreationSettings as gN, type OrderCreationSettingsEditableByOneOf as gO, type OrderCreateNotifications as gP, type CreateOrderResponse as gQ, type UpdateOrderRequest as gR, type UpdateOrderResponse as gS, type BulkUpdateOrdersRequest as gT, type CommitDeltasRequest as gU, type DraftOrderDiffs as gV, type DraftOrderDiffsShippingUpdateInfoOneOf as gW, type DraftOrderDiffsBuyerUpdateInfoOneOf as gX, type DraftOrderDiffsBillingUpdateInfoOneOf as gY, type DraftOrderDiffsRecipientUpdateInfoOneOf as gZ, type V1LineItemDelta as g_, type GiftCardPaymentDetails as ga, type MembershipPaymentDetails as gb, type WixReceiptInfo as gc, type ExternalReceiptInfo as gd, type CashRoundingDetails as ge, type Refund as gf, type RefundTransaction as gg, type RefundStatusInfo as gh, type AggregatedRefundSummary as gi, type RefundItemsBreakdown as gj, type LineItemRefundSummary as gk, type CalculateRefundRequest as gl, type CalculateRefundItemRequest as gm, type CalculateRefundResponse as gn, type CalculateRefundItemResponse as go, type VoidAuthorizedPaymentsRequest as gp, type CaptureAuthorizedPaymentsRequest as gq, type ChargeSavedPaymentMethodRequest as gr, type ChargeSavedPaymentMethodResponse as gs, type DiffmatokyPayload as gt, type ErrorInformation as gu, type GetOrderRequest as gv, type GetOrderResponse as gw, type InternalQueryOrdersRequest as gx, type PlatformQuery as gy, type PlatformQueryPagingMethodOneOf as gz, type PaymentCollectionMarkOrderAsPaidApplicationErrors as h, type BulkMarkAsFulfilledRequest as h$, type CommitDeltasResponse as h0, type ArchiveOrderRequest as h1, type ArchiveOrderResponse as h2, type BulkArchiveOrdersRequest as h3, type BulkArchiveOrdersResponse as h4, type BulkArchiveOrdersByFilterRequest as h5, type BulkArchiveOrdersByFilterResponse as h6, type UnArchiveOrderRequest as h7, type UnArchiveOrderResponse as h8, type BulkUnArchiveOrdersRequest as h9, type TrackingNumberEdited as hA, type TrackingLinkAdded as hB, type ShippingConfirmationEmailSent as hC, type InvoiceAdded as hD, type InvoiceSent as hE, type FulfillerEmailSent as hF, type ShippingAddressEdited as hG, type EmailEdited as hH, type PickupReadyEmailSent as hI, type OrderPartiallyPaid as hJ, type OrderPending as hK, type OrderRejected as hL, type AddInternalActivityResponse as hM, type AddActivityRequest as hN, type PublicActivityContentOneOf as hO, type AddActivitiesRequest as hP, type UpdateActivityRequest as hQ, type DeleteActivityRequest as hR, type UpdateLineItemsDescriptionLinesRequest as hS, type LineItemUpdate as hT, type UpdateLineItemsDescriptionLinesResponse as hU, type MarkOrderAsSeenByHumanRequest as hV, type MarkOrderAsSeenByHumanResponse as hW, type CancelOrderRequest as hX, type UpdateOrderStatusRequest as hY, type MarkAsFulfilledRequest as hZ, type MarkAsFulfilledResponse as h_, type BulkUnArchiveOrdersResponse as ha, type BulkUnArchiveOrdersByFilterRequest as hb, type BulkUnArchiveOrdersByFilterResponse as hc, type UpdateBuyerInfoRequest as hd, type BuyerInfoUpdate as he, type UpdateBuyerInfoResponse as hf, type UpdateBuyerEmailRequest as hg, type UpdateBuyerEmailResponse as hh, type UpdateOrderShippingAddressRequest as hi, type UpdateOrderShippingAddressResponse as hj, type UpdateBillingContactDetailsRequest as hk, type UpdateBillingContactDetailsResponse as hl, type UpdateOrderLineItemRequest as hm, type UpdateOrderLineItemsRequest as hn, type MaskedOrderLineItem as ho, type UpdateOrderLineItemsResponse as hp, type AddInternalActivityRequest as hq, type InternalActivity as hr, type InternalActivityContentOneOf as hs, type OrderPlaced as ht, type OrderPaid as hu, type OrderFulfilled as hv, type OrderNotFulfilled as hw, type OrderCanceled as hx, type DownloadLinkSent as hy, type TrackingNumberAdded as hz, type BulkMarkOrdersAsPaidResponse as i, type DiscountOneDiscountTypeOneOf as i$, type BulkMarkAsFulfilledResponse as i0, type BulkMarkAsFulfilledByFilterRequest as i1, type BulkMarkAsFulfilledByFilterResponse as i2, type MarkAsUnfulfilledRequest as i3, type MarkAsUnfulfilledResponse as i4, type BulkMarkAsUnfulfilledRequest as i5, type BulkMarkAsUnfulfilledResponse as i6, type BulkMarkAsUnfulfilledByFilterRequest as i7, type BulkMarkAsUnfulfilledByFilterResponse as i8, type BulkSetBusinessLocationRequest as i9, type Complete as iA, type Cancel as iB, type Reschedule as iC, type InvoiceSentEvent as iD, type IdAndVersion as iE, type InvoiceFields as iF, type Customer as iG, type Email as iH, type QuotesAddress as iI, type AddressDescription as iJ, type Phone as iK, type Company as iL, type CommonAddress as iM, type CommonAddressStreetOneOf as iN, type Subdivision as iO, type StandardDetails as iP, type InvoiceDates as iQ, type LineItems as iR, type LineItem as iS, type BigDecimalWrapper as iT, type LineItemTax as iU, type Source as iV, type LineItemMetaData as iW, type Locale as iX, type TotalPrice as iY, type ItemizedFee as iZ, type Discount as i_, type BulkSetBusinessLocationResponse as ia, type BulkSetBusinessLocationResult as ib, type V1MarkOrderAsPaidRequest as ic, type V1MarkOrderAsPaidResponse as id, type V1BulkMarkOrdersAsPaidRequest as ie, type V1BulkMarkOrdersAsPaidResponse as ig, type V1CreatePaymentGatewayOrderRequest as ih, type V1CreatePaymentGatewayOrderResponse as ii, type GetShipmentsRequest as ij, type GetShipmentsResponse as ik, type AggregateOrdersRequest as il, type DecrementItemsQuantityRequest as im, type DecrementData as io, type DecrementItemsQuantityResponse as ip, type BulkUpdateOrderTagsRequest as iq, type TagsTags as ir, type TagsTagList as is, type BulkUpdateOrderTagsResult as it, type SendOrderUpdatedDomainEventRequest as iu, type SendOrderUpdatedDomainEventResponse as iv, type Task as iw, type TaskKey as ix, type TaskAction as iy, type TaskActionActionOneOf as iz, type GetRefundabilityStatusResponse as j, type SortOrderWithLiterals as j$, type CalculatedTaxes as j0, type CalculatedTax as j1, type Payments as j2, type InvoicesPayment as j3, type MetaData as j4, type InvoiceDynamicPriceTotals as j5, type CustomFieldValue as j6, type Value as j7, type Deposit as j8, type BaseEventMetadata as j9, type SpecificItemsCouponBehaviorWithLiterals as jA, type ChargeTypeWithLiterals as jB, type DeltaPaymentOptionTypeWithLiterals as jC, type InventoryActionWithLiterals as jD, type WebhookIdentityTypeWithLiterals as jE, type VersioningModeWithLiterals as jF, type PreviewEmailTypeWithLiterals as jG, type StateWithLiterals as jH, type SiteCreatedContextWithLiterals as jI, type NamespaceWithLiterals as jJ, type DeleteStatusWithLiterals as jK, type ScheduledActionWithLiterals as jL, type DurationUnitWithLiterals as jM, type PaymentCollectabilityStatusWithLiterals as jN, type PredefinedPaymentMethodWithLiterals as jO, type RefundableStatusWithLiterals as jP, type NonRefundableReasonWithLiterals as jQ, type ManuallyRefundableReasonWithLiterals as jR, type RestockTypeWithLiterals as jS, type TransactionStatusWithLiterals as jT, type AuthorizationCaptureStatusWithLiterals as jU, type AuthorizationVoidStatusWithLiterals as jV, type ReasonWithLiterals as jW, type ActionTypeWithLiterals as jX, type ChargebackStatusWithLiterals as jY, type MembershipPaymentStatusWithLiterals as jZ, type RefundStatusWithLiterals as j_, type EventMetadata as ja, type AccountInfoMetadata as jb, type OrderSearchSpec as jc, utils as jd, type DescriptionLineTypeWithLiterals as je, type DimensionsUnitWithLiterals as jf, type ItemTypePresetWithLiterals as jg, type PaymentOptionTypeWithLiterals as jh, type JurisdictionTypeWithLiterals as ji, type SubscriptionFrequencyWithLiterals as jj, type AdjustmentTypeWithLiterals as jk, type TaxableAddressTypeWithLiterals as jl, type PaymentStatusWithLiterals as jm, type FulfillmentStatusWithLiterals as jn, type WeightUnitWithLiterals as jo, type VatTypeWithLiterals as jp, type PickupMethodWithLiterals as jq, type DiscountTypeWithLiterals as jr, type DiscountReasonWithLiterals as js, type LineItemQuantityChangeTypeWithLiterals as jt, type ActivityTypeWithLiterals as ju, type OrderActivityTypeEnumActivityTypeWithLiterals as jv, type AttributionSourceWithLiterals as jw, type ChannelTypeWithLiterals as jx, type AdditionalFeeSourceWithLiterals as jy, type OrderActionTypeWithLiterals as jz, type PaymentCollectionCreatePaymentGatewayOrderOptions as k, type OrderApprovalStrategyWithLiterals as k0, type PlacementWithLiterals as k1, type SubdivisionTypeWithLiterals as k2, type SourceTypeWithLiterals as k3, type CustomFieldGroupWithLiterals as k4, type ValueTypeWithLiterals as k5, type DepositTypeWithLiterals as k6, type InvoiceStatusWithLiterals as k7, type CommonSearchWithEntityContext as k8, onOrderApproved as k9, addActivities as kA, updateActivity as kB, deleteActivity as kC, cancelOrder as kD, updateOrderStatus as kE, aggregateOrders as kF, bulkUpdateOrderTags as kG, onOrderCanceled as ka, onOrderCommitted as kb, onOrderCreated as kc, onOrderFulfilled as kd, onOrderPaymentStatusUpdated as ke, onOrderUpdated as kf, importOrder as kg, setOrderNumberCounter as kh, bulkDeleteImportedOrders as ki, preparePaymentCollection as kj, getPaymentCollectabilityStatus as kk, recordManuallyCollectedPayment as kl, paymentCollectionMarkOrderAsPaid as km, paymentCollectionBulkMarkOrdersAsPaid as kn, getRefundabilityStatus as ko, paymentCollectionCreatePaymentGatewayOrder as kp, chargeMemberships as kq, triggerRefund as kr, voidAuthorizedPayments as ks, captureAuthorizedPayments as kt, getOrder as ku, createOrder as kv, updateOrder as kw, bulkUpdateOrders as kx, updateOrderLineItem as ky, addActivity as kz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as l, type ChargeMembershipsOptions as m, type PaymentRefund as n, type TriggerRefundResponse as o, type TriggerRefundApplicationErrors as p, type VoidAuthorizedPaymentsApplicationErrors as q, type PaymentCapture as r, type CaptureAuthorizedPaymentsResponse as s, type CaptureAuthorizedPaymentsApplicationErrors as t, type GetOrderApplicationErrors as u, type OrderSearch as v, type SearchOrdersResponse as w, type CreateOrderOptions as x, type CreateOrderApplicationErrors as y, type UpdateOrderApplicationErrors as z };
|
|
9495
|
+
export { type CancelOrderResponse as $, type MaskedOrder as A, type BulkDeleteImportedOrdersOptions as B, type CreatePaymentGatewayOrderResponse as C, type BulkUpdateOrdersOptions as D, type BulkUpdateOrdersResponse as E, type UpdateOrderLineItemIdentifiers as F, type GetPaymentCollectabilityStatusResponse as G, type UpdateOrderLineItem as H, type ImportOrderResponse as I, type UpdateOrderLineItemResponse as J, type PublicActivity as K, type AddActivityResponse as L, type MarkOrderAsPaidResponse as M, type AddActivitiesOptions as N, type Order as O, type Price as P, type AddActivitiesResponse as Q, type RecordManuallyCollectedPaymentOptions as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type UpdateActivityIdentifiers as W, type UpdateActivityResponse as X, type DeleteActivityIdentifiers as Y, type DeleteActivityResponse as Z, type CancelOrderOptions as _, type SetOrderNumberCounterResponse as a, MembershipPaymentStatus as a$, type CancelOrderApplicationErrors as a0, type OrderStatusWithLiterals as a1, type UpdateOrderStatusResponse as a2, type UpdateOrderStatusApplicationErrors as a3, type AggregateOrdersOptions as a4, type AggregateOrdersResponse as a5, type BulkUpdateOrderTagsOptions as a6, type BulkUpdateOrderTagsResponse as a7, type OrderApprovedEnvelope as a8, type OrderCanceledEnvelope as a9, AdditionalFeeSource as aA, OrderActionType as aB, SpecificItemsCouponBehavior as aC, ChargeType as aD, DeltaPaymentOptionType as aE, InventoryAction as aF, WebhookIdentityType as aG, VersioningMode as aH, PreviewEmailType as aI, State as aJ, SiteCreatedContext as aK, Namespace as aL, DeleteStatus as aM, ScheduledAction as aN, DurationUnit as aO, PaymentCollectabilityStatus as aP, PredefinedPaymentMethod as aQ, RefundableStatus as aR, NonRefundableReason as aS, ManuallyRefundableReason as aT, RestockType as aU, TransactionStatus as aV, AuthorizationCaptureStatus as aW, AuthorizationVoidStatus as aX, Reason as aY, ActionType as aZ, ChargebackStatus as a_, type OrderCommittedEnvelope as aa, type OrderCreatedEnvelope as ab, type OrderFulfilledEnvelope as ac, type OrderPaymentStatusUpdatedEnvelope as ad, type OrderUpdatedEnvelope as ae, DescriptionLineType as af, DimensionsUnit as ag, ItemTypePreset as ah, PaymentOptionType as ai, JurisdictionType as aj, SubscriptionFrequency as ak, AdjustmentType as al, TaxableAddressType as am, PaymentStatus as an, FulfillmentStatus as ao, WeightUnit as ap, VatType as aq, PickupMethod as ar, OrderStatus as as, DiscountType as at, DiscountReason as au, LineItemQuantityChangeType as av, ActivityType as aw, OrderActivityTypeEnumActivityType as ax, AttributionSource as ay, ChannelType as az, type BulkDeleteImportedOrdersResponse as b, type OrderTaxBreakdown as b$, RefundStatus as b0, SortOrder as b1, OrderApprovalStrategy as b2, Placement as b3, SubdivisionType as b4, SourceType as b5, CustomFieldGroup as b6, ValueType as b7, DepositType as b8, InvoiceStatus as b9, type LocationAndQuantity as bA, type TaxableAddress as bB, type TaxableAddressTaxableAddressDataOneOf as bC, type ExtendedFields as bD, type ModifierGroup as bE, type TranslatableString as bF, type ItemModifier as bG, type BuyerInfo as bH, type BuyerInfoIdOneOf as bI, type CurrencyConversionDetails as bJ, type PriceSummary as bK, type AddressWithContact as bL, type Address as bM, type StreetAddress as bN, type AddressLocation as bO, type FullAddressContactDetails as bP, type VatId as bQ, type V1ShippingInformation as bR, type DeliveryLogistics as bS, type DeliveryLogisticsAddressOneOf as bT, type PickupDetails as bU, type PickupAddress as bV, type DeliveryTimeSlot as bW, type ShippingPrice as bX, type ShippingRegion as bY, type TaxSummary as bZ, type OrderTaxInfo as b_, type OrderLineItem as ba, type ProductName as bb, type CatalogReference as bc, type DescriptionLine as bd, type DescriptionLineValueOneOf as be, type DescriptionLineDescriptionLineValueOneOf as bf, type DescriptionLineName as bg, type PlainTextValue as bh, type Color as bi, type FocalPoint as bj, type PhysicalProperties as bk, type Dimensions as bl, type ItemType as bm, type ItemTypeItemTypeDataOneOf as bn, type ItemTaxFullDetails as bo, type LineItemTaxInfo as bp, type LineItemTaxBreakdown as bq, type DigitalFile as br, type SubscriptionInfo as bs, type SubscriptionTitle as bt, type SubscriptionDescription as bu, type SubscriptionSettings as bv, type FreeTrialPeriod as bw, type BillingAdjustment as bx, type BillingAdjustmentPriceSummary as by, type PriceDescription as bz, type PreparePaymentCollectionOptions as c, type ChargebackCreated as c$, type AppliedDiscount as c0, type AppliedDiscountDiscountSourceOneOf as c1, type Coupon as c2, type MerchantDiscount as c3, type MerchantDiscountMerchantDiscountReasonOneOf as c4, type DiscountRule as c5, type DiscountRuleName as c6, type LineItemDiscount as c7, type ItemCombination as c8, type ItemCombinationLineItem as c9, type AuthorizedPaymentCreated as cA, type AuthorizedPaymentCaptured as cB, type AuthorizedPaymentVoided as cC, type RefundInitiated as cD, type RefundedPayment as cE, type RefundedPaymentKindOneOf as cF, type RegularPaymentRefund as cG, type GiftCardPaymentRefund as cH, type MembershipPaymentRefund as cI, type PaymentRefunded as cJ, type PaymentRefundFailed as cK, type RefundedAsStoreCredit as cL, type PaymentPending as cM, type PaymentPendingPaymentDetailsOneOf as cN, type RegularPayment as cO, type RegularPaymentPaymentMethodDetailsOneOf as cP, type CreditCardDetails as cQ, type PaymentCanceled as cR, type PaymentCanceledPaymentDetailsOneOf as cS, type PaymentDeclined as cT, type PaymentDeclinedPaymentDetailsOneOf as cU, type ReceiptCreated as cV, type ReceiptCreatedReceiptInfoOneOf as cW, type WixReceipt as cX, type ExternalReceipt as cY, type ReceiptSent as cZ, type ReceiptSentReceiptInfoOneOf as c_, type Activity as ca, type ActivityContentOneOf as cb, type CustomActivity as cc, type MerchantComment as cd, type OrderRefunded as ce, type OrderCreatedFromExchange as cf, type NewExchangeOrderCreated as cg, type LineItemExchangeData as ch, type DraftOrderChangesApplied as ci, type OrderChange as cj, type OrderChangeValueOneOf as ck, type LineItemChanges as cl, type LineItemQuantityChange as cm, type LineItemPriceChange as cn, type LineItemProductNameChange as co, type LineItemDescriptionLineChange as cp, type LineItemModifiersChange as cq, type ManagedLineItem as cr, type ManagedDiscount as cs, type TranslatedValue as ct, type LineItemAmount as cu, type ManagedAdditionalFee as cv, type TotalPriceChange as cw, type ShippingInformationChange as cx, type ShippingInformation as cy, type SavedPaymentMethod as cz, type PreparePaymentCollectionResponse as d, type InternalDocumentUpdateOperation as d$, type ChargebackReversed as d0, type CreatedBy as d1, type CreatedByStringOneOf as d2, type ChannelInfo as d3, type CustomField as d4, type BalanceSummary as d5, type Balance as d6, type CashRounding as d7, type AdditionalFee as d8, type FulfillmentStatusesAggregate as d9, type ItemChangedDetails as dA, type OrderLineItemChangedDetails as dB, type LineItemDelta as dC, type LineItemDeltaDeltaOneOf as dD, type AppliedDiscountDelta as dE, type AppliedDiscountDeltaDeltaOneOf as dF, type AdditionalFeeDelta as dG, type AdditionalFeeDeltaDeltaOneOf as dH, type DraftOrderCommitSettings as dI, type InventoryUpdateDetails as dJ, type ImportOrderRequest as dK, type SetOrderNumberCounterRequest as dL, type BulkDeleteImportedOrdersRequest as dM, type DomainEvent as dN, type DomainEventBodyOneOf as dO, type EntityCreatedEvent as dP, type RestoreInfo as dQ, type EntityUpdatedEvent as dR, type EntityDeletedEvent as dS, type ActionEvent as dT, type MessageEnvelope as dU, type IdentificationData as dV, type IdentificationDataIdOneOf as dW, type AccountInfo as dX, type UpdateInternalDocumentsEvent as dY, type UpdateInternalDocumentsEventOperationOneOf as dZ, type InternalDocument as d_, type Tags as da, type TagList as db, type Location as dc, type OrderSettings as dd, type OrderSettingsAllowedActionsOneOf as de, type OrderSettingsEditableByOneOf as df, type CustomAllowedActions as dg, type OwnerApps as dh, type FormInfo as di, type FormIdentifier as dj, type PlatformFeeSummary as dk, type PlatformFee as dl, type OrderApproved as dm, type OrdersExperiments as dn, type OrderRejectedEventOrderRejected as dp, type OrderItemsRestocked as dq, type V1RestockItem as dr, type OrderImported as ds, type ImportedOrderDeleted as dt, type PaymentStatusUpdated as du, type FulfillmentStatusUpdated as dv, type OrderCanceledEventOrderCanceled as dw, type OrderDeltasCommitted as dx, type CommittedDiffs as dy, type CommittedDiffsShippingUpdateInfoOneOf as dz, type PreparePaymentCollectionApplicationErrors as e, type SiteUndeleted as e$, type DeleteByIdsOperation as e0, type DeleteByFilterOperation as e1, type InternalDocumentUpdateByFilterOperation as e2, type InternalUpdateExistingOperation as e3, type VersionedDocumentUpdateOperation as e4, type VersionedDeleteByIdsOperation as e5, type VersionedDocumentId as e6, type TriggerReindexRequest as e7, type TriggerReindexResponse as e8, type Empty as e9, type RefundDetails as eA, type RefundItem as eB, type LineItemRefund as eC, type AdditionalFeeRefund as eD, type ShippingRefund as eE, type PreviewRefundEmailResponse as eF, type PreviewCancelEmailRequest as eG, type PreviewCancelEmailResponse as eH, type PreviewCancelRefundEmailRequest as eI, type PreviewCancelRefundEmailResponse as eJ, type PreviewBuyerPaymentsReceivedEmailRequest as eK, type PreviewBuyerPaymentsReceivedEmailResponse as eL, type PreviewBuyerConfirmationEmailRequest as eM, type PreviewBuyerConfirmationEmailResponse as eN, type PreviewBuyerPickupConfirmationEmailRequest as eO, type PreviewBuyerPickupConfirmationEmailResponse as eP, type PreviewShippingConfirmationEmailRequest as eQ, type PreviewShippingConfirmationEmailResponse as eR, type PreviewResendDownloadLinksEmailRequest as eS, type PreviewResendDownloadLinksEmailResponse as eT, type MetaSiteSpecialEvent as eU, type MetaSiteSpecialEventPayloadOneOf as eV, type Asset as eW, type SiteCreated as eX, type SiteTransferred as eY, type SiteDeleted as eZ, type DeleteContext as e_, type TriggerReindexOrderRequest as ea, type SendBuyerConfirmationEmailRequest as eb, type SendBuyerConfirmationEmailResponse as ec, type SendBuyerPaymentsReceivedEmailRequest as ed, type SendBuyerPaymentsReceivedEmailResponse as ee, type SendBuyerPickupConfirmationEmailRequest as ef, type SendBuyerPickupConfirmationEmailResponse as eg, type BulkSendBuyerPickupConfirmationEmailsRequest as eh, type BulkSendBuyerPickupConfirmationEmailsResponse as ei, type SendBuyerShippingConfirmationEmailRequest as ej, type SendBuyerShippingConfirmationEmailResponse as ek, type BulkSendBuyerShippingConfirmationEmailsRequest as el, type BulkSendBuyerShippingConfirmationEmailsResponse as em, type SendMerchantOrderReceivedNotificationRequest as en, type SendMerchantOrderReceivedNotificationResponse as eo, type SendCancelRefundEmailRequest as ep, type SendCancelRefundEmailResponse as eq, type SendRefundEmailRequest as er, type SendRefundEmailResponse as es, type SendFulfillmentEmailRequest as et, type SendFulfillmentEmailResponse as eu, type SendMerchantOrderReceivedPushRequest as ev, type SendMerchantOrderReceivedPushResponse as ew, type PreviewEmailByTypeRequest as ex, type PreviewEmailByTypeResponse as ey, type PreviewRefundEmailRequest as ez, type RecordManuallyCollectedPaymentApplicationErrors as f, type PaymentReceiptInfoOneOf as f$, type SitePublished as f0, type SiteUnpublished as f1, type SiteMarkedAsTemplate as f2, type SiteMarkedAsWixSite as f3, type ServiceProvisioned as f4, type ServiceRemoved as f5, type SiteRenamed as f6, type SiteHardDeleted as f7, type NamespaceChanged as f8, type StudioAssigned as f9, type RecordManuallyCollectedPaymentRequest as fA, type UserDefinedPaymentMethodName as fB, type UserDefinedPaymentMethodNameKindOneOf as fC, type RecordManuallyCollectedPaymentResponse as fD, type MarkOrderAsPaidRequest as fE, type BulkMarkOrdersAsPaidRequest as fF, type BulkOrderResult as fG, type ItemMetadata as fH, type ApplicationError as fI, type BulkActionMetadata as fJ, type GetRefundabilityStatusRequest as fK, type Refundability as fL, type RefundabilityAdditionalRefundabilityInfoOneOf as fM, type CreatePaymentGatewayOrderRequest as fN, type ChargedBy as fO, type ChargeMembershipsRequest as fP, type MembershipChargeItem as fQ, type MembershipName as fR, type ServiceProperties as fS, type ChargeMembershipsResponse as fT, type TriggerRefundRequest as fU, type RefundSideEffects as fV, type RestockInfo as fW, type RestockItem as fX, type OrderTransactions as fY, type Payment as fZ, type PaymentPaymentDetailsOneOf as f_, type StudioUnassigned as fa, type SiteUrlChanged as fb, type SitePurgedExternally as fc, type OdeditorAssigned as fd, type OdeditorUnassigned as fe, type PicassoAssigned as ff, type PicassoUnassigned as fg, type WixelAssigned as fh, type WixelUnassigned as fi, type StudioTwoAssigned as fj, type StudioTwoUnassigned as fk, type UserDomainMediaEnabled as fl, type UserDomainMediaDisabled as fm, type EditorlessAssigned as fn, type EditorlessUnassigned as fo, type HasCustomEmailConfigurationsRequest as fp, type HasCustomEmailConfigurationsResponse as fq, type AddToAutomationMigrationPopulationRequest as fr, type AddToAutomationMigrationPopulationResponse as fs, type IsInAutomationMigrationPopulationRequest as ft, type IsInAutomationMigrationPopulationResponse as fu, type PreparePaymentCollectionRequest as fv, type RedirectUrls as fw, type DelayedCaptureSettings as fx, type Duration as fy, type GetPaymentCollectabilityStatusRequest as fz, type PaymentCollectionMarkOrderAsPaidOptions as g, type V1LineItemDelta as g$, type RegularPaymentDetails as g0, type RegularPaymentDetailsPaymentMethodDetailsOneOf as g1, type CreditCardPaymentMethodDetails as g2, type AuthorizationDetails as g3, type AuthorizationCapture as g4, type AuthorizationActionFailureDetails as g5, type AuthorizationVoid as g6, type V1ScheduledAction as g7, type Chargeback as g8, type PaymentMethodName as g9, type PlatformQueryPagingMethodOneOf as gA, type Sorting as gB, type PlatformPaging as gC, type CursorPaging as gD, type InternalQueryOrdersResponse as gE, type PlatformPagingMetadata as gF, type Cursors as gG, type QueryOrderRequest as gH, type QueryOrderResponse as gI, type SearchOrdersRequest as gJ, type CursorSearch as gK, type CursorSearchPagingMethodOneOf as gL, type CursorPagingMetadata as gM, type CreateOrderRequest as gN, type OrderCreationSettings as gO, type OrderCreationSettingsEditableByOneOf as gP, type OrderCreateNotifications as gQ, type CreateOrderResponse as gR, type UpdateOrderRequest as gS, type UpdateOrderResponse as gT, type BulkUpdateOrdersRequest as gU, type CommitDeltasRequest as gV, type DraftOrderDiffs as gW, type DraftOrderDiffsShippingUpdateInfoOneOf as gX, type DraftOrderDiffsBuyerUpdateInfoOneOf as gY, type DraftOrderDiffsBillingUpdateInfoOneOf as gZ, type DraftOrderDiffsRecipientUpdateInfoOneOf as g_, type GiftCardPaymentDetails as ga, type MembershipPaymentDetails as gb, type WixReceiptInfo as gc, type ExternalReceiptInfo as gd, type CashRoundingDetails as ge, type Refund as gf, type RefundTransaction as gg, type RefundStatusInfo as gh, type AggregatedRefundSummary as gi, type RefundItemsBreakdown as gj, type LineItemRefundSummary as gk, type CalculateRefundRequest as gl, type CalculateRefundItemRequest as gm, type CalculateRefundResponse as gn, type CalculateRefundItemResponse as go, type VoidAuthorizedPaymentsRequest as gp, type CaptureAuthorizedPaymentsRequest as gq, type ChargeSavedPaymentMethodRequest as gr, type ChargeSavedPaymentMethodResponse as gs, type RestockLocation as gt, type DiffmatokyPayload as gu, type ErrorInformation as gv, type GetOrderRequest as gw, type GetOrderResponse as gx, type InternalQueryOrdersRequest as gy, type PlatformQuery as gz, type PaymentCollectionMarkOrderAsPaidApplicationErrors as h, type MarkAsFulfilledResponse as h$, type V1LineItemDeltaDeltaOneOf as h0, type CommitDeltasResponse as h1, type ArchiveOrderRequest as h2, type ArchiveOrderResponse as h3, type BulkArchiveOrdersRequest as h4, type BulkArchiveOrdersResponse as h5, type BulkArchiveOrdersByFilterRequest as h6, type BulkArchiveOrdersByFilterResponse as h7, type UnArchiveOrderRequest as h8, type UnArchiveOrderResponse as h9, type TrackingNumberAdded as hA, type TrackingNumberEdited as hB, type TrackingLinkAdded as hC, type ShippingConfirmationEmailSent as hD, type InvoiceAdded as hE, type InvoiceSent as hF, type FulfillerEmailSent as hG, type ShippingAddressEdited as hH, type EmailEdited as hI, type PickupReadyEmailSent as hJ, type OrderPartiallyPaid as hK, type OrderPending as hL, type OrderRejected as hM, type AddInternalActivityResponse as hN, type AddActivityRequest as hO, type PublicActivityContentOneOf as hP, type AddActivitiesRequest as hQ, type UpdateActivityRequest as hR, type DeleteActivityRequest as hS, type UpdateLineItemsDescriptionLinesRequest as hT, type LineItemUpdate as hU, type UpdateLineItemsDescriptionLinesResponse as hV, type MarkOrderAsSeenByHumanRequest as hW, type MarkOrderAsSeenByHumanResponse as hX, type CancelOrderRequest as hY, type UpdateOrderStatusRequest as hZ, type MarkAsFulfilledRequest as h_, type BulkUnArchiveOrdersRequest as ha, type BulkUnArchiveOrdersResponse as hb, type BulkUnArchiveOrdersByFilterRequest as hc, type BulkUnArchiveOrdersByFilterResponse as hd, type UpdateBuyerInfoRequest as he, type BuyerInfoUpdate as hf, type UpdateBuyerInfoResponse as hg, type UpdateBuyerEmailRequest as hh, type UpdateBuyerEmailResponse as hi, type UpdateOrderShippingAddressRequest as hj, type UpdateOrderShippingAddressResponse as hk, type UpdateBillingContactDetailsRequest as hl, type UpdateBillingContactDetailsResponse as hm, type UpdateOrderLineItemRequest as hn, type UpdateOrderLineItemsRequest as ho, type MaskedOrderLineItem as hp, type UpdateOrderLineItemsResponse as hq, type AddInternalActivityRequest as hr, type InternalActivity as hs, type InternalActivityContentOneOf as ht, type OrderPlaced as hu, type OrderPaid as hv, type OrderFulfilled as hw, type OrderNotFulfilled as hx, type OrderCanceled as hy, type DownloadLinkSent as hz, type BulkMarkOrdersAsPaidResponse as i, type Discount as i$, type BulkMarkAsFulfilledRequest as i0, type BulkMarkAsFulfilledResponse as i1, type BulkMarkAsFulfilledByFilterRequest as i2, type BulkMarkAsFulfilledByFilterResponse as i3, type MarkAsUnfulfilledRequest as i4, type MarkAsUnfulfilledResponse as i5, type BulkMarkAsUnfulfilledRequest as i6, type BulkMarkAsUnfulfilledResponse as i7, type BulkMarkAsUnfulfilledByFilterRequest as i8, type BulkMarkAsUnfulfilledByFilterResponse as i9, type TaskActionActionOneOf as iA, type Complete as iB, type Cancel as iC, type Reschedule as iD, type InvoiceSentEvent as iE, type IdAndVersion as iF, type InvoiceFields as iG, type Customer as iH, type Email as iI, type QuotesAddress as iJ, type AddressDescription as iK, type Phone as iL, type Company as iM, type CommonAddress as iN, type CommonAddressStreetOneOf as iO, type Subdivision as iP, type StandardDetails as iQ, type InvoiceDates as iR, type LineItems as iS, type LineItem as iT, type BigDecimalWrapper as iU, type LineItemTax as iV, type Source as iW, type LineItemMetaData as iX, type Locale as iY, type TotalPrice as iZ, type ItemizedFee as i_, type BulkSetBusinessLocationRequest as ia, type BulkSetBusinessLocationResponse as ib, type BulkSetBusinessLocationResult as ic, type V1MarkOrderAsPaidRequest as id, type V1MarkOrderAsPaidResponse as ie, type V1BulkMarkOrdersAsPaidRequest as ig, type V1BulkMarkOrdersAsPaidResponse as ih, type V1CreatePaymentGatewayOrderRequest as ii, type V1CreatePaymentGatewayOrderResponse as ij, type GetShipmentsRequest as ik, type GetShipmentsResponse as il, type AggregateOrdersRequest as im, type DecrementItemsQuantityRequest as io, type DecrementData as ip, type DecrementItemsQuantityResponse as iq, type BulkUpdateOrderTagsRequest as ir, type TagsTags as is, type TagsTagList as it, type BulkUpdateOrderTagsResult as iu, type SendOrderUpdatedDomainEventRequest as iv, type SendOrderUpdatedDomainEventResponse as iw, type Task as ix, type TaskKey as iy, type TaskAction as iz, type GetRefundabilityStatusResponse as j, type RefundStatusWithLiterals as j$, type DiscountOneDiscountTypeOneOf as j0, type CalculatedTaxes as j1, type CalculatedTax as j2, type Payments as j3, type InvoicesPayment as j4, type MetaData as j5, type InvoiceDynamicPriceTotals as j6, type CustomFieldValue as j7, type Value as j8, type Deposit as j9, type OrderActionTypeWithLiterals as jA, type SpecificItemsCouponBehaviorWithLiterals as jB, type ChargeTypeWithLiterals as jC, type DeltaPaymentOptionTypeWithLiterals as jD, type InventoryActionWithLiterals as jE, type WebhookIdentityTypeWithLiterals as jF, type VersioningModeWithLiterals as jG, type PreviewEmailTypeWithLiterals as jH, type StateWithLiterals as jI, type SiteCreatedContextWithLiterals as jJ, type NamespaceWithLiterals as jK, type DeleteStatusWithLiterals as jL, type ScheduledActionWithLiterals as jM, type DurationUnitWithLiterals as jN, type PaymentCollectabilityStatusWithLiterals as jO, type PredefinedPaymentMethodWithLiterals as jP, type RefundableStatusWithLiterals as jQ, type NonRefundableReasonWithLiterals as jR, type ManuallyRefundableReasonWithLiterals as jS, type RestockTypeWithLiterals as jT, type TransactionStatusWithLiterals as jU, type AuthorizationCaptureStatusWithLiterals as jV, type AuthorizationVoidStatusWithLiterals as jW, type ReasonWithLiterals as jX, type ActionTypeWithLiterals as jY, type ChargebackStatusWithLiterals as jZ, type MembershipPaymentStatusWithLiterals as j_, type BaseEventMetadata as ja, type EventMetadata as jb, type AccountInfoMetadata as jc, type OrderSearchSpec as jd, utils as je, type DescriptionLineTypeWithLiterals as jf, type DimensionsUnitWithLiterals as jg, type ItemTypePresetWithLiterals as jh, type PaymentOptionTypeWithLiterals as ji, type JurisdictionTypeWithLiterals as jj, type SubscriptionFrequencyWithLiterals as jk, type AdjustmentTypeWithLiterals as jl, type TaxableAddressTypeWithLiterals as jm, type PaymentStatusWithLiterals as jn, type FulfillmentStatusWithLiterals as jo, type WeightUnitWithLiterals as jp, type VatTypeWithLiterals as jq, type PickupMethodWithLiterals as jr, type DiscountTypeWithLiterals as js, type DiscountReasonWithLiterals as jt, type LineItemQuantityChangeTypeWithLiterals as ju, type ActivityTypeWithLiterals as jv, type OrderActivityTypeEnumActivityTypeWithLiterals as jw, type AttributionSourceWithLiterals as jx, type ChannelTypeWithLiterals as jy, type AdditionalFeeSourceWithLiterals as jz, type PaymentCollectionCreatePaymentGatewayOrderOptions as k, type SortOrderWithLiterals as k0, type OrderApprovalStrategyWithLiterals as k1, type PlacementWithLiterals as k2, type SubdivisionTypeWithLiterals as k3, type SourceTypeWithLiterals as k4, type CustomFieldGroupWithLiterals as k5, type ValueTypeWithLiterals as k6, type DepositTypeWithLiterals as k7, type InvoiceStatusWithLiterals as k8, type CommonSearchWithEntityContext as k9, addActivity as kA, addActivities as kB, updateActivity as kC, deleteActivity as kD, cancelOrder as kE, updateOrderStatus as kF, aggregateOrders as kG, bulkUpdateOrderTags as kH, onOrderApproved as ka, onOrderCanceled as kb, onOrderCommitted as kc, onOrderCreated as kd, onOrderFulfilled as ke, onOrderPaymentStatusUpdated as kf, onOrderUpdated as kg, importOrder as kh, setOrderNumberCounter as ki, bulkDeleteImportedOrders as kj, preparePaymentCollection as kk, getPaymentCollectabilityStatus as kl, recordManuallyCollectedPayment as km, paymentCollectionMarkOrderAsPaid as kn, paymentCollectionBulkMarkOrdersAsPaid as ko, getRefundabilityStatus as kp, paymentCollectionCreatePaymentGatewayOrder as kq, chargeMemberships as kr, triggerRefund as ks, voidAuthorizedPayments as kt, captureAuthorizedPayments as ku, getOrder as kv, createOrder as kw, updateOrder as kx, bulkUpdateOrders as ky, updateOrderLineItem as kz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as l, type ChargeMembershipsOptions as m, type PaymentRefund as n, type TriggerRefundResponse as o, type TriggerRefundApplicationErrors as p, type VoidAuthorizedPaymentsApplicationErrors as q, type PaymentCapture as r, type CaptureAuthorizedPaymentsResponse as s, type CaptureAuthorizedPaymentsApplicationErrors as t, type GetOrderApplicationErrors as u, type OrderSearch as v, type SearchOrdersResponse as w, type CreateOrderOptions as x, type CreateOrderApplicationErrors as y, type UpdateOrderApplicationErrors 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 RecordManuallyCollectedPaymentOptions, f as RecordManuallyCollectedPaymentApplicationErrors, g as PaymentCollectionMarkOrderAsPaidOptions, M as MarkOrderAsPaidResponse, h as PaymentCollectionMarkOrderAsPaidApplicationErrors, i as BulkMarkOrdersAsPaidResponse, j as GetRefundabilityStatusResponse, k as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, l as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, m as ChargeMembershipsOptions, n as PaymentRefund, T as TriggerRefundOptions, o as TriggerRefundResponse, p as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, q as VoidAuthorizedPaymentsApplicationErrors, r as PaymentCapture, s as CaptureAuthorizedPaymentsResponse, t as CaptureAuthorizedPaymentsApplicationErrors, u as GetOrderApplicationErrors, v as OrderSearch, w as SearchOrdersResponse, x as CreateOrderOptions, y as CreateOrderApplicationErrors, U as UpdateOrder, z as UpdateOrderApplicationErrors, A as MaskedOrder, D as BulkUpdateOrdersOptions, E as BulkUpdateOrdersResponse, F as UpdateOrderLineItemIdentifiers, H as UpdateOrderLineItem, J as UpdateOrderLineItemResponse, K as PublicActivity, L as AddActivityResponse, N as AddActivitiesOptions, Q as AddActivitiesResponse, W as UpdateActivityIdentifiers, X as UpdateActivityResponse, Y as DeleteActivityIdentifiers, Z as DeleteActivityResponse, _ as CancelOrderOptions, $ as CancelOrderResponse, a0 as CancelOrderApplicationErrors, a1 as OrderStatusWithLiterals, a2 as UpdateOrderStatusResponse, a3 as UpdateOrderStatusApplicationErrors, a4 as AggregateOrdersOptions, a5 as AggregateOrdersResponse, a6 as BulkUpdateOrderTagsOptions, a7 as BulkUpdateOrderTagsResponse, a8 as OrderApprovedEnvelope, a9 as OrderCanceledEnvelope, aa as OrderCommittedEnvelope, ab as OrderCreatedEnvelope, ac as OrderFulfilledEnvelope, ad as OrderPaymentStatusUpdatedEnvelope, ae as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-
|
|
3
|
-
export { dX as AccountInfo, jb as AccountInfoMetadata, dT as ActionEvent, aZ as ActionType, jX as ActionTypeWithLiterals, ca as Activity, cb as ActivityContentOneOf, aw as ActivityType, ju as ActivityTypeWithLiterals, hP as AddActivitiesRequest, hN as AddActivityRequest, hq as AddInternalActivityRequest, hM as AddInternalActivityResponse, fr as AddToAutomationMigrationPopulationRequest, fs as AddToAutomationMigrationPopulationResponse, d8 as AdditionalFee, dG as AdditionalFeeDelta, dH as AdditionalFeeDeltaDeltaOneOf, eD as AdditionalFeeRefund, aA as AdditionalFeeSource, jy as AdditionalFeeSourceWithLiterals, bM as Address, iJ as AddressDescription, bO as AddressLocation, bL as AddressWithContact, al as AdjustmentType, jk as AdjustmentTypeWithLiterals, il as AggregateOrdersRequest, gi as AggregatedRefundSummary, fI as ApplicationError, c0 as AppliedDiscount, dE as AppliedDiscountDelta, dF as AppliedDiscountDeltaDeltaOneOf, c1 as AppliedDiscountDiscountSourceOneOf, h1 as ArchiveOrderRequest, h2 as ArchiveOrderResponse, eW as Asset, ay as AttributionSource, jw as AttributionSourceWithLiterals, g5 as AuthorizationActionFailureDetails, g4 as AuthorizationCapture, aW as AuthorizationCaptureStatus, jU as AuthorizationCaptureStatusWithLiterals, g3 as AuthorizationDetails, g6 as AuthorizationVoid, aX as AuthorizationVoidStatus, jV as AuthorizationVoidStatusWithLiterals, cB as AuthorizedPaymentCaptured, cA as AuthorizedPaymentCreated, cC as AuthorizedPaymentVoided, d6 as Balance, d5 as BalanceSummary, j9 as BaseEventMetadata, iT as BigDecimalWrapper, bx as BillingAdjustment, by as BillingAdjustmentPriceSummary, fJ as BulkActionMetadata, h5 as BulkArchiveOrdersByFilterRequest, h6 as BulkArchiveOrdersByFilterResponse, h3 as BulkArchiveOrdersRequest, h4 as BulkArchiveOrdersResponse, dM as BulkDeleteImportedOrdersRequest, i1 as BulkMarkAsFulfilledByFilterRequest, i2 as BulkMarkAsFulfilledByFilterResponse, h$ as BulkMarkAsFulfilledRequest, i0 as BulkMarkAsFulfilledResponse, i7 as BulkMarkAsUnfulfilledByFilterRequest, i8 as BulkMarkAsUnfulfilledByFilterResponse, i5 as BulkMarkAsUnfulfilledRequest, i6 as BulkMarkAsUnfulfilledResponse, fF as BulkMarkOrdersAsPaidRequest, fG as BulkOrderResult, eh as BulkSendBuyerPickupConfirmationEmailsRequest, ei as BulkSendBuyerPickupConfirmationEmailsResponse, el as BulkSendBuyerShippingConfirmationEmailsRequest, em as BulkSendBuyerShippingConfirmationEmailsResponse, i9 as BulkSetBusinessLocationRequest, ia as BulkSetBusinessLocationResponse, ib as BulkSetBusinessLocationResult, hb as BulkUnArchiveOrdersByFilterRequest, hc as BulkUnArchiveOrdersByFilterResponse, h9 as BulkUnArchiveOrdersRequest, ha as BulkUnArchiveOrdersResponse, iq as BulkUpdateOrderTagsRequest, it as BulkUpdateOrderTagsResult, gT as BulkUpdateOrdersRequest, bH as BuyerInfo, bI as BuyerInfoIdOneOf, he as BuyerInfoUpdate, gm as CalculateRefundItemRequest, go as CalculateRefundItemResponse, gl as CalculateRefundRequest, gn as CalculateRefundResponse, j1 as CalculatedTax, j0 as CalculatedTaxes, iB as Cancel, hX as CancelOrderRequest, gq as CaptureAuthorizedPaymentsRequest, d7 as CashRounding, ge as CashRoundingDetails, bc as CatalogReference, d3 as ChannelInfo, az as ChannelType, jx as ChannelTypeWithLiterals, fP as ChargeMembershipsRequest, fT as ChargeMembershipsResponse, gr as ChargeSavedPaymentMethodRequest, gs as ChargeSavedPaymentMethodResponse, aD as ChargeType, jB as ChargeTypeWithLiterals, g8 as Chargeback, c$ as ChargebackCreated, d0 as ChargebackReversed, a_ as ChargebackStatus, jY as ChargebackStatusWithLiterals, fO as ChargedBy, bi as Color, gU as CommitDeltasRequest, h0 as CommitDeltasResponse, dy as CommittedDiffs, dz as CommittedDiffsShippingUpdateInfoOneOf, iM as CommonAddress, iN as CommonAddressStreetOneOf, k8 as CommonSearchWithEntityContext, iL as Company, iA as Complete, c2 as Coupon, gM as CreateOrderRequest, gQ as CreateOrderResponse, fN as CreatePaymentGatewayOrderRequest, d1 as CreatedBy, d2 as CreatedByStringOneOf, cQ as CreditCardDetails, g2 as CreditCardPaymentMethodDetails, bJ as CurrencyConversionDetails, gC as CursorPaging, gL as CursorPagingMetadata, gJ as CursorSearch, gK as CursorSearchPagingMethodOneOf, gF as Cursors, cc as CustomActivity, dg as CustomAllowedActions, d4 as CustomField, b6 as CustomFieldGroup, k4 as CustomFieldGroupWithLiterals, j6 as CustomFieldValue, iG as Customer, io as DecrementData, im as DecrementItemsQuantityRequest, ip as DecrementItemsQuantityResponse, fx as DelayedCaptureSettings, hR as DeleteActivityRequest, e1 as DeleteByFilterOperation, e0 as DeleteByIdsOperation, e_ as DeleteContext, aM as DeleteStatus, jK as DeleteStatusWithLiterals, bS as DeliveryLogistics, bT as DeliveryLogisticsAddressOneOf, bW as DeliveryTimeSlot, aE as DeltaPaymentOptionType, jC as DeltaPaymentOptionTypeWithLiterals, j8 as Deposit, b8 as DepositType, k6 as DepositTypeWithLiterals, bd as DescriptionLine, bf as DescriptionLineDescriptionLineValueOneOf, bg as DescriptionLineName, af as DescriptionLineType, je as DescriptionLineTypeWithLiterals, be as DescriptionLineValueOneOf, gt as DiffmatokyPayload, br as DigitalFile, bl as Dimensions, ag as DimensionsUnit, jf as DimensionsUnitWithLiterals, i_ as Discount, i$ as DiscountOneDiscountTypeOneOf, au as DiscountReason, js as DiscountReasonWithLiterals, c5 as DiscountRule, c6 as DiscountRuleName, at as DiscountType, jr as DiscountTypeWithLiterals, dN as DomainEvent, dO as DomainEventBodyOneOf, hy as DownloadLinkSent, ci as DraftOrderChangesApplied, dI as DraftOrderCommitSettings, gV as DraftOrderDiffs, gY as DraftOrderDiffsBillingUpdateInfoOneOf, gX as DraftOrderDiffsBuyerUpdateInfoOneOf, gZ as DraftOrderDiffsRecipientUpdateInfoOneOf, gW as DraftOrderDiffsShippingUpdateInfoOneOf, fy as Duration, aO as DurationUnit, jM as DurationUnitWithLiterals, fn as EditorlessAssigned, fo as EditorlessUnassigned, iH as Email, hH as EmailEdited, e9 as Empty, dP as EntityCreatedEvent, dS as EntityDeletedEvent, dR as EntityUpdatedEvent, gu as ErrorInformation, ja as EventMetadata, bD as ExtendedFields, cY as ExternalReceipt, gd as ExternalReceiptInfo, bj as FocalPoint, dj as FormIdentifier, di as FormInfo, bw as FreeTrialPeriod, hF as FulfillerEmailSent, ao as FulfillmentStatus, dv as FulfillmentStatusUpdated, jn as FulfillmentStatusWithLiterals, d9 as FulfillmentStatusesAggregate, bP as FullAddressContactDetails, gv as GetOrderRequest, gw as GetOrderResponse, fz as GetPaymentCollectabilityStatusRequest, fK as GetRefundabilityStatusRequest, ij as GetShipmentsRequest, ik as GetShipmentsResponse, ga as GiftCardPaymentDetails, cH as GiftCardPaymentRefund, fp as HasCustomEmailConfigurationsRequest, fq as HasCustomEmailConfigurationsResponse, iE as IdAndVersion, dV as IdentificationData, dW as IdentificationDataIdOneOf, dK as ImportOrderRequest, dt as ImportedOrderDeleted, hr as InternalActivity, hs as InternalActivityContentOneOf, d_ as InternalDocument, e2 as InternalDocumentUpdateByFilterOperation, d$ as InternalDocumentUpdateOperation, gx as InternalQueryOrdersRequest, gD as InternalQueryOrdersResponse, e3 as InternalUpdateExistingOperation, aF as InventoryAction, jD as InventoryActionWithLiterals, dJ as InventoryUpdateDetails, hD as InvoiceAdded, iQ as InvoiceDates, j5 as InvoiceDynamicPriceTotals, iF as InvoiceFields, hE as InvoiceSent, iD as InvoiceSentEvent, b9 as InvoiceStatus, k7 as InvoiceStatusWithLiterals, j3 as InvoicesPayment, ft as IsInAutomationMigrationPopulationRequest, fu as IsInAutomationMigrationPopulationResponse, dA as ItemChangedDetails, c8 as ItemCombination, c9 as ItemCombinationLineItem, fH as ItemMetadata, bG as ItemModifier, bo as ItemTaxFullDetails, bm as ItemType, bn as ItemTypeItemTypeDataOneOf, ah as ItemTypePreset, jg as ItemTypePresetWithLiterals, iZ as ItemizedFee, aj as JurisdictionType, ji as JurisdictionTypeWithLiterals, iS as LineItem, cu as LineItemAmount, cl as LineItemChanges, dC as LineItemDelta, dD as LineItemDeltaDeltaOneOf, cp as LineItemDescriptionLineChange, c7 as LineItemDiscount, ch as LineItemExchangeData, iW as LineItemMetaData, cq as LineItemModifiersChange, cn as LineItemPriceChange, co as LineItemProductNameChange, cm as LineItemQuantityChange, av as LineItemQuantityChangeType, jt as LineItemQuantityChangeTypeWithLiterals, eC as LineItemRefund, gk as LineItemRefundSummary, iU as LineItemTax, bq as LineItemTaxBreakdown, bp as LineItemTaxInfo, hT as LineItemUpdate, iR as LineItems, iX as Locale, dc as Location, bA as LocationAndQuantity, cv as ManagedAdditionalFee, cs as ManagedDiscount, cr as ManagedLineItem, aT as ManuallyRefundableReason, jR as ManuallyRefundableReasonWithLiterals, hZ as MarkAsFulfilledRequest, h_ as MarkAsFulfilledResponse, i3 as MarkAsUnfulfilledRequest, i4 as MarkAsUnfulfilledResponse, fE as MarkOrderAsPaidRequest, hV as MarkOrderAsSeenByHumanRequest, hW as MarkOrderAsSeenByHumanResponse, ho as MaskedOrderLineItem, fQ as MembershipChargeItem, fR as MembershipName, gb as MembershipPaymentDetails, cI as MembershipPaymentRefund, a$ as MembershipPaymentStatus, jZ as MembershipPaymentStatusWithLiterals, cd as MerchantComment, c3 as MerchantDiscount, c4 as MerchantDiscountMerchantDiscountReasonOneOf, dU as MessageEnvelope, j4 as MetaData, eU as MetaSiteSpecialEvent, eV as MetaSiteSpecialEventPayloadOneOf, bE as ModifierGroup, aL as Namespace, f8 as NamespaceChanged, jJ as NamespaceWithLiterals, cg as NewExchangeOrderCreated, aS as NonRefundableReason, jQ as NonRefundableReasonWithLiterals, fd as OdeditorAssigned, fe as OdeditorUnassigned, aB as OrderActionType, jz as OrderActionTypeWithLiterals, ax as OrderActivityTypeEnumActivityType, jv as OrderActivityTypeEnumActivityTypeWithLiterals, b2 as OrderApprovalStrategy, k0 as OrderApprovalStrategyWithLiterals, dm as OrderApproved, hx as OrderCanceled, dw as OrderCanceledEventOrderCanceled, cj as OrderChange, ck as OrderChangeValueOneOf, gP as OrderCreateNotifications, cf as OrderCreatedFromExchange, gN as OrderCreationSettings, gO as OrderCreationSettingsEditableByOneOf, dx as OrderDeltasCommitted, hv as OrderFulfilled, ds as OrderImported, dq as OrderItemsRestocked, ba as OrderLineItem, dB as OrderLineItemChangedDetails, hw as OrderNotFulfilled, hu as OrderPaid, hJ as OrderPartiallyPaid, hK as OrderPending, ht as OrderPlaced, ce as OrderRefunded, hL as OrderRejected, dp as OrderRejectedEventOrderRejected, jc as OrderSearchSpec, dd as OrderSettings, de as OrderSettingsAllowedActionsOneOf, df as OrderSettingsEditableByOneOf, as as OrderStatus, b$ as OrderTaxBreakdown, b_ as OrderTaxInfo, fY as OrderTransactions, dn as OrdersExperiments, dh as OwnerApps, fZ as Payment, cR as PaymentCanceled, cS as PaymentCanceledPaymentDetailsOneOf, aP as PaymentCollectabilityStatus, jN as PaymentCollectabilityStatusWithLiterals, cT as PaymentDeclined, cU as PaymentDeclinedPaymentDetailsOneOf, g9 as PaymentMethodName, ai as PaymentOptionType, jh as PaymentOptionTypeWithLiterals, f_ as PaymentPaymentDetailsOneOf, cM as PaymentPending, cN as PaymentPendingPaymentDetailsOneOf, f$ as PaymentReceiptInfoOneOf, cK as PaymentRefundFailed, cJ as PaymentRefunded, an as PaymentStatus, du as PaymentStatusUpdated, jm as PaymentStatusWithLiterals, j2 as Payments, iK as Phone, bk as PhysicalProperties, ff as PicassoAssigned, fg as PicassoUnassigned, bV as PickupAddress, bU as PickupDetails, ar as PickupMethod, jq as PickupMethodWithLiterals, hI as PickupReadyEmailSent, b3 as Placement, k1 as PlacementWithLiterals, bh as PlainTextValue, dl as PlatformFee, dk as PlatformFeeSummary, gB as PlatformPaging, gE as PlatformPagingMetadata, gy as PlatformQuery, gz as PlatformQueryPagingMethodOneOf, aQ as PredefinedPaymentMethod, jO as PredefinedPaymentMethodWithLiterals, fv as PreparePaymentCollectionRequest, eM as PreviewBuyerConfirmationEmailRequest, eN as PreviewBuyerConfirmationEmailResponse, eK as PreviewBuyerPaymentsReceivedEmailRequest, eL as PreviewBuyerPaymentsReceivedEmailResponse, eO as PreviewBuyerPickupConfirmationEmailRequest, eP as PreviewBuyerPickupConfirmationEmailResponse, eG as PreviewCancelEmailRequest, eH as PreviewCancelEmailResponse, eI as PreviewCancelRefundEmailRequest, eJ as PreviewCancelRefundEmailResponse, ex as PreviewEmailByTypeRequest, ey as PreviewEmailByTypeResponse, aI as PreviewEmailType, jG as PreviewEmailTypeWithLiterals, ez as PreviewRefundEmailRequest, eF as PreviewRefundEmailResponse, eS as PreviewResendDownloadLinksEmailRequest, eT as PreviewResendDownloadLinksEmailResponse, eQ as PreviewShippingConfirmationEmailRequest, eR as PreviewShippingConfirmationEmailResponse, bz as PriceDescription, bK as PriceSummary, bb as ProductName, hO as PublicActivityContentOneOf, gG as QueryOrderRequest, gH as QueryOrderResponse, iI as QuotesAddress, aY as Reason, jW as ReasonWithLiterals, cV as ReceiptCreated, cW as ReceiptCreatedReceiptInfoOneOf, cZ as ReceiptSent, c_ as ReceiptSentReceiptInfoOneOf, fA as RecordManuallyCollectedPaymentRequest, fD as RecordManuallyCollectedPaymentResponse, fw as RedirectUrls, gf as Refund, eA as RefundDetails, cD as RefundInitiated, eB as RefundItem, gj as RefundItemsBreakdown, fV as RefundSideEffects, b0 as RefundStatus, gh as RefundStatusInfo, j_ as RefundStatusWithLiterals, gg as RefundTransaction, fL as Refundability, fM as RefundabilityAdditionalRefundabilityInfoOneOf, aR as RefundableStatus, jP as RefundableStatusWithLiterals, cL as RefundedAsStoreCredit, cE as RefundedPayment, cF as RefundedPaymentKindOneOf, cO as RegularPayment, g0 as RegularPaymentDetails, g1 as RegularPaymentDetailsPaymentMethodDetailsOneOf, cP as RegularPaymentPaymentMethodDetailsOneOf, cG as RegularPaymentRefund, iC as Reschedule, fW as RestockInfo, fX as RestockItem, aU as RestockType, jS as RestockTypeWithLiterals, dQ as RestoreInfo, cz as SavedPaymentMethod, aN as ScheduledAction, jL as ScheduledActionWithLiterals, gI as SearchOrdersRequest, eb as SendBuyerConfirmationEmailRequest, ec as SendBuyerConfirmationEmailResponse, ed as SendBuyerPaymentsReceivedEmailRequest, ee as SendBuyerPaymentsReceivedEmailResponse, ef as SendBuyerPickupConfirmationEmailRequest, eg as SendBuyerPickupConfirmationEmailResponse, ej as SendBuyerShippingConfirmationEmailRequest, ek as SendBuyerShippingConfirmationEmailResponse, ep as SendCancelRefundEmailRequest, eq as SendCancelRefundEmailResponse, et as SendFulfillmentEmailRequest, eu as SendFulfillmentEmailResponse, en as SendMerchantOrderReceivedNotificationRequest, eo as SendMerchantOrderReceivedNotificationResponse, ev as SendMerchantOrderReceivedPushRequest, ew as SendMerchantOrderReceivedPushResponse, iu as SendOrderUpdatedDomainEventRequest, iv as SendOrderUpdatedDomainEventResponse, er as SendRefundEmailRequest, es as SendRefundEmailResponse, fS as ServiceProperties, f4 as ServiceProvisioned, f5 as ServiceRemoved, dL as SetOrderNumberCounterRequest, hG as ShippingAddressEdited, hC as ShippingConfirmationEmailSent, cy as ShippingInformation, cx as ShippingInformationChange, bX as ShippingPrice, eE as ShippingRefund, bY as ShippingRegion, eX as SiteCreated, aK as SiteCreatedContext, jI as SiteCreatedContextWithLiterals, eZ as SiteDeleted, f7 as SiteHardDeleted, f2 as SiteMarkedAsTemplate, f3 as SiteMarkedAsWixSite, f0 as SitePublished, fc as SitePurgedExternally, f6 as SiteRenamed, eY as SiteTransferred, e$ as SiteUndeleted, f1 as SiteUnpublished, fb as SiteUrlChanged, b1 as SortOrder, j$ as SortOrderWithLiterals, gA as Sorting, iV as Source, b5 as SourceType, k3 as SourceTypeWithLiterals, aC as SpecificItemsCouponBehavior, jA as SpecificItemsCouponBehaviorWithLiterals, iP as StandardDetails, aJ as State, jH as StateWithLiterals, bN as StreetAddress, f9 as StudioAssigned, fj as StudioTwoAssigned, fk as StudioTwoUnassigned, fa as StudioUnassigned, iO as Subdivision, b4 as SubdivisionType, k2 as SubdivisionTypeWithLiterals, bu as SubscriptionDescription, ak as SubscriptionFrequency, jj as SubscriptionFrequencyWithLiterals, bs as SubscriptionInfo, bv as SubscriptionSettings, bt as SubscriptionTitle, db as TagList, da as Tags, is as TagsTagList, ir as TagsTags, iw as Task, iy as TaskAction, iz as TaskActionActionOneOf, ix as TaskKey, bZ as TaxSummary, bB as TaxableAddress, bC as TaxableAddressTaxableAddressDataOneOf, am as TaxableAddressType, jl as TaxableAddressTypeWithLiterals, iY as TotalPrice, cw as TotalPriceChange, hB as TrackingLinkAdded, hz as TrackingNumberAdded, hA as TrackingNumberEdited, aV as TransactionStatus, jT as TransactionStatusWithLiterals, bF as TranslatableString, ct as TranslatedValue, fU as TriggerRefundRequest, ea as TriggerReindexOrderRequest, e7 as TriggerReindexRequest, e8 as TriggerReindexResponse, h7 as UnArchiveOrderRequest, h8 as UnArchiveOrderResponse, hQ as UpdateActivityRequest, hk as UpdateBillingContactDetailsRequest, hl as UpdateBillingContactDetailsResponse, hg as UpdateBuyerEmailRequest, hh as UpdateBuyerEmailResponse, hd as UpdateBuyerInfoRequest, hf as UpdateBuyerInfoResponse, dY as UpdateInternalDocumentsEvent, dZ as UpdateInternalDocumentsEventOperationOneOf, hS as UpdateLineItemsDescriptionLinesRequest, hU as UpdateLineItemsDescriptionLinesResponse, hm as UpdateOrderLineItemRequest, hn as UpdateOrderLineItemsRequest, hp as UpdateOrderLineItemsResponse, gR as UpdateOrderRequest, gS as UpdateOrderResponse, hi as UpdateOrderShippingAddressRequest, hj as UpdateOrderShippingAddressResponse, hY as UpdateOrderStatusRequest, fB as UserDefinedPaymentMethodName, fC as UserDefinedPaymentMethodNameKindOneOf, fm as UserDomainMediaDisabled, fl as UserDomainMediaEnabled, ie as V1BulkMarkOrdersAsPaidRequest, ig as V1BulkMarkOrdersAsPaidResponse, ih as V1CreatePaymentGatewayOrderRequest, ii as V1CreatePaymentGatewayOrderResponse, g_ as V1LineItemDelta, g$ as V1LineItemDeltaDeltaOneOf, ic as V1MarkOrderAsPaidRequest, id as V1MarkOrderAsPaidResponse, dr as V1RestockItem, g7 as V1ScheduledAction, bR as V1ShippingInformation, j7 as Value, b7 as ValueType, k5 as ValueTypeWithLiterals, bQ as VatId, aq as VatType, jp as VatTypeWithLiterals, e5 as VersionedDeleteByIdsOperation, e6 as VersionedDocumentId, e4 as VersionedDocumentUpdateOperation, aH as VersioningMode, jF as VersioningModeWithLiterals, gp as VoidAuthorizedPaymentsRequest, aG as WebhookIdentityType, jE as WebhookIdentityTypeWithLiterals, ap as WeightUnit, jo as WeightUnitWithLiterals, cX as WixReceipt, gc as WixReceiptInfo, fh as WixelAssigned, fi as WixelUnassigned, jd as utils } from './ecom-v1-order-orders.universal-dDfQOcE9.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 RecordManuallyCollectedPaymentOptions, f as RecordManuallyCollectedPaymentApplicationErrors, g as PaymentCollectionMarkOrderAsPaidOptions, M as MarkOrderAsPaidResponse, h as PaymentCollectionMarkOrderAsPaidApplicationErrors, i as BulkMarkOrdersAsPaidResponse, j as GetRefundabilityStatusResponse, k as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, l as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, m as ChargeMembershipsOptions, n as PaymentRefund, T as TriggerRefundOptions, o as TriggerRefundResponse, p as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, q as VoidAuthorizedPaymentsApplicationErrors, r as PaymentCapture, s as CaptureAuthorizedPaymentsResponse, t as CaptureAuthorizedPaymentsApplicationErrors, u as GetOrderApplicationErrors, v as OrderSearch, w as SearchOrdersResponse, x as CreateOrderOptions, y as CreateOrderApplicationErrors, U as UpdateOrder, z as UpdateOrderApplicationErrors, A as MaskedOrder, D as BulkUpdateOrdersOptions, E as BulkUpdateOrdersResponse, F as UpdateOrderLineItemIdentifiers, H as UpdateOrderLineItem, J as UpdateOrderLineItemResponse, K as PublicActivity, L as AddActivityResponse, N as AddActivitiesOptions, Q as AddActivitiesResponse, W as UpdateActivityIdentifiers, X as UpdateActivityResponse, Y as DeleteActivityIdentifiers, Z as DeleteActivityResponse, _ as CancelOrderOptions, $ as CancelOrderResponse, a0 as CancelOrderApplicationErrors, a1 as OrderStatusWithLiterals, a2 as UpdateOrderStatusResponse, a3 as UpdateOrderStatusApplicationErrors, a4 as AggregateOrdersOptions, a5 as AggregateOrdersResponse, a6 as BulkUpdateOrderTagsOptions, a7 as BulkUpdateOrderTagsResponse, a8 as OrderApprovedEnvelope, a9 as OrderCanceledEnvelope, aa as OrderCommittedEnvelope, ab as OrderCreatedEnvelope, ac as OrderFulfilledEnvelope, ad as OrderPaymentStatusUpdatedEnvelope, ae as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-B_SIJVco.mjs';
|
|
3
|
+
export { dX as AccountInfo, jc as AccountInfoMetadata, dT as ActionEvent, aZ as ActionType, jY as ActionTypeWithLiterals, ca as Activity, cb as ActivityContentOneOf, aw as ActivityType, jv as ActivityTypeWithLiterals, hQ as AddActivitiesRequest, hO as AddActivityRequest, hr as AddInternalActivityRequest, hN as AddInternalActivityResponse, fr as AddToAutomationMigrationPopulationRequest, fs as AddToAutomationMigrationPopulationResponse, d8 as AdditionalFee, dG as AdditionalFeeDelta, dH as AdditionalFeeDeltaDeltaOneOf, eD as AdditionalFeeRefund, aA as AdditionalFeeSource, jz as AdditionalFeeSourceWithLiterals, bM as Address, iK as AddressDescription, bO as AddressLocation, bL as AddressWithContact, al as AdjustmentType, jl as AdjustmentTypeWithLiterals, im as AggregateOrdersRequest, gi as AggregatedRefundSummary, fI as ApplicationError, c0 as AppliedDiscount, dE as AppliedDiscountDelta, dF as AppliedDiscountDeltaDeltaOneOf, c1 as AppliedDiscountDiscountSourceOneOf, h2 as ArchiveOrderRequest, h3 as ArchiveOrderResponse, eW as Asset, ay as AttributionSource, jx as AttributionSourceWithLiterals, g5 as AuthorizationActionFailureDetails, g4 as AuthorizationCapture, aW as AuthorizationCaptureStatus, jV as AuthorizationCaptureStatusWithLiterals, g3 as AuthorizationDetails, g6 as AuthorizationVoid, aX as AuthorizationVoidStatus, jW as AuthorizationVoidStatusWithLiterals, cB as AuthorizedPaymentCaptured, cA as AuthorizedPaymentCreated, cC as AuthorizedPaymentVoided, d6 as Balance, d5 as BalanceSummary, ja as BaseEventMetadata, iU as BigDecimalWrapper, bx as BillingAdjustment, by as BillingAdjustmentPriceSummary, fJ as BulkActionMetadata, h6 as BulkArchiveOrdersByFilterRequest, h7 as BulkArchiveOrdersByFilterResponse, h4 as BulkArchiveOrdersRequest, h5 as BulkArchiveOrdersResponse, dM as BulkDeleteImportedOrdersRequest, i2 as BulkMarkAsFulfilledByFilterRequest, i3 as BulkMarkAsFulfilledByFilterResponse, i0 as BulkMarkAsFulfilledRequest, i1 as BulkMarkAsFulfilledResponse, i8 as BulkMarkAsUnfulfilledByFilterRequest, i9 as BulkMarkAsUnfulfilledByFilterResponse, i6 as BulkMarkAsUnfulfilledRequest, i7 as BulkMarkAsUnfulfilledResponse, fF as BulkMarkOrdersAsPaidRequest, fG as BulkOrderResult, eh as BulkSendBuyerPickupConfirmationEmailsRequest, ei as BulkSendBuyerPickupConfirmationEmailsResponse, el as BulkSendBuyerShippingConfirmationEmailsRequest, em as BulkSendBuyerShippingConfirmationEmailsResponse, ia as BulkSetBusinessLocationRequest, ib as BulkSetBusinessLocationResponse, ic as BulkSetBusinessLocationResult, hc as BulkUnArchiveOrdersByFilterRequest, hd as BulkUnArchiveOrdersByFilterResponse, ha as BulkUnArchiveOrdersRequest, hb as BulkUnArchiveOrdersResponse, ir as BulkUpdateOrderTagsRequest, iu as BulkUpdateOrderTagsResult, gU as BulkUpdateOrdersRequest, bH as BuyerInfo, bI as BuyerInfoIdOneOf, hf as BuyerInfoUpdate, gm as CalculateRefundItemRequest, go as CalculateRefundItemResponse, gl as CalculateRefundRequest, gn as CalculateRefundResponse, j2 as CalculatedTax, j1 as CalculatedTaxes, iC as Cancel, hY as CancelOrderRequest, gq as CaptureAuthorizedPaymentsRequest, d7 as CashRounding, ge as CashRoundingDetails, bc as CatalogReference, d3 as ChannelInfo, az as ChannelType, jy as ChannelTypeWithLiterals, fP as ChargeMembershipsRequest, fT as ChargeMembershipsResponse, gr as ChargeSavedPaymentMethodRequest, gs as ChargeSavedPaymentMethodResponse, aD as ChargeType, jC as ChargeTypeWithLiterals, g8 as Chargeback, c$ as ChargebackCreated, d0 as ChargebackReversed, a_ as ChargebackStatus, jZ as ChargebackStatusWithLiterals, fO as ChargedBy, bi as Color, gV as CommitDeltasRequest, h1 as CommitDeltasResponse, dy as CommittedDiffs, dz as CommittedDiffsShippingUpdateInfoOneOf, iN as CommonAddress, iO as CommonAddressStreetOneOf, k9 as CommonSearchWithEntityContext, iM as Company, iB as Complete, c2 as Coupon, gN as CreateOrderRequest, gR as CreateOrderResponse, fN as CreatePaymentGatewayOrderRequest, d1 as CreatedBy, d2 as CreatedByStringOneOf, cQ as CreditCardDetails, g2 as CreditCardPaymentMethodDetails, bJ as CurrencyConversionDetails, gD as CursorPaging, gM as CursorPagingMetadata, gK as CursorSearch, gL as CursorSearchPagingMethodOneOf, gG as Cursors, cc as CustomActivity, dg as CustomAllowedActions, d4 as CustomField, b6 as CustomFieldGroup, k5 as CustomFieldGroupWithLiterals, j7 as CustomFieldValue, iH as Customer, ip as DecrementData, io as DecrementItemsQuantityRequest, iq as DecrementItemsQuantityResponse, fx as DelayedCaptureSettings, hS as DeleteActivityRequest, e1 as DeleteByFilterOperation, e0 as DeleteByIdsOperation, e_ as DeleteContext, aM as DeleteStatus, jL as DeleteStatusWithLiterals, bS as DeliveryLogistics, bT as DeliveryLogisticsAddressOneOf, bW as DeliveryTimeSlot, aE as DeltaPaymentOptionType, jD as DeltaPaymentOptionTypeWithLiterals, j9 as Deposit, b8 as DepositType, k7 as DepositTypeWithLiterals, bd as DescriptionLine, bf as DescriptionLineDescriptionLineValueOneOf, bg as DescriptionLineName, af as DescriptionLineType, jf as DescriptionLineTypeWithLiterals, be as DescriptionLineValueOneOf, gu as DiffmatokyPayload, br as DigitalFile, bl as Dimensions, ag as DimensionsUnit, jg as DimensionsUnitWithLiterals, i$ as Discount, j0 as DiscountOneDiscountTypeOneOf, au as DiscountReason, jt as DiscountReasonWithLiterals, c5 as DiscountRule, c6 as DiscountRuleName, at as DiscountType, js as DiscountTypeWithLiterals, dN as DomainEvent, dO as DomainEventBodyOneOf, hz as DownloadLinkSent, ci as DraftOrderChangesApplied, dI as DraftOrderCommitSettings, gW as DraftOrderDiffs, gZ as DraftOrderDiffsBillingUpdateInfoOneOf, gY as DraftOrderDiffsBuyerUpdateInfoOneOf, g_ as DraftOrderDiffsRecipientUpdateInfoOneOf, gX as DraftOrderDiffsShippingUpdateInfoOneOf, fy as Duration, aO as DurationUnit, jN as DurationUnitWithLiterals, fn as EditorlessAssigned, fo as EditorlessUnassigned, iI as Email, hI as EmailEdited, e9 as Empty, dP as EntityCreatedEvent, dS as EntityDeletedEvent, dR as EntityUpdatedEvent, gv as ErrorInformation, jb as EventMetadata, bD as ExtendedFields, cY as ExternalReceipt, gd as ExternalReceiptInfo, bj as FocalPoint, dj as FormIdentifier, di as FormInfo, bw as FreeTrialPeriod, hG as FulfillerEmailSent, ao as FulfillmentStatus, dv as FulfillmentStatusUpdated, jo as FulfillmentStatusWithLiterals, d9 as FulfillmentStatusesAggregate, bP as FullAddressContactDetails, gw as GetOrderRequest, gx as GetOrderResponse, fz as GetPaymentCollectabilityStatusRequest, fK as GetRefundabilityStatusRequest, ik as GetShipmentsRequest, il as GetShipmentsResponse, ga as GiftCardPaymentDetails, cH as GiftCardPaymentRefund, fp as HasCustomEmailConfigurationsRequest, fq as HasCustomEmailConfigurationsResponse, iF as IdAndVersion, dV as IdentificationData, dW as IdentificationDataIdOneOf, dK as ImportOrderRequest, dt as ImportedOrderDeleted, hs as InternalActivity, ht as InternalActivityContentOneOf, d_ as InternalDocument, e2 as InternalDocumentUpdateByFilterOperation, d$ as InternalDocumentUpdateOperation, gy as InternalQueryOrdersRequest, gE as InternalQueryOrdersResponse, e3 as InternalUpdateExistingOperation, aF as InventoryAction, jE as InventoryActionWithLiterals, dJ as InventoryUpdateDetails, hE as InvoiceAdded, iR as InvoiceDates, j6 as InvoiceDynamicPriceTotals, iG as InvoiceFields, hF as InvoiceSent, iE as InvoiceSentEvent, b9 as InvoiceStatus, k8 as InvoiceStatusWithLiterals, j4 as InvoicesPayment, ft as IsInAutomationMigrationPopulationRequest, fu as IsInAutomationMigrationPopulationResponse, dA as ItemChangedDetails, c8 as ItemCombination, c9 as ItemCombinationLineItem, fH as ItemMetadata, bG as ItemModifier, bo as ItemTaxFullDetails, bm as ItemType, bn as ItemTypeItemTypeDataOneOf, ah as ItemTypePreset, jh as ItemTypePresetWithLiterals, i_ as ItemizedFee, aj as JurisdictionType, jj as JurisdictionTypeWithLiterals, iT as LineItem, cu as LineItemAmount, cl as LineItemChanges, dC as LineItemDelta, dD as LineItemDeltaDeltaOneOf, cp as LineItemDescriptionLineChange, c7 as LineItemDiscount, ch as LineItemExchangeData, iX as LineItemMetaData, cq as LineItemModifiersChange, cn as LineItemPriceChange, co as LineItemProductNameChange, cm as LineItemQuantityChange, av as LineItemQuantityChangeType, ju as LineItemQuantityChangeTypeWithLiterals, eC as LineItemRefund, gk as LineItemRefundSummary, iV as LineItemTax, bq as LineItemTaxBreakdown, bp as LineItemTaxInfo, hU as LineItemUpdate, iS as LineItems, iY as Locale, dc as Location, bA as LocationAndQuantity, cv as ManagedAdditionalFee, cs as ManagedDiscount, cr as ManagedLineItem, aT as ManuallyRefundableReason, jS as ManuallyRefundableReasonWithLiterals, h_ as MarkAsFulfilledRequest, h$ as MarkAsFulfilledResponse, i4 as MarkAsUnfulfilledRequest, i5 as MarkAsUnfulfilledResponse, fE as MarkOrderAsPaidRequest, hW as MarkOrderAsSeenByHumanRequest, hX as MarkOrderAsSeenByHumanResponse, hp as MaskedOrderLineItem, fQ as MembershipChargeItem, fR as MembershipName, gb as MembershipPaymentDetails, cI as MembershipPaymentRefund, a$ as MembershipPaymentStatus, j_ as MembershipPaymentStatusWithLiterals, cd as MerchantComment, c3 as MerchantDiscount, c4 as MerchantDiscountMerchantDiscountReasonOneOf, dU as MessageEnvelope, j5 as MetaData, eU as MetaSiteSpecialEvent, eV as MetaSiteSpecialEventPayloadOneOf, bE as ModifierGroup, aL as Namespace, f8 as NamespaceChanged, jK as NamespaceWithLiterals, cg as NewExchangeOrderCreated, aS as NonRefundableReason, jR as NonRefundableReasonWithLiterals, fd as OdeditorAssigned, fe as OdeditorUnassigned, aB as OrderActionType, jA as OrderActionTypeWithLiterals, ax as OrderActivityTypeEnumActivityType, jw as OrderActivityTypeEnumActivityTypeWithLiterals, b2 as OrderApprovalStrategy, k1 as OrderApprovalStrategyWithLiterals, dm as OrderApproved, hy as OrderCanceled, dw as OrderCanceledEventOrderCanceled, cj as OrderChange, ck as OrderChangeValueOneOf, gQ as OrderCreateNotifications, cf as OrderCreatedFromExchange, gO as OrderCreationSettings, gP as OrderCreationSettingsEditableByOneOf, dx as OrderDeltasCommitted, hw as OrderFulfilled, ds as OrderImported, dq as OrderItemsRestocked, ba as OrderLineItem, dB as OrderLineItemChangedDetails, hx as OrderNotFulfilled, hv as OrderPaid, hK as OrderPartiallyPaid, hL as OrderPending, hu as OrderPlaced, ce as OrderRefunded, hM as OrderRejected, dp as OrderRejectedEventOrderRejected, jd as OrderSearchSpec, dd as OrderSettings, de as OrderSettingsAllowedActionsOneOf, df as OrderSettingsEditableByOneOf, as as OrderStatus, b$ as OrderTaxBreakdown, b_ as OrderTaxInfo, fY as OrderTransactions, dn as OrdersExperiments, dh as OwnerApps, fZ as Payment, cR as PaymentCanceled, cS as PaymentCanceledPaymentDetailsOneOf, aP as PaymentCollectabilityStatus, jO as PaymentCollectabilityStatusWithLiterals, cT as PaymentDeclined, cU as PaymentDeclinedPaymentDetailsOneOf, g9 as PaymentMethodName, ai as PaymentOptionType, ji as PaymentOptionTypeWithLiterals, f_ as PaymentPaymentDetailsOneOf, cM as PaymentPending, cN as PaymentPendingPaymentDetailsOneOf, f$ as PaymentReceiptInfoOneOf, cK as PaymentRefundFailed, cJ as PaymentRefunded, an as PaymentStatus, du as PaymentStatusUpdated, jn as PaymentStatusWithLiterals, j3 as Payments, iL as Phone, bk as PhysicalProperties, ff as PicassoAssigned, fg as PicassoUnassigned, bV as PickupAddress, bU as PickupDetails, ar as PickupMethod, jr as PickupMethodWithLiterals, hJ as PickupReadyEmailSent, b3 as Placement, k2 as PlacementWithLiterals, bh as PlainTextValue, dl as PlatformFee, dk as PlatformFeeSummary, gC as PlatformPaging, gF as PlatformPagingMetadata, gz as PlatformQuery, gA as PlatformQueryPagingMethodOneOf, aQ as PredefinedPaymentMethod, jP as PredefinedPaymentMethodWithLiterals, fv as PreparePaymentCollectionRequest, eM as PreviewBuyerConfirmationEmailRequest, eN as PreviewBuyerConfirmationEmailResponse, eK as PreviewBuyerPaymentsReceivedEmailRequest, eL as PreviewBuyerPaymentsReceivedEmailResponse, eO as PreviewBuyerPickupConfirmationEmailRequest, eP as PreviewBuyerPickupConfirmationEmailResponse, eG as PreviewCancelEmailRequest, eH as PreviewCancelEmailResponse, eI as PreviewCancelRefundEmailRequest, eJ as PreviewCancelRefundEmailResponse, ex as PreviewEmailByTypeRequest, ey as PreviewEmailByTypeResponse, aI as PreviewEmailType, jH as PreviewEmailTypeWithLiterals, ez as PreviewRefundEmailRequest, eF as PreviewRefundEmailResponse, eS as PreviewResendDownloadLinksEmailRequest, eT as PreviewResendDownloadLinksEmailResponse, eQ as PreviewShippingConfirmationEmailRequest, eR as PreviewShippingConfirmationEmailResponse, bz as PriceDescription, bK as PriceSummary, bb as ProductName, hP as PublicActivityContentOneOf, gH as QueryOrderRequest, gI as QueryOrderResponse, iJ as QuotesAddress, aY as Reason, jX as ReasonWithLiterals, cV as ReceiptCreated, cW as ReceiptCreatedReceiptInfoOneOf, cZ as ReceiptSent, c_ as ReceiptSentReceiptInfoOneOf, fA as RecordManuallyCollectedPaymentRequest, fD as RecordManuallyCollectedPaymentResponse, fw as RedirectUrls, gf as Refund, eA as RefundDetails, cD as RefundInitiated, eB as RefundItem, gj as RefundItemsBreakdown, fV as RefundSideEffects, b0 as RefundStatus, gh as RefundStatusInfo, j$ as RefundStatusWithLiterals, gg as RefundTransaction, fL as Refundability, fM as RefundabilityAdditionalRefundabilityInfoOneOf, aR as RefundableStatus, jQ as RefundableStatusWithLiterals, cL as RefundedAsStoreCredit, cE as RefundedPayment, cF as RefundedPaymentKindOneOf, cO as RegularPayment, g0 as RegularPaymentDetails, g1 as RegularPaymentDetailsPaymentMethodDetailsOneOf, cP as RegularPaymentPaymentMethodDetailsOneOf, cG as RegularPaymentRefund, iD as Reschedule, fW as RestockInfo, fX as RestockItem, gt as RestockLocation, aU as RestockType, jT as RestockTypeWithLiterals, dQ as RestoreInfo, cz as SavedPaymentMethod, aN as ScheduledAction, jM as ScheduledActionWithLiterals, gJ as SearchOrdersRequest, eb as SendBuyerConfirmationEmailRequest, ec as SendBuyerConfirmationEmailResponse, ed as SendBuyerPaymentsReceivedEmailRequest, ee as SendBuyerPaymentsReceivedEmailResponse, ef as SendBuyerPickupConfirmationEmailRequest, eg as SendBuyerPickupConfirmationEmailResponse, ej as SendBuyerShippingConfirmationEmailRequest, ek as SendBuyerShippingConfirmationEmailResponse, ep as SendCancelRefundEmailRequest, eq as SendCancelRefundEmailResponse, et as SendFulfillmentEmailRequest, eu as SendFulfillmentEmailResponse, en as SendMerchantOrderReceivedNotificationRequest, eo as SendMerchantOrderReceivedNotificationResponse, ev as SendMerchantOrderReceivedPushRequest, ew as SendMerchantOrderReceivedPushResponse, iv as SendOrderUpdatedDomainEventRequest, iw as SendOrderUpdatedDomainEventResponse, er as SendRefundEmailRequest, es as SendRefundEmailResponse, fS as ServiceProperties, f4 as ServiceProvisioned, f5 as ServiceRemoved, dL as SetOrderNumberCounterRequest, hH as ShippingAddressEdited, hD as ShippingConfirmationEmailSent, cy as ShippingInformation, cx as ShippingInformationChange, bX as ShippingPrice, eE as ShippingRefund, bY as ShippingRegion, eX as SiteCreated, aK as SiteCreatedContext, jJ as SiteCreatedContextWithLiterals, eZ as SiteDeleted, f7 as SiteHardDeleted, f2 as SiteMarkedAsTemplate, f3 as SiteMarkedAsWixSite, f0 as SitePublished, fc as SitePurgedExternally, f6 as SiteRenamed, eY as SiteTransferred, e$ as SiteUndeleted, f1 as SiteUnpublished, fb as SiteUrlChanged, b1 as SortOrder, k0 as SortOrderWithLiterals, gB as Sorting, iW as Source, b5 as SourceType, k4 as SourceTypeWithLiterals, aC as SpecificItemsCouponBehavior, jB as SpecificItemsCouponBehaviorWithLiterals, iQ as StandardDetails, aJ as State, jI as StateWithLiterals, bN as StreetAddress, f9 as StudioAssigned, fj as StudioTwoAssigned, fk as StudioTwoUnassigned, fa as StudioUnassigned, iP as Subdivision, b4 as SubdivisionType, k3 as SubdivisionTypeWithLiterals, bu as SubscriptionDescription, ak as SubscriptionFrequency, jk as SubscriptionFrequencyWithLiterals, bs as SubscriptionInfo, bv as SubscriptionSettings, bt as SubscriptionTitle, db as TagList, da as Tags, it as TagsTagList, is as TagsTags, ix as Task, iz as TaskAction, iA as TaskActionActionOneOf, iy as TaskKey, bZ as TaxSummary, bB as TaxableAddress, bC as TaxableAddressTaxableAddressDataOneOf, am as TaxableAddressType, jm as TaxableAddressTypeWithLiterals, iZ as TotalPrice, cw as TotalPriceChange, hC as TrackingLinkAdded, hA as TrackingNumberAdded, hB as TrackingNumberEdited, aV as TransactionStatus, jU as TransactionStatusWithLiterals, bF as TranslatableString, ct as TranslatedValue, fU as TriggerRefundRequest, ea as TriggerReindexOrderRequest, e7 as TriggerReindexRequest, e8 as TriggerReindexResponse, h8 as UnArchiveOrderRequest, h9 as UnArchiveOrderResponse, hR as UpdateActivityRequest, hl as UpdateBillingContactDetailsRequest, hm as UpdateBillingContactDetailsResponse, hh as UpdateBuyerEmailRequest, hi as UpdateBuyerEmailResponse, he as UpdateBuyerInfoRequest, hg as UpdateBuyerInfoResponse, dY as UpdateInternalDocumentsEvent, dZ as UpdateInternalDocumentsEventOperationOneOf, hT as UpdateLineItemsDescriptionLinesRequest, hV as UpdateLineItemsDescriptionLinesResponse, hn as UpdateOrderLineItemRequest, ho as UpdateOrderLineItemsRequest, hq as UpdateOrderLineItemsResponse, gS as UpdateOrderRequest, gT as UpdateOrderResponse, hj as UpdateOrderShippingAddressRequest, hk as UpdateOrderShippingAddressResponse, hZ as UpdateOrderStatusRequest, fB as UserDefinedPaymentMethodName, fC as UserDefinedPaymentMethodNameKindOneOf, fm as UserDomainMediaDisabled, fl as UserDomainMediaEnabled, ig as V1BulkMarkOrdersAsPaidRequest, ih as V1BulkMarkOrdersAsPaidResponse, ii as V1CreatePaymentGatewayOrderRequest, ij as V1CreatePaymentGatewayOrderResponse, g$ as V1LineItemDelta, h0 as V1LineItemDeltaDeltaOneOf, id as V1MarkOrderAsPaidRequest, ie as V1MarkOrderAsPaidResponse, dr as V1RestockItem, g7 as V1ScheduledAction, bR as V1ShippingInformation, j8 as Value, b7 as ValueType, k6 as ValueTypeWithLiterals, bQ as VatId, aq as VatType, jq as VatTypeWithLiterals, e5 as VersionedDeleteByIdsOperation, e6 as VersionedDocumentId, e4 as VersionedDocumentUpdateOperation, aH as VersioningMode, jG as VersioningModeWithLiterals, gp as VoidAuthorizedPaymentsRequest, aG as WebhookIdentityType, jF as WebhookIdentityTypeWithLiterals, ap as WeightUnit, jp as WeightUnitWithLiterals, cX as WixReceipt, gc as WixReceiptInfo, fh as WixelAssigned, fi as WixelUnassigned, je as utils } from './ecom-v1-order-orders.universal-B_SIJVco.mjs';
|
|
4
4
|
|
|
5
5
|
/** @internal */
|
|
6
6
|
declare function importOrder$1(httpClient: HttpClient): ImportOrderSignature;
|