@wix/auto_sdk_ecom_orders 1.0.255 → 1.0.256

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-KHoi3OZ9.d.ts → ecom-v1-order-orders.universal-D7hLED8N.d.ts} +42 -2
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +23 -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 +23 -0
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +43 -3
  9. package/build/cjs/meta.js +23 -0
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{ecom-v1-order-orders.universal-KHoi3OZ9.d.mts → ecom-v1-order-orders.universal-D7hLED8N.d.mts} +42 -2
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +20 -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 +20 -0
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +43 -3
  19. package/build/es/meta.mjs +20 -0
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{ecom-v1-order-orders.universal-CbL5mXEV.d.ts → ecom-v1-order-orders.universal-SnDmdo04.d.ts} +42 -2
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +23 -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 +23 -0
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +43 -3
  29. package/build/internal/cjs/meta.js +23 -0
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{ecom-v1-order-orders.universal-CbL5mXEV.d.mts → ecom-v1-order-orders.universal-SnDmdo04.d.mts} +42 -2
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +20 -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 +20 -0
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +43 -3
  39. package/build/internal/es/meta.mjs +20 -0
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -5131,7 +5131,7 @@ interface OrderTransactions {
5131
5131
  */
5132
5132
  refunds?: Refund[];
5133
5133
  }
5134
- interface Payment extends PaymentPaymentDetailsOneOf, PaymentReceiptInfoOneOf {
5134
+ interface Payment extends PaymentPaymentDetailsOneOf, PaymentReceiptInfoOneOf, PaymentStatusDetailsOneOf {
5135
5135
  /** Regular payment details. */
5136
5136
  regularPaymentDetails?: RegularPaymentDetails;
5137
5137
  /** Gift card payment details. */
@@ -5168,6 +5168,9 @@ interface PaymentPaymentDetailsOneOf {
5168
5168
  /** @oneof */
5169
5169
  interface PaymentReceiptInfoOneOf {
5170
5170
  }
5171
+ /** @oneof */
5172
+ interface PaymentStatusDetailsOneOf {
5173
+ }
5171
5174
  interface RegularPaymentDetails extends RegularPaymentDetailsPaymentMethodDetailsOneOf {
5172
5175
  /** Credit card details. */
5173
5176
  creditCardDetails?: CreditCardPaymentMethodDetails;
@@ -5529,6 +5532,43 @@ declare enum PaymentStatus {
5529
5532
  }
5530
5533
  /** @enumType */
5531
5534
  type PaymentStatusWithLiterals = PaymentStatus | 'APPROVED' | 'PENDING' | 'PENDING_MERCHANT' | 'CANCELED' | 'DECLINED' | 'REFUNDED' | 'PARTIALLY_REFUNDED' | 'AUTHORIZED' | 'VOIDED';
5535
+ interface CanceledStatusDetails {
5536
+ reason?: CanceledReasonWithLiterals;
5537
+ }
5538
+ declare enum CanceledReason {
5539
+ /** Other payment with the same chargeCorrelationId failed before current payment started. */
5540
+ OTHER_PAYMENT_FAILURE = "OTHER_PAYMENT_FAILURE",
5541
+ /** Payment was not completed by user and expired. */
5542
+ EXPIRED = "EXPIRED"
5543
+ }
5544
+ /** @enumType */
5545
+ type CanceledReasonWithLiterals = CanceledReason | 'OTHER_PAYMENT_FAILURE' | 'EXPIRED';
5546
+ interface DeclinedStatusDetails {
5547
+ reason?: DeclinedReasonWithLiterals;
5548
+ }
5549
+ declare enum DeclinedReason {
5550
+ /** Corresponding charge failed. */
5551
+ CHARGE_FAILED = "CHARGE_FAILED",
5552
+ /** Payment details expired. */
5553
+ EXPIRED = "EXPIRED",
5554
+ /** Insufficient funds. */
5555
+ INSUFFICIENT_FUNDS = "INSUFFICIENT_FUNDS",
5556
+ /** Gift card was disabled before charge was attempted. */
5557
+ GIFT_CARD_DISABLED = "GIFT_CARD_DISABLED"
5558
+ }
5559
+ /** @enumType */
5560
+ type DeclinedReasonWithLiterals = DeclinedReason | 'CHARGE_FAILED' | 'EXPIRED' | 'INSUFFICIENT_FUNDS' | 'GIFT_CARD_DISABLED';
5561
+ interface VoidedStatusDetails {
5562
+ reason?: VoidedReasonWithLiterals;
5563
+ }
5564
+ declare enum VoidedReason {
5565
+ /** Payment was voided by merchant request. */
5566
+ MERCHANT_REQUEST = "MERCHANT_REQUEST",
5567
+ /** Other payment with the same chargeCorrelationId failed and caused rollback of all payments with same chargeCorrelationId. */
5568
+ OTHER_PAYMENT_FAILURE = "OTHER_PAYMENT_FAILURE"
5569
+ }
5570
+ /** @enumType */
5571
+ type VoidedReasonWithLiterals = VoidedReason | 'MERCHANT_REQUEST' | 'OTHER_PAYMENT_FAILURE';
5532
5572
  interface Refund {
5533
5573
  /**
5534
5574
  * Refund ID.
@@ -8769,4 +8809,4 @@ interface BulkUpdateOrderTagsOptions {
8769
8809
  unassignTags?: TagsTags;
8770
8810
  }
8771
8811
 
8772
- export { ActivityType as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PaymentOptionType as E, SubscriptionFrequency as F, type GetPaymentCollectabilityStatusResponse as G, ProductPeriodAlignment as H, ItemTypePreset as I, JurisdictionType as J, AdjustmentType as K, PaymentStatusEnumPaymentStatus as L, type MaskedOrder as M, FulfillmentStatus as N, type Order as O, type Price as P, VatType as Q, PickupMethod as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, OrderStatus as X, DiscountType as Y, DiscountReason as Z, LineItemQuantityChangeType as _, type PreparePaymentCollectionOptions as a, type SubscriptionTitle as a$, OrderActivityTypeEnumActivityType as a0, AttributionSource as a1, ChannelType as a2, AdditionalFeeSource as a3, OrderActionType as a4, SpecificItemsCouponBehavior as a5, ChargeType as a6, VersioningMode as a7, DeltaPaymentOptionType as a8, InventoryAction as a9, Placement as aA, SubdivisionType as aB, SourceType as aC, CustomFieldGroup as aD, ValueType as aE, DepositType as aF, InvoiceStatus as aG, type OrderLineItem as aH, type ProductName as aI, type CatalogReference as aJ, type DescriptionLine as aK, type DescriptionLineValueOneOf as aL, type DescriptionLineDescriptionLineValueOneOf as aM, type DescriptionLineName as aN, type PlainTextValue as aO, type Color as aP, type FocalPoint as aQ, type PhysicalProperties as aR, type Dimensions as aS, type ItemType as aT, type ItemTypeItemTypeDataOneOf as aU, type RestockLocation as aV, type ItemTaxFullDetails as aW, type LineItemTaxInfo as aX, type LineItemTaxBreakdown as aY, type DigitalFile as aZ, type SubscriptionInfo as a_, WebhookIdentityType as aa, PreviewEmailType as ab, State as ac, SiteCreatedContext as ad, Namespace as ae, DeleteStatus as af, Origin as ag, ScheduledAction as ah, DurationUnit as ai, PaymentCollectabilityStatus as aj, PredefinedPaymentMethod as ak, RefundableStatus as al, NonRefundableReason as am, ManuallyRefundableReason as an, RestockType as ao, TransactionStatus as ap, AuthorizationCaptureStatus as aq, AuthorizationVoidStatus as ar, Reason as as, ActionType as at, ChargebackStatus as au, MembershipPaymentStatus as av, PaymentStatus as aw, RefundStatus as ax, SortOrder as ay, OrderApprovalStrategy as az, type PreparePaymentCollectionResponse as b, type ManagedDiscount as b$, type SubscriptionDescription as b0, type SubscriptionSettings as b1, type FreeTrialPeriod as b2, type BillingSettings as b3, type BillingAdjustment as b4, type BillingAdjustmentPriceSummary as b5, type PriceDescription as b6, type LocationAndQuantity as b7, type TaxableAddress as b8, type TaxableAddressTaxableAddressDataOneOf as b9, type AppliedDiscountDiscountSourceOneOf as bA, type Coupon as bB, type MerchantDiscount as bC, type MerchantDiscountMerchantDiscountReasonOneOf as bD, type DiscountRule as bE, type DiscountRuleName as bF, type LineItemDiscount as bG, type ItemCombination as bH, type ItemCombinationLineItem as bI, type Activity as bJ, type ActivityContentOneOf as bK, type CustomActivity as bL, type MerchantComment as bM, type OrderRefunded as bN, type OrderCreatedFromExchange as bO, type NewExchangeOrderCreated as bP, type LineItemExchangeData as bQ, type DraftOrderChangesApplied as bR, type OrderChange as bS, type OrderChangeValueOneOf as bT, type LineItemChanges as bU, type LineItemQuantityChange as bV, type LineItemPriceChange as bW, type LineItemProductNameChange as bX, type LineItemDescriptionLineChange as bY, type LineItemModifiersChange as bZ, type ManagedLineItem as b_, type ExtendedFields as ba, type ModifierGroup as bb, type TranslatableString as bc, type ItemModifier as bd, type BuyerInfo as be, type BuyerInfoIdOneOf as bf, type CurrencyConversionDetails as bg, type PriceSummary as bh, type AddressWithContact as bi, type Address as bj, type StreetAddress as bk, type AddressLocation as bl, type FullAddressContactDetails as bm, type VatId as bn, type V1ShippingInformation as bo, type DeliveryLogistics as bp, type DeliveryLogisticsAddressOneOf as bq, type PickupDetails as br, type PickupAddress as bs, type DeliveryTimeSlot as bt, type ShippingPrice as bu, type ShippingRegion as bv, type TaxSummary as bw, type OrderTaxInfo as bx, type OrderTaxBreakdown as by, type AppliedDiscount as bz, type PreparePaymentCollectionApplicationErrors as c, type InternalDocumentUpdateByFilterOperation as c$, type TranslatedValue as c0, type LineItemAmount as c1, type ManagedAdditionalFee as c2, type TotalPriceChange as c3, type ShippingInformationChange as c4, type ShippingInformation as c5, type SavedPaymentMethod as c6, type AuthorizedPaymentCreated as c7, type AuthorizedPaymentCaptured as c8, type AuthorizedPaymentVoided as c9, type CreatedBy as cA, type CreatedByStringOneOf as cB, type ChannelInfo as cC, type CustomField as cD, type BalanceSummary as cE, type Balance as cF, type CashRounding as cG, type AdditionalFee as cH, type FulfillmentStatusesAggregate as cI, type Tags as cJ, type TagList as cK, type Location as cL, type OrderSettings as cM, type OrderSettingsAllowedActionsOneOf as cN, type OrderSettingsEditableByOneOf as cO, type CustomAllowedActions as cP, type OwnerApps as cQ, type FormInfo as cR, type FormIdentifier as cS, type PlatformFeeSummary as cT, type PlatformFee as cU, type UpdateInternalDocumentsEvent as cV, type UpdateInternalDocumentsEventOperationOneOf as cW, type InternalDocument as cX, type InternalDocumentUpdateOperation as cY, type DeleteByIdsOperation as cZ, type DeleteByFilterOperation as c_, type RefundInitiated as ca, type RefundedPayment as cb, type RefundedPaymentKindOneOf as cc, type RegularPaymentRefund as cd, type GiftCardPaymentRefund as ce, type MembershipPaymentRefund as cf, type PaymentRefunded as cg, type PaymentRefundFailed as ch, type RefundedAsStoreCredit as ci, type PaymentPending as cj, type PaymentPendingPaymentDetailsOneOf as ck, type RegularPayment as cl, type RegularPaymentPaymentMethodDetailsOneOf as cm, type CreditCardDetails as cn, type PaymentCanceled as co, type PaymentCanceledPaymentDetailsOneOf as cp, type PaymentDeclined as cq, type PaymentDeclinedPaymentDetailsOneOf as cr, type ReceiptCreated as cs, type ReceiptCreatedReceiptInfoOneOf as ct, type WixReceipt as cu, type ExternalReceipt as cv, type ReceiptSent as cw, type ReceiptSentReceiptInfoOneOf as cx, type ChargebackCreated as cy, type ChargebackReversed as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type BulkSendBuyerShippingConfirmationEmailsResponse as d$, type InternalUpdateExistingOperation as d0, type VersionedDocumentUpdateOperation as d1, type VersionedDeleteByIdsOperation as d2, type VersionedDocumentId as d3, type OrderApproved as d4, type OrdersExperiments as d5, type OrderRejectedEventOrderRejected as d6, type OrderItemsRestocked as d7, type V1RestockItem as d8, type OrderImported as d9, type ActionEvent as dA, type Empty as dB, type TriggerReindexOrderRequest as dC, type MessageEnvelope as dD, type IdentificationData as dE, type IdentificationDataIdOneOf as dF, type AccountInfo as dG, type ImportOrderRequest as dH, type ImportOrderResponse as dI, type SetOrderNumberCounterRequest as dJ, type SetOrderNumberCounterResponse as dK, type BulkDeleteImportedOrdersRequest as dL, type BulkDeleteImportedOrdersResponse as dM, type V1TriggerReindexRequest as dN, type V1TriggerReindexResponse as dO, type V1TriggerReindexOrderRequest as dP, type SendBuyerConfirmationEmailRequest as dQ, type SendBuyerConfirmationEmailResponse as dR, type SendBuyerPaymentsReceivedEmailRequest as dS, type SendBuyerPaymentsReceivedEmailResponse as dT, type SendBuyerPickupConfirmationEmailRequest as dU, type SendBuyerPickupConfirmationEmailResponse as dV, type BulkSendBuyerPickupConfirmationEmailsRequest as dW, type BulkSendBuyerPickupConfirmationEmailsResponse as dX, type SendBuyerShippingConfirmationEmailRequest as dY, type SendBuyerShippingConfirmationEmailResponse as dZ, type BulkSendBuyerShippingConfirmationEmailsRequest as d_, type ImportedOrderDeleted as da, type PaymentStatusUpdated as db, type FulfillmentStatusUpdated as dc, type OrderCanceledEventOrderCanceled as dd, type OrderDeltasCommitted as de, type CommittedDiffs as df, type CommittedDiffsShippingUpdateInfoOneOf as dg, type ItemChangedDetails as dh, type OrderLineItemChangedDetails as di, type LineItemDelta as dj, type LineItemDeltaDeltaOneOf as dk, type AppliedDiscountDelta as dl, type AppliedDiscountDeltaDeltaOneOf as dm, type AdditionalFeeDelta as dn, type AdditionalFeeDeltaDeltaOneOf as dp, type DraftOrderCommitSettings as dq, type InventoryUpdateDetails as dr, type TriggerReindexRequest as ds, type TriggerReindexResponse as dt, type DomainEvent as du, type DomainEventBodyOneOf as dv, type EntityCreatedEvent as dw, type RestoreInfo as dx, type EntityUpdatedEvent as dy, type EntityDeletedEvent as dz, type PaymentCapture as e, type UserDomainMediaDisabled as e$, type SendMerchantOrderReceivedNotificationRequest as e0, type SendMerchantOrderReceivedNotificationResponse as e1, type SendCancelRefundEmailRequest as e2, type SendCancelRefundEmailResponse as e3, type SendRefundEmailRequest as e4, type SendRefundEmailResponse as e5, type SendFulfillmentEmailRequest as e6, type SendFulfillmentEmailResponse as e7, type SendMerchantOrderReceivedPushRequest as e8, type SendMerchantOrderReceivedPushResponse as e9, type SiteCreated as eA, type SiteTransferred as eB, type SiteDeleted as eC, type DeleteContext as eD, type SiteUndeleted as eE, type SitePublished as eF, type SiteUnpublished as eG, type SiteMarkedAsTemplate as eH, type SiteMarkedAsWixSite as eI, type ServiceProvisioned as eJ, type ServiceRemoved as eK, type SiteRenamed as eL, type SiteHardDeleted as eM, type NamespaceChanged as eN, type StudioAssigned as eO, type StudioUnassigned as eP, type SiteUrlChanged as eQ, type SitePurgedExternally as eR, type OdeditorAssigned as eS, type OdeditorUnassigned as eT, type PicassoAssigned as eU, type PicassoUnassigned as eV, type WixelAssigned as eW, type WixelUnassigned as eX, type StudioTwoAssigned as eY, type StudioTwoUnassigned as eZ, type UserDomainMediaEnabled as e_, type PreviewEmailByTypeRequest as ea, type PreviewEmailByTypeResponse as eb, type PreviewRefundEmailRequest as ec, type RefundDetails as ed, type RefundItem as ee, type LineItemRefund as ef, type AdditionalFeeRefund as eg, type ShippingRefund as eh, type PreviewRefundEmailResponse as ei, type PreviewCancelEmailRequest as ej, type PreviewCancelEmailResponse as ek, type PreviewCancelRefundEmailRequest as el, type PreviewCancelRefundEmailResponse as em, type PreviewBuyerPaymentsReceivedEmailRequest as en, type PreviewBuyerPaymentsReceivedEmailResponse as eo, type PreviewBuyerConfirmationEmailRequest as ep, type PreviewBuyerConfirmationEmailResponse as eq, type PreviewBuyerPickupConfirmationEmailRequest as er, type PreviewBuyerPickupConfirmationEmailResponse as es, type PreviewShippingConfirmationEmailRequest as et, type PreviewShippingConfirmationEmailResponse as eu, type PreviewResendDownloadLinksEmailRequest as ev, type PreviewResendDownloadLinksEmailResponse as ew, type MetaSiteSpecialEvent as ex, type MetaSiteSpecialEventPayloadOneOf as ey, type Asset as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type RefundTransaction as f$, type EditorlessAssigned as f0, type EditorlessUnassigned as f1, type HasCustomEmailConfigurationsRequest as f2, type HasCustomEmailConfigurationsResponse as f3, type AddToAutomationMigrationPopulationRequest as f4, type AddToAutomationMigrationPopulationResponse as f5, type IsInAutomationMigrationPopulationRequest as f6, type IsInAutomationMigrationPopulationResponse as f7, type PreparePaymentCollectionRequest as f8, type RedirectUrls as f9, type ChargeMembershipsResponse as fA, type TriggerRefundRequest as fB, type PaymentRefund as fC, type RefundSideEffects as fD, type RestockInfo as fE, type RestockItem as fF, type TriggerRefundResponse as fG, type OrderTransactions as fH, type Payment as fI, type PaymentPaymentDetailsOneOf as fJ, type PaymentReceiptInfoOneOf as fK, type RegularPaymentDetails as fL, type RegularPaymentDetailsPaymentMethodDetailsOneOf as fM, type CreditCardPaymentMethodDetails as fN, type AuthorizationDetails as fO, type AuthorizationCapture as fP, type AuthorizationActionFailureDetails as fQ, type AuthorizationVoid as fR, type V1ScheduledAction as fS, type Chargeback as fT, type PaymentMethodName as fU, type GiftCardPaymentDetails as fV, type MembershipPaymentDetails as fW, type WixReceiptInfo as fX, type ExternalReceiptInfo as fY, type CashRoundingDetails as fZ, type Refund as f_, type DelayedCaptureSettings as fa, type Duration as fb, type GetPaymentCollectabilityStatusRequest as fc, type RecordManuallyCollectedPaymentRequest as fd, type UserDefinedPaymentMethodName as fe, type UserDefinedPaymentMethodNameKindOneOf as ff, type RecordManuallyCollectedPaymentResponse as fg, type MarkOrderAsPaidRequest as fh, type MarkOrderAsPaidResponse as fi, type BulkMarkOrdersAsPaidRequest as fj, type BulkMarkOrdersAsPaidResponse as fk, type BulkOrderResult as fl, type ItemMetadata as fm, type ApplicationError as fn, type BulkActionMetadata as fo, type GetRefundabilityStatusRequest as fp, type GetRefundabilityStatusResponse as fq, type Refundability as fr, type RefundabilityAdditionalRefundabilityInfoOneOf as fs, type CreatePaymentGatewayOrderRequest as ft, type ChargedBy as fu, type CreatePaymentGatewayOrderResponse as fv, type ChargeMembershipsRequest as fw, type MembershipChargeItem as fx, type MembershipName as fy, type ServiceProperties as fz, type GetOrderApplicationErrors as g, type UpdateBuyerEmailRequest as g$, type RefundStatusInfo as g0, type AggregatedRefundSummary as g1, type RefundItemsBreakdown as g2, type LineItemRefundSummary as g3, type CalculateRefundRequest as g4, type CalculateRefundItemRequest as g5, type CalculateRefundResponse as g6, type CalculateRefundItemResponse as g7, type VoidAuthorizedPaymentsRequest as g8, type CaptureAuthorizedPaymentsRequest as g9, type UpdateOrderRequest as gA, type UpdateOrderResponse as gB, type BulkUpdateOrdersRequest as gC, type CommitDeltasRequest as gD, type DraftOrderDiffs as gE, type DraftOrderDiffsShippingUpdateInfoOneOf as gF, type DraftOrderDiffsBuyerUpdateInfoOneOf as gG, type DraftOrderDiffsBillingUpdateInfoOneOf as gH, type DraftOrderDiffsRecipientUpdateInfoOneOf as gI, type V1LineItemDelta as gJ, type V1LineItemDeltaDeltaOneOf as gK, type CommitDeltasResponse as gL, type ArchiveOrderRequest as gM, type ArchiveOrderResponse as gN, type BulkArchiveOrdersRequest as gO, type BulkArchiveOrdersResponse as gP, type BulkArchiveOrdersByFilterRequest as gQ, type BulkArchiveOrdersByFilterResponse as gR, type UnArchiveOrderRequest as gS, type UnArchiveOrderResponse as gT, type BulkUnArchiveOrdersRequest as gU, type BulkUnArchiveOrdersResponse as gV, type BulkUnArchiveOrdersByFilterRequest as gW, type BulkUnArchiveOrdersByFilterResponse as gX, type UpdateBuyerInfoRequest as gY, type BuyerInfoUpdate as gZ, type UpdateBuyerInfoResponse as g_, type ChargeSavedPaymentMethodRequest as ga, type ChargeSavedPaymentMethodResponse as gb, type DiffmatokyPayload as gc, type ErrorInformation as gd, type GetOrderRequest as ge, type GetOrderResponse as gf, type InternalQueryOrdersRequest as gg, type PlatformQuery as gh, type PlatformQueryPagingMethodOneOf as gi, type Sorting as gj, type PlatformPaging as gk, type CursorPaging as gl, type InternalQueryOrdersResponse as gm, type PlatformPagingMetadata as gn, type Cursors as go, type QueryOrderRequest as gp, type QueryOrderResponse as gq, type SearchOrdersRequest as gr, type CursorSearch as gs, type CursorSearchPagingMethodOneOf as gt, type CursorPagingMetadata as gu, type CreateOrderRequest as gv, type OrderCreationSettings as gw, type OrderCreationSettingsEditableByOneOf as gx, type OrderCreateNotifications as gy, type CreateOrderResponse as gz, type OrderSearch as h, type BulkSetBusinessLocationResponse as h$, type UpdateBuyerEmailResponse as h0, type UpdateOrderShippingAddressRequest as h1, type UpdateOrderShippingAddressResponse as h2, type UpdateBillingContactDetailsRequest as h3, type UpdateBillingContactDetailsResponse as h4, type UpdateOrderLineItemRequest as h5, type UpdateOrderLineItemResponse as h6, type UpdateOrderLineItemsRequest as h7, type MaskedOrderLineItem as h8, type UpdateOrderLineItemsResponse as h9, type AddActivityResponse as hA, type AddActivitiesRequest as hB, type UpdateActivityRequest as hC, type UpdateActivityResponse as hD, type DeleteActivityRequest as hE, type DeleteActivityResponse as hF, type UpdateLineItemsDescriptionLinesRequest as hG, type LineItemUpdate as hH, type UpdateLineItemsDescriptionLinesResponse as hI, type MarkOrderAsSeenByHumanRequest as hJ, type MarkOrderAsSeenByHumanResponse as hK, type CancelOrderRequest as hL, type UpdateOrderStatusRequest as hM, type UpdateOrderStatusResponse as hN, type MarkAsFulfilledRequest as hO, type MarkAsFulfilledResponse as hP, type BulkMarkAsFulfilledRequest as hQ, type BulkMarkAsFulfilledResponse as hR, type BulkMarkAsFulfilledByFilterRequest as hS, type BulkMarkAsFulfilledByFilterResponse as hT, type MarkAsUnfulfilledRequest as hU, type MarkAsUnfulfilledResponse as hV, type BulkMarkAsUnfulfilledRequest as hW, type BulkMarkAsUnfulfilledResponse as hX, type BulkMarkAsUnfulfilledByFilterRequest as hY, type BulkMarkAsUnfulfilledByFilterResponse as hZ, type BulkSetBusinessLocationRequest as h_, type AddInternalActivityRequest as ha, type InternalActivity as hb, type InternalActivityContentOneOf as hc, type OrderPlaced as hd, type OrderPaid as he, type OrderFulfilled as hf, type OrderNotFulfilled as hg, type OrderCanceled as hh, type DownloadLinkSent as hi, type TrackingNumberAdded as hj, type TrackingNumberEdited as hk, type TrackingLinkAdded as hl, type ShippingConfirmationEmailSent as hm, type InvoiceAdded as hn, type InvoiceSent as ho, type FulfillerEmailSent as hp, type ShippingAddressEdited as hq, type EmailEdited as hr, type PickupReadyEmailSent as hs, type OrderPartiallyPaid as ht, type OrderPending as hu, type OrderRejected as hv, type AddInternalActivityResponse as hw, type AddActivityRequest as hx, type PublicActivity as hy, type PublicActivityContentOneOf as hz, type CreateOrderOptions as i, type BaseEventMetadata as i$, type BulkSetBusinessLocationResult as i0, type V1MarkOrderAsPaidRequest as i1, type V1MarkOrderAsPaidResponse as i2, type V1BulkMarkOrdersAsPaidRequest as i3, type V1BulkMarkOrdersAsPaidResponse as i4, type V1CreatePaymentGatewayOrderRequest as i5, type V1CreatePaymentGatewayOrderResponse as i6, type GetShipmentsRequest as i7, type GetShipmentsResponse as i8, type AggregateOrdersRequest as i9, type Phone as iA, type Company as iB, type CommonAddress as iC, type CommonAddressStreetOneOf as iD, type Subdivision as iE, type StandardDetails as iF, type InvoiceDates as iG, type LineItems as iH, type LineItem as iI, type BigDecimalWrapper as iJ, type LineItemTax as iK, type Source as iL, type LineItemMetaData as iM, type Locale as iN, type TotalPrice as iO, type ItemizedFee as iP, type Discount as iQ, type DiscountOneDiscountTypeOneOf as iR, type CalculatedTaxes as iS, type CalculatedTax as iT, type Payments as iU, type InvoicesPayment as iV, type MetaData as iW, type InvoiceDynamicPriceTotals as iX, type CustomFieldValue as iY, type Value as iZ, type Deposit as i_, type AggregateOrdersResponse as ia, type DecrementItemsQuantityRequest as ib, type DecrementData as ic, type DecrementItemsQuantityResponse as id, type BulkUpdateOrderTagsRequest as ie, type TagsTags as ig, type TagsTagList as ih, type BulkUpdateOrderTagsResult as ii, type SendOrderUpdatedDomainEventRequest as ij, type SendOrderUpdatedDomainEventResponse as ik, type Task as il, type TaskKey as im, type TaskAction as io, type TaskActionActionOneOf as ip, type Complete as iq, type Cancel as ir, type Reschedule as is, type InvoiceSentEvent as it, type IdAndVersion as iu, type InvoiceFields as iv, type Customer as iw, type Email as ix, type QuotesAddress as iy, type AddressDescription as iz, type CreateOrderApplicationErrors as j, type ActionTypeWithLiterals as j$, type EventMetadata as j0, type AccountInfoMetadata as j1, type SetOrderNumberCounterOptions as j2, type RecordManuallyCollectedPaymentOptions as j3, type PaymentCollectionMarkOrderAsPaidOptions as j4, type PaymentCollectionCreatePaymentGatewayOrderOptions as j5, type ChargeMembershipsOptions as j6, type TriggerRefundOptions as j7, type OrderSearchSpec as j8, type UpdateOrderLineItemIdentifiers as j9, type ChannelTypeWithLiterals as jA, type AdditionalFeeSourceWithLiterals as jB, type OrderActionTypeWithLiterals as jC, type SpecificItemsCouponBehaviorWithLiterals as jD, type ChargeTypeWithLiterals as jE, type VersioningModeWithLiterals as jF, type DeltaPaymentOptionTypeWithLiterals as jG, type InventoryActionWithLiterals as jH, type WebhookIdentityTypeWithLiterals as jI, type PreviewEmailTypeWithLiterals as jJ, type StateWithLiterals as jK, type SiteCreatedContextWithLiterals as jL, type NamespaceWithLiterals as jM, type DeleteStatusWithLiterals as jN, type OriginWithLiterals as jO, type ScheduledActionWithLiterals as jP, type DurationUnitWithLiterals as jQ, type PaymentCollectabilityStatusWithLiterals as jR, type PredefinedPaymentMethodWithLiterals as jS, type RefundableStatusWithLiterals as jT, type NonRefundableReasonWithLiterals as jU, type ManuallyRefundableReasonWithLiterals as jV, type RestockTypeWithLiterals as jW, type TransactionStatusWithLiterals as jX, type AuthorizationCaptureStatusWithLiterals as jY, type AuthorizationVoidStatusWithLiterals as jZ, type ReasonWithLiterals as j_, type UpdateOrderLineItem as ja, type UpdateActivityIdentifiers as jb, type DeleteActivityIdentifiers as jc, type AggregateOrdersOptions 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 ProductPeriodAlignmentWithLiterals as jl, type AdjustmentTypeWithLiterals as jm, type TaxableAddressTypeWithLiterals as jn, type PaymentStatusEnumPaymentStatusWithLiterals as jo, type FulfillmentStatusWithLiterals as jp, type WeightUnitWithLiterals as jq, type VatTypeWithLiterals as jr, type PickupMethodWithLiterals as js, type OrderStatusWithLiterals as jt, type DiscountTypeWithLiterals as ju, type DiscountReasonWithLiterals as jv, type LineItemQuantityChangeTypeWithLiterals as jw, type ActivityTypeWithLiterals as jx, type OrderActivityTypeEnumActivityTypeWithLiterals as jy, type AttributionSourceWithLiterals as jz, type UpdateOrderApplicationErrors as k, type ChargebackStatusWithLiterals as k0, type MembershipPaymentStatusWithLiterals as k1, type PaymentStatusWithLiterals as k2, type RefundStatusWithLiterals as k3, type SortOrderWithLiterals as k4, type OrderApprovalStrategyWithLiterals as k5, type PlacementWithLiterals as k6, type SubdivisionTypeWithLiterals as k7, type SourceTypeWithLiterals as k8, type CustomFieldGroupWithLiterals as k9, cancelOrder as kA, bulkUpdateOrderTags as kB, type ValueTypeWithLiterals as ka, type DepositTypeWithLiterals as kb, type InvoiceStatusWithLiterals as kc, type ImportOrderApplicationErrors as kd, type RecordManuallyCollectedPaymentApplicationErrors as ke, type PaymentCollectionMarkOrderAsPaidApplicationErrors as kf, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as kg, type TriggerRefundApplicationErrors as kh, type UpdateOrderStatusApplicationErrors as ki, type CommonSearchWithEntityContext as kj, onOrderApproved as kk, onOrderCanceled as kl, onOrderCommitted as km, onOrderCreated as kn, onOrderFulfilled as ko, onOrderPaymentStatusUpdated as kp, onOrderUpdated as kq, preparePaymentCollection as kr, getPaymentCollectabilityStatus as ks, voidAuthorizedPayments as kt, captureAuthorizedPayments as ku, getOrder as kv, createOrder as kw, updateOrder as kx, bulkUpdateOrders as ky, addActivities as kz, type BulkUpdateOrdersResponse as l, type AddActivitiesResponse as m, type CancelOrderOptions as n, type CancelOrderResponse as o, type CancelOrderApplicationErrors as p, type BulkUpdateOrderTagsOptions as q, type BulkUpdateOrderTagsResponse as r, type OrderApprovedEnvelope as s, type OrderCanceledEnvelope as t, type OrderCommittedEnvelope as u, type OrderCreatedEnvelope as v, type OrderFulfilledEnvelope as w, type OrderPaymentStatusUpdatedEnvelope as x, type OrderUpdatedEnvelope as y, DimensionsUnit as z };
8812
+ export { ActivityType as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PaymentOptionType as E, SubscriptionFrequency as F, type GetPaymentCollectabilityStatusResponse as G, ProductPeriodAlignment as H, ItemTypePreset as I, JurisdictionType as J, AdjustmentType as K, PaymentStatusEnumPaymentStatus as L, type MaskedOrder as M, FulfillmentStatus as N, type Order as O, type Price as P, VatType as Q, PickupMethod as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, OrderStatus as X, DiscountType as Y, DiscountReason as Z, LineItemQuantityChangeType as _, type PreparePaymentCollectionOptions as a, type LineItemTaxBreakdown as a$, OrderActivityTypeEnumActivityType as a0, AttributionSource as a1, ChannelType as a2, AdditionalFeeSource as a3, OrderActionType as a4, SpecificItemsCouponBehavior as a5, ChargeType as a6, VersioningMode as a7, DeltaPaymentOptionType as a8, InventoryAction as a9, RefundStatus as aA, SortOrder as aB, OrderApprovalStrategy as aC, Placement as aD, SubdivisionType as aE, SourceType as aF, CustomFieldGroup as aG, ValueType as aH, DepositType as aI, InvoiceStatus as aJ, type OrderLineItem as aK, type ProductName as aL, type CatalogReference as aM, type DescriptionLine as aN, type DescriptionLineValueOneOf as aO, type DescriptionLineDescriptionLineValueOneOf as aP, type DescriptionLineName as aQ, type PlainTextValue as aR, type Color as aS, type FocalPoint as aT, type PhysicalProperties as aU, type Dimensions as aV, type ItemType as aW, type ItemTypeItemTypeDataOneOf as aX, type RestockLocation as aY, type ItemTaxFullDetails as aZ, type LineItemTaxInfo as a_, WebhookIdentityType as aa, PreviewEmailType as ab, State as ac, SiteCreatedContext as ad, Namespace as ae, DeleteStatus as af, Origin as ag, ScheduledAction as ah, DurationUnit as ai, PaymentCollectabilityStatus as aj, PredefinedPaymentMethod as ak, RefundableStatus as al, NonRefundableReason as am, ManuallyRefundableReason as an, RestockType as ao, TransactionStatus as ap, AuthorizationCaptureStatus as aq, AuthorizationVoidStatus as ar, Reason as as, ActionType as at, ChargebackStatus as au, MembershipPaymentStatus as av, PaymentStatus as aw, CanceledReason as ax, DeclinedReason as ay, VoidedReason as az, type PreparePaymentCollectionResponse as b, type LineItemDescriptionLineChange as b$, type DigitalFile as b0, type SubscriptionInfo as b1, type SubscriptionTitle as b2, type SubscriptionDescription as b3, type SubscriptionSettings as b4, type FreeTrialPeriod as b5, type BillingSettings as b6, type BillingAdjustment as b7, type BillingAdjustmentPriceSummary as b8, type PriceDescription as b9, type OrderTaxInfo as bA, type OrderTaxBreakdown as bB, type AppliedDiscount as bC, type AppliedDiscountDiscountSourceOneOf as bD, type Coupon as bE, type MerchantDiscount as bF, type MerchantDiscountMerchantDiscountReasonOneOf as bG, type DiscountRule as bH, type DiscountRuleName as bI, type LineItemDiscount as bJ, type ItemCombination as bK, type ItemCombinationLineItem as bL, type Activity as bM, type ActivityContentOneOf as bN, type CustomActivity as bO, type MerchantComment as bP, type OrderRefunded as bQ, type OrderCreatedFromExchange as bR, type NewExchangeOrderCreated as bS, type LineItemExchangeData as bT, type DraftOrderChangesApplied as bU, type OrderChange as bV, type OrderChangeValueOneOf as bW, type LineItemChanges as bX, type LineItemQuantityChange as bY, type LineItemPriceChange as bZ, type LineItemProductNameChange as b_, 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 PreparePaymentCollectionApplicationErrors as c, type InternalDocumentUpdateOperation as c$, type LineItemModifiersChange as c0, type ManagedLineItem as c1, type ManagedDiscount as c2, type TranslatedValue as c3, type LineItemAmount as c4, type ManagedAdditionalFee as c5, type TotalPriceChange as c6, type ShippingInformationChange as c7, type ShippingInformation as c8, type SavedPaymentMethod as c9, type ReceiptSentReceiptInfoOneOf as cA, type ChargebackCreated as cB, type ChargebackReversed as cC, type CreatedBy as cD, type CreatedByStringOneOf as cE, type ChannelInfo as cF, type CustomField as cG, type BalanceSummary as cH, type Balance as cI, type CashRounding as cJ, type AdditionalFee as cK, type FulfillmentStatusesAggregate as cL, type Tags as cM, type TagList as cN, type Location as cO, type OrderSettings as cP, type OrderSettingsAllowedActionsOneOf as cQ, type OrderSettingsEditableByOneOf as cR, type CustomAllowedActions as cS, type OwnerApps as cT, type FormInfo as cU, type FormIdentifier as cV, type PlatformFeeSummary as cW, type PlatformFee as cX, type UpdateInternalDocumentsEvent as cY, type UpdateInternalDocumentsEventOperationOneOf as cZ, type InternalDocument as c_, 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 VoidAuthorizedPaymentsApplicationErrors as d, type SendBuyerShippingConfirmationEmailRequest as d$, type DeleteByIdsOperation as d0, type DeleteByFilterOperation as d1, type InternalDocumentUpdateByFilterOperation as d2, type InternalUpdateExistingOperation as d3, type VersionedDocumentUpdateOperation as d4, type VersionedDeleteByIdsOperation as d5, type VersionedDocumentId as d6, type OrderApproved as d7, type OrdersExperiments as d8, type OrderRejectedEventOrderRejected as d9, type RestoreInfo as dA, type EntityUpdatedEvent as dB, type EntityDeletedEvent as dC, type ActionEvent as dD, type Empty as dE, type TriggerReindexOrderRequest as dF, type MessageEnvelope as dG, type IdentificationData as dH, type IdentificationDataIdOneOf as dI, type AccountInfo as dJ, type ImportOrderRequest as dK, type ImportOrderResponse as dL, type SetOrderNumberCounterRequest as dM, type SetOrderNumberCounterResponse as dN, type BulkDeleteImportedOrdersRequest as dO, type BulkDeleteImportedOrdersResponse as dP, type V1TriggerReindexRequest as dQ, type V1TriggerReindexResponse as dR, type V1TriggerReindexOrderRequest as dS, type SendBuyerConfirmationEmailRequest as dT, type SendBuyerConfirmationEmailResponse as dU, type SendBuyerPaymentsReceivedEmailRequest as dV, type SendBuyerPaymentsReceivedEmailResponse as dW, type SendBuyerPickupConfirmationEmailRequest as dX, type SendBuyerPickupConfirmationEmailResponse as dY, type BulkSendBuyerPickupConfirmationEmailsRequest as dZ, type BulkSendBuyerPickupConfirmationEmailsResponse as d_, type OrderItemsRestocked as da, type V1RestockItem as db, type OrderImported as dc, type ImportedOrderDeleted as dd, type PaymentStatusUpdated as de, type FulfillmentStatusUpdated as df, type OrderCanceledEventOrderCanceled as dg, type OrderDeltasCommitted as dh, type CommittedDiffs as di, type CommittedDiffsShippingUpdateInfoOneOf as dj, type ItemChangedDetails as dk, type OrderLineItemChangedDetails as dl, type LineItemDelta as dm, type LineItemDeltaDeltaOneOf as dn, type AppliedDiscountDelta as dp, type AppliedDiscountDeltaDeltaOneOf as dq, type AdditionalFeeDelta as dr, type AdditionalFeeDeltaDeltaOneOf as ds, type DraftOrderCommitSettings as dt, type InventoryUpdateDetails as du, type TriggerReindexRequest as dv, type TriggerReindexResponse as dw, type DomainEvent as dx, type DomainEventBodyOneOf as dy, type EntityCreatedEvent as dz, type PaymentCapture as e, type StudioTwoAssigned as e$, type SendBuyerShippingConfirmationEmailResponse as e0, type BulkSendBuyerShippingConfirmationEmailsRequest as e1, type BulkSendBuyerShippingConfirmationEmailsResponse as e2, type SendMerchantOrderReceivedNotificationRequest as e3, type SendMerchantOrderReceivedNotificationResponse as e4, type SendCancelRefundEmailRequest as e5, type SendCancelRefundEmailResponse as e6, type SendRefundEmailRequest as e7, type SendRefundEmailResponse as e8, type SendFulfillmentEmailRequest as e9, type MetaSiteSpecialEvent as eA, type MetaSiteSpecialEventPayloadOneOf as eB, type Asset as eC, type SiteCreated as eD, type SiteTransferred as eE, type SiteDeleted as eF, type DeleteContext as eG, type SiteUndeleted as eH, type SitePublished as eI, type SiteUnpublished as eJ, type SiteMarkedAsTemplate as eK, type SiteMarkedAsWixSite as eL, type ServiceProvisioned as eM, type ServiceRemoved as eN, type SiteRenamed as eO, type SiteHardDeleted as eP, type NamespaceChanged as eQ, type StudioAssigned as eR, type StudioUnassigned as eS, type SiteUrlChanged as eT, type SitePurgedExternally as eU, type OdeditorAssigned as eV, type OdeditorUnassigned as eW, type PicassoAssigned as eX, type PicassoUnassigned as eY, type WixelAssigned as eZ, type WixelUnassigned as e_, type SendFulfillmentEmailResponse as ea, type SendMerchantOrderReceivedPushRequest as eb, type SendMerchantOrderReceivedPushResponse as ec, type PreviewEmailByTypeRequest as ed, type PreviewEmailByTypeResponse as ee, type PreviewRefundEmailRequest as ef, type RefundDetails as eg, type RefundItem as eh, type LineItemRefund as ei, type AdditionalFeeRefund as ej, type ShippingRefund as ek, type PreviewRefundEmailResponse as el, type PreviewCancelEmailRequest as em, type PreviewCancelEmailResponse as en, type PreviewCancelRefundEmailRequest as eo, type PreviewCancelRefundEmailResponse as ep, type PreviewBuyerPaymentsReceivedEmailRequest as eq, type PreviewBuyerPaymentsReceivedEmailResponse as er, type PreviewBuyerConfirmationEmailRequest as es, type PreviewBuyerConfirmationEmailResponse as et, type PreviewBuyerPickupConfirmationEmailRequest as eu, type PreviewBuyerPickupConfirmationEmailResponse as ev, type PreviewShippingConfirmationEmailRequest as ew, type PreviewShippingConfirmationEmailResponse as ex, type PreviewResendDownloadLinksEmailRequest as ey, type PreviewResendDownloadLinksEmailResponse as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type WixReceiptInfo as f$, type StudioTwoUnassigned as f0, type UserDomainMediaEnabled as f1, type UserDomainMediaDisabled as f2, type EditorlessAssigned as f3, type EditorlessUnassigned as f4, type HasCustomEmailConfigurationsRequest as f5, type HasCustomEmailConfigurationsResponse as f6, type AddToAutomationMigrationPopulationRequest as f7, type AddToAutomationMigrationPopulationResponse as f8, type IsInAutomationMigrationPopulationRequest as f9, type MembershipChargeItem as fA, type MembershipName as fB, type ServiceProperties as fC, type ChargeMembershipsResponse as fD, type TriggerRefundRequest as fE, type PaymentRefund as fF, type RefundSideEffects as fG, type RestockInfo as fH, type RestockItem as fI, type TriggerRefundResponse as fJ, type OrderTransactions as fK, type Payment as fL, type PaymentPaymentDetailsOneOf as fM, type PaymentReceiptInfoOneOf as fN, type PaymentStatusDetailsOneOf as fO, type RegularPaymentDetails as fP, type RegularPaymentDetailsPaymentMethodDetailsOneOf as fQ, type CreditCardPaymentMethodDetails as fR, type AuthorizationDetails as fS, type AuthorizationCapture as fT, type AuthorizationActionFailureDetails as fU, type AuthorizationVoid as fV, type V1ScheduledAction as fW, type Chargeback as fX, type PaymentMethodName as fY, type GiftCardPaymentDetails as fZ, type MembershipPaymentDetails as f_, type IsInAutomationMigrationPopulationResponse as fa, type PreparePaymentCollectionRequest as fb, type RedirectUrls as fc, type DelayedCaptureSettings as fd, type Duration as fe, type GetPaymentCollectabilityStatusRequest as ff, type RecordManuallyCollectedPaymentRequest as fg, type UserDefinedPaymentMethodName as fh, type UserDefinedPaymentMethodNameKindOneOf as fi, type RecordManuallyCollectedPaymentResponse as fj, type MarkOrderAsPaidRequest as fk, type MarkOrderAsPaidResponse as fl, type BulkMarkOrdersAsPaidRequest as fm, type BulkMarkOrdersAsPaidResponse as fn, type BulkOrderResult as fo, type ItemMetadata as fp, type ApplicationError as fq, type BulkActionMetadata as fr, type GetRefundabilityStatusRequest as fs, type GetRefundabilityStatusResponse as ft, type Refundability as fu, type RefundabilityAdditionalRefundabilityInfoOneOf as fv, type CreatePaymentGatewayOrderRequest as fw, type ChargedBy as fx, type CreatePaymentGatewayOrderResponse as fy, type ChargeMembershipsRequest as fz, type GetOrderApplicationErrors as g, type BulkUnArchiveOrdersRequest as g$, type ExternalReceiptInfo as g0, type CashRoundingDetails as g1, type CanceledStatusDetails as g2, type DeclinedStatusDetails as g3, type VoidedStatusDetails as g4, type Refund as g5, type RefundTransaction as g6, type RefundStatusInfo as g7, type AggregatedRefundSummary as g8, type RefundItemsBreakdown as g9, type CursorSearchPagingMethodOneOf as gA, type CursorPagingMetadata as gB, type CreateOrderRequest as gC, type OrderCreationSettings as gD, type OrderCreationSettingsEditableByOneOf as gE, type OrderCreateNotifications as gF, type CreateOrderResponse as gG, type UpdateOrderRequest as gH, type UpdateOrderResponse as gI, type BulkUpdateOrdersRequest as gJ, type CommitDeltasRequest as gK, type DraftOrderDiffs as gL, type DraftOrderDiffsShippingUpdateInfoOneOf as gM, type DraftOrderDiffsBuyerUpdateInfoOneOf as gN, type DraftOrderDiffsBillingUpdateInfoOneOf as gO, type DraftOrderDiffsRecipientUpdateInfoOneOf as gP, type V1LineItemDelta as gQ, type V1LineItemDeltaDeltaOneOf as gR, type CommitDeltasResponse as gS, type ArchiveOrderRequest as gT, type ArchiveOrderResponse as gU, type BulkArchiveOrdersRequest as gV, type BulkArchiveOrdersResponse as gW, type BulkArchiveOrdersByFilterRequest as gX, type BulkArchiveOrdersByFilterResponse as gY, type UnArchiveOrderRequest as gZ, type UnArchiveOrderResponse as g_, type LineItemRefundSummary as ga, type CalculateRefundRequest as gb, type CalculateRefundItemRequest as gc, type CalculateRefundResponse as gd, type CalculateRefundItemResponse as ge, type VoidAuthorizedPaymentsRequest as gf, type CaptureAuthorizedPaymentsRequest as gg, type ChargeSavedPaymentMethodRequest as gh, type ChargeSavedPaymentMethodResponse as gi, type DiffmatokyPayload as gj, type ErrorInformation as gk, type GetOrderRequest as gl, type GetOrderResponse as gm, type InternalQueryOrdersRequest as gn, type PlatformQuery as go, type PlatformQueryPagingMethodOneOf as gp, type Sorting as gq, type PlatformPaging as gr, type CursorPaging as gs, type InternalQueryOrdersResponse as gt, type PlatformPagingMetadata as gu, type Cursors as gv, type QueryOrderRequest as gw, type QueryOrderResponse as gx, type SearchOrdersRequest as gy, type CursorSearch as gz, type OrderSearch as h, type MarkAsUnfulfilledRequest as h$, type BulkUnArchiveOrdersResponse as h0, type BulkUnArchiveOrdersByFilterRequest as h1, type BulkUnArchiveOrdersByFilterResponse as h2, type UpdateBuyerInfoRequest as h3, type BuyerInfoUpdate as h4, type UpdateBuyerInfoResponse as h5, type UpdateBuyerEmailRequest as h6, type UpdateBuyerEmailResponse as h7, type UpdateOrderShippingAddressRequest as h8, type UpdateOrderShippingAddressResponse as h9, type OrderPartiallyPaid as hA, type OrderPending as hB, type OrderRejected as hC, type AddInternalActivityResponse as hD, type AddActivityRequest as hE, type PublicActivity as hF, type PublicActivityContentOneOf as hG, type AddActivityResponse as hH, type AddActivitiesRequest as hI, type UpdateActivityRequest as hJ, type UpdateActivityResponse as hK, type DeleteActivityRequest as hL, type DeleteActivityResponse as hM, type UpdateLineItemsDescriptionLinesRequest as hN, type LineItemUpdate as hO, type UpdateLineItemsDescriptionLinesResponse as hP, type MarkOrderAsSeenByHumanRequest as hQ, type MarkOrderAsSeenByHumanResponse as hR, type CancelOrderRequest as hS, type UpdateOrderStatusRequest as hT, type UpdateOrderStatusResponse as hU, type MarkAsFulfilledRequest as hV, type MarkAsFulfilledResponse as hW, type BulkMarkAsFulfilledRequest as hX, type BulkMarkAsFulfilledResponse as hY, type BulkMarkAsFulfilledByFilterRequest as hZ, type BulkMarkAsFulfilledByFilterResponse as h_, type UpdateBillingContactDetailsRequest as ha, type UpdateBillingContactDetailsResponse as hb, type UpdateOrderLineItemRequest as hc, type UpdateOrderLineItemResponse as hd, type UpdateOrderLineItemsRequest as he, type MaskedOrderLineItem as hf, type UpdateOrderLineItemsResponse as hg, type AddInternalActivityRequest as hh, type InternalActivity as hi, type InternalActivityContentOneOf as hj, type OrderPlaced as hk, type OrderPaid as hl, type OrderFulfilled as hm, type OrderNotFulfilled as hn, type OrderCanceled as ho, type DownloadLinkSent as hp, type TrackingNumberAdded as hq, type TrackingNumberEdited as hr, type TrackingLinkAdded as hs, type ShippingConfirmationEmailSent as ht, type InvoiceAdded as hu, type InvoiceSent as hv, type FulfillerEmailSent as hw, type ShippingAddressEdited as hx, type EmailEdited as hy, type PickupReadyEmailSent as hz, type CreateOrderOptions as i, type Payments as i$, type MarkAsUnfulfilledResponse as i0, type BulkMarkAsUnfulfilledRequest as i1, type BulkMarkAsUnfulfilledResponse as i2, type BulkMarkAsUnfulfilledByFilterRequest as i3, type BulkMarkAsUnfulfilledByFilterResponse as i4, type BulkSetBusinessLocationRequest as i5, type BulkSetBusinessLocationResponse as i6, type BulkSetBusinessLocationResult as i7, type V1MarkOrderAsPaidRequest as i8, type V1MarkOrderAsPaidResponse as i9, type InvoiceSentEvent as iA, type IdAndVersion as iB, type InvoiceFields as iC, type Customer as iD, type Email as iE, type QuotesAddress as iF, type AddressDescription as iG, type Phone as iH, type Company as iI, type CommonAddress as iJ, type CommonAddressStreetOneOf as iK, type Subdivision as iL, type StandardDetails as iM, type InvoiceDates as iN, type LineItems as iO, type LineItem as iP, type BigDecimalWrapper as iQ, type LineItemTax as iR, type Source as iS, type LineItemMetaData as iT, type Locale as iU, type TotalPrice as iV, type ItemizedFee as iW, type Discount as iX, type DiscountOneDiscountTypeOneOf as iY, type CalculatedTaxes as iZ, type CalculatedTax as i_, type V1BulkMarkOrdersAsPaidRequest as ia, type V1BulkMarkOrdersAsPaidResponse as ib, type V1CreatePaymentGatewayOrderRequest as ic, type V1CreatePaymentGatewayOrderResponse as id, type GetShipmentsRequest as ie, type GetShipmentsResponse as ig, type AggregateOrdersRequest as ih, type AggregateOrdersResponse as ii, type DecrementItemsQuantityRequest as ij, type DecrementData as ik, type DecrementItemsQuantityResponse as il, type BulkUpdateOrderTagsRequest as im, type TagsTags as io, type TagsTagList as ip, type BulkUpdateOrderTagsResult as iq, type SendOrderUpdatedDomainEventRequest as ir, type SendOrderUpdatedDomainEventResponse as is, type Task as it, type TaskKey as iu, type TaskAction as iv, type TaskActionActionOneOf as iw, type Complete as ix, type Cancel as iy, type Reschedule as iz, type CreateOrderApplicationErrors as j, type NonRefundableReasonWithLiterals as j$, type InvoicesPayment as j0, type MetaData as j1, type InvoiceDynamicPriceTotals as j2, type CustomFieldValue as j3, type Value as j4, type Deposit as j5, type BaseEventMetadata as j6, type EventMetadata as j7, type AccountInfoMetadata as j8, type SetOrderNumberCounterOptions as j9, type OrderStatusWithLiterals as jA, type DiscountTypeWithLiterals as jB, type DiscountReasonWithLiterals as jC, type LineItemQuantityChangeTypeWithLiterals as jD, type ActivityTypeWithLiterals as jE, type OrderActivityTypeEnumActivityTypeWithLiterals as jF, type AttributionSourceWithLiterals as jG, type ChannelTypeWithLiterals as jH, type AdditionalFeeSourceWithLiterals as jI, type OrderActionTypeWithLiterals as jJ, type SpecificItemsCouponBehaviorWithLiterals as jK, type ChargeTypeWithLiterals as jL, type VersioningModeWithLiterals as jM, type DeltaPaymentOptionTypeWithLiterals as jN, type InventoryActionWithLiterals as jO, type WebhookIdentityTypeWithLiterals as jP, type PreviewEmailTypeWithLiterals as jQ, type StateWithLiterals as jR, type SiteCreatedContextWithLiterals as jS, type NamespaceWithLiterals as jT, type DeleteStatusWithLiterals as jU, type OriginWithLiterals as jV, type ScheduledActionWithLiterals as jW, type DurationUnitWithLiterals as jX, type PaymentCollectabilityStatusWithLiterals as jY, type PredefinedPaymentMethodWithLiterals as jZ, type RefundableStatusWithLiterals as j_, type RecordManuallyCollectedPaymentOptions as ja, type PaymentCollectionMarkOrderAsPaidOptions as jb, type PaymentCollectionCreatePaymentGatewayOrderOptions as jc, type ChargeMembershipsOptions as jd, type TriggerRefundOptions as je, type OrderSearchSpec as jf, type UpdateOrderLineItemIdentifiers as jg, type UpdateOrderLineItem as jh, type UpdateActivityIdentifiers as ji, type DeleteActivityIdentifiers as jj, type AggregateOrdersOptions as jk, utils as jl, type DescriptionLineTypeWithLiterals as jm, type DimensionsUnitWithLiterals as jn, type ItemTypePresetWithLiterals as jo, type PaymentOptionTypeWithLiterals as jp, type JurisdictionTypeWithLiterals as jq, type SubscriptionFrequencyWithLiterals as jr, type ProductPeriodAlignmentWithLiterals as js, type AdjustmentTypeWithLiterals as jt, type TaxableAddressTypeWithLiterals as ju, type PaymentStatusEnumPaymentStatusWithLiterals as jv, type FulfillmentStatusWithLiterals as jw, type WeightUnitWithLiterals as jx, type VatTypeWithLiterals as jy, type PickupMethodWithLiterals as jz, type UpdateOrderApplicationErrors as k, type ManuallyRefundableReasonWithLiterals as k0, type RestockTypeWithLiterals as k1, type TransactionStatusWithLiterals as k2, type AuthorizationCaptureStatusWithLiterals as k3, type AuthorizationVoidStatusWithLiterals as k4, type ReasonWithLiterals as k5, type ActionTypeWithLiterals as k6, type ChargebackStatusWithLiterals as k7, type MembershipPaymentStatusWithLiterals as k8, type PaymentStatusWithLiterals as k9, onOrderUpdated as kA, preparePaymentCollection as kB, getPaymentCollectabilityStatus as kC, voidAuthorizedPayments as kD, captureAuthorizedPayments as kE, getOrder as kF, createOrder as kG, updateOrder as kH, bulkUpdateOrders as kI, addActivities as kJ, cancelOrder as kK, bulkUpdateOrderTags as kL, type CanceledReasonWithLiterals as ka, type DeclinedReasonWithLiterals as kb, type VoidedReasonWithLiterals as kc, type RefundStatusWithLiterals as kd, type SortOrderWithLiterals as ke, type OrderApprovalStrategyWithLiterals as kf, type PlacementWithLiterals as kg, type SubdivisionTypeWithLiterals as kh, type SourceTypeWithLiterals as ki, type CustomFieldGroupWithLiterals as kj, type ValueTypeWithLiterals as kk, type DepositTypeWithLiterals as kl, type InvoiceStatusWithLiterals as km, type ImportOrderApplicationErrors as kn, type RecordManuallyCollectedPaymentApplicationErrors as ko, type PaymentCollectionMarkOrderAsPaidApplicationErrors as kp, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as kq, type TriggerRefundApplicationErrors as kr, type UpdateOrderStatusApplicationErrors as ks, type CommonSearchWithEntityContext as kt, onOrderApproved as ku, onOrderCanceled as kv, onOrderCommitted as kw, onOrderCreated as kx, onOrderFulfilled as ky, onOrderPaymentStatusUpdated as kz, type BulkUpdateOrdersResponse as l, type AddActivitiesResponse as m, type CancelOrderOptions as n, type CancelOrderResponse as o, type CancelOrderApplicationErrors as p, type BulkUpdateOrderTagsOptions as q, type BulkUpdateOrderTagsResponse as r, type OrderApprovedEnvelope as s, type OrderCanceledEnvelope as t, type OrderCommittedEnvelope as u, type OrderCreatedEnvelope as v, type OrderFulfilledEnvelope as w, type OrderPaymentStatusUpdatedEnvelope as x, type OrderUpdatedEnvelope as y, DimensionsUnit as z };
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { P as Price, a as PreparePaymentCollectionOptions, b as PreparePaymentCollectionResponse, c as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, V as VoidAuthorizedPaymentsResponse, d as VoidAuthorizedPaymentsApplicationErrors, e as PaymentCapture, C as CaptureAuthorizedPaymentsResponse, f as CaptureAuthorizedPaymentsApplicationErrors, O as Order, g as GetOrderApplicationErrors, h as OrderSearch, S as SearchOrdersResponse, i as CreateOrderOptions, j as CreateOrderApplicationErrors, U as UpdateOrder, k as UpdateOrderApplicationErrors, M as MaskedOrder, B as BulkUpdateOrdersOptions, l as BulkUpdateOrdersResponse, A as AddActivitiesOptions, m as AddActivitiesResponse, n as CancelOrderOptions, o as CancelOrderResponse, p as CancelOrderApplicationErrors, q as BulkUpdateOrderTagsOptions, r as BulkUpdateOrderTagsResponse, s as OrderApprovedEnvelope, t as OrderCanceledEnvelope, u as OrderCommittedEnvelope, v as OrderCreatedEnvelope, w as OrderFulfilledEnvelope, x as OrderPaymentStatusUpdatedEnvelope, y as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-KHoi3OZ9.mjs';
3
- export { dG as AccountInfo, j1 as AccountInfoMetadata, dA as ActionEvent, at as ActionType, j$ as ActionTypeWithLiterals, bJ as Activity, bK as ActivityContentOneOf, $ as ActivityType, jx as ActivityTypeWithLiterals, hB as AddActivitiesRequest, hx as AddActivityRequest, hA as AddActivityResponse, ha as AddInternalActivityRequest, hw as AddInternalActivityResponse, f4 as AddToAutomationMigrationPopulationRequest, f5 as AddToAutomationMigrationPopulationResponse, cH as AdditionalFee, dn as AdditionalFeeDelta, dp as AdditionalFeeDeltaDeltaOneOf, eg as AdditionalFeeRefund, a3 as AdditionalFeeSource, jB as AdditionalFeeSourceWithLiterals, bj as Address, iz as AddressDescription, bl as AddressLocation, bi as AddressWithContact, K as AdjustmentType, jm as AdjustmentTypeWithLiterals, jd as AggregateOrdersOptions, i9 as AggregateOrdersRequest, ia as AggregateOrdersResponse, g1 as AggregatedRefundSummary, fn as ApplicationError, bz as AppliedDiscount, dl as AppliedDiscountDelta, dm as AppliedDiscountDeltaDeltaOneOf, bA as AppliedDiscountDiscountSourceOneOf, gM as ArchiveOrderRequest, gN as ArchiveOrderResponse, ez as Asset, a1 as AttributionSource, jz as AttributionSourceWithLiterals, fQ as AuthorizationActionFailureDetails, fP as AuthorizationCapture, aq as AuthorizationCaptureStatus, jY as AuthorizationCaptureStatusWithLiterals, fO as AuthorizationDetails, fR as AuthorizationVoid, ar as AuthorizationVoidStatus, jZ as AuthorizationVoidStatusWithLiterals, c8 as AuthorizedPaymentCaptured, c7 as AuthorizedPaymentCreated, c9 as AuthorizedPaymentVoided, cF as Balance, cE as BalanceSummary, i$ as BaseEventMetadata, iJ as BigDecimalWrapper, b4 as BillingAdjustment, b5 as BillingAdjustmentPriceSummary, b3 as BillingSettings, fo as BulkActionMetadata, gQ as BulkArchiveOrdersByFilterRequest, gR as BulkArchiveOrdersByFilterResponse, gO as BulkArchiveOrdersRequest, gP as BulkArchiveOrdersResponse, dL as BulkDeleteImportedOrdersRequest, dM as BulkDeleteImportedOrdersResponse, hS as BulkMarkAsFulfilledByFilterRequest, hT as BulkMarkAsFulfilledByFilterResponse, hQ as BulkMarkAsFulfilledRequest, hR as BulkMarkAsFulfilledResponse, hY as BulkMarkAsUnfulfilledByFilterRequest, hZ as BulkMarkAsUnfulfilledByFilterResponse, hW as BulkMarkAsUnfulfilledRequest, hX as BulkMarkAsUnfulfilledResponse, fj as BulkMarkOrdersAsPaidRequest, fk as BulkMarkOrdersAsPaidResponse, fl as BulkOrderResult, dW as BulkSendBuyerPickupConfirmationEmailsRequest, dX as BulkSendBuyerPickupConfirmationEmailsResponse, d_ as BulkSendBuyerShippingConfirmationEmailsRequest, d$ as BulkSendBuyerShippingConfirmationEmailsResponse, h_ as BulkSetBusinessLocationRequest, h$ as BulkSetBusinessLocationResponse, i0 as BulkSetBusinessLocationResult, gW as BulkUnArchiveOrdersByFilterRequest, gX as BulkUnArchiveOrdersByFilterResponse, gU as BulkUnArchiveOrdersRequest, gV as BulkUnArchiveOrdersResponse, ie as BulkUpdateOrderTagsRequest, ii as BulkUpdateOrderTagsResult, gC as BulkUpdateOrdersRequest, be as BuyerInfo, bf as BuyerInfoIdOneOf, gZ as BuyerInfoUpdate, g5 as CalculateRefundItemRequest, g7 as CalculateRefundItemResponse, g4 as CalculateRefundRequest, g6 as CalculateRefundResponse, iT as CalculatedTax, iS as CalculatedTaxes, ir as Cancel, hL as CancelOrderRequest, g9 as CaptureAuthorizedPaymentsRequest, cG as CashRounding, fZ as CashRoundingDetails, aJ as CatalogReference, cC as ChannelInfo, a2 as ChannelType, jA as ChannelTypeWithLiterals, j6 as ChargeMembershipsOptions, fw as ChargeMembershipsRequest, fA as ChargeMembershipsResponse, ga as ChargeSavedPaymentMethodRequest, gb as ChargeSavedPaymentMethodResponse, a6 as ChargeType, jE as ChargeTypeWithLiterals, fT as Chargeback, cy as ChargebackCreated, cz as ChargebackReversed, au as ChargebackStatus, k0 as ChargebackStatusWithLiterals, fu as ChargedBy, aP as Color, gD as CommitDeltasRequest, gL as CommitDeltasResponse, df as CommittedDiffs, dg as CommittedDiffsShippingUpdateInfoOneOf, iC as CommonAddress, iD as CommonAddressStreetOneOf, kj as CommonSearchWithEntityContext, iB as Company, iq as Complete, bB as Coupon, gv as CreateOrderRequest, gz as CreateOrderResponse, ft as CreatePaymentGatewayOrderRequest, fv as CreatePaymentGatewayOrderResponse, cA as CreatedBy, cB as CreatedByStringOneOf, cn as CreditCardDetails, fN as CreditCardPaymentMethodDetails, bg as CurrencyConversionDetails, gl as CursorPaging, gu as CursorPagingMetadata, gs as CursorSearch, gt as CursorSearchPagingMethodOneOf, go as Cursors, bL as CustomActivity, cP as CustomAllowedActions, cD as CustomField, aD as CustomFieldGroup, k9 as CustomFieldGroupWithLiterals, iY as CustomFieldValue, iw as Customer, ic as DecrementData, ib as DecrementItemsQuantityRequest, id as DecrementItemsQuantityResponse, fa as DelayedCaptureSettings, jc as DeleteActivityIdentifiers, hE as DeleteActivityRequest, hF as DeleteActivityResponse, c_ as DeleteByFilterOperation, cZ as DeleteByIdsOperation, eD as DeleteContext, af as DeleteStatus, jN as DeleteStatusWithLiterals, bp as DeliveryLogistics, bq as DeliveryLogisticsAddressOneOf, bt as DeliveryTimeSlot, a8 as DeltaPaymentOptionType, jG as DeltaPaymentOptionTypeWithLiterals, i_ as Deposit, aF as DepositType, kb as DepositTypeWithLiterals, aK as DescriptionLine, aM as DescriptionLineDescriptionLineValueOneOf, aN as DescriptionLineName, D as DescriptionLineType, jf as DescriptionLineTypeWithLiterals, aL as DescriptionLineValueOneOf, gc as DiffmatokyPayload, aZ as DigitalFile, aS as Dimensions, z as DimensionsUnit, jg as DimensionsUnitWithLiterals, iQ as Discount, iR as DiscountOneDiscountTypeOneOf, Z as DiscountReason, jv as DiscountReasonWithLiterals, bE as DiscountRule, bF as DiscountRuleName, Y as DiscountType, ju as DiscountTypeWithLiterals, du as DomainEvent, dv as DomainEventBodyOneOf, hi as DownloadLinkSent, bR as DraftOrderChangesApplied, dq as DraftOrderCommitSettings, gE as DraftOrderDiffs, gH as DraftOrderDiffsBillingUpdateInfoOneOf, gG as DraftOrderDiffsBuyerUpdateInfoOneOf, gI as DraftOrderDiffsRecipientUpdateInfoOneOf, gF as DraftOrderDiffsShippingUpdateInfoOneOf, fb as Duration, ai as DurationUnit, jQ as DurationUnitWithLiterals, f0 as EditorlessAssigned, f1 as EditorlessUnassigned, ix as Email, hr as EmailEdited, dB as Empty, dw as EntityCreatedEvent, dz as EntityDeletedEvent, dy as EntityUpdatedEvent, gd as ErrorInformation, j0 as EventMetadata, ba as ExtendedFields, cv as ExternalReceipt, fY as ExternalReceiptInfo, aQ as FocalPoint, cS as FormIdentifier, cR as FormInfo, b2 as FreeTrialPeriod, hp as FulfillerEmailSent, N as FulfillmentStatus, dc as FulfillmentStatusUpdated, jp as FulfillmentStatusWithLiterals, cI as FulfillmentStatusesAggregate, bm as FullAddressContactDetails, ge as GetOrderRequest, gf as GetOrderResponse, fc as GetPaymentCollectabilityStatusRequest, fp as GetRefundabilityStatusRequest, fq as GetRefundabilityStatusResponse, i7 as GetShipmentsRequest, i8 as GetShipmentsResponse, fV as GiftCardPaymentDetails, ce as GiftCardPaymentRefund, f2 as HasCustomEmailConfigurationsRequest, f3 as HasCustomEmailConfigurationsResponse, iu as IdAndVersion, dE as IdentificationData, dF as IdentificationDataIdOneOf, kd as ImportOrderApplicationErrors, dH as ImportOrderRequest, dI as ImportOrderResponse, da as ImportedOrderDeleted, hb as InternalActivity, hc as InternalActivityContentOneOf, cX as InternalDocument, c$ as InternalDocumentUpdateByFilterOperation, cY as InternalDocumentUpdateOperation, gg as InternalQueryOrdersRequest, gm as InternalQueryOrdersResponse, d0 as InternalUpdateExistingOperation, a9 as InventoryAction, jH as InventoryActionWithLiterals, dr as InventoryUpdateDetails, hn as InvoiceAdded, iG as InvoiceDates, iX as InvoiceDynamicPriceTotals, iv as InvoiceFields, ho as InvoiceSent, it as InvoiceSentEvent, aG as InvoiceStatus, kc as InvoiceStatusWithLiterals, iV as InvoicesPayment, f6 as IsInAutomationMigrationPopulationRequest, f7 as IsInAutomationMigrationPopulationResponse, dh as ItemChangedDetails, bH as ItemCombination, bI as ItemCombinationLineItem, fm as ItemMetadata, bd as ItemModifier, aW as ItemTaxFullDetails, aT as ItemType, aU as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, jh as ItemTypePresetWithLiterals, iP as ItemizedFee, J as JurisdictionType, jj as JurisdictionTypeWithLiterals, iI as LineItem, c1 as LineItemAmount, bU as LineItemChanges, dj as LineItemDelta, dk as LineItemDeltaDeltaOneOf, bY as LineItemDescriptionLineChange, bG as LineItemDiscount, bQ as LineItemExchangeData, iM as LineItemMetaData, bZ as LineItemModifiersChange, bW as LineItemPriceChange, bX as LineItemProductNameChange, bV as LineItemQuantityChange, _ as LineItemQuantityChangeType, jw as LineItemQuantityChangeTypeWithLiterals, ef as LineItemRefund, g3 as LineItemRefundSummary, iK as LineItemTax, aY as LineItemTaxBreakdown, aX as LineItemTaxInfo, hH as LineItemUpdate, iH as LineItems, iN as Locale, cL as Location, b7 as LocationAndQuantity, c2 as ManagedAdditionalFee, b$ as ManagedDiscount, b_ as ManagedLineItem, an as ManuallyRefundableReason, jV as ManuallyRefundableReasonWithLiterals, hO as MarkAsFulfilledRequest, hP as MarkAsFulfilledResponse, hU as MarkAsUnfulfilledRequest, hV as MarkAsUnfulfilledResponse, fh as MarkOrderAsPaidRequest, fi as MarkOrderAsPaidResponse, hJ as MarkOrderAsSeenByHumanRequest, hK as MarkOrderAsSeenByHumanResponse, h8 as MaskedOrderLineItem, fx as MembershipChargeItem, fy as MembershipName, fW as MembershipPaymentDetails, cf as MembershipPaymentRefund, av as MembershipPaymentStatus, k1 as MembershipPaymentStatusWithLiterals, bM as MerchantComment, bC as MerchantDiscount, bD as MerchantDiscountMerchantDiscountReasonOneOf, dD as MessageEnvelope, iW as MetaData, ex as MetaSiteSpecialEvent, ey as MetaSiteSpecialEventPayloadOneOf, bb as ModifierGroup, ae as Namespace, eN as NamespaceChanged, jM as NamespaceWithLiterals, bP as NewExchangeOrderCreated, am as NonRefundableReason, jU as NonRefundableReasonWithLiterals, eS as OdeditorAssigned, eT as OdeditorUnassigned, a4 as OrderActionType, jC as OrderActionTypeWithLiterals, a0 as OrderActivityTypeEnumActivityType, jy as OrderActivityTypeEnumActivityTypeWithLiterals, az as OrderApprovalStrategy, k5 as OrderApprovalStrategyWithLiterals, d4 as OrderApproved, hh as OrderCanceled, dd as OrderCanceledEventOrderCanceled, bS as OrderChange, bT as OrderChangeValueOneOf, gy as OrderCreateNotifications, bO as OrderCreatedFromExchange, gw as OrderCreationSettings, gx as OrderCreationSettingsEditableByOneOf, de as OrderDeltasCommitted, hf as OrderFulfilled, d9 as OrderImported, d7 as OrderItemsRestocked, aH as OrderLineItem, di as OrderLineItemChangedDetails, hg as OrderNotFulfilled, he as OrderPaid, ht as OrderPartiallyPaid, hu as OrderPending, hd as OrderPlaced, bN as OrderRefunded, hv as OrderRejected, d6 as OrderRejectedEventOrderRejected, j8 as OrderSearchSpec, cM as OrderSettings, cN as OrderSettingsAllowedActionsOneOf, cO as OrderSettingsEditableByOneOf, X as OrderStatus, jt as OrderStatusWithLiterals, by as OrderTaxBreakdown, bx as OrderTaxInfo, fH as OrderTransactions, d5 as OrdersExperiments, ag as Origin, jO as OriginWithLiterals, cQ as OwnerApps, fI as Payment, co as PaymentCanceled, cp as PaymentCanceledPaymentDetailsOneOf, aj as PaymentCollectabilityStatus, jR as PaymentCollectabilityStatusWithLiterals, kg as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, j5 as PaymentCollectionCreatePaymentGatewayOrderOptions, kf as PaymentCollectionMarkOrderAsPaidApplicationErrors, j4 as PaymentCollectionMarkOrderAsPaidOptions, cq as PaymentDeclined, cr as PaymentDeclinedPaymentDetailsOneOf, fU as PaymentMethodName, E as PaymentOptionType, ji as PaymentOptionTypeWithLiterals, fJ as PaymentPaymentDetailsOneOf, cj as PaymentPending, ck as PaymentPendingPaymentDetailsOneOf, fK as PaymentReceiptInfoOneOf, fC as PaymentRefund, ch as PaymentRefundFailed, cg as PaymentRefunded, aw as PaymentStatus, L as PaymentStatusEnumPaymentStatus, jo as PaymentStatusEnumPaymentStatusWithLiterals, db as PaymentStatusUpdated, k2 as PaymentStatusWithLiterals, iU as Payments, iA as Phone, aR as PhysicalProperties, eU as PicassoAssigned, eV as PicassoUnassigned, bs as PickupAddress, br as PickupDetails, R as PickupMethod, js as PickupMethodWithLiterals, hs as PickupReadyEmailSent, aA as Placement, k6 as PlacementWithLiterals, aO as PlainTextValue, cU as PlatformFee, cT as PlatformFeeSummary, gk as PlatformPaging, gn as PlatformPagingMetadata, gh as PlatformQuery, gi as PlatformQueryPagingMethodOneOf, ak as PredefinedPaymentMethod, jS as PredefinedPaymentMethodWithLiterals, f8 as PreparePaymentCollectionRequest, ep as PreviewBuyerConfirmationEmailRequest, eq as PreviewBuyerConfirmationEmailResponse, en as PreviewBuyerPaymentsReceivedEmailRequest, eo as PreviewBuyerPaymentsReceivedEmailResponse, er as PreviewBuyerPickupConfirmationEmailRequest, es as PreviewBuyerPickupConfirmationEmailResponse, ej as PreviewCancelEmailRequest, ek as PreviewCancelEmailResponse, el as PreviewCancelRefundEmailRequest, em as PreviewCancelRefundEmailResponse, ea as PreviewEmailByTypeRequest, eb as PreviewEmailByTypeResponse, ab as PreviewEmailType, jJ as PreviewEmailTypeWithLiterals, ec as PreviewRefundEmailRequest, ei as PreviewRefundEmailResponse, ev as PreviewResendDownloadLinksEmailRequest, ew as PreviewResendDownloadLinksEmailResponse, et as PreviewShippingConfirmationEmailRequest, eu as PreviewShippingConfirmationEmailResponse, b6 as PriceDescription, bh as PriceSummary, aI as ProductName, H as ProductPeriodAlignment, jl as ProductPeriodAlignmentWithLiterals, hy as PublicActivity, hz as PublicActivityContentOneOf, gp as QueryOrderRequest, gq as QueryOrderResponse, iy as QuotesAddress, as as Reason, j_ as ReasonWithLiterals, cs as ReceiptCreated, ct as ReceiptCreatedReceiptInfoOneOf, cw as ReceiptSent, cx as ReceiptSentReceiptInfoOneOf, ke as RecordManuallyCollectedPaymentApplicationErrors, j3 as RecordManuallyCollectedPaymentOptions, fd as RecordManuallyCollectedPaymentRequest, fg as RecordManuallyCollectedPaymentResponse, f9 as RedirectUrls, f_ as Refund, ed as RefundDetails, ca as RefundInitiated, ee as RefundItem, g2 as RefundItemsBreakdown, fD as RefundSideEffects, ax as RefundStatus, g0 as RefundStatusInfo, k3 as RefundStatusWithLiterals, f$ as RefundTransaction, fr as Refundability, fs as RefundabilityAdditionalRefundabilityInfoOneOf, al as RefundableStatus, jT as RefundableStatusWithLiterals, ci as RefundedAsStoreCredit, cb as RefundedPayment, cc as RefundedPaymentKindOneOf, cl as RegularPayment, fL as RegularPaymentDetails, fM as RegularPaymentDetailsPaymentMethodDetailsOneOf, cm as RegularPaymentPaymentMethodDetailsOneOf, cd as RegularPaymentRefund, is as Reschedule, fE as RestockInfo, fF as RestockItem, aV as RestockLocation, ao as RestockType, jW as RestockTypeWithLiterals, dx as RestoreInfo, c6 as SavedPaymentMethod, ah as ScheduledAction, jP as ScheduledActionWithLiterals, gr as SearchOrdersRequest, dQ as SendBuyerConfirmationEmailRequest, dR as SendBuyerConfirmationEmailResponse, dS as SendBuyerPaymentsReceivedEmailRequest, dT as SendBuyerPaymentsReceivedEmailResponse, dU as SendBuyerPickupConfirmationEmailRequest, dV as SendBuyerPickupConfirmationEmailResponse, dY as SendBuyerShippingConfirmationEmailRequest, dZ as SendBuyerShippingConfirmationEmailResponse, e2 as SendCancelRefundEmailRequest, e3 as SendCancelRefundEmailResponse, e6 as SendFulfillmentEmailRequest, e7 as SendFulfillmentEmailResponse, e0 as SendMerchantOrderReceivedNotificationRequest, e1 as SendMerchantOrderReceivedNotificationResponse, e8 as SendMerchantOrderReceivedPushRequest, e9 as SendMerchantOrderReceivedPushResponse, ij as SendOrderUpdatedDomainEventRequest, ik as SendOrderUpdatedDomainEventResponse, e4 as SendRefundEmailRequest, e5 as SendRefundEmailResponse, fz as ServiceProperties, eJ as ServiceProvisioned, eK as ServiceRemoved, j2 as SetOrderNumberCounterOptions, dJ as SetOrderNumberCounterRequest, dK as SetOrderNumberCounterResponse, hq as ShippingAddressEdited, hm as ShippingConfirmationEmailSent, c5 as ShippingInformation, c4 as ShippingInformationChange, bu as ShippingPrice, eh as ShippingRefund, bv as ShippingRegion, eA as SiteCreated, ad as SiteCreatedContext, jL as SiteCreatedContextWithLiterals, eC as SiteDeleted, eM as SiteHardDeleted, eH as SiteMarkedAsTemplate, eI as SiteMarkedAsWixSite, eF as SitePublished, eR as SitePurgedExternally, eL as SiteRenamed, eB as SiteTransferred, eE as SiteUndeleted, eG as SiteUnpublished, eQ as SiteUrlChanged, ay as SortOrder, k4 as SortOrderWithLiterals, gj as Sorting, iL as Source, aC as SourceType, k8 as SourceTypeWithLiterals, a5 as SpecificItemsCouponBehavior, jD as SpecificItemsCouponBehaviorWithLiterals, iF as StandardDetails, ac as State, jK as StateWithLiterals, bk as StreetAddress, eO as StudioAssigned, eY as StudioTwoAssigned, eZ as StudioTwoUnassigned, eP as StudioUnassigned, iE as Subdivision, aB as SubdivisionType, k7 as SubdivisionTypeWithLiterals, b0 as SubscriptionDescription, F as SubscriptionFrequency, jk as SubscriptionFrequencyWithLiterals, a_ as SubscriptionInfo, b1 as SubscriptionSettings, a$ as SubscriptionTitle, cK as TagList, cJ as Tags, ih as TagsTagList, ig as TagsTags, il as Task, io as TaskAction, ip as TaskActionActionOneOf, im as TaskKey, bw as TaxSummary, b8 as TaxableAddress, b9 as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, jn as TaxableAddressTypeWithLiterals, iO as TotalPrice, c3 as TotalPriceChange, hl as TrackingLinkAdded, hj as TrackingNumberAdded, hk as TrackingNumberEdited, ap as TransactionStatus, jX as TransactionStatusWithLiterals, bc as TranslatableString, c0 as TranslatedValue, kh as TriggerRefundApplicationErrors, j7 as TriggerRefundOptions, fB as TriggerRefundRequest, fG as TriggerRefundResponse, dC as TriggerReindexOrderRequest, ds as TriggerReindexRequest, dt as TriggerReindexResponse, gS as UnArchiveOrderRequest, gT as UnArchiveOrderResponse, jb as UpdateActivityIdentifiers, hC as UpdateActivityRequest, hD as UpdateActivityResponse, h3 as UpdateBillingContactDetailsRequest, h4 as UpdateBillingContactDetailsResponse, g$ as UpdateBuyerEmailRequest, h0 as UpdateBuyerEmailResponse, gY as UpdateBuyerInfoRequest, g_ as UpdateBuyerInfoResponse, cV as UpdateInternalDocumentsEvent, cW as UpdateInternalDocumentsEventOperationOneOf, hG as UpdateLineItemsDescriptionLinesRequest, hI as UpdateLineItemsDescriptionLinesResponse, ja as UpdateOrderLineItem, j9 as UpdateOrderLineItemIdentifiers, h5 as UpdateOrderLineItemRequest, h6 as UpdateOrderLineItemResponse, h7 as UpdateOrderLineItemsRequest, h9 as UpdateOrderLineItemsResponse, gA as UpdateOrderRequest, gB as UpdateOrderResponse, h1 as UpdateOrderShippingAddressRequest, h2 as UpdateOrderShippingAddressResponse, ki as UpdateOrderStatusApplicationErrors, hM as UpdateOrderStatusRequest, hN as UpdateOrderStatusResponse, fe as UserDefinedPaymentMethodName, ff as UserDefinedPaymentMethodNameKindOneOf, e$ as UserDomainMediaDisabled, e_ as UserDomainMediaEnabled, i3 as V1BulkMarkOrdersAsPaidRequest, i4 as V1BulkMarkOrdersAsPaidResponse, i5 as V1CreatePaymentGatewayOrderRequest, i6 as V1CreatePaymentGatewayOrderResponse, gJ as V1LineItemDelta, gK as V1LineItemDeltaDeltaOneOf, i1 as V1MarkOrderAsPaidRequest, i2 as V1MarkOrderAsPaidResponse, d8 as V1RestockItem, fS as V1ScheduledAction, bo as V1ShippingInformation, dP as V1TriggerReindexOrderRequest, dN as V1TriggerReindexRequest, dO as V1TriggerReindexResponse, iZ as Value, aE as ValueType, ka as ValueTypeWithLiterals, bn as VatId, Q as VatType, jr as VatTypeWithLiterals, d2 as VersionedDeleteByIdsOperation, d3 as VersionedDocumentId, d1 as VersionedDocumentUpdateOperation, a7 as VersioningMode, jF as VersioningModeWithLiterals, g8 as VoidAuthorizedPaymentsRequest, aa as WebhookIdentityType, jI as WebhookIdentityTypeWithLiterals, W as WeightUnit, jq as WeightUnitWithLiterals, cu as WixReceipt, fX as WixReceiptInfo, eW as WixelAssigned, eX as WixelUnassigned, je as utils } from './ecom-v1-order-orders.universal-KHoi3OZ9.mjs';
2
+ import { P as Price, a as PreparePaymentCollectionOptions, b as PreparePaymentCollectionResponse, c as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, V as VoidAuthorizedPaymentsResponse, d as VoidAuthorizedPaymentsApplicationErrors, e as PaymentCapture, C as CaptureAuthorizedPaymentsResponse, f as CaptureAuthorizedPaymentsApplicationErrors, O as Order, g as GetOrderApplicationErrors, h as OrderSearch, S as SearchOrdersResponse, i as CreateOrderOptions, j as CreateOrderApplicationErrors, U as UpdateOrder, k as UpdateOrderApplicationErrors, M as MaskedOrder, B as BulkUpdateOrdersOptions, l as BulkUpdateOrdersResponse, A as AddActivitiesOptions, m as AddActivitiesResponse, n as CancelOrderOptions, o as CancelOrderResponse, p as CancelOrderApplicationErrors, q as BulkUpdateOrderTagsOptions, r as BulkUpdateOrderTagsResponse, s as OrderApprovedEnvelope, t as OrderCanceledEnvelope, u as OrderCommittedEnvelope, v as OrderCreatedEnvelope, w as OrderFulfilledEnvelope, x as OrderPaymentStatusUpdatedEnvelope, y as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-D7hLED8N.mjs';
3
+ export { dJ as AccountInfo, j8 as AccountInfoMetadata, dD as ActionEvent, at as ActionType, k6 as ActionTypeWithLiterals, bM as Activity, bN as ActivityContentOneOf, $ as ActivityType, jE as ActivityTypeWithLiterals, hI as AddActivitiesRequest, hE as AddActivityRequest, hH as AddActivityResponse, hh as AddInternalActivityRequest, hD as AddInternalActivityResponse, f7 as AddToAutomationMigrationPopulationRequest, f8 as AddToAutomationMigrationPopulationResponse, cK as AdditionalFee, dr as AdditionalFeeDelta, ds as AdditionalFeeDeltaDeltaOneOf, ej as AdditionalFeeRefund, a3 as AdditionalFeeSource, jI as AdditionalFeeSourceWithLiterals, bm as Address, iG as AddressDescription, bo as AddressLocation, bl as AddressWithContact, K as AdjustmentType, jt as AdjustmentTypeWithLiterals, jk as AggregateOrdersOptions, ih as AggregateOrdersRequest, ii as AggregateOrdersResponse, g8 as AggregatedRefundSummary, fq as ApplicationError, bC as AppliedDiscount, dp as AppliedDiscountDelta, dq as AppliedDiscountDeltaDeltaOneOf, bD as AppliedDiscountDiscountSourceOneOf, gT as ArchiveOrderRequest, gU as ArchiveOrderResponse, eC as Asset, a1 as AttributionSource, jG as AttributionSourceWithLiterals, fU as AuthorizationActionFailureDetails, fT as AuthorizationCapture, aq as AuthorizationCaptureStatus, k3 as AuthorizationCaptureStatusWithLiterals, fS as AuthorizationDetails, fV as AuthorizationVoid, ar as AuthorizationVoidStatus, k4 as AuthorizationVoidStatusWithLiterals, cb as AuthorizedPaymentCaptured, ca as AuthorizedPaymentCreated, cc as AuthorizedPaymentVoided, cI as Balance, cH as BalanceSummary, j6 as BaseEventMetadata, iQ as BigDecimalWrapper, b7 as BillingAdjustment, b8 as BillingAdjustmentPriceSummary, b6 as BillingSettings, fr as BulkActionMetadata, gX as BulkArchiveOrdersByFilterRequest, gY as BulkArchiveOrdersByFilterResponse, gV as BulkArchiveOrdersRequest, gW as BulkArchiveOrdersResponse, dO as BulkDeleteImportedOrdersRequest, dP as BulkDeleteImportedOrdersResponse, hZ as BulkMarkAsFulfilledByFilterRequest, h_ as BulkMarkAsFulfilledByFilterResponse, hX as BulkMarkAsFulfilledRequest, hY as BulkMarkAsFulfilledResponse, i3 as BulkMarkAsUnfulfilledByFilterRequest, i4 as BulkMarkAsUnfulfilledByFilterResponse, i1 as BulkMarkAsUnfulfilledRequest, i2 as BulkMarkAsUnfulfilledResponse, fm as BulkMarkOrdersAsPaidRequest, fn as BulkMarkOrdersAsPaidResponse, fo as BulkOrderResult, dZ as BulkSendBuyerPickupConfirmationEmailsRequest, d_ as BulkSendBuyerPickupConfirmationEmailsResponse, e1 as BulkSendBuyerShippingConfirmationEmailsRequest, e2 as BulkSendBuyerShippingConfirmationEmailsResponse, i5 as BulkSetBusinessLocationRequest, i6 as BulkSetBusinessLocationResponse, i7 as BulkSetBusinessLocationResult, h1 as BulkUnArchiveOrdersByFilterRequest, h2 as BulkUnArchiveOrdersByFilterResponse, g$ as BulkUnArchiveOrdersRequest, h0 as BulkUnArchiveOrdersResponse, im as BulkUpdateOrderTagsRequest, iq as BulkUpdateOrderTagsResult, gJ as BulkUpdateOrdersRequest, bh as BuyerInfo, bi as BuyerInfoIdOneOf, h4 as BuyerInfoUpdate, gc as CalculateRefundItemRequest, ge as CalculateRefundItemResponse, gb as CalculateRefundRequest, gd as CalculateRefundResponse, i_ as CalculatedTax, iZ as CalculatedTaxes, iy as Cancel, hS as CancelOrderRequest, ax as CanceledReason, ka as CanceledReasonWithLiterals, g2 as CanceledStatusDetails, gg as CaptureAuthorizedPaymentsRequest, cJ as CashRounding, g1 as CashRoundingDetails, aM as CatalogReference, cF as ChannelInfo, a2 as ChannelType, jH as ChannelTypeWithLiterals, jd as ChargeMembershipsOptions, fz as ChargeMembershipsRequest, fD as ChargeMembershipsResponse, gh as ChargeSavedPaymentMethodRequest, gi as ChargeSavedPaymentMethodResponse, a6 as ChargeType, jL as ChargeTypeWithLiterals, fX as Chargeback, cB as ChargebackCreated, cC as ChargebackReversed, au as ChargebackStatus, k7 as ChargebackStatusWithLiterals, fx as ChargedBy, aS as Color, gK as CommitDeltasRequest, gS as CommitDeltasResponse, di as CommittedDiffs, dj as CommittedDiffsShippingUpdateInfoOneOf, iJ as CommonAddress, iK as CommonAddressStreetOneOf, kt as CommonSearchWithEntityContext, iI as Company, ix as Complete, bE as Coupon, gC as CreateOrderRequest, gG as CreateOrderResponse, fw as CreatePaymentGatewayOrderRequest, fy as CreatePaymentGatewayOrderResponse, cD as CreatedBy, cE as CreatedByStringOneOf, cq as CreditCardDetails, fR as CreditCardPaymentMethodDetails, bj as CurrencyConversionDetails, gs as CursorPaging, gB as CursorPagingMetadata, gz as CursorSearch, gA as CursorSearchPagingMethodOneOf, gv as Cursors, bO as CustomActivity, cS as CustomAllowedActions, cG as CustomField, aG as CustomFieldGroup, kj as CustomFieldGroupWithLiterals, j3 as CustomFieldValue, iD as Customer, ay as DeclinedReason, kb as DeclinedReasonWithLiterals, g3 as DeclinedStatusDetails, ik as DecrementData, ij as DecrementItemsQuantityRequest, il as DecrementItemsQuantityResponse, fd as DelayedCaptureSettings, jj as DeleteActivityIdentifiers, hL as DeleteActivityRequest, hM as DeleteActivityResponse, d1 as DeleteByFilterOperation, d0 as DeleteByIdsOperation, eG as DeleteContext, af as DeleteStatus, jU as DeleteStatusWithLiterals, bs as DeliveryLogistics, bt as DeliveryLogisticsAddressOneOf, bw as DeliveryTimeSlot, a8 as DeltaPaymentOptionType, jN as DeltaPaymentOptionTypeWithLiterals, j5 as Deposit, aI as DepositType, kl as DepositTypeWithLiterals, aN as DescriptionLine, aP as DescriptionLineDescriptionLineValueOneOf, aQ as DescriptionLineName, D as DescriptionLineType, jm as DescriptionLineTypeWithLiterals, aO as DescriptionLineValueOneOf, gj as DiffmatokyPayload, b0 as DigitalFile, aV as Dimensions, z as DimensionsUnit, jn as DimensionsUnitWithLiterals, iX as Discount, iY as DiscountOneDiscountTypeOneOf, Z as DiscountReason, jC as DiscountReasonWithLiterals, bH as DiscountRule, bI as DiscountRuleName, Y as DiscountType, jB as DiscountTypeWithLiterals, dx as DomainEvent, dy as DomainEventBodyOneOf, hp as DownloadLinkSent, bU as DraftOrderChangesApplied, dt as DraftOrderCommitSettings, gL as DraftOrderDiffs, gO as DraftOrderDiffsBillingUpdateInfoOneOf, gN as DraftOrderDiffsBuyerUpdateInfoOneOf, gP as DraftOrderDiffsRecipientUpdateInfoOneOf, gM as DraftOrderDiffsShippingUpdateInfoOneOf, fe as Duration, ai as DurationUnit, jX as DurationUnitWithLiterals, f3 as EditorlessAssigned, f4 as EditorlessUnassigned, iE as Email, hy as EmailEdited, dE as Empty, dz as EntityCreatedEvent, dC as EntityDeletedEvent, dB as EntityUpdatedEvent, gk as ErrorInformation, j7 as EventMetadata, bd as ExtendedFields, cy as ExternalReceipt, g0 as ExternalReceiptInfo, aT as FocalPoint, cV as FormIdentifier, cU as FormInfo, b5 as FreeTrialPeriod, hw as FulfillerEmailSent, N as FulfillmentStatus, df as FulfillmentStatusUpdated, jw as FulfillmentStatusWithLiterals, cL as FulfillmentStatusesAggregate, bp as FullAddressContactDetails, gl as GetOrderRequest, gm as GetOrderResponse, ff as GetPaymentCollectabilityStatusRequest, fs as GetRefundabilityStatusRequest, ft as GetRefundabilityStatusResponse, ie as GetShipmentsRequest, ig as GetShipmentsResponse, fZ as GiftCardPaymentDetails, ch as GiftCardPaymentRefund, f5 as HasCustomEmailConfigurationsRequest, f6 as HasCustomEmailConfigurationsResponse, iB as IdAndVersion, dH as IdentificationData, dI as IdentificationDataIdOneOf, kn as ImportOrderApplicationErrors, dK as ImportOrderRequest, dL as ImportOrderResponse, dd as ImportedOrderDeleted, hi as InternalActivity, hj as InternalActivityContentOneOf, c_ as InternalDocument, d2 as InternalDocumentUpdateByFilterOperation, c$ as InternalDocumentUpdateOperation, gn as InternalQueryOrdersRequest, gt as InternalQueryOrdersResponse, d3 as InternalUpdateExistingOperation, a9 as InventoryAction, jO as InventoryActionWithLiterals, du as InventoryUpdateDetails, hu as InvoiceAdded, iN as InvoiceDates, j2 as InvoiceDynamicPriceTotals, iC as InvoiceFields, hv as InvoiceSent, iA as InvoiceSentEvent, aJ as InvoiceStatus, km as InvoiceStatusWithLiterals, j0 as InvoicesPayment, f9 as IsInAutomationMigrationPopulationRequest, fa as IsInAutomationMigrationPopulationResponse, dk as ItemChangedDetails, bK as ItemCombination, bL as ItemCombinationLineItem, fp as ItemMetadata, bg as ItemModifier, aZ as ItemTaxFullDetails, aW as ItemType, aX as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, jo as ItemTypePresetWithLiterals, iW as ItemizedFee, J as JurisdictionType, jq as JurisdictionTypeWithLiterals, iP as LineItem, c4 as LineItemAmount, bX as LineItemChanges, dm as LineItemDelta, dn as LineItemDeltaDeltaOneOf, b$ as LineItemDescriptionLineChange, bJ as LineItemDiscount, bT as LineItemExchangeData, iT as LineItemMetaData, c0 as LineItemModifiersChange, bZ as LineItemPriceChange, b_ as LineItemProductNameChange, bY as LineItemQuantityChange, _ as LineItemQuantityChangeType, jD as LineItemQuantityChangeTypeWithLiterals, ei as LineItemRefund, ga as LineItemRefundSummary, iR as LineItemTax, a$ as LineItemTaxBreakdown, a_ as LineItemTaxInfo, hO as LineItemUpdate, iO as LineItems, iU as Locale, cO as Location, ba as LocationAndQuantity, c5 as ManagedAdditionalFee, c2 as ManagedDiscount, c1 as ManagedLineItem, an as ManuallyRefundableReason, k0 as ManuallyRefundableReasonWithLiterals, hV as MarkAsFulfilledRequest, hW as MarkAsFulfilledResponse, h$ as MarkAsUnfulfilledRequest, i0 as MarkAsUnfulfilledResponse, fk as MarkOrderAsPaidRequest, fl as MarkOrderAsPaidResponse, hQ as MarkOrderAsSeenByHumanRequest, hR as MarkOrderAsSeenByHumanResponse, hf as MaskedOrderLineItem, fA as MembershipChargeItem, fB as MembershipName, f_ as MembershipPaymentDetails, ci as MembershipPaymentRefund, av as MembershipPaymentStatus, k8 as MembershipPaymentStatusWithLiterals, bP as MerchantComment, bF as MerchantDiscount, bG as MerchantDiscountMerchantDiscountReasonOneOf, dG as MessageEnvelope, j1 as MetaData, eA as MetaSiteSpecialEvent, eB as MetaSiteSpecialEventPayloadOneOf, be as ModifierGroup, ae as Namespace, eQ as NamespaceChanged, jT as NamespaceWithLiterals, bS as NewExchangeOrderCreated, am as NonRefundableReason, j$ as NonRefundableReasonWithLiterals, eV as OdeditorAssigned, eW as OdeditorUnassigned, a4 as OrderActionType, jJ as OrderActionTypeWithLiterals, a0 as OrderActivityTypeEnumActivityType, jF as OrderActivityTypeEnumActivityTypeWithLiterals, aC as OrderApprovalStrategy, kf as OrderApprovalStrategyWithLiterals, d7 as OrderApproved, ho as OrderCanceled, dg as OrderCanceledEventOrderCanceled, bV as OrderChange, bW as OrderChangeValueOneOf, gF as OrderCreateNotifications, bR as OrderCreatedFromExchange, gD as OrderCreationSettings, gE as OrderCreationSettingsEditableByOneOf, dh as OrderDeltasCommitted, hm as OrderFulfilled, dc as OrderImported, da as OrderItemsRestocked, aK as OrderLineItem, dl as OrderLineItemChangedDetails, hn as OrderNotFulfilled, hl as OrderPaid, hA as OrderPartiallyPaid, hB as OrderPending, hk as OrderPlaced, bQ as OrderRefunded, hC as OrderRejected, d9 as OrderRejectedEventOrderRejected, jf as OrderSearchSpec, cP as OrderSettings, cQ as OrderSettingsAllowedActionsOneOf, cR as OrderSettingsEditableByOneOf, X as OrderStatus, jA as OrderStatusWithLiterals, bB as OrderTaxBreakdown, bA as OrderTaxInfo, fK as OrderTransactions, d8 as OrdersExperiments, ag as Origin, jV as OriginWithLiterals, cT as OwnerApps, fL as Payment, cr as PaymentCanceled, cs as PaymentCanceledPaymentDetailsOneOf, aj as PaymentCollectabilityStatus, jY as PaymentCollectabilityStatusWithLiterals, kq as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, jc as PaymentCollectionCreatePaymentGatewayOrderOptions, kp as PaymentCollectionMarkOrderAsPaidApplicationErrors, jb as PaymentCollectionMarkOrderAsPaidOptions, ct as PaymentDeclined, cu as PaymentDeclinedPaymentDetailsOneOf, fY as PaymentMethodName, E as PaymentOptionType, jp as PaymentOptionTypeWithLiterals, fM as PaymentPaymentDetailsOneOf, cm as PaymentPending, cn as PaymentPendingPaymentDetailsOneOf, fN as PaymentReceiptInfoOneOf, fF as PaymentRefund, ck as PaymentRefundFailed, cj as PaymentRefunded, aw as PaymentStatus, fO as PaymentStatusDetailsOneOf, L as PaymentStatusEnumPaymentStatus, jv as PaymentStatusEnumPaymentStatusWithLiterals, de as PaymentStatusUpdated, k9 as PaymentStatusWithLiterals, i$ as Payments, iH as Phone, aU as PhysicalProperties, eX as PicassoAssigned, eY as PicassoUnassigned, bv as PickupAddress, bu as PickupDetails, R as PickupMethod, jz as PickupMethodWithLiterals, hz as PickupReadyEmailSent, aD as Placement, kg as PlacementWithLiterals, aR as PlainTextValue, cX as PlatformFee, cW as PlatformFeeSummary, gr as PlatformPaging, gu as PlatformPagingMetadata, go as PlatformQuery, gp as PlatformQueryPagingMethodOneOf, ak as PredefinedPaymentMethod, jZ as PredefinedPaymentMethodWithLiterals, fb as PreparePaymentCollectionRequest, es as PreviewBuyerConfirmationEmailRequest, et as PreviewBuyerConfirmationEmailResponse, eq as PreviewBuyerPaymentsReceivedEmailRequest, er as PreviewBuyerPaymentsReceivedEmailResponse, eu as PreviewBuyerPickupConfirmationEmailRequest, ev as PreviewBuyerPickupConfirmationEmailResponse, em as PreviewCancelEmailRequest, en as PreviewCancelEmailResponse, eo as PreviewCancelRefundEmailRequest, ep as PreviewCancelRefundEmailResponse, ed as PreviewEmailByTypeRequest, ee as PreviewEmailByTypeResponse, ab as PreviewEmailType, jQ as PreviewEmailTypeWithLiterals, ef as PreviewRefundEmailRequest, el as PreviewRefundEmailResponse, ey as PreviewResendDownloadLinksEmailRequest, ez as PreviewResendDownloadLinksEmailResponse, ew as PreviewShippingConfirmationEmailRequest, ex as PreviewShippingConfirmationEmailResponse, b9 as PriceDescription, bk as PriceSummary, aL as ProductName, H as ProductPeriodAlignment, js as ProductPeriodAlignmentWithLiterals, hF as PublicActivity, hG as PublicActivityContentOneOf, gw as QueryOrderRequest, gx as QueryOrderResponse, iF as QuotesAddress, as as Reason, k5 as ReasonWithLiterals, cv as ReceiptCreated, cw as ReceiptCreatedReceiptInfoOneOf, cz as ReceiptSent, cA as ReceiptSentReceiptInfoOneOf, ko as RecordManuallyCollectedPaymentApplicationErrors, ja as RecordManuallyCollectedPaymentOptions, fg as RecordManuallyCollectedPaymentRequest, fj as RecordManuallyCollectedPaymentResponse, fc as RedirectUrls, g5 as Refund, eg as RefundDetails, cd as RefundInitiated, eh as RefundItem, g9 as RefundItemsBreakdown, fG as RefundSideEffects, aA as RefundStatus, g7 as RefundStatusInfo, kd as RefundStatusWithLiterals, g6 as RefundTransaction, fu as Refundability, fv as RefundabilityAdditionalRefundabilityInfoOneOf, al as RefundableStatus, j_ as RefundableStatusWithLiterals, cl as RefundedAsStoreCredit, ce as RefundedPayment, cf as RefundedPaymentKindOneOf, co as RegularPayment, fP as RegularPaymentDetails, fQ as RegularPaymentDetailsPaymentMethodDetailsOneOf, cp as RegularPaymentPaymentMethodDetailsOneOf, cg as RegularPaymentRefund, iz as Reschedule, fH as RestockInfo, fI as RestockItem, aY as RestockLocation, ao as RestockType, k1 as RestockTypeWithLiterals, dA as RestoreInfo, c9 as SavedPaymentMethod, ah as ScheduledAction, jW as ScheduledActionWithLiterals, gy as SearchOrdersRequest, dT as SendBuyerConfirmationEmailRequest, dU as SendBuyerConfirmationEmailResponse, dV as SendBuyerPaymentsReceivedEmailRequest, dW as SendBuyerPaymentsReceivedEmailResponse, dX as SendBuyerPickupConfirmationEmailRequest, dY as SendBuyerPickupConfirmationEmailResponse, d$ as SendBuyerShippingConfirmationEmailRequest, e0 as SendBuyerShippingConfirmationEmailResponse, e5 as SendCancelRefundEmailRequest, e6 as SendCancelRefundEmailResponse, e9 as SendFulfillmentEmailRequest, ea as SendFulfillmentEmailResponse, e3 as SendMerchantOrderReceivedNotificationRequest, e4 as SendMerchantOrderReceivedNotificationResponse, eb as SendMerchantOrderReceivedPushRequest, ec as SendMerchantOrderReceivedPushResponse, ir as SendOrderUpdatedDomainEventRequest, is as SendOrderUpdatedDomainEventResponse, e7 as SendRefundEmailRequest, e8 as SendRefundEmailResponse, fC as ServiceProperties, eM as ServiceProvisioned, eN as ServiceRemoved, j9 as SetOrderNumberCounterOptions, dM as SetOrderNumberCounterRequest, dN as SetOrderNumberCounterResponse, hx as ShippingAddressEdited, ht as ShippingConfirmationEmailSent, c8 as ShippingInformation, c7 as ShippingInformationChange, bx as ShippingPrice, ek as ShippingRefund, by as ShippingRegion, eD as SiteCreated, ad as SiteCreatedContext, jS as SiteCreatedContextWithLiterals, eF as SiteDeleted, eP as SiteHardDeleted, eK as SiteMarkedAsTemplate, eL as SiteMarkedAsWixSite, eI as SitePublished, eU as SitePurgedExternally, eO as SiteRenamed, eE as SiteTransferred, eH as SiteUndeleted, eJ as SiteUnpublished, eT as SiteUrlChanged, aB as SortOrder, ke as SortOrderWithLiterals, gq as Sorting, iS as Source, aF as SourceType, ki as SourceTypeWithLiterals, a5 as SpecificItemsCouponBehavior, jK as SpecificItemsCouponBehaviorWithLiterals, iM as StandardDetails, ac as State, jR as StateWithLiterals, bn as StreetAddress, eR as StudioAssigned, e$ as StudioTwoAssigned, f0 as StudioTwoUnassigned, eS as StudioUnassigned, iL as Subdivision, aE as SubdivisionType, kh as SubdivisionTypeWithLiterals, b3 as SubscriptionDescription, F as SubscriptionFrequency, jr as SubscriptionFrequencyWithLiterals, b1 as SubscriptionInfo, b4 as SubscriptionSettings, b2 as SubscriptionTitle, cN as TagList, cM as Tags, ip as TagsTagList, io as TagsTags, it as Task, iv as TaskAction, iw as TaskActionActionOneOf, iu as TaskKey, bz as TaxSummary, bb as TaxableAddress, bc as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, ju as TaxableAddressTypeWithLiterals, iV as TotalPrice, c6 as TotalPriceChange, hs as TrackingLinkAdded, hq as TrackingNumberAdded, hr as TrackingNumberEdited, ap as TransactionStatus, k2 as TransactionStatusWithLiterals, bf as TranslatableString, c3 as TranslatedValue, kr as TriggerRefundApplicationErrors, je as TriggerRefundOptions, fE as TriggerRefundRequest, fJ as TriggerRefundResponse, dF as TriggerReindexOrderRequest, dv as TriggerReindexRequest, dw as TriggerReindexResponse, gZ as UnArchiveOrderRequest, g_ as UnArchiveOrderResponse, ji as UpdateActivityIdentifiers, hJ as UpdateActivityRequest, hK as UpdateActivityResponse, ha as UpdateBillingContactDetailsRequest, hb as UpdateBillingContactDetailsResponse, h6 as UpdateBuyerEmailRequest, h7 as UpdateBuyerEmailResponse, h3 as UpdateBuyerInfoRequest, h5 as UpdateBuyerInfoResponse, cY as UpdateInternalDocumentsEvent, cZ as UpdateInternalDocumentsEventOperationOneOf, hN as UpdateLineItemsDescriptionLinesRequest, hP as UpdateLineItemsDescriptionLinesResponse, jh as UpdateOrderLineItem, jg as UpdateOrderLineItemIdentifiers, hc as UpdateOrderLineItemRequest, hd as UpdateOrderLineItemResponse, he as UpdateOrderLineItemsRequest, hg as UpdateOrderLineItemsResponse, gH as UpdateOrderRequest, gI as UpdateOrderResponse, h8 as UpdateOrderShippingAddressRequest, h9 as UpdateOrderShippingAddressResponse, ks as UpdateOrderStatusApplicationErrors, hT as UpdateOrderStatusRequest, hU as UpdateOrderStatusResponse, fh as UserDefinedPaymentMethodName, fi as UserDefinedPaymentMethodNameKindOneOf, f2 as UserDomainMediaDisabled, f1 as UserDomainMediaEnabled, ia as V1BulkMarkOrdersAsPaidRequest, ib as V1BulkMarkOrdersAsPaidResponse, ic as V1CreatePaymentGatewayOrderRequest, id as V1CreatePaymentGatewayOrderResponse, gQ as V1LineItemDelta, gR as V1LineItemDeltaDeltaOneOf, i8 as V1MarkOrderAsPaidRequest, i9 as V1MarkOrderAsPaidResponse, db as V1RestockItem, fW as V1ScheduledAction, br as V1ShippingInformation, dS as V1TriggerReindexOrderRequest, dQ as V1TriggerReindexRequest, dR as V1TriggerReindexResponse, j4 as Value, aH as ValueType, kk as ValueTypeWithLiterals, bq as VatId, Q as VatType, jy as VatTypeWithLiterals, d5 as VersionedDeleteByIdsOperation, d6 as VersionedDocumentId, d4 as VersionedDocumentUpdateOperation, a7 as VersioningMode, jM as VersioningModeWithLiterals, gf as VoidAuthorizedPaymentsRequest, az as VoidedReason, kc as VoidedReasonWithLiterals, g4 as VoidedStatusDetails, aa as WebhookIdentityType, jP as WebhookIdentityTypeWithLiterals, W as WeightUnit, jx as WeightUnitWithLiterals, cx as WixReceipt, f$ as WixReceiptInfo, eZ as WixelAssigned, e_ as WixelUnassigned, jl as utils } from './ecom-v1-order-orders.universal-D7hLED8N.mjs';
4
4
 
5
5
  declare function preparePaymentCollection$1(httpClient: HttpClient): PreparePaymentCollectionSignature;
6
6
  interface PreparePaymentCollectionSignature {
@@ -2174,6 +2174,23 @@ var PaymentStatus = /* @__PURE__ */ ((PaymentStatus2) => {
2174
2174
  PaymentStatus2["VOIDED"] = "VOIDED";
2175
2175
  return PaymentStatus2;
2176
2176
  })(PaymentStatus || {});
2177
+ var CanceledReason = /* @__PURE__ */ ((CanceledReason2) => {
2178
+ CanceledReason2["OTHER_PAYMENT_FAILURE"] = "OTHER_PAYMENT_FAILURE";
2179
+ CanceledReason2["EXPIRED"] = "EXPIRED";
2180
+ return CanceledReason2;
2181
+ })(CanceledReason || {});
2182
+ var DeclinedReason = /* @__PURE__ */ ((DeclinedReason2) => {
2183
+ DeclinedReason2["CHARGE_FAILED"] = "CHARGE_FAILED";
2184
+ DeclinedReason2["EXPIRED"] = "EXPIRED";
2185
+ DeclinedReason2["INSUFFICIENT_FUNDS"] = "INSUFFICIENT_FUNDS";
2186
+ DeclinedReason2["GIFT_CARD_DISABLED"] = "GIFT_CARD_DISABLED";
2187
+ return DeclinedReason2;
2188
+ })(DeclinedReason || {});
2189
+ var VoidedReason = /* @__PURE__ */ ((VoidedReason2) => {
2190
+ VoidedReason2["MERCHANT_REQUEST"] = "MERCHANT_REQUEST";
2191
+ VoidedReason2["OTHER_PAYMENT_FAILURE"] = "OTHER_PAYMENT_FAILURE";
2192
+ return VoidedReason2;
2193
+ })(VoidedReason || {});
2177
2194
  var RefundStatus = /* @__PURE__ */ ((RefundStatus2) => {
2178
2195
  RefundStatus2["PENDING"] = "PENDING";
2179
2196
  RefundStatus2["SUCCEEDED"] = "SUCCEEDED";
@@ -4033,10 +4050,12 @@ export {
4033
4050
  AttributionSource,
4034
4051
  AuthorizationCaptureStatus,
4035
4052
  AuthorizationVoidStatus,
4053
+ CanceledReason,
4036
4054
  ChannelType,
4037
4055
  ChargeType,
4038
4056
  ChargebackStatus,
4039
4057
  CustomFieldGroup,
4058
+ DeclinedReason,
4040
4059
  DeleteStatus,
4041
4060
  DeltaPaymentOptionType,
4042
4061
  DepositType,
@@ -4086,6 +4105,7 @@ export {
4086
4105
  ValueType,
4087
4106
  VatType,
4088
4107
  VersioningMode,
4108
+ VoidedReason,
4089
4109
  WebhookIdentityType,
4090
4110
  WeightUnit,
4091
4111
  addActivities4 as addActivities,