@wix/auto_sdk_ecom_orders 1.0.215 → 1.0.217

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