@wix/auto_sdk_ecom_orders 1.0.213 → 1.0.215

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