@wix/auto_sdk_ecom_orders 1.0.142 → 1.0.144

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-C83tlr2q.d.ts → ecom-v1-order-orders.universal-CRTnOQB3.d.ts} +67 -1
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +19 -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 +19 -0
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +67 -2
  9. package/build/cjs/meta.js +19 -0
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{ecom-v1-order-orders.universal-C83tlr2q.d.mts → ecom-v1-order-orders.universal-CRTnOQB3.d.mts} +67 -1
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +17 -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 +17 -0
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +67 -2
  19. package/build/es/meta.mjs +17 -0
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{ecom-v1-order-orders.universal-sK3jbGGi.d.ts → ecom-v1-order-orders.universal-CjdFmcMT.d.ts} +96 -1
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +19 -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 +19 -0
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +67 -2
  29. package/build/internal/cjs/meta.js +19 -0
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{ecom-v1-order-orders.universal-sK3jbGGi.d.mts → ecom-v1-order-orders.universal-CjdFmcMT.d.mts} +96 -1
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +17 -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 +17 -0
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +67 -2
  39. package/build/internal/es/meta.mjs +17 -0
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -192,6 +192,11 @@ interface Order {
192
192
  * @maxSize 1000
193
193
  */
194
194
  forms?: FormInfo[];
195
+ /**
196
+ * Summary of all platform fees added to the order.
197
+ * @internal
198
+ */
199
+ platformFeeSummary?: PlatformFeeSummary;
195
200
  }
196
201
  interface OrderLineItem {
197
202
  /**
@@ -2755,6 +2760,20 @@ interface BalanceSummary {
2755
2760
  * @readonly
2756
2761
  */
2757
2762
  chargebackReversal?: Price;
2763
+ /**
2764
+ * Sum of all charged platform fees.
2765
+ *
2766
+ * Note: `order.platformFeeSummary` holds the expected sum of platform fees.
2767
+ * @internal
2768
+ * @readonly
2769
+ */
2770
+ platformFee?: Price;
2771
+ /**
2772
+ * Order total after platform fee.
2773
+ * @internal
2774
+ * @readonly
2775
+ */
2776
+ totalAfterPlatformFee?: Price;
2758
2777
  }
2759
2778
  /**
2760
2779
  * Order balance. Reflects amount left to be paid on order and is calculated dynamically. Can be negative per balance definition.
@@ -2831,6 +2850,11 @@ interface AdditionalFee {
2831
2850
  * @max 999
2832
2851
  */
2833
2852
  subscriptionCycles?: number | null;
2853
+ /**
2854
+ * Specifies the entity that added the additional fee.
2855
+ * @internal
2856
+ */
2857
+ source?: AdditionalFeeSourceWithLiterals;
2834
2858
  }
2835
2859
  interface FulfillmentStatusesAggregate {
2836
2860
  /** Unique string values based on Fulfillment entities statuses */
@@ -4803,6 +4827,71 @@ interface TriggerReindexOrderRequest {
4803
4827
  */
4804
4828
  orderId?: string;
4805
4829
  }
4830
+ declare enum AdditionalFeeSource {
4831
+ UNKNOWN_ADDITIONAL_FEE_SOURCE = "UNKNOWN_ADDITIONAL_FEE_SOURCE",
4832
+ /** The additional fee was added by an additional fee service plugin. */
4833
+ SERVICE_PLUGIN = "SERVICE_PLUGIN",
4834
+ /** The additional fee was added to the item by a catalog or custom line item. */
4835
+ ITEM = "ITEM",
4836
+ /** The additional fee was added manually on request. */
4837
+ MANUAL = "MANUAL",
4838
+ /** The additional fee was added by the shipping provider. */
4839
+ SHIPPING = "SHIPPING",
4840
+ /** The additional fee was added by the Wix eCommerce platform. */
4841
+ PLATFORM = "PLATFORM"
4842
+ }
4843
+ /** @enumType */
4844
+ type AdditionalFeeSourceWithLiterals = AdditionalFeeSource | 'UNKNOWN_ADDITIONAL_FEE_SOURCE' | 'SERVICE_PLUGIN' | 'ITEM' | 'MANUAL' | 'SHIPPING' | 'PLATFORM';
4845
+ interface PlatformFeeSummary {
4846
+ /** Total sum of all platform fees. */
4847
+ total?: Price;
4848
+ /** Total amount of platform fees with `PASS_ON` charge type. */
4849
+ totalPassOn?: Price;
4850
+ /** Total amount of platform fees with `ABSORBED` charge type. */
4851
+ totalAbsorbed?: Price;
4852
+ /**
4853
+ * Specific information about each platform fee.
4854
+ * @maxSize 300
4855
+ */
4856
+ fees?: PlatformFee[];
4857
+ }
4858
+ interface PlatformFee {
4859
+ /** Platform fee name. */
4860
+ name?: TranslatableString;
4861
+ /** Platform fee amount. */
4862
+ amount?: Price;
4863
+ /**
4864
+ * ID of the line item the platform fee applies to.
4865
+ * @format GUID
4866
+ */
4867
+ lineItemId?: string;
4868
+ /** Platform fee charge type. */
4869
+ chargeType?: ChargeTypeWithLiterals;
4870
+ /**
4871
+ * Percentage rate charged as platform fee.
4872
+ * The fee rate expressed as a decimal fraction between 0 and 1. For example, `0.05` for 5%.
4873
+ * @format DECIMAL_VALUE
4874
+ * @decimalValue options { gte:0, lte:1, maxScale:4 }
4875
+ */
4876
+ percentageRate?: string;
4877
+ }
4878
+ declare enum ChargeType {
4879
+ UNKNOWN_CHARGE_TYPE = "UNKNOWN_CHARGE_TYPE",
4880
+ /**
4881
+ * Platform fee passed on to buyer.
4882
+ *
4883
+ * This type increases the order total, and is visible to the buyer and merchant as an additional fee.
4884
+ */
4885
+ PASS_ON = "PASS_ON",
4886
+ /**
4887
+ * Platform fee absorbed by merchant.
4888
+ *
4889
+ * This type does not increase the order total, and is only visible to the merchant.
4890
+ */
4891
+ ABSORBED = "ABSORBED"
4892
+ }
4893
+ /** @enumType */
4894
+ type ChargeTypeWithLiterals = ChargeType | 'UNKNOWN_CHARGE_TYPE' | 'PASS_ON' | 'ABSORBED';
4806
4895
  interface DiffmatokyPayload {
4807
4896
  left?: string;
4808
4897
  right?: string;
@@ -7080,6 +7169,7 @@ declare function onOrderApproved(handler: (event: OrderApprovedEnvelope) => void
7080
7169
  interface OrderUpdatedEnvelope {
7081
7170
  entity: Order;
7082
7171
  metadata: EventMetadata;
7172
+ /** @hidden */
7083
7173
  modifiedFields: Record<string, any>;
7084
7174
  }
7085
7175
  /**
@@ -7896,6 +7986,11 @@ interface UpdateOrder {
7896
7986
  * @maxSize 1000
7897
7987
  */
7898
7988
  forms?: FormInfo[];
7989
+ /**
7990
+ * Summary of all platform fees added to the order.
7991
+ * @internal
7992
+ */
7993
+ platformFeeSummary?: PlatformFeeSummary;
7899
7994
  }
7900
7995
  /**
7901
7996
  * Updates up to 100 orders.
@@ -8306,4 +8401,4 @@ interface BulkUpdateOrderTagsOptions {
8306
8401
  unassignTags?: Tags;
8307
8402
  }
8308
8403
 
8309
- export { type OrderStatusWithLiterals as $, type BulkUpdateOrdersResponse as A, type BulkDeleteImportedOrdersOptions as B, type CreatePaymentGatewayOrderResponse as C, type UpdateOrderLineItemIdentifiers as D, type UpdateOrderLineItem as E, type UpdateOrderLineItemResponse as F, type GetPaymentCollectabilityStatusResponse as G, type PublicActivity as H, type ImportOrderResponse as I, type AddActivityResponse as J, type AddActivitiesOptions as K, type AddActivitiesResponse as L, type MarkOrderAsPaidResponse as M, type UpdateActivityIdentifiers as N, type Order as O, type Price as P, type UpdateActivityResponse as Q, type RecordManuallyCollectedPaymentApplicationErrors as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type DeleteActivityIdentifiers as W, type DeleteActivityResponse as X, type CancelOrderOptions as Y, type CancelOrderResponse as Z, type CancelOrderApplicationErrors as _, type SetOrderNumberCounterResponse as a, type CatalogReference as a$, type UpdateOrderStatusResponse as a0, type UpdateOrderStatusApplicationErrors as a1, type AggregateOrdersOptions as a2, type AggregateOrdersResponse as a3, type BulkUpdateOrderTagsOptions as a4, type BulkUpdateOrderTagsResponse as a5, type OrderApprovedEnvelope as a6, type OrderUpdatedEnvelope as a7, type OrderCanceledEnvelope as a8, type OrderCreatedEnvelope as a9, PaymentCollectabilityStatus as aA, RefundableStatus as aB, NonRefundableReason as aC, ManuallyRefundableReason as aD, RestockType as aE, TransactionStatus as aF, AuthorizationCaptureStatus as aG, AuthorizationVoidStatus as aH, Reason as aI, ActionType as aJ, ChargebackStatus as aK, MembershipPaymentStatus as aL, RefundStatus as aM, VersioningMode as aN, SortOrder as aO, OrderApprovalStrategy as aP, DeltaPaymentOptionType as aQ, InventoryAction as aR, Placement as aS, SubdivisionType as aT, SourceType as aU, CustomFieldGroup as aV, ValueType as aW, DepositType as aX, InvoiceStatus as aY, type OrderLineItem as aZ, type ProductName as a_, type OrderPaymentStatusUpdatedEnvelope as aa, DescriptionLineType as ab, ItemTypePreset as ac, PaymentOptionType as ad, JurisdictionType as ae, SubscriptionFrequency as af, AdjustmentType as ag, TaxableAddressType as ah, PaymentStatus as ai, FulfillmentStatus as aj, WeightUnit as ak, VatType as al, PickupMethod as am, OrderStatus as an, DiscountType as ao, DiscountReason as ap, LineItemQuantityChangeType as aq, ActivityType as ar, OrderActivityTypeEnumActivityType as as, AttributionSource as at, ChannelType as au, OrderActionType as av, WebhookIdentityType as aw, PreviewEmailType as ax, ScheduledAction as ay, DurationUnit as az, type BulkDeleteImportedOrdersResponse as b, type OrderCreatedFromExchange as b$, type DescriptionLine as b0, type DescriptionLineValueOneOf as b1, type DescriptionLineDescriptionLineValueOneOf as b2, type DescriptionLineName as b3, type PlainTextValue as b4, type Color as b5, type FocalPoint as b6, type PhysicalProperties as b7, type ItemType as b8, type ItemTypeItemTypeDataOneOf as b9, type AddressLocation as bA, type FullAddressContactDetails as bB, type VatId as bC, type V1ShippingInformation as bD, type DeliveryLogistics as bE, type DeliveryLogisticsAddressOneOf as bF, type PickupDetails as bG, type PickupAddress as bH, type DeliveryTimeSlot as bI, type ShippingPrice as bJ, type ShippingRegion as bK, type TaxSummary as bL, type OrderTaxInfo as bM, type OrderTaxBreakdown as bN, type AppliedDiscount as bO, type AppliedDiscountDiscountSourceOneOf as bP, type Coupon as bQ, type MerchantDiscount as bR, type MerchantDiscountMerchantDiscountReasonOneOf as bS, type DiscountRule as bT, type DiscountRuleName as bU, type LineItemDiscount as bV, type Activity as bW, type ActivityContentOneOf as bX, type CustomActivity as bY, type MerchantComment as bZ, type OrderRefunded as b_, type ItemTaxFullDetails as ba, type LineItemTaxInfo as bb, type LineItemTaxBreakdown as bc, type DigitalFile as bd, type SubscriptionInfo as be, type SubscriptionTitle as bf, type SubscriptionDescription as bg, type SubscriptionSettings as bh, type FreeTrialPeriod as bi, type BillingAdjustment as bj, type BillingAdjustmentPriceSummary as bk, type PriceDescription as bl, type LocationAndQuantity as bm, type TaxableAddress as bn, type TaxableAddressTaxableAddressDataOneOf as bo, type ExtendedFields as bp, type ModifierGroup as bq, type TranslatableString as br, type ItemModifier as bs, type BuyerInfo as bt, type BuyerInfoIdOneOf as bu, type CurrencyConversionDetails as bv, type PriceSummary as bw, type AddressWithContact as bx, type Address as by, type StreetAddress as bz, type PreparePaymentCollectionOptions as c, type FormInfo as c$, type NewExchangeOrderCreated as c0, type LineItemExchangeData as c1, type DraftOrderChangesApplied as c2, type OrderChange as c3, type OrderChangeValueOneOf as c4, type LineItemChanges as c5, type LineItemQuantityChange as c6, type LineItemPriceChange as c7, type LineItemProductNameChange as c8, type LineItemDescriptionLineChange as c9, type CreditCardDetails as cA, type PaymentCanceled as cB, type PaymentCanceledPaymentDetailsOneOf as cC, type PaymentDeclined as cD, type PaymentDeclinedPaymentDetailsOneOf as cE, type ReceiptCreated as cF, type ReceiptCreatedReceiptInfoOneOf as cG, type WixReceipt as cH, type ExternalReceipt as cI, type ReceiptSent as cJ, type ReceiptSentReceiptInfoOneOf as cK, type ChargebackCreated as cL, type ChargebackReversed as cM, type CreatedBy as cN, type CreatedByStringOneOf as cO, type ChannelInfo as cP, type CustomField as cQ, type BalanceSummary as cR, type Balance as cS, type AdditionalFee as cT, type FulfillmentStatusesAggregate as cU, type Tags as cV, type TagList as cW, type Location as cX, type OrderSettings as cY, type OrderSettingsAllowedActionsOneOf as cZ, type CustomAllowedActions as c_, type LineItemModifiersChange as ca, type ManagedLineItem as cb, type ManagedDiscount as cc, type TranslatedValue as cd, type LineItemAmount as ce, type ManagedAdditionalFee as cf, type TotalPriceChange as cg, type ShippingInformationChange as ch, type ShippingInformation as ci, type SavedPaymentMethod as cj, type AuthorizedPaymentCreated as ck, type AuthorizedPaymentCaptured as cl, type AuthorizedPaymentVoided as cm, type RefundInitiated as cn, type RefundedPayment as co, type RefundedPaymentKindOneOf as cp, type RegularPaymentRefund as cq, type GiftCardPaymentRefund as cr, type MembershipPaymentRefund as cs, type PaymentRefunded as ct, type PaymentRefundFailed as cu, type RefundedAsStoreCredit as cv, type PaymentPending as cw, type PaymentPendingPaymentDetailsOneOf as cx, type RegularPayment as cy, type RegularPaymentPaymentMethodDetailsOneOf as cz, type PreparePaymentCollectionResponse as d, type PreviewResendDownloadLinksEmailRequest as d$, type FormIdentifier as d0, type OrderApproved as d1, type OrdersExperiments as d2, type OrderRejectedEventOrderRejected as d3, type OrderItemsRestocked as d4, type V1RestockItem as d5, type OrderImported as d6, type ImportedOrderDeleted as d7, type ImportOrderRequest as d8, type SetOrderNumberCounterRequest as d9, type SendCancelRefundEmailRequest as dA, type SendCancelRefundEmailResponse as dB, type SendRefundEmailRequest as dC, type SendRefundEmailResponse as dD, type SendMerchantOrderReceivedPushRequest as dE, type SendMerchantOrderReceivedPushResponse as dF, type PreviewEmailByTypeRequest as dG, type PreviewEmailByTypeResponse as dH, type PreviewRefundEmailRequest as dI, type RefundDetails as dJ, type RefundItem as dK, type LineItemRefund as dL, type AdditionalFeeRefund as dM, type ShippingRefund as dN, type PreviewRefundEmailResponse as dO, type PreviewCancelEmailRequest as dP, type PreviewCancelEmailResponse as dQ, type PreviewCancelRefundEmailRequest as dR, type PreviewCancelRefundEmailResponse as dS, type PreviewBuyerPaymentsReceivedEmailRequest as dT, type PreviewBuyerPaymentsReceivedEmailResponse as dU, type PreviewBuyerConfirmationEmailRequest as dV, type PreviewBuyerConfirmationEmailResponse as dW, type PreviewBuyerPickupConfirmationEmailRequest as dX, type PreviewBuyerPickupConfirmationEmailResponse as dY, type PreviewShippingConfirmationEmailRequest as dZ, type PreviewShippingConfirmationEmailResponse as d_, type BulkDeleteImportedOrdersRequest as da, type DomainEvent as db, type DomainEventBodyOneOf as dc, type EntityCreatedEvent as dd, type RestoreInfo as de, type EntityUpdatedEvent as df, type EntityDeletedEvent as dg, type ActionEvent as dh, type MessageEnvelope as di, type IdentificationData as dj, type IdentificationDataIdOneOf as dk, type SendBuyerConfirmationEmailRequest as dl, type SendBuyerConfirmationEmailResponse as dm, type SendBuyerPaymentsReceivedEmailRequest as dn, type SendBuyerPaymentsReceivedEmailResponse as dp, type SendBuyerPickupConfirmationEmailRequest as dq, type SendBuyerPickupConfirmationEmailResponse as dr, type BulkSendBuyerPickupConfirmationEmailsRequest as ds, type BulkSendBuyerPickupConfirmationEmailsResponse as dt, type SendBuyerShippingConfirmationEmailRequest as du, type SendBuyerShippingConfirmationEmailResponse as dv, type BulkSendBuyerShippingConfirmationEmailsRequest as dw, type BulkSendBuyerShippingConfirmationEmailsResponse as dx, type SendMerchantOrderReceivedNotificationRequest as dy, type SendMerchantOrderReceivedNotificationResponse as dz, type PreparePaymentCollectionApplicationErrors as e, type InternalDocumentUpdateOperation as e$, type PreviewResendDownloadLinksEmailResponse as e0, type Empty as e1, type PreparePaymentCollectionRequest as e2, type RedirectUrls as e3, type DelayedCaptureSettings as e4, type Duration as e5, type GetPaymentCollectabilityStatusRequest as e6, type RecordManuallyCollectedPaymentRequest as e7, type RecordManuallyCollectedPaymentResponse as e8, type MarkOrderAsPaidRequest as e9, type AuthorizationDetails as eA, type AuthorizationCapture as eB, type AuthorizationActionFailureDetails as eC, type AuthorizationVoid as eD, type V1ScheduledAction as eE, type Chargeback as eF, type GiftCardPaymentDetails as eG, type MembershipPaymentDetails as eH, type WixReceiptInfo as eI, type ExternalReceiptInfo as eJ, type Refund as eK, type RefundTransaction as eL, type RefundStatusInfo as eM, type AggregatedRefundSummary as eN, type RefundItemsBreakdown as eO, type LineItemRefundSummary as eP, type CalculateRefundRequest as eQ, type CalculateRefundItemRequest as eR, type CalculateRefundResponse as eS, type CalculateRefundItemResponse as eT, type VoidAuthorizedPaymentsRequest as eU, type CaptureAuthorizedPaymentsRequest as eV, type ChargeSavedPaymentMethodRequest as eW, type ChargeSavedPaymentMethodResponse as eX, type UpdateInternalDocumentsEvent as eY, type UpdateInternalDocumentsEventOperationOneOf as eZ, type InternalDocument as e_, type BulkMarkOrdersAsPaidRequest as ea, type BulkOrderResult as eb, type ItemMetadata as ec, type ApplicationError as ed, type BulkActionMetadata as ee, type GetRefundabilityStatusRequest as ef, type Refundability as eg, type RefundabilityAdditionalRefundabilityInfoOneOf as eh, type CreatePaymentGatewayOrderRequest as ei, type ChargedBy as ej, type ChargeMembershipsRequest as ek, type MembershipChargeItem as el, type MembershipName as em, type ServiceProperties as en, type ChargeMembershipsResponse as eo, type TriggerRefundRequest as ep, type RefundSideEffects as eq, type RestockInfo as er, type RestockItem as es, type OrderTransactions as et, type Payment as eu, type PaymentPaymentDetailsOneOf as ev, type PaymentReceiptInfoOneOf as ew, type RegularPaymentDetails as ex, type RegularPaymentDetailsPaymentMethodDetailsOneOf as ey, type CreditCardPaymentMethodDetails as ez, type PaymentCollectionMarkOrderAsPaidApplicationErrors as f, type BulkArchiveOrdersByFilterRequest as f$, type DeleteByIdsOperation as f0, type DeleteByFilterOperation as f1, type InternalDocumentUpdateByFilterOperation as f2, type InternalUpdateExistingOperation as f3, type VersionedDocumentUpdateOperation as f4, type VersionedDeleteByIdsOperation as f5, type VersionedDocumentId as f6, type TriggerReindexRequest as f7, type TriggerReindexResponse as f8, type BatchOfTriggerReindexOrderRequest as f9, type BulkUpdateOrdersRequest as fA, type CommitDeltasRequest as fB, type DraftOrderDiffs as fC, type DraftOrderDiffsShippingUpdateInfoOneOf as fD, type DraftOrderDiffsBuyerUpdateInfoOneOf as fE, type DraftOrderDiffsBillingUpdateInfoOneOf as fF, type DraftOrderDiffsRecipientUpdateInfoOneOf as fG, type V1LineItemDelta as fH, type V1LineItemDeltaDeltaOneOf as fI, type OrderLineItemChangedDetails as fJ, type ItemChangedDetails as fK, type AppliedDiscountDelta as fL, type AppliedDiscountDeltaDeltaOneOf as fM, type AdditionalFeeDelta as fN, type AdditionalFeeDeltaDeltaOneOf as fO, type DraftOrderCommitSettings as fP, type InventoryUpdateDetails as fQ, type CommitDeltasResponse as fR, type OrderDeltasCommitted as fS, type CommittedDiffs as fT, type CommittedDiffsShippingUpdateInfoOneOf as fU, type LineItemDelta as fV, type LineItemDeltaDeltaOneOf as fW, type ArchiveOrderRequest as fX, type ArchiveOrderResponse as fY, type BulkArchiveOrdersRequest as fZ, type BulkArchiveOrdersResponse as f_, type TriggerReindexOrderRequest as fa, type DiffmatokyPayload as fb, type ErrorInformation as fc, type GetOrderRequest as fd, type GetOrderResponse as fe, type InternalQueryOrdersRequest as ff, type PlatformQuery as fg, type PlatformQueryPagingMethodOneOf as fh, type Sorting as fi, type PlatformPaging as fj, type CursorPaging as fk, type InternalQueryOrdersResponse as fl, type PlatformPagingMetadata as fm, type Cursors as fn, type QueryOrderRequest as fo, type QueryOrderResponse as fp, type SearchOrdersRequest as fq, type CursorSearch as fr, type CursorSearchPagingMethodOneOf as fs, type CursorPagingMetadata as ft, type CreateOrderRequest as fu, type OrderCreationSettings as fv, type OrderCreateNotifications as fw, type CreateOrderResponse as fx, type UpdateOrderRequest as fy, type UpdateOrderResponse as fz, type BulkMarkOrdersAsPaidResponse as g, type MarkAsUnfulfilledRequest as g$, type BulkArchiveOrdersByFilterResponse as g0, type UnArchiveOrderRequest as g1, type UnArchiveOrderResponse as g2, type BulkUnArchiveOrdersRequest as g3, type BulkUnArchiveOrdersResponse as g4, type BulkUnArchiveOrdersByFilterRequest as g5, type BulkUnArchiveOrdersByFilterResponse as g6, type UpdateBuyerInfoRequest as g7, type BuyerInfoUpdate as g8, type UpdateBuyerInfoResponse as g9, type ShippingAddressEdited as gA, type EmailEdited as gB, type PickupReadyEmailSent as gC, type OrderPartiallyPaid as gD, type OrderPending as gE, type OrderRejected as gF, type AddInternalActivityResponse as gG, type AddActivityRequest as gH, type PublicActivityContentOneOf as gI, type AddActivitiesRequest as gJ, type UpdateActivityRequest as gK, type DeleteActivityRequest as gL, type UpdateLineItemsDescriptionLinesRequest as gM, type LineItemUpdate as gN, type UpdateLineItemsDescriptionLinesResponse as gO, type MarkOrderAsSeenByHumanRequest as gP, type MarkOrderAsSeenByHumanResponse as gQ, type CancelOrderRequest as gR, type OrderCanceledEventOrderCanceled as gS, type UpdateOrderStatusRequest as gT, type MarkAsFulfilledRequest as gU, type MarkAsFulfilledResponse as gV, type FulfillmentStatusUpdated as gW, type BulkMarkAsFulfilledRequest as gX, type BulkMarkAsFulfilledResponse as gY, type BulkMarkAsFulfilledByFilterRequest as gZ, type BulkMarkAsFulfilledByFilterResponse as g_, type UpdateBuyerEmailRequest as ga, type UpdateBuyerEmailResponse as gb, type UpdateOrderShippingAddressRequest as gc, type UpdateOrderShippingAddressResponse as gd, type UpdateBillingContactDetailsRequest as ge, type UpdateBillingContactDetailsResponse as gf, type UpdateOrderLineItemRequest as gg, type UpdateOrderLineItemsRequest as gh, type MaskedOrderLineItem as gi, type UpdateOrderLineItemsResponse as gj, type AddInternalActivityRequest as gk, type InternalActivity as gl, type InternalActivityContentOneOf as gm, type OrderPlaced as gn, type OrderPaid as go, type OrderFulfilled as gp, type OrderNotFulfilled as gq, type OrderCanceled as gr, type DownloadLinkSent as gs, type TrackingNumberAdded as gt, type TrackingNumberEdited as gu, type TrackingLinkAdded as gv, type ShippingConfirmationEmailSent as gw, type InvoiceAdded as gx, type InvoiceSent as gy, type FulfillerEmailSent as gz, type GetRefundabilityStatusResponse as h, type Deposit as h$, type MarkAsUnfulfilledResponse as h0, type BulkMarkAsUnfulfilledRequest as h1, type BulkMarkAsUnfulfilledResponse as h2, type BulkMarkAsUnfulfilledByFilterRequest as h3, type BulkMarkAsUnfulfilledByFilterResponse as h4, type BulkSetBusinessLocationRequest as h5, type BulkSetBusinessLocationResponse as h6, type BulkSetBusinessLocationResult as h7, type V1MarkOrderAsPaidRequest as h8, type V1MarkOrderAsPaidResponse as h9, type AddressDescription as hA, type Phone as hB, type Company as hC, type CommonAddress as hD, type CommonAddressStreetOneOf as hE, type Subdivision as hF, type StandardDetails as hG, type InvoiceDates as hH, type LineItems as hI, type LineItem as hJ, type BigDecimalWrapper as hK, type LineItemTax as hL, type Source as hM, type LineItemMetaData as hN, type Locale as hO, type TotalPrice as hP, type ItemizedFee as hQ, type Discount as hR, type DiscountOneDiscountTypeOneOf as hS, type CalculatedTaxes as hT, type CalculatedTax as hU, type Payments as hV, type InvoicesPayment as hW, type MetaData as hX, type InvoiceDynamicPriceTotals as hY, type CustomFieldValue as hZ, type Value as h_, type PaymentStatusUpdated as ha, type V1BulkMarkOrdersAsPaidRequest as hb, type V1BulkMarkOrdersAsPaidResponse as hc, type V1CreatePaymentGatewayOrderRequest as hd, type V1CreatePaymentGatewayOrderResponse as he, type GetShipmentsRequest as hf, type GetShipmentsResponse as hg, type AggregateOrdersRequest as hh, type DecrementItemsQuantityRequest as hi, type DecrementData as hj, type DecrementItemsQuantityResponse as hk, type BulkUpdateOrderTagsRequest as hl, type BulkUpdateOrderTagsResult as hm, type Task as hn, type TaskKey as ho, type TaskAction as hp, type TaskActionActionOneOf as hq, type Complete as hr, type Cancel as hs, type Reschedule as ht, type InvoiceSentEvent as hu, type IdAndVersion as hv, type InvoiceFields as hw, type Customer as hx, type Email as hy, type QuotesAddress as hz, type PaymentCollectionCreatePaymentGatewayOrderOptions as i, preparePaymentCollection as i$, type BaseEventMetadata as i0, type EventMetadata as i1, type OrderSearchSpec as i2, type DescriptionLineTypeWithLiterals as i3, type ItemTypePresetWithLiterals as i4, type PaymentOptionTypeWithLiterals as i5, type JurisdictionTypeWithLiterals as i6, type SubscriptionFrequencyWithLiterals as i7, type AdjustmentTypeWithLiterals as i8, type TaxableAddressTypeWithLiterals as i9, type AuthorizationVoidStatusWithLiterals as iA, type ReasonWithLiterals as iB, type ActionTypeWithLiterals as iC, type ChargebackStatusWithLiterals as iD, type MembershipPaymentStatusWithLiterals as iE, type RefundStatusWithLiterals as iF, type VersioningModeWithLiterals as iG, type SortOrderWithLiterals as iH, type OrderApprovalStrategyWithLiterals as iI, type DeltaPaymentOptionTypeWithLiterals as iJ, type InventoryActionWithLiterals as iK, type PlacementWithLiterals as iL, type SubdivisionTypeWithLiterals as iM, type SourceTypeWithLiterals as iN, type CustomFieldGroupWithLiterals as iO, type ValueTypeWithLiterals as iP, type DepositTypeWithLiterals as iQ, type InvoiceStatusWithLiterals as iR, type CommonSearchWithEntityContext as iS, onOrderApproved as iT, onOrderUpdated as iU, onOrderCanceled as iV, onOrderCreated as iW, onOrderPaymentStatusUpdated as iX, importOrder as iY, setOrderNumberCounter as iZ, bulkDeleteImportedOrders as i_, type PaymentStatusWithLiterals as ia, type FulfillmentStatusWithLiterals as ib, type WeightUnitWithLiterals as ic, type VatTypeWithLiterals as id, type PickupMethodWithLiterals as ie, type DiscountTypeWithLiterals as ig, type DiscountReasonWithLiterals as ih, type LineItemQuantityChangeTypeWithLiterals as ii, type ActivityTypeWithLiterals as ij, type OrderActivityTypeEnumActivityTypeWithLiterals as ik, type AttributionSourceWithLiterals as il, type ChannelTypeWithLiterals as im, type OrderActionTypeWithLiterals as io, type WebhookIdentityTypeWithLiterals as ip, type PreviewEmailTypeWithLiterals as iq, type ScheduledActionWithLiterals as ir, type DurationUnitWithLiterals as is, type PaymentCollectabilityStatusWithLiterals as it, type RefundableStatusWithLiterals as iu, type NonRefundableReasonWithLiterals as iv, type ManuallyRefundableReasonWithLiterals as iw, type RestockTypeWithLiterals as ix, type TransactionStatusWithLiterals as iy, type AuthorizationCaptureStatusWithLiterals as iz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as j, getPaymentCollectabilityStatus as j0, recordManuallyCollectedPayment as j1, paymentCollectionMarkOrderAsPaid as j2, paymentCollectionBulkMarkOrdersAsPaid as j3, getRefundabilityStatus as j4, paymentCollectionCreatePaymentGatewayOrder as j5, chargeMemberships as j6, triggerRefund as j7, voidAuthorizedPayments as j8, captureAuthorizedPayments as j9, getOrder as ja, createOrder as jb, updateOrder as jc, bulkUpdateOrders as jd, updateOrderLineItem as je, addActivity as jf, addActivities as jg, updateActivity as jh, deleteActivity as ji, cancelOrder as jj, updateOrderStatus as jk, aggregateOrders as jl, bulkUpdateOrderTags as jm, type ChargeMembershipsOptions as k, type PaymentRefund as l, type TriggerRefundResponse as m, type TriggerRefundApplicationErrors as n, type VoidAuthorizedPaymentsApplicationErrors as o, type PaymentCapture as p, type CaptureAuthorizedPaymentsResponse as q, type CaptureAuthorizedPaymentsApplicationErrors as r, type GetOrderApplicationErrors as s, type OrderSearch as t, type SearchOrdersResponse as u, type CreateOrderOptions as v, type CreateOrderApplicationErrors as w, type UpdateOrderApplicationErrors as x, type MaskedOrder as y, type BulkUpdateOrdersOptions as z };
8404
+ export { type OrderStatusWithLiterals as $, type BulkUpdateOrdersResponse as A, type BulkDeleteImportedOrdersOptions as B, type CreatePaymentGatewayOrderResponse as C, type UpdateOrderLineItemIdentifiers as D, type UpdateOrderLineItem as E, type UpdateOrderLineItemResponse as F, type GetPaymentCollectabilityStatusResponse as G, type PublicActivity as H, type ImportOrderResponse as I, type AddActivityResponse as J, type AddActivitiesOptions as K, type AddActivitiesResponse as L, type MarkOrderAsPaidResponse as M, type UpdateActivityIdentifiers as N, type Order as O, type Price as P, type UpdateActivityResponse as Q, type RecordManuallyCollectedPaymentApplicationErrors as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type DeleteActivityIdentifiers as W, type DeleteActivityResponse as X, type CancelOrderOptions as Y, type CancelOrderResponse as Z, type CancelOrderApplicationErrors as _, type SetOrderNumberCounterResponse as a, type OrderLineItem as a$, type UpdateOrderStatusResponse as a0, type UpdateOrderStatusApplicationErrors as a1, type AggregateOrdersOptions as a2, type AggregateOrdersResponse as a3, type BulkUpdateOrderTagsOptions as a4, type BulkUpdateOrderTagsResponse as a5, type OrderApprovedEnvelope as a6, type OrderUpdatedEnvelope as a7, type OrderCanceledEnvelope as a8, type OrderCreatedEnvelope as a9, PaymentCollectabilityStatus as aA, RefundableStatus as aB, NonRefundableReason as aC, ManuallyRefundableReason as aD, RestockType as aE, TransactionStatus as aF, AuthorizationCaptureStatus as aG, AuthorizationVoidStatus as aH, Reason as aI, ActionType as aJ, ChargebackStatus as aK, MembershipPaymentStatus as aL, RefundStatus as aM, VersioningMode as aN, AdditionalFeeSource as aO, ChargeType as aP, SortOrder as aQ, OrderApprovalStrategy as aR, DeltaPaymentOptionType as aS, InventoryAction as aT, Placement as aU, SubdivisionType as aV, SourceType as aW, CustomFieldGroup as aX, ValueType as aY, DepositType as aZ, InvoiceStatus as a_, type OrderPaymentStatusUpdatedEnvelope as aa, DescriptionLineType as ab, ItemTypePreset as ac, PaymentOptionType as ad, JurisdictionType as ae, SubscriptionFrequency as af, AdjustmentType as ag, TaxableAddressType as ah, PaymentStatus as ai, FulfillmentStatus as aj, WeightUnit as ak, VatType as al, PickupMethod as am, OrderStatus as an, DiscountType as ao, DiscountReason as ap, LineItemQuantityChangeType as aq, ActivityType as ar, OrderActivityTypeEnumActivityType as as, AttributionSource as at, ChannelType as au, OrderActionType as av, WebhookIdentityType as aw, PreviewEmailType as ax, ScheduledAction as ay, DurationUnit as az, type BulkDeleteImportedOrdersResponse as b, type MerchantComment as b$, type ProductName as b0, type CatalogReference as b1, type DescriptionLine as b2, type DescriptionLineValueOneOf as b3, type DescriptionLineDescriptionLineValueOneOf as b4, type DescriptionLineName as b5, type PlainTextValue as b6, type Color as b7, type FocalPoint as b8, type PhysicalProperties as b9, type Address as bA, type StreetAddress as bB, type AddressLocation as bC, type FullAddressContactDetails as bD, type VatId as bE, type V1ShippingInformation as bF, type DeliveryLogistics as bG, type DeliveryLogisticsAddressOneOf as bH, type PickupDetails as bI, type PickupAddress as bJ, type DeliveryTimeSlot as bK, type ShippingPrice as bL, type ShippingRegion as bM, type TaxSummary as bN, type OrderTaxInfo as bO, type OrderTaxBreakdown as bP, type AppliedDiscount as bQ, type AppliedDiscountDiscountSourceOneOf as bR, type Coupon as bS, type MerchantDiscount as bT, type MerchantDiscountMerchantDiscountReasonOneOf as bU, type DiscountRule as bV, type DiscountRuleName as bW, type LineItemDiscount as bX, type Activity as bY, type ActivityContentOneOf as bZ, type CustomActivity as b_, type ItemType as ba, type ItemTypeItemTypeDataOneOf as bb, type ItemTaxFullDetails as bc, type LineItemTaxInfo as bd, type LineItemTaxBreakdown as be, type DigitalFile as bf, type SubscriptionInfo as bg, type SubscriptionTitle as bh, type SubscriptionDescription as bi, type SubscriptionSettings as bj, type FreeTrialPeriod as bk, type BillingAdjustment as bl, type BillingAdjustmentPriceSummary as bm, type PriceDescription as bn, type LocationAndQuantity as bo, type TaxableAddress as bp, type TaxableAddressTaxableAddressDataOneOf as bq, type ExtendedFields as br, type ModifierGroup as bs, type TranslatableString as bt, type ItemModifier as bu, type BuyerInfo as bv, type BuyerInfoIdOneOf as bw, type CurrencyConversionDetails as bx, type PriceSummary as by, type AddressWithContact as bz, type PreparePaymentCollectionOptions as c, type OrderSettingsAllowedActionsOneOf as c$, type OrderRefunded as c0, type OrderCreatedFromExchange as c1, type NewExchangeOrderCreated as c2, type LineItemExchangeData as c3, type DraftOrderChangesApplied as c4, type OrderChange as c5, type OrderChangeValueOneOf as c6, type LineItemChanges as c7, type LineItemQuantityChange as c8, type LineItemPriceChange as c9, type RegularPayment as cA, type RegularPaymentPaymentMethodDetailsOneOf as cB, type CreditCardDetails as cC, type PaymentCanceled as cD, type PaymentCanceledPaymentDetailsOneOf as cE, type PaymentDeclined as cF, type PaymentDeclinedPaymentDetailsOneOf as cG, type ReceiptCreated as cH, type ReceiptCreatedReceiptInfoOneOf as cI, type WixReceipt as cJ, type ExternalReceipt as cK, type ReceiptSent as cL, type ReceiptSentReceiptInfoOneOf as cM, type ChargebackCreated as cN, type ChargebackReversed as cO, type CreatedBy as cP, type CreatedByStringOneOf as cQ, type ChannelInfo as cR, type CustomField as cS, type BalanceSummary as cT, type Balance as cU, type AdditionalFee as cV, type FulfillmentStatusesAggregate as cW, type Tags as cX, type TagList as cY, type Location as cZ, type OrderSettings as c_, type LineItemProductNameChange as ca, type LineItemDescriptionLineChange as cb, type LineItemModifiersChange as cc, type ManagedLineItem as cd, type ManagedDiscount as ce, type TranslatedValue as cf, type LineItemAmount as cg, type ManagedAdditionalFee as ch, type TotalPriceChange as ci, type ShippingInformationChange as cj, type ShippingInformation as ck, type SavedPaymentMethod as cl, type AuthorizedPaymentCreated as cm, type AuthorizedPaymentCaptured as cn, type AuthorizedPaymentVoided as co, type RefundInitiated as cp, type RefundedPayment as cq, type RefundedPaymentKindOneOf as cr, type RegularPaymentRefund as cs, type GiftCardPaymentRefund as ct, type MembershipPaymentRefund as cu, type PaymentRefunded as cv, type PaymentRefundFailed as cw, type RefundedAsStoreCredit as cx, type PaymentPending as cy, type PaymentPendingPaymentDetailsOneOf as cz, type PreparePaymentCollectionResponse as d, type PreviewShippingConfirmationEmailRequest as d$, type CustomAllowedActions as d0, type FormInfo as d1, type FormIdentifier as d2, type OrderApproved as d3, type OrdersExperiments as d4, type OrderRejectedEventOrderRejected as d5, type OrderItemsRestocked as d6, type V1RestockItem as d7, type OrderImported as d8, type ImportedOrderDeleted as d9, type SendMerchantOrderReceivedNotificationRequest as dA, type SendMerchantOrderReceivedNotificationResponse as dB, type SendCancelRefundEmailRequest as dC, type SendCancelRefundEmailResponse as dD, type SendRefundEmailRequest as dE, type SendRefundEmailResponse as dF, type SendMerchantOrderReceivedPushRequest as dG, type SendMerchantOrderReceivedPushResponse as dH, type PreviewEmailByTypeRequest as dI, type PreviewEmailByTypeResponse as dJ, type PreviewRefundEmailRequest as dK, type RefundDetails as dL, type RefundItem as dM, type LineItemRefund as dN, type AdditionalFeeRefund as dO, type ShippingRefund as dP, type PreviewRefundEmailResponse as dQ, type PreviewCancelEmailRequest as dR, type PreviewCancelEmailResponse as dS, type PreviewCancelRefundEmailRequest as dT, type PreviewCancelRefundEmailResponse as dU, type PreviewBuyerPaymentsReceivedEmailRequest as dV, type PreviewBuyerPaymentsReceivedEmailResponse as dW, type PreviewBuyerConfirmationEmailRequest as dX, type PreviewBuyerConfirmationEmailResponse as dY, type PreviewBuyerPickupConfirmationEmailRequest as dZ, type PreviewBuyerPickupConfirmationEmailResponse as d_, type ImportOrderRequest as da, type SetOrderNumberCounterRequest as db, type BulkDeleteImportedOrdersRequest as dc, type DomainEvent as dd, type DomainEventBodyOneOf as de, type EntityCreatedEvent as df, type RestoreInfo as dg, type EntityUpdatedEvent as dh, type EntityDeletedEvent as di, type ActionEvent as dj, type MessageEnvelope as dk, type IdentificationData as dl, type IdentificationDataIdOneOf as dm, type SendBuyerConfirmationEmailRequest as dn, type SendBuyerConfirmationEmailResponse as dp, type SendBuyerPaymentsReceivedEmailRequest as dq, type SendBuyerPaymentsReceivedEmailResponse as dr, type SendBuyerPickupConfirmationEmailRequest as ds, type SendBuyerPickupConfirmationEmailResponse as dt, type BulkSendBuyerPickupConfirmationEmailsRequest as du, type BulkSendBuyerPickupConfirmationEmailsResponse as dv, type SendBuyerShippingConfirmationEmailRequest as dw, type SendBuyerShippingConfirmationEmailResponse as dx, type BulkSendBuyerShippingConfirmationEmailsRequest as dy, type BulkSendBuyerShippingConfirmationEmailsResponse as dz, type PreparePaymentCollectionApplicationErrors as e, type UpdateInternalDocumentsEventOperationOneOf as e$, type PreviewShippingConfirmationEmailResponse as e0, type PreviewResendDownloadLinksEmailRequest as e1, type PreviewResendDownloadLinksEmailResponse as e2, type Empty as e3, type PreparePaymentCollectionRequest as e4, type RedirectUrls as e5, type DelayedCaptureSettings as e6, type Duration as e7, type GetPaymentCollectabilityStatusRequest as e8, type RecordManuallyCollectedPaymentRequest as e9, type RegularPaymentDetailsPaymentMethodDetailsOneOf as eA, type CreditCardPaymentMethodDetails as eB, type AuthorizationDetails as eC, type AuthorizationCapture as eD, type AuthorizationActionFailureDetails as eE, type AuthorizationVoid as eF, type V1ScheduledAction as eG, type Chargeback as eH, type GiftCardPaymentDetails as eI, type MembershipPaymentDetails as eJ, type WixReceiptInfo as eK, type ExternalReceiptInfo as eL, type Refund as eM, type RefundTransaction as eN, type RefundStatusInfo as eO, type AggregatedRefundSummary as eP, type RefundItemsBreakdown as eQ, type LineItemRefundSummary as eR, type CalculateRefundRequest as eS, type CalculateRefundItemRequest as eT, type CalculateRefundResponse as eU, type CalculateRefundItemResponse as eV, type VoidAuthorizedPaymentsRequest as eW, type CaptureAuthorizedPaymentsRequest as eX, type ChargeSavedPaymentMethodRequest as eY, type ChargeSavedPaymentMethodResponse as eZ, type UpdateInternalDocumentsEvent as e_, type RecordManuallyCollectedPaymentResponse as ea, type MarkOrderAsPaidRequest as eb, type BulkMarkOrdersAsPaidRequest as ec, type BulkOrderResult as ed, type ItemMetadata as ee, type ApplicationError as ef, type BulkActionMetadata as eg, type GetRefundabilityStatusRequest as eh, type Refundability as ei, type RefundabilityAdditionalRefundabilityInfoOneOf as ej, type CreatePaymentGatewayOrderRequest as ek, type ChargedBy as el, type ChargeMembershipsRequest as em, type MembershipChargeItem as en, type MembershipName as eo, type ServiceProperties as ep, type ChargeMembershipsResponse as eq, type TriggerRefundRequest as er, type RefundSideEffects as es, type RestockInfo as et, type RestockItem as eu, type OrderTransactions as ev, type Payment as ew, type PaymentPaymentDetailsOneOf as ex, type PaymentReceiptInfoOneOf as ey, type RegularPaymentDetails as ez, type PaymentCollectionMarkOrderAsPaidApplicationErrors as f, type ArchiveOrderRequest as f$, type InternalDocument as f0, type InternalDocumentUpdateOperation as f1, type DeleteByIdsOperation as f2, type DeleteByFilterOperation as f3, type InternalDocumentUpdateByFilterOperation as f4, type InternalUpdateExistingOperation as f5, type VersionedDocumentUpdateOperation as f6, type VersionedDeleteByIdsOperation as f7, type VersionedDocumentId as f8, type TriggerReindexRequest as f9, type OrderCreateNotifications as fA, type CreateOrderResponse as fB, type UpdateOrderRequest as fC, type UpdateOrderResponse as fD, type BulkUpdateOrdersRequest as fE, type CommitDeltasRequest as fF, type DraftOrderDiffs as fG, type DraftOrderDiffsShippingUpdateInfoOneOf as fH, type DraftOrderDiffsBuyerUpdateInfoOneOf as fI, type DraftOrderDiffsBillingUpdateInfoOneOf as fJ, type DraftOrderDiffsRecipientUpdateInfoOneOf as fK, type V1LineItemDelta as fL, type V1LineItemDeltaDeltaOneOf as fM, type OrderLineItemChangedDetails as fN, type ItemChangedDetails as fO, type AppliedDiscountDelta as fP, type AppliedDiscountDeltaDeltaOneOf as fQ, type AdditionalFeeDelta as fR, type AdditionalFeeDeltaDeltaOneOf as fS, type DraftOrderCommitSettings as fT, type InventoryUpdateDetails as fU, type CommitDeltasResponse as fV, type OrderDeltasCommitted as fW, type CommittedDiffs as fX, type CommittedDiffsShippingUpdateInfoOneOf as fY, type LineItemDelta as fZ, type LineItemDeltaDeltaOneOf as f_, type TriggerReindexResponse as fa, type BatchOfTriggerReindexOrderRequest as fb, type TriggerReindexOrderRequest as fc, type PlatformFeeSummary as fd, type PlatformFee as fe, type DiffmatokyPayload as ff, type ErrorInformation as fg, type GetOrderRequest as fh, type GetOrderResponse as fi, type InternalQueryOrdersRequest as fj, type PlatformQuery as fk, type PlatformQueryPagingMethodOneOf as fl, type Sorting as fm, type PlatformPaging as fn, type CursorPaging as fo, type InternalQueryOrdersResponse as fp, type PlatformPagingMetadata as fq, type Cursors as fr, type QueryOrderRequest as fs, type QueryOrderResponse as ft, type SearchOrdersRequest as fu, type CursorSearch as fv, type CursorSearchPagingMethodOneOf as fw, type CursorPagingMetadata as fx, type CreateOrderRequest as fy, type OrderCreationSettings as fz, type BulkMarkOrdersAsPaidResponse as g, type BulkMarkAsFulfilledRequest as g$, type ArchiveOrderResponse as g0, type BulkArchiveOrdersRequest as g1, type BulkArchiveOrdersResponse as g2, type BulkArchiveOrdersByFilterRequest as g3, type BulkArchiveOrdersByFilterResponse as g4, type UnArchiveOrderRequest as g5, type UnArchiveOrderResponse as g6, type BulkUnArchiveOrdersRequest as g7, type BulkUnArchiveOrdersResponse as g8, type BulkUnArchiveOrdersByFilterRequest as g9, type ShippingConfirmationEmailSent as gA, type InvoiceAdded as gB, type InvoiceSent as gC, type FulfillerEmailSent as gD, type ShippingAddressEdited as gE, type EmailEdited as gF, type PickupReadyEmailSent as gG, type OrderPartiallyPaid as gH, type OrderPending as gI, type OrderRejected as gJ, type AddInternalActivityResponse as gK, type AddActivityRequest as gL, type PublicActivityContentOneOf as gM, type AddActivitiesRequest as gN, type UpdateActivityRequest as gO, type DeleteActivityRequest as gP, type UpdateLineItemsDescriptionLinesRequest as gQ, type LineItemUpdate as gR, type UpdateLineItemsDescriptionLinesResponse as gS, type MarkOrderAsSeenByHumanRequest as gT, type MarkOrderAsSeenByHumanResponse as gU, type CancelOrderRequest as gV, type OrderCanceledEventOrderCanceled as gW, type UpdateOrderStatusRequest as gX, type MarkAsFulfilledRequest as gY, type MarkAsFulfilledResponse as gZ, type FulfillmentStatusUpdated as g_, type BulkUnArchiveOrdersByFilterResponse as ga, type UpdateBuyerInfoRequest as gb, type BuyerInfoUpdate as gc, type UpdateBuyerInfoResponse as gd, type UpdateBuyerEmailRequest as ge, type UpdateBuyerEmailResponse as gf, type UpdateOrderShippingAddressRequest as gg, type UpdateOrderShippingAddressResponse as gh, type UpdateBillingContactDetailsRequest as gi, type UpdateBillingContactDetailsResponse as gj, type UpdateOrderLineItemRequest as gk, type UpdateOrderLineItemsRequest as gl, type MaskedOrderLineItem as gm, type UpdateOrderLineItemsResponse as gn, type AddInternalActivityRequest as go, type InternalActivity as gp, type InternalActivityContentOneOf as gq, type OrderPlaced as gr, type OrderPaid as gs, type OrderFulfilled as gt, type OrderNotFulfilled as gu, type OrderCanceled as gv, type DownloadLinkSent as gw, type TrackingNumberAdded as gx, type TrackingNumberEdited as gy, type TrackingLinkAdded as gz, type GetRefundabilityStatusResponse as h, type MetaData as h$, type BulkMarkAsFulfilledResponse as h0, type BulkMarkAsFulfilledByFilterRequest as h1, type BulkMarkAsFulfilledByFilterResponse as h2, type MarkAsUnfulfilledRequest as h3, type MarkAsUnfulfilledResponse as h4, type BulkMarkAsUnfulfilledRequest as h5, type BulkMarkAsUnfulfilledResponse as h6, type BulkMarkAsUnfulfilledByFilterRequest as h7, type BulkMarkAsUnfulfilledByFilterResponse as h8, type BulkSetBusinessLocationRequest as h9, type InvoiceFields as hA, type Customer as hB, type Email as hC, type QuotesAddress as hD, type AddressDescription as hE, type Phone as hF, type Company as hG, type CommonAddress as hH, type CommonAddressStreetOneOf as hI, type Subdivision as hJ, type StandardDetails as hK, type InvoiceDates as hL, type LineItems as hM, type LineItem as hN, type BigDecimalWrapper as hO, type LineItemTax as hP, type Source as hQ, type LineItemMetaData as hR, type Locale as hS, type TotalPrice as hT, type ItemizedFee as hU, type Discount as hV, type DiscountOneDiscountTypeOneOf as hW, type CalculatedTaxes as hX, type CalculatedTax as hY, type Payments as hZ, type InvoicesPayment as h_, type BulkSetBusinessLocationResponse as ha, type BulkSetBusinessLocationResult as hb, type V1MarkOrderAsPaidRequest as hc, type V1MarkOrderAsPaidResponse as hd, type PaymentStatusUpdated as he, type V1BulkMarkOrdersAsPaidRequest as hf, type V1BulkMarkOrdersAsPaidResponse as hg, type V1CreatePaymentGatewayOrderRequest as hh, type V1CreatePaymentGatewayOrderResponse as hi, type GetShipmentsRequest as hj, type GetShipmentsResponse as hk, type AggregateOrdersRequest as hl, type DecrementItemsQuantityRequest as hm, type DecrementData as hn, type DecrementItemsQuantityResponse as ho, type BulkUpdateOrderTagsRequest as hp, type BulkUpdateOrderTagsResult as hq, type Task as hr, type TaskKey as hs, type TaskAction as ht, type TaskActionActionOneOf as hu, type Complete as hv, type Cancel as hw, type Reschedule as hx, type InvoiceSentEvent as hy, type IdAndVersion as hz, type PaymentCollectionCreatePaymentGatewayOrderOptions as i, onOrderCanceled as i$, type InvoiceDynamicPriceTotals as i0, type CustomFieldValue as i1, type Value as i2, type Deposit as i3, type BaseEventMetadata as i4, type EventMetadata as i5, type OrderSearchSpec as i6, type DescriptionLineTypeWithLiterals as i7, type ItemTypePresetWithLiterals as i8, type PaymentOptionTypeWithLiterals as i9, type ManuallyRefundableReasonWithLiterals as iA, type RestockTypeWithLiterals as iB, type TransactionStatusWithLiterals as iC, type AuthorizationCaptureStatusWithLiterals as iD, type AuthorizationVoidStatusWithLiterals as iE, type ReasonWithLiterals as iF, type ActionTypeWithLiterals as iG, type ChargebackStatusWithLiterals as iH, type MembershipPaymentStatusWithLiterals as iI, type RefundStatusWithLiterals as iJ, type VersioningModeWithLiterals as iK, type AdditionalFeeSourceWithLiterals as iL, type ChargeTypeWithLiterals as iM, type SortOrderWithLiterals as iN, type OrderApprovalStrategyWithLiterals as iO, type DeltaPaymentOptionTypeWithLiterals as iP, type InventoryActionWithLiterals as iQ, type PlacementWithLiterals as iR, type SubdivisionTypeWithLiterals as iS, type SourceTypeWithLiterals as iT, type CustomFieldGroupWithLiterals as iU, type ValueTypeWithLiterals as iV, type DepositTypeWithLiterals as iW, type InvoiceStatusWithLiterals as iX, type CommonSearchWithEntityContext as iY, onOrderApproved as iZ, onOrderUpdated as i_, type JurisdictionTypeWithLiterals as ia, type SubscriptionFrequencyWithLiterals as ib, type AdjustmentTypeWithLiterals as ic, type TaxableAddressTypeWithLiterals as id, type PaymentStatusWithLiterals as ie, type FulfillmentStatusWithLiterals as ig, type WeightUnitWithLiterals as ih, type VatTypeWithLiterals as ii, type PickupMethodWithLiterals as ij, type DiscountTypeWithLiterals as ik, type DiscountReasonWithLiterals as il, type LineItemQuantityChangeTypeWithLiterals as im, type ActivityTypeWithLiterals as io, type OrderActivityTypeEnumActivityTypeWithLiterals as ip, type AttributionSourceWithLiterals as iq, type ChannelTypeWithLiterals as ir, type OrderActionTypeWithLiterals as is, type WebhookIdentityTypeWithLiterals as it, type PreviewEmailTypeWithLiterals as iu, type ScheduledActionWithLiterals as iv, type DurationUnitWithLiterals as iw, type PaymentCollectabilityStatusWithLiterals as ix, type RefundableStatusWithLiterals as iy, type NonRefundableReasonWithLiterals as iz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as j, onOrderCreated as j0, onOrderPaymentStatusUpdated as j1, importOrder as j2, setOrderNumberCounter as j3, bulkDeleteImportedOrders as j4, preparePaymentCollection as j5, getPaymentCollectabilityStatus as j6, recordManuallyCollectedPayment as j7, paymentCollectionMarkOrderAsPaid as j8, paymentCollectionBulkMarkOrdersAsPaid as j9, getRefundabilityStatus as ja, paymentCollectionCreatePaymentGatewayOrder as jb, chargeMemberships as jc, triggerRefund as jd, voidAuthorizedPayments as je, captureAuthorizedPayments as jf, getOrder as jg, createOrder as jh, updateOrder as ji, bulkUpdateOrders as jj, updateOrderLineItem as jk, addActivity as jl, addActivities as jm, updateActivity as jn, deleteActivity as jo, cancelOrder as jp, updateOrderStatus as jq, aggregateOrders as jr, bulkUpdateOrderTags as js, type ChargeMembershipsOptions as k, type PaymentRefund as l, type TriggerRefundResponse as m, type TriggerRefundApplicationErrors as n, type VoidAuthorizedPaymentsApplicationErrors as o, type PaymentCapture as p, type CaptureAuthorizedPaymentsResponse as q, type CaptureAuthorizedPaymentsApplicationErrors as r, type GetOrderApplicationErrors as s, type OrderSearch as t, type SearchOrdersResponse as u, type CreateOrderOptions as v, type CreateOrderApplicationErrors as w, type UpdateOrderApplicationErrors as x, type MaskedOrder as y, type BulkUpdateOrdersOptions as z };
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { O as Order, I as ImportOrderResponse, S as SetOrderNumberCounterOptions, a as SetOrderNumberCounterResponse, B as BulkDeleteImportedOrdersOptions, b as BulkDeleteImportedOrdersResponse, P as Price, c as PreparePaymentCollectionOptions, d as PreparePaymentCollectionResponse, e as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, R as RecordManuallyCollectedPaymentApplicationErrors, M as MarkOrderAsPaidResponse, f as PaymentCollectionMarkOrderAsPaidApplicationErrors, g as BulkMarkOrdersAsPaidResponse, h as GetRefundabilityStatusResponse, i as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, j as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, k as ChargeMembershipsOptions, l as PaymentRefund, T as TriggerRefundOptions, m as TriggerRefundResponse, n as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, o as VoidAuthorizedPaymentsApplicationErrors, p as PaymentCapture, q as CaptureAuthorizedPaymentsResponse, r as CaptureAuthorizedPaymentsApplicationErrors, s as GetOrderApplicationErrors, t as OrderSearch, u as SearchOrdersResponse, v as CreateOrderOptions, w as CreateOrderApplicationErrors, U as UpdateOrder, x as UpdateOrderApplicationErrors, y as MaskedOrder, z as BulkUpdateOrdersOptions, A as BulkUpdateOrdersResponse, D as UpdateOrderLineItemIdentifiers, E as UpdateOrderLineItem, F as UpdateOrderLineItemResponse, H as PublicActivity, J as AddActivityResponse, K as AddActivitiesOptions, L as AddActivitiesResponse, N as UpdateActivityIdentifiers, Q as UpdateActivityResponse, W as DeleteActivityIdentifiers, X as DeleteActivityResponse, Y as CancelOrderOptions, Z as CancelOrderResponse, _ as CancelOrderApplicationErrors, $ as OrderStatusWithLiterals, a0 as UpdateOrderStatusResponse, a1 as UpdateOrderStatusApplicationErrors, a2 as AggregateOrdersOptions, a3 as AggregateOrdersResponse, a4 as BulkUpdateOrderTagsOptions, a5 as BulkUpdateOrderTagsResponse, a6 as OrderApprovedEnvelope, a7 as OrderUpdatedEnvelope, a8 as OrderCanceledEnvelope, a9 as OrderCreatedEnvelope, aa as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-sK3jbGGi.mjs';
3
- export { dh as ActionEvent, aJ as ActionType, iC as ActionTypeWithLiterals, bW as Activity, bX as ActivityContentOneOf, ar as ActivityType, ij as ActivityTypeWithLiterals, gJ as AddActivitiesRequest, gH as AddActivityRequest, gk as AddInternalActivityRequest, gG as AddInternalActivityResponse, cT as AdditionalFee, fN as AdditionalFeeDelta, fO as AdditionalFeeDeltaDeltaOneOf, dM as AdditionalFeeRefund, by as Address, hA as AddressDescription, bA as AddressLocation, bx as AddressWithContact, ag as AdjustmentType, i8 as AdjustmentTypeWithLiterals, hh as AggregateOrdersRequest, eN as AggregatedRefundSummary, ed as ApplicationError, bO as AppliedDiscount, fL as AppliedDiscountDelta, fM as AppliedDiscountDeltaDeltaOneOf, bP as AppliedDiscountDiscountSourceOneOf, fX as ArchiveOrderRequest, fY as ArchiveOrderResponse, at as AttributionSource, il as AttributionSourceWithLiterals, eC as AuthorizationActionFailureDetails, eB as AuthorizationCapture, aG as AuthorizationCaptureStatus, iz as AuthorizationCaptureStatusWithLiterals, eA as AuthorizationDetails, eD as AuthorizationVoid, aH as AuthorizationVoidStatus, iA as AuthorizationVoidStatusWithLiterals, cl as AuthorizedPaymentCaptured, ck as AuthorizedPaymentCreated, cm as AuthorizedPaymentVoided, cS as Balance, cR as BalanceSummary, i0 as BaseEventMetadata, f9 as BatchOfTriggerReindexOrderRequest, hK as BigDecimalWrapper, bj as BillingAdjustment, bk as BillingAdjustmentPriceSummary, ee as BulkActionMetadata, f$ as BulkArchiveOrdersByFilterRequest, g0 as BulkArchiveOrdersByFilterResponse, fZ as BulkArchiveOrdersRequest, f_ as BulkArchiveOrdersResponse, da as BulkDeleteImportedOrdersRequest, gZ as BulkMarkAsFulfilledByFilterRequest, g_ as BulkMarkAsFulfilledByFilterResponse, gX as BulkMarkAsFulfilledRequest, gY as BulkMarkAsFulfilledResponse, h3 as BulkMarkAsUnfulfilledByFilterRequest, h4 as BulkMarkAsUnfulfilledByFilterResponse, h1 as BulkMarkAsUnfulfilledRequest, h2 as BulkMarkAsUnfulfilledResponse, ea as BulkMarkOrdersAsPaidRequest, eb as BulkOrderResult, ds as BulkSendBuyerPickupConfirmationEmailsRequest, dt as BulkSendBuyerPickupConfirmationEmailsResponse, dw as BulkSendBuyerShippingConfirmationEmailsRequest, dx as BulkSendBuyerShippingConfirmationEmailsResponse, h5 as BulkSetBusinessLocationRequest, h6 as BulkSetBusinessLocationResponse, h7 as BulkSetBusinessLocationResult, g5 as BulkUnArchiveOrdersByFilterRequest, g6 as BulkUnArchiveOrdersByFilterResponse, g3 as BulkUnArchiveOrdersRequest, g4 as BulkUnArchiveOrdersResponse, hl as BulkUpdateOrderTagsRequest, hm as BulkUpdateOrderTagsResult, fA as BulkUpdateOrdersRequest, bt as BuyerInfo, bu as BuyerInfoIdOneOf, g8 as BuyerInfoUpdate, eR as CalculateRefundItemRequest, eT as CalculateRefundItemResponse, eQ as CalculateRefundRequest, eS as CalculateRefundResponse, hU as CalculatedTax, hT as CalculatedTaxes, hs as Cancel, gR as CancelOrderRequest, eV as CaptureAuthorizedPaymentsRequest, a$ as CatalogReference, cP as ChannelInfo, au as ChannelType, im as ChannelTypeWithLiterals, ek as ChargeMembershipsRequest, eo as ChargeMembershipsResponse, eW as ChargeSavedPaymentMethodRequest, eX as ChargeSavedPaymentMethodResponse, eF as Chargeback, cL as ChargebackCreated, cM as ChargebackReversed, aK as ChargebackStatus, iD as ChargebackStatusWithLiterals, ej as ChargedBy, b5 as Color, fB as CommitDeltasRequest, fR as CommitDeltasResponse, fT as CommittedDiffs, fU as CommittedDiffsShippingUpdateInfoOneOf, hD as CommonAddress, hE as CommonAddressStreetOneOf, iS as CommonSearchWithEntityContext, hC as Company, hr as Complete, bQ as Coupon, fu as CreateOrderRequest, fx as CreateOrderResponse, ei as CreatePaymentGatewayOrderRequest, cN as CreatedBy, cO as CreatedByStringOneOf, cA as CreditCardDetails, ez as CreditCardPaymentMethodDetails, bv as CurrencyConversionDetails, fk as CursorPaging, ft as CursorPagingMetadata, fr as CursorSearch, fs as CursorSearchPagingMethodOneOf, fn as Cursors, bY as CustomActivity, c_ as CustomAllowedActions, cQ as CustomField, aV as CustomFieldGroup, iO as CustomFieldGroupWithLiterals, hZ as CustomFieldValue, hx as Customer, hj as DecrementData, hi as DecrementItemsQuantityRequest, hk as DecrementItemsQuantityResponse, e4 as DelayedCaptureSettings, gL as DeleteActivityRequest, f1 as DeleteByFilterOperation, f0 as DeleteByIdsOperation, bE as DeliveryLogistics, bF as DeliveryLogisticsAddressOneOf, bI as DeliveryTimeSlot, aQ as DeltaPaymentOptionType, iJ as DeltaPaymentOptionTypeWithLiterals, h$ as Deposit, aX as DepositType, iQ as DepositTypeWithLiterals, b0 as DescriptionLine, b2 as DescriptionLineDescriptionLineValueOneOf, b3 as DescriptionLineName, ab as DescriptionLineType, i3 as DescriptionLineTypeWithLiterals, b1 as DescriptionLineValueOneOf, fb as DiffmatokyPayload, bd as DigitalFile, hR as Discount, hS as DiscountOneDiscountTypeOneOf, ap as DiscountReason, ih as DiscountReasonWithLiterals, bT as DiscountRule, bU as DiscountRuleName, ao as DiscountType, ig as DiscountTypeWithLiterals, db as DomainEvent, dc as DomainEventBodyOneOf, gs as DownloadLinkSent, c2 as DraftOrderChangesApplied, fP as DraftOrderCommitSettings, fC as DraftOrderDiffs, fF as DraftOrderDiffsBillingUpdateInfoOneOf, fE as DraftOrderDiffsBuyerUpdateInfoOneOf, fG as DraftOrderDiffsRecipientUpdateInfoOneOf, fD as DraftOrderDiffsShippingUpdateInfoOneOf, e5 as Duration, az as DurationUnit, is as DurationUnitWithLiterals, hy as Email, gB as EmailEdited, e1 as Empty, dd as EntityCreatedEvent, dg as EntityDeletedEvent, df as EntityUpdatedEvent, fc as ErrorInformation, i1 as EventMetadata, bp as ExtendedFields, cI as ExternalReceipt, eJ as ExternalReceiptInfo, b6 as FocalPoint, d0 as FormIdentifier, c$ as FormInfo, bi as FreeTrialPeriod, gz as FulfillerEmailSent, aj as FulfillmentStatus, gW as FulfillmentStatusUpdated, ib as FulfillmentStatusWithLiterals, cU as FulfillmentStatusesAggregate, bB as FullAddressContactDetails, fd as GetOrderRequest, fe as GetOrderResponse, e6 as GetPaymentCollectabilityStatusRequest, ef as GetRefundabilityStatusRequest, hf as GetShipmentsRequest, hg as GetShipmentsResponse, eG as GiftCardPaymentDetails, cr as GiftCardPaymentRefund, hv as IdAndVersion, dj as IdentificationData, dk as IdentificationDataIdOneOf, d8 as ImportOrderRequest, d7 as ImportedOrderDeleted, gl as InternalActivity, gm as InternalActivityContentOneOf, e_ as InternalDocument, f2 as InternalDocumentUpdateByFilterOperation, e$ as InternalDocumentUpdateOperation, ff as InternalQueryOrdersRequest, fl as InternalQueryOrdersResponse, f3 as InternalUpdateExistingOperation, aR as InventoryAction, iK as InventoryActionWithLiterals, fQ as InventoryUpdateDetails, gx as InvoiceAdded, hH as InvoiceDates, hY as InvoiceDynamicPriceTotals, hw as InvoiceFields, gy as InvoiceSent, hu as InvoiceSentEvent, aY as InvoiceStatus, iR as InvoiceStatusWithLiterals, hW as InvoicesPayment, fK as ItemChangedDetails, ec as ItemMetadata, bs as ItemModifier, ba as ItemTaxFullDetails, b8 as ItemType, b9 as ItemTypeItemTypeDataOneOf, ac as ItemTypePreset, i4 as ItemTypePresetWithLiterals, hQ as ItemizedFee, ae as JurisdictionType, i6 as JurisdictionTypeWithLiterals, hJ as LineItem, ce as LineItemAmount, c5 as LineItemChanges, fV as LineItemDelta, fW as LineItemDeltaDeltaOneOf, c9 as LineItemDescriptionLineChange, bV as LineItemDiscount, c1 as LineItemExchangeData, hN as LineItemMetaData, ca as LineItemModifiersChange, c7 as LineItemPriceChange, c8 as LineItemProductNameChange, c6 as LineItemQuantityChange, aq as LineItemQuantityChangeType, ii as LineItemQuantityChangeTypeWithLiterals, dL as LineItemRefund, eP as LineItemRefundSummary, hL as LineItemTax, bc as LineItemTaxBreakdown, bb as LineItemTaxInfo, gN as LineItemUpdate, hI as LineItems, hO as Locale, cX as Location, bm as LocationAndQuantity, cf as ManagedAdditionalFee, cc as ManagedDiscount, cb as ManagedLineItem, aD as ManuallyRefundableReason, iw as ManuallyRefundableReasonWithLiterals, gU as MarkAsFulfilledRequest, gV as MarkAsFulfilledResponse, g$ as MarkAsUnfulfilledRequest, h0 as MarkAsUnfulfilledResponse, e9 as MarkOrderAsPaidRequest, gP as MarkOrderAsSeenByHumanRequest, gQ as MarkOrderAsSeenByHumanResponse, gi as MaskedOrderLineItem, el as MembershipChargeItem, em as MembershipName, eH as MembershipPaymentDetails, cs as MembershipPaymentRefund, aL as MembershipPaymentStatus, iE as MembershipPaymentStatusWithLiterals, bZ as MerchantComment, bR as MerchantDiscount, bS as MerchantDiscountMerchantDiscountReasonOneOf, di as MessageEnvelope, hX as MetaData, bq as ModifierGroup, c0 as NewExchangeOrderCreated, aC as NonRefundableReason, iv as NonRefundableReasonWithLiterals, av as OrderActionType, io as OrderActionTypeWithLiterals, as as OrderActivityTypeEnumActivityType, ik as OrderActivityTypeEnumActivityTypeWithLiterals, aP as OrderApprovalStrategy, iI as OrderApprovalStrategyWithLiterals, d1 as OrderApproved, gr as OrderCanceled, gS as OrderCanceledEventOrderCanceled, c3 as OrderChange, c4 as OrderChangeValueOneOf, fw as OrderCreateNotifications, b$ as OrderCreatedFromExchange, fv as OrderCreationSettings, fS as OrderDeltasCommitted, gp as OrderFulfilled, d6 as OrderImported, d4 as OrderItemsRestocked, aZ as OrderLineItem, fJ as OrderLineItemChangedDetails, gq as OrderNotFulfilled, go as OrderPaid, gD as OrderPartiallyPaid, gE as OrderPending, gn as OrderPlaced, b_ as OrderRefunded, gF as OrderRejected, d3 as OrderRejectedEventOrderRejected, i2 as OrderSearchSpec, cY as OrderSettings, cZ as OrderSettingsAllowedActionsOneOf, an as OrderStatus, bN as OrderTaxBreakdown, bM as OrderTaxInfo, et as OrderTransactions, d2 as OrdersExperiments, eu as Payment, cB as PaymentCanceled, cC as PaymentCanceledPaymentDetailsOneOf, aA as PaymentCollectabilityStatus, it as PaymentCollectabilityStatusWithLiterals, cD as PaymentDeclined, cE as PaymentDeclinedPaymentDetailsOneOf, ad as PaymentOptionType, i5 as PaymentOptionTypeWithLiterals, ev as PaymentPaymentDetailsOneOf, cw as PaymentPending, cx as PaymentPendingPaymentDetailsOneOf, ew as PaymentReceiptInfoOneOf, cu as PaymentRefundFailed, ct as PaymentRefunded, ai as PaymentStatus, ha as PaymentStatusUpdated, ia as PaymentStatusWithLiterals, hV as Payments, hB as Phone, b7 as PhysicalProperties, bH as PickupAddress, bG as PickupDetails, am as PickupMethod, ie as PickupMethodWithLiterals, gC as PickupReadyEmailSent, aS as Placement, iL as PlacementWithLiterals, b4 as PlainTextValue, fj as PlatformPaging, fm as PlatformPagingMetadata, fg as PlatformQuery, fh as PlatformQueryPagingMethodOneOf, e2 as PreparePaymentCollectionRequest, dV as PreviewBuyerConfirmationEmailRequest, dW as PreviewBuyerConfirmationEmailResponse, dT as PreviewBuyerPaymentsReceivedEmailRequest, dU as PreviewBuyerPaymentsReceivedEmailResponse, dX as PreviewBuyerPickupConfirmationEmailRequest, dY as PreviewBuyerPickupConfirmationEmailResponse, dP as PreviewCancelEmailRequest, dQ as PreviewCancelEmailResponse, dR as PreviewCancelRefundEmailRequest, dS as PreviewCancelRefundEmailResponse, dG as PreviewEmailByTypeRequest, dH as PreviewEmailByTypeResponse, ax as PreviewEmailType, iq as PreviewEmailTypeWithLiterals, dI as PreviewRefundEmailRequest, dO as PreviewRefundEmailResponse, d$ as PreviewResendDownloadLinksEmailRequest, e0 as PreviewResendDownloadLinksEmailResponse, dZ as PreviewShippingConfirmationEmailRequest, d_ as PreviewShippingConfirmationEmailResponse, bl as PriceDescription, bw as PriceSummary, a_ as ProductName, gI as PublicActivityContentOneOf, fo as QueryOrderRequest, fp as QueryOrderResponse, hz as QuotesAddress, aI as Reason, iB as ReasonWithLiterals, cF as ReceiptCreated, cG as ReceiptCreatedReceiptInfoOneOf, cJ as ReceiptSent, cK as ReceiptSentReceiptInfoOneOf, e7 as RecordManuallyCollectedPaymentRequest, e8 as RecordManuallyCollectedPaymentResponse, e3 as RedirectUrls, eK as Refund, dJ as RefundDetails, cn as RefundInitiated, dK as RefundItem, eO as RefundItemsBreakdown, eq as RefundSideEffects, aM as RefundStatus, eM as RefundStatusInfo, iF as RefundStatusWithLiterals, eL as RefundTransaction, eg as Refundability, eh as RefundabilityAdditionalRefundabilityInfoOneOf, aB as RefundableStatus, iu as RefundableStatusWithLiterals, cv as RefundedAsStoreCredit, co as RefundedPayment, cp as RefundedPaymentKindOneOf, cy as RegularPayment, ex as RegularPaymentDetails, ey as RegularPaymentDetailsPaymentMethodDetailsOneOf, cz as RegularPaymentPaymentMethodDetailsOneOf, cq as RegularPaymentRefund, ht as Reschedule, er as RestockInfo, es as RestockItem, aE as RestockType, ix as RestockTypeWithLiterals, de as RestoreInfo, cj as SavedPaymentMethod, ay as ScheduledAction, ir as ScheduledActionWithLiterals, fq as SearchOrdersRequest, dl as SendBuyerConfirmationEmailRequest, dm as SendBuyerConfirmationEmailResponse, dn as SendBuyerPaymentsReceivedEmailRequest, dp as SendBuyerPaymentsReceivedEmailResponse, dq as SendBuyerPickupConfirmationEmailRequest, dr as SendBuyerPickupConfirmationEmailResponse, du as SendBuyerShippingConfirmationEmailRequest, dv as SendBuyerShippingConfirmationEmailResponse, dA as SendCancelRefundEmailRequest, dB as SendCancelRefundEmailResponse, dy as SendMerchantOrderReceivedNotificationRequest, dz as SendMerchantOrderReceivedNotificationResponse, dE as SendMerchantOrderReceivedPushRequest, dF as SendMerchantOrderReceivedPushResponse, dC as SendRefundEmailRequest, dD as SendRefundEmailResponse, en as ServiceProperties, d9 as SetOrderNumberCounterRequest, gA as ShippingAddressEdited, gw as ShippingConfirmationEmailSent, ci as ShippingInformation, ch as ShippingInformationChange, bJ as ShippingPrice, dN as ShippingRefund, bK as ShippingRegion, aO as SortOrder, iH as SortOrderWithLiterals, fi as Sorting, hM as Source, aU as SourceType, iN as SourceTypeWithLiterals, hG as StandardDetails, bz as StreetAddress, hF as Subdivision, aT as SubdivisionType, iM as SubdivisionTypeWithLiterals, bg as SubscriptionDescription, af as SubscriptionFrequency, i7 as SubscriptionFrequencyWithLiterals, be as SubscriptionInfo, bh as SubscriptionSettings, bf as SubscriptionTitle, cW as TagList, cV as Tags, hn as Task, hp as TaskAction, hq as TaskActionActionOneOf, ho as TaskKey, bL as TaxSummary, bn as TaxableAddress, bo as TaxableAddressTaxableAddressDataOneOf, ah as TaxableAddressType, i9 as TaxableAddressTypeWithLiterals, hP as TotalPrice, cg as TotalPriceChange, gv as TrackingLinkAdded, gt as TrackingNumberAdded, gu as TrackingNumberEdited, aF as TransactionStatus, iy as TransactionStatusWithLiterals, br as TranslatableString, cd as TranslatedValue, ep as TriggerRefundRequest, fa as TriggerReindexOrderRequest, f7 as TriggerReindexRequest, f8 as TriggerReindexResponse, g1 as UnArchiveOrderRequest, g2 as UnArchiveOrderResponse, gK as UpdateActivityRequest, ge as UpdateBillingContactDetailsRequest, gf as UpdateBillingContactDetailsResponse, ga as UpdateBuyerEmailRequest, gb as UpdateBuyerEmailResponse, g7 as UpdateBuyerInfoRequest, g9 as UpdateBuyerInfoResponse, eY as UpdateInternalDocumentsEvent, eZ as UpdateInternalDocumentsEventOperationOneOf, gM as UpdateLineItemsDescriptionLinesRequest, gO as UpdateLineItemsDescriptionLinesResponse, gg as UpdateOrderLineItemRequest, gh as UpdateOrderLineItemsRequest, gj as UpdateOrderLineItemsResponse, fy as UpdateOrderRequest, fz as UpdateOrderResponse, gc as UpdateOrderShippingAddressRequest, gd as UpdateOrderShippingAddressResponse, gT as UpdateOrderStatusRequest, hb as V1BulkMarkOrdersAsPaidRequest, hc as V1BulkMarkOrdersAsPaidResponse, hd as V1CreatePaymentGatewayOrderRequest, he as V1CreatePaymentGatewayOrderResponse, fH as V1LineItemDelta, fI as V1LineItemDeltaDeltaOneOf, h8 as V1MarkOrderAsPaidRequest, h9 as V1MarkOrderAsPaidResponse, d5 as V1RestockItem, eE as V1ScheduledAction, bD as V1ShippingInformation, h_ as Value, aW as ValueType, iP as ValueTypeWithLiterals, bC as VatId, al as VatType, id as VatTypeWithLiterals, f5 as VersionedDeleteByIdsOperation, f6 as VersionedDocumentId, f4 as VersionedDocumentUpdateOperation, aN as VersioningMode, iG as VersioningModeWithLiterals, eU as VoidAuthorizedPaymentsRequest, aw as WebhookIdentityType, ip as WebhookIdentityTypeWithLiterals, ak as WeightUnit, ic as WeightUnitWithLiterals, cH as WixReceipt, eI as WixReceiptInfo } from './ecom-v1-order-orders.universal-sK3jbGGi.mjs';
2
+ import { O as Order, I as ImportOrderResponse, S as SetOrderNumberCounterOptions, a as SetOrderNumberCounterResponse, B as BulkDeleteImportedOrdersOptions, b as BulkDeleteImportedOrdersResponse, P as Price, c as PreparePaymentCollectionOptions, d as PreparePaymentCollectionResponse, e as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, R as RecordManuallyCollectedPaymentApplicationErrors, M as MarkOrderAsPaidResponse, f as PaymentCollectionMarkOrderAsPaidApplicationErrors, g as BulkMarkOrdersAsPaidResponse, h as GetRefundabilityStatusResponse, i as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, j as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, k as ChargeMembershipsOptions, l as PaymentRefund, T as TriggerRefundOptions, m as TriggerRefundResponse, n as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, o as VoidAuthorizedPaymentsApplicationErrors, p as PaymentCapture, q as CaptureAuthorizedPaymentsResponse, r as CaptureAuthorizedPaymentsApplicationErrors, s as GetOrderApplicationErrors, t as OrderSearch, u as SearchOrdersResponse, v as CreateOrderOptions, w as CreateOrderApplicationErrors, U as UpdateOrder, x as UpdateOrderApplicationErrors, y as MaskedOrder, z as BulkUpdateOrdersOptions, A as BulkUpdateOrdersResponse, D as UpdateOrderLineItemIdentifiers, E as UpdateOrderLineItem, F as UpdateOrderLineItemResponse, H as PublicActivity, J as AddActivityResponse, K as AddActivitiesOptions, L as AddActivitiesResponse, N as UpdateActivityIdentifiers, Q as UpdateActivityResponse, W as DeleteActivityIdentifiers, X as DeleteActivityResponse, Y as CancelOrderOptions, Z as CancelOrderResponse, _ as CancelOrderApplicationErrors, $ as OrderStatusWithLiterals, a0 as UpdateOrderStatusResponse, a1 as UpdateOrderStatusApplicationErrors, a2 as AggregateOrdersOptions, a3 as AggregateOrdersResponse, a4 as BulkUpdateOrderTagsOptions, a5 as BulkUpdateOrderTagsResponse, a6 as OrderApprovedEnvelope, a7 as OrderUpdatedEnvelope, a8 as OrderCanceledEnvelope, a9 as OrderCreatedEnvelope, aa as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-CjdFmcMT.mjs';
3
+ export { dj as ActionEvent, aJ as ActionType, iG as ActionTypeWithLiterals, bY as Activity, bZ as ActivityContentOneOf, ar as ActivityType, io as ActivityTypeWithLiterals, gN as AddActivitiesRequest, gL as AddActivityRequest, go as AddInternalActivityRequest, gK as AddInternalActivityResponse, cV as AdditionalFee, fR as AdditionalFeeDelta, fS as AdditionalFeeDeltaDeltaOneOf, dO as AdditionalFeeRefund, aO as AdditionalFeeSource, iL as AdditionalFeeSourceWithLiterals, bA as Address, hE as AddressDescription, bC as AddressLocation, bz as AddressWithContact, ag as AdjustmentType, ic as AdjustmentTypeWithLiterals, hl as AggregateOrdersRequest, eP as AggregatedRefundSummary, ef as ApplicationError, bQ as AppliedDiscount, fP as AppliedDiscountDelta, fQ as AppliedDiscountDeltaDeltaOneOf, bR as AppliedDiscountDiscountSourceOneOf, f$ as ArchiveOrderRequest, g0 as ArchiveOrderResponse, at as AttributionSource, iq as AttributionSourceWithLiterals, eE as AuthorizationActionFailureDetails, eD as AuthorizationCapture, aG as AuthorizationCaptureStatus, iD as AuthorizationCaptureStatusWithLiterals, eC as AuthorizationDetails, eF as AuthorizationVoid, aH as AuthorizationVoidStatus, iE as AuthorizationVoidStatusWithLiterals, cn as AuthorizedPaymentCaptured, cm as AuthorizedPaymentCreated, co as AuthorizedPaymentVoided, cU as Balance, cT as BalanceSummary, i4 as BaseEventMetadata, fb as BatchOfTriggerReindexOrderRequest, hO as BigDecimalWrapper, bl as BillingAdjustment, bm as BillingAdjustmentPriceSummary, eg as BulkActionMetadata, g3 as BulkArchiveOrdersByFilterRequest, g4 as BulkArchiveOrdersByFilterResponse, g1 as BulkArchiveOrdersRequest, g2 as BulkArchiveOrdersResponse, dc as BulkDeleteImportedOrdersRequest, h1 as BulkMarkAsFulfilledByFilterRequest, h2 as BulkMarkAsFulfilledByFilterResponse, g$ as BulkMarkAsFulfilledRequest, h0 as BulkMarkAsFulfilledResponse, h7 as BulkMarkAsUnfulfilledByFilterRequest, h8 as BulkMarkAsUnfulfilledByFilterResponse, h5 as BulkMarkAsUnfulfilledRequest, h6 as BulkMarkAsUnfulfilledResponse, ec as BulkMarkOrdersAsPaidRequest, ed as BulkOrderResult, du as BulkSendBuyerPickupConfirmationEmailsRequest, dv as BulkSendBuyerPickupConfirmationEmailsResponse, dy as BulkSendBuyerShippingConfirmationEmailsRequest, dz as BulkSendBuyerShippingConfirmationEmailsResponse, h9 as BulkSetBusinessLocationRequest, ha as BulkSetBusinessLocationResponse, hb as BulkSetBusinessLocationResult, g9 as BulkUnArchiveOrdersByFilterRequest, ga as BulkUnArchiveOrdersByFilterResponse, g7 as BulkUnArchiveOrdersRequest, g8 as BulkUnArchiveOrdersResponse, hp as BulkUpdateOrderTagsRequest, hq as BulkUpdateOrderTagsResult, fE as BulkUpdateOrdersRequest, bv as BuyerInfo, bw as BuyerInfoIdOneOf, gc as BuyerInfoUpdate, eT as CalculateRefundItemRequest, eV as CalculateRefundItemResponse, eS as CalculateRefundRequest, eU as CalculateRefundResponse, hY as CalculatedTax, hX as CalculatedTaxes, hw as Cancel, gV as CancelOrderRequest, eX as CaptureAuthorizedPaymentsRequest, b1 as CatalogReference, cR as ChannelInfo, au as ChannelType, ir as ChannelTypeWithLiterals, em as ChargeMembershipsRequest, eq as ChargeMembershipsResponse, eY as ChargeSavedPaymentMethodRequest, eZ as ChargeSavedPaymentMethodResponse, aP as ChargeType, iM as ChargeTypeWithLiterals, eH as Chargeback, cN as ChargebackCreated, cO as ChargebackReversed, aK as ChargebackStatus, iH as ChargebackStatusWithLiterals, el as ChargedBy, b7 as Color, fF as CommitDeltasRequest, fV as CommitDeltasResponse, fX as CommittedDiffs, fY as CommittedDiffsShippingUpdateInfoOneOf, hH as CommonAddress, hI as CommonAddressStreetOneOf, iY as CommonSearchWithEntityContext, hG as Company, hv as Complete, bS as Coupon, fy as CreateOrderRequest, fB as CreateOrderResponse, ek as CreatePaymentGatewayOrderRequest, cP as CreatedBy, cQ as CreatedByStringOneOf, cC as CreditCardDetails, eB as CreditCardPaymentMethodDetails, bx as CurrencyConversionDetails, fo as CursorPaging, fx as CursorPagingMetadata, fv as CursorSearch, fw as CursorSearchPagingMethodOneOf, fr as Cursors, b_ as CustomActivity, d0 as CustomAllowedActions, cS as CustomField, aX as CustomFieldGroup, iU as CustomFieldGroupWithLiterals, i1 as CustomFieldValue, hB as Customer, hn as DecrementData, hm as DecrementItemsQuantityRequest, ho as DecrementItemsQuantityResponse, e6 as DelayedCaptureSettings, gP as DeleteActivityRequest, f3 as DeleteByFilterOperation, f2 as DeleteByIdsOperation, bG as DeliveryLogistics, bH as DeliveryLogisticsAddressOneOf, bK as DeliveryTimeSlot, aS as DeltaPaymentOptionType, iP as DeltaPaymentOptionTypeWithLiterals, i3 as Deposit, aZ as DepositType, iW as DepositTypeWithLiterals, b2 as DescriptionLine, b4 as DescriptionLineDescriptionLineValueOneOf, b5 as DescriptionLineName, ab as DescriptionLineType, i7 as DescriptionLineTypeWithLiterals, b3 as DescriptionLineValueOneOf, ff as DiffmatokyPayload, bf as DigitalFile, hV as Discount, hW as DiscountOneDiscountTypeOneOf, ap as DiscountReason, il as DiscountReasonWithLiterals, bV as DiscountRule, bW as DiscountRuleName, ao as DiscountType, ik as DiscountTypeWithLiterals, dd as DomainEvent, de as DomainEventBodyOneOf, gw as DownloadLinkSent, c4 as DraftOrderChangesApplied, fT as DraftOrderCommitSettings, fG as DraftOrderDiffs, fJ as DraftOrderDiffsBillingUpdateInfoOneOf, fI as DraftOrderDiffsBuyerUpdateInfoOneOf, fK as DraftOrderDiffsRecipientUpdateInfoOneOf, fH as DraftOrderDiffsShippingUpdateInfoOneOf, e7 as Duration, az as DurationUnit, iw as DurationUnitWithLiterals, hC as Email, gF as EmailEdited, e3 as Empty, df as EntityCreatedEvent, di as EntityDeletedEvent, dh as EntityUpdatedEvent, fg as ErrorInformation, i5 as EventMetadata, br as ExtendedFields, cK as ExternalReceipt, eL as ExternalReceiptInfo, b8 as FocalPoint, d2 as FormIdentifier, d1 as FormInfo, bk as FreeTrialPeriod, gD as FulfillerEmailSent, aj as FulfillmentStatus, g_ as FulfillmentStatusUpdated, ig as FulfillmentStatusWithLiterals, cW as FulfillmentStatusesAggregate, bD as FullAddressContactDetails, fh as GetOrderRequest, fi as GetOrderResponse, e8 as GetPaymentCollectabilityStatusRequest, eh as GetRefundabilityStatusRequest, hj as GetShipmentsRequest, hk as GetShipmentsResponse, eI as GiftCardPaymentDetails, ct as GiftCardPaymentRefund, hz as IdAndVersion, dl as IdentificationData, dm as IdentificationDataIdOneOf, da as ImportOrderRequest, d9 as ImportedOrderDeleted, gp as InternalActivity, gq as InternalActivityContentOneOf, f0 as InternalDocument, f4 as InternalDocumentUpdateByFilterOperation, f1 as InternalDocumentUpdateOperation, fj as InternalQueryOrdersRequest, fp as InternalQueryOrdersResponse, f5 as InternalUpdateExistingOperation, aT as InventoryAction, iQ as InventoryActionWithLiterals, fU as InventoryUpdateDetails, gB as InvoiceAdded, hL as InvoiceDates, i0 as InvoiceDynamicPriceTotals, hA as InvoiceFields, gC as InvoiceSent, hy as InvoiceSentEvent, a_ as InvoiceStatus, iX as InvoiceStatusWithLiterals, h_ as InvoicesPayment, fO as ItemChangedDetails, ee as ItemMetadata, bu as ItemModifier, bc as ItemTaxFullDetails, ba as ItemType, bb as ItemTypeItemTypeDataOneOf, ac as ItemTypePreset, i8 as ItemTypePresetWithLiterals, hU as ItemizedFee, ae as JurisdictionType, ia as JurisdictionTypeWithLiterals, hN as LineItem, cg as LineItemAmount, c7 as LineItemChanges, fZ as LineItemDelta, f_ as LineItemDeltaDeltaOneOf, cb as LineItemDescriptionLineChange, bX as LineItemDiscount, c3 as LineItemExchangeData, hR as LineItemMetaData, cc as LineItemModifiersChange, c9 as LineItemPriceChange, ca as LineItemProductNameChange, c8 as LineItemQuantityChange, aq as LineItemQuantityChangeType, im as LineItemQuantityChangeTypeWithLiterals, dN as LineItemRefund, eR as LineItemRefundSummary, hP as LineItemTax, be as LineItemTaxBreakdown, bd as LineItemTaxInfo, gR as LineItemUpdate, hM as LineItems, hS as Locale, cZ as Location, bo as LocationAndQuantity, ch as ManagedAdditionalFee, ce as ManagedDiscount, cd as ManagedLineItem, aD as ManuallyRefundableReason, iA as ManuallyRefundableReasonWithLiterals, gY as MarkAsFulfilledRequest, gZ as MarkAsFulfilledResponse, h3 as MarkAsUnfulfilledRequest, h4 as MarkAsUnfulfilledResponse, eb as MarkOrderAsPaidRequest, gT as MarkOrderAsSeenByHumanRequest, gU as MarkOrderAsSeenByHumanResponse, gm as MaskedOrderLineItem, en as MembershipChargeItem, eo as MembershipName, eJ as MembershipPaymentDetails, cu as MembershipPaymentRefund, aL as MembershipPaymentStatus, iI as MembershipPaymentStatusWithLiterals, b$ as MerchantComment, bT as MerchantDiscount, bU as MerchantDiscountMerchantDiscountReasonOneOf, dk as MessageEnvelope, h$ as MetaData, bs as ModifierGroup, c2 as NewExchangeOrderCreated, aC as NonRefundableReason, iz as NonRefundableReasonWithLiterals, av as OrderActionType, is as OrderActionTypeWithLiterals, as as OrderActivityTypeEnumActivityType, ip as OrderActivityTypeEnumActivityTypeWithLiterals, aR as OrderApprovalStrategy, iO as OrderApprovalStrategyWithLiterals, d3 as OrderApproved, gv as OrderCanceled, gW as OrderCanceledEventOrderCanceled, c5 as OrderChange, c6 as OrderChangeValueOneOf, fA as OrderCreateNotifications, c1 as OrderCreatedFromExchange, fz as OrderCreationSettings, fW as OrderDeltasCommitted, gt as OrderFulfilled, d8 as OrderImported, d6 as OrderItemsRestocked, a$ as OrderLineItem, fN as OrderLineItemChangedDetails, gu as OrderNotFulfilled, gs as OrderPaid, gH as OrderPartiallyPaid, gI as OrderPending, gr as OrderPlaced, c0 as OrderRefunded, gJ as OrderRejected, d5 as OrderRejectedEventOrderRejected, i6 as OrderSearchSpec, c_ as OrderSettings, c$ as OrderSettingsAllowedActionsOneOf, an as OrderStatus, bP as OrderTaxBreakdown, bO as OrderTaxInfo, ev as OrderTransactions, d4 as OrdersExperiments, ew as Payment, cD as PaymentCanceled, cE as PaymentCanceledPaymentDetailsOneOf, aA as PaymentCollectabilityStatus, ix as PaymentCollectabilityStatusWithLiterals, cF as PaymentDeclined, cG as PaymentDeclinedPaymentDetailsOneOf, ad as PaymentOptionType, i9 as PaymentOptionTypeWithLiterals, ex as PaymentPaymentDetailsOneOf, cy as PaymentPending, cz as PaymentPendingPaymentDetailsOneOf, ey as PaymentReceiptInfoOneOf, cw as PaymentRefundFailed, cv as PaymentRefunded, ai as PaymentStatus, he as PaymentStatusUpdated, ie as PaymentStatusWithLiterals, hZ as Payments, hF as Phone, b9 as PhysicalProperties, bJ as PickupAddress, bI as PickupDetails, am as PickupMethod, ij as PickupMethodWithLiterals, gG as PickupReadyEmailSent, aU as Placement, iR as PlacementWithLiterals, b6 as PlainTextValue, fe as PlatformFee, fd as PlatformFeeSummary, fn as PlatformPaging, fq as PlatformPagingMetadata, fk as PlatformQuery, fl as PlatformQueryPagingMethodOneOf, e4 as PreparePaymentCollectionRequest, dX as PreviewBuyerConfirmationEmailRequest, dY as PreviewBuyerConfirmationEmailResponse, dV as PreviewBuyerPaymentsReceivedEmailRequest, dW as PreviewBuyerPaymentsReceivedEmailResponse, dZ as PreviewBuyerPickupConfirmationEmailRequest, d_ as PreviewBuyerPickupConfirmationEmailResponse, dR as PreviewCancelEmailRequest, dS as PreviewCancelEmailResponse, dT as PreviewCancelRefundEmailRequest, dU as PreviewCancelRefundEmailResponse, dI as PreviewEmailByTypeRequest, dJ as PreviewEmailByTypeResponse, ax as PreviewEmailType, iu as PreviewEmailTypeWithLiterals, dK as PreviewRefundEmailRequest, dQ as PreviewRefundEmailResponse, e1 as PreviewResendDownloadLinksEmailRequest, e2 as PreviewResendDownloadLinksEmailResponse, d$ as PreviewShippingConfirmationEmailRequest, e0 as PreviewShippingConfirmationEmailResponse, bn as PriceDescription, by as PriceSummary, b0 as ProductName, gM as PublicActivityContentOneOf, fs as QueryOrderRequest, ft as QueryOrderResponse, hD as QuotesAddress, aI as Reason, iF as ReasonWithLiterals, cH as ReceiptCreated, cI as ReceiptCreatedReceiptInfoOneOf, cL as ReceiptSent, cM as ReceiptSentReceiptInfoOneOf, e9 as RecordManuallyCollectedPaymentRequest, ea as RecordManuallyCollectedPaymentResponse, e5 as RedirectUrls, eM as Refund, dL as RefundDetails, cp as RefundInitiated, dM as RefundItem, eQ as RefundItemsBreakdown, es as RefundSideEffects, aM as RefundStatus, eO as RefundStatusInfo, iJ as RefundStatusWithLiterals, eN as RefundTransaction, ei as Refundability, ej as RefundabilityAdditionalRefundabilityInfoOneOf, aB as RefundableStatus, iy as RefundableStatusWithLiterals, cx as RefundedAsStoreCredit, cq as RefundedPayment, cr as RefundedPaymentKindOneOf, cA as RegularPayment, ez as RegularPaymentDetails, eA as RegularPaymentDetailsPaymentMethodDetailsOneOf, cB as RegularPaymentPaymentMethodDetailsOneOf, cs as RegularPaymentRefund, hx as Reschedule, et as RestockInfo, eu as RestockItem, aE as RestockType, iB as RestockTypeWithLiterals, dg as RestoreInfo, cl as SavedPaymentMethod, ay as ScheduledAction, iv as ScheduledActionWithLiterals, fu as SearchOrdersRequest, dn as SendBuyerConfirmationEmailRequest, dp as SendBuyerConfirmationEmailResponse, dq as SendBuyerPaymentsReceivedEmailRequest, dr as SendBuyerPaymentsReceivedEmailResponse, ds as SendBuyerPickupConfirmationEmailRequest, dt as SendBuyerPickupConfirmationEmailResponse, dw as SendBuyerShippingConfirmationEmailRequest, dx as SendBuyerShippingConfirmationEmailResponse, dC as SendCancelRefundEmailRequest, dD as SendCancelRefundEmailResponse, dA as SendMerchantOrderReceivedNotificationRequest, dB as SendMerchantOrderReceivedNotificationResponse, dG as SendMerchantOrderReceivedPushRequest, dH as SendMerchantOrderReceivedPushResponse, dE as SendRefundEmailRequest, dF as SendRefundEmailResponse, ep as ServiceProperties, db as SetOrderNumberCounterRequest, gE as ShippingAddressEdited, gA as ShippingConfirmationEmailSent, ck as ShippingInformation, cj as ShippingInformationChange, bL as ShippingPrice, dP as ShippingRefund, bM as ShippingRegion, aQ as SortOrder, iN as SortOrderWithLiterals, fm as Sorting, hQ as Source, aW as SourceType, iT as SourceTypeWithLiterals, hK as StandardDetails, bB as StreetAddress, hJ as Subdivision, aV as SubdivisionType, iS as SubdivisionTypeWithLiterals, bi as SubscriptionDescription, af as SubscriptionFrequency, ib as SubscriptionFrequencyWithLiterals, bg as SubscriptionInfo, bj as SubscriptionSettings, bh as SubscriptionTitle, cY as TagList, cX as Tags, hr as Task, ht as TaskAction, hu as TaskActionActionOneOf, hs as TaskKey, bN as TaxSummary, bp as TaxableAddress, bq as TaxableAddressTaxableAddressDataOneOf, ah as TaxableAddressType, id as TaxableAddressTypeWithLiterals, hT as TotalPrice, ci as TotalPriceChange, gz as TrackingLinkAdded, gx as TrackingNumberAdded, gy as TrackingNumberEdited, aF as TransactionStatus, iC as TransactionStatusWithLiterals, bt as TranslatableString, cf as TranslatedValue, er as TriggerRefundRequest, fc as TriggerReindexOrderRequest, f9 as TriggerReindexRequest, fa as TriggerReindexResponse, g5 as UnArchiveOrderRequest, g6 as UnArchiveOrderResponse, gO as UpdateActivityRequest, gi as UpdateBillingContactDetailsRequest, gj as UpdateBillingContactDetailsResponse, ge as UpdateBuyerEmailRequest, gf as UpdateBuyerEmailResponse, gb as UpdateBuyerInfoRequest, gd as UpdateBuyerInfoResponse, e_ as UpdateInternalDocumentsEvent, e$ as UpdateInternalDocumentsEventOperationOneOf, gQ as UpdateLineItemsDescriptionLinesRequest, gS as UpdateLineItemsDescriptionLinesResponse, gk as UpdateOrderLineItemRequest, gl as UpdateOrderLineItemsRequest, gn as UpdateOrderLineItemsResponse, fC as UpdateOrderRequest, fD as UpdateOrderResponse, gg as UpdateOrderShippingAddressRequest, gh as UpdateOrderShippingAddressResponse, gX as UpdateOrderStatusRequest, hf as V1BulkMarkOrdersAsPaidRequest, hg as V1BulkMarkOrdersAsPaidResponse, hh as V1CreatePaymentGatewayOrderRequest, hi as V1CreatePaymentGatewayOrderResponse, fL as V1LineItemDelta, fM as V1LineItemDeltaDeltaOneOf, hc as V1MarkOrderAsPaidRequest, hd as V1MarkOrderAsPaidResponse, d7 as V1RestockItem, eG as V1ScheduledAction, bF as V1ShippingInformation, i2 as Value, aY as ValueType, iV as ValueTypeWithLiterals, bE as VatId, al as VatType, ii as VatTypeWithLiterals, f7 as VersionedDeleteByIdsOperation, f8 as VersionedDocumentId, f6 as VersionedDocumentUpdateOperation, aN as VersioningMode, iK as VersioningModeWithLiterals, eW as VoidAuthorizedPaymentsRequest, aw as WebhookIdentityType, it as WebhookIdentityTypeWithLiterals, ak as WeightUnit, ih as WeightUnitWithLiterals, cJ as WixReceipt, eK as WixReceiptInfo } from './ecom-v1-order-orders.universal-CjdFmcMT.mjs';
4
4
 
5
5
  /** @internal */
6
6
  declare function importOrder$1(httpClient: HttpClient): ImportOrderSignature;
@@ -2056,6 +2056,21 @@ var VersioningMode = /* @__PURE__ */ ((VersioningMode2) => {
2056
2056
  VersioningMode2["GREATER_OR_EQUAL"] = "GREATER_OR_EQUAL";
2057
2057
  return VersioningMode2;
2058
2058
  })(VersioningMode || {});
2059
+ var AdditionalFeeSource = /* @__PURE__ */ ((AdditionalFeeSource2) => {
2060
+ AdditionalFeeSource2["UNKNOWN_ADDITIONAL_FEE_SOURCE"] = "UNKNOWN_ADDITIONAL_FEE_SOURCE";
2061
+ AdditionalFeeSource2["SERVICE_PLUGIN"] = "SERVICE_PLUGIN";
2062
+ AdditionalFeeSource2["ITEM"] = "ITEM";
2063
+ AdditionalFeeSource2["MANUAL"] = "MANUAL";
2064
+ AdditionalFeeSource2["SHIPPING"] = "SHIPPING";
2065
+ AdditionalFeeSource2["PLATFORM"] = "PLATFORM";
2066
+ return AdditionalFeeSource2;
2067
+ })(AdditionalFeeSource || {});
2068
+ var ChargeType = /* @__PURE__ */ ((ChargeType2) => {
2069
+ ChargeType2["UNKNOWN_CHARGE_TYPE"] = "UNKNOWN_CHARGE_TYPE";
2070
+ ChargeType2["PASS_ON"] = "PASS_ON";
2071
+ ChargeType2["ABSORBED"] = "ABSORBED";
2072
+ return ChargeType2;
2073
+ })(ChargeType || {});
2059
2074
  var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
2060
2075
  SortOrder2["ASC"] = "ASC";
2061
2076
  SortOrder2["DESC"] = "DESC";
@@ -3779,11 +3794,13 @@ var onOrderPaymentStatusUpdated2 = createEventModule(
3779
3794
  export {
3780
3795
  ActionType,
3781
3796
  ActivityType,
3797
+ AdditionalFeeSource,
3782
3798
  AdjustmentType,
3783
3799
  AttributionSource,
3784
3800
  AuthorizationCaptureStatus,
3785
3801
  AuthorizationVoidStatus,
3786
3802
  ChannelType,
3803
+ ChargeType,
3787
3804
  ChargebackStatus,
3788
3805
  CustomFieldGroup,
3789
3806
  DeltaPaymentOptionType,