@wix/auto_sdk_ecom_orders 1.0.218 → 1.0.219

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