@wix/auto_sdk_ecom_orders 1.0.186 → 1.0.188

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.
Files changed (41) hide show
  1. package/build/cjs/{ecom-v1-order-orders.universal-B11B4NQm.d.ts → ecom-v1-order-orders.universal-DGvc5WHr.d.ts} +37 -1
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +12 -0
  4. package/build/cjs/index.js.map +1 -1
  5. package/build/cjs/index.typings.d.ts +2 -2
  6. package/build/cjs/index.typings.js +12 -0
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +38 -2
  9. package/build/cjs/meta.js +12 -0
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{ecom-v1-order-orders.universal-B11B4NQm.d.mts → ecom-v1-order-orders.universal-DGvc5WHr.d.mts} +37 -1
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +11 -0
  14. package/build/es/index.mjs.map +1 -1
  15. package/build/es/index.typings.d.mts +2 -2
  16. package/build/es/index.typings.mjs +11 -0
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +38 -2
  19. package/build/es/meta.mjs +11 -0
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{ecom-v1-order-orders.universal-Dxs_H-U1.d.ts → ecom-v1-order-orders.universal-CvNhiJde.d.ts} +47 -1
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +12 -0
  24. package/build/internal/cjs/index.js.map +1 -1
  25. package/build/internal/cjs/index.typings.d.ts +2 -2
  26. package/build/internal/cjs/index.typings.js +12 -0
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +38 -2
  29. package/build/internal/cjs/meta.js +12 -0
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{ecom-v1-order-orders.universal-Dxs_H-U1.d.mts → ecom-v1-order-orders.universal-CvNhiJde.d.mts} +47 -1
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +11 -0
  34. package/build/internal/es/index.mjs.map +1 -1
  35. package/build/internal/es/index.typings.d.mts +2 -2
  36. package/build/internal/es/index.typings.mjs +11 -0
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +38 -2
  39. package/build/internal/es/meta.mjs +11 -0
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -465,6 +465,42 @@ interface PhysicalProperties {
465
465
  /** Whether this line item is shippable. */
466
466
  shippable?: boolean;
467
467
  }
468
+ interface Dimensions {
469
+ /**
470
+ * Length. Measurement unit is handled at the system level (metric/imperial).
471
+ * @decimalValue options { gte:0, lte:999999999, maxScale:6 }
472
+ */
473
+ length?: string | null;
474
+ /**
475
+ * Width. Measurement unit is handled at the system level (metric/imperial).
476
+ * @decimalValue options { gte:0, lte:999999999, maxScale:6 }
477
+ */
478
+ width?: string | null;
479
+ /**
480
+ * Height. Measurement unit is handled at the system level (metric/imperial).
481
+ * @decimalValue options { gte:0, lte:999999999, maxScale:6 }
482
+ */
483
+ height?: string | null;
484
+ /** Unit of measurement for dimensions (length, width, height). */
485
+ unit?: DimensionsUnitWithLiterals;
486
+ }
487
+ declare enum DimensionsUnit {
488
+ UNKNOWN_DIMENSIONS_UNIT = "UNKNOWN_DIMENSIONS_UNIT",
489
+ /** Millimeters. */
490
+ MM = "MM",
491
+ /** Centimeters. */
492
+ CM = "CM",
493
+ /** Meters. */
494
+ M = "M",
495
+ /** Inches. */
496
+ IN = "IN",
497
+ /** Feet. */
498
+ FT = "FT",
499
+ /** Yards. */
500
+ YD = "YD"
501
+ }
502
+ /** @enumType */
503
+ type DimensionsUnitWithLiterals = DimensionsUnit | 'UNKNOWN_DIMENSIONS_UNIT' | 'MM' | 'CM' | 'M' | 'IN' | 'FT' | 'YD';
468
504
  interface ItemType extends ItemTypeItemTypeDataOneOf {
469
505
  /** Preset item type. */
470
506
  preset?: ItemTypePresetWithLiterals;
@@ -8416,4 +8452,4 @@ interface BulkUpdateOrderTagsOptions {
8416
8452
  unassignTags?: Tags;
8417
8453
  }
8418
8454
 
8419
- export { AdditionalFeeSource as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PaymentStatus as E, FulfillmentStatus as F, type GetPaymentCollectabilityStatusResponse as G, VatType as H, ItemTypePreset as I, JurisdictionType as J, PickupMethod as K, OrderStatus as L, type MaskedOrder as M, DiscountType as N, type Order as O, type Price as P, DiscountReason as Q, LineItemQuantityChangeType as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, ActivityType as X, OrderActivityTypeEnumActivityType as Y, AttributionSource as Z, ChannelType as _, type PreparePaymentCollectionOptions as a, type ExtendedFields as a$, OrderActionType as a0, ChargeType as a1, WebhookIdentityType as a2, VersioningMode as a3, PreviewEmailType as a4, State as a5, SiteCreatedContext as a6, Namespace as a7, DeleteStatus as a8, ScheduledAction as a9, type ProductName as aA, type CatalogReference as aB, type DescriptionLine as aC, type DescriptionLineValueOneOf as aD, type DescriptionLineDescriptionLineValueOneOf as aE, type DescriptionLineName as aF, type PlainTextValue as aG, type Color as aH, type FocalPoint as aI, type PhysicalProperties as aJ, type ItemType as aK, type ItemTypeItemTypeDataOneOf as aL, type ItemTaxFullDetails as aM, type LineItemTaxInfo as aN, type LineItemTaxBreakdown as aO, type DigitalFile as aP, type SubscriptionInfo as aQ, type SubscriptionTitle as aR, type SubscriptionDescription as aS, type SubscriptionSettings as aT, type FreeTrialPeriod as aU, type BillingAdjustment as aV, type BillingAdjustmentPriceSummary as aW, type PriceDescription as aX, type LocationAndQuantity as aY, type TaxableAddress as aZ, type TaxableAddressTaxableAddressDataOneOf as a_, DurationUnit as aa, PaymentCollectabilityStatus as ab, RefundableStatus as ac, NonRefundableReason as ad, ManuallyRefundableReason as ae, RestockType as af, TransactionStatus as ag, AuthorizationCaptureStatus as ah, AuthorizationVoidStatus as ai, Reason as aj, ActionType as ak, ChargebackStatus as al, MembershipPaymentStatus as am, RefundStatus as an, SortOrder as ao, OrderApprovalStrategy as ap, DeltaPaymentOptionType as aq, InventoryAction as ar, Placement as as, SubdivisionType as at, SourceType as au, CustomFieldGroup as av, ValueType as aw, DepositType as ax, InvoiceStatus as ay, type OrderLineItem as az, type PreparePaymentCollectionResponse as b, type RefundInitiated as b$, type ModifierGroup as b0, type TranslatableString as b1, type ItemModifier as b2, type BuyerInfo as b3, type BuyerInfoIdOneOf as b4, type CurrencyConversionDetails as b5, type PriceSummary as b6, type AddressWithContact as b7, type Address as b8, type StreetAddress as b9, type CustomActivity as bA, type MerchantComment as bB, type OrderRefunded as bC, type OrderCreatedFromExchange as bD, type NewExchangeOrderCreated as bE, type LineItemExchangeData as bF, type DraftOrderChangesApplied as bG, type OrderChange as bH, type OrderChangeValueOneOf as bI, type LineItemChanges as bJ, type LineItemQuantityChange as bK, type LineItemPriceChange as bL, type LineItemProductNameChange as bM, type LineItemDescriptionLineChange as bN, type LineItemModifiersChange as bO, type ManagedLineItem as bP, type ManagedDiscount as bQ, type TranslatedValue as bR, type LineItemAmount as bS, type ManagedAdditionalFee as bT, type TotalPriceChange as bU, type ShippingInformationChange as bV, type ShippingInformation as bW, type SavedPaymentMethod as bX, type AuthorizedPaymentCreated as bY, type AuthorizedPaymentCaptured as bZ, type AuthorizedPaymentVoided as b_, type AddressLocation as ba, type FullAddressContactDetails as bb, type VatId as bc, type V1ShippingInformation as bd, type DeliveryLogistics as be, type DeliveryLogisticsAddressOneOf as bf, type PickupDetails as bg, type PickupAddress as bh, type DeliveryTimeSlot as bi, type ShippingPrice as bj, type ShippingRegion as bk, type TaxSummary as bl, type OrderTaxInfo as bm, type OrderTaxBreakdown as bn, type AppliedDiscount as bo, type AppliedDiscountDiscountSourceOneOf as bp, type Coupon as bq, type MerchantDiscount as br, type MerchantDiscountMerchantDiscountReasonOneOf as bs, type DiscountRule as bt, type DiscountRuleName as bu, type LineItemDiscount as bv, type ItemCombination as bw, type ItemCombinationLineItem as bx, type Activity as by, type ActivityContentOneOf as bz, type PreparePaymentCollectionApplicationErrors as c, type EntityDeletedEvent as c$, type RefundedPayment as c0, type RefundedPaymentKindOneOf as c1, type RegularPaymentRefund as c2, type GiftCardPaymentRefund as c3, type MembershipPaymentRefund as c4, type PaymentRefunded as c5, type PaymentRefundFailed as c6, type RefundedAsStoreCredit as c7, type PaymentPending as c8, type PaymentPendingPaymentDetailsOneOf as c9, type OrderSettings as cA, type OrderSettingsAllowedActionsOneOf as cB, type OrderSettingsEditableByOneOf as cC, type CustomAllowedActions as cD, type OwnerApps as cE, type FormInfo as cF, type FormIdentifier as cG, type PlatformFeeSummary as cH, type PlatformFee as cI, type OrderApproved as cJ, type OrdersExperiments as cK, type OrderRejectedEventOrderRejected as cL, type OrderItemsRestocked as cM, type V1RestockItem as cN, type OrderImported as cO, type ImportedOrderDeleted as cP, type ImportOrderRequest as cQ, type ImportOrderResponse as cR, type SetOrderNumberCounterRequest as cS, type SetOrderNumberCounterResponse as cT, type BulkDeleteImportedOrdersRequest as cU, type BulkDeleteImportedOrdersResponse as cV, type DomainEvent as cW, type DomainEventBodyOneOf as cX, type EntityCreatedEvent as cY, type RestoreInfo as cZ, type EntityUpdatedEvent as c_, type RegularPayment as ca, type RegularPaymentPaymentMethodDetailsOneOf as cb, type CreditCardDetails as cc, type PaymentCanceled as cd, type PaymentCanceledPaymentDetailsOneOf as ce, type PaymentDeclined as cf, type PaymentDeclinedPaymentDetailsOneOf as cg, type ReceiptCreated as ch, type ReceiptCreatedReceiptInfoOneOf as ci, type WixReceipt as cj, type ExternalReceipt as ck, type ReceiptSent as cl, type ReceiptSentReceiptInfoOneOf as cm, type ChargebackCreated as cn, type ChargebackReversed as co, type CreatedBy as cp, type CreatedByStringOneOf as cq, type ChannelInfo as cr, type CustomField as cs, type BalanceSummary as ct, type Balance as cu, type AdditionalFee as cv, type FulfillmentStatusesAggregate as cw, type Tags as cx, type TagList as cy, type Location as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type PreviewResendDownloadLinksEmailRequest as d$, type ActionEvent as d0, type MessageEnvelope as d1, type IdentificationData as d2, type IdentificationDataIdOneOf as d3, type AccountInfo as d4, type UpdateInternalDocumentsEvent as d5, type UpdateInternalDocumentsEventOperationOneOf as d6, type InternalDocument as d7, type InternalDocumentUpdateOperation as d8, type DeleteByIdsOperation as d9, type SendCancelRefundEmailRequest as dA, type SendCancelRefundEmailResponse as dB, type SendRefundEmailRequest as dC, type SendRefundEmailResponse as dD, type SendMerchantOrderReceivedPushRequest as dE, type SendMerchantOrderReceivedPushResponse as dF, type PreviewEmailByTypeRequest as dG, type PreviewEmailByTypeResponse as dH, type PreviewRefundEmailRequest as dI, type RefundDetails as dJ, type RefundItem as dK, type LineItemRefund as dL, type AdditionalFeeRefund as dM, type ShippingRefund as dN, type PreviewRefundEmailResponse as dO, type PreviewCancelEmailRequest as dP, type PreviewCancelEmailResponse as dQ, type PreviewCancelRefundEmailRequest as dR, type PreviewCancelRefundEmailResponse as dS, type PreviewBuyerPaymentsReceivedEmailRequest as dT, type PreviewBuyerPaymentsReceivedEmailResponse as dU, type PreviewBuyerConfirmationEmailRequest as dV, type PreviewBuyerConfirmationEmailResponse as dW, type PreviewBuyerPickupConfirmationEmailRequest as dX, type PreviewBuyerPickupConfirmationEmailResponse as dY, type PreviewShippingConfirmationEmailRequest as dZ, type PreviewShippingConfirmationEmailResponse as d_, type DeleteByFilterOperation as da, type InternalDocumentUpdateByFilterOperation as db, type InternalUpdateExistingOperation as dc, type VersionedDocumentUpdateOperation as dd, type VersionedDeleteByIdsOperation as de, type VersionedDocumentId as df, type TriggerReindexRequest as dg, type TriggerReindexResponse as dh, type Empty as di, type BatchOfTriggerReindexOrderRequest as dj, type TriggerReindexOrderRequest as dk, type SendBuyerConfirmationEmailRequest as dl, type SendBuyerConfirmationEmailResponse as dm, type SendBuyerPaymentsReceivedEmailRequest as dn, type SendBuyerPaymentsReceivedEmailResponse as dp, type SendBuyerPickupConfirmationEmailRequest as dq, type SendBuyerPickupConfirmationEmailResponse as dr, type BulkSendBuyerPickupConfirmationEmailsRequest as ds, type BulkSendBuyerPickupConfirmationEmailsResponse as dt, type SendBuyerShippingConfirmationEmailRequest as du, type SendBuyerShippingConfirmationEmailResponse as dv, type BulkSendBuyerShippingConfirmationEmailsRequest as dw, type BulkSendBuyerShippingConfirmationEmailsResponse as dx, type SendMerchantOrderReceivedNotificationRequest as dy, type SendMerchantOrderReceivedNotificationResponse as dz, type PaymentCapture as e, type ServiceProperties as e$, type PreviewResendDownloadLinksEmailResponse as e0, type MetaSiteSpecialEvent as e1, type MetaSiteSpecialEventPayloadOneOf as e2, type Asset as e3, type SiteCreated as e4, type SiteTransferred as e5, type SiteDeleted as e6, type DeleteContext as e7, type SiteUndeleted as e8, type SitePublished as e9, type IsInAutomationMigrationPopulationRequest as eA, type IsInAutomationMigrationPopulationResponse as eB, type PreparePaymentCollectionRequest as eC, type RedirectUrls as eD, type DelayedCaptureSettings as eE, type Duration as eF, type GetPaymentCollectabilityStatusRequest as eG, type RecordManuallyCollectedPaymentRequest as eH, type RecordManuallyCollectedPaymentResponse as eI, type MarkOrderAsPaidRequest as eJ, type MarkOrderAsPaidResponse as eK, type BulkMarkOrdersAsPaidRequest as eL, type BulkMarkOrdersAsPaidResponse as eM, type BulkOrderResult as eN, type ItemMetadata as eO, type ApplicationError as eP, type BulkActionMetadata as eQ, type GetRefundabilityStatusRequest as eR, type GetRefundabilityStatusResponse as eS, type Refundability as eT, type RefundabilityAdditionalRefundabilityInfoOneOf as eU, type CreatePaymentGatewayOrderRequest as eV, type ChargedBy as eW, type CreatePaymentGatewayOrderResponse as eX, type ChargeMembershipsRequest as eY, type MembershipChargeItem as eZ, type MembershipName as e_, type SiteUnpublished as ea, type SiteMarkedAsTemplate as eb, type SiteMarkedAsWixSite as ec, type ServiceProvisioned as ed, type ServiceRemoved as ee, type SiteRenamed as ef, type SiteHardDeleted as eg, type NamespaceChanged as eh, type StudioAssigned as ei, type StudioUnassigned as ej, type SiteUrlChanged as ek, type SitePurgedExternally as el, type OdeditorAssigned as em, type OdeditorUnassigned as en, type PicassoAssigned as eo, type PicassoUnassigned as ep, type WixelAssigned as eq, type WixelUnassigned as er, type StudioTwoAssigned as es, type StudioTwoUnassigned as et, type UserDomainMediaEnabled as eu, type UserDomainMediaDisabled as ev, type HasCustomEmailConfigurationsRequest as ew, type HasCustomEmailConfigurationsResponse as ex, type AddToAutomationMigrationPopulationRequest as ey, type AddToAutomationMigrationPopulationResponse as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type UpdateOrderRequest as f$, type ChargeMembershipsResponse as f0, type TriggerRefundRequest as f1, type PaymentRefund as f2, type RefundSideEffects as f3, type RestockInfo as f4, type RestockItem as f5, type TriggerRefundResponse as f6, type OrderTransactions as f7, type Payment as f8, type PaymentPaymentDetailsOneOf as f9, type CaptureAuthorizedPaymentsRequest as fA, type ChargeSavedPaymentMethodRequest as fB, type ChargeSavedPaymentMethodResponse as fC, type DiffmatokyPayload as fD, type ErrorInformation as fE, type GetOrderRequest as fF, type GetOrderResponse as fG, type InternalQueryOrdersRequest as fH, type PlatformQuery as fI, type PlatformQueryPagingMethodOneOf as fJ, type Sorting as fK, type PlatformPaging as fL, type CursorPaging as fM, type InternalQueryOrdersResponse as fN, type PlatformPagingMetadata as fO, type Cursors as fP, type QueryOrderRequest as fQ, type QueryOrderResponse as fR, type SearchOrdersRequest as fS, type CursorSearch as fT, type CursorSearchPagingMethodOneOf as fU, type CursorPagingMetadata as fV, type CreateOrderRequest as fW, type OrderCreationSettings as fX, type OrderCreationSettingsEditableByOneOf as fY, type OrderCreateNotifications as fZ, type CreateOrderResponse as f_, type PaymentReceiptInfoOneOf as fa, type RegularPaymentDetails as fb, type RegularPaymentDetailsPaymentMethodDetailsOneOf as fc, type CreditCardPaymentMethodDetails as fd, type AuthorizationDetails as fe, type AuthorizationCapture as ff, type AuthorizationActionFailureDetails as fg, type AuthorizationVoid as fh, type V1ScheduledAction as fi, type Chargeback as fj, type PaymentMethodName as fk, type GiftCardPaymentDetails as fl, type MembershipPaymentDetails as fm, type WixReceiptInfo as fn, type ExternalReceiptInfo as fo, type Refund as fp, type RefundTransaction as fq, type RefundStatusInfo as fr, type AggregatedRefundSummary as fs, type RefundItemsBreakdown as ft, type LineItemRefundSummary as fu, type CalculateRefundRequest as fv, type CalculateRefundItemRequest as fw, type CalculateRefundResponse as fx, type CalculateRefundItemResponse as fy, type VoidAuthorizedPaymentsRequest as fz, type GetOrderApplicationErrors as g, type InvoiceAdded as g$, type UpdateOrderResponse as g0, type BulkUpdateOrdersRequest as g1, type CommitDeltasRequest as g2, type DraftOrderDiffs as g3, type DraftOrderDiffsShippingUpdateInfoOneOf as g4, type DraftOrderDiffsBuyerUpdateInfoOneOf as g5, type DraftOrderDiffsBillingUpdateInfoOneOf as g6, type DraftOrderDiffsRecipientUpdateInfoOneOf as g7, type V1LineItemDelta as g8, type V1LineItemDeltaDeltaOneOf as g9, type UpdateBuyerInfoRequest as gA, type BuyerInfoUpdate as gB, type UpdateBuyerInfoResponse as gC, type UpdateBuyerEmailRequest as gD, type UpdateBuyerEmailResponse as gE, type UpdateOrderShippingAddressRequest as gF, type UpdateOrderShippingAddressResponse as gG, type UpdateBillingContactDetailsRequest as gH, type UpdateBillingContactDetailsResponse as gI, type UpdateOrderLineItemRequest as gJ, type UpdateOrderLineItemResponse as gK, type UpdateOrderLineItemsRequest as gL, type MaskedOrderLineItem as gM, type UpdateOrderLineItemsResponse as gN, type AddInternalActivityRequest as gO, type InternalActivity as gP, type InternalActivityContentOneOf as gQ, type OrderPlaced as gR, type OrderPaid as gS, type OrderFulfilled as gT, type OrderNotFulfilled as gU, type OrderCanceled as gV, type DownloadLinkSent as gW, type TrackingNumberAdded as gX, type TrackingNumberEdited as gY, type TrackingLinkAdded as gZ, type ShippingConfirmationEmailSent as g_, type OrderLineItemChangedDetails as ga, type ItemChangedDetails as gb, type AppliedDiscountDelta as gc, type AppliedDiscountDeltaDeltaOneOf as gd, type AdditionalFeeDelta as ge, type AdditionalFeeDeltaDeltaOneOf as gf, type DraftOrderCommitSettings as gg, type InventoryUpdateDetails as gh, type CommitDeltasResponse as gi, type OrderDeltasCommitted as gj, type CommittedDiffs as gk, type CommittedDiffsShippingUpdateInfoOneOf as gl, type LineItemDelta as gm, type LineItemDeltaDeltaOneOf as gn, type ArchiveOrderRequest as go, type ArchiveOrderResponse as gp, type BulkArchiveOrdersRequest as gq, type BulkArchiveOrdersResponse as gr, type BulkArchiveOrdersByFilterRequest as gs, type BulkArchiveOrdersByFilterResponse as gt, type UnArchiveOrderRequest as gu, type UnArchiveOrderResponse as gv, type BulkUnArchiveOrdersRequest as gw, type BulkUnArchiveOrdersResponse as gx, type BulkUnArchiveOrdersByFilterRequest as gy, type BulkUnArchiveOrdersByFilterResponse as gz, type OrderSearch as h, type Complete as h$, type InvoiceSent as h0, type FulfillerEmailSent as h1, type ShippingAddressEdited as h2, type EmailEdited as h3, type PickupReadyEmailSent as h4, type OrderPartiallyPaid as h5, type OrderPending as h6, type OrderRejected as h7, type AddInternalActivityResponse as h8, type AddActivityRequest as h9, type BulkMarkAsUnfulfilledRequest as hA, type BulkMarkAsUnfulfilledResponse as hB, type BulkMarkAsUnfulfilledByFilterRequest as hC, type BulkMarkAsUnfulfilledByFilterResponse as hD, type BulkSetBusinessLocationRequest as hE, type BulkSetBusinessLocationResponse as hF, type BulkSetBusinessLocationResult as hG, type V1MarkOrderAsPaidRequest as hH, type V1MarkOrderAsPaidResponse as hI, type PaymentStatusUpdated as hJ, type V1BulkMarkOrdersAsPaidRequest as hK, type V1BulkMarkOrdersAsPaidResponse as hL, type V1CreatePaymentGatewayOrderRequest as hM, type V1CreatePaymentGatewayOrderResponse as hN, type GetShipmentsRequest as hO, type GetShipmentsResponse as hP, type AggregateOrdersRequest as hQ, type AggregateOrdersResponse as hR, type DecrementItemsQuantityRequest as hS, type DecrementData as hT, type DecrementItemsQuantityResponse as hU, type BulkUpdateOrderTagsRequest as hV, type BulkUpdateOrderTagsResult as hW, type Task as hX, type TaskKey as hY, type TaskAction as hZ, type TaskActionActionOneOf as h_, type PublicActivity as ha, type PublicActivityContentOneOf as hb, type AddActivityResponse as hc, type AddActivitiesRequest as hd, type UpdateActivityRequest as he, type UpdateActivityResponse as hf, type DeleteActivityRequest as hg, type DeleteActivityResponse as hh, type UpdateLineItemsDescriptionLinesRequest as hi, type LineItemUpdate as hj, type UpdateLineItemsDescriptionLinesResponse as hk, type MarkOrderAsSeenByHumanRequest as hl, type MarkOrderAsSeenByHumanResponse as hm, type CancelOrderRequest as hn, type OrderCanceledEventOrderCanceled as ho, type UpdateOrderStatusRequest as hp, type UpdateOrderStatusResponse as hq, type MarkAsFulfilledRequest as hr, type MarkAsFulfilledResponse as hs, type FulfillmentStatusUpdated as ht, type BulkMarkAsFulfilledRequest as hu, type BulkMarkAsFulfilledResponse as hv, type BulkMarkAsFulfilledByFilterRequest as hw, type BulkMarkAsFulfilledByFilterResponse as hx, type MarkAsUnfulfilledRequest as hy, type MarkAsUnfulfilledResponse as hz, type CreateOrderOptions as i, type PickupMethodWithLiterals as i$, type Cancel as i0, type Reschedule as i1, type InvoiceSentEvent as i2, type IdAndVersion as i3, type InvoiceFields as i4, type Customer as i5, type Email as i6, type QuotesAddress as i7, type AddressDescription as i8, type Phone as i9, type Value as iA, type Deposit as iB, type BaseEventMetadata as iC, type EventMetadata as iD, type AccountInfoMetadata as iE, type SetOrderNumberCounterOptions as iF, type BulkDeleteImportedOrdersOptions as iG, type PaymentCollectionCreatePaymentGatewayOrderOptions as iH, type ChargeMembershipsOptions as iI, type TriggerRefundOptions as iJ, type OrderSearchSpec as iK, type UpdateOrderLineItemIdentifiers as iL, type UpdateOrderLineItem as iM, type UpdateActivityIdentifiers as iN, type DeleteActivityIdentifiers as iO, type AggregateOrdersOptions as iP, type DescriptionLineTypeWithLiterals as iQ, type ItemTypePresetWithLiterals as iR, type PaymentOptionTypeWithLiterals as iS, type JurisdictionTypeWithLiterals as iT, type SubscriptionFrequencyWithLiterals as iU, type AdjustmentTypeWithLiterals as iV, type TaxableAddressTypeWithLiterals as iW, type PaymentStatusWithLiterals as iX, type FulfillmentStatusWithLiterals as iY, type WeightUnitWithLiterals as iZ, type VatTypeWithLiterals as i_, type Company as ia, type CommonAddress as ib, type CommonAddressStreetOneOf as ic, type Subdivision as id, type StandardDetails as ie, type InvoiceDates as ig, type LineItems as ih, type LineItem as ii, type BigDecimalWrapper as ij, type LineItemTax as ik, type Source as il, type LineItemMetaData as im, type Locale as io, type TotalPrice as ip, type ItemizedFee as iq, type Discount as ir, type DiscountOneDiscountTypeOneOf as is, type CalculatedTaxes as it, type CalculatedTax as iu, type Payments as iv, type InvoicesPayment as iw, type MetaData as ix, type InvoiceDynamicPriceTotals as iy, type CustomFieldValue as iz, type CreateOrderApplicationErrors as j, addActivities as j$, type OrderStatusWithLiterals as j0, type DiscountTypeWithLiterals as j1, type DiscountReasonWithLiterals as j2, type LineItemQuantityChangeTypeWithLiterals as j3, type ActivityTypeWithLiterals as j4, type OrderActivityTypeEnumActivityTypeWithLiterals as j5, type AttributionSourceWithLiterals as j6, type ChannelTypeWithLiterals as j7, type AdditionalFeeSourceWithLiterals as j8, type OrderActionTypeWithLiterals as j9, type InventoryActionWithLiterals as jA, type PlacementWithLiterals as jB, type SubdivisionTypeWithLiterals as jC, type SourceTypeWithLiterals as jD, type CustomFieldGroupWithLiterals as jE, type ValueTypeWithLiterals as jF, type DepositTypeWithLiterals as jG, type InvoiceStatusWithLiterals as jH, type RecordManuallyCollectedPaymentApplicationErrors as jI, type PaymentCollectionMarkOrderAsPaidApplicationErrors as jJ, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as jK, type TriggerRefundApplicationErrors as jL, type UpdateOrderStatusApplicationErrors as jM, type CommonSearchWithEntityContext as jN, onOrderApproved as jO, onOrderUpdated as jP, onOrderCanceled as jQ, onOrderCreated as jR, onOrderPaymentStatusUpdated as jS, preparePaymentCollection as jT, getPaymentCollectabilityStatus as jU, voidAuthorizedPayments as jV, captureAuthorizedPayments as jW, getOrder as jX, createOrder as jY, updateOrder as jZ, bulkUpdateOrders as j_, type ChargeTypeWithLiterals as ja, type WebhookIdentityTypeWithLiterals as jb, type VersioningModeWithLiterals as jc, type PreviewEmailTypeWithLiterals as jd, type StateWithLiterals as je, type SiteCreatedContextWithLiterals as jf, type NamespaceWithLiterals as jg, type DeleteStatusWithLiterals as jh, type ScheduledActionWithLiterals as ji, type DurationUnitWithLiterals as jj, type PaymentCollectabilityStatusWithLiterals as jk, type RefundableStatusWithLiterals as jl, type NonRefundableReasonWithLiterals as jm, type ManuallyRefundableReasonWithLiterals as jn, type RestockTypeWithLiterals as jo, type TransactionStatusWithLiterals as jp, type AuthorizationCaptureStatusWithLiterals as jq, type AuthorizationVoidStatusWithLiterals as jr, type ReasonWithLiterals as js, type ActionTypeWithLiterals as jt, type ChargebackStatusWithLiterals as ju, type MembershipPaymentStatusWithLiterals as jv, type RefundStatusWithLiterals as jw, type SortOrderWithLiterals as jx, type OrderApprovalStrategyWithLiterals as jy, type DeltaPaymentOptionTypeWithLiterals as jz, type UpdateOrderApplicationErrors as k, cancelOrder as k0, bulkUpdateOrderTags as k1, type BulkUpdateOrdersResponse as l, type AddActivitiesResponse as m, type CancelOrderOptions as n, type CancelOrderResponse as o, type CancelOrderApplicationErrors as p, type BulkUpdateOrderTagsOptions as q, type BulkUpdateOrderTagsResponse as r, type OrderApprovedEnvelope as s, type OrderUpdatedEnvelope as t, type OrderCanceledEnvelope as u, type OrderCreatedEnvelope as v, type OrderPaymentStatusUpdatedEnvelope as w, PaymentOptionType as x, SubscriptionFrequency as y, AdjustmentType as z };
8455
+ export { ChannelType as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, AdjustmentType as E, PaymentStatus as F, type GetPaymentCollectabilityStatusResponse as G, FulfillmentStatus as H, ItemTypePreset as I, JurisdictionType as J, VatType as K, PickupMethod as L, type MaskedOrder as M, OrderStatus as N, type Order as O, type Price as P, DiscountType as Q, DiscountReason as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, LineItemQuantityChangeType as X, ActivityType as Y, OrderActivityTypeEnumActivityType as Z, AttributionSource as _, type PreparePaymentCollectionOptions as a, type TaxableAddress as a$, AdditionalFeeSource as a0, OrderActionType as a1, ChargeType as a2, WebhookIdentityType as a3, VersioningMode as a4, PreviewEmailType as a5, State as a6, SiteCreatedContext as a7, Namespace as a8, DeleteStatus as a9, type OrderLineItem as aA, type ProductName as aB, type CatalogReference as aC, type DescriptionLine as aD, type DescriptionLineValueOneOf as aE, type DescriptionLineDescriptionLineValueOneOf as aF, type DescriptionLineName as aG, type PlainTextValue as aH, type Color as aI, type FocalPoint as aJ, type PhysicalProperties as aK, type Dimensions as aL, type ItemType as aM, type ItemTypeItemTypeDataOneOf as aN, type ItemTaxFullDetails as aO, type LineItemTaxInfo as aP, type LineItemTaxBreakdown as aQ, type DigitalFile as aR, type SubscriptionInfo as aS, type SubscriptionTitle as aT, type SubscriptionDescription as aU, type SubscriptionSettings as aV, type FreeTrialPeriod as aW, type BillingAdjustment as aX, type BillingAdjustmentPriceSummary as aY, type PriceDescription as aZ, type LocationAndQuantity as a_, ScheduledAction as aa, DurationUnit as ab, PaymentCollectabilityStatus as ac, RefundableStatus as ad, NonRefundableReason as ae, ManuallyRefundableReason as af, RestockType as ag, TransactionStatus as ah, AuthorizationCaptureStatus as ai, AuthorizationVoidStatus as aj, Reason as ak, ActionType as al, ChargebackStatus as am, MembershipPaymentStatus as an, RefundStatus as ao, SortOrder as ap, OrderApprovalStrategy as aq, DeltaPaymentOptionType as ar, InventoryAction as as, Placement as at, SubdivisionType as au, SourceType as av, CustomFieldGroup as aw, ValueType as ax, DepositType as ay, InvoiceStatus as az, type PreparePaymentCollectionResponse as b, type AuthorizedPaymentCaptured as b$, type TaxableAddressTaxableAddressDataOneOf as b0, type ExtendedFields as b1, type ModifierGroup as b2, type TranslatableString as b3, type ItemModifier as b4, type BuyerInfo as b5, type BuyerInfoIdOneOf as b6, type CurrencyConversionDetails as b7, type PriceSummary as b8, type AddressWithContact as b9, type Activity as bA, type ActivityContentOneOf as bB, type CustomActivity as bC, type MerchantComment as bD, type OrderRefunded as bE, type OrderCreatedFromExchange as bF, type NewExchangeOrderCreated as bG, type LineItemExchangeData as bH, type DraftOrderChangesApplied as bI, type OrderChange as bJ, type OrderChangeValueOneOf as bK, type LineItemChanges as bL, type LineItemQuantityChange as bM, type LineItemPriceChange as bN, type LineItemProductNameChange as bO, type LineItemDescriptionLineChange as bP, type LineItemModifiersChange as bQ, type ManagedLineItem as bR, type ManagedDiscount as bS, type TranslatedValue as bT, type LineItemAmount as bU, type ManagedAdditionalFee as bV, type TotalPriceChange as bW, type ShippingInformationChange as bX, type ShippingInformation as bY, type SavedPaymentMethod as bZ, type AuthorizedPaymentCreated as b_, type Address as ba, type StreetAddress as bb, type AddressLocation as bc, type FullAddressContactDetails as bd, type VatId as be, type V1ShippingInformation as bf, type DeliveryLogistics as bg, type DeliveryLogisticsAddressOneOf as bh, type PickupDetails as bi, type PickupAddress as bj, type DeliveryTimeSlot as bk, type ShippingPrice as bl, type ShippingRegion as bm, type TaxSummary as bn, type OrderTaxInfo as bo, type OrderTaxBreakdown as bp, type AppliedDiscount as bq, type AppliedDiscountDiscountSourceOneOf as br, type Coupon as bs, type MerchantDiscount as bt, type MerchantDiscountMerchantDiscountReasonOneOf as bu, type DiscountRule as bv, type DiscountRuleName as bw, type LineItemDiscount as bx, type ItemCombination as by, type ItemCombinationLineItem as bz, type PreparePaymentCollectionApplicationErrors as c, type RestoreInfo as c$, type AuthorizedPaymentVoided as c0, type RefundInitiated as c1, type RefundedPayment as c2, type RefundedPaymentKindOneOf as c3, type RegularPaymentRefund as c4, type GiftCardPaymentRefund as c5, type MembershipPaymentRefund as c6, type PaymentRefunded as c7, type PaymentRefundFailed as c8, type RefundedAsStoreCredit as c9, type TagList as cA, type Location as cB, type OrderSettings as cC, type OrderSettingsAllowedActionsOneOf as cD, type OrderSettingsEditableByOneOf as cE, type CustomAllowedActions as cF, type OwnerApps as cG, type FormInfo as cH, type FormIdentifier as cI, type PlatformFeeSummary as cJ, type PlatformFee as cK, type OrderApproved as cL, type OrdersExperiments as cM, type OrderRejectedEventOrderRejected as cN, type OrderItemsRestocked as cO, type V1RestockItem as cP, type OrderImported as cQ, type ImportedOrderDeleted as cR, type ImportOrderRequest as cS, type ImportOrderResponse as cT, type SetOrderNumberCounterRequest as cU, type SetOrderNumberCounterResponse as cV, type BulkDeleteImportedOrdersRequest as cW, type BulkDeleteImportedOrdersResponse as cX, type DomainEvent as cY, type DomainEventBodyOneOf as cZ, type EntityCreatedEvent as c_, type PaymentPending as ca, type PaymentPendingPaymentDetailsOneOf as cb, type RegularPayment as cc, type RegularPaymentPaymentMethodDetailsOneOf as cd, type CreditCardDetails as ce, type PaymentCanceled as cf, type PaymentCanceledPaymentDetailsOneOf as cg, type PaymentDeclined as ch, type PaymentDeclinedPaymentDetailsOneOf as ci, type ReceiptCreated as cj, type ReceiptCreatedReceiptInfoOneOf as ck, type WixReceipt as cl, type ExternalReceipt as cm, type ReceiptSent as cn, type ReceiptSentReceiptInfoOneOf as co, type ChargebackCreated as cp, type ChargebackReversed as cq, type CreatedBy as cr, type CreatedByStringOneOf as cs, type ChannelInfo as ct, type CustomField as cu, type BalanceSummary as cv, type Balance as cw, type AdditionalFee as cx, type FulfillmentStatusesAggregate as cy, type Tags as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type PreviewShippingConfirmationEmailRequest as d$, type EntityUpdatedEvent as d0, type EntityDeletedEvent as d1, type ActionEvent as d2, type MessageEnvelope as d3, type IdentificationData as d4, type IdentificationDataIdOneOf as d5, type AccountInfo as d6, type UpdateInternalDocumentsEvent as d7, type UpdateInternalDocumentsEventOperationOneOf as d8, type InternalDocument as d9, type SendMerchantOrderReceivedNotificationRequest as dA, type SendMerchantOrderReceivedNotificationResponse as dB, type SendCancelRefundEmailRequest as dC, type SendCancelRefundEmailResponse as dD, type SendRefundEmailRequest as dE, type SendRefundEmailResponse as dF, type SendMerchantOrderReceivedPushRequest as dG, type SendMerchantOrderReceivedPushResponse as dH, type PreviewEmailByTypeRequest as dI, type PreviewEmailByTypeResponse as dJ, type PreviewRefundEmailRequest as dK, type RefundDetails as dL, type RefundItem as dM, type LineItemRefund as dN, type AdditionalFeeRefund as dO, type ShippingRefund as dP, type PreviewRefundEmailResponse as dQ, type PreviewCancelEmailRequest as dR, type PreviewCancelEmailResponse as dS, type PreviewCancelRefundEmailRequest as dT, type PreviewCancelRefundEmailResponse as dU, type PreviewBuyerPaymentsReceivedEmailRequest as dV, type PreviewBuyerPaymentsReceivedEmailResponse as dW, type PreviewBuyerConfirmationEmailRequest as dX, type PreviewBuyerConfirmationEmailResponse as dY, type PreviewBuyerPickupConfirmationEmailRequest as dZ, type PreviewBuyerPickupConfirmationEmailResponse as d_, type InternalDocumentUpdateOperation as da, type DeleteByIdsOperation as db, type DeleteByFilterOperation as dc, type InternalDocumentUpdateByFilterOperation as dd, type InternalUpdateExistingOperation as de, type VersionedDocumentUpdateOperation as df, type VersionedDeleteByIdsOperation as dg, type VersionedDocumentId as dh, type TriggerReindexRequest as di, type TriggerReindexResponse as dj, type Empty as dk, type BatchOfTriggerReindexOrderRequest as dl, type TriggerReindexOrderRequest as dm, type SendBuyerConfirmationEmailRequest as dn, type SendBuyerConfirmationEmailResponse as dp, type SendBuyerPaymentsReceivedEmailRequest as dq, type SendBuyerPaymentsReceivedEmailResponse as dr, type SendBuyerPickupConfirmationEmailRequest as ds, type SendBuyerPickupConfirmationEmailResponse as dt, type BulkSendBuyerPickupConfirmationEmailsRequest as du, type BulkSendBuyerPickupConfirmationEmailsResponse as dv, type SendBuyerShippingConfirmationEmailRequest as dw, type SendBuyerShippingConfirmationEmailResponse as dx, type BulkSendBuyerShippingConfirmationEmailsRequest as dy, type BulkSendBuyerShippingConfirmationEmailsResponse as dz, type PaymentCapture as e, type MembershipChargeItem as e$, type PreviewShippingConfirmationEmailResponse as e0, type PreviewResendDownloadLinksEmailRequest as e1, type PreviewResendDownloadLinksEmailResponse as e2, type MetaSiteSpecialEvent as e3, type MetaSiteSpecialEventPayloadOneOf as e4, type Asset as e5, type SiteCreated as e6, type SiteTransferred as e7, type SiteDeleted as e8, type DeleteContext as e9, type AddToAutomationMigrationPopulationRequest as eA, type AddToAutomationMigrationPopulationResponse as eB, type IsInAutomationMigrationPopulationRequest as eC, type IsInAutomationMigrationPopulationResponse as eD, type PreparePaymentCollectionRequest as eE, type RedirectUrls as eF, type DelayedCaptureSettings as eG, type Duration as eH, type GetPaymentCollectabilityStatusRequest as eI, type RecordManuallyCollectedPaymentRequest as eJ, type RecordManuallyCollectedPaymentResponse as eK, type MarkOrderAsPaidRequest as eL, type MarkOrderAsPaidResponse as eM, type BulkMarkOrdersAsPaidRequest as eN, type BulkMarkOrdersAsPaidResponse as eO, type BulkOrderResult as eP, type ItemMetadata as eQ, type ApplicationError as eR, type BulkActionMetadata as eS, type GetRefundabilityStatusRequest as eT, type GetRefundabilityStatusResponse as eU, type Refundability as eV, type RefundabilityAdditionalRefundabilityInfoOneOf as eW, type CreatePaymentGatewayOrderRequest as eX, type ChargedBy as eY, type CreatePaymentGatewayOrderResponse as eZ, type ChargeMembershipsRequest as e_, type SiteUndeleted as ea, type SitePublished as eb, type SiteUnpublished as ec, type SiteMarkedAsTemplate as ed, type SiteMarkedAsWixSite as ee, type ServiceProvisioned as ef, type ServiceRemoved as eg, type SiteRenamed as eh, type SiteHardDeleted as ei, type NamespaceChanged as ej, type StudioAssigned as ek, type StudioUnassigned as el, type SiteUrlChanged as em, type SitePurgedExternally as en, type OdeditorAssigned as eo, type OdeditorUnassigned as ep, type PicassoAssigned as eq, type PicassoUnassigned as er, type WixelAssigned as es, type WixelUnassigned as et, type StudioTwoAssigned as eu, type StudioTwoUnassigned as ev, type UserDomainMediaEnabled as ew, type UserDomainMediaDisabled as ex, type HasCustomEmailConfigurationsRequest as ey, type HasCustomEmailConfigurationsResponse as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type OrderCreateNotifications as f$, type MembershipName as f0, type ServiceProperties as f1, type ChargeMembershipsResponse as f2, type TriggerRefundRequest as f3, type PaymentRefund as f4, type RefundSideEffects as f5, type RestockInfo as f6, type RestockItem as f7, type TriggerRefundResponse as f8, type OrderTransactions as f9, type CalculateRefundItemResponse as fA, type VoidAuthorizedPaymentsRequest as fB, type CaptureAuthorizedPaymentsRequest as fC, type ChargeSavedPaymentMethodRequest as fD, type ChargeSavedPaymentMethodResponse as fE, type DiffmatokyPayload as fF, type ErrorInformation as fG, type GetOrderRequest as fH, type GetOrderResponse as fI, type InternalQueryOrdersRequest as fJ, type PlatformQuery as fK, type PlatformQueryPagingMethodOneOf as fL, type Sorting as fM, type PlatformPaging as fN, type CursorPaging as fO, type InternalQueryOrdersResponse as fP, type PlatformPagingMetadata as fQ, type Cursors as fR, type QueryOrderRequest as fS, type QueryOrderResponse as fT, type SearchOrdersRequest as fU, type CursorSearch as fV, type CursorSearchPagingMethodOneOf as fW, type CursorPagingMetadata as fX, type CreateOrderRequest as fY, type OrderCreationSettings as fZ, type OrderCreationSettingsEditableByOneOf as f_, type Payment as fa, type PaymentPaymentDetailsOneOf as fb, type PaymentReceiptInfoOneOf as fc, type RegularPaymentDetails as fd, type RegularPaymentDetailsPaymentMethodDetailsOneOf as fe, type CreditCardPaymentMethodDetails as ff, type AuthorizationDetails as fg, type AuthorizationCapture as fh, type AuthorizationActionFailureDetails as fi, type AuthorizationVoid as fj, type V1ScheduledAction as fk, type Chargeback as fl, type PaymentMethodName as fm, type GiftCardPaymentDetails as fn, type MembershipPaymentDetails as fo, type WixReceiptInfo as fp, type ExternalReceiptInfo as fq, type Refund as fr, type RefundTransaction as fs, type RefundStatusInfo as ft, type AggregatedRefundSummary as fu, type RefundItemsBreakdown as fv, type LineItemRefundSummary as fw, type CalculateRefundRequest as fx, type CalculateRefundItemRequest as fy, type CalculateRefundResponse as fz, type GetOrderApplicationErrors as g, type TrackingLinkAdded as g$, type CreateOrderResponse as g0, type UpdateOrderRequest as g1, type UpdateOrderResponse as g2, type BulkUpdateOrdersRequest as g3, type CommitDeltasRequest as g4, type DraftOrderDiffs as g5, type DraftOrderDiffsShippingUpdateInfoOneOf as g6, type DraftOrderDiffsBuyerUpdateInfoOneOf as g7, type DraftOrderDiffsBillingUpdateInfoOneOf as g8, type DraftOrderDiffsRecipientUpdateInfoOneOf as g9, type BulkUnArchiveOrdersByFilterRequest as gA, type BulkUnArchiveOrdersByFilterResponse as gB, type UpdateBuyerInfoRequest as gC, type BuyerInfoUpdate as gD, type UpdateBuyerInfoResponse as gE, type UpdateBuyerEmailRequest as gF, type UpdateBuyerEmailResponse as gG, type UpdateOrderShippingAddressRequest as gH, type UpdateOrderShippingAddressResponse as gI, type UpdateBillingContactDetailsRequest as gJ, type UpdateBillingContactDetailsResponse as gK, type UpdateOrderLineItemRequest as gL, type UpdateOrderLineItemResponse as gM, type UpdateOrderLineItemsRequest as gN, type MaskedOrderLineItem as gO, type UpdateOrderLineItemsResponse as gP, type AddInternalActivityRequest as gQ, type InternalActivity as gR, type InternalActivityContentOneOf as gS, type OrderPlaced as gT, type OrderPaid as gU, type OrderFulfilled as gV, type OrderNotFulfilled as gW, type OrderCanceled as gX, type DownloadLinkSent as gY, type TrackingNumberAdded as gZ, type TrackingNumberEdited as g_, type V1LineItemDelta as ga, type V1LineItemDeltaDeltaOneOf as gb, type OrderLineItemChangedDetails as gc, type ItemChangedDetails as gd, type AppliedDiscountDelta as ge, type AppliedDiscountDeltaDeltaOneOf as gf, type AdditionalFeeDelta as gg, type AdditionalFeeDeltaDeltaOneOf as gh, type DraftOrderCommitSettings as gi, type InventoryUpdateDetails as gj, type CommitDeltasResponse as gk, type OrderDeltasCommitted as gl, type CommittedDiffs as gm, type CommittedDiffsShippingUpdateInfoOneOf as gn, type LineItemDelta as go, type LineItemDeltaDeltaOneOf as gp, type ArchiveOrderRequest as gq, type ArchiveOrderResponse as gr, type BulkArchiveOrdersRequest as gs, type BulkArchiveOrdersResponse as gt, type BulkArchiveOrdersByFilterRequest as gu, type BulkArchiveOrdersByFilterResponse as gv, type UnArchiveOrderRequest as gw, type UnArchiveOrderResponse as gx, type BulkUnArchiveOrdersRequest as gy, type BulkUnArchiveOrdersResponse as gz, type OrderSearch as h, type TaskAction as h$, type ShippingConfirmationEmailSent as h0, type InvoiceAdded as h1, type InvoiceSent as h2, type FulfillerEmailSent as h3, type ShippingAddressEdited as h4, type EmailEdited as h5, type PickupReadyEmailSent as h6, type OrderPartiallyPaid as h7, type OrderPending as h8, type OrderRejected as h9, type MarkAsUnfulfilledRequest as hA, type MarkAsUnfulfilledResponse as hB, type BulkMarkAsUnfulfilledRequest as hC, type BulkMarkAsUnfulfilledResponse as hD, type BulkMarkAsUnfulfilledByFilterRequest as hE, type BulkMarkAsUnfulfilledByFilterResponse as hF, type BulkSetBusinessLocationRequest as hG, type BulkSetBusinessLocationResponse as hH, type BulkSetBusinessLocationResult as hI, type V1MarkOrderAsPaidRequest as hJ, type V1MarkOrderAsPaidResponse as hK, type PaymentStatusUpdated as hL, type V1BulkMarkOrdersAsPaidRequest as hM, type V1BulkMarkOrdersAsPaidResponse as hN, type V1CreatePaymentGatewayOrderRequest as hO, type V1CreatePaymentGatewayOrderResponse as hP, type GetShipmentsRequest as hQ, type GetShipmentsResponse as hR, type AggregateOrdersRequest as hS, type AggregateOrdersResponse as hT, type DecrementItemsQuantityRequest as hU, type DecrementData as hV, type DecrementItemsQuantityResponse as hW, type BulkUpdateOrderTagsRequest as hX, type BulkUpdateOrderTagsResult as hY, type Task as hZ, type TaskKey as h_, type AddInternalActivityResponse as ha, type AddActivityRequest as hb, type PublicActivity as hc, type PublicActivityContentOneOf as hd, type AddActivityResponse as he, type AddActivitiesRequest as hf, type UpdateActivityRequest as hg, type UpdateActivityResponse as hh, type DeleteActivityRequest as hi, type DeleteActivityResponse as hj, type UpdateLineItemsDescriptionLinesRequest as hk, type LineItemUpdate as hl, type UpdateLineItemsDescriptionLinesResponse as hm, type MarkOrderAsSeenByHumanRequest as hn, type MarkOrderAsSeenByHumanResponse as ho, type CancelOrderRequest as hp, type OrderCanceledEventOrderCanceled as hq, type UpdateOrderStatusRequest as hr, type UpdateOrderStatusResponse as hs, type MarkAsFulfilledRequest as ht, type MarkAsFulfilledResponse as hu, type FulfillmentStatusUpdated as hv, type BulkMarkAsFulfilledRequest as hw, type BulkMarkAsFulfilledResponse as hx, type BulkMarkAsFulfilledByFilterRequest as hy, type BulkMarkAsFulfilledByFilterResponse as hz, type CreateOrderOptions as i, type FulfillmentStatusWithLiterals as i$, type TaskActionActionOneOf as i0, type Complete as i1, type Cancel as i2, type Reschedule as i3, type InvoiceSentEvent as i4, type IdAndVersion as i5, type InvoiceFields as i6, type Customer as i7, type Email as i8, type QuotesAddress as i9, type InvoiceDynamicPriceTotals as iA, type CustomFieldValue as iB, type Value as iC, type Deposit as iD, type BaseEventMetadata as iE, type EventMetadata as iF, type AccountInfoMetadata as iG, type SetOrderNumberCounterOptions as iH, type BulkDeleteImportedOrdersOptions as iI, type PaymentCollectionCreatePaymentGatewayOrderOptions as iJ, type ChargeMembershipsOptions as iK, type TriggerRefundOptions as iL, type OrderSearchSpec as iM, type UpdateOrderLineItemIdentifiers as iN, type UpdateOrderLineItem as iO, type UpdateActivityIdentifiers as iP, type DeleteActivityIdentifiers as iQ, type AggregateOrdersOptions as iR, type DescriptionLineTypeWithLiterals as iS, type DimensionsUnitWithLiterals as iT, type ItemTypePresetWithLiterals as iU, type PaymentOptionTypeWithLiterals as iV, type JurisdictionTypeWithLiterals as iW, type SubscriptionFrequencyWithLiterals as iX, type AdjustmentTypeWithLiterals as iY, type TaxableAddressTypeWithLiterals as iZ, type PaymentStatusWithLiterals as i_, type AddressDescription as ia, type Phone as ib, type Company as ic, type CommonAddress as id, type CommonAddressStreetOneOf as ie, type Subdivision as ig, type StandardDetails as ih, type InvoiceDates as ii, type LineItems as ij, type LineItem as ik, type BigDecimalWrapper as il, type LineItemTax as im, type Source as io, type LineItemMetaData as ip, type Locale as iq, type TotalPrice as ir, type ItemizedFee as is, type Discount as it, type DiscountOneDiscountTypeOneOf as iu, type CalculatedTaxes as iv, type CalculatedTax as iw, type Payments as ix, type InvoicesPayment as iy, type MetaData as iz, type CreateOrderApplicationErrors as j, createOrder as j$, type WeightUnitWithLiterals as j0, type VatTypeWithLiterals as j1, type PickupMethodWithLiterals as j2, type OrderStatusWithLiterals as j3, type DiscountTypeWithLiterals as j4, type DiscountReasonWithLiterals as j5, type LineItemQuantityChangeTypeWithLiterals as j6, type ActivityTypeWithLiterals as j7, type OrderActivityTypeEnumActivityTypeWithLiterals as j8, type AttributionSourceWithLiterals as j9, type SortOrderWithLiterals as jA, type OrderApprovalStrategyWithLiterals as jB, type DeltaPaymentOptionTypeWithLiterals as jC, type InventoryActionWithLiterals as jD, type PlacementWithLiterals as jE, type SubdivisionTypeWithLiterals as jF, type SourceTypeWithLiterals as jG, type CustomFieldGroupWithLiterals as jH, type ValueTypeWithLiterals as jI, type DepositTypeWithLiterals as jJ, type InvoiceStatusWithLiterals as jK, type RecordManuallyCollectedPaymentApplicationErrors as jL, type PaymentCollectionMarkOrderAsPaidApplicationErrors as jM, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as jN, type TriggerRefundApplicationErrors as jO, type UpdateOrderStatusApplicationErrors as jP, type CommonSearchWithEntityContext as jQ, onOrderApproved as jR, onOrderUpdated as jS, onOrderCanceled as jT, onOrderCreated as jU, onOrderPaymentStatusUpdated as jV, preparePaymentCollection as jW, getPaymentCollectabilityStatus as jX, voidAuthorizedPayments as jY, captureAuthorizedPayments as jZ, getOrder as j_, type ChannelTypeWithLiterals as ja, type AdditionalFeeSourceWithLiterals as jb, type OrderActionTypeWithLiterals as jc, type ChargeTypeWithLiterals 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 RefundableStatusWithLiterals as jo, type NonRefundableReasonWithLiterals as jp, type ManuallyRefundableReasonWithLiterals as jq, type RestockTypeWithLiterals as jr, type TransactionStatusWithLiterals as js, type AuthorizationCaptureStatusWithLiterals as jt, type AuthorizationVoidStatusWithLiterals as ju, type ReasonWithLiterals as jv, type ActionTypeWithLiterals as jw, type ChargebackStatusWithLiterals as jx, type MembershipPaymentStatusWithLiterals as jy, type RefundStatusWithLiterals as jz, type UpdateOrderApplicationErrors as k, updateOrder as k0, bulkUpdateOrders as k1, addActivities as k2, cancelOrder as k3, bulkUpdateOrderTags as k4, type BulkUpdateOrdersResponse as l, type AddActivitiesResponse as m, type CancelOrderOptions as n, type CancelOrderResponse as o, type CancelOrderApplicationErrors as p, type BulkUpdateOrderTagsOptions as q, type BulkUpdateOrderTagsResponse as r, type OrderApprovedEnvelope as s, type OrderUpdatedEnvelope as t, type OrderCanceledEnvelope as u, type OrderCreatedEnvelope as v, type OrderPaymentStatusUpdatedEnvelope as w, DimensionsUnit as x, PaymentOptionType as y, SubscriptionFrequency as z };
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { P as Price, a as PreparePaymentCollectionOptions, b as PreparePaymentCollectionResponse, c as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, V as VoidAuthorizedPaymentsResponse, d as VoidAuthorizedPaymentsApplicationErrors, e as PaymentCapture, C as CaptureAuthorizedPaymentsResponse, f as CaptureAuthorizedPaymentsApplicationErrors, O as Order, g as GetOrderApplicationErrors, h as OrderSearch, S as SearchOrdersResponse, i as CreateOrderOptions, j as CreateOrderApplicationErrors, U as UpdateOrder, k as UpdateOrderApplicationErrors, M as MaskedOrder, B as BulkUpdateOrdersOptions, l as BulkUpdateOrdersResponse, A as AddActivitiesOptions, m as AddActivitiesResponse, n as CancelOrderOptions, o as CancelOrderResponse, p as CancelOrderApplicationErrors, q as BulkUpdateOrderTagsOptions, r as BulkUpdateOrderTagsResponse, s as OrderApprovedEnvelope, t as OrderUpdatedEnvelope, u as OrderCanceledEnvelope, v as OrderCreatedEnvelope, w as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-B11B4NQm.js';
3
- export { d4 as AccountInfo, iE as AccountInfoMetadata, d0 as ActionEvent, ak as ActionType, jt as ActionTypeWithLiterals, by as Activity, bz as ActivityContentOneOf, X as ActivityType, j4 as ActivityTypeWithLiterals, hd as AddActivitiesRequest, h9 as AddActivityRequest, hc as AddActivityResponse, gO as AddInternalActivityRequest, h8 as AddInternalActivityResponse, ey as AddToAutomationMigrationPopulationRequest, ez as AddToAutomationMigrationPopulationResponse, cv as AdditionalFee, ge as AdditionalFeeDelta, gf as AdditionalFeeDeltaDeltaOneOf, dM as AdditionalFeeRefund, $ as AdditionalFeeSource, j8 as AdditionalFeeSourceWithLiterals, b8 as Address, i8 as AddressDescription, ba as AddressLocation, b7 as AddressWithContact, z as AdjustmentType, iV as AdjustmentTypeWithLiterals, iP as AggregateOrdersOptions, hQ as AggregateOrdersRequest, hR as AggregateOrdersResponse, fs as AggregatedRefundSummary, eP as ApplicationError, bo as AppliedDiscount, gc as AppliedDiscountDelta, gd as AppliedDiscountDeltaDeltaOneOf, bp as AppliedDiscountDiscountSourceOneOf, go as ArchiveOrderRequest, gp as ArchiveOrderResponse, e3 as Asset, Z as AttributionSource, j6 as AttributionSourceWithLiterals, fg as AuthorizationActionFailureDetails, ff as AuthorizationCapture, ah as AuthorizationCaptureStatus, jq as AuthorizationCaptureStatusWithLiterals, fe as AuthorizationDetails, fh as AuthorizationVoid, ai as AuthorizationVoidStatus, jr as AuthorizationVoidStatusWithLiterals, bZ as AuthorizedPaymentCaptured, bY as AuthorizedPaymentCreated, b_ as AuthorizedPaymentVoided, cu as Balance, ct as BalanceSummary, iC as BaseEventMetadata, dj as BatchOfTriggerReindexOrderRequest, ij as BigDecimalWrapper, aV as BillingAdjustment, aW as BillingAdjustmentPriceSummary, eQ as BulkActionMetadata, gs as BulkArchiveOrdersByFilterRequest, gt as BulkArchiveOrdersByFilterResponse, gq as BulkArchiveOrdersRequest, gr as BulkArchiveOrdersResponse, iG as BulkDeleteImportedOrdersOptions, cU as BulkDeleteImportedOrdersRequest, cV as BulkDeleteImportedOrdersResponse, hw as BulkMarkAsFulfilledByFilterRequest, hx as BulkMarkAsFulfilledByFilterResponse, hu as BulkMarkAsFulfilledRequest, hv as BulkMarkAsFulfilledResponse, hC as BulkMarkAsUnfulfilledByFilterRequest, hD as BulkMarkAsUnfulfilledByFilterResponse, hA as BulkMarkAsUnfulfilledRequest, hB as BulkMarkAsUnfulfilledResponse, eL as BulkMarkOrdersAsPaidRequest, eM as BulkMarkOrdersAsPaidResponse, eN as BulkOrderResult, ds as BulkSendBuyerPickupConfirmationEmailsRequest, dt as BulkSendBuyerPickupConfirmationEmailsResponse, dw as BulkSendBuyerShippingConfirmationEmailsRequest, dx as BulkSendBuyerShippingConfirmationEmailsResponse, hE as BulkSetBusinessLocationRequest, hF as BulkSetBusinessLocationResponse, hG as BulkSetBusinessLocationResult, gy as BulkUnArchiveOrdersByFilterRequest, gz as BulkUnArchiveOrdersByFilterResponse, gw as BulkUnArchiveOrdersRequest, gx as BulkUnArchiveOrdersResponse, hV as BulkUpdateOrderTagsRequest, hW as BulkUpdateOrderTagsResult, g1 as BulkUpdateOrdersRequest, b3 as BuyerInfo, b4 as BuyerInfoIdOneOf, gB as BuyerInfoUpdate, fw as CalculateRefundItemRequest, fy as CalculateRefundItemResponse, fv as CalculateRefundRequest, fx as CalculateRefundResponse, iu as CalculatedTax, it as CalculatedTaxes, i0 as Cancel, hn as CancelOrderRequest, fA as CaptureAuthorizedPaymentsRequest, aB as CatalogReference, cr as ChannelInfo, _ as ChannelType, j7 as ChannelTypeWithLiterals, iI as ChargeMembershipsOptions, eY as ChargeMembershipsRequest, f0 as ChargeMembershipsResponse, fB as ChargeSavedPaymentMethodRequest, fC as ChargeSavedPaymentMethodResponse, a1 as ChargeType, ja as ChargeTypeWithLiterals, fj as Chargeback, cn as ChargebackCreated, co as ChargebackReversed, al as ChargebackStatus, ju as ChargebackStatusWithLiterals, eW as ChargedBy, aH as Color, g2 as CommitDeltasRequest, gi as CommitDeltasResponse, gk as CommittedDiffs, gl as CommittedDiffsShippingUpdateInfoOneOf, ib as CommonAddress, ic as CommonAddressStreetOneOf, jN as CommonSearchWithEntityContext, ia as Company, h$ as Complete, bq as Coupon, fW as CreateOrderRequest, f_ as CreateOrderResponse, eV as CreatePaymentGatewayOrderRequest, eX as CreatePaymentGatewayOrderResponse, cp as CreatedBy, cq as CreatedByStringOneOf, cc as CreditCardDetails, fd as CreditCardPaymentMethodDetails, b5 as CurrencyConversionDetails, fM as CursorPaging, fV as CursorPagingMetadata, fT as CursorSearch, fU as CursorSearchPagingMethodOneOf, fP as Cursors, bA as CustomActivity, cD as CustomAllowedActions, cs as CustomField, av as CustomFieldGroup, jE as CustomFieldGroupWithLiterals, iz as CustomFieldValue, i5 as Customer, hT as DecrementData, hS as DecrementItemsQuantityRequest, hU as DecrementItemsQuantityResponse, eE as DelayedCaptureSettings, iO as DeleteActivityIdentifiers, hg as DeleteActivityRequest, hh as DeleteActivityResponse, da as DeleteByFilterOperation, d9 as DeleteByIdsOperation, e7 as DeleteContext, a8 as DeleteStatus, jh as DeleteStatusWithLiterals, be as DeliveryLogistics, bf as DeliveryLogisticsAddressOneOf, bi as DeliveryTimeSlot, aq as DeltaPaymentOptionType, jz as DeltaPaymentOptionTypeWithLiterals, iB as Deposit, ax as DepositType, jG as DepositTypeWithLiterals, aC as DescriptionLine, aE as DescriptionLineDescriptionLineValueOneOf, aF as DescriptionLineName, D as DescriptionLineType, iQ as DescriptionLineTypeWithLiterals, aD as DescriptionLineValueOneOf, fD as DiffmatokyPayload, aP as DigitalFile, ir as Discount, is as DiscountOneDiscountTypeOneOf, Q as DiscountReason, j2 as DiscountReasonWithLiterals, bt as DiscountRule, bu as DiscountRuleName, N as DiscountType, j1 as DiscountTypeWithLiterals, cW as DomainEvent, cX as DomainEventBodyOneOf, gW as DownloadLinkSent, bG as DraftOrderChangesApplied, gg as DraftOrderCommitSettings, g3 as DraftOrderDiffs, g6 as DraftOrderDiffsBillingUpdateInfoOneOf, g5 as DraftOrderDiffsBuyerUpdateInfoOneOf, g7 as DraftOrderDiffsRecipientUpdateInfoOneOf, g4 as DraftOrderDiffsShippingUpdateInfoOneOf, eF as Duration, aa as DurationUnit, jj as DurationUnitWithLiterals, i6 as Email, h3 as EmailEdited, di as Empty, cY as EntityCreatedEvent, c$ as EntityDeletedEvent, c_ as EntityUpdatedEvent, fE as ErrorInformation, iD as EventMetadata, a$ as ExtendedFields, ck as ExternalReceipt, fo as ExternalReceiptInfo, aI as FocalPoint, cG as FormIdentifier, cF as FormInfo, aU as FreeTrialPeriod, h1 as FulfillerEmailSent, F as FulfillmentStatus, ht as FulfillmentStatusUpdated, iY as FulfillmentStatusWithLiterals, cw as FulfillmentStatusesAggregate, bb as FullAddressContactDetails, fF as GetOrderRequest, fG as GetOrderResponse, eG as GetPaymentCollectabilityStatusRequest, eR as GetRefundabilityStatusRequest, eS as GetRefundabilityStatusResponse, hO as GetShipmentsRequest, hP as GetShipmentsResponse, fl as GiftCardPaymentDetails, c3 as GiftCardPaymentRefund, ew as HasCustomEmailConfigurationsRequest, ex as HasCustomEmailConfigurationsResponse, i3 as IdAndVersion, d2 as IdentificationData, d3 as IdentificationDataIdOneOf, cQ as ImportOrderRequest, cR as ImportOrderResponse, cP as ImportedOrderDeleted, gP as InternalActivity, gQ as InternalActivityContentOneOf, d7 as InternalDocument, db as InternalDocumentUpdateByFilterOperation, d8 as InternalDocumentUpdateOperation, fH as InternalQueryOrdersRequest, fN as InternalQueryOrdersResponse, dc as InternalUpdateExistingOperation, ar as InventoryAction, jA as InventoryActionWithLiterals, gh as InventoryUpdateDetails, g$ as InvoiceAdded, ig as InvoiceDates, iy as InvoiceDynamicPriceTotals, i4 as InvoiceFields, h0 as InvoiceSent, i2 as InvoiceSentEvent, ay as InvoiceStatus, jH as InvoiceStatusWithLiterals, iw as InvoicesPayment, eA as IsInAutomationMigrationPopulationRequest, eB as IsInAutomationMigrationPopulationResponse, gb as ItemChangedDetails, bw as ItemCombination, bx as ItemCombinationLineItem, eO as ItemMetadata, b2 as ItemModifier, aM as ItemTaxFullDetails, aK as ItemType, aL as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, iR as ItemTypePresetWithLiterals, iq as ItemizedFee, J as JurisdictionType, iT as JurisdictionTypeWithLiterals, ii as LineItem, bS as LineItemAmount, bJ as LineItemChanges, gm as LineItemDelta, gn as LineItemDeltaDeltaOneOf, bN as LineItemDescriptionLineChange, bv as LineItemDiscount, bF as LineItemExchangeData, im as LineItemMetaData, bO as LineItemModifiersChange, bL as LineItemPriceChange, bM as LineItemProductNameChange, bK as LineItemQuantityChange, R as LineItemQuantityChangeType, j3 as LineItemQuantityChangeTypeWithLiterals, dL as LineItemRefund, fu as LineItemRefundSummary, ik as LineItemTax, aO as LineItemTaxBreakdown, aN as LineItemTaxInfo, hj as LineItemUpdate, ih as LineItems, io as Locale, cz as Location, aY as LocationAndQuantity, bT as ManagedAdditionalFee, bQ as ManagedDiscount, bP as ManagedLineItem, ae as ManuallyRefundableReason, jn as ManuallyRefundableReasonWithLiterals, hr as MarkAsFulfilledRequest, hs as MarkAsFulfilledResponse, hy as MarkAsUnfulfilledRequest, hz as MarkAsUnfulfilledResponse, eJ as MarkOrderAsPaidRequest, eK as MarkOrderAsPaidResponse, hl as MarkOrderAsSeenByHumanRequest, hm as MarkOrderAsSeenByHumanResponse, gM as MaskedOrderLineItem, eZ as MembershipChargeItem, e_ as MembershipName, fm as MembershipPaymentDetails, c4 as MembershipPaymentRefund, am as MembershipPaymentStatus, jv as MembershipPaymentStatusWithLiterals, bB as MerchantComment, br as MerchantDiscount, bs as MerchantDiscountMerchantDiscountReasonOneOf, d1 as MessageEnvelope, ix as MetaData, e1 as MetaSiteSpecialEvent, e2 as MetaSiteSpecialEventPayloadOneOf, b0 as ModifierGroup, a7 as Namespace, eh as NamespaceChanged, jg as NamespaceWithLiterals, bE as NewExchangeOrderCreated, ad as NonRefundableReason, jm as NonRefundableReasonWithLiterals, em as OdeditorAssigned, en as OdeditorUnassigned, a0 as OrderActionType, j9 as OrderActionTypeWithLiterals, Y as OrderActivityTypeEnumActivityType, j5 as OrderActivityTypeEnumActivityTypeWithLiterals, ap as OrderApprovalStrategy, jy as OrderApprovalStrategyWithLiterals, cJ as OrderApproved, gV as OrderCanceled, ho as OrderCanceledEventOrderCanceled, bH as OrderChange, bI as OrderChangeValueOneOf, fZ as OrderCreateNotifications, bD as OrderCreatedFromExchange, fX as OrderCreationSettings, fY as OrderCreationSettingsEditableByOneOf, gj as OrderDeltasCommitted, gT as OrderFulfilled, cO as OrderImported, cM as OrderItemsRestocked, az as OrderLineItem, ga as OrderLineItemChangedDetails, gU as OrderNotFulfilled, gS as OrderPaid, h5 as OrderPartiallyPaid, h6 as OrderPending, gR as OrderPlaced, bC as OrderRefunded, h7 as OrderRejected, cL as OrderRejectedEventOrderRejected, iK as OrderSearchSpec, cA as OrderSettings, cB as OrderSettingsAllowedActionsOneOf, cC as OrderSettingsEditableByOneOf, L as OrderStatus, j0 as OrderStatusWithLiterals, bn as OrderTaxBreakdown, bm as OrderTaxInfo, f7 as OrderTransactions, cK as OrdersExperiments, cE as OwnerApps, f8 as Payment, cd as PaymentCanceled, ce as PaymentCanceledPaymentDetailsOneOf, ab as PaymentCollectabilityStatus, jk as PaymentCollectabilityStatusWithLiterals, jK as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, iH as PaymentCollectionCreatePaymentGatewayOrderOptions, jJ as PaymentCollectionMarkOrderAsPaidApplicationErrors, cf as PaymentDeclined, cg as PaymentDeclinedPaymentDetailsOneOf, fk as PaymentMethodName, x as PaymentOptionType, iS as PaymentOptionTypeWithLiterals, f9 as PaymentPaymentDetailsOneOf, c8 as PaymentPending, c9 as PaymentPendingPaymentDetailsOneOf, fa as PaymentReceiptInfoOneOf, f2 as PaymentRefund, c6 as PaymentRefundFailed, c5 as PaymentRefunded, E as PaymentStatus, hJ as PaymentStatusUpdated, iX as PaymentStatusWithLiterals, iv as Payments, i9 as Phone, aJ as PhysicalProperties, eo as PicassoAssigned, ep as PicassoUnassigned, bh as PickupAddress, bg as PickupDetails, K as PickupMethod, i$ as PickupMethodWithLiterals, h4 as PickupReadyEmailSent, as as Placement, jB as PlacementWithLiterals, aG as PlainTextValue, cI as PlatformFee, cH as PlatformFeeSummary, fL as PlatformPaging, fO as PlatformPagingMetadata, fI as PlatformQuery, fJ as PlatformQueryPagingMethodOneOf, eC as PreparePaymentCollectionRequest, dV as PreviewBuyerConfirmationEmailRequest, dW as PreviewBuyerConfirmationEmailResponse, dT as PreviewBuyerPaymentsReceivedEmailRequest, dU as PreviewBuyerPaymentsReceivedEmailResponse, dX as PreviewBuyerPickupConfirmationEmailRequest, dY as PreviewBuyerPickupConfirmationEmailResponse, dP as PreviewCancelEmailRequest, dQ as PreviewCancelEmailResponse, dR as PreviewCancelRefundEmailRequest, dS as PreviewCancelRefundEmailResponse, dG as PreviewEmailByTypeRequest, dH as PreviewEmailByTypeResponse, a4 as PreviewEmailType, jd as PreviewEmailTypeWithLiterals, dI as PreviewRefundEmailRequest, dO as PreviewRefundEmailResponse, d$ as PreviewResendDownloadLinksEmailRequest, e0 as PreviewResendDownloadLinksEmailResponse, dZ as PreviewShippingConfirmationEmailRequest, d_ as PreviewShippingConfirmationEmailResponse, aX as PriceDescription, b6 as PriceSummary, aA as ProductName, ha as PublicActivity, hb as PublicActivityContentOneOf, fQ as QueryOrderRequest, fR as QueryOrderResponse, i7 as QuotesAddress, aj as Reason, js as ReasonWithLiterals, ch as ReceiptCreated, ci as ReceiptCreatedReceiptInfoOneOf, cl as ReceiptSent, cm as ReceiptSentReceiptInfoOneOf, jI as RecordManuallyCollectedPaymentApplicationErrors, eH as RecordManuallyCollectedPaymentRequest, eI as RecordManuallyCollectedPaymentResponse, eD as RedirectUrls, fp as Refund, dJ as RefundDetails, b$ as RefundInitiated, dK as RefundItem, ft as RefundItemsBreakdown, f3 as RefundSideEffects, an as RefundStatus, fr as RefundStatusInfo, jw as RefundStatusWithLiterals, fq as RefundTransaction, eT as Refundability, eU as RefundabilityAdditionalRefundabilityInfoOneOf, ac as RefundableStatus, jl as RefundableStatusWithLiterals, c7 as RefundedAsStoreCredit, c0 as RefundedPayment, c1 as RefundedPaymentKindOneOf, ca as RegularPayment, fb as RegularPaymentDetails, fc as RegularPaymentDetailsPaymentMethodDetailsOneOf, cb as RegularPaymentPaymentMethodDetailsOneOf, c2 as RegularPaymentRefund, i1 as Reschedule, f4 as RestockInfo, f5 as RestockItem, af as RestockType, jo as RestockTypeWithLiterals, cZ as RestoreInfo, bX as SavedPaymentMethod, a9 as ScheduledAction, ji as ScheduledActionWithLiterals, fS as SearchOrdersRequest, dl as SendBuyerConfirmationEmailRequest, dm as SendBuyerConfirmationEmailResponse, dn as SendBuyerPaymentsReceivedEmailRequest, dp as SendBuyerPaymentsReceivedEmailResponse, dq as SendBuyerPickupConfirmationEmailRequest, dr as SendBuyerPickupConfirmationEmailResponse, du as SendBuyerShippingConfirmationEmailRequest, dv as SendBuyerShippingConfirmationEmailResponse, dA as SendCancelRefundEmailRequest, dB as SendCancelRefundEmailResponse, dy as SendMerchantOrderReceivedNotificationRequest, dz as SendMerchantOrderReceivedNotificationResponse, dE as SendMerchantOrderReceivedPushRequest, dF as SendMerchantOrderReceivedPushResponse, dC as SendRefundEmailRequest, dD as SendRefundEmailResponse, e$ as ServiceProperties, ed as ServiceProvisioned, ee as ServiceRemoved, iF as SetOrderNumberCounterOptions, cS as SetOrderNumberCounterRequest, cT as SetOrderNumberCounterResponse, h2 as ShippingAddressEdited, g_ as ShippingConfirmationEmailSent, bW as ShippingInformation, bV as ShippingInformationChange, bj as ShippingPrice, dN as ShippingRefund, bk as ShippingRegion, e4 as SiteCreated, a6 as SiteCreatedContext, jf as SiteCreatedContextWithLiterals, e6 as SiteDeleted, eg as SiteHardDeleted, eb as SiteMarkedAsTemplate, ec as SiteMarkedAsWixSite, e9 as SitePublished, el as SitePurgedExternally, ef as SiteRenamed, e5 as SiteTransferred, e8 as SiteUndeleted, ea as SiteUnpublished, ek as SiteUrlChanged, ao as SortOrder, jx as SortOrderWithLiterals, fK as Sorting, il as Source, au as SourceType, jD as SourceTypeWithLiterals, ie as StandardDetails, a5 as State, je as StateWithLiterals, b9 as StreetAddress, ei as StudioAssigned, es as StudioTwoAssigned, et as StudioTwoUnassigned, ej as StudioUnassigned, id as Subdivision, at as SubdivisionType, jC as SubdivisionTypeWithLiterals, aS as SubscriptionDescription, y as SubscriptionFrequency, iU as SubscriptionFrequencyWithLiterals, aQ as SubscriptionInfo, aT as SubscriptionSettings, aR as SubscriptionTitle, cy as TagList, cx as Tags, hX as Task, hZ as TaskAction, h_ as TaskActionActionOneOf, hY as TaskKey, bl as TaxSummary, aZ as TaxableAddress, a_ as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, iW as TaxableAddressTypeWithLiterals, ip as TotalPrice, bU as TotalPriceChange, gZ as TrackingLinkAdded, gX as TrackingNumberAdded, gY as TrackingNumberEdited, ag as TransactionStatus, jp as TransactionStatusWithLiterals, b1 as TranslatableString, bR as TranslatedValue, jL as TriggerRefundApplicationErrors, iJ as TriggerRefundOptions, f1 as TriggerRefundRequest, f6 as TriggerRefundResponse, dk as TriggerReindexOrderRequest, dg as TriggerReindexRequest, dh as TriggerReindexResponse, gu as UnArchiveOrderRequest, gv as UnArchiveOrderResponse, iN as UpdateActivityIdentifiers, he as UpdateActivityRequest, hf as UpdateActivityResponse, gH as UpdateBillingContactDetailsRequest, gI as UpdateBillingContactDetailsResponse, gD as UpdateBuyerEmailRequest, gE as UpdateBuyerEmailResponse, gA as UpdateBuyerInfoRequest, gC as UpdateBuyerInfoResponse, d5 as UpdateInternalDocumentsEvent, d6 as UpdateInternalDocumentsEventOperationOneOf, hi as UpdateLineItemsDescriptionLinesRequest, hk as UpdateLineItemsDescriptionLinesResponse, iM as UpdateOrderLineItem, iL as UpdateOrderLineItemIdentifiers, gJ as UpdateOrderLineItemRequest, gK as UpdateOrderLineItemResponse, gL as UpdateOrderLineItemsRequest, gN as UpdateOrderLineItemsResponse, f$ as UpdateOrderRequest, g0 as UpdateOrderResponse, gF as UpdateOrderShippingAddressRequest, gG as UpdateOrderShippingAddressResponse, jM as UpdateOrderStatusApplicationErrors, hp as UpdateOrderStatusRequest, hq as UpdateOrderStatusResponse, ev as UserDomainMediaDisabled, eu as UserDomainMediaEnabled, hK as V1BulkMarkOrdersAsPaidRequest, hL as V1BulkMarkOrdersAsPaidResponse, hM as V1CreatePaymentGatewayOrderRequest, hN as V1CreatePaymentGatewayOrderResponse, g8 as V1LineItemDelta, g9 as V1LineItemDeltaDeltaOneOf, hH as V1MarkOrderAsPaidRequest, hI as V1MarkOrderAsPaidResponse, cN as V1RestockItem, fi as V1ScheduledAction, bd as V1ShippingInformation, iA as Value, aw as ValueType, jF as ValueTypeWithLiterals, bc as VatId, H as VatType, i_ as VatTypeWithLiterals, de as VersionedDeleteByIdsOperation, df as VersionedDocumentId, dd as VersionedDocumentUpdateOperation, a3 as VersioningMode, jc as VersioningModeWithLiterals, fz as VoidAuthorizedPaymentsRequest, a2 as WebhookIdentityType, jb as WebhookIdentityTypeWithLiterals, W as WeightUnit, iZ as WeightUnitWithLiterals, cj as WixReceipt, fn as WixReceiptInfo, eq as WixelAssigned, er as WixelUnassigned } from './ecom-v1-order-orders.universal-B11B4NQm.js';
2
+ import { P as Price, a as PreparePaymentCollectionOptions, b as PreparePaymentCollectionResponse, c as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, V as VoidAuthorizedPaymentsResponse, d as VoidAuthorizedPaymentsApplicationErrors, e as PaymentCapture, C as CaptureAuthorizedPaymentsResponse, f as CaptureAuthorizedPaymentsApplicationErrors, O as Order, g as GetOrderApplicationErrors, h as OrderSearch, S as SearchOrdersResponse, i as CreateOrderOptions, j as CreateOrderApplicationErrors, U as UpdateOrder, k as UpdateOrderApplicationErrors, M as MaskedOrder, B as BulkUpdateOrdersOptions, l as BulkUpdateOrdersResponse, A as AddActivitiesOptions, m as AddActivitiesResponse, n as CancelOrderOptions, o as CancelOrderResponse, p as CancelOrderApplicationErrors, q as BulkUpdateOrderTagsOptions, r as BulkUpdateOrderTagsResponse, s as OrderApprovedEnvelope, t as OrderUpdatedEnvelope, u as OrderCanceledEnvelope, v as OrderCreatedEnvelope, w as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-DGvc5WHr.js';
3
+ export { d6 as AccountInfo, iG as AccountInfoMetadata, d2 as ActionEvent, al as ActionType, jw as ActionTypeWithLiterals, bA as Activity, bB as ActivityContentOneOf, Y as ActivityType, j7 as ActivityTypeWithLiterals, hf as AddActivitiesRequest, hb as AddActivityRequest, he as AddActivityResponse, gQ as AddInternalActivityRequest, ha as AddInternalActivityResponse, eA as AddToAutomationMigrationPopulationRequest, eB as AddToAutomationMigrationPopulationResponse, cx as AdditionalFee, gg as AdditionalFeeDelta, gh as AdditionalFeeDeltaDeltaOneOf, dO as AdditionalFeeRefund, a0 as AdditionalFeeSource, jb as AdditionalFeeSourceWithLiterals, ba as Address, ia as AddressDescription, bc as AddressLocation, b9 as AddressWithContact, E as AdjustmentType, iY as AdjustmentTypeWithLiterals, iR as AggregateOrdersOptions, hS as AggregateOrdersRequest, hT as AggregateOrdersResponse, fu as AggregatedRefundSummary, eR as ApplicationError, bq as AppliedDiscount, ge as AppliedDiscountDelta, gf as AppliedDiscountDeltaDeltaOneOf, br as AppliedDiscountDiscountSourceOneOf, gq as ArchiveOrderRequest, gr as ArchiveOrderResponse, e5 as Asset, _ as AttributionSource, j9 as AttributionSourceWithLiterals, fi as AuthorizationActionFailureDetails, fh as AuthorizationCapture, ai as AuthorizationCaptureStatus, jt as AuthorizationCaptureStatusWithLiterals, fg as AuthorizationDetails, fj as AuthorizationVoid, aj as AuthorizationVoidStatus, ju as AuthorizationVoidStatusWithLiterals, b$ as AuthorizedPaymentCaptured, b_ as AuthorizedPaymentCreated, c0 as AuthorizedPaymentVoided, cw as Balance, cv as BalanceSummary, iE as BaseEventMetadata, dl as BatchOfTriggerReindexOrderRequest, il as BigDecimalWrapper, aX as BillingAdjustment, aY as BillingAdjustmentPriceSummary, eS as BulkActionMetadata, gu as BulkArchiveOrdersByFilterRequest, gv as BulkArchiveOrdersByFilterResponse, gs as BulkArchiveOrdersRequest, gt as BulkArchiveOrdersResponse, iI as BulkDeleteImportedOrdersOptions, cW as BulkDeleteImportedOrdersRequest, cX as BulkDeleteImportedOrdersResponse, hy as BulkMarkAsFulfilledByFilterRequest, hz as BulkMarkAsFulfilledByFilterResponse, hw as BulkMarkAsFulfilledRequest, hx as BulkMarkAsFulfilledResponse, hE as BulkMarkAsUnfulfilledByFilterRequest, hF as BulkMarkAsUnfulfilledByFilterResponse, hC as BulkMarkAsUnfulfilledRequest, hD as BulkMarkAsUnfulfilledResponse, eN as BulkMarkOrdersAsPaidRequest, eO as BulkMarkOrdersAsPaidResponse, eP as BulkOrderResult, du as BulkSendBuyerPickupConfirmationEmailsRequest, dv as BulkSendBuyerPickupConfirmationEmailsResponse, dy as BulkSendBuyerShippingConfirmationEmailsRequest, dz as BulkSendBuyerShippingConfirmationEmailsResponse, hG as BulkSetBusinessLocationRequest, hH as BulkSetBusinessLocationResponse, hI as BulkSetBusinessLocationResult, gA as BulkUnArchiveOrdersByFilterRequest, gB as BulkUnArchiveOrdersByFilterResponse, gy as BulkUnArchiveOrdersRequest, gz as BulkUnArchiveOrdersResponse, hX as BulkUpdateOrderTagsRequest, hY as BulkUpdateOrderTagsResult, g3 as BulkUpdateOrdersRequest, b5 as BuyerInfo, b6 as BuyerInfoIdOneOf, gD as BuyerInfoUpdate, fy as CalculateRefundItemRequest, fA as CalculateRefundItemResponse, fx as CalculateRefundRequest, fz as CalculateRefundResponse, iw as CalculatedTax, iv as CalculatedTaxes, i2 as Cancel, hp as CancelOrderRequest, fC as CaptureAuthorizedPaymentsRequest, aC as CatalogReference, ct as ChannelInfo, $ as ChannelType, ja as ChannelTypeWithLiterals, iK as ChargeMembershipsOptions, e_ as ChargeMembershipsRequest, f2 as ChargeMembershipsResponse, fD as ChargeSavedPaymentMethodRequest, fE as ChargeSavedPaymentMethodResponse, a2 as ChargeType, jd as ChargeTypeWithLiterals, fl as Chargeback, cp as ChargebackCreated, cq as ChargebackReversed, am as ChargebackStatus, jx as ChargebackStatusWithLiterals, eY as ChargedBy, aI as Color, g4 as CommitDeltasRequest, gk as CommitDeltasResponse, gm as CommittedDiffs, gn as CommittedDiffsShippingUpdateInfoOneOf, id as CommonAddress, ie as CommonAddressStreetOneOf, jQ as CommonSearchWithEntityContext, ic as Company, i1 as Complete, bs as Coupon, fY as CreateOrderRequest, g0 as CreateOrderResponse, eX as CreatePaymentGatewayOrderRequest, eZ as CreatePaymentGatewayOrderResponse, cr as CreatedBy, cs as CreatedByStringOneOf, ce as CreditCardDetails, ff as CreditCardPaymentMethodDetails, b7 as CurrencyConversionDetails, fO as CursorPaging, fX as CursorPagingMetadata, fV as CursorSearch, fW as CursorSearchPagingMethodOneOf, fR as Cursors, bC as CustomActivity, cF as CustomAllowedActions, cu as CustomField, aw as CustomFieldGroup, jH as CustomFieldGroupWithLiterals, iB as CustomFieldValue, i7 as Customer, hV as DecrementData, hU as DecrementItemsQuantityRequest, hW as DecrementItemsQuantityResponse, eG as DelayedCaptureSettings, iQ as DeleteActivityIdentifiers, hi as DeleteActivityRequest, hj as DeleteActivityResponse, dc as DeleteByFilterOperation, db as DeleteByIdsOperation, e9 as DeleteContext, a9 as DeleteStatus, jk as DeleteStatusWithLiterals, bg as DeliveryLogistics, bh as DeliveryLogisticsAddressOneOf, bk as DeliveryTimeSlot, ar as DeltaPaymentOptionType, jC as DeltaPaymentOptionTypeWithLiterals, iD as Deposit, ay as DepositType, jJ as DepositTypeWithLiterals, aD as DescriptionLine, aF as DescriptionLineDescriptionLineValueOneOf, aG as DescriptionLineName, D as DescriptionLineType, iS as DescriptionLineTypeWithLiterals, aE as DescriptionLineValueOneOf, fF as DiffmatokyPayload, aR as DigitalFile, aL as Dimensions, x as DimensionsUnit, iT as DimensionsUnitWithLiterals, it as Discount, iu as DiscountOneDiscountTypeOneOf, R as DiscountReason, j5 as DiscountReasonWithLiterals, bv as DiscountRule, bw as DiscountRuleName, Q as DiscountType, j4 as DiscountTypeWithLiterals, cY as DomainEvent, cZ as DomainEventBodyOneOf, gY as DownloadLinkSent, bI as DraftOrderChangesApplied, gi as DraftOrderCommitSettings, g5 as DraftOrderDiffs, g8 as DraftOrderDiffsBillingUpdateInfoOneOf, g7 as DraftOrderDiffsBuyerUpdateInfoOneOf, g9 as DraftOrderDiffsRecipientUpdateInfoOneOf, g6 as DraftOrderDiffsShippingUpdateInfoOneOf, eH as Duration, ab as DurationUnit, jm as DurationUnitWithLiterals, i8 as Email, h5 as EmailEdited, dk as Empty, c_ as EntityCreatedEvent, d1 as EntityDeletedEvent, d0 as EntityUpdatedEvent, fG as ErrorInformation, iF as EventMetadata, b1 as ExtendedFields, cm as ExternalReceipt, fq as ExternalReceiptInfo, aJ as FocalPoint, cI as FormIdentifier, cH as FormInfo, aW as FreeTrialPeriod, h3 as FulfillerEmailSent, H as FulfillmentStatus, hv as FulfillmentStatusUpdated, i$ as FulfillmentStatusWithLiterals, cy as FulfillmentStatusesAggregate, bd as FullAddressContactDetails, fH as GetOrderRequest, fI as GetOrderResponse, eI as GetPaymentCollectabilityStatusRequest, eT as GetRefundabilityStatusRequest, eU as GetRefundabilityStatusResponse, hQ as GetShipmentsRequest, hR as GetShipmentsResponse, fn as GiftCardPaymentDetails, c5 as GiftCardPaymentRefund, ey as HasCustomEmailConfigurationsRequest, ez as HasCustomEmailConfigurationsResponse, i5 as IdAndVersion, d4 as IdentificationData, d5 as IdentificationDataIdOneOf, cS as ImportOrderRequest, cT as ImportOrderResponse, cR as ImportedOrderDeleted, gR as InternalActivity, gS as InternalActivityContentOneOf, d9 as InternalDocument, dd as InternalDocumentUpdateByFilterOperation, da as InternalDocumentUpdateOperation, fJ as InternalQueryOrdersRequest, fP as InternalQueryOrdersResponse, de as InternalUpdateExistingOperation, as as InventoryAction, jD as InventoryActionWithLiterals, gj as InventoryUpdateDetails, h1 as InvoiceAdded, ii as InvoiceDates, iA as InvoiceDynamicPriceTotals, i6 as InvoiceFields, h2 as InvoiceSent, i4 as InvoiceSentEvent, az as InvoiceStatus, jK as InvoiceStatusWithLiterals, iy as InvoicesPayment, eC as IsInAutomationMigrationPopulationRequest, eD as IsInAutomationMigrationPopulationResponse, gd as ItemChangedDetails, by as ItemCombination, bz as ItemCombinationLineItem, eQ as ItemMetadata, b4 as ItemModifier, aO as ItemTaxFullDetails, aM as ItemType, aN as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, iU as ItemTypePresetWithLiterals, is as ItemizedFee, J as JurisdictionType, iW as JurisdictionTypeWithLiterals, ik as LineItem, bU as LineItemAmount, bL as LineItemChanges, go as LineItemDelta, gp as LineItemDeltaDeltaOneOf, bP as LineItemDescriptionLineChange, bx as LineItemDiscount, bH as LineItemExchangeData, ip as LineItemMetaData, bQ as LineItemModifiersChange, bN as LineItemPriceChange, bO as LineItemProductNameChange, bM as LineItemQuantityChange, X as LineItemQuantityChangeType, j6 as LineItemQuantityChangeTypeWithLiterals, dN as LineItemRefund, fw as LineItemRefundSummary, im as LineItemTax, aQ as LineItemTaxBreakdown, aP as LineItemTaxInfo, hl as LineItemUpdate, ij as LineItems, iq as Locale, cB as Location, a_ as LocationAndQuantity, bV as ManagedAdditionalFee, bS as ManagedDiscount, bR as ManagedLineItem, af as ManuallyRefundableReason, jq as ManuallyRefundableReasonWithLiterals, ht as MarkAsFulfilledRequest, hu as MarkAsFulfilledResponse, hA as MarkAsUnfulfilledRequest, hB as MarkAsUnfulfilledResponse, eL as MarkOrderAsPaidRequest, eM as MarkOrderAsPaidResponse, hn as MarkOrderAsSeenByHumanRequest, ho as MarkOrderAsSeenByHumanResponse, gO as MaskedOrderLineItem, e$ as MembershipChargeItem, f0 as MembershipName, fo as MembershipPaymentDetails, c6 as MembershipPaymentRefund, an as MembershipPaymentStatus, jy as MembershipPaymentStatusWithLiterals, bD as MerchantComment, bt as MerchantDiscount, bu as MerchantDiscountMerchantDiscountReasonOneOf, d3 as MessageEnvelope, iz as MetaData, e3 as MetaSiteSpecialEvent, e4 as MetaSiteSpecialEventPayloadOneOf, b2 as ModifierGroup, a8 as Namespace, ej as NamespaceChanged, jj as NamespaceWithLiterals, bG as NewExchangeOrderCreated, ae as NonRefundableReason, jp as NonRefundableReasonWithLiterals, eo as OdeditorAssigned, ep as OdeditorUnassigned, a1 as OrderActionType, jc as OrderActionTypeWithLiterals, Z as OrderActivityTypeEnumActivityType, j8 as OrderActivityTypeEnumActivityTypeWithLiterals, aq as OrderApprovalStrategy, jB as OrderApprovalStrategyWithLiterals, cL as OrderApproved, gX as OrderCanceled, hq as OrderCanceledEventOrderCanceled, bJ as OrderChange, bK as OrderChangeValueOneOf, f$ as OrderCreateNotifications, bF as OrderCreatedFromExchange, fZ as OrderCreationSettings, f_ as OrderCreationSettingsEditableByOneOf, gl as OrderDeltasCommitted, gV as OrderFulfilled, cQ as OrderImported, cO as OrderItemsRestocked, aA as OrderLineItem, gc as OrderLineItemChangedDetails, gW as OrderNotFulfilled, gU as OrderPaid, h7 as OrderPartiallyPaid, h8 as OrderPending, gT as OrderPlaced, bE as OrderRefunded, h9 as OrderRejected, cN as OrderRejectedEventOrderRejected, iM as OrderSearchSpec, cC as OrderSettings, cD as OrderSettingsAllowedActionsOneOf, cE as OrderSettingsEditableByOneOf, N as OrderStatus, j3 as OrderStatusWithLiterals, bp as OrderTaxBreakdown, bo as OrderTaxInfo, f9 as OrderTransactions, cM as OrdersExperiments, cG as OwnerApps, fa as Payment, cf as PaymentCanceled, cg as PaymentCanceledPaymentDetailsOneOf, ac as PaymentCollectabilityStatus, jn as PaymentCollectabilityStatusWithLiterals, jN as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, iJ as PaymentCollectionCreatePaymentGatewayOrderOptions, jM as PaymentCollectionMarkOrderAsPaidApplicationErrors, ch as PaymentDeclined, ci as PaymentDeclinedPaymentDetailsOneOf, fm as PaymentMethodName, y as PaymentOptionType, iV as PaymentOptionTypeWithLiterals, fb as PaymentPaymentDetailsOneOf, ca as PaymentPending, cb as PaymentPendingPaymentDetailsOneOf, fc as PaymentReceiptInfoOneOf, f4 as PaymentRefund, c8 as PaymentRefundFailed, c7 as PaymentRefunded, F as PaymentStatus, hL as PaymentStatusUpdated, i_ as PaymentStatusWithLiterals, ix as Payments, ib as Phone, aK as PhysicalProperties, eq as PicassoAssigned, er as PicassoUnassigned, bj as PickupAddress, bi as PickupDetails, L as PickupMethod, j2 as PickupMethodWithLiterals, h6 as PickupReadyEmailSent, at as Placement, jE as PlacementWithLiterals, aH as PlainTextValue, cK as PlatformFee, cJ as PlatformFeeSummary, fN as PlatformPaging, fQ as PlatformPagingMetadata, fK as PlatformQuery, fL as PlatformQueryPagingMethodOneOf, eE as PreparePaymentCollectionRequest, dX as PreviewBuyerConfirmationEmailRequest, dY as PreviewBuyerConfirmationEmailResponse, dV as PreviewBuyerPaymentsReceivedEmailRequest, dW as PreviewBuyerPaymentsReceivedEmailResponse, dZ as PreviewBuyerPickupConfirmationEmailRequest, d_ as PreviewBuyerPickupConfirmationEmailResponse, dR as PreviewCancelEmailRequest, dS as PreviewCancelEmailResponse, dT as PreviewCancelRefundEmailRequest, dU as PreviewCancelRefundEmailResponse, dI as PreviewEmailByTypeRequest, dJ as PreviewEmailByTypeResponse, a5 as PreviewEmailType, jg as PreviewEmailTypeWithLiterals, dK as PreviewRefundEmailRequest, dQ as PreviewRefundEmailResponse, e1 as PreviewResendDownloadLinksEmailRequest, e2 as PreviewResendDownloadLinksEmailResponse, d$ as PreviewShippingConfirmationEmailRequest, e0 as PreviewShippingConfirmationEmailResponse, aZ as PriceDescription, b8 as PriceSummary, aB as ProductName, hc as PublicActivity, hd as PublicActivityContentOneOf, fS as QueryOrderRequest, fT as QueryOrderResponse, i9 as QuotesAddress, ak as Reason, jv as ReasonWithLiterals, cj as ReceiptCreated, ck as ReceiptCreatedReceiptInfoOneOf, cn as ReceiptSent, co as ReceiptSentReceiptInfoOneOf, jL as RecordManuallyCollectedPaymentApplicationErrors, eJ as RecordManuallyCollectedPaymentRequest, eK as RecordManuallyCollectedPaymentResponse, eF as RedirectUrls, fr as Refund, dL as RefundDetails, c1 as RefundInitiated, dM as RefundItem, fv as RefundItemsBreakdown, f5 as RefundSideEffects, ao as RefundStatus, ft as RefundStatusInfo, jz as RefundStatusWithLiterals, fs as RefundTransaction, eV as Refundability, eW as RefundabilityAdditionalRefundabilityInfoOneOf, ad as RefundableStatus, jo as RefundableStatusWithLiterals, c9 as RefundedAsStoreCredit, c2 as RefundedPayment, c3 as RefundedPaymentKindOneOf, cc as RegularPayment, fd as RegularPaymentDetails, fe as RegularPaymentDetailsPaymentMethodDetailsOneOf, cd as RegularPaymentPaymentMethodDetailsOneOf, c4 as RegularPaymentRefund, i3 as Reschedule, f6 as RestockInfo, f7 as RestockItem, ag as RestockType, jr as RestockTypeWithLiterals, c$ as RestoreInfo, bZ as SavedPaymentMethod, aa as ScheduledAction, jl as ScheduledActionWithLiterals, fU as SearchOrdersRequest, dn as SendBuyerConfirmationEmailRequest, dp as SendBuyerConfirmationEmailResponse, dq as SendBuyerPaymentsReceivedEmailRequest, dr as SendBuyerPaymentsReceivedEmailResponse, ds as SendBuyerPickupConfirmationEmailRequest, dt as SendBuyerPickupConfirmationEmailResponse, dw as SendBuyerShippingConfirmationEmailRequest, dx as SendBuyerShippingConfirmationEmailResponse, dC as SendCancelRefundEmailRequest, dD as SendCancelRefundEmailResponse, dA as SendMerchantOrderReceivedNotificationRequest, dB as SendMerchantOrderReceivedNotificationResponse, dG as SendMerchantOrderReceivedPushRequest, dH as SendMerchantOrderReceivedPushResponse, dE as SendRefundEmailRequest, dF as SendRefundEmailResponse, f1 as ServiceProperties, ef as ServiceProvisioned, eg as ServiceRemoved, iH as SetOrderNumberCounterOptions, cU as SetOrderNumberCounterRequest, cV as SetOrderNumberCounterResponse, h4 as ShippingAddressEdited, h0 as ShippingConfirmationEmailSent, bY as ShippingInformation, bX as ShippingInformationChange, bl as ShippingPrice, dP as ShippingRefund, bm as ShippingRegion, e6 as SiteCreated, a7 as SiteCreatedContext, ji as SiteCreatedContextWithLiterals, e8 as SiteDeleted, ei as SiteHardDeleted, ed as SiteMarkedAsTemplate, ee as SiteMarkedAsWixSite, eb as SitePublished, en as SitePurgedExternally, eh as SiteRenamed, e7 as SiteTransferred, ea as SiteUndeleted, ec as SiteUnpublished, em as SiteUrlChanged, ap as SortOrder, jA as SortOrderWithLiterals, fM as Sorting, io as Source, av as SourceType, jG as SourceTypeWithLiterals, ih as StandardDetails, a6 as State, jh as StateWithLiterals, bb as StreetAddress, ek as StudioAssigned, eu as StudioTwoAssigned, ev as StudioTwoUnassigned, el as StudioUnassigned, ig as Subdivision, au as SubdivisionType, jF as SubdivisionTypeWithLiterals, aU as SubscriptionDescription, z as SubscriptionFrequency, iX as SubscriptionFrequencyWithLiterals, aS as SubscriptionInfo, aV as SubscriptionSettings, aT as SubscriptionTitle, cA as TagList, cz as Tags, hZ as Task, h$ as TaskAction, i0 as TaskActionActionOneOf, h_ as TaskKey, bn as TaxSummary, a$ as TaxableAddress, b0 as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, iZ as TaxableAddressTypeWithLiterals, ir as TotalPrice, bW as TotalPriceChange, g$ as TrackingLinkAdded, gZ as TrackingNumberAdded, g_ as TrackingNumberEdited, ah as TransactionStatus, js as TransactionStatusWithLiterals, b3 as TranslatableString, bT as TranslatedValue, jO as TriggerRefundApplicationErrors, iL as TriggerRefundOptions, f3 as TriggerRefundRequest, f8 as TriggerRefundResponse, dm as TriggerReindexOrderRequest, di as TriggerReindexRequest, dj as TriggerReindexResponse, gw as UnArchiveOrderRequest, gx as UnArchiveOrderResponse, iP as UpdateActivityIdentifiers, hg as UpdateActivityRequest, hh as UpdateActivityResponse, gJ as UpdateBillingContactDetailsRequest, gK as UpdateBillingContactDetailsResponse, gF as UpdateBuyerEmailRequest, gG as UpdateBuyerEmailResponse, gC as UpdateBuyerInfoRequest, gE as UpdateBuyerInfoResponse, d7 as UpdateInternalDocumentsEvent, d8 as UpdateInternalDocumentsEventOperationOneOf, hk as UpdateLineItemsDescriptionLinesRequest, hm as UpdateLineItemsDescriptionLinesResponse, iO as UpdateOrderLineItem, iN as UpdateOrderLineItemIdentifiers, gL as UpdateOrderLineItemRequest, gM as UpdateOrderLineItemResponse, gN as UpdateOrderLineItemsRequest, gP as UpdateOrderLineItemsResponse, g1 as UpdateOrderRequest, g2 as UpdateOrderResponse, gH as UpdateOrderShippingAddressRequest, gI as UpdateOrderShippingAddressResponse, jP as UpdateOrderStatusApplicationErrors, hr as UpdateOrderStatusRequest, hs as UpdateOrderStatusResponse, ex as UserDomainMediaDisabled, ew as UserDomainMediaEnabled, hM as V1BulkMarkOrdersAsPaidRequest, hN as V1BulkMarkOrdersAsPaidResponse, hO as V1CreatePaymentGatewayOrderRequest, hP as V1CreatePaymentGatewayOrderResponse, ga as V1LineItemDelta, gb as V1LineItemDeltaDeltaOneOf, hJ as V1MarkOrderAsPaidRequest, hK as V1MarkOrderAsPaidResponse, cP as V1RestockItem, fk as V1ScheduledAction, bf as V1ShippingInformation, iC as Value, ax as ValueType, jI as ValueTypeWithLiterals, be as VatId, K as VatType, j1 as VatTypeWithLiterals, dg as VersionedDeleteByIdsOperation, dh as VersionedDocumentId, df as VersionedDocumentUpdateOperation, a4 as VersioningMode, jf as VersioningModeWithLiterals, fB as VoidAuthorizedPaymentsRequest, a3 as WebhookIdentityType, je as WebhookIdentityTypeWithLiterals, W as WeightUnit, j0 as WeightUnitWithLiterals, cl as WixReceipt, fp as WixReceiptInfo, es as WixelAssigned, et as WixelUnassigned } from './ecom-v1-order-orders.universal-DGvc5WHr.js';
4
4
 
5
5
  declare function preparePaymentCollection$1(httpClient: HttpClient): PreparePaymentCollectionSignature;
6
6
  interface PreparePaymentCollectionSignature {
@@ -35,6 +35,7 @@ __export(index_exports, {
35
35
  DeltaPaymentOptionType: () => DeltaPaymentOptionType,
36
36
  DepositType: () => DepositType,
37
37
  DescriptionLineType: () => DescriptionLineType,
38
+ DimensionsUnit: () => DimensionsUnit,
38
39
  DiscountReason: () => DiscountReason,
39
40
  DiscountType: () => DiscountType,
40
41
  DurationUnit: () => DurationUnit,
@@ -1790,6 +1791,16 @@ var DescriptionLineType = /* @__PURE__ */ ((DescriptionLineType2) => {
1790
1791
  DescriptionLineType2["COLOR"] = "COLOR";
1791
1792
  return DescriptionLineType2;
1792
1793
  })(DescriptionLineType || {});
1794
+ var DimensionsUnit = /* @__PURE__ */ ((DimensionsUnit2) => {
1795
+ DimensionsUnit2["UNKNOWN_DIMENSIONS_UNIT"] = "UNKNOWN_DIMENSIONS_UNIT";
1796
+ DimensionsUnit2["MM"] = "MM";
1797
+ DimensionsUnit2["CM"] = "CM";
1798
+ DimensionsUnit2["M"] = "M";
1799
+ DimensionsUnit2["IN"] = "IN";
1800
+ DimensionsUnit2["FT"] = "FT";
1801
+ DimensionsUnit2["YD"] = "YD";
1802
+ return DimensionsUnit2;
1803
+ })(DimensionsUnit || {});
1793
1804
  var ItemTypePreset = /* @__PURE__ */ ((ItemTypePreset2) => {
1794
1805
  ItemTypePreset2["UNRECOGNISED"] = "UNRECOGNISED";
1795
1806
  ItemTypePreset2["PHYSICAL"] = "PHYSICAL";
@@ -3985,6 +3996,7 @@ var onOrderPaymentStatusUpdated2 = (0, import_event_definition_modules.createEve
3985
3996
  DeltaPaymentOptionType,
3986
3997
  DepositType,
3987
3998
  DescriptionLineType,
3999
+ DimensionsUnit,
3988
4000
  DiscountReason,
3989
4001
  DiscountType,
3990
4002
  DurationUnit,