@wix/auto_sdk_ecom_orders 1.0.270 → 1.0.272

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 (45) hide show
  1. package/build/cjs/{ecom-v1-order-orders.universal-UEDhg1yc.d.ts → ecom-v1-order-orders.universal-B8Xp6Upp.d.ts} +65 -22
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +27 -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 +27 -0
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +66 -23
  9. package/build/cjs/meta.js +27 -0
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/cjs/schemas.d.ts +1 -1
  12. package/build/es/{ecom-v1-order-orders.universal-UEDhg1yc.d.mts → ecom-v1-order-orders.universal-B8Xp6Upp.d.mts} +65 -22
  13. package/build/es/index.d.mts +2 -2
  14. package/build/es/index.mjs +26 -0
  15. package/build/es/index.mjs.map +1 -1
  16. package/build/es/index.typings.d.mts +2 -2
  17. package/build/es/index.typings.mjs +26 -0
  18. package/build/es/index.typings.mjs.map +1 -1
  19. package/build/es/meta.d.mts +66 -23
  20. package/build/es/meta.mjs +26 -0
  21. package/build/es/meta.mjs.map +1 -1
  22. package/build/es/schemas.d.mts +1 -1
  23. package/build/internal/cjs/{ecom-v1-order-orders.universal-D0jFG-D_.d.ts → ecom-v1-order-orders.universal-B3g4xg2t.d.ts} +100 -21
  24. package/build/internal/cjs/index.d.ts +3 -3
  25. package/build/internal/cjs/index.js +27 -0
  26. package/build/internal/cjs/index.js.map +1 -1
  27. package/build/internal/cjs/index.typings.d.ts +2 -2
  28. package/build/internal/cjs/index.typings.js +27 -0
  29. package/build/internal/cjs/index.typings.js.map +1 -1
  30. package/build/internal/cjs/meta.d.ts +66 -23
  31. package/build/internal/cjs/meta.js +27 -0
  32. package/build/internal/cjs/meta.js.map +1 -1
  33. package/build/internal/cjs/schemas.d.ts +1 -1
  34. package/build/internal/es/{ecom-v1-order-orders.universal-D0jFG-D_.d.mts → ecom-v1-order-orders.universal-B3g4xg2t.d.mts} +100 -21
  35. package/build/internal/es/index.d.mts +3 -3
  36. package/build/internal/es/index.mjs +26 -0
  37. package/build/internal/es/index.mjs.map +1 -1
  38. package/build/internal/es/index.typings.d.mts +2 -2
  39. package/build/internal/es/index.typings.mjs +26 -0
  40. package/build/internal/es/index.typings.mjs.map +1 -1
  41. package/build/internal/es/meta.d.mts +66 -23
  42. package/build/internal/es/meta.mjs +26 -0
  43. package/build/internal/es/meta.mjs.map +1 -1
  44. package/build/internal/es/schemas.d.mts +1 -1
  45. package/package.json +2 -2
@@ -866,6 +866,70 @@ declare enum TaxableAddressType {
866
866
  }
867
867
  /** @enumType */
868
868
  type TaxableAddressTypeWithLiterals = TaxableAddressType | 'BUSINESS' | 'BILLING' | 'SHIPPING';
869
+ /**
870
+ * Decimal-quantity metadata for a line item.
871
+ *
872
+ * Set on a line item that represents a non-integer-quantity purchase
873
+ * (e.g. "2.75 square meters of fake grass", "1.5 kg of sugar",
874
+ * "0.75 hours of consultation"). When set, the line item must have
875
+ * `fixedQuantity` = true.
876
+ *
877
+ * The decimal value lives in `value`. When `decimalQuantity` is set,
878
+ * consumers read the human-readable quantity from `value` rather
879
+ * than from `lineItem.quantity`.
880
+ */
881
+ interface DecimalQuantity extends DecimalQuantityUnitOneOf {
882
+ }
883
+ /** @oneof */
884
+ interface DecimalQuantityUnitOneOf {
885
+ }
886
+ interface TranslatableString {
887
+ /**
888
+ * __Required.__ String in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope).
889
+ *
890
+ * Min: 1 character.
891
+ * Max: 200 characters.
892
+ * @minLength 1
893
+ * @maxLength 200
894
+ */
895
+ original?: string;
896
+ /**
897
+ * String translated into the buyer's language.
898
+ *
899
+ * Min: 1 character.
900
+ * Max: 400 characters.
901
+ * Default: Same as `original`.
902
+ * @minLength 1
903
+ * @maxLength 400
904
+ */
905
+ translated?: string | null;
906
+ }
907
+ declare enum MeasurementUnit {
908
+ UNSPECIFIED = "UNSPECIFIED",
909
+ ML = "ML",
910
+ CL = "CL",
911
+ L = "L",
912
+ CBM = "CBM",
913
+ MG = "MG",
914
+ G = "G",
915
+ KG = "KG",
916
+ MM = "MM",
917
+ CM = "CM",
918
+ M = "M",
919
+ SQM = "SQM",
920
+ OZ = "OZ",
921
+ LB = "LB",
922
+ FLOZ = "FLOZ",
923
+ PT = "PT",
924
+ QT = "QT",
925
+ GAL = "GAL",
926
+ IN = "IN",
927
+ FT = "FT",
928
+ YD = "YD",
929
+ SQFT = "SQFT"
930
+ }
931
+ /** @enumType */
932
+ type MeasurementUnitWithLiterals = MeasurementUnit | 'UNSPECIFIED' | 'ML' | 'CL' | 'L' | 'CBM' | 'MG' | 'G' | 'KG' | 'MM' | 'CM' | 'M' | 'SQM' | 'OZ' | 'LB' | 'FLOZ' | 'PT' | 'QT' | 'GAL' | 'IN' | 'FT' | 'YD' | 'SQFT';
869
933
  interface ExtendedFields {
870
934
  /**
871
935
  * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
@@ -893,27 +957,6 @@ interface ModifierGroup {
893
957
  */
894
958
  modifiers?: ItemModifier[];
895
959
  }
896
- interface TranslatableString {
897
- /**
898
- * __Required.__ String in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope).
899
- *
900
- * Min: 1 character.
901
- * Max: 200 characters.
902
- * @minLength 1
903
- * @maxLength 200
904
- */
905
- original?: string;
906
- /**
907
- * String translated into the buyer's language.
908
- *
909
- * Min: 1 character.
910
- * Max: 400 characters.
911
- * Default: Same as `original`.
912
- * @minLength 1
913
- * @maxLength 400
914
- */
915
- translated?: string | null;
916
- }
917
960
  interface ItemModifier {
918
961
  /**
919
962
  * Modifier ID.
@@ -8869,4 +8912,4 @@ interface BulkUpdateOrderTagsOptions {
8869
8912
  unassignTags?: TagsTags;
8870
8913
  }
8871
8914
 
8872
- export { ActivityType as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PaymentOptionType as E, SubscriptionFrequency as F, type GetPaymentCollectabilityStatusResponse as G, ProductPeriodAlignment as H, ItemTypePreset as I, JurisdictionType as J, AdjustmentType as K, PaymentStatusEnumPaymentStatus as L, type MaskedOrder as M, FulfillmentStatus as N, type Order as O, type Price as P, VatType as Q, PickupMethod as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, OrderStatus as X, DiscountType as Y, DiscountReason as Z, LineItemQuantityChangeType as _, type PreparePaymentCollectionOptions as a, type LineItemTaxBreakdown as a$, OrderActivityTypeEnumActivityType as a0, AttributionSource as a1, ChannelType as a2, AdditionalFeeSource as a3, OrderActionType as a4, SpecificItemsCouponBehavior as a5, ChargeType as a6, VersioningMode as a7, DeltaPaymentOptionType as a8, InventoryAction as a9, Origin as aA, SortOrder as aB, OrderApprovalStrategy as aC, Placement as aD, SubdivisionType as aE, SourceType as aF, CustomFieldGroup as aG, ValueType as aH, DepositType as aI, InvoiceStatus as aJ, type OrderLineItem as aK, type ProductName as aL, type CatalogReference as aM, type DescriptionLine as aN, type DescriptionLineValueOneOf as aO, type DescriptionLineDescriptionLineValueOneOf as aP, type DescriptionLineName as aQ, type PlainTextValue as aR, type Color as aS, type FocalPoint as aT, type PhysicalProperties as aU, type Dimensions as aV, type ItemType as aW, type ItemTypeItemTypeDataOneOf as aX, type RestockLocation as aY, type ItemTaxFullDetails as aZ, type LineItemTaxInfo as a_, WebhookIdentityType as aa, ScheduledAction as ab, DurationUnit as ac, PaymentCollectabilityStatus as ad, PredefinedPaymentMethod as ae, RefundableStatus as af, NonRefundableReason as ag, ManuallyRefundableReason as ah, RestockType as ai, TransactionStatus as aj, AuthorizationCaptureStatus as ak, AuthorizationVoidStatus as al, Reason as am, ActionType as an, ChargebackStatus as ao, MembershipPaymentStatus as ap, PaymentStatus as aq, CanceledReason as ar, DeclinedReason as as, VoidedReason as at, RefundStatus as au, PreviewEmailType as av, State as aw, SiteCreatedContext as ax, Namespace as ay, DeleteStatus as az, type PreparePaymentCollectionResponse as b, type LineItemDescriptionLineChange as b$, type DigitalFile as b0, type SubscriptionInfo as b1, type SubscriptionTitle as b2, type SubscriptionDescription as b3, type SubscriptionSettings as b4, type FreeTrialPeriod as b5, type BillingSettings as b6, type BillingAdjustment as b7, type BillingAdjustmentPriceSummary as b8, type PriceDescription as b9, type OrderTaxInfo as bA, type OrderTaxBreakdown as bB, type AppliedDiscount as bC, type AppliedDiscountDiscountSourceOneOf as bD, type Coupon as bE, type MerchantDiscount as bF, type MerchantDiscountMerchantDiscountReasonOneOf as bG, type DiscountRule as bH, type DiscountRuleName as bI, type LineItemDiscount as bJ, type ItemCombination as bK, type ItemCombinationLineItem as bL, type Activity as bM, type ActivityContentOneOf as bN, type CustomActivity as bO, type MerchantComment as bP, type OrderRefunded as bQ, type OrderCreatedFromExchange as bR, type NewExchangeOrderCreated as bS, type LineItemExchangeData as bT, type DraftOrderChangesApplied as bU, type OrderChange as bV, type OrderChangeValueOneOf as bW, type LineItemChanges as bX, type LineItemQuantityChange as bY, type LineItemPriceChange as bZ, type LineItemProductNameChange as b_, type LocationAndQuantity as ba, type TaxableAddress as bb, type TaxableAddressTaxableAddressDataOneOf as bc, type ExtendedFields as bd, type ModifierGroup as be, type TranslatableString as bf, type ItemModifier as bg, type BuyerInfo as bh, type BuyerInfoIdOneOf as bi, type CurrencyConversionDetails as bj, type PriceSummary as bk, type AddressWithContact as bl, type Address as bm, type StreetAddress as bn, type AddressLocation as bo, type FullAddressContactDetails as bp, type VatId as bq, type V1ShippingInformation as br, type DeliveryLogistics as bs, type DeliveryLogisticsAddressOneOf as bt, type PickupDetails as bu, type PickupAddress as bv, type DeliveryTimeSlot as bw, type ShippingPrice as bx, type ShippingRegion as by, type TaxSummary as bz, type PreparePaymentCollectionApplicationErrors as c, type InternalDocumentUpdateOperation as c$, type LineItemModifiersChange as c0, type ManagedLineItem as c1, type ManagedDiscount as c2, type TranslatedValue as c3, type LineItemAmount as c4, type ManagedAdditionalFee as c5, type TotalPriceChange as c6, type ShippingInformationChange as c7, type ShippingInformation as c8, type SavedPaymentMethod as c9, type ReceiptSentReceiptInfoOneOf as cA, type ChargebackCreated as cB, type ChargebackReversed as cC, type CreatedBy as cD, type CreatedByStringOneOf as cE, type ChannelInfo as cF, type CustomField as cG, type BalanceSummary as cH, type Balance as cI, type CashRounding as cJ, type AdditionalFee as cK, type FulfillmentStatusesAggregate as cL, type Tags as cM, type TagList as cN, type Location as cO, type OrderSettings as cP, type OrderSettingsAllowedActionsOneOf as cQ, type OrderSettingsEditableByOneOf as cR, type CustomAllowedActions as cS, type OwnerApps as cT, type FormInfo as cU, type FormIdentifier as cV, type PlatformFeeSummary as cW, type PlatformFee as cX, type UpdateInternalDocumentsEvent as cY, type UpdateInternalDocumentsEventOperationOneOf as cZ, type InternalDocument as c_, type AuthorizedPaymentCreated as ca, type AuthorizedPaymentCaptured as cb, type AuthorizedPaymentVoided as cc, type RefundInitiated as cd, type RefundedPayment as ce, type RefundedPaymentKindOneOf as cf, type RegularPaymentRefund as cg, type GiftCardPaymentRefund as ch, type MembershipPaymentRefund as ci, type PaymentRefunded as cj, type PaymentRefundFailed as ck, type RefundedAsStoreCredit as cl, type PaymentPending as cm, type PaymentPendingPaymentDetailsOneOf as cn, type RegularPayment as co, type RegularPaymentPaymentMethodDetailsOneOf as cp, type CreditCardDetails as cq, type PaymentCanceled as cr, type PaymentCanceledPaymentDetailsOneOf as cs, type PaymentDeclined as ct, type PaymentDeclinedPaymentDetailsOneOf as cu, type ReceiptCreated as cv, type ReceiptCreatedReceiptInfoOneOf as cw, type WixReceipt as cx, type ExternalReceipt as cy, type ReceiptSent as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type RecordManuallyCollectedPaymentResponse as d$, type DeleteByIdsOperation as d0, type DeleteByFilterOperation as d1, type InternalDocumentUpdateByFilterOperation as d2, type InternalUpdateExistingOperation as d3, type VersionedDocumentUpdateOperation as d4, type VersionedDeleteByIdsOperation as d5, type VersionedDocumentId as d6, type OrderApproved as d7, type OrdersExperiments as d8, type OrderRejectedEventOrderRejected as d9, type RestoreInfo as dA, type EntityUpdatedEvent as dB, type EntityDeletedEvent as dC, type ActionEvent as dD, type Empty as dE, type TriggerReindexOrderRequest as dF, type MessageEnvelope as dG, type IdentificationData as dH, type IdentificationDataIdOneOf as dI, type AccountInfo as dJ, type ImportOrderRequest as dK, type ImportOrderResponse as dL, type SetOrderNumberCounterRequest as dM, type SetOrderNumberCounterResponse as dN, type BulkDeleteImportedOrdersRequest as dO, type BulkDeleteImportedOrdersResponse as dP, type V1TriggerReindexRequest as dQ, type V1TriggerReindexResponse as dR, type V1TriggerReindexOrderRequest as dS, type PreparePaymentCollectionRequest as dT, type RedirectUrls as dU, type DelayedCaptureSettings as dV, type Duration as dW, type GetPaymentCollectabilityStatusRequest as dX, type RecordManuallyCollectedPaymentRequest as dY, type UserDefinedPaymentMethodName as dZ, type UserDefinedPaymentMethodNameKindOneOf as d_, type OrderItemsRestocked as da, type V1RestockItem as db, type OrderImported as dc, type ImportedOrderDeleted as dd, type PaymentStatusUpdated as de, type FulfillmentStatusUpdated as df, type OrderCanceledEventOrderCanceled as dg, type OrderDeltasCommitted as dh, type CommittedDiffs as di, type CommittedDiffsShippingUpdateInfoOneOf as dj, type ItemChangedDetails as dk, type OrderLineItemChangedDetails as dl, type LineItemDelta as dm, type LineItemDeltaDeltaOneOf as dn, type AppliedDiscountDelta as dp, type AppliedDiscountDeltaDeltaOneOf as dq, type AdditionalFeeDelta as dr, type AdditionalFeeDeltaDeltaOneOf as ds, type DraftOrderCommitSettings as dt, type InventoryUpdateDetails as du, type TriggerReindexRequest as dv, type TriggerReindexResponse as dw, type DomainEvent as dx, type DomainEventBodyOneOf as dy, type EntityCreatedEvent as dz, type PaymentCapture as e, type CalculateRefundItemRequest as e$, type MarkOrderAsPaidRequest as e0, type MarkOrderAsPaidResponse as e1, type BulkMarkOrdersAsPaidRequest as e2, type BulkMarkOrdersAsPaidResponse as e3, type BulkOrderResult as e4, type ItemMetadata as e5, type ApplicationError as e6, type BulkActionMetadata as e7, type GetRefundabilityStatusRequest as e8, type GetRefundabilityStatusResponse 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 PaymentMethodName as eI, type GiftCardPaymentDetails as eJ, type MembershipPaymentDetails as eK, type FutureMembershipDetails as eL, type WixReceiptInfo as eM, type ExternalReceiptInfo as eN, type CashRoundingDetails as eO, type PaymentStatusDetails as eP, type PaymentStatusDetailsStatusDetailsOneOf as eQ, type CanceledStatusDetails as eR, type DeclinedStatusDetails as eS, type VoidedStatusDetails as eT, type Refund as eU, type RefundTransaction as eV, type RefundStatusInfo as eW, type AggregatedRefundSummary as eX, type RefundItemsBreakdown as eY, type LineItemRefundSummary as eZ, type CalculateRefundRequest as e_, type Refundability as ea, type RefundabilityAdditionalRefundabilityInfoOneOf as eb, type CreatePaymentGatewayOrderRequest as ec, type ChargedBy as ed, type CreatePaymentGatewayOrderResponse as ee, type ChargeMembershipsRequest as ef, type MembershipChargeItem as eg, type MembershipName as eh, type ServiceProperties as ei, type ChargeMembershipsResponse as ej, type TriggerRefundRequest as ek, type PaymentRefund as el, type RefundDetails as em, type RefundItem as en, type LineItemRefund as eo, type AdditionalFeeRefund as ep, type ShippingRefund as eq, type RefundSideEffects as er, type RestockInfo as es, type RestockItem as et, type TriggerRefundResponse as eu, type OrderTransactions as ev, type Payment as ew, type PaymentPaymentDetailsOneOf as ex, type PaymentReceiptInfoOneOf as ey, type RegularPaymentDetails as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type StudioAssigned as f$, type CalculateRefundResponse as f0, type CalculateRefundItemResponse as f1, type VoidAuthorizedPaymentsRequest as f2, type CaptureAuthorizedPaymentsRequest as f3, type ChargeSavedPaymentMethodRequest as f4, type ChargeSavedPaymentMethodResponse as f5, type SendBuyerConfirmationEmailRequest as f6, type SendBuyerConfirmationEmailResponse as f7, type SendBuyerPaymentsReceivedEmailRequest as f8, type SendBuyerPaymentsReceivedEmailResponse as f9, type PreviewBuyerPaymentsReceivedEmailRequest as fA, type PreviewBuyerPaymentsReceivedEmailResponse as fB, type PreviewBuyerConfirmationEmailRequest as fC, type PreviewBuyerConfirmationEmailResponse as fD, type PreviewBuyerPickupConfirmationEmailRequest as fE, type PreviewBuyerPickupConfirmationEmailResponse as fF, type PreviewShippingConfirmationEmailRequest as fG, type PreviewShippingConfirmationEmailResponse as fH, type PreviewResendDownloadLinksEmailRequest as fI, type PreviewResendDownloadLinksEmailResponse as fJ, type MetaSiteSpecialEvent as fK, type MetaSiteSpecialEventPayloadOneOf as fL, type Asset as fM, type SiteCreated as fN, type SiteTransferred as fO, type SiteDeleted as fP, type DeleteContext as fQ, type SiteUndeleted as fR, type SitePublished as fS, type SiteUnpublished as fT, type SiteMarkedAsTemplate as fU, type SiteMarkedAsWixSite as fV, type ServiceProvisioned as fW, type ServiceRemoved as fX, type SiteRenamed as fY, type SiteHardDeleted as fZ, type NamespaceChanged as f_, type SendBuyerPickupConfirmationEmailRequest as fa, type SendBuyerPickupConfirmationEmailResponse as fb, type BulkSendBuyerPickupConfirmationEmailsRequest as fc, type BulkSendBuyerPickupConfirmationEmailsResponse as fd, type SendBuyerShippingConfirmationEmailRequest as fe, type SendBuyerShippingConfirmationEmailResponse as ff, type BulkSendBuyerShippingConfirmationEmailsRequest as fg, type BulkSendBuyerShippingConfirmationEmailsResponse as fh, type SendMerchantOrderReceivedNotificationRequest as fi, type SendMerchantOrderReceivedNotificationResponse as fj, type SendCancelRefundEmailRequest as fk, type SendCancelRefundEmailResponse as fl, type SendRefundEmailRequest as fm, type SendRefundEmailResponse as fn, type SendFulfillmentEmailRequest as fo, type SendFulfillmentEmailResponse as fp, type SendMerchantOrderReceivedPushRequest as fq, type SendMerchantOrderReceivedPushResponse as fr, type PreviewEmailByTypeRequest as fs, type PreviewEmailByTypeResponse as ft, type PreviewRefundEmailRequest as fu, type PreviewRefundEmailResponse as fv, type PreviewCancelEmailRequest as fw, type PreviewCancelEmailResponse as fx, type PreviewCancelRefundEmailRequest as fy, type PreviewCancelRefundEmailResponse as fz, type GetOrderApplicationErrors as g, type UnArchiveOrderRequest as g$, type StudioUnassigned as g0, type SiteUrlChanged as g1, type SitePurgedExternally as g2, type OdeditorAssigned as g3, type OdeditorUnassigned as g4, type PicassoAssigned as g5, type PicassoUnassigned as g6, type WixelAssigned as g7, type WixelUnassigned as g8, type StudioTwoAssigned as g9, type SearchOrdersRequest as gA, type CursorSearch as gB, type CursorSearchPagingMethodOneOf as gC, type CursorPagingMetadata as gD, type CreateOrderRequest as gE, type OrderCreationSettings as gF, type OrderCreationSettingsEditableByOneOf as gG, type OrderCreateNotifications as gH, type CreateOrderResponse as gI, type UpdateOrderRequest as gJ, type UpdateOrderResponse as gK, type BulkUpdateOrdersRequest as gL, type CommitDeltasRequest as gM, type DraftOrderDiffs as gN, type DraftOrderDiffsShippingUpdateInfoOneOf as gO, type DraftOrderDiffsBuyerUpdateInfoOneOf as gP, type DraftOrderDiffsBillingUpdateInfoOneOf as gQ, type DraftOrderDiffsRecipientUpdateInfoOneOf as gR, type V1LineItemDelta as gS, type V1LineItemDeltaDeltaOneOf as gT, type CommitDeltasResponse as gU, type ArchiveOrderRequest as gV, type ArchiveOrderResponse as gW, type BulkArchiveOrdersRequest as gX, type BulkArchiveOrdersResponse as gY, type BulkArchiveOrdersByFilterRequest as gZ, type BulkArchiveOrdersByFilterResponse as g_, type StudioTwoUnassigned as ga, type UserDomainMediaEnabled as gb, type UserDomainMediaDisabled as gc, type EditorlessAssigned as gd, type EditorlessUnassigned as ge, type HasCustomEmailConfigurationsRequest as gf, type HasCustomEmailConfigurationsResponse as gg, type AddToAutomationMigrationPopulationRequest as gh, type AddToAutomationMigrationPopulationResponse as gi, type IsInAutomationMigrationPopulationRequest as gj, type IsInAutomationMigrationPopulationResponse as gk, type DiffmatokyPayload as gl, type ErrorInformation as gm, type GetOrderRequest as gn, type GetOrderResponse as go, type InternalQueryOrdersRequest as gp, type PlatformQuery as gq, type PlatformQueryPagingMethodOneOf as gr, type Sorting as gs, type PlatformPaging as gt, type CursorPaging as gu, type InternalQueryOrdersResponse as gv, type PlatformPagingMetadata as gw, type Cursors as gx, type QueryOrderRequest as gy, type QueryOrderResponse as gz, type OrderSearch as h, type BulkMarkAsFulfilledByFilterRequest as h$, type UnArchiveOrderResponse as h0, type BulkUnArchiveOrdersRequest as h1, type BulkUnArchiveOrdersResponse as h2, type BulkUnArchiveOrdersByFilterRequest as h3, type BulkUnArchiveOrdersByFilterResponse as h4, type UpdateBuyerInfoRequest as h5, type BuyerInfoUpdate as h6, type UpdateBuyerInfoResponse as h7, type UpdateBuyerEmailRequest as h8, type UpdateBuyerEmailResponse as h9, type EmailEdited as hA, type PickupReadyEmailSent as hB, type OrderPartiallyPaid as hC, type OrderPending as hD, type OrderRejected as hE, type AddInternalActivityResponse as hF, type AddActivityRequest as hG, type PublicActivity as hH, type PublicActivityContentOneOf as hI, type AddActivityResponse as hJ, type AddActivitiesRequest as hK, type UpdateActivityRequest as hL, type UpdateActivityResponse as hM, type DeleteActivityRequest as hN, type DeleteActivityResponse as hO, type UpdateLineItemsDescriptionLinesRequest as hP, type LineItemUpdate as hQ, type UpdateLineItemsDescriptionLinesResponse as hR, type MarkOrderAsSeenByHumanRequest as hS, type MarkOrderAsSeenByHumanResponse as hT, type CancelOrderRequest as hU, type UpdateOrderStatusRequest as hV, type UpdateOrderStatusResponse as hW, type MarkAsFulfilledRequest as hX, type MarkAsFulfilledResponse as hY, type BulkMarkAsFulfilledRequest as hZ, type BulkMarkAsFulfilledResponse as h_, type UpdateOrderShippingAddressRequest as ha, type UpdateOrderShippingAddressResponse as hb, type UpdateBillingContactDetailsRequest as hc, type UpdateBillingContactDetailsResponse as hd, type UpdateOrderLineItemRequest as he, type UpdateOrderLineItemResponse as hf, type UpdateOrderLineItemsRequest as hg, type MaskedOrderLineItem as hh, type UpdateOrderLineItemsResponse as hi, type AddInternalActivityRequest as hj, type InternalActivity as hk, type InternalActivityContentOneOf as hl, type OrderPlaced as hm, type OrderPaid as hn, type OrderFulfilled as ho, type OrderNotFulfilled as hp, type OrderCanceled as hq, type DownloadLinkSent as hr, type TrackingNumberAdded as hs, type TrackingNumberEdited as ht, type TrackingLinkAdded as hu, type ShippingConfirmationEmailSent as hv, type InvoiceAdded as hw, type InvoiceSent as hx, type FulfillerEmailSent as hy, type ShippingAddressEdited as hz, type CreateOrderOptions as i, type CalculatedTaxes as i$, type BulkMarkAsFulfilledByFilterResponse as i0, type MarkAsUnfulfilledRequest as i1, type MarkAsUnfulfilledResponse as i2, type BulkMarkAsUnfulfilledRequest as i3, type BulkMarkAsUnfulfilledResponse as i4, type BulkMarkAsUnfulfilledByFilterRequest as i5, type BulkMarkAsUnfulfilledByFilterResponse as i6, type BulkSetBusinessLocationRequest as i7, type BulkSetBusinessLocationResponse as i8, type BulkSetBusinessLocationResult as i9, type Cancel as iA, type Reschedule as iB, type InvoiceSentEvent as iC, type IdAndVersion as iD, type InvoiceFields as iE, type Customer as iF, type Email as iG, type QuotesAddress as iH, type AddressDescription as iI, type Phone as iJ, type Company as iK, type CommonAddress as iL, type CommonAddressStreetOneOf as iM, type Subdivision as iN, type StandardDetails as iO, type InvoiceDates as iP, type LineItems as iQ, type LineItem as iR, type BigDecimalWrapper as iS, type LineItemTax as iT, type Source as iU, type LineItemMetaData as iV, type Locale as iW, type TotalPrice as iX, type ItemizedFee as iY, type Discount as iZ, type DiscountOneDiscountTypeOneOf as i_, type V1MarkOrderAsPaidRequest as ia, type V1MarkOrderAsPaidResponse as ib, type V1BulkMarkOrdersAsPaidRequest as ic, type V1BulkMarkOrdersAsPaidResponse as id, type V1CreatePaymentGatewayOrderRequest as ie, type V1CreatePaymentGatewayOrderResponse as ig, type GetShipmentsRequest as ih, type GetShipmentsResponse as ii, type AggregateOrdersRequest as ij, type AggregateOrdersResponse as ik, type DecrementItemsQuantityRequest as il, type DecrementData as im, type DecrementItemsQuantityResponse as io, type BulkUpdateOrderTagsRequest as ip, type TagsTags as iq, type TagsTagList as ir, type BulkUpdateOrderTagsResult as is, type SendOrderUpdatedDomainEventRequest as it, type SendOrderUpdatedDomainEventResponse as iu, type Task as iv, type TaskKey as iw, type TaskAction as ix, type TaskActionActionOneOf as iy, type Complete as iz, type CreateOrderApplicationErrors as j, type AuthorizationCaptureStatusWithLiterals as j$, type CalculatedTax as j0, type Payments as j1, type InvoicesPayment as j2, type MetaData as j3, type InvoiceDynamicPriceTotals as j4, type CustomFieldValue as j5, type Value as j6, type Deposit as j7, type BaseEventMetadata as j8, type EventMetadata as j9, type VatTypeWithLiterals as jA, type PickupMethodWithLiterals as jB, type OrderStatusWithLiterals as jC, type DiscountTypeWithLiterals as jD, type DiscountReasonWithLiterals as jE, type LineItemQuantityChangeTypeWithLiterals as jF, type ActivityTypeWithLiterals as jG, type OrderActivityTypeEnumActivityTypeWithLiterals as jH, type AttributionSourceWithLiterals as jI, type ChannelTypeWithLiterals as jJ, type AdditionalFeeSourceWithLiterals as jK, type OrderActionTypeWithLiterals as jL, type SpecificItemsCouponBehaviorWithLiterals as jM, type ChargeTypeWithLiterals as jN, type VersioningModeWithLiterals as jO, type DeltaPaymentOptionTypeWithLiterals as jP, type InventoryActionWithLiterals as jQ, type WebhookIdentityTypeWithLiterals as jR, type ScheduledActionWithLiterals as jS, type DurationUnitWithLiterals as jT, type PaymentCollectabilityStatusWithLiterals as jU, type PredefinedPaymentMethodWithLiterals as jV, type RefundableStatusWithLiterals as jW, type NonRefundableReasonWithLiterals as jX, type ManuallyRefundableReasonWithLiterals as jY, type RestockTypeWithLiterals as jZ, type TransactionStatusWithLiterals as j_, type AccountInfoMetadata as ja, type SetOrderNumberCounterOptions as jb, type RecordManuallyCollectedPaymentOptions as jc, type PaymentCollectionMarkOrderAsPaidOptions as jd, type PaymentCollectionCreatePaymentGatewayOrderOptions as je, type ChargeMembershipsOptions as jf, type TriggerRefundOptions as jg, type OrderSearchSpec as jh, type UpdateOrderLineItemIdentifiers as ji, type UpdateOrderLineItem as jj, type UpdateActivityIdentifiers as jk, type DeleteActivityIdentifiers as jl, type AggregateOrdersOptions as jm, utils as jn, type DescriptionLineTypeWithLiterals as jo, type DimensionsUnitWithLiterals as jp, type ItemTypePresetWithLiterals as jq, type PaymentOptionTypeWithLiterals as jr, type JurisdictionTypeWithLiterals as js, type SubscriptionFrequencyWithLiterals as jt, type ProductPeriodAlignmentWithLiterals as ju, type AdjustmentTypeWithLiterals as jv, type TaxableAddressTypeWithLiterals as jw, type PaymentStatusEnumPaymentStatusWithLiterals as jx, type FulfillmentStatusWithLiterals as jy, type WeightUnitWithLiterals as jz, type UpdateOrderApplicationErrors as k, type AuthorizationVoidStatusWithLiterals as k0, type ReasonWithLiterals as k1, type ActionTypeWithLiterals as k2, type ChargebackStatusWithLiterals as k3, type MembershipPaymentStatusWithLiterals as k4, type PaymentStatusWithLiterals as k5, type CanceledReasonWithLiterals as k6, type DeclinedReasonWithLiterals as k7, type VoidedReasonWithLiterals as k8, type RefundStatusWithLiterals 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 PreviewEmailTypeWithLiterals as ka, type StateWithLiterals as kb, type SiteCreatedContextWithLiterals as kc, type NamespaceWithLiterals as kd, type DeleteStatusWithLiterals as ke, type OriginWithLiterals as kf, type SortOrderWithLiterals as kg, type OrderApprovalStrategyWithLiterals as kh, type PlacementWithLiterals as ki, type SubdivisionTypeWithLiterals as kj, type SourceTypeWithLiterals as kk, type CustomFieldGroupWithLiterals as kl, type ValueTypeWithLiterals as km, type DepositTypeWithLiterals as kn, type InvoiceStatusWithLiterals as ko, type ImportOrderApplicationErrors as kp, type SetOrderNumberCounterApplicationErrors as kq, type RecordManuallyCollectedPaymentApplicationErrors as kr, type PaymentCollectionMarkOrderAsPaidApplicationErrors as ks, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as kt, type TriggerRefundApplicationErrors as ku, type UpdateOrderStatusApplicationErrors as kv, type CommonSearchWithEntityContext as kw, onOrderApproved as kx, onOrderCanceled as ky, onOrderCommitted as kz, type BulkUpdateOrdersResponse as l, type AddActivitiesResponse as m, type CancelOrderOptions as n, type CancelOrderResponse as o, type CancelOrderApplicationErrors as p, type BulkUpdateOrderTagsOptions as q, type BulkUpdateOrderTagsResponse as r, type OrderApprovedEnvelope as s, type OrderCanceledEnvelope as t, type OrderCommittedEnvelope as u, type OrderCreatedEnvelope as v, type OrderFulfilledEnvelope as w, type OrderPaymentStatusUpdatedEnvelope as x, type OrderUpdatedEnvelope as y, DimensionsUnit as z };
8915
+ export { LineItemQuantityChangeType as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PaymentOptionType as E, SubscriptionFrequency as F, type GetPaymentCollectabilityStatusResponse as G, ProductPeriodAlignment as H, ItemTypePreset as I, JurisdictionType as J, AdjustmentType as K, MeasurementUnit as L, type MaskedOrder as M, PaymentStatusEnumPaymentStatus as N, type Order as O, type Price as P, FulfillmentStatus as Q, VatType as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, PickupMethod as X, OrderStatus as Y, DiscountType as Z, DiscountReason as _, type PreparePaymentCollectionOptions as a, type LineItemTaxInfo as a$, ActivityType as a0, OrderActivityTypeEnumActivityType as a1, AttributionSource as a2, ChannelType as a3, AdditionalFeeSource as a4, OrderActionType as a5, SpecificItemsCouponBehavior as a6, ChargeType as a7, VersioningMode as a8, DeltaPaymentOptionType as a9, DeleteStatus as aA, Origin as aB, SortOrder as aC, OrderApprovalStrategy as aD, Placement as aE, SubdivisionType as aF, SourceType as aG, CustomFieldGroup as aH, ValueType as aI, DepositType as aJ, InvoiceStatus as aK, type OrderLineItem as aL, type ProductName as aM, type CatalogReference as aN, type DescriptionLine as aO, type DescriptionLineValueOneOf as aP, type DescriptionLineDescriptionLineValueOneOf as aQ, type DescriptionLineName as aR, type PlainTextValue as aS, type Color as aT, type FocalPoint as aU, type PhysicalProperties as aV, type Dimensions as aW, type ItemType as aX, type ItemTypeItemTypeDataOneOf as aY, type RestockLocation as aZ, type ItemTaxFullDetails as a_, InventoryAction as aa, WebhookIdentityType as ab, ScheduledAction as ac, DurationUnit as ad, PaymentCollectabilityStatus as ae, PredefinedPaymentMethod as af, RefundableStatus as ag, NonRefundableReason as ah, ManuallyRefundableReason as ai, RestockType as aj, TransactionStatus as ak, AuthorizationCaptureStatus as al, AuthorizationVoidStatus as am, Reason as an, ActionType as ao, ChargebackStatus as ap, MembershipPaymentStatus as aq, PaymentStatus as ar, CanceledReason as as, DeclinedReason as at, VoidedReason as au, RefundStatus as av, PreviewEmailType as aw, State as ax, SiteCreatedContext as ay, Namespace as az, type PreparePaymentCollectionResponse as b, type LineItemQuantityChange as b$, type LineItemTaxBreakdown as b0, type DigitalFile as b1, type SubscriptionInfo as b2, type SubscriptionTitle as b3, type SubscriptionDescription as b4, type SubscriptionSettings as b5, type FreeTrialPeriod as b6, type BillingSettings as b7, type BillingAdjustment as b8, type BillingAdjustmentPriceSummary as b9, type ShippingPrice as bA, type ShippingRegion as bB, type TaxSummary as bC, type OrderTaxInfo as bD, type OrderTaxBreakdown as bE, type AppliedDiscount as bF, type AppliedDiscountDiscountSourceOneOf as bG, type Coupon as bH, type MerchantDiscount as bI, type MerchantDiscountMerchantDiscountReasonOneOf as bJ, type DiscountRule as bK, type DiscountRuleName as bL, type LineItemDiscount as bM, type ItemCombination as bN, type ItemCombinationLineItem as bO, type Activity as bP, type ActivityContentOneOf as bQ, type CustomActivity as bR, type MerchantComment as bS, type OrderRefunded as bT, type OrderCreatedFromExchange as bU, type NewExchangeOrderCreated as bV, type LineItemExchangeData as bW, type DraftOrderChangesApplied as bX, type OrderChange as bY, type OrderChangeValueOneOf as bZ, type LineItemChanges as b_, type PriceDescription as ba, type LocationAndQuantity as bb, type TaxableAddress as bc, type TaxableAddressTaxableAddressDataOneOf as bd, type DecimalQuantity as be, type DecimalQuantityUnitOneOf as bf, type TranslatableString as bg, type ExtendedFields as bh, type ModifierGroup as bi, type ItemModifier as bj, type BuyerInfo as bk, type BuyerInfoIdOneOf as bl, type CurrencyConversionDetails as bm, type PriceSummary as bn, type AddressWithContact as bo, type Address as bp, type StreetAddress as bq, type AddressLocation as br, type FullAddressContactDetails as bs, type VatId as bt, type V1ShippingInformation as bu, type DeliveryLogistics as bv, type DeliveryLogisticsAddressOneOf as bw, type PickupDetails as bx, type PickupAddress as by, type DeliveryTimeSlot as bz, type PreparePaymentCollectionApplicationErrors as c, type UpdateInternalDocumentsEvent as c$, type LineItemPriceChange as c0, type LineItemProductNameChange as c1, type LineItemDescriptionLineChange as c2, type LineItemModifiersChange as c3, type ManagedLineItem as c4, type ManagedDiscount as c5, type TranslatedValue as c6, type LineItemAmount as c7, type ManagedAdditionalFee as c8, type TotalPriceChange as c9, type WixReceipt as cA, type ExternalReceipt as cB, type ReceiptSent as cC, type ReceiptSentReceiptInfoOneOf as cD, type ChargebackCreated as cE, type ChargebackReversed as cF, type CreatedBy as cG, type CreatedByStringOneOf as cH, type ChannelInfo as cI, type CustomField as cJ, type BalanceSummary as cK, type Balance as cL, type CashRounding as cM, type AdditionalFee as cN, type FulfillmentStatusesAggregate as cO, type Tags as cP, type TagList as cQ, type Location as cR, type OrderSettings as cS, type OrderSettingsAllowedActionsOneOf as cT, type OrderSettingsEditableByOneOf as cU, type CustomAllowedActions as cV, type OwnerApps as cW, type FormInfo as cX, type FormIdentifier as cY, type PlatformFeeSummary as cZ, type PlatformFee as c_, type ShippingInformationChange as ca, type ShippingInformation as cb, type SavedPaymentMethod as cc, type AuthorizedPaymentCreated as cd, type AuthorizedPaymentCaptured as ce, type AuthorizedPaymentVoided as cf, type RefundInitiated as cg, type RefundedPayment as ch, type RefundedPaymentKindOneOf as ci, type RegularPaymentRefund as cj, type GiftCardPaymentRefund as ck, type MembershipPaymentRefund as cl, type PaymentRefunded as cm, type PaymentRefundFailed as cn, type RefundedAsStoreCredit as co, type PaymentPending as cp, type PaymentPendingPaymentDetailsOneOf as cq, type RegularPayment as cr, type RegularPaymentPaymentMethodDetailsOneOf as cs, type CreditCardDetails as ct, type PaymentCanceled as cu, type PaymentCanceledPaymentDetailsOneOf as cv, type PaymentDeclined as cw, type PaymentDeclinedPaymentDetailsOneOf as cx, type ReceiptCreated as cy, type ReceiptCreatedReceiptInfoOneOf as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type RecordManuallyCollectedPaymentRequest as d$, type UpdateInternalDocumentsEventOperationOneOf as d0, type InternalDocument as d1, type InternalDocumentUpdateOperation as d2, type DeleteByIdsOperation as d3, type DeleteByFilterOperation as d4, type InternalDocumentUpdateByFilterOperation as d5, type InternalUpdateExistingOperation as d6, type VersionedDocumentUpdateOperation as d7, type VersionedDeleteByIdsOperation as d8, type VersionedDocumentId as d9, type DomainEvent as dA, type DomainEventBodyOneOf as dB, type EntityCreatedEvent as dC, type RestoreInfo as dD, type EntityUpdatedEvent as dE, type EntityDeletedEvent as dF, type ActionEvent as dG, type Empty as dH, type TriggerReindexOrderRequest as dI, type MessageEnvelope as dJ, type IdentificationData as dK, type IdentificationDataIdOneOf as dL, type AccountInfo as dM, type ImportOrderRequest as dN, type ImportOrderResponse as dO, type SetOrderNumberCounterRequest as dP, type SetOrderNumberCounterResponse as dQ, type BulkDeleteImportedOrdersRequest as dR, type BulkDeleteImportedOrdersResponse as dS, type V1TriggerReindexRequest as dT, type V1TriggerReindexResponse as dU, type V1TriggerReindexOrderRequest as dV, type PreparePaymentCollectionRequest as dW, type RedirectUrls as dX, type DelayedCaptureSettings as dY, type Duration as dZ, type GetPaymentCollectabilityStatusRequest as d_, type OrderApproved as da, type OrdersExperiments as db, type OrderRejectedEventOrderRejected as dc, type OrderItemsRestocked as dd, type V1RestockItem as de, type OrderImported as df, type ImportedOrderDeleted as dg, type PaymentStatusUpdated as dh, type FulfillmentStatusUpdated as di, type OrderCanceledEventOrderCanceled as dj, type OrderDeltasCommitted as dk, type CommittedDiffs as dl, type CommittedDiffsShippingUpdateInfoOneOf as dm, type ItemChangedDetails as dn, type OrderLineItemChangedDetails as dp, type LineItemDelta as dq, type LineItemDeltaDeltaOneOf as dr, type AppliedDiscountDelta as ds, type AppliedDiscountDeltaDeltaOneOf as dt, type AdditionalFeeDelta as du, type AdditionalFeeDeltaDeltaOneOf as dv, type DraftOrderCommitSettings as dw, type InventoryUpdateDetails as dx, type TriggerReindexRequest as dy, type TriggerReindexResponse as dz, type PaymentCapture as e, type RefundItemsBreakdown as e$, type UserDefinedPaymentMethodName as e0, type UserDefinedPaymentMethodNameKindOneOf as e1, type RecordManuallyCollectedPaymentResponse as e2, type MarkOrderAsPaidRequest as e3, type MarkOrderAsPaidResponse as e4, type BulkMarkOrdersAsPaidRequest as e5, type BulkMarkOrdersAsPaidResponse as e6, type BulkOrderResult as e7, type ItemMetadata as e8, type ApplicationError as e9, type PaymentPaymentDetailsOneOf as eA, type PaymentReceiptInfoOneOf as eB, type RegularPaymentDetails as eC, type RegularPaymentDetailsPaymentMethodDetailsOneOf as eD, type CreditCardPaymentMethodDetails as eE, type AuthorizationDetails as eF, type AuthorizationCapture as eG, type AuthorizationActionFailureDetails as eH, type AuthorizationVoid as eI, type V1ScheduledAction as eJ, type Chargeback as eK, type PaymentMethodName as eL, type GiftCardPaymentDetails as eM, type MembershipPaymentDetails as eN, type FutureMembershipDetails as eO, type WixReceiptInfo as eP, type ExternalReceiptInfo as eQ, type CashRoundingDetails as eR, type PaymentStatusDetails as eS, type PaymentStatusDetailsStatusDetailsOneOf as eT, type CanceledStatusDetails as eU, type DeclinedStatusDetails as eV, type VoidedStatusDetails as eW, type Refund as eX, type RefundTransaction as eY, type RefundStatusInfo as eZ, type AggregatedRefundSummary as e_, type BulkActionMetadata as ea, type GetRefundabilityStatusRequest as eb, type GetRefundabilityStatusResponse as ec, type Refundability as ed, type RefundabilityAdditionalRefundabilityInfoOneOf as ee, type CreatePaymentGatewayOrderRequest as ef, type ChargedBy as eg, type CreatePaymentGatewayOrderResponse as eh, type ChargeMembershipsRequest as ei, type MembershipChargeItem as ej, type MembershipName as ek, type ServiceProperties as el, type ChargeMembershipsResponse as em, type TriggerRefundRequest as en, type PaymentRefund as eo, type RefundDetails as ep, type RefundItem as eq, type LineItemRefund as er, type AdditionalFeeRefund as es, type ShippingRefund as et, type RefundSideEffects as eu, type RestockInfo as ev, type RestockItem as ew, type TriggerRefundResponse as ex, type OrderTransactions as ey, type Payment as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type SiteRenamed as f$, type LineItemRefundSummary as f0, type CalculateRefundRequest as f1, type CalculateRefundItemRequest as f2, type CalculateRefundResponse as f3, type CalculateRefundItemResponse as f4, type VoidAuthorizedPaymentsRequest as f5, type CaptureAuthorizedPaymentsRequest as f6, type ChargeSavedPaymentMethodRequest as f7, type ChargeSavedPaymentMethodResponse as f8, type SendBuyerConfirmationEmailRequest as f9, type PreviewCancelEmailResponse as fA, type PreviewCancelRefundEmailRequest as fB, type PreviewCancelRefundEmailResponse as fC, type PreviewBuyerPaymentsReceivedEmailRequest as fD, type PreviewBuyerPaymentsReceivedEmailResponse as fE, type PreviewBuyerConfirmationEmailRequest as fF, type PreviewBuyerConfirmationEmailResponse as fG, type PreviewBuyerPickupConfirmationEmailRequest as fH, type PreviewBuyerPickupConfirmationEmailResponse as fI, type PreviewShippingConfirmationEmailRequest as fJ, type PreviewShippingConfirmationEmailResponse as fK, type PreviewResendDownloadLinksEmailRequest as fL, type PreviewResendDownloadLinksEmailResponse as fM, type MetaSiteSpecialEvent as fN, type MetaSiteSpecialEventPayloadOneOf as fO, type Asset as fP, type SiteCreated as fQ, type SiteTransferred as fR, type SiteDeleted as fS, type DeleteContext as fT, type SiteUndeleted as fU, type SitePublished as fV, type SiteUnpublished as fW, type SiteMarkedAsTemplate as fX, type SiteMarkedAsWixSite as fY, type ServiceProvisioned as fZ, type ServiceRemoved as f_, type SendBuyerConfirmationEmailResponse as fa, type SendBuyerPaymentsReceivedEmailRequest as fb, type SendBuyerPaymentsReceivedEmailResponse as fc, type SendBuyerPickupConfirmationEmailRequest as fd, type SendBuyerPickupConfirmationEmailResponse as fe, type BulkSendBuyerPickupConfirmationEmailsRequest as ff, type BulkSendBuyerPickupConfirmationEmailsResponse as fg, type SendBuyerShippingConfirmationEmailRequest as fh, type SendBuyerShippingConfirmationEmailResponse as fi, type BulkSendBuyerShippingConfirmationEmailsRequest as fj, type BulkSendBuyerShippingConfirmationEmailsResponse as fk, type SendMerchantOrderReceivedNotificationRequest as fl, type SendMerchantOrderReceivedNotificationResponse as fm, type SendCancelRefundEmailRequest as fn, type SendCancelRefundEmailResponse as fo, type SendRefundEmailRequest as fp, type SendRefundEmailResponse as fq, type SendFulfillmentEmailRequest as fr, type SendFulfillmentEmailResponse as fs, type SendMerchantOrderReceivedPushRequest as ft, type SendMerchantOrderReceivedPushResponse as fu, type PreviewEmailByTypeRequest as fv, type PreviewEmailByTypeResponse as fw, type PreviewRefundEmailRequest as fx, type PreviewRefundEmailResponse as fy, type PreviewCancelEmailRequest as fz, type GetOrderApplicationErrors as g, type BulkArchiveOrdersResponse as g$, type SiteHardDeleted as g0, type NamespaceChanged as g1, type StudioAssigned as g2, type StudioUnassigned as g3, type SiteUrlChanged as g4, type SitePurgedExternally as g5, type OdeditorAssigned as g6, type OdeditorUnassigned as g7, type PicassoAssigned as g8, type PicassoUnassigned as g9, type Cursors as gA, type QueryOrderRequest as gB, type QueryOrderResponse as gC, type SearchOrdersRequest as gD, type CursorSearch as gE, type CursorSearchPagingMethodOneOf as gF, type CursorPagingMetadata as gG, type CreateOrderRequest as gH, type OrderCreationSettings as gI, type OrderCreationSettingsEditableByOneOf as gJ, type OrderCreateNotifications as gK, type CreateOrderResponse as gL, type UpdateOrderRequest as gM, type UpdateOrderResponse as gN, type BulkUpdateOrdersRequest as gO, type CommitDeltasRequest as gP, type DraftOrderDiffs as gQ, type DraftOrderDiffsShippingUpdateInfoOneOf as gR, type DraftOrderDiffsBuyerUpdateInfoOneOf as gS, type DraftOrderDiffsBillingUpdateInfoOneOf as gT, type DraftOrderDiffsRecipientUpdateInfoOneOf as gU, type V1LineItemDelta as gV, type V1LineItemDeltaDeltaOneOf as gW, type CommitDeltasResponse as gX, type ArchiveOrderRequest as gY, type ArchiveOrderResponse as gZ, type BulkArchiveOrdersRequest as g_, type WixelAssigned as ga, type WixelUnassigned as gb, type StudioTwoAssigned as gc, type StudioTwoUnassigned as gd, type UserDomainMediaEnabled as ge, type UserDomainMediaDisabled as gf, type EditorlessAssigned as gg, type EditorlessUnassigned as gh, type HasCustomEmailConfigurationsRequest as gi, type HasCustomEmailConfigurationsResponse as gj, type AddToAutomationMigrationPopulationRequest as gk, type AddToAutomationMigrationPopulationResponse as gl, type IsInAutomationMigrationPopulationRequest as gm, type IsInAutomationMigrationPopulationResponse as gn, type DiffmatokyPayload as go, type ErrorInformation as gp, type GetOrderRequest as gq, type GetOrderResponse as gr, type InternalQueryOrdersRequest as gs, type PlatformQuery as gt, type PlatformQueryPagingMethodOneOf as gu, type Sorting as gv, type PlatformPaging as gw, type CursorPaging as gx, type InternalQueryOrdersResponse as gy, type PlatformPagingMetadata as gz, type OrderSearch as h, type MarkAsFulfilledResponse as h$, type BulkArchiveOrdersByFilterRequest as h0, type BulkArchiveOrdersByFilterResponse as h1, type UnArchiveOrderRequest as h2, type UnArchiveOrderResponse as h3, type BulkUnArchiveOrdersRequest as h4, type BulkUnArchiveOrdersResponse as h5, type BulkUnArchiveOrdersByFilterRequest as h6, type BulkUnArchiveOrdersByFilterResponse as h7, type UpdateBuyerInfoRequest as h8, type BuyerInfoUpdate as h9, type InvoiceSent as hA, type FulfillerEmailSent as hB, type ShippingAddressEdited as hC, type EmailEdited as hD, type PickupReadyEmailSent as hE, type OrderPartiallyPaid as hF, type OrderPending as hG, type OrderRejected as hH, type AddInternalActivityResponse as hI, type AddActivityRequest as hJ, type PublicActivity as hK, type PublicActivityContentOneOf as hL, type AddActivityResponse as hM, type AddActivitiesRequest as hN, type UpdateActivityRequest as hO, type UpdateActivityResponse as hP, type DeleteActivityRequest as hQ, type DeleteActivityResponse as hR, type UpdateLineItemsDescriptionLinesRequest as hS, type LineItemUpdate as hT, type UpdateLineItemsDescriptionLinesResponse as hU, type MarkOrderAsSeenByHumanRequest as hV, type MarkOrderAsSeenByHumanResponse as hW, type CancelOrderRequest as hX, type UpdateOrderStatusRequest as hY, type UpdateOrderStatusResponse as hZ, type MarkAsFulfilledRequest as h_, type UpdateBuyerInfoResponse as ha, type UpdateBuyerEmailRequest as hb, type UpdateBuyerEmailResponse as hc, type UpdateOrderShippingAddressRequest as hd, type UpdateOrderShippingAddressResponse as he, type UpdateBillingContactDetailsRequest as hf, type UpdateBillingContactDetailsResponse as hg, type UpdateOrderLineItemRequest as hh, type UpdateOrderLineItemResponse as hi, type UpdateOrderLineItemsRequest as hj, type MaskedOrderLineItem as hk, type UpdateOrderLineItemsResponse as hl, type AddInternalActivityRequest as hm, type InternalActivity as hn, type InternalActivityContentOneOf as ho, type OrderPlaced as hp, type OrderPaid as hq, type OrderFulfilled as hr, type OrderNotFulfilled as hs, type OrderCanceled as ht, type DownloadLinkSent as hu, type TrackingNumberAdded as hv, type TrackingNumberEdited as hw, type TrackingLinkAdded as hx, type ShippingConfirmationEmailSent as hy, type InvoiceAdded as hz, type CreateOrderOptions as i, type ItemizedFee as i$, type BulkMarkAsFulfilledRequest as i0, type BulkMarkAsFulfilledResponse as i1, type BulkMarkAsFulfilledByFilterRequest as i2, type BulkMarkAsFulfilledByFilterResponse as i3, type MarkAsUnfulfilledRequest as i4, type MarkAsUnfulfilledResponse as i5, type BulkMarkAsUnfulfilledRequest as i6, type BulkMarkAsUnfulfilledResponse as i7, type BulkMarkAsUnfulfilledByFilterRequest as i8, type BulkMarkAsUnfulfilledByFilterResponse as i9, type TaskAction as iA, type TaskActionActionOneOf as iB, type Complete as iC, type Cancel as iD, type Reschedule as iE, type InvoiceSentEvent as iF, type IdAndVersion as iG, type InvoiceFields as iH, type Customer as iI, type Email as iJ, type QuotesAddress as iK, type AddressDescription as iL, type Phone as iM, type Company as iN, type CommonAddress as iO, type CommonAddressStreetOneOf as iP, type Subdivision as iQ, type StandardDetails as iR, type InvoiceDates as iS, type LineItems as iT, type LineItem as iU, type BigDecimalWrapper as iV, type LineItemTax as iW, type Source as iX, type LineItemMetaData as iY, type Locale as iZ, type TotalPrice as i_, type BulkSetBusinessLocationRequest as ia, type BulkSetBusinessLocationResponse as ib, type BulkSetBusinessLocationResult as ic, type V1MarkOrderAsPaidRequest as id, type V1MarkOrderAsPaidResponse as ie, type V1BulkMarkOrdersAsPaidRequest as ig, type V1BulkMarkOrdersAsPaidResponse as ih, type V1CreatePaymentGatewayOrderRequest as ii, type V1CreatePaymentGatewayOrderResponse as ij, type GetShipmentsRequest as ik, type GetShipmentsResponse as il, type AggregateOrdersRequest as im, type AggregateOrdersResponse as io, type DecrementItemsQuantityRequest as ip, type DecrementData as iq, type DecrementItemsQuantityResponse as ir, type BulkUpdateOrderTagsRequest as is, type TagsTags as it, type TagsTagList as iu, type BulkUpdateOrderTagsResult as iv, type SendOrderUpdatedDomainEventRequest as iw, type SendOrderUpdatedDomainEventResponse as ix, type Task as iy, type TaskKey as iz, type CreateOrderApplicationErrors as j, type NonRefundableReasonWithLiterals as j$, type Discount as j0, type DiscountOneDiscountTypeOneOf as j1, type CalculatedTaxes as j2, type CalculatedTax as j3, type Payments as j4, type InvoicesPayment as j5, type MetaData as j6, type InvoiceDynamicPriceTotals as j7, type CustomFieldValue as j8, type Value as j9, type MeasurementUnitWithLiterals as jA, type PaymentStatusEnumPaymentStatusWithLiterals as jB, type FulfillmentStatusWithLiterals as jC, type WeightUnitWithLiterals as jD, type VatTypeWithLiterals as jE, type PickupMethodWithLiterals as jF, type OrderStatusWithLiterals as jG, type DiscountTypeWithLiterals as jH, type DiscountReasonWithLiterals as jI, type LineItemQuantityChangeTypeWithLiterals as jJ, type ActivityTypeWithLiterals as jK, type OrderActivityTypeEnumActivityTypeWithLiterals as jL, type AttributionSourceWithLiterals as jM, type ChannelTypeWithLiterals as jN, type AdditionalFeeSourceWithLiterals as jO, type OrderActionTypeWithLiterals as jP, type SpecificItemsCouponBehaviorWithLiterals as jQ, type ChargeTypeWithLiterals as jR, type VersioningModeWithLiterals as jS, type DeltaPaymentOptionTypeWithLiterals as jT, type InventoryActionWithLiterals as jU, type WebhookIdentityTypeWithLiterals as jV, type ScheduledActionWithLiterals as jW, type DurationUnitWithLiterals as jX, type PaymentCollectabilityStatusWithLiterals as jY, type PredefinedPaymentMethodWithLiterals as jZ, type RefundableStatusWithLiterals as j_, type Deposit as ja, type BaseEventMetadata as jb, type EventMetadata as jc, type AccountInfoMetadata as jd, type SetOrderNumberCounterOptions as je, type RecordManuallyCollectedPaymentOptions as jf, type PaymentCollectionMarkOrderAsPaidOptions as jg, type PaymentCollectionCreatePaymentGatewayOrderOptions as jh, type ChargeMembershipsOptions as ji, type TriggerRefundOptions as jj, type OrderSearchSpec as jk, type UpdateOrderLineItemIdentifiers as jl, type UpdateOrderLineItem as jm, type UpdateActivityIdentifiers as jn, type DeleteActivityIdentifiers as jo, type AggregateOrdersOptions as jp, utils as jq, type DescriptionLineTypeWithLiterals as jr, type DimensionsUnitWithLiterals as js, type ItemTypePresetWithLiterals as jt, type PaymentOptionTypeWithLiterals as ju, type JurisdictionTypeWithLiterals as jv, type SubscriptionFrequencyWithLiterals as jw, type ProductPeriodAlignmentWithLiterals as jx, type AdjustmentTypeWithLiterals as jy, type TaxableAddressTypeWithLiterals as jz, type UpdateOrderApplicationErrors as k, type ManuallyRefundableReasonWithLiterals as k0, type RestockTypeWithLiterals as k1, type TransactionStatusWithLiterals as k2, type AuthorizationCaptureStatusWithLiterals as k3, type AuthorizationVoidStatusWithLiterals as k4, type ReasonWithLiterals as k5, type ActionTypeWithLiterals as k6, type ChargebackStatusWithLiterals as k7, type MembershipPaymentStatusWithLiterals as k8, type PaymentStatusWithLiterals as k9, type CommonSearchWithEntityContext as kA, onOrderApproved as kB, onOrderCanceled as kC, onOrderCommitted as kD, onOrderCreated as kE, onOrderFulfilled as kF, onOrderPaymentStatusUpdated as kG, onOrderUpdated as kH, preparePaymentCollection as kI, getPaymentCollectabilityStatus as kJ, voidAuthorizedPayments as kK, captureAuthorizedPayments as kL, getOrder as kM, createOrder as kN, updateOrder as kO, bulkUpdateOrders as kP, addActivities as kQ, cancelOrder as kR, bulkUpdateOrderTags as kS, type CanceledReasonWithLiterals as ka, type DeclinedReasonWithLiterals as kb, type VoidedReasonWithLiterals as kc, type RefundStatusWithLiterals as kd, type PreviewEmailTypeWithLiterals as ke, type StateWithLiterals as kf, type SiteCreatedContextWithLiterals as kg, type NamespaceWithLiterals as kh, type DeleteStatusWithLiterals as ki, type OriginWithLiterals as kj, type SortOrderWithLiterals as kk, type OrderApprovalStrategyWithLiterals as kl, type PlacementWithLiterals as km, type SubdivisionTypeWithLiterals as kn, type SourceTypeWithLiterals as ko, type CustomFieldGroupWithLiterals as kp, type ValueTypeWithLiterals as kq, type DepositTypeWithLiterals as kr, type InvoiceStatusWithLiterals as ks, type ImportOrderApplicationErrors as kt, type SetOrderNumberCounterApplicationErrors as ku, type RecordManuallyCollectedPaymentApplicationErrors as kv, type PaymentCollectionMarkOrderAsPaidApplicationErrors as kw, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as kx, type TriggerRefundApplicationErrors as ky, type UpdateOrderStatusApplicationErrors as kz, type BulkUpdateOrdersResponse as l, type AddActivitiesResponse as m, type CancelOrderOptions as n, type CancelOrderResponse as o, type CancelOrderApplicationErrors as p, type BulkUpdateOrderTagsOptions as q, type BulkUpdateOrderTagsResponse as r, type OrderApprovedEnvelope as s, type OrderCanceledEnvelope as t, type OrderCommittedEnvelope as u, type OrderCreatedEnvelope as v, type OrderFulfilledEnvelope as w, type OrderPaymentStatusUpdatedEnvelope as x, type OrderUpdatedEnvelope as y, DimensionsUnit as z };
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { P as Price, a as PreparePaymentCollectionOptions, b as PreparePaymentCollectionResponse, c as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, V as VoidAuthorizedPaymentsResponse, d as VoidAuthorizedPaymentsApplicationErrors, e as PaymentCapture, C as CaptureAuthorizedPaymentsResponse, f as CaptureAuthorizedPaymentsApplicationErrors, O as Order, g as GetOrderApplicationErrors, h as OrderSearch, S as SearchOrdersResponse, i as CreateOrderOptions, j as CreateOrderApplicationErrors, U as UpdateOrder, k as UpdateOrderApplicationErrors, M as MaskedOrder, B as BulkUpdateOrdersOptions, l as BulkUpdateOrdersResponse, A as AddActivitiesOptions, m as AddActivitiesResponse, n as CancelOrderOptions, o as CancelOrderResponse, p as CancelOrderApplicationErrors, q as BulkUpdateOrderTagsOptions, r as BulkUpdateOrderTagsResponse, s as OrderApprovedEnvelope, t as OrderCanceledEnvelope, u as OrderCommittedEnvelope, v as OrderCreatedEnvelope, w as OrderFulfilledEnvelope, x as OrderPaymentStatusUpdatedEnvelope, y as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-UEDhg1yc.js';
3
- export { dJ as AccountInfo, ja as AccountInfoMetadata, dD as ActionEvent, an as ActionType, k2 as ActionTypeWithLiterals, bM as Activity, bN as ActivityContentOneOf, $ as ActivityType, jG as ActivityTypeWithLiterals, hK as AddActivitiesRequest, hG as AddActivityRequest, hJ as AddActivityResponse, hj as AddInternalActivityRequest, hF as AddInternalActivityResponse, gh as AddToAutomationMigrationPopulationRequest, gi as AddToAutomationMigrationPopulationResponse, cK as AdditionalFee, dr as AdditionalFeeDelta, ds as AdditionalFeeDeltaDeltaOneOf, ep as AdditionalFeeRefund, a3 as AdditionalFeeSource, jK as AdditionalFeeSourceWithLiterals, bm as Address, iI as AddressDescription, bo as AddressLocation, bl as AddressWithContact, K as AdjustmentType, jv as AdjustmentTypeWithLiterals, jm as AggregateOrdersOptions, ij as AggregateOrdersRequest, ik as AggregateOrdersResponse, eX as AggregatedRefundSummary, e6 as ApplicationError, bC as AppliedDiscount, dp as AppliedDiscountDelta, dq as AppliedDiscountDeltaDeltaOneOf, bD as AppliedDiscountDiscountSourceOneOf, gV as ArchiveOrderRequest, gW as ArchiveOrderResponse, fM as Asset, a1 as AttributionSource, jI as AttributionSourceWithLiterals, eE as AuthorizationActionFailureDetails, eD as AuthorizationCapture, ak as AuthorizationCaptureStatus, j$ as AuthorizationCaptureStatusWithLiterals, eC as AuthorizationDetails, eF as AuthorizationVoid, al as AuthorizationVoidStatus, k0 as AuthorizationVoidStatusWithLiterals, cb as AuthorizedPaymentCaptured, ca as AuthorizedPaymentCreated, cc as AuthorizedPaymentVoided, cI as Balance, cH as BalanceSummary, j8 as BaseEventMetadata, iS as BigDecimalWrapper, b7 as BillingAdjustment, b8 as BillingAdjustmentPriceSummary, b6 as BillingSettings, e7 as BulkActionMetadata, gZ as BulkArchiveOrdersByFilterRequest, g_ as BulkArchiveOrdersByFilterResponse, gX as BulkArchiveOrdersRequest, gY as BulkArchiveOrdersResponse, dO as BulkDeleteImportedOrdersRequest, dP as BulkDeleteImportedOrdersResponse, h$ as BulkMarkAsFulfilledByFilterRequest, i0 as BulkMarkAsFulfilledByFilterResponse, hZ as BulkMarkAsFulfilledRequest, h_ as BulkMarkAsFulfilledResponse, i5 as BulkMarkAsUnfulfilledByFilterRequest, i6 as BulkMarkAsUnfulfilledByFilterResponse, i3 as BulkMarkAsUnfulfilledRequest, i4 as BulkMarkAsUnfulfilledResponse, e2 as BulkMarkOrdersAsPaidRequest, e3 as BulkMarkOrdersAsPaidResponse, e4 as BulkOrderResult, fc as BulkSendBuyerPickupConfirmationEmailsRequest, fd as BulkSendBuyerPickupConfirmationEmailsResponse, fg as BulkSendBuyerShippingConfirmationEmailsRequest, fh as BulkSendBuyerShippingConfirmationEmailsResponse, i7 as BulkSetBusinessLocationRequest, i8 as BulkSetBusinessLocationResponse, i9 as BulkSetBusinessLocationResult, h3 as BulkUnArchiveOrdersByFilterRequest, h4 as BulkUnArchiveOrdersByFilterResponse, h1 as BulkUnArchiveOrdersRequest, h2 as BulkUnArchiveOrdersResponse, ip as BulkUpdateOrderTagsRequest, is as BulkUpdateOrderTagsResult, gL as BulkUpdateOrdersRequest, bh as BuyerInfo, bi as BuyerInfoIdOneOf, h6 as BuyerInfoUpdate, e$ as CalculateRefundItemRequest, f1 as CalculateRefundItemResponse, e_ as CalculateRefundRequest, f0 as CalculateRefundResponse, j0 as CalculatedTax, i$ as CalculatedTaxes, iA as Cancel, hU as CancelOrderRequest, ar as CanceledReason, k6 as CanceledReasonWithLiterals, eR as CanceledStatusDetails, f3 as CaptureAuthorizedPaymentsRequest, cJ as CashRounding, eO as CashRoundingDetails, aM as CatalogReference, cF as ChannelInfo, a2 as ChannelType, jJ as ChannelTypeWithLiterals, jf as ChargeMembershipsOptions, ef as ChargeMembershipsRequest, ej as ChargeMembershipsResponse, f4 as ChargeSavedPaymentMethodRequest, f5 as ChargeSavedPaymentMethodResponse, a6 as ChargeType, jN as ChargeTypeWithLiterals, eH as Chargeback, cB as ChargebackCreated, cC as ChargebackReversed, ao as ChargebackStatus, k3 as ChargebackStatusWithLiterals, ed as ChargedBy, aS as Color, gM as CommitDeltasRequest, gU as CommitDeltasResponse, di as CommittedDiffs, dj as CommittedDiffsShippingUpdateInfoOneOf, iL as CommonAddress, iM as CommonAddressStreetOneOf, kw as CommonSearchWithEntityContext, iK as Company, iz as Complete, bE as Coupon, gE as CreateOrderRequest, gI as CreateOrderResponse, ec as CreatePaymentGatewayOrderRequest, ee as CreatePaymentGatewayOrderResponse, cD as CreatedBy, cE as CreatedByStringOneOf, cq as CreditCardDetails, eB as CreditCardPaymentMethodDetails, bj as CurrencyConversionDetails, gu as CursorPaging, gD as CursorPagingMetadata, gB as CursorSearch, gC as CursorSearchPagingMethodOneOf, gx as Cursors, bO as CustomActivity, cS as CustomAllowedActions, cG as CustomField, aG as CustomFieldGroup, kl as CustomFieldGroupWithLiterals, j5 as CustomFieldValue, iF as Customer, as as DeclinedReason, k7 as DeclinedReasonWithLiterals, eS as DeclinedStatusDetails, im as DecrementData, il as DecrementItemsQuantityRequest, io as DecrementItemsQuantityResponse, dV as DelayedCaptureSettings, jl as DeleteActivityIdentifiers, hN as DeleteActivityRequest, hO as DeleteActivityResponse, d1 as DeleteByFilterOperation, d0 as DeleteByIdsOperation, fQ as DeleteContext, az as DeleteStatus, ke as DeleteStatusWithLiterals, bs as DeliveryLogistics, bt as DeliveryLogisticsAddressOneOf, bw as DeliveryTimeSlot, a8 as DeltaPaymentOptionType, jP as DeltaPaymentOptionTypeWithLiterals, j7 as Deposit, aI as DepositType, kn as DepositTypeWithLiterals, aN as DescriptionLine, aP as DescriptionLineDescriptionLineValueOneOf, aQ as DescriptionLineName, D as DescriptionLineType, jo as DescriptionLineTypeWithLiterals, aO as DescriptionLineValueOneOf, gl as DiffmatokyPayload, b0 as DigitalFile, aV as Dimensions, z as DimensionsUnit, jp as DimensionsUnitWithLiterals, iZ as Discount, i_ as DiscountOneDiscountTypeOneOf, Z as DiscountReason, jE as DiscountReasonWithLiterals, bH as DiscountRule, bI as DiscountRuleName, Y as DiscountType, jD as DiscountTypeWithLiterals, dx as DomainEvent, dy as DomainEventBodyOneOf, hr as DownloadLinkSent, bU as DraftOrderChangesApplied, dt as DraftOrderCommitSettings, gN as DraftOrderDiffs, gQ as DraftOrderDiffsBillingUpdateInfoOneOf, gP as DraftOrderDiffsBuyerUpdateInfoOneOf, gR as DraftOrderDiffsRecipientUpdateInfoOneOf, gO as DraftOrderDiffsShippingUpdateInfoOneOf, dW as Duration, ac as DurationUnit, jT as DurationUnitWithLiterals, gd as EditorlessAssigned, ge as EditorlessUnassigned, iG as Email, hA as EmailEdited, dE as Empty, dz as EntityCreatedEvent, dC as EntityDeletedEvent, dB as EntityUpdatedEvent, gm as ErrorInformation, j9 as EventMetadata, bd as ExtendedFields, cy as ExternalReceipt, eN as ExternalReceiptInfo, aT as FocalPoint, cV as FormIdentifier, cU as FormInfo, b5 as FreeTrialPeriod, hy as FulfillerEmailSent, N as FulfillmentStatus, df as FulfillmentStatusUpdated, jy as FulfillmentStatusWithLiterals, cL as FulfillmentStatusesAggregate, bp as FullAddressContactDetails, eL as FutureMembershipDetails, gn as GetOrderRequest, go as GetOrderResponse, dX as GetPaymentCollectabilityStatusRequest, e8 as GetRefundabilityStatusRequest, e9 as GetRefundabilityStatusResponse, ih as GetShipmentsRequest, ii as GetShipmentsResponse, eJ as GiftCardPaymentDetails, ch as GiftCardPaymentRefund, gf as HasCustomEmailConfigurationsRequest, gg as HasCustomEmailConfigurationsResponse, iD as IdAndVersion, dH as IdentificationData, dI as IdentificationDataIdOneOf, kp as ImportOrderApplicationErrors, dK as ImportOrderRequest, dL as ImportOrderResponse, dd as ImportedOrderDeleted, hk as InternalActivity, hl as InternalActivityContentOneOf, c_ as InternalDocument, d2 as InternalDocumentUpdateByFilterOperation, c$ as InternalDocumentUpdateOperation, gp as InternalQueryOrdersRequest, gv as InternalQueryOrdersResponse, d3 as InternalUpdateExistingOperation, a9 as InventoryAction, jQ as InventoryActionWithLiterals, du as InventoryUpdateDetails, hw as InvoiceAdded, iP as InvoiceDates, j4 as InvoiceDynamicPriceTotals, iE as InvoiceFields, hx as InvoiceSent, iC as InvoiceSentEvent, aJ as InvoiceStatus, ko as InvoiceStatusWithLiterals, j2 as InvoicesPayment, gj as IsInAutomationMigrationPopulationRequest, gk as IsInAutomationMigrationPopulationResponse, dk as ItemChangedDetails, bK as ItemCombination, bL as ItemCombinationLineItem, e5 as ItemMetadata, bg as ItemModifier, aZ as ItemTaxFullDetails, aW as ItemType, aX as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, jq as ItemTypePresetWithLiterals, iY as ItemizedFee, J as JurisdictionType, js as JurisdictionTypeWithLiterals, iR as LineItem, c4 as LineItemAmount, bX as LineItemChanges, dm as LineItemDelta, dn as LineItemDeltaDeltaOneOf, b$ as LineItemDescriptionLineChange, bJ as LineItemDiscount, bT as LineItemExchangeData, iV as LineItemMetaData, c0 as LineItemModifiersChange, bZ as LineItemPriceChange, b_ as LineItemProductNameChange, bY as LineItemQuantityChange, _ as LineItemQuantityChangeType, jF as LineItemQuantityChangeTypeWithLiterals, eo as LineItemRefund, eZ as LineItemRefundSummary, iT as LineItemTax, a$ as LineItemTaxBreakdown, a_ as LineItemTaxInfo, hQ as LineItemUpdate, iQ as LineItems, iW as Locale, cO as Location, ba as LocationAndQuantity, c5 as ManagedAdditionalFee, c2 as ManagedDiscount, c1 as ManagedLineItem, ah as ManuallyRefundableReason, jY as ManuallyRefundableReasonWithLiterals, hX as MarkAsFulfilledRequest, hY as MarkAsFulfilledResponse, i1 as MarkAsUnfulfilledRequest, i2 as MarkAsUnfulfilledResponse, e0 as MarkOrderAsPaidRequest, e1 as MarkOrderAsPaidResponse, hS as MarkOrderAsSeenByHumanRequest, hT as MarkOrderAsSeenByHumanResponse, hh as MaskedOrderLineItem, eg as MembershipChargeItem, eh as MembershipName, eK as MembershipPaymentDetails, ci as MembershipPaymentRefund, ap as MembershipPaymentStatus, k4 as MembershipPaymentStatusWithLiterals, bP as MerchantComment, bF as MerchantDiscount, bG as MerchantDiscountMerchantDiscountReasonOneOf, dG as MessageEnvelope, j3 as MetaData, fK as MetaSiteSpecialEvent, fL as MetaSiteSpecialEventPayloadOneOf, be as ModifierGroup, ay as Namespace, f_ as NamespaceChanged, kd as NamespaceWithLiterals, bS as NewExchangeOrderCreated, ag as NonRefundableReason, jX as NonRefundableReasonWithLiterals, g3 as OdeditorAssigned, g4 as OdeditorUnassigned, a4 as OrderActionType, jL as OrderActionTypeWithLiterals, a0 as OrderActivityTypeEnumActivityType, jH as OrderActivityTypeEnumActivityTypeWithLiterals, aC as OrderApprovalStrategy, kh as OrderApprovalStrategyWithLiterals, d7 as OrderApproved, hq as OrderCanceled, dg as OrderCanceledEventOrderCanceled, bV as OrderChange, bW as OrderChangeValueOneOf, gH as OrderCreateNotifications, bR as OrderCreatedFromExchange, gF as OrderCreationSettings, gG as OrderCreationSettingsEditableByOneOf, dh as OrderDeltasCommitted, ho as OrderFulfilled, dc as OrderImported, da as OrderItemsRestocked, aK as OrderLineItem, dl as OrderLineItemChangedDetails, hp as OrderNotFulfilled, hn as OrderPaid, hC as OrderPartiallyPaid, hD as OrderPending, hm as OrderPlaced, bQ as OrderRefunded, hE as OrderRejected, d9 as OrderRejectedEventOrderRejected, jh as OrderSearchSpec, cP as OrderSettings, cQ as OrderSettingsAllowedActionsOneOf, cR as OrderSettingsEditableByOneOf, X as OrderStatus, jC as OrderStatusWithLiterals, bB as OrderTaxBreakdown, bA as OrderTaxInfo, ev as OrderTransactions, d8 as OrdersExperiments, aA as Origin, kf as OriginWithLiterals, cT as OwnerApps, ew as Payment, cr as PaymentCanceled, cs as PaymentCanceledPaymentDetailsOneOf, ad as PaymentCollectabilityStatus, jU as PaymentCollectabilityStatusWithLiterals, kt as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, je as PaymentCollectionCreatePaymentGatewayOrderOptions, ks as PaymentCollectionMarkOrderAsPaidApplicationErrors, jd as PaymentCollectionMarkOrderAsPaidOptions, ct as PaymentDeclined, cu as PaymentDeclinedPaymentDetailsOneOf, eI as PaymentMethodName, E as PaymentOptionType, jr as PaymentOptionTypeWithLiterals, ex as PaymentPaymentDetailsOneOf, cm as PaymentPending, cn as PaymentPendingPaymentDetailsOneOf, ey as PaymentReceiptInfoOneOf, el as PaymentRefund, ck as PaymentRefundFailed, cj as PaymentRefunded, aq as PaymentStatus, eP as PaymentStatusDetails, eQ as PaymentStatusDetailsStatusDetailsOneOf, L as PaymentStatusEnumPaymentStatus, jx as PaymentStatusEnumPaymentStatusWithLiterals, de as PaymentStatusUpdated, k5 as PaymentStatusWithLiterals, j1 as Payments, iJ as Phone, aU as PhysicalProperties, g5 as PicassoAssigned, g6 as PicassoUnassigned, bv as PickupAddress, bu as PickupDetails, R as PickupMethod, jB as PickupMethodWithLiterals, hB as PickupReadyEmailSent, aD as Placement, ki as PlacementWithLiterals, aR as PlainTextValue, cX as PlatformFee, cW as PlatformFeeSummary, gt as PlatformPaging, gw as PlatformPagingMetadata, gq as PlatformQuery, gr as PlatformQueryPagingMethodOneOf, ae as PredefinedPaymentMethod, jV as PredefinedPaymentMethodWithLiterals, dT as PreparePaymentCollectionRequest, fC as PreviewBuyerConfirmationEmailRequest, fD as PreviewBuyerConfirmationEmailResponse, fA as PreviewBuyerPaymentsReceivedEmailRequest, fB as PreviewBuyerPaymentsReceivedEmailResponse, fE as PreviewBuyerPickupConfirmationEmailRequest, fF as PreviewBuyerPickupConfirmationEmailResponse, fw as PreviewCancelEmailRequest, fx as PreviewCancelEmailResponse, fy as PreviewCancelRefundEmailRequest, fz as PreviewCancelRefundEmailResponse, fs as PreviewEmailByTypeRequest, ft as PreviewEmailByTypeResponse, av as PreviewEmailType, ka as PreviewEmailTypeWithLiterals, fu as PreviewRefundEmailRequest, fv as PreviewRefundEmailResponse, fI as PreviewResendDownloadLinksEmailRequest, fJ as PreviewResendDownloadLinksEmailResponse, fG as PreviewShippingConfirmationEmailRequest, fH as PreviewShippingConfirmationEmailResponse, b9 as PriceDescription, bk as PriceSummary, aL as ProductName, H as ProductPeriodAlignment, ju as ProductPeriodAlignmentWithLiterals, hH as PublicActivity, hI as PublicActivityContentOneOf, gy as QueryOrderRequest, gz as QueryOrderResponse, iH as QuotesAddress, am as Reason, k1 as ReasonWithLiterals, cv as ReceiptCreated, cw as ReceiptCreatedReceiptInfoOneOf, cz as ReceiptSent, cA as ReceiptSentReceiptInfoOneOf, kr as RecordManuallyCollectedPaymentApplicationErrors, jc as RecordManuallyCollectedPaymentOptions, dY as RecordManuallyCollectedPaymentRequest, d$ as RecordManuallyCollectedPaymentResponse, dU as RedirectUrls, eU as Refund, em as RefundDetails, cd as RefundInitiated, en as RefundItem, eY as RefundItemsBreakdown, er as RefundSideEffects, au as RefundStatus, eW as RefundStatusInfo, k9 as RefundStatusWithLiterals, eV as RefundTransaction, ea as Refundability, eb as RefundabilityAdditionalRefundabilityInfoOneOf, af as RefundableStatus, jW as RefundableStatusWithLiterals, cl as RefundedAsStoreCredit, ce as RefundedPayment, cf as RefundedPaymentKindOneOf, co as RegularPayment, ez as RegularPaymentDetails, eA as RegularPaymentDetailsPaymentMethodDetailsOneOf, cp as RegularPaymentPaymentMethodDetailsOneOf, cg as RegularPaymentRefund, iB as Reschedule, es as RestockInfo, et as RestockItem, aY as RestockLocation, ai as RestockType, jZ as RestockTypeWithLiterals, dA as RestoreInfo, c9 as SavedPaymentMethod, ab as ScheduledAction, jS as ScheduledActionWithLiterals, gA as SearchOrdersRequest, f6 as SendBuyerConfirmationEmailRequest, f7 as SendBuyerConfirmationEmailResponse, f8 as SendBuyerPaymentsReceivedEmailRequest, f9 as SendBuyerPaymentsReceivedEmailResponse, fa as SendBuyerPickupConfirmationEmailRequest, fb as SendBuyerPickupConfirmationEmailResponse, fe as SendBuyerShippingConfirmationEmailRequest, ff as SendBuyerShippingConfirmationEmailResponse, fk as SendCancelRefundEmailRequest, fl as SendCancelRefundEmailResponse, fo as SendFulfillmentEmailRequest, fp as SendFulfillmentEmailResponse, fi as SendMerchantOrderReceivedNotificationRequest, fj as SendMerchantOrderReceivedNotificationResponse, fq as SendMerchantOrderReceivedPushRequest, fr as SendMerchantOrderReceivedPushResponse, it as SendOrderUpdatedDomainEventRequest, iu as SendOrderUpdatedDomainEventResponse, fm as SendRefundEmailRequest, fn as SendRefundEmailResponse, ei as ServiceProperties, fW as ServiceProvisioned, fX as ServiceRemoved, kq as SetOrderNumberCounterApplicationErrors, jb as SetOrderNumberCounterOptions, dM as SetOrderNumberCounterRequest, dN as SetOrderNumberCounterResponse, hz as ShippingAddressEdited, hv as ShippingConfirmationEmailSent, c8 as ShippingInformation, c7 as ShippingInformationChange, bx as ShippingPrice, eq as ShippingRefund, by as ShippingRegion, fN as SiteCreated, ax as SiteCreatedContext, kc as SiteCreatedContextWithLiterals, fP as SiteDeleted, fZ as SiteHardDeleted, fU as SiteMarkedAsTemplate, fV as SiteMarkedAsWixSite, fS as SitePublished, g2 as SitePurgedExternally, fY as SiteRenamed, fO as SiteTransferred, fR as SiteUndeleted, fT as SiteUnpublished, g1 as SiteUrlChanged, aB as SortOrder, kg as SortOrderWithLiterals, gs as Sorting, iU as Source, aF as SourceType, kk as SourceTypeWithLiterals, a5 as SpecificItemsCouponBehavior, jM as SpecificItemsCouponBehaviorWithLiterals, iO as StandardDetails, aw as State, kb as StateWithLiterals, bn as StreetAddress, f$ as StudioAssigned, g9 as StudioTwoAssigned, ga as StudioTwoUnassigned, g0 as StudioUnassigned, iN as Subdivision, aE as SubdivisionType, kj as SubdivisionTypeWithLiterals, b3 as SubscriptionDescription, F as SubscriptionFrequency, jt as SubscriptionFrequencyWithLiterals, b1 as SubscriptionInfo, b4 as SubscriptionSettings, b2 as SubscriptionTitle, cN as TagList, cM as Tags, ir as TagsTagList, iq as TagsTags, iv as Task, ix as TaskAction, iy as TaskActionActionOneOf, iw as TaskKey, bz as TaxSummary, bb as TaxableAddress, bc as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, jw as TaxableAddressTypeWithLiterals, iX as TotalPrice, c6 as TotalPriceChange, hu as TrackingLinkAdded, hs as TrackingNumberAdded, ht as TrackingNumberEdited, aj as TransactionStatus, j_ as TransactionStatusWithLiterals, bf as TranslatableString, c3 as TranslatedValue, ku as TriggerRefundApplicationErrors, jg as TriggerRefundOptions, ek as TriggerRefundRequest, eu as TriggerRefundResponse, dF as TriggerReindexOrderRequest, dv as TriggerReindexRequest, dw as TriggerReindexResponse, g$ as UnArchiveOrderRequest, h0 as UnArchiveOrderResponse, jk as UpdateActivityIdentifiers, hL as UpdateActivityRequest, hM as UpdateActivityResponse, hc as UpdateBillingContactDetailsRequest, hd as UpdateBillingContactDetailsResponse, h8 as UpdateBuyerEmailRequest, h9 as UpdateBuyerEmailResponse, h5 as UpdateBuyerInfoRequest, h7 as UpdateBuyerInfoResponse, cY as UpdateInternalDocumentsEvent, cZ as UpdateInternalDocumentsEventOperationOneOf, hP as UpdateLineItemsDescriptionLinesRequest, hR as UpdateLineItemsDescriptionLinesResponse, jj as UpdateOrderLineItem, ji as UpdateOrderLineItemIdentifiers, he as UpdateOrderLineItemRequest, hf as UpdateOrderLineItemResponse, hg as UpdateOrderLineItemsRequest, hi as UpdateOrderLineItemsResponse, gJ as UpdateOrderRequest, gK as UpdateOrderResponse, ha as UpdateOrderShippingAddressRequest, hb as UpdateOrderShippingAddressResponse, kv as UpdateOrderStatusApplicationErrors, hV as UpdateOrderStatusRequest, hW as UpdateOrderStatusResponse, dZ as UserDefinedPaymentMethodName, d_ as UserDefinedPaymentMethodNameKindOneOf, gc as UserDomainMediaDisabled, gb as UserDomainMediaEnabled, ic as V1BulkMarkOrdersAsPaidRequest, id as V1BulkMarkOrdersAsPaidResponse, ie as V1CreatePaymentGatewayOrderRequest, ig as V1CreatePaymentGatewayOrderResponse, gS as V1LineItemDelta, gT as V1LineItemDeltaDeltaOneOf, ia as V1MarkOrderAsPaidRequest, ib as V1MarkOrderAsPaidResponse, db as V1RestockItem, eG as V1ScheduledAction, br as V1ShippingInformation, dS as V1TriggerReindexOrderRequest, dQ as V1TriggerReindexRequest, dR as V1TriggerReindexResponse, j6 as Value, aH as ValueType, km as ValueTypeWithLiterals, bq as VatId, Q as VatType, jA as VatTypeWithLiterals, d5 as VersionedDeleteByIdsOperation, d6 as VersionedDocumentId, d4 as VersionedDocumentUpdateOperation, a7 as VersioningMode, jO as VersioningModeWithLiterals, f2 as VoidAuthorizedPaymentsRequest, at as VoidedReason, k8 as VoidedReasonWithLiterals, eT as VoidedStatusDetails, aa as WebhookIdentityType, jR as WebhookIdentityTypeWithLiterals, W as WeightUnit, jz as WeightUnitWithLiterals, cx as WixReceipt, eM as WixReceiptInfo, g7 as WixelAssigned, g8 as WixelUnassigned, jn as utils } from './ecom-v1-order-orders.universal-UEDhg1yc.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-B8Xp6Upp.js';
3
+ export { dM as AccountInfo, jd as AccountInfoMetadata, dG as ActionEvent, ao as ActionType, k6 as ActionTypeWithLiterals, bP as Activity, bQ as ActivityContentOneOf, a0 as ActivityType, jK as ActivityTypeWithLiterals, hN as AddActivitiesRequest, hJ as AddActivityRequest, hM as AddActivityResponse, hm as AddInternalActivityRequest, hI as AddInternalActivityResponse, gk as AddToAutomationMigrationPopulationRequest, gl as AddToAutomationMigrationPopulationResponse, cN as AdditionalFee, du as AdditionalFeeDelta, dv as AdditionalFeeDeltaDeltaOneOf, es as AdditionalFeeRefund, a4 as AdditionalFeeSource, jO as AdditionalFeeSourceWithLiterals, bp as Address, iL as AddressDescription, br as AddressLocation, bo as AddressWithContact, K as AdjustmentType, jy as AdjustmentTypeWithLiterals, jp as AggregateOrdersOptions, im as AggregateOrdersRequest, io as AggregateOrdersResponse, e_ as AggregatedRefundSummary, e9 as ApplicationError, bF as AppliedDiscount, ds as AppliedDiscountDelta, dt as AppliedDiscountDeltaDeltaOneOf, bG as AppliedDiscountDiscountSourceOneOf, gY as ArchiveOrderRequest, gZ as ArchiveOrderResponse, fP as Asset, a2 as AttributionSource, jM as AttributionSourceWithLiterals, eH as AuthorizationActionFailureDetails, eG as AuthorizationCapture, al as AuthorizationCaptureStatus, k3 as AuthorizationCaptureStatusWithLiterals, eF as AuthorizationDetails, eI as AuthorizationVoid, am as AuthorizationVoidStatus, k4 as AuthorizationVoidStatusWithLiterals, ce as AuthorizedPaymentCaptured, cd as AuthorizedPaymentCreated, cf as AuthorizedPaymentVoided, cL as Balance, cK as BalanceSummary, jb as BaseEventMetadata, iV as BigDecimalWrapper, b8 as BillingAdjustment, b9 as BillingAdjustmentPriceSummary, b7 as BillingSettings, ea as BulkActionMetadata, h0 as BulkArchiveOrdersByFilterRequest, h1 as BulkArchiveOrdersByFilterResponse, g_ as BulkArchiveOrdersRequest, g$ as BulkArchiveOrdersResponse, dR as BulkDeleteImportedOrdersRequest, dS as BulkDeleteImportedOrdersResponse, i2 as BulkMarkAsFulfilledByFilterRequest, i3 as BulkMarkAsFulfilledByFilterResponse, i0 as BulkMarkAsFulfilledRequest, i1 as BulkMarkAsFulfilledResponse, i8 as BulkMarkAsUnfulfilledByFilterRequest, i9 as BulkMarkAsUnfulfilledByFilterResponse, i6 as BulkMarkAsUnfulfilledRequest, i7 as BulkMarkAsUnfulfilledResponse, e5 as BulkMarkOrdersAsPaidRequest, e6 as BulkMarkOrdersAsPaidResponse, e7 as BulkOrderResult, ff as BulkSendBuyerPickupConfirmationEmailsRequest, fg as BulkSendBuyerPickupConfirmationEmailsResponse, fj as BulkSendBuyerShippingConfirmationEmailsRequest, fk as BulkSendBuyerShippingConfirmationEmailsResponse, ia as BulkSetBusinessLocationRequest, ib as BulkSetBusinessLocationResponse, ic as BulkSetBusinessLocationResult, h6 as BulkUnArchiveOrdersByFilterRequest, h7 as BulkUnArchiveOrdersByFilterResponse, h4 as BulkUnArchiveOrdersRequest, h5 as BulkUnArchiveOrdersResponse, is as BulkUpdateOrderTagsRequest, iv as BulkUpdateOrderTagsResult, gO as BulkUpdateOrdersRequest, bk as BuyerInfo, bl as BuyerInfoIdOneOf, h9 as BuyerInfoUpdate, f2 as CalculateRefundItemRequest, f4 as CalculateRefundItemResponse, f1 as CalculateRefundRequest, f3 as CalculateRefundResponse, j3 as CalculatedTax, j2 as CalculatedTaxes, iD as Cancel, hX as CancelOrderRequest, as as CanceledReason, ka as CanceledReasonWithLiterals, eU as CanceledStatusDetails, f6 as CaptureAuthorizedPaymentsRequest, cM as CashRounding, eR as CashRoundingDetails, aN as CatalogReference, cI as ChannelInfo, a3 as ChannelType, jN as ChannelTypeWithLiterals, ji as ChargeMembershipsOptions, ei as ChargeMembershipsRequest, em as ChargeMembershipsResponse, f7 as ChargeSavedPaymentMethodRequest, f8 as ChargeSavedPaymentMethodResponse, a7 as ChargeType, jR as ChargeTypeWithLiterals, eK as Chargeback, cE as ChargebackCreated, cF as ChargebackReversed, ap as ChargebackStatus, k7 as ChargebackStatusWithLiterals, eg as ChargedBy, aT as Color, gP as CommitDeltasRequest, gX as CommitDeltasResponse, dl as CommittedDiffs, dm as CommittedDiffsShippingUpdateInfoOneOf, iO as CommonAddress, iP as CommonAddressStreetOneOf, kA as CommonSearchWithEntityContext, iN as Company, iC as Complete, bH as Coupon, gH as CreateOrderRequest, gL as CreateOrderResponse, ef as CreatePaymentGatewayOrderRequest, eh as CreatePaymentGatewayOrderResponse, cG as CreatedBy, cH as CreatedByStringOneOf, ct as CreditCardDetails, eE as CreditCardPaymentMethodDetails, bm as CurrencyConversionDetails, gx as CursorPaging, gG as CursorPagingMetadata, gE as CursorSearch, gF as CursorSearchPagingMethodOneOf, gA as Cursors, bR as CustomActivity, cV as CustomAllowedActions, cJ as CustomField, aH as CustomFieldGroup, kp as CustomFieldGroupWithLiterals, j8 as CustomFieldValue, iI as Customer, be as DecimalQuantity, bf as DecimalQuantityUnitOneOf, at as DeclinedReason, kb as DeclinedReasonWithLiterals, eV as DeclinedStatusDetails, iq as DecrementData, ip as DecrementItemsQuantityRequest, ir as DecrementItemsQuantityResponse, dY as DelayedCaptureSettings, jo as DeleteActivityIdentifiers, hQ as DeleteActivityRequest, hR as DeleteActivityResponse, d4 as DeleteByFilterOperation, d3 as DeleteByIdsOperation, fT as DeleteContext, aA as DeleteStatus, ki as DeleteStatusWithLiterals, bv as DeliveryLogistics, bw as DeliveryLogisticsAddressOneOf, bz as DeliveryTimeSlot, a9 as DeltaPaymentOptionType, jT as DeltaPaymentOptionTypeWithLiterals, ja as Deposit, aJ as DepositType, kr as DepositTypeWithLiterals, aO as DescriptionLine, aQ as DescriptionLineDescriptionLineValueOneOf, aR as DescriptionLineName, D as DescriptionLineType, jr as DescriptionLineTypeWithLiterals, aP as DescriptionLineValueOneOf, go as DiffmatokyPayload, b1 as DigitalFile, aW as Dimensions, z as DimensionsUnit, js as DimensionsUnitWithLiterals, j0 as Discount, j1 as DiscountOneDiscountTypeOneOf, _ as DiscountReason, jI as DiscountReasonWithLiterals, bK as DiscountRule, bL as DiscountRuleName, Z as DiscountType, jH as DiscountTypeWithLiterals, dA as DomainEvent, dB as DomainEventBodyOneOf, hu as DownloadLinkSent, bX as DraftOrderChangesApplied, dw as DraftOrderCommitSettings, gQ as DraftOrderDiffs, gT as DraftOrderDiffsBillingUpdateInfoOneOf, gS as DraftOrderDiffsBuyerUpdateInfoOneOf, gU as DraftOrderDiffsRecipientUpdateInfoOneOf, gR as DraftOrderDiffsShippingUpdateInfoOneOf, dZ as Duration, ad as DurationUnit, jX as DurationUnitWithLiterals, gg as EditorlessAssigned, gh as EditorlessUnassigned, iJ as Email, hD as EmailEdited, dH as Empty, dC as EntityCreatedEvent, dF as EntityDeletedEvent, dE as EntityUpdatedEvent, gp as ErrorInformation, jc as EventMetadata, bh as ExtendedFields, cB as ExternalReceipt, eQ as ExternalReceiptInfo, aU as FocalPoint, cY as FormIdentifier, cX as FormInfo, b6 as FreeTrialPeriod, hB as FulfillerEmailSent, Q as FulfillmentStatus, di as FulfillmentStatusUpdated, jC as FulfillmentStatusWithLiterals, cO as FulfillmentStatusesAggregate, bs as FullAddressContactDetails, eO as FutureMembershipDetails, gq as GetOrderRequest, gr as GetOrderResponse, d_ as GetPaymentCollectabilityStatusRequest, eb as GetRefundabilityStatusRequest, ec as GetRefundabilityStatusResponse, ik as GetShipmentsRequest, il as GetShipmentsResponse, eM as GiftCardPaymentDetails, ck as GiftCardPaymentRefund, gi as HasCustomEmailConfigurationsRequest, gj as HasCustomEmailConfigurationsResponse, iG as IdAndVersion, dK as IdentificationData, dL as IdentificationDataIdOneOf, kt as ImportOrderApplicationErrors, dN as ImportOrderRequest, dO as ImportOrderResponse, dg as ImportedOrderDeleted, hn as InternalActivity, ho as InternalActivityContentOneOf, d1 as InternalDocument, d5 as InternalDocumentUpdateByFilterOperation, d2 as InternalDocumentUpdateOperation, gs as InternalQueryOrdersRequest, gy as InternalQueryOrdersResponse, d6 as InternalUpdateExistingOperation, aa as InventoryAction, jU as InventoryActionWithLiterals, dx as InventoryUpdateDetails, hz as InvoiceAdded, iS as InvoiceDates, j7 as InvoiceDynamicPriceTotals, iH as InvoiceFields, hA as InvoiceSent, iF as InvoiceSentEvent, aK as InvoiceStatus, ks as InvoiceStatusWithLiterals, j5 as InvoicesPayment, gm as IsInAutomationMigrationPopulationRequest, gn as IsInAutomationMigrationPopulationResponse, dn as ItemChangedDetails, bN as ItemCombination, bO as ItemCombinationLineItem, e8 as ItemMetadata, bj as ItemModifier, a_ as ItemTaxFullDetails, aX as ItemType, aY as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, jt as ItemTypePresetWithLiterals, i$ as ItemizedFee, J as JurisdictionType, jv as JurisdictionTypeWithLiterals, iU as LineItem, c7 as LineItemAmount, b_ as LineItemChanges, dq as LineItemDelta, dr as LineItemDeltaDeltaOneOf, c2 as LineItemDescriptionLineChange, bM as LineItemDiscount, bW as LineItemExchangeData, iY as LineItemMetaData, c3 as LineItemModifiersChange, c0 as LineItemPriceChange, c1 as LineItemProductNameChange, b$ as LineItemQuantityChange, $ as LineItemQuantityChangeType, jJ as LineItemQuantityChangeTypeWithLiterals, er as LineItemRefund, f0 as LineItemRefundSummary, iW as LineItemTax, b0 as LineItemTaxBreakdown, a$ as LineItemTaxInfo, hT as LineItemUpdate, iT as LineItems, iZ as Locale, cR as Location, bb as LocationAndQuantity, c8 as ManagedAdditionalFee, c5 as ManagedDiscount, c4 as ManagedLineItem, ai as ManuallyRefundableReason, k0 as ManuallyRefundableReasonWithLiterals, h_ as MarkAsFulfilledRequest, h$ as MarkAsFulfilledResponse, i4 as MarkAsUnfulfilledRequest, i5 as MarkAsUnfulfilledResponse, e3 as MarkOrderAsPaidRequest, e4 as MarkOrderAsPaidResponse, hV as MarkOrderAsSeenByHumanRequest, hW as MarkOrderAsSeenByHumanResponse, hk as MaskedOrderLineItem, L as MeasurementUnit, jA as MeasurementUnitWithLiterals, ej as MembershipChargeItem, ek as MembershipName, eN as MembershipPaymentDetails, cl as MembershipPaymentRefund, aq as MembershipPaymentStatus, k8 as MembershipPaymentStatusWithLiterals, bS as MerchantComment, bI as MerchantDiscount, bJ as MerchantDiscountMerchantDiscountReasonOneOf, dJ as MessageEnvelope, j6 as MetaData, fN as MetaSiteSpecialEvent, fO as MetaSiteSpecialEventPayloadOneOf, bi as ModifierGroup, az as Namespace, g1 as NamespaceChanged, kh as NamespaceWithLiterals, bV as NewExchangeOrderCreated, ah as NonRefundableReason, j$ as NonRefundableReasonWithLiterals, g6 as OdeditorAssigned, g7 as OdeditorUnassigned, a5 as OrderActionType, jP as OrderActionTypeWithLiterals, a1 as OrderActivityTypeEnumActivityType, jL as OrderActivityTypeEnumActivityTypeWithLiterals, aD as OrderApprovalStrategy, kl as OrderApprovalStrategyWithLiterals, da as OrderApproved, ht as OrderCanceled, dj as OrderCanceledEventOrderCanceled, bY as OrderChange, bZ as OrderChangeValueOneOf, gK as OrderCreateNotifications, bU as OrderCreatedFromExchange, gI as OrderCreationSettings, gJ as OrderCreationSettingsEditableByOneOf, dk as OrderDeltasCommitted, hr as OrderFulfilled, df as OrderImported, dd as OrderItemsRestocked, aL as OrderLineItem, dp as OrderLineItemChangedDetails, hs as OrderNotFulfilled, hq as OrderPaid, hF as OrderPartiallyPaid, hG as OrderPending, hp as OrderPlaced, bT as OrderRefunded, hH as OrderRejected, dc as OrderRejectedEventOrderRejected, jk as OrderSearchSpec, cS as OrderSettings, cT as OrderSettingsAllowedActionsOneOf, cU as OrderSettingsEditableByOneOf, Y as OrderStatus, jG as OrderStatusWithLiterals, bE as OrderTaxBreakdown, bD as OrderTaxInfo, ey as OrderTransactions, db as OrdersExperiments, aB as Origin, kj as OriginWithLiterals, cW as OwnerApps, ez as Payment, cu as PaymentCanceled, cv as PaymentCanceledPaymentDetailsOneOf, ae as PaymentCollectabilityStatus, jY as PaymentCollectabilityStatusWithLiterals, kx as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, jh as PaymentCollectionCreatePaymentGatewayOrderOptions, kw as PaymentCollectionMarkOrderAsPaidApplicationErrors, jg as PaymentCollectionMarkOrderAsPaidOptions, cw as PaymentDeclined, cx as PaymentDeclinedPaymentDetailsOneOf, eL as PaymentMethodName, E as PaymentOptionType, ju as PaymentOptionTypeWithLiterals, eA as PaymentPaymentDetailsOneOf, cp as PaymentPending, cq as PaymentPendingPaymentDetailsOneOf, eB as PaymentReceiptInfoOneOf, eo as PaymentRefund, cn as PaymentRefundFailed, cm as PaymentRefunded, ar as PaymentStatus, eS as PaymentStatusDetails, eT as PaymentStatusDetailsStatusDetailsOneOf, N as PaymentStatusEnumPaymentStatus, jB as PaymentStatusEnumPaymentStatusWithLiterals, dh as PaymentStatusUpdated, k9 as PaymentStatusWithLiterals, j4 as Payments, iM as Phone, aV as PhysicalProperties, g8 as PicassoAssigned, g9 as PicassoUnassigned, by as PickupAddress, bx as PickupDetails, X as PickupMethod, jF as PickupMethodWithLiterals, hE as PickupReadyEmailSent, aE as Placement, km as PlacementWithLiterals, aS as PlainTextValue, c_ as PlatformFee, cZ as PlatformFeeSummary, gw as PlatformPaging, gz as PlatformPagingMetadata, gt as PlatformQuery, gu as PlatformQueryPagingMethodOneOf, af as PredefinedPaymentMethod, jZ as PredefinedPaymentMethodWithLiterals, dW as PreparePaymentCollectionRequest, fF as PreviewBuyerConfirmationEmailRequest, fG as PreviewBuyerConfirmationEmailResponse, fD as PreviewBuyerPaymentsReceivedEmailRequest, fE as PreviewBuyerPaymentsReceivedEmailResponse, fH as PreviewBuyerPickupConfirmationEmailRequest, fI as PreviewBuyerPickupConfirmationEmailResponse, fz as PreviewCancelEmailRequest, fA as PreviewCancelEmailResponse, fB as PreviewCancelRefundEmailRequest, fC as PreviewCancelRefundEmailResponse, fv as PreviewEmailByTypeRequest, fw as PreviewEmailByTypeResponse, aw as PreviewEmailType, ke as PreviewEmailTypeWithLiterals, fx as PreviewRefundEmailRequest, fy as PreviewRefundEmailResponse, fL as PreviewResendDownloadLinksEmailRequest, fM as PreviewResendDownloadLinksEmailResponse, fJ as PreviewShippingConfirmationEmailRequest, fK as PreviewShippingConfirmationEmailResponse, ba as PriceDescription, bn as PriceSummary, aM as ProductName, H as ProductPeriodAlignment, jx as ProductPeriodAlignmentWithLiterals, hK as PublicActivity, hL as PublicActivityContentOneOf, gB as QueryOrderRequest, gC as QueryOrderResponse, iK as QuotesAddress, an as Reason, k5 as ReasonWithLiterals, cy as ReceiptCreated, cz as ReceiptCreatedReceiptInfoOneOf, cC as ReceiptSent, cD as ReceiptSentReceiptInfoOneOf, kv as RecordManuallyCollectedPaymentApplicationErrors, jf as RecordManuallyCollectedPaymentOptions, d$ as RecordManuallyCollectedPaymentRequest, e2 as RecordManuallyCollectedPaymentResponse, dX as RedirectUrls, eX as Refund, ep as RefundDetails, cg as RefundInitiated, eq as RefundItem, e$ as RefundItemsBreakdown, eu as RefundSideEffects, av as RefundStatus, eZ as RefundStatusInfo, kd as RefundStatusWithLiterals, eY as RefundTransaction, ed as Refundability, ee as RefundabilityAdditionalRefundabilityInfoOneOf, ag as RefundableStatus, j_ as RefundableStatusWithLiterals, co as RefundedAsStoreCredit, ch as RefundedPayment, ci as RefundedPaymentKindOneOf, cr as RegularPayment, eC as RegularPaymentDetails, eD as RegularPaymentDetailsPaymentMethodDetailsOneOf, cs as RegularPaymentPaymentMethodDetailsOneOf, cj as RegularPaymentRefund, iE as Reschedule, ev as RestockInfo, ew as RestockItem, aZ as RestockLocation, aj as RestockType, k1 as RestockTypeWithLiterals, dD as RestoreInfo, cc as SavedPaymentMethod, ac as ScheduledAction, jW as ScheduledActionWithLiterals, gD as SearchOrdersRequest, f9 as SendBuyerConfirmationEmailRequest, fa as SendBuyerConfirmationEmailResponse, fb as SendBuyerPaymentsReceivedEmailRequest, fc as SendBuyerPaymentsReceivedEmailResponse, fd as SendBuyerPickupConfirmationEmailRequest, fe as SendBuyerPickupConfirmationEmailResponse, fh as SendBuyerShippingConfirmationEmailRequest, fi as SendBuyerShippingConfirmationEmailResponse, fn as SendCancelRefundEmailRequest, fo as SendCancelRefundEmailResponse, fr as SendFulfillmentEmailRequest, fs as SendFulfillmentEmailResponse, fl as SendMerchantOrderReceivedNotificationRequest, fm as SendMerchantOrderReceivedNotificationResponse, ft as SendMerchantOrderReceivedPushRequest, fu as SendMerchantOrderReceivedPushResponse, iw as SendOrderUpdatedDomainEventRequest, ix as SendOrderUpdatedDomainEventResponse, fp as SendRefundEmailRequest, fq as SendRefundEmailResponse, el as ServiceProperties, fZ as ServiceProvisioned, f_ as ServiceRemoved, ku as SetOrderNumberCounterApplicationErrors, je as SetOrderNumberCounterOptions, dP as SetOrderNumberCounterRequest, dQ as SetOrderNumberCounterResponse, hC as ShippingAddressEdited, hy as ShippingConfirmationEmailSent, cb as ShippingInformation, ca as ShippingInformationChange, bA as ShippingPrice, et as ShippingRefund, bB as ShippingRegion, fQ as SiteCreated, ay as SiteCreatedContext, kg as SiteCreatedContextWithLiterals, fS as SiteDeleted, g0 as SiteHardDeleted, fX as SiteMarkedAsTemplate, fY as SiteMarkedAsWixSite, fV as SitePublished, g5 as SitePurgedExternally, f$ as SiteRenamed, fR as SiteTransferred, fU as SiteUndeleted, fW as SiteUnpublished, g4 as SiteUrlChanged, aC as SortOrder, kk as SortOrderWithLiterals, gv as Sorting, iX as Source, aG as SourceType, ko as SourceTypeWithLiterals, a6 as SpecificItemsCouponBehavior, jQ as SpecificItemsCouponBehaviorWithLiterals, iR as StandardDetails, ax as State, kf as StateWithLiterals, bq as StreetAddress, g2 as StudioAssigned, gc as StudioTwoAssigned, gd as StudioTwoUnassigned, g3 as StudioUnassigned, iQ as Subdivision, aF as SubdivisionType, kn as SubdivisionTypeWithLiterals, b4 as SubscriptionDescription, F as SubscriptionFrequency, jw as SubscriptionFrequencyWithLiterals, b2 as SubscriptionInfo, b5 as SubscriptionSettings, b3 as SubscriptionTitle, cQ as TagList, cP as Tags, iu as TagsTagList, it as TagsTags, iy as Task, iA as TaskAction, iB as TaskActionActionOneOf, iz as TaskKey, bC as TaxSummary, bc as TaxableAddress, bd as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, jz as TaxableAddressTypeWithLiterals, i_ as TotalPrice, c9 as TotalPriceChange, hx as TrackingLinkAdded, hv as TrackingNumberAdded, hw as TrackingNumberEdited, ak as TransactionStatus, k2 as TransactionStatusWithLiterals, bg as TranslatableString, c6 as TranslatedValue, ky as TriggerRefundApplicationErrors, jj as TriggerRefundOptions, en as TriggerRefundRequest, ex as TriggerRefundResponse, dI as TriggerReindexOrderRequest, dy as TriggerReindexRequest, dz as TriggerReindexResponse, h2 as UnArchiveOrderRequest, h3 as UnArchiveOrderResponse, jn as UpdateActivityIdentifiers, hO as UpdateActivityRequest, hP as UpdateActivityResponse, hf as UpdateBillingContactDetailsRequest, hg as UpdateBillingContactDetailsResponse, hb as UpdateBuyerEmailRequest, hc as UpdateBuyerEmailResponse, h8 as UpdateBuyerInfoRequest, ha as UpdateBuyerInfoResponse, c$ as UpdateInternalDocumentsEvent, d0 as UpdateInternalDocumentsEventOperationOneOf, hS as UpdateLineItemsDescriptionLinesRequest, hU as UpdateLineItemsDescriptionLinesResponse, jm as UpdateOrderLineItem, jl as UpdateOrderLineItemIdentifiers, hh as UpdateOrderLineItemRequest, hi as UpdateOrderLineItemResponse, hj as UpdateOrderLineItemsRequest, hl as UpdateOrderLineItemsResponse, gM as UpdateOrderRequest, gN as UpdateOrderResponse, hd as UpdateOrderShippingAddressRequest, he as UpdateOrderShippingAddressResponse, kz as UpdateOrderStatusApplicationErrors, hY as UpdateOrderStatusRequest, hZ as UpdateOrderStatusResponse, e0 as UserDefinedPaymentMethodName, e1 as UserDefinedPaymentMethodNameKindOneOf, gf as UserDomainMediaDisabled, ge as UserDomainMediaEnabled, ig as V1BulkMarkOrdersAsPaidRequest, ih as V1BulkMarkOrdersAsPaidResponse, ii as V1CreatePaymentGatewayOrderRequest, ij as V1CreatePaymentGatewayOrderResponse, gV as V1LineItemDelta, gW as V1LineItemDeltaDeltaOneOf, id as V1MarkOrderAsPaidRequest, ie as V1MarkOrderAsPaidResponse, de as V1RestockItem, eJ as V1ScheduledAction, bu as V1ShippingInformation, dV as V1TriggerReindexOrderRequest, dT as V1TriggerReindexRequest, dU as V1TriggerReindexResponse, j9 as Value, aI as ValueType, kq as ValueTypeWithLiterals, bt as VatId, R as VatType, jE as VatTypeWithLiterals, d8 as VersionedDeleteByIdsOperation, d9 as VersionedDocumentId, d7 as VersionedDocumentUpdateOperation, a8 as VersioningMode, jS as VersioningModeWithLiterals, f5 as VoidAuthorizedPaymentsRequest, au as VoidedReason, kc as VoidedReasonWithLiterals, eW as VoidedStatusDetails, ab as WebhookIdentityType, jV as WebhookIdentityTypeWithLiterals, W as WeightUnit, jD as WeightUnitWithLiterals, cA as WixReceipt, eP as WixReceiptInfo, ga as WixelAssigned, gb as WixelUnassigned, jq as utils } from './ecom-v1-order-orders.universal-B8Xp6Upp.js';
4
4
 
5
5
  declare function preparePaymentCollection$1(httpClient: HttpClient): PreparePaymentCollectionSignature;
6
6
  interface PreparePaymentCollectionSignature {
@@ -48,6 +48,7 @@ __export(index_exports, {
48
48
  JurisdictionType: () => JurisdictionType,
49
49
  LineItemQuantityChangeType: () => LineItemQuantityChangeType,
50
50
  ManuallyRefundableReason: () => ManuallyRefundableReason,
51
+ MeasurementUnit: () => MeasurementUnit,
51
52
  MembershipPaymentStatus: () => MembershipPaymentStatus,
52
53
  Namespace: () => Namespace,
53
54
  NonRefundableReason: () => NonRefundableReason,
@@ -1920,6 +1921,31 @@ var TaxableAddressType = /* @__PURE__ */ ((TaxableAddressType2) => {
1920
1921
  TaxableAddressType2["SHIPPING"] = "SHIPPING";
1921
1922
  return TaxableAddressType2;
1922
1923
  })(TaxableAddressType || {});
1924
+ var MeasurementUnit = /* @__PURE__ */ ((MeasurementUnit2) => {
1925
+ MeasurementUnit2["UNSPECIFIED"] = "UNSPECIFIED";
1926
+ MeasurementUnit2["ML"] = "ML";
1927
+ MeasurementUnit2["CL"] = "CL";
1928
+ MeasurementUnit2["L"] = "L";
1929
+ MeasurementUnit2["CBM"] = "CBM";
1930
+ MeasurementUnit2["MG"] = "MG";
1931
+ MeasurementUnit2["G"] = "G";
1932
+ MeasurementUnit2["KG"] = "KG";
1933
+ MeasurementUnit2["MM"] = "MM";
1934
+ MeasurementUnit2["CM"] = "CM";
1935
+ MeasurementUnit2["M"] = "M";
1936
+ MeasurementUnit2["SQM"] = "SQM";
1937
+ MeasurementUnit2["OZ"] = "OZ";
1938
+ MeasurementUnit2["LB"] = "LB";
1939
+ MeasurementUnit2["FLOZ"] = "FLOZ";
1940
+ MeasurementUnit2["PT"] = "PT";
1941
+ MeasurementUnit2["QT"] = "QT";
1942
+ MeasurementUnit2["GAL"] = "GAL";
1943
+ MeasurementUnit2["IN"] = "IN";
1944
+ MeasurementUnit2["FT"] = "FT";
1945
+ MeasurementUnit2["YD"] = "YD";
1946
+ MeasurementUnit2["SQFT"] = "SQFT";
1947
+ return MeasurementUnit2;
1948
+ })(MeasurementUnit || {});
1923
1949
  var PaymentStatusEnumPaymentStatus = /* @__PURE__ */ ((PaymentStatusEnumPaymentStatus2) => {
1924
1950
  PaymentStatusEnumPaymentStatus2["UNSPECIFIED"] = "UNSPECIFIED";
1925
1951
  PaymentStatusEnumPaymentStatus2["NOT_PAID"] = "NOT_PAID";
@@ -4254,6 +4280,7 @@ var onOrderUpdated2 = (0, import_event_definition_modules.createEventModule)(onO
4254
4280
  JurisdictionType,
4255
4281
  LineItemQuantityChangeType,
4256
4282
  ManuallyRefundableReason,
4283
+ MeasurementUnit,
4257
4284
  MembershipPaymentStatus,
4258
4285
  Namespace,
4259
4286
  NonRefundableReason,