@wix/auto_sdk_ecom_orders 1.0.271 → 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 (41) 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/es/{ecom-v1-order-orders.universal-UEDhg1yc.d.mts → ecom-v1-order-orders.universal-B8Xp6Upp.d.mts} +65 -22
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +26 -0
  14. package/build/es/index.mjs.map +1 -1
  15. package/build/es/index.typings.d.mts +2 -2
  16. package/build/es/index.typings.mjs +26 -0
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +66 -23
  19. package/build/es/meta.mjs +26 -0
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{ecom-v1-order-orders.universal-CuidLNHL.d.ts → ecom-v1-order-orders.universal-B3g4xg2t.d.ts} +99 -19
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +27 -0
  24. package/build/internal/cjs/index.js.map +1 -1
  25. package/build/internal/cjs/index.typings.d.ts +2 -2
  26. package/build/internal/cjs/index.typings.js +27 -0
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +66 -23
  29. package/build/internal/cjs/meta.js +27 -0
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{ecom-v1-order-orders.universal-CuidLNHL.d.mts → ecom-v1-order-orders.universal-B3g4xg2t.d.mts} +99 -19
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +26 -0
  34. package/build/internal/es/index.mjs.map +1 -1
  35. package/build/internal/es/index.typings.d.mts +2 -2
  36. package/build/internal/es/index.typings.mjs +26 -0
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +66 -23
  39. package/build/internal/es/meta.mjs +26 -0
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -966,32 +966,59 @@ declare enum TaxableAddressType {
966
966
  }
967
967
  /** @enumType */
968
968
  type TaxableAddressTypeWithLiterals = TaxableAddressType | 'BUSINESS' | 'BILLING' | 'SHIPPING';
969
- interface ExtendedFields {
969
+ /**
970
+ * Decimal-quantity metadata for a line item.
971
+ *
972
+ * Set on a line item that represents a non-integer-quantity purchase
973
+ * (e.g. "2.75 square meters of fake grass", "1.5 kg of sugar",
974
+ * "0.75 hours of consultation"). When set, the line item must have
975
+ * `fixedQuantity` = true.
976
+ *
977
+ * The decimal value lives in `value`. When `decimalQuantity` is set,
978
+ * consumers read the human-readable quantity from `value` rather
979
+ * than from `lineItem.quantity`.
980
+ */
981
+ interface DecimalQuantity extends DecimalQuantityUnitOneOf {
982
+ /** @internal */
983
+ measurementUnit?: MeasurementUnitWithLiterals;
970
984
  /**
971
- * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
972
- * The value of each key is structured according to the schema defined when the extended fields were configured.
985
+ * Free-form unit name for standard units not in the
986
+ * `measurementUnit` enum (e.g. "hour", "minute", "session").
987
+ * @internal
988
+ * @minLength 1
989
+ * @maxLength 50
990
+ */
991
+ otherUnit?: string;
992
+ /**
993
+ * The decimal quantity the buyer / merchant entered.
973
994
  *
974
- * You can only access fields for which you have the appropriate permissions.
995
+ * String-encoded decimal. The exact value is preserved no
996
+ * rounding, no conversion to an integer.
975
997
  *
976
- * Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
998
+ * Examples: "2.75", "1.5", "0.75".
999
+ * @internal
1000
+ * @decimalValue options { gt:0, lte:1000000000000000, maxScale:4 }
977
1001
  */
978
- namespaces?: Record<string, Record<string, any>>;
979
- }
980
- interface ModifierGroup {
1002
+ value?: string;
981
1003
  /**
982
- * Modifier group ID.
983
- * @minLength 1
984
- * @maxLength 36
1004
+ * Human-readable description of the quantity
1005
+ * e.g. "2.75 square meters of fake grass".
1006
+ * @internal
985
1007
  */
986
- _id?: string;
987
- /** Modifier group name. */
988
- name?: TranslatableString;
1008
+ description?: TranslatableString;
1009
+ }
1010
+ /** @oneof */
1011
+ interface DecimalQuantityUnitOneOf {
1012
+ /** @internal */
1013
+ measurementUnit?: MeasurementUnitWithLiterals;
989
1014
  /**
990
- * List of modifiers in this group.
991
- * @minSize 1
992
- * @maxSize 10
1015
+ * Free-form unit name for standard units not in the
1016
+ * `measurementUnit` enum (e.g. "hour", "minute", "session").
1017
+ * @internal
1018
+ * @minLength 1
1019
+ * @maxLength 50
993
1020
  */
994
- modifiers?: ItemModifier[];
1021
+ otherUnit?: string;
995
1022
  }
996
1023
  interface TranslatableString {
997
1024
  /**
@@ -1014,6 +1041,59 @@ interface TranslatableString {
1014
1041
  */
1015
1042
  translated?: string | null;
1016
1043
  }
1044
+ declare enum MeasurementUnit {
1045
+ UNSPECIFIED = "UNSPECIFIED",
1046
+ ML = "ML",
1047
+ CL = "CL",
1048
+ L = "L",
1049
+ CBM = "CBM",
1050
+ MG = "MG",
1051
+ G = "G",
1052
+ KG = "KG",
1053
+ MM = "MM",
1054
+ CM = "CM",
1055
+ M = "M",
1056
+ SQM = "SQM",
1057
+ OZ = "OZ",
1058
+ LB = "LB",
1059
+ FLOZ = "FLOZ",
1060
+ PT = "PT",
1061
+ QT = "QT",
1062
+ GAL = "GAL",
1063
+ IN = "IN",
1064
+ FT = "FT",
1065
+ YD = "YD",
1066
+ SQFT = "SQFT"
1067
+ }
1068
+ /** @enumType */
1069
+ 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';
1070
+ interface ExtendedFields {
1071
+ /**
1072
+ * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
1073
+ * The value of each key is structured according to the schema defined when the extended fields were configured.
1074
+ *
1075
+ * You can only access fields for which you have the appropriate permissions.
1076
+ *
1077
+ * Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).
1078
+ */
1079
+ namespaces?: Record<string, Record<string, any>>;
1080
+ }
1081
+ interface ModifierGroup {
1082
+ /**
1083
+ * Modifier group ID.
1084
+ * @minLength 1
1085
+ * @maxLength 36
1086
+ */
1087
+ _id?: string;
1088
+ /** Modifier group name. */
1089
+ name?: TranslatableString;
1090
+ /**
1091
+ * List of modifiers in this group.
1092
+ * @minSize 1
1093
+ * @maxSize 10
1094
+ */
1095
+ modifiers?: ItemModifier[];
1096
+ }
1017
1097
  interface ItemModifier {
1018
1098
  /**
1019
1099
  * Modifier ID.
@@ -9689,4 +9769,4 @@ interface BulkUpdateOrderTagsOptions {
9689
9769
  unassignTags?: TagsTags;
9690
9770
  }
9691
9771
 
9692
- export { type CancelOrderOptions as $, type UpdateOrderApplicationErrors as A, type BulkDeleteImportedOrdersResponse as B, type CreatePaymentGatewayOrderResponse as C, type MaskedOrder as D, type BulkUpdateOrdersOptions as E, type BulkUpdateOrdersResponse as F, type GetPaymentCollectabilityStatusResponse as G, type UpdateOrderLineItemIdentifiers as H, type ImportOrderResponse as I, type UpdateOrderLineItem as J, type UpdateOrderLineItemResponse as K, type PublicActivity as L, type MarkOrderAsPaidResponse as M, type AddActivityResponse as N, type Order as O, type Price as P, type AddActivitiesOptions as Q, type RecordManuallyCollectedPaymentOptions as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type AddActivitiesResponse as W, type UpdateActivityIdentifiers as X, type UpdateActivityResponse as Y, type DeleteActivityIdentifiers as Z, type DeleteActivityResponse as _, type ImportOrderApplicationErrors as a, DeclinedReason as a$, type CancelOrderResponse as a0, type CancelOrderApplicationErrors as a1, type OrderStatusWithLiterals as a2, type UpdateOrderStatusResponse as a3, type UpdateOrderStatusApplicationErrors as a4, type AggregateOrdersOptions as a5, type AggregateOrdersResponse as a6, type BulkUpdateOrderTagsOptions as a7, type BulkUpdateOrderTagsResponse as a8, type OrderApprovedEnvelope as a9, AttributionSource as aA, ChannelType as aB, AdditionalFeeSource as aC, OrderActionType as aD, SpecificItemsCouponBehavior as aE, ChargeType as aF, VersioningMode as aG, DeltaPaymentOptionType as aH, InventoryAction as aI, WebhookIdentityType as aJ, ScheduledAction as aK, DurationUnit as aL, PaymentCollectabilityStatus as aM, PredefinedPaymentMethod as aN, RefundableStatus as aO, NonRefundableReason as aP, ManuallyRefundableReason as aQ, RestockType as aR, TransactionStatus as aS, AuthorizationCaptureStatus as aT, AuthorizationVoidStatus as aU, Reason as aV, ActionType as aW, ChargebackStatus as aX, MembershipPaymentStatus as aY, PaymentStatus as aZ, CanceledReason as a_, type OrderCanceledEnvelope as aa, type OrderCommittedEnvelope as ab, type OrderCreatedEnvelope as ac, type OrderFulfilledEnvelope as ad, type OrderPaymentStatusUpdatedEnvelope as ae, type OrderUpdatedEnvelope as af, DescriptionLineType as ag, DimensionsUnit as ah, ItemTypePreset as ai, PaymentOptionType as aj, JurisdictionType as ak, SubscriptionFrequency as al, ProductPeriodAlignment as am, AdjustmentType as an, TaxableAddressType as ao, PaymentStatusEnumPaymentStatus as ap, FulfillmentStatus as aq, WeightUnit as ar, VatType as as, PickupMethod as at, OrderStatus as au, DiscountType as av, DiscountReason as aw, LineItemQuantityChangeType as ax, ActivityType as ay, OrderActivityTypeEnumActivityType as az, type SetOrderNumberCounterResponse as b, type DeliveryLogistics as b$, VoidedReason as b0, RefundStatus as b1, PreviewEmailType as b2, State as b3, SiteCreatedContext as b4, Namespace as b5, DeleteStatus as b6, Origin as b7, SortOrder as b8, OrderApprovalStrategy as b9, type SubscriptionInfo as bA, type SubscriptionTitle as bB, type SubscriptionDescription as bC, type SubscriptionSettings as bD, type FreeTrialPeriod as bE, type BillingSettings as bF, type BillingAdjustment as bG, type BillingAdjustmentPriceSummary as bH, type PriceDescription as bI, type LocationAndQuantity as bJ, type TaxableAddress as bK, type TaxableAddressTaxableAddressDataOneOf as bL, type ExtendedFields as bM, type ModifierGroup as bN, type TranslatableString as bO, type ItemModifier as bP, type BuyerInfo as bQ, type BuyerInfoIdOneOf as bR, type CurrencyConversionDetails as bS, type PriceSummary as bT, type AddressWithContact as bU, type Address as bV, type StreetAddress as bW, type AddressLocation as bX, type FullAddressContactDetails as bY, type VatId as bZ, type V1ShippingInformation as b_, Placement as ba, SubdivisionType as bb, SourceType as bc, CustomFieldGroup as bd, ValueType as be, DepositType as bf, InvoiceStatus as bg, type OrderLineItem as bh, type ProductName as bi, type CatalogReference as bj, type DescriptionLine as bk, type DescriptionLineValueOneOf as bl, type DescriptionLineDescriptionLineValueOneOf as bm, type DescriptionLineName as bn, type PlainTextValue as bo, type Color as bp, type FocalPoint as bq, type PhysicalProperties as br, type Dimensions as bs, type ItemType as bt, type ItemTypeItemTypeDataOneOf as bu, type RestockLocation as bv, type ItemTaxFullDetails as bw, type LineItemTaxInfo as bx, type LineItemTaxBreakdown as by, type DigitalFile as bz, type SetOrderNumberCounterApplicationErrors as c, type PaymentCanceledPaymentDetailsOneOf as c$, type DeliveryLogisticsAddressOneOf as c0, type PickupDetails as c1, type PickupAddress as c2, type DeliveryTimeSlot as c3, type ShippingPrice as c4, type ShippingRegion as c5, type TaxSummary as c6, type OrderTaxInfo as c7, type OrderTaxBreakdown as c8, type AppliedDiscount as c9, type ManagedLineItem as cA, type ManagedDiscount as cB, type TranslatedValue as cC, type LineItemAmount as cD, type ManagedAdditionalFee as cE, type TotalPriceChange as cF, type ShippingInformationChange as cG, type ShippingInformation as cH, type SavedPaymentMethod as cI, type AuthorizedPaymentCreated as cJ, type AuthorizedPaymentCaptured as cK, type AuthorizedPaymentVoided as cL, type RefundInitiated as cM, type RefundedPayment as cN, type RefundedPaymentKindOneOf as cO, type RegularPaymentRefund as cP, type GiftCardPaymentRefund as cQ, type MembershipPaymentRefund as cR, type PaymentRefunded as cS, type PaymentRefundFailed as cT, type RefundedAsStoreCredit as cU, type PaymentPending as cV, type PaymentPendingPaymentDetailsOneOf as cW, type RegularPayment as cX, type RegularPaymentPaymentMethodDetailsOneOf as cY, type CreditCardDetails as cZ, type PaymentCanceled as c_, type AppliedDiscountDiscountSourceOneOf as ca, type Coupon as cb, type MerchantDiscount as cc, type MerchantDiscountMerchantDiscountReasonOneOf as cd, type DiscountRule as ce, type DiscountRuleName as cf, type LineItemDiscount as cg, type ItemCombination as ch, type ItemCombinationLineItem as ci, type Activity as cj, type ActivityContentOneOf as ck, type CustomActivity as cl, type MerchantComment as cm, type OrderRefunded as cn, type OrderCreatedFromExchange as co, type NewExchangeOrderCreated as cp, type LineItemExchangeData as cq, type DraftOrderChangesApplied as cr, type OrderChange as cs, type OrderChangeValueOneOf as ct, type LineItemChanges as cu, type LineItemQuantityChange as cv, type LineItemPriceChange as cw, type LineItemProductNameChange as cx, type LineItemDescriptionLineChange as cy, type LineItemModifiersChange as cz, type PreparePaymentCollectionOptions as d, type AdditionalFeeDeltaDeltaOneOf as d$, type PaymentDeclined as d0, type PaymentDeclinedPaymentDetailsOneOf as d1, type ReceiptCreated as d2, type ReceiptCreatedReceiptInfoOneOf as d3, type WixReceipt as d4, type ExternalReceipt as d5, type ReceiptSent as d6, type ReceiptSentReceiptInfoOneOf as d7, type ChargebackCreated as d8, type ChargebackReversed as d9, type DeleteByIdsOperation as dA, type DeleteByFilterOperation as dB, type InternalDocumentUpdateByFilterOperation as dC, type InternalUpdateExistingOperation as dD, type VersionedDocumentUpdateOperation as dE, type VersionedDeleteByIdsOperation as dF, type VersionedDocumentId as dG, type OrderApproved as dH, type OrdersExperiments as dI, type OrderRejectedEventOrderRejected as dJ, type OrderItemsRestocked as dK, type V1RestockItem as dL, type OrderImported as dM, type ImportedOrderDeleted as dN, type PaymentStatusUpdated as dO, type FulfillmentStatusUpdated as dP, type OrderCanceledEventOrderCanceled as dQ, type OrderDeltasCommitted as dR, type CommittedDiffs as dS, type CommittedDiffsShippingUpdateInfoOneOf as dT, type ItemChangedDetails as dU, type OrderLineItemChangedDetails as dV, type LineItemDelta as dW, type LineItemDeltaDeltaOneOf as dX, type AppliedDiscountDelta as dY, type AppliedDiscountDeltaDeltaOneOf as dZ, type AdditionalFeeDelta as d_, type CreatedBy as da, type CreatedByStringOneOf as db, type ChannelInfo as dc, type CustomField as dd, type BalanceSummary as de, type Balance as df, type CashRounding as dg, type AdditionalFee as dh, type FulfillmentStatusesAggregate as di, type Tags as dj, type TagList as dk, type Location as dl, type OrderSettings as dm, type OrderSettingsAllowedActionsOneOf as dn, type OrderSettingsEditableByOneOf as dp, type CustomAllowedActions as dq, type OwnerApps as dr, type FormInfo as ds, type FormIdentifier as dt, type PlatformFeeSummary as du, type PlatformFee as dv, type UpdateInternalDocumentsEvent as dw, type UpdateInternalDocumentsEventOperationOneOf as dx, type InternalDocument as dy, type InternalDocumentUpdateOperation as dz, type PreparePaymentCollectionResponse as e, type CreditCardPaymentMethodDetails as e$, type DraftOrderCommitSettings as e0, type InventoryUpdateDetails as e1, type TriggerReindexRequest as e2, type TriggerReindexResponse as e3, type DomainEvent as e4, type DomainEventBodyOneOf as e5, type EntityCreatedEvent as e6, type RestoreInfo as e7, type EntityUpdatedEvent as e8, type EntityDeletedEvent as e9, type ApplicationError as eA, type BulkActionMetadata as eB, type GetRefundabilityStatusRequest as eC, type Refundability as eD, type RefundabilityAdditionalRefundabilityInfoOneOf as eE, type CreatePaymentGatewayOrderRequest as eF, type ChargedBy as eG, type ChargeMembershipsRequest as eH, type MembershipChargeItem as eI, type MembershipName as eJ, type ServiceProperties as eK, type ChargeMembershipsResponse as eL, type TriggerRefundRequest as eM, type RefundDetails as eN, type RefundItem as eO, type LineItemRefund as eP, type AdditionalFeeRefund as eQ, type ShippingRefund as eR, type RefundSideEffects as eS, type RestockInfo as eT, type RestockItem as eU, type OrderTransactions as eV, type Payment as eW, type PaymentPaymentDetailsOneOf as eX, type PaymentReceiptInfoOneOf as eY, type RegularPaymentDetails as eZ, type RegularPaymentDetailsPaymentMethodDetailsOneOf as e_, type ActionEvent as ea, type Empty as eb, type TriggerReindexOrderRequest as ec, type MessageEnvelope as ed, type IdentificationData as ee, type IdentificationDataIdOneOf as ef, type AccountInfo as eg, type ImportOrderRequest as eh, type SetOrderNumberCounterRequest as ei, type BulkDeleteImportedOrdersRequest as ej, type V1TriggerReindexRequest as ek, type V1TriggerReindexResponse as el, type V1TriggerReindexOrderRequest as em, type PreparePaymentCollectionRequest as en, type RedirectUrls as eo, type DelayedCaptureSettings as ep, type Duration as eq, type GetPaymentCollectabilityStatusRequest as er, type RecordManuallyCollectedPaymentRequest as es, type UserDefinedPaymentMethodName as et, type UserDefinedPaymentMethodNameKindOneOf as eu, type RecordManuallyCollectedPaymentResponse as ev, type MarkOrderAsPaidRequest as ew, type BulkMarkOrdersAsPaidRequest as ex, type BulkOrderResult as ey, type ItemMetadata as ez, type PreparePaymentCollectionApplicationErrors as f, type PreviewBuyerPaymentsReceivedEmailResponse as f$, type AuthorizationDetails as f0, type AuthorizationCapture as f1, type AuthorizationActionFailureDetails as f2, type AuthorizationVoid as f3, type V1ScheduledAction as f4, type Chargeback as f5, type PaymentMethodName as f6, type GiftCardPaymentDetails as f7, type MembershipPaymentDetails as f8, type FutureMembershipDetails as f9, 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 PreviewBuyerPaymentsReceivedEmailRequest as f_, type WixReceiptInfo as fa, type ExternalReceiptInfo as fb, type CashRoundingDetails as fc, type PaymentStatusDetails as fd, type PaymentStatusDetailsStatusDetailsOneOf as fe, type CanceledStatusDetails as ff, type DeclinedStatusDetails as fg, type VoidedStatusDetails as fh, type Refund as fi, type RefundTransaction as fj, type RefundStatusInfo as fk, type AggregatedRefundSummary as fl, type RefundItemsBreakdown as fm, type LineItemRefundSummary as fn, type CalculateRefundRequest as fo, type CalculateRefundItemRequest as fp, type CalculateRefundResponse as fq, type CalculateRefundItemResponse as fr, type VoidAuthorizedPaymentsRequest as fs, type CaptureAuthorizedPaymentsRequest as ft, type ChargeSavedPaymentMethodRequest as fu, type ChargeSavedPaymentMethodResponse as fv, type SendBuyerConfirmationEmailRequest as fw, type SendBuyerConfirmationEmailResponse as fx, type SendBuyerPaymentsReceivedEmailRequest as fy, type SendBuyerPaymentsReceivedEmailResponse as fz, type RecordManuallyCollectedPaymentApplicationErrors as g, type CursorSearch as g$, type PreviewBuyerConfirmationEmailRequest as g0, type PreviewBuyerConfirmationEmailResponse as g1, type PreviewBuyerPickupConfirmationEmailRequest as g2, type PreviewBuyerPickupConfirmationEmailResponse as g3, type PreviewShippingConfirmationEmailRequest as g4, type PreviewShippingConfirmationEmailResponse as g5, type PreviewResendDownloadLinksEmailRequest as g6, type PreviewResendDownloadLinksEmailResponse as g7, type MetaSiteSpecialEvent as g8, type MetaSiteSpecialEventPayloadOneOf as g9, 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 SearchOrdersRequest as g_, type Asset as ga, type SiteCreated as gb, type SiteTransferred as gc, type SiteDeleted as gd, type DeleteContext as ge, type SiteUndeleted as gf, type SitePublished as gg, type SiteUnpublished as gh, type SiteMarkedAsTemplate as gi, type SiteMarkedAsWixSite as gj, type ServiceProvisioned as gk, type ServiceRemoved as gl, type SiteRenamed as gm, type SiteHardDeleted as gn, type NamespaceChanged as go, type StudioAssigned as gp, type StudioUnassigned as gq, type SiteUrlChanged as gr, type SitePurgedExternally as gs, type OdeditorAssigned as gt, type OdeditorUnassigned as gu, type PicassoAssigned as gv, type PicassoUnassigned as gw, type WixelAssigned as gx, type WixelUnassigned as gy, type StudioTwoAssigned as gz, type PaymentCollectionMarkOrderAsPaidOptions as h, type OrderPartiallyPaid as h$, type CursorSearchPagingMethodOneOf as h0, type CursorPagingMetadata as h1, type CreateOrderRequest as h2, type OrderCreationSettings as h3, type OrderCreationSettingsEditableByOneOf as h4, type OrderCreateNotifications as h5, type CreateOrderResponse as h6, type UpdateOrderRequest as h7, type UpdateOrderResponse as h8, type BulkUpdateOrdersRequest as h9, type UpdateOrderShippingAddressRequest as hA, type UpdateOrderShippingAddressResponse as hB, type UpdateBillingContactDetailsRequest as hC, type UpdateBillingContactDetailsResponse as hD, type UpdateOrderLineItemRequest as hE, type UpdateOrderLineItemsRequest as hF, type MaskedOrderLineItem as hG, type UpdateOrderLineItemsResponse as hH, type AddInternalActivityRequest as hI, type InternalActivity as hJ, type InternalActivityContentOneOf as hK, type OrderPlaced as hL, type OrderPaid as hM, type OrderFulfilled as hN, type OrderNotFulfilled as hO, type OrderCanceled as hP, type DownloadLinkSent as hQ, type TrackingNumberAdded as hR, type TrackingNumberEdited as hS, type TrackingLinkAdded as hT, type ShippingConfirmationEmailSent as hU, type InvoiceAdded as hV, type InvoiceSent as hW, type FulfillerEmailSent as hX, type ShippingAddressEdited as hY, type EmailEdited as hZ, type PickupReadyEmailSent as h_, type CommitDeltasRequest as ha, type DraftOrderDiffs as hb, type DraftOrderDiffsShippingUpdateInfoOneOf as hc, type DraftOrderDiffsBuyerUpdateInfoOneOf as hd, type DraftOrderDiffsBillingUpdateInfoOneOf as he, type DraftOrderDiffsRecipientUpdateInfoOneOf as hf, type V1LineItemDelta as hg, type V1LineItemDeltaDeltaOneOf as hh, type CommitDeltasResponse as hi, type ArchiveOrderRequest as hj, type ArchiveOrderResponse as hk, type BulkArchiveOrdersRequest as hl, type BulkArchiveOrdersResponse as hm, type BulkArchiveOrdersByFilterRequest as hn, type BulkArchiveOrdersByFilterResponse as ho, type UnArchiveOrderRequest as hp, type UnArchiveOrderResponse as hq, type BulkUnArchiveOrdersRequest as hr, type BulkUnArchiveOrdersResponse as hs, type BulkUnArchiveOrdersByFilterRequest as ht, type BulkUnArchiveOrdersByFilterResponse as hu, type UpdateBuyerInfoRequest as hv, type BuyerInfoUpdate as hw, type UpdateBuyerInfoResponse as hx, type UpdateBuyerEmailRequest as hy, type UpdateBuyerEmailResponse as hz, type PaymentCollectionMarkOrderAsPaidApplicationErrors as i, type AddressDescription as i$, type OrderPending as i0, type OrderRejected as i1, type AddInternalActivityResponse as i2, type AddActivityRequest as i3, type PublicActivityContentOneOf as i4, type AddActivitiesRequest as i5, type UpdateActivityRequest as i6, type DeleteActivityRequest as i7, type UpdateLineItemsDescriptionLinesRequest as i8, type LineItemUpdate as i9, type V1CreatePaymentGatewayOrderRequest as iA, type V1CreatePaymentGatewayOrderResponse as iB, type GetShipmentsRequest as iC, type GetShipmentsResponse as iD, type AggregateOrdersRequest as iE, type DecrementItemsQuantityRequest as iF, type DecrementData as iG, type DecrementItemsQuantityResponse as iH, type BulkUpdateOrderTagsRequest as iI, type TagsTags as iJ, type TagsTagList as iK, type BulkUpdateOrderTagsResult as iL, type SendOrderUpdatedDomainEventRequest as iM, type SendOrderUpdatedDomainEventResponse as iN, type Task as iO, type TaskKey as iP, type TaskAction as iQ, type TaskActionActionOneOf as iR, type Complete as iS, type Cancel as iT, type Reschedule as iU, type InvoiceSentEvent as iV, type IdAndVersion as iW, type InvoiceFields as iX, type Customer as iY, type Email as iZ, type QuotesAddress as i_, type UpdateLineItemsDescriptionLinesResponse as ia, type MarkOrderAsSeenByHumanRequest as ib, type MarkOrderAsSeenByHumanResponse as ic, type CancelOrderRequest as id, type UpdateOrderStatusRequest as ie, type MarkAsFulfilledRequest as ig, type MarkAsFulfilledResponse as ih, type BulkMarkAsFulfilledRequest as ii, type BulkMarkAsFulfilledResponse as ij, type BulkMarkAsFulfilledByFilterRequest as ik, type BulkMarkAsFulfilledByFilterResponse as il, type MarkAsUnfulfilledRequest as im, type MarkAsUnfulfilledResponse as io, type BulkMarkAsUnfulfilledRequest as ip, type BulkMarkAsUnfulfilledResponse as iq, type BulkMarkAsUnfulfilledByFilterRequest as ir, type BulkMarkAsUnfulfilledByFilterResponse as is, type BulkSetBusinessLocationRequest as it, type BulkSetBusinessLocationResponse as iu, type BulkSetBusinessLocationResult as iv, type V1MarkOrderAsPaidRequest as iw, type V1MarkOrderAsPaidResponse as ix, type V1BulkMarkOrdersAsPaidRequest as iy, type V1BulkMarkOrdersAsPaidResponse as iz, type BulkMarkOrdersAsPaidResponse as j, type PaymentCollectabilityStatusWithLiterals as j$, type Phone as j0, type Company as j1, type CommonAddress as j2, type CommonAddressStreetOneOf as j3, type Subdivision as j4, type StandardDetails as j5, type InvoiceDates as j6, type LineItems as j7, type LineItem as j8, type BigDecimalWrapper as j9, type JurisdictionTypeWithLiterals as jA, type SubscriptionFrequencyWithLiterals as jB, type ProductPeriodAlignmentWithLiterals as jC, type AdjustmentTypeWithLiterals as jD, type TaxableAddressTypeWithLiterals as jE, type PaymentStatusEnumPaymentStatusWithLiterals as jF, type FulfillmentStatusWithLiterals as jG, type WeightUnitWithLiterals as jH, type VatTypeWithLiterals as jI, type PickupMethodWithLiterals as jJ, type DiscountTypeWithLiterals as jK, type DiscountReasonWithLiterals as jL, type LineItemQuantityChangeTypeWithLiterals as jM, type ActivityTypeWithLiterals as jN, type OrderActivityTypeEnumActivityTypeWithLiterals as jO, type AttributionSourceWithLiterals as jP, type ChannelTypeWithLiterals as jQ, type AdditionalFeeSourceWithLiterals as jR, type OrderActionTypeWithLiterals as jS, type SpecificItemsCouponBehaviorWithLiterals as jT, type ChargeTypeWithLiterals as jU, type VersioningModeWithLiterals as jV, type DeltaPaymentOptionTypeWithLiterals as jW, type InventoryActionWithLiterals as jX, type WebhookIdentityTypeWithLiterals as jY, type ScheduledActionWithLiterals as jZ, type DurationUnitWithLiterals as j_, type LineItemTax as ja, type Source as jb, type LineItemMetaData as jc, type Locale as jd, type TotalPrice as je, type ItemizedFee as jf, type Discount as jg, type DiscountOneDiscountTypeOneOf as jh, type CalculatedTaxes as ji, type CalculatedTax as jj, type Payments as jk, type InvoicesPayment as jl, type MetaData as jm, type InvoiceDynamicPriceTotals as jn, type CustomFieldValue as jo, type Value as jp, type Deposit as jq, type BaseEventMetadata as jr, type EventMetadata as js, type AccountInfoMetadata as jt, type OrderSearchSpec as ju, utils as jv, type DescriptionLineTypeWithLiterals as jw, type DimensionsUnitWithLiterals as jx, type ItemTypePresetWithLiterals as jy, type PaymentOptionTypeWithLiterals as jz, type GetRefundabilityStatusResponse as k, cancelOrder as k$, type PredefinedPaymentMethodWithLiterals as k0, type RefundableStatusWithLiterals as k1, type NonRefundableReasonWithLiterals as k2, type ManuallyRefundableReasonWithLiterals as k3, type RestockTypeWithLiterals as k4, type TransactionStatusWithLiterals as k5, type AuthorizationCaptureStatusWithLiterals as k6, type AuthorizationVoidStatusWithLiterals as k7, type ReasonWithLiterals as k8, type ActionTypeWithLiterals as k9, onOrderCreated as kA, onOrderFulfilled as kB, onOrderPaymentStatusUpdated as kC, onOrderUpdated as kD, importOrder as kE, setOrderNumberCounter as kF, bulkDeleteImportedOrders as kG, preparePaymentCollection as kH, getPaymentCollectabilityStatus as kI, recordManuallyCollectedPayment as kJ, paymentCollectionMarkOrderAsPaid as kK, paymentCollectionBulkMarkOrdersAsPaid as kL, getRefundabilityStatus as kM, paymentCollectionCreatePaymentGatewayOrder as kN, chargeMemberships as kO, triggerRefund as kP, voidAuthorizedPayments as kQ, captureAuthorizedPayments as kR, getOrder as kS, createOrder as kT, updateOrder as kU, bulkUpdateOrders as kV, updateOrderLineItem as kW, addActivity as kX, addActivities as kY, updateActivity as kZ, deleteActivity as k_, type ChargebackStatusWithLiterals as ka, type MembershipPaymentStatusWithLiterals as kb, type PaymentStatusWithLiterals as kc, type CanceledReasonWithLiterals as kd, type DeclinedReasonWithLiterals as ke, type VoidedReasonWithLiterals as kf, type RefundStatusWithLiterals as kg, type PreviewEmailTypeWithLiterals as kh, type StateWithLiterals as ki, type SiteCreatedContextWithLiterals as kj, type NamespaceWithLiterals as kk, type DeleteStatusWithLiterals as kl, type OriginWithLiterals as km, type SortOrderWithLiterals as kn, type OrderApprovalStrategyWithLiterals as ko, type PlacementWithLiterals as kp, type SubdivisionTypeWithLiterals as kq, type SourceTypeWithLiterals as kr, type CustomFieldGroupWithLiterals as ks, type ValueTypeWithLiterals as kt, type DepositTypeWithLiterals as ku, type InvoiceStatusWithLiterals as kv, type CommonSearchWithEntityContext as kw, onOrderApproved as kx, onOrderCanceled as ky, onOrderCommitted as kz, type PaymentCollectionCreatePaymentGatewayOrderOptions as l, updateOrderStatus as l0, aggregateOrders as l1, bulkUpdateOrderTags as l2, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as m, type ChargeMembershipsOptions as n, type PaymentRefund as o, type TriggerRefundResponse as p, type TriggerRefundApplicationErrors as q, type VoidAuthorizedPaymentsApplicationErrors as r, type PaymentCapture as s, type CaptureAuthorizedPaymentsResponse as t, type CaptureAuthorizedPaymentsApplicationErrors as u, type GetOrderApplicationErrors as v, type OrderSearch as w, type SearchOrdersResponse as x, type CreateOrderOptions as y, type CreateOrderApplicationErrors as z };
9772
+ export { type CancelOrderOptions as $, type UpdateOrderApplicationErrors as A, type BulkDeleteImportedOrdersResponse as B, type CreatePaymentGatewayOrderResponse as C, type MaskedOrder as D, type BulkUpdateOrdersOptions as E, type BulkUpdateOrdersResponse as F, type GetPaymentCollectabilityStatusResponse as G, type UpdateOrderLineItemIdentifiers as H, type ImportOrderResponse as I, type UpdateOrderLineItem as J, type UpdateOrderLineItemResponse as K, type PublicActivity as L, type MarkOrderAsPaidResponse as M, type AddActivityResponse as N, type Order as O, type Price as P, type AddActivitiesOptions as Q, type RecordManuallyCollectedPaymentOptions as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type AddActivitiesResponse as W, type UpdateActivityIdentifiers as X, type UpdateActivityResponse as Y, type DeleteActivityIdentifiers as Z, type DeleteActivityResponse as _, type ImportOrderApplicationErrors as a, CanceledReason as a$, type CancelOrderResponse as a0, type CancelOrderApplicationErrors as a1, type OrderStatusWithLiterals as a2, type UpdateOrderStatusResponse as a3, type UpdateOrderStatusApplicationErrors as a4, type AggregateOrdersOptions as a5, type AggregateOrdersResponse as a6, type BulkUpdateOrderTagsOptions as a7, type BulkUpdateOrderTagsResponse as a8, type OrderApprovedEnvelope as a9, OrderActivityTypeEnumActivityType as aA, AttributionSource as aB, ChannelType as aC, AdditionalFeeSource as aD, OrderActionType as aE, SpecificItemsCouponBehavior as aF, ChargeType as aG, VersioningMode as aH, DeltaPaymentOptionType as aI, InventoryAction as aJ, WebhookIdentityType as aK, ScheduledAction as aL, DurationUnit as aM, PaymentCollectabilityStatus as aN, PredefinedPaymentMethod as aO, RefundableStatus as aP, NonRefundableReason as aQ, ManuallyRefundableReason as aR, RestockType as aS, TransactionStatus as aT, AuthorizationCaptureStatus as aU, AuthorizationVoidStatus as aV, Reason as aW, ActionType as aX, ChargebackStatus as aY, MembershipPaymentStatus as aZ, PaymentStatus as a_, type OrderCanceledEnvelope as aa, type OrderCommittedEnvelope as ab, type OrderCreatedEnvelope as ac, type OrderFulfilledEnvelope as ad, type OrderPaymentStatusUpdatedEnvelope as ae, type OrderUpdatedEnvelope as af, DescriptionLineType as ag, DimensionsUnit as ah, ItemTypePreset as ai, PaymentOptionType as aj, JurisdictionType as ak, SubscriptionFrequency as al, ProductPeriodAlignment as am, AdjustmentType as an, TaxableAddressType as ao, MeasurementUnit as ap, PaymentStatusEnumPaymentStatus as aq, FulfillmentStatus as ar, WeightUnit as as, VatType as at, PickupMethod as au, OrderStatus as av, DiscountType as aw, DiscountReason as ax, LineItemQuantityChangeType as ay, ActivityType as az, type SetOrderNumberCounterResponse as b, type FullAddressContactDetails as b$, DeclinedReason as b0, VoidedReason as b1, RefundStatus as b2, PreviewEmailType as b3, State as b4, SiteCreatedContext as b5, Namespace as b6, DeleteStatus as b7, Origin as b8, SortOrder as b9, type DigitalFile as bA, type SubscriptionInfo as bB, type SubscriptionTitle as bC, type SubscriptionDescription as bD, type SubscriptionSettings as bE, type FreeTrialPeriod as bF, type BillingSettings as bG, type BillingAdjustment as bH, type BillingAdjustmentPriceSummary as bI, type PriceDescription as bJ, type LocationAndQuantity as bK, type TaxableAddress as bL, type TaxableAddressTaxableAddressDataOneOf as bM, type DecimalQuantity as bN, type DecimalQuantityUnitOneOf as bO, type TranslatableString as bP, type ExtendedFields as bQ, type ModifierGroup as bR, type ItemModifier as bS, type BuyerInfo as bT, type BuyerInfoIdOneOf as bU, type CurrencyConversionDetails as bV, type PriceSummary as bW, type AddressWithContact as bX, type Address as bY, type StreetAddress as bZ, type AddressLocation as b_, OrderApprovalStrategy as ba, Placement as bb, SubdivisionType as bc, SourceType as bd, CustomFieldGroup as be, ValueType as bf, DepositType as bg, InvoiceStatus as bh, type OrderLineItem as bi, type ProductName as bj, type CatalogReference as bk, type DescriptionLine as bl, type DescriptionLineValueOneOf as bm, type DescriptionLineDescriptionLineValueOneOf as bn, type DescriptionLineName as bo, type PlainTextValue as bp, type Color as bq, type FocalPoint as br, type PhysicalProperties as bs, type Dimensions as bt, type ItemType as bu, type ItemTypeItemTypeDataOneOf as bv, type RestockLocation as bw, type ItemTaxFullDetails as bx, type LineItemTaxInfo as by, type LineItemTaxBreakdown as bz, type SetOrderNumberCounterApplicationErrors as c, type RegularPaymentPaymentMethodDetailsOneOf as c$, type VatId as c0, type V1ShippingInformation as c1, type DeliveryLogistics as c2, type DeliveryLogisticsAddressOneOf as c3, type PickupDetails as c4, type PickupAddress as c5, type DeliveryTimeSlot as c6, type ShippingPrice as c7, type ShippingRegion as c8, type TaxSummary as c9, type LineItemProductNameChange as cA, type LineItemDescriptionLineChange as cB, type LineItemModifiersChange as cC, type ManagedLineItem as cD, type ManagedDiscount as cE, type TranslatedValue as cF, type LineItemAmount as cG, type ManagedAdditionalFee as cH, type TotalPriceChange as cI, type ShippingInformationChange as cJ, type ShippingInformation as cK, type SavedPaymentMethod as cL, type AuthorizedPaymentCreated as cM, type AuthorizedPaymentCaptured as cN, type AuthorizedPaymentVoided as cO, type RefundInitiated as cP, type RefundedPayment as cQ, type RefundedPaymentKindOneOf as cR, type RegularPaymentRefund as cS, type GiftCardPaymentRefund as cT, type MembershipPaymentRefund as cU, type PaymentRefunded as cV, type PaymentRefundFailed as cW, type RefundedAsStoreCredit as cX, type PaymentPending as cY, type PaymentPendingPaymentDetailsOneOf as cZ, type RegularPayment as c_, type OrderTaxInfo as ca, type OrderTaxBreakdown as cb, type AppliedDiscount as cc, type AppliedDiscountDiscountSourceOneOf as cd, type Coupon as ce, type MerchantDiscount as cf, type MerchantDiscountMerchantDiscountReasonOneOf as cg, type DiscountRule as ch, type DiscountRuleName as ci, type LineItemDiscount as cj, type ItemCombination as ck, type ItemCombinationLineItem as cl, type Activity as cm, type ActivityContentOneOf as cn, type CustomActivity as co, type MerchantComment as cp, type OrderRefunded as cq, type OrderCreatedFromExchange as cr, type NewExchangeOrderCreated as cs, type LineItemExchangeData as ct, type DraftOrderChangesApplied as cu, type OrderChange as cv, type OrderChangeValueOneOf as cw, type LineItemChanges as cx, type LineItemQuantityChange as cy, type LineItemPriceChange as cz, type PreparePaymentCollectionOptions as d, type AppliedDiscountDelta as d$, type CreditCardDetails as d0, type PaymentCanceled as d1, type PaymentCanceledPaymentDetailsOneOf as d2, type PaymentDeclined as d3, type PaymentDeclinedPaymentDetailsOneOf as d4, type ReceiptCreated as d5, type ReceiptCreatedReceiptInfoOneOf as d6, type WixReceipt as d7, type ExternalReceipt as d8, type ReceiptSent as d9, type UpdateInternalDocumentsEventOperationOneOf as dA, type InternalDocument as dB, type InternalDocumentUpdateOperation as dC, type DeleteByIdsOperation as dD, type DeleteByFilterOperation as dE, type InternalDocumentUpdateByFilterOperation as dF, type InternalUpdateExistingOperation as dG, type VersionedDocumentUpdateOperation as dH, type VersionedDeleteByIdsOperation as dI, type VersionedDocumentId as dJ, type OrderApproved as dK, type OrdersExperiments as dL, type OrderRejectedEventOrderRejected as dM, type OrderItemsRestocked as dN, type V1RestockItem as dO, type OrderImported as dP, type ImportedOrderDeleted as dQ, type PaymentStatusUpdated as dR, type FulfillmentStatusUpdated as dS, type OrderCanceledEventOrderCanceled as dT, type OrderDeltasCommitted as dU, type CommittedDiffs as dV, type CommittedDiffsShippingUpdateInfoOneOf as dW, type ItemChangedDetails as dX, type OrderLineItemChangedDetails as dY, type LineItemDelta as dZ, type LineItemDeltaDeltaOneOf as d_, type ReceiptSentReceiptInfoOneOf as da, type ChargebackCreated as db, type ChargebackReversed as dc, type CreatedBy as dd, type CreatedByStringOneOf as de, type ChannelInfo as df, type CustomField as dg, type BalanceSummary as dh, type Balance as di, type CashRounding as dj, type AdditionalFee as dk, type FulfillmentStatusesAggregate as dl, type Tags as dm, type TagList as dn, type Location as dp, type OrderSettings as dq, type OrderSettingsAllowedActionsOneOf as dr, type OrderSettingsEditableByOneOf as ds, type CustomAllowedActions as dt, type OwnerApps as du, type FormInfo as dv, type FormIdentifier as dw, type PlatformFeeSummary as dx, type PlatformFee as dy, type UpdateInternalDocumentsEvent as dz, type PreparePaymentCollectionResponse as e, type PaymentReceiptInfoOneOf as e$, type AppliedDiscountDeltaDeltaOneOf as e0, type AdditionalFeeDelta as e1, type AdditionalFeeDeltaDeltaOneOf as e2, type DraftOrderCommitSettings as e3, type InventoryUpdateDetails as e4, type TriggerReindexRequest as e5, type TriggerReindexResponse as e6, type DomainEvent as e7, type DomainEventBodyOneOf as e8, type EntityCreatedEvent as e9, type BulkMarkOrdersAsPaidRequest as eA, type BulkOrderResult as eB, type ItemMetadata as eC, type ApplicationError as eD, type BulkActionMetadata as eE, type GetRefundabilityStatusRequest as eF, type Refundability as eG, type RefundabilityAdditionalRefundabilityInfoOneOf as eH, type CreatePaymentGatewayOrderRequest as eI, type ChargedBy as eJ, type ChargeMembershipsRequest as eK, type MembershipChargeItem as eL, type MembershipName as eM, type ServiceProperties as eN, type ChargeMembershipsResponse as eO, type TriggerRefundRequest as eP, type RefundDetails as eQ, type RefundItem as eR, type LineItemRefund as eS, type AdditionalFeeRefund as eT, type ShippingRefund as eU, type RefundSideEffects as eV, type RestockInfo as eW, type RestockItem as eX, type OrderTransactions as eY, type Payment as eZ, type PaymentPaymentDetailsOneOf as e_, type RestoreInfo as ea, type EntityUpdatedEvent as eb, type EntityDeletedEvent as ec, type ActionEvent as ed, type Empty as ee, type TriggerReindexOrderRequest as ef, type MessageEnvelope as eg, type IdentificationData as eh, type IdentificationDataIdOneOf as ei, type AccountInfo as ej, type ImportOrderRequest as ek, type SetOrderNumberCounterRequest as el, type BulkDeleteImportedOrdersRequest as em, type V1TriggerReindexRequest as en, type V1TriggerReindexResponse as eo, type V1TriggerReindexOrderRequest as ep, type PreparePaymentCollectionRequest as eq, type RedirectUrls as er, type DelayedCaptureSettings as es, type Duration as et, type GetPaymentCollectabilityStatusRequest as eu, type RecordManuallyCollectedPaymentRequest as ev, type UserDefinedPaymentMethodName as ew, type UserDefinedPaymentMethodNameKindOneOf as ex, type RecordManuallyCollectedPaymentResponse as ey, type MarkOrderAsPaidRequest as ez, type PreparePaymentCollectionApplicationErrors as f, type PreviewCancelRefundEmailRequest as f$, type RegularPaymentDetails as f0, type RegularPaymentDetailsPaymentMethodDetailsOneOf as f1, type CreditCardPaymentMethodDetails as f2, type AuthorizationDetails as f3, type AuthorizationCapture as f4, type AuthorizationActionFailureDetails as f5, type AuthorizationVoid as f6, type V1ScheduledAction as f7, type Chargeback as f8, type PaymentMethodName as f9, 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 PreviewCancelEmailResponse as f_, type GiftCardPaymentDetails as fa, type MembershipPaymentDetails as fb, type FutureMembershipDetails as fc, type WixReceiptInfo as fd, type ExternalReceiptInfo as fe, type CashRoundingDetails as ff, type PaymentStatusDetails as fg, type PaymentStatusDetailsStatusDetailsOneOf as fh, type CanceledStatusDetails as fi, type DeclinedStatusDetails as fj, type VoidedStatusDetails as fk, type Refund as fl, type RefundTransaction as fm, type RefundStatusInfo as fn, type AggregatedRefundSummary as fo, type RefundItemsBreakdown as fp, type LineItemRefundSummary as fq, type CalculateRefundRequest as fr, type CalculateRefundItemRequest as fs, type CalculateRefundResponse as ft, type CalculateRefundItemResponse as fu, type VoidAuthorizedPaymentsRequest as fv, type CaptureAuthorizedPaymentsRequest as fw, type ChargeSavedPaymentMethodRequest as fx, type ChargeSavedPaymentMethodResponse as fy, type SendBuyerConfirmationEmailRequest as fz, type RecordManuallyCollectedPaymentApplicationErrors as g, type QueryOrderRequest as g$, type PreviewCancelRefundEmailResponse as g0, type PreviewBuyerPaymentsReceivedEmailRequest as g1, type PreviewBuyerPaymentsReceivedEmailResponse as g2, type PreviewBuyerConfirmationEmailRequest as g3, type PreviewBuyerConfirmationEmailResponse as g4, type PreviewBuyerPickupConfirmationEmailRequest as g5, type PreviewBuyerPickupConfirmationEmailResponse as g6, type PreviewShippingConfirmationEmailRequest as g7, type PreviewShippingConfirmationEmailResponse as g8, type PreviewResendDownloadLinksEmailRequest as g9, 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 Cursors as g_, type PreviewResendDownloadLinksEmailResponse as ga, type MetaSiteSpecialEvent as gb, type MetaSiteSpecialEventPayloadOneOf as gc, type Asset as gd, type SiteCreated as ge, type SiteTransferred as gf, type SiteDeleted as gg, type DeleteContext as gh, type SiteUndeleted as gi, type SitePublished as gj, type SiteUnpublished as gk, type SiteMarkedAsTemplate as gl, type SiteMarkedAsWixSite as gm, type ServiceProvisioned as gn, type ServiceRemoved as go, type SiteRenamed as gp, type SiteHardDeleted as gq, type NamespaceChanged as gr, type StudioAssigned as gs, type StudioUnassigned as gt, type SiteUrlChanged as gu, type SitePurgedExternally as gv, type OdeditorAssigned as gw, type OdeditorUnassigned as gx, type PicassoAssigned as gy, type PicassoUnassigned as gz, type PaymentCollectionMarkOrderAsPaidOptions as h, type ShippingAddressEdited as h$, type QueryOrderResponse as h0, type SearchOrdersRequest as h1, type CursorSearch as h2, type CursorSearchPagingMethodOneOf as h3, type CursorPagingMetadata as h4, type CreateOrderRequest as h5, type OrderCreationSettings as h6, type OrderCreationSettingsEditableByOneOf as h7, type OrderCreateNotifications as h8, type CreateOrderResponse as h9, 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 UpdateOrderLineItemsRequest as hI, type MaskedOrderLineItem as hJ, type UpdateOrderLineItemsResponse as hK, type AddInternalActivityRequest as hL, type InternalActivity as hM, type InternalActivityContentOneOf as hN, type OrderPlaced as hO, type OrderPaid as hP, type OrderFulfilled as hQ, type OrderNotFulfilled as hR, type OrderCanceled as hS, type DownloadLinkSent as hT, type TrackingNumberAdded as hU, type TrackingNumberEdited as hV, type TrackingLinkAdded as hW, type ShippingConfirmationEmailSent as hX, type InvoiceAdded as hY, type InvoiceSent as hZ, type FulfillerEmailSent as h_, type UpdateOrderRequest as ha, type UpdateOrderResponse as hb, type BulkUpdateOrdersRequest as hc, type CommitDeltasRequest as hd, type DraftOrderDiffs as he, type DraftOrderDiffsShippingUpdateInfoOneOf as hf, type DraftOrderDiffsBuyerUpdateInfoOneOf as hg, type DraftOrderDiffsBillingUpdateInfoOneOf as hh, type DraftOrderDiffsRecipientUpdateInfoOneOf as hi, type V1LineItemDelta as hj, type V1LineItemDeltaDeltaOneOf as hk, type CommitDeltasResponse as hl, type ArchiveOrderRequest as hm, type ArchiveOrderResponse as hn, type BulkArchiveOrdersRequest as ho, type BulkArchiveOrdersResponse as hp, type BulkArchiveOrdersByFilterRequest as hq, type BulkArchiveOrdersByFilterResponse as hr, type UnArchiveOrderRequest as hs, type UnArchiveOrderResponse as ht, type BulkUnArchiveOrdersRequest as hu, type BulkUnArchiveOrdersResponse as hv, type BulkUnArchiveOrdersByFilterRequest as hw, type BulkUnArchiveOrdersByFilterResponse as hx, type UpdateBuyerInfoRequest as hy, type BuyerInfoUpdate as hz, type PaymentCollectionMarkOrderAsPaidApplicationErrors as i, type Customer as i$, type EmailEdited as i0, type PickupReadyEmailSent as i1, type OrderPartiallyPaid as i2, type OrderPending as i3, type OrderRejected as i4, type AddInternalActivityResponse as i5, type AddActivityRequest as i6, type PublicActivityContentOneOf as i7, type AddActivitiesRequest as i8, type UpdateActivityRequest as i9, type V1MarkOrderAsPaidResponse as iA, type V1BulkMarkOrdersAsPaidRequest as iB, type V1BulkMarkOrdersAsPaidResponse as iC, type V1CreatePaymentGatewayOrderRequest as iD, type V1CreatePaymentGatewayOrderResponse as iE, type GetShipmentsRequest as iF, type GetShipmentsResponse as iG, type AggregateOrdersRequest as iH, type DecrementItemsQuantityRequest as iI, type DecrementData as iJ, type DecrementItemsQuantityResponse as iK, type BulkUpdateOrderTagsRequest as iL, type TagsTags as iM, type TagsTagList as iN, type BulkUpdateOrderTagsResult as iO, type SendOrderUpdatedDomainEventRequest as iP, type SendOrderUpdatedDomainEventResponse as iQ, type Task as iR, type TaskKey as iS, type TaskAction as iT, type TaskActionActionOneOf as iU, type Complete as iV, type Cancel as iW, type Reschedule as iX, type InvoiceSentEvent as iY, type IdAndVersion as iZ, type InvoiceFields as i_, type DeleteActivityRequest as ia, type UpdateLineItemsDescriptionLinesRequest as ib, type LineItemUpdate as ic, type UpdateLineItemsDescriptionLinesResponse as id, type MarkOrderAsSeenByHumanRequest as ie, type MarkOrderAsSeenByHumanResponse as ig, type CancelOrderRequest as ih, type UpdateOrderStatusRequest as ii, type MarkAsFulfilledRequest as ij, type MarkAsFulfilledResponse as ik, type BulkMarkAsFulfilledRequest as il, type BulkMarkAsFulfilledResponse as im, type BulkMarkAsFulfilledByFilterRequest as io, type BulkMarkAsFulfilledByFilterResponse as ip, type MarkAsUnfulfilledRequest as iq, type MarkAsUnfulfilledResponse as ir, type BulkMarkAsUnfulfilledRequest as is, type BulkMarkAsUnfulfilledResponse as it, type BulkMarkAsUnfulfilledByFilterRequest as iu, type BulkMarkAsUnfulfilledByFilterResponse as iv, type BulkSetBusinessLocationRequest as iw, type BulkSetBusinessLocationResponse as ix, type BulkSetBusinessLocationResult as iy, type V1MarkOrderAsPaidRequest as iz, type BulkMarkOrdersAsPaidResponse as j, type InventoryActionWithLiterals as j$, type Email as j0, type QuotesAddress as j1, type AddressDescription as j2, type Phone as j3, type Company as j4, type CommonAddress as j5, type CommonAddressStreetOneOf as j6, type Subdivision as j7, type StandardDetails as j8, type InvoiceDates as j9, type DimensionsUnitWithLiterals as jA, type ItemTypePresetWithLiterals as jB, type PaymentOptionTypeWithLiterals as jC, type JurisdictionTypeWithLiterals as jD, type SubscriptionFrequencyWithLiterals as jE, type ProductPeriodAlignmentWithLiterals as jF, type AdjustmentTypeWithLiterals as jG, type TaxableAddressTypeWithLiterals as jH, type MeasurementUnitWithLiterals as jI, type PaymentStatusEnumPaymentStatusWithLiterals as jJ, type FulfillmentStatusWithLiterals as jK, type WeightUnitWithLiterals as jL, type VatTypeWithLiterals as jM, type PickupMethodWithLiterals as jN, type DiscountTypeWithLiterals as jO, type DiscountReasonWithLiterals as jP, type LineItemQuantityChangeTypeWithLiterals as jQ, type ActivityTypeWithLiterals as jR, type OrderActivityTypeEnumActivityTypeWithLiterals as jS, type AttributionSourceWithLiterals as jT, type ChannelTypeWithLiterals as jU, type AdditionalFeeSourceWithLiterals as jV, type OrderActionTypeWithLiterals as jW, type SpecificItemsCouponBehaviorWithLiterals as jX, type ChargeTypeWithLiterals as jY, type VersioningModeWithLiterals as jZ, type DeltaPaymentOptionTypeWithLiterals as j_, type LineItems as ja, type LineItem as jb, type BigDecimalWrapper as jc, type LineItemTax as jd, type Source as je, type LineItemMetaData as jf, type Locale as jg, type TotalPrice as jh, type ItemizedFee as ji, type Discount as jj, type DiscountOneDiscountTypeOneOf as jk, type CalculatedTaxes as jl, type CalculatedTax as jm, type Payments as jn, type InvoicesPayment as jo, type MetaData as jp, type InvoiceDynamicPriceTotals as jq, type CustomFieldValue as jr, type Value as js, type Deposit as jt, type BaseEventMetadata as ju, type EventMetadata as jv, type AccountInfoMetadata as jw, type OrderSearchSpec as jx, utils as jy, type DescriptionLineTypeWithLiterals as jz, type GetRefundabilityStatusResponse as k, addActivity as k$, type WebhookIdentityTypeWithLiterals as k0, type ScheduledActionWithLiterals as k1, type DurationUnitWithLiterals as k2, type PaymentCollectabilityStatusWithLiterals as k3, type PredefinedPaymentMethodWithLiterals as k4, type RefundableStatusWithLiterals as k5, type NonRefundableReasonWithLiterals as k6, type ManuallyRefundableReasonWithLiterals as k7, type RestockTypeWithLiterals as k8, type TransactionStatusWithLiterals 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, importOrder as kI, setOrderNumberCounter as kJ, bulkDeleteImportedOrders as kK, preparePaymentCollection as kL, getPaymentCollectabilityStatus as kM, recordManuallyCollectedPayment as kN, paymentCollectionMarkOrderAsPaid as kO, paymentCollectionBulkMarkOrdersAsPaid as kP, getRefundabilityStatus as kQ, paymentCollectionCreatePaymentGatewayOrder as kR, chargeMemberships as kS, triggerRefund as kT, voidAuthorizedPayments as kU, captureAuthorizedPayments as kV, getOrder as kW, createOrder as kX, updateOrder as kY, bulkUpdateOrders as kZ, updateOrderLineItem as k_, type AuthorizationCaptureStatusWithLiterals as ka, type AuthorizationVoidStatusWithLiterals as kb, type ReasonWithLiterals as kc, type ActionTypeWithLiterals as kd, type ChargebackStatusWithLiterals as ke, type MembershipPaymentStatusWithLiterals as kf, type PaymentStatusWithLiterals as kg, type CanceledReasonWithLiterals as kh, type DeclinedReasonWithLiterals as ki, type VoidedReasonWithLiterals as kj, type RefundStatusWithLiterals as kk, type PreviewEmailTypeWithLiterals as kl, type StateWithLiterals as km, type SiteCreatedContextWithLiterals as kn, type NamespaceWithLiterals as ko, type DeleteStatusWithLiterals as kp, type OriginWithLiterals as kq, type SortOrderWithLiterals as kr, type OrderApprovalStrategyWithLiterals as ks, type PlacementWithLiterals as kt, type SubdivisionTypeWithLiterals as ku, type SourceTypeWithLiterals as kv, type CustomFieldGroupWithLiterals as kw, type ValueTypeWithLiterals as kx, type DepositTypeWithLiterals as ky, type InvoiceStatusWithLiterals as kz, type PaymentCollectionCreatePaymentGatewayOrderOptions as l, addActivities as l0, updateActivity as l1, deleteActivity as l2, cancelOrder as l3, updateOrderStatus as l4, aggregateOrders as l5, bulkUpdateOrderTags as l6, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as m, type ChargeMembershipsOptions as n, type PaymentRefund as o, type TriggerRefundResponse as p, type TriggerRefundApplicationErrors as q, type VoidAuthorizedPaymentsApplicationErrors as r, type PaymentCapture as s, type CaptureAuthorizedPaymentsResponse as t, type CaptureAuthorizedPaymentsApplicationErrors as u, type GetOrderApplicationErrors as v, type OrderSearch as w, type SearchOrdersResponse as x, type CreateOrderOptions as y, type CreateOrderApplicationErrors as z };
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { O as Order, I as ImportOrderResponse, a as ImportOrderApplicationErrors, S as SetOrderNumberCounterOptions, b as SetOrderNumberCounterResponse, c as SetOrderNumberCounterApplicationErrors, B as BulkDeleteImportedOrdersResponse, P as Price, d as PreparePaymentCollectionOptions, e as PreparePaymentCollectionResponse, f as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, R as RecordManuallyCollectedPaymentOptions, g as RecordManuallyCollectedPaymentApplicationErrors, h as PaymentCollectionMarkOrderAsPaidOptions, M as MarkOrderAsPaidResponse, i as PaymentCollectionMarkOrderAsPaidApplicationErrors, j as BulkMarkOrdersAsPaidResponse, k as GetRefundabilityStatusResponse, l as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, m as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, n as ChargeMembershipsOptions, o as PaymentRefund, T as TriggerRefundOptions, p as TriggerRefundResponse, q as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, r as VoidAuthorizedPaymentsApplicationErrors, s as PaymentCapture, t as CaptureAuthorizedPaymentsResponse, u as CaptureAuthorizedPaymentsApplicationErrors, v as GetOrderApplicationErrors, w as OrderSearch, x as SearchOrdersResponse, y as CreateOrderOptions, z as CreateOrderApplicationErrors, U as UpdateOrder, A as UpdateOrderApplicationErrors, D as MaskedOrder, E as BulkUpdateOrdersOptions, F as BulkUpdateOrdersResponse, H as UpdateOrderLineItemIdentifiers, J as UpdateOrderLineItem, K as UpdateOrderLineItemResponse, L as PublicActivity, N as AddActivityResponse, Q as AddActivitiesOptions, W as AddActivitiesResponse, X as UpdateActivityIdentifiers, Y as UpdateActivityResponse, Z as DeleteActivityIdentifiers, _ as DeleteActivityResponse, $ as CancelOrderOptions, a0 as CancelOrderResponse, a1 as CancelOrderApplicationErrors, a2 as OrderStatusWithLiterals, a3 as UpdateOrderStatusResponse, a4 as UpdateOrderStatusApplicationErrors, a5 as AggregateOrdersOptions, a6 as AggregateOrdersResponse, a7 as BulkUpdateOrderTagsOptions, a8 as BulkUpdateOrderTagsResponse, a9 as OrderApprovedEnvelope, aa as OrderCanceledEnvelope, ab as OrderCommittedEnvelope, ac as OrderCreatedEnvelope, ad as OrderFulfilledEnvelope, ae as OrderPaymentStatusUpdatedEnvelope, af as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-CuidLNHL.mjs';
3
- export { eg as AccountInfo, jt as AccountInfoMetadata, ea as ActionEvent, aW as ActionType, k9 as ActionTypeWithLiterals, cj as Activity, ck as ActivityContentOneOf, ay as ActivityType, jN as ActivityTypeWithLiterals, i5 as AddActivitiesRequest, i3 as AddActivityRequest, hI as AddInternalActivityRequest, i2 as AddInternalActivityResponse, gH as AddToAutomationMigrationPopulationRequest, gI as AddToAutomationMigrationPopulationResponse, dh as AdditionalFee, d_ as AdditionalFeeDelta, d$ as AdditionalFeeDeltaDeltaOneOf, eQ as AdditionalFeeRefund, aC as AdditionalFeeSource, jR as AdditionalFeeSourceWithLiterals, bV as Address, i$ as AddressDescription, bX as AddressLocation, bU as AddressWithContact, an as AdjustmentType, jD as AdjustmentTypeWithLiterals, iE as AggregateOrdersRequest, fl as AggregatedRefundSummary, eA as ApplicationError, c9 as AppliedDiscount, dY as AppliedDiscountDelta, dZ as AppliedDiscountDeltaDeltaOneOf, ca as AppliedDiscountDiscountSourceOneOf, hj as ArchiveOrderRequest, hk as ArchiveOrderResponse, ga as Asset, aA as AttributionSource, jP as AttributionSourceWithLiterals, f2 as AuthorizationActionFailureDetails, f1 as AuthorizationCapture, aT as AuthorizationCaptureStatus, k6 as AuthorizationCaptureStatusWithLiterals, f0 as AuthorizationDetails, f3 as AuthorizationVoid, aU as AuthorizationVoidStatus, k7 as AuthorizationVoidStatusWithLiterals, cK as AuthorizedPaymentCaptured, cJ as AuthorizedPaymentCreated, cL as AuthorizedPaymentVoided, df as Balance, de as BalanceSummary, jr as BaseEventMetadata, j9 as BigDecimalWrapper, bG as BillingAdjustment, bH as BillingAdjustmentPriceSummary, bF as BillingSettings, eB as BulkActionMetadata, hn as BulkArchiveOrdersByFilterRequest, ho as BulkArchiveOrdersByFilterResponse, hl as BulkArchiveOrdersRequest, hm as BulkArchiveOrdersResponse, ej as BulkDeleteImportedOrdersRequest, ik as BulkMarkAsFulfilledByFilterRequest, il as BulkMarkAsFulfilledByFilterResponse, ii as BulkMarkAsFulfilledRequest, ij as BulkMarkAsFulfilledResponse, ir as BulkMarkAsUnfulfilledByFilterRequest, is as BulkMarkAsUnfulfilledByFilterResponse, ip as BulkMarkAsUnfulfilledRequest, iq as BulkMarkAsUnfulfilledResponse, ex as BulkMarkOrdersAsPaidRequest, ey as BulkOrderResult, fC as BulkSendBuyerPickupConfirmationEmailsRequest, fD as BulkSendBuyerPickupConfirmationEmailsResponse, fG as BulkSendBuyerShippingConfirmationEmailsRequest, fH as BulkSendBuyerShippingConfirmationEmailsResponse, it as BulkSetBusinessLocationRequest, iu as BulkSetBusinessLocationResponse, iv as BulkSetBusinessLocationResult, ht as BulkUnArchiveOrdersByFilterRequest, hu as BulkUnArchiveOrdersByFilterResponse, hr as BulkUnArchiveOrdersRequest, hs as BulkUnArchiveOrdersResponse, iI as BulkUpdateOrderTagsRequest, iL as BulkUpdateOrderTagsResult, h9 as BulkUpdateOrdersRequest, bQ as BuyerInfo, bR as BuyerInfoIdOneOf, hw as BuyerInfoUpdate, fp as CalculateRefundItemRequest, fr as CalculateRefundItemResponse, fo as CalculateRefundRequest, fq as CalculateRefundResponse, jj as CalculatedTax, ji as CalculatedTaxes, iT as Cancel, id as CancelOrderRequest, a_ as CanceledReason, kd as CanceledReasonWithLiterals, ff as CanceledStatusDetails, ft as CaptureAuthorizedPaymentsRequest, dg as CashRounding, fc as CashRoundingDetails, bj as CatalogReference, dc as ChannelInfo, aB as ChannelType, jQ as ChannelTypeWithLiterals, eH as ChargeMembershipsRequest, eL as ChargeMembershipsResponse, fu as ChargeSavedPaymentMethodRequest, fv as ChargeSavedPaymentMethodResponse, aF as ChargeType, jU as ChargeTypeWithLiterals, f5 as Chargeback, d8 as ChargebackCreated, d9 as ChargebackReversed, aX as ChargebackStatus, ka as ChargebackStatusWithLiterals, eG as ChargedBy, bp as Color, ha as CommitDeltasRequest, hi as CommitDeltasResponse, dS as CommittedDiffs, dT as CommittedDiffsShippingUpdateInfoOneOf, j2 as CommonAddress, j3 as CommonAddressStreetOneOf, kw as CommonSearchWithEntityContext, j1 as Company, iS as Complete, cb as Coupon, h2 as CreateOrderRequest, h6 as CreateOrderResponse, eF as CreatePaymentGatewayOrderRequest, da as CreatedBy, db as CreatedByStringOneOf, cZ as CreditCardDetails, e$ as CreditCardPaymentMethodDetails, bS as CurrencyConversionDetails, gU as CursorPaging, h1 as CursorPagingMetadata, g$ as CursorSearch, h0 as CursorSearchPagingMethodOneOf, gX as Cursors, cl as CustomActivity, dq as CustomAllowedActions, dd as CustomField, bd as CustomFieldGroup, ks as CustomFieldGroupWithLiterals, jo as CustomFieldValue, iY as Customer, a$ as DeclinedReason, ke as DeclinedReasonWithLiterals, fg as DeclinedStatusDetails, iG as DecrementData, iF as DecrementItemsQuantityRequest, iH as DecrementItemsQuantityResponse, ep as DelayedCaptureSettings, i7 as DeleteActivityRequest, dB as DeleteByFilterOperation, dA as DeleteByIdsOperation, ge as DeleteContext, b6 as DeleteStatus, kl as DeleteStatusWithLiterals, b$ as DeliveryLogistics, c0 as DeliveryLogisticsAddressOneOf, c3 as DeliveryTimeSlot, aH as DeltaPaymentOptionType, jW as DeltaPaymentOptionTypeWithLiterals, jq as Deposit, bf as DepositType, ku as DepositTypeWithLiterals, bk as DescriptionLine, bm as DescriptionLineDescriptionLineValueOneOf, bn as DescriptionLineName, ag as DescriptionLineType, jw as DescriptionLineTypeWithLiterals, bl as DescriptionLineValueOneOf, gL as DiffmatokyPayload, bz as DigitalFile, bs as Dimensions, ah as DimensionsUnit, jx as DimensionsUnitWithLiterals, jg as Discount, jh as DiscountOneDiscountTypeOneOf, aw as DiscountReason, jL as DiscountReasonWithLiterals, ce as DiscountRule, cf as DiscountRuleName, av as DiscountType, jK as DiscountTypeWithLiterals, e4 as DomainEvent, e5 as DomainEventBodyOneOf, hQ as DownloadLinkSent, cr as DraftOrderChangesApplied, e0 as DraftOrderCommitSettings, hb as DraftOrderDiffs, he as DraftOrderDiffsBillingUpdateInfoOneOf, hd as DraftOrderDiffsBuyerUpdateInfoOneOf, hf as DraftOrderDiffsRecipientUpdateInfoOneOf, hc as DraftOrderDiffsShippingUpdateInfoOneOf, eq as Duration, aL as DurationUnit, j_ as DurationUnitWithLiterals, gD as EditorlessAssigned, gE as EditorlessUnassigned, iZ as Email, hZ as EmailEdited, eb as Empty, e6 as EntityCreatedEvent, e9 as EntityDeletedEvent, e8 as EntityUpdatedEvent, gM as ErrorInformation, js as EventMetadata, bM as ExtendedFields, d5 as ExternalReceipt, fb as ExternalReceiptInfo, bq as FocalPoint, dt as FormIdentifier, ds as FormInfo, bE as FreeTrialPeriod, hX as FulfillerEmailSent, aq as FulfillmentStatus, dP as FulfillmentStatusUpdated, jG as FulfillmentStatusWithLiterals, di as FulfillmentStatusesAggregate, bY as FullAddressContactDetails, f9 as FutureMembershipDetails, gN as GetOrderRequest, gO as GetOrderResponse, er as GetPaymentCollectabilityStatusRequest, eC as GetRefundabilityStatusRequest, iC as GetShipmentsRequest, iD as GetShipmentsResponse, f7 as GiftCardPaymentDetails, cQ as GiftCardPaymentRefund, gF as HasCustomEmailConfigurationsRequest, gG as HasCustomEmailConfigurationsResponse, iW as IdAndVersion, ee as IdentificationData, ef as IdentificationDataIdOneOf, eh as ImportOrderRequest, dN as ImportedOrderDeleted, hJ as InternalActivity, hK as InternalActivityContentOneOf, dy as InternalDocument, dC as InternalDocumentUpdateByFilterOperation, dz as InternalDocumentUpdateOperation, gP as InternalQueryOrdersRequest, gV as InternalQueryOrdersResponse, dD as InternalUpdateExistingOperation, aI as InventoryAction, jX as InventoryActionWithLiterals, e1 as InventoryUpdateDetails, hV as InvoiceAdded, j6 as InvoiceDates, jn as InvoiceDynamicPriceTotals, iX as InvoiceFields, hW as InvoiceSent, iV as InvoiceSentEvent, bg as InvoiceStatus, kv as InvoiceStatusWithLiterals, jl as InvoicesPayment, gJ as IsInAutomationMigrationPopulationRequest, gK as IsInAutomationMigrationPopulationResponse, dU as ItemChangedDetails, ch as ItemCombination, ci as ItemCombinationLineItem, ez as ItemMetadata, bP as ItemModifier, bw as ItemTaxFullDetails, bt as ItemType, bu as ItemTypeItemTypeDataOneOf, ai as ItemTypePreset, jy as ItemTypePresetWithLiterals, jf as ItemizedFee, ak as JurisdictionType, jA as JurisdictionTypeWithLiterals, j8 as LineItem, cD as LineItemAmount, cu as LineItemChanges, dW as LineItemDelta, dX as LineItemDeltaDeltaOneOf, cy as LineItemDescriptionLineChange, cg as LineItemDiscount, cq as LineItemExchangeData, jc as LineItemMetaData, cz as LineItemModifiersChange, cw as LineItemPriceChange, cx as LineItemProductNameChange, cv as LineItemQuantityChange, ax as LineItemQuantityChangeType, jM as LineItemQuantityChangeTypeWithLiterals, eP as LineItemRefund, fn as LineItemRefundSummary, ja as LineItemTax, by as LineItemTaxBreakdown, bx as LineItemTaxInfo, i9 as LineItemUpdate, j7 as LineItems, jd as Locale, dl as Location, bJ as LocationAndQuantity, cE as ManagedAdditionalFee, cB as ManagedDiscount, cA as ManagedLineItem, aQ as ManuallyRefundableReason, k3 as ManuallyRefundableReasonWithLiterals, ig as MarkAsFulfilledRequest, ih as MarkAsFulfilledResponse, im as MarkAsUnfulfilledRequest, io as MarkAsUnfulfilledResponse, ew as MarkOrderAsPaidRequest, ib as MarkOrderAsSeenByHumanRequest, ic as MarkOrderAsSeenByHumanResponse, hG as MaskedOrderLineItem, eI as MembershipChargeItem, eJ as MembershipName, f8 as MembershipPaymentDetails, cR as MembershipPaymentRefund, aY as MembershipPaymentStatus, kb as MembershipPaymentStatusWithLiterals, cm as MerchantComment, cc as MerchantDiscount, cd as MerchantDiscountMerchantDiscountReasonOneOf, ed as MessageEnvelope, jm as MetaData, g8 as MetaSiteSpecialEvent, g9 as MetaSiteSpecialEventPayloadOneOf, bN as ModifierGroup, b5 as Namespace, go as NamespaceChanged, kk as NamespaceWithLiterals, cp as NewExchangeOrderCreated, aP as NonRefundableReason, k2 as NonRefundableReasonWithLiterals, gt as OdeditorAssigned, gu as OdeditorUnassigned, aD as OrderActionType, jS as OrderActionTypeWithLiterals, az as OrderActivityTypeEnumActivityType, jO as OrderActivityTypeEnumActivityTypeWithLiterals, b9 as OrderApprovalStrategy, ko as OrderApprovalStrategyWithLiterals, dH as OrderApproved, hP as OrderCanceled, dQ as OrderCanceledEventOrderCanceled, cs as OrderChange, ct as OrderChangeValueOneOf, h5 as OrderCreateNotifications, co as OrderCreatedFromExchange, h3 as OrderCreationSettings, h4 as OrderCreationSettingsEditableByOneOf, dR as OrderDeltasCommitted, hN as OrderFulfilled, dM as OrderImported, dK as OrderItemsRestocked, bh as OrderLineItem, dV as OrderLineItemChangedDetails, hO as OrderNotFulfilled, hM as OrderPaid, h$ as OrderPartiallyPaid, i0 as OrderPending, hL as OrderPlaced, cn as OrderRefunded, i1 as OrderRejected, dJ as OrderRejectedEventOrderRejected, ju as OrderSearchSpec, dm as OrderSettings, dn as OrderSettingsAllowedActionsOneOf, dp as OrderSettingsEditableByOneOf, au as OrderStatus, c8 as OrderTaxBreakdown, c7 as OrderTaxInfo, eV as OrderTransactions, dI as OrdersExperiments, b7 as Origin, km as OriginWithLiterals, dr as OwnerApps, eW as Payment, c_ as PaymentCanceled, c$ as PaymentCanceledPaymentDetailsOneOf, aM as PaymentCollectabilityStatus, j$ as PaymentCollectabilityStatusWithLiterals, d0 as PaymentDeclined, d1 as PaymentDeclinedPaymentDetailsOneOf, f6 as PaymentMethodName, aj as PaymentOptionType, jz as PaymentOptionTypeWithLiterals, eX as PaymentPaymentDetailsOneOf, cV as PaymentPending, cW as PaymentPendingPaymentDetailsOneOf, eY as PaymentReceiptInfoOneOf, cT as PaymentRefundFailed, cS as PaymentRefunded, aZ as PaymentStatus, fd as PaymentStatusDetails, fe as PaymentStatusDetailsStatusDetailsOneOf, ap as PaymentStatusEnumPaymentStatus, jF as PaymentStatusEnumPaymentStatusWithLiterals, dO as PaymentStatusUpdated, kc as PaymentStatusWithLiterals, jk as Payments, j0 as Phone, br as PhysicalProperties, gv as PicassoAssigned, gw as PicassoUnassigned, c2 as PickupAddress, c1 as PickupDetails, at as PickupMethod, jJ as PickupMethodWithLiterals, h_ as PickupReadyEmailSent, ba as Placement, kp as PlacementWithLiterals, bo as PlainTextValue, dv as PlatformFee, du as PlatformFeeSummary, gT as PlatformPaging, gW as PlatformPagingMetadata, gQ as PlatformQuery, gR as PlatformQueryPagingMethodOneOf, aN as PredefinedPaymentMethod, k0 as PredefinedPaymentMethodWithLiterals, en as PreparePaymentCollectionRequest, g0 as PreviewBuyerConfirmationEmailRequest, g1 as PreviewBuyerConfirmationEmailResponse, f_ as PreviewBuyerPaymentsReceivedEmailRequest, f$ as PreviewBuyerPaymentsReceivedEmailResponse, g2 as PreviewBuyerPickupConfirmationEmailRequest, g3 as PreviewBuyerPickupConfirmationEmailResponse, fW as PreviewCancelEmailRequest, fX as PreviewCancelEmailResponse, fY as PreviewCancelRefundEmailRequest, fZ as PreviewCancelRefundEmailResponse, fS as PreviewEmailByTypeRequest, fT as PreviewEmailByTypeResponse, b2 as PreviewEmailType, kh as PreviewEmailTypeWithLiterals, fU as PreviewRefundEmailRequest, fV as PreviewRefundEmailResponse, g6 as PreviewResendDownloadLinksEmailRequest, g7 as PreviewResendDownloadLinksEmailResponse, g4 as PreviewShippingConfirmationEmailRequest, g5 as PreviewShippingConfirmationEmailResponse, bI as PriceDescription, bT as PriceSummary, bi as ProductName, am as ProductPeriodAlignment, jC as ProductPeriodAlignmentWithLiterals, i4 as PublicActivityContentOneOf, gY as QueryOrderRequest, gZ as QueryOrderResponse, i_ as QuotesAddress, aV as Reason, k8 as ReasonWithLiterals, d2 as ReceiptCreated, d3 as ReceiptCreatedReceiptInfoOneOf, d6 as ReceiptSent, d7 as ReceiptSentReceiptInfoOneOf, es as RecordManuallyCollectedPaymentRequest, ev as RecordManuallyCollectedPaymentResponse, eo as RedirectUrls, fi as Refund, eN as RefundDetails, cM as RefundInitiated, eO as RefundItem, fm as RefundItemsBreakdown, eS as RefundSideEffects, b1 as RefundStatus, fk as RefundStatusInfo, kg as RefundStatusWithLiterals, fj as RefundTransaction, eD as Refundability, eE as RefundabilityAdditionalRefundabilityInfoOneOf, aO as RefundableStatus, k1 as RefundableStatusWithLiterals, cU as RefundedAsStoreCredit, cN as RefundedPayment, cO as RefundedPaymentKindOneOf, cX as RegularPayment, eZ as RegularPaymentDetails, e_ as RegularPaymentDetailsPaymentMethodDetailsOneOf, cY as RegularPaymentPaymentMethodDetailsOneOf, cP as RegularPaymentRefund, iU as Reschedule, eT as RestockInfo, eU as RestockItem, bv as RestockLocation, aR as RestockType, k4 as RestockTypeWithLiterals, e7 as RestoreInfo, cI as SavedPaymentMethod, aK as ScheduledAction, jZ as ScheduledActionWithLiterals, g_ as SearchOrdersRequest, fw as SendBuyerConfirmationEmailRequest, fx as SendBuyerConfirmationEmailResponse, fy as SendBuyerPaymentsReceivedEmailRequest, fz 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, iM as SendOrderUpdatedDomainEventRequest, iN as SendOrderUpdatedDomainEventResponse, fM as SendRefundEmailRequest, fN as SendRefundEmailResponse, eK as ServiceProperties, gk as ServiceProvisioned, gl as ServiceRemoved, ei as SetOrderNumberCounterRequest, hY as ShippingAddressEdited, hU as ShippingConfirmationEmailSent, cH as ShippingInformation, cG as ShippingInformationChange, c4 as ShippingPrice, eR as ShippingRefund, c5 as ShippingRegion, gb as SiteCreated, b4 as SiteCreatedContext, kj as SiteCreatedContextWithLiterals, gd as SiteDeleted, gn as SiteHardDeleted, gi as SiteMarkedAsTemplate, gj as SiteMarkedAsWixSite, gg as SitePublished, gs as SitePurgedExternally, gm as SiteRenamed, gc as SiteTransferred, gf as SiteUndeleted, gh as SiteUnpublished, gr as SiteUrlChanged, b8 as SortOrder, kn as SortOrderWithLiterals, gS as Sorting, jb as Source, bc as SourceType, kr as SourceTypeWithLiterals, aE as SpecificItemsCouponBehavior, jT as SpecificItemsCouponBehaviorWithLiterals, j5 as StandardDetails, b3 as State, ki as StateWithLiterals, bW as StreetAddress, gp as StudioAssigned, gz as StudioTwoAssigned, gA as StudioTwoUnassigned, gq as StudioUnassigned, j4 as Subdivision, bb as SubdivisionType, kq as SubdivisionTypeWithLiterals, bC as SubscriptionDescription, al as SubscriptionFrequency, jB as SubscriptionFrequencyWithLiterals, bA as SubscriptionInfo, bD as SubscriptionSettings, bB as SubscriptionTitle, dk as TagList, dj as Tags, iK as TagsTagList, iJ as TagsTags, iO as Task, iQ as TaskAction, iR as TaskActionActionOneOf, iP as TaskKey, c6 as TaxSummary, bK as TaxableAddress, bL as TaxableAddressTaxableAddressDataOneOf, ao as TaxableAddressType, jE as TaxableAddressTypeWithLiterals, je as TotalPrice, cF as TotalPriceChange, hT as TrackingLinkAdded, hR as TrackingNumberAdded, hS as TrackingNumberEdited, aS as TransactionStatus, k5 as TransactionStatusWithLiterals, bO as TranslatableString, cC as TranslatedValue, eM as TriggerRefundRequest, ec as TriggerReindexOrderRequest, e2 as TriggerReindexRequest, e3 as TriggerReindexResponse, hp as UnArchiveOrderRequest, hq as UnArchiveOrderResponse, i6 as UpdateActivityRequest, hC as UpdateBillingContactDetailsRequest, hD as UpdateBillingContactDetailsResponse, hy as UpdateBuyerEmailRequest, hz as UpdateBuyerEmailResponse, hv as UpdateBuyerInfoRequest, hx as UpdateBuyerInfoResponse, dw as UpdateInternalDocumentsEvent, dx as UpdateInternalDocumentsEventOperationOneOf, i8 as UpdateLineItemsDescriptionLinesRequest, ia as UpdateLineItemsDescriptionLinesResponse, hE as UpdateOrderLineItemRequest, hF as UpdateOrderLineItemsRequest, hH as UpdateOrderLineItemsResponse, h7 as UpdateOrderRequest, h8 as UpdateOrderResponse, hA as UpdateOrderShippingAddressRequest, hB as UpdateOrderShippingAddressResponse, ie as UpdateOrderStatusRequest, et as UserDefinedPaymentMethodName, eu as UserDefinedPaymentMethodNameKindOneOf, gC as UserDomainMediaDisabled, gB as UserDomainMediaEnabled, iy as V1BulkMarkOrdersAsPaidRequest, iz as V1BulkMarkOrdersAsPaidResponse, iA as V1CreatePaymentGatewayOrderRequest, iB as V1CreatePaymentGatewayOrderResponse, hg as V1LineItemDelta, hh as V1LineItemDeltaDeltaOneOf, iw as V1MarkOrderAsPaidRequest, ix as V1MarkOrderAsPaidResponse, dL as V1RestockItem, f4 as V1ScheduledAction, b_ as V1ShippingInformation, em as V1TriggerReindexOrderRequest, ek as V1TriggerReindexRequest, el as V1TriggerReindexResponse, jp as Value, be as ValueType, kt as ValueTypeWithLiterals, bZ as VatId, as as VatType, jI as VatTypeWithLiterals, dF as VersionedDeleteByIdsOperation, dG as VersionedDocumentId, dE as VersionedDocumentUpdateOperation, aG as VersioningMode, jV as VersioningModeWithLiterals, fs as VoidAuthorizedPaymentsRequest, b0 as VoidedReason, kf as VoidedReasonWithLiterals, fh as VoidedStatusDetails, aJ as WebhookIdentityType, jY as WebhookIdentityTypeWithLiterals, ar as WeightUnit, jH as WeightUnitWithLiterals, d4 as WixReceipt, fa as WixReceiptInfo, gx as WixelAssigned, gy as WixelUnassigned, jv as utils } from './ecom-v1-order-orders.universal-CuidLNHL.mjs';
2
+ import { O as Order, I as ImportOrderResponse, a as ImportOrderApplicationErrors, S as SetOrderNumberCounterOptions, b as SetOrderNumberCounterResponse, c as SetOrderNumberCounterApplicationErrors, B as BulkDeleteImportedOrdersResponse, P as Price, d as PreparePaymentCollectionOptions, e as PreparePaymentCollectionResponse, f as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, R as RecordManuallyCollectedPaymentOptions, g as RecordManuallyCollectedPaymentApplicationErrors, h as PaymentCollectionMarkOrderAsPaidOptions, M as MarkOrderAsPaidResponse, i as PaymentCollectionMarkOrderAsPaidApplicationErrors, j as BulkMarkOrdersAsPaidResponse, k as GetRefundabilityStatusResponse, l as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, m as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, n as ChargeMembershipsOptions, o as PaymentRefund, T as TriggerRefundOptions, p as TriggerRefundResponse, q as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, r as VoidAuthorizedPaymentsApplicationErrors, s as PaymentCapture, t as CaptureAuthorizedPaymentsResponse, u as CaptureAuthorizedPaymentsApplicationErrors, v as GetOrderApplicationErrors, w as OrderSearch, x as SearchOrdersResponse, y as CreateOrderOptions, z as CreateOrderApplicationErrors, U as UpdateOrder, A as UpdateOrderApplicationErrors, D as MaskedOrder, E as BulkUpdateOrdersOptions, F as BulkUpdateOrdersResponse, H as UpdateOrderLineItemIdentifiers, J as UpdateOrderLineItem, K as UpdateOrderLineItemResponse, L as PublicActivity, N as AddActivityResponse, Q as AddActivitiesOptions, W as AddActivitiesResponse, X as UpdateActivityIdentifiers, Y as UpdateActivityResponse, Z as DeleteActivityIdentifiers, _ as DeleteActivityResponse, $ as CancelOrderOptions, a0 as CancelOrderResponse, a1 as CancelOrderApplicationErrors, a2 as OrderStatusWithLiterals, a3 as UpdateOrderStatusResponse, a4 as UpdateOrderStatusApplicationErrors, a5 as AggregateOrdersOptions, a6 as AggregateOrdersResponse, a7 as BulkUpdateOrderTagsOptions, a8 as BulkUpdateOrderTagsResponse, a9 as OrderApprovedEnvelope, aa as OrderCanceledEnvelope, ab as OrderCommittedEnvelope, ac as OrderCreatedEnvelope, ad as OrderFulfilledEnvelope, ae as OrderPaymentStatusUpdatedEnvelope, af as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-B3g4xg2t.mjs';
3
+ export { ej as AccountInfo, jw as AccountInfoMetadata, ed as ActionEvent, aX as ActionType, kd as ActionTypeWithLiterals, cm as Activity, cn as ActivityContentOneOf, az as ActivityType, jR as ActivityTypeWithLiterals, i8 as AddActivitiesRequest, i6 as AddActivityRequest, hL as AddInternalActivityRequest, i5 as AddInternalActivityResponse, gK as AddToAutomationMigrationPopulationRequest, gL as AddToAutomationMigrationPopulationResponse, dk as AdditionalFee, e1 as AdditionalFeeDelta, e2 as AdditionalFeeDeltaDeltaOneOf, eT as AdditionalFeeRefund, aD as AdditionalFeeSource, jV as AdditionalFeeSourceWithLiterals, bY as Address, j2 as AddressDescription, b_ as AddressLocation, bX as AddressWithContact, an as AdjustmentType, jG as AdjustmentTypeWithLiterals, iH as AggregateOrdersRequest, fo as AggregatedRefundSummary, eD as ApplicationError, cc as AppliedDiscount, d$ as AppliedDiscountDelta, e0 as AppliedDiscountDeltaDeltaOneOf, cd as AppliedDiscountDiscountSourceOneOf, hm as ArchiveOrderRequest, hn as ArchiveOrderResponse, gd as Asset, aB as AttributionSource, jT as AttributionSourceWithLiterals, f5 as AuthorizationActionFailureDetails, f4 as AuthorizationCapture, aU as AuthorizationCaptureStatus, ka as AuthorizationCaptureStatusWithLiterals, f3 as AuthorizationDetails, f6 as AuthorizationVoid, aV as AuthorizationVoidStatus, kb as AuthorizationVoidStatusWithLiterals, cN as AuthorizedPaymentCaptured, cM as AuthorizedPaymentCreated, cO as AuthorizedPaymentVoided, di as Balance, dh as BalanceSummary, ju as BaseEventMetadata, jc as BigDecimalWrapper, bH as BillingAdjustment, bI as BillingAdjustmentPriceSummary, bG as BillingSettings, eE as BulkActionMetadata, hq as BulkArchiveOrdersByFilterRequest, hr as BulkArchiveOrdersByFilterResponse, ho as BulkArchiveOrdersRequest, hp as BulkArchiveOrdersResponse, em as BulkDeleteImportedOrdersRequest, io as BulkMarkAsFulfilledByFilterRequest, ip as BulkMarkAsFulfilledByFilterResponse, il as BulkMarkAsFulfilledRequest, im as BulkMarkAsFulfilledResponse, iu as BulkMarkAsUnfulfilledByFilterRequest, iv as BulkMarkAsUnfulfilledByFilterResponse, is as BulkMarkAsUnfulfilledRequest, it as BulkMarkAsUnfulfilledResponse, eA as BulkMarkOrdersAsPaidRequest, eB as BulkOrderResult, fF as BulkSendBuyerPickupConfirmationEmailsRequest, fG as BulkSendBuyerPickupConfirmationEmailsResponse, fJ as BulkSendBuyerShippingConfirmationEmailsRequest, fK as BulkSendBuyerShippingConfirmationEmailsResponse, iw as BulkSetBusinessLocationRequest, ix as BulkSetBusinessLocationResponse, iy as BulkSetBusinessLocationResult, hw as BulkUnArchiveOrdersByFilterRequest, hx as BulkUnArchiveOrdersByFilterResponse, hu as BulkUnArchiveOrdersRequest, hv as BulkUnArchiveOrdersResponse, iL as BulkUpdateOrderTagsRequest, iO as BulkUpdateOrderTagsResult, hc as BulkUpdateOrdersRequest, bT as BuyerInfo, bU as BuyerInfoIdOneOf, hz as BuyerInfoUpdate, fs as CalculateRefundItemRequest, fu as CalculateRefundItemResponse, fr as CalculateRefundRequest, ft as CalculateRefundResponse, jm as CalculatedTax, jl as CalculatedTaxes, iW as Cancel, ih as CancelOrderRequest, a$ as CanceledReason, kh as CanceledReasonWithLiterals, fi as CanceledStatusDetails, fw as CaptureAuthorizedPaymentsRequest, dj as CashRounding, ff as CashRoundingDetails, bk as CatalogReference, df as ChannelInfo, aC as ChannelType, jU as ChannelTypeWithLiterals, eK as ChargeMembershipsRequest, eO as ChargeMembershipsResponse, fx as ChargeSavedPaymentMethodRequest, fy as ChargeSavedPaymentMethodResponse, aG as ChargeType, jY as ChargeTypeWithLiterals, f8 as Chargeback, db as ChargebackCreated, dc as ChargebackReversed, aY as ChargebackStatus, ke as ChargebackStatusWithLiterals, eJ as ChargedBy, bq as Color, hd as CommitDeltasRequest, hl as CommitDeltasResponse, dV as CommittedDiffs, dW as CommittedDiffsShippingUpdateInfoOneOf, j5 as CommonAddress, j6 as CommonAddressStreetOneOf, kA as CommonSearchWithEntityContext, j4 as Company, iV as Complete, ce as Coupon, h5 as CreateOrderRequest, h9 as CreateOrderResponse, eI as CreatePaymentGatewayOrderRequest, dd as CreatedBy, de as CreatedByStringOneOf, d0 as CreditCardDetails, f2 as CreditCardPaymentMethodDetails, bV as CurrencyConversionDetails, gX as CursorPaging, h4 as CursorPagingMetadata, h2 as CursorSearch, h3 as CursorSearchPagingMethodOneOf, g_ as Cursors, co as CustomActivity, dt as CustomAllowedActions, dg as CustomField, be as CustomFieldGroup, kw as CustomFieldGroupWithLiterals, jr as CustomFieldValue, i$ as Customer, bN as DecimalQuantity, bO as DecimalQuantityUnitOneOf, b0 as DeclinedReason, ki as DeclinedReasonWithLiterals, fj as DeclinedStatusDetails, iJ as DecrementData, iI as DecrementItemsQuantityRequest, iK as DecrementItemsQuantityResponse, es as DelayedCaptureSettings, ia as DeleteActivityRequest, dE as DeleteByFilterOperation, dD as DeleteByIdsOperation, gh as DeleteContext, b7 as DeleteStatus, kp as DeleteStatusWithLiterals, c2 as DeliveryLogistics, c3 as DeliveryLogisticsAddressOneOf, c6 as DeliveryTimeSlot, aI as DeltaPaymentOptionType, j_ as DeltaPaymentOptionTypeWithLiterals, jt as Deposit, bg as DepositType, ky as DepositTypeWithLiterals, bl as DescriptionLine, bn as DescriptionLineDescriptionLineValueOneOf, bo as DescriptionLineName, ag as DescriptionLineType, jz as DescriptionLineTypeWithLiterals, bm as DescriptionLineValueOneOf, gO as DiffmatokyPayload, bA as DigitalFile, bt as Dimensions, ah as DimensionsUnit, jA as DimensionsUnitWithLiterals, jj as Discount, jk as DiscountOneDiscountTypeOneOf, ax as DiscountReason, jP as DiscountReasonWithLiterals, ch as DiscountRule, ci as DiscountRuleName, aw as DiscountType, jO as DiscountTypeWithLiterals, e7 as DomainEvent, e8 as DomainEventBodyOneOf, hT as DownloadLinkSent, cu as DraftOrderChangesApplied, e3 as DraftOrderCommitSettings, he as DraftOrderDiffs, hh as DraftOrderDiffsBillingUpdateInfoOneOf, hg as DraftOrderDiffsBuyerUpdateInfoOneOf, hi as DraftOrderDiffsRecipientUpdateInfoOneOf, hf as DraftOrderDiffsShippingUpdateInfoOneOf, et as Duration, aM as DurationUnit, k2 as DurationUnitWithLiterals, gG as EditorlessAssigned, gH as EditorlessUnassigned, j0 as Email, i0 as EmailEdited, ee as Empty, e9 as EntityCreatedEvent, ec as EntityDeletedEvent, eb as EntityUpdatedEvent, gP as ErrorInformation, jv as EventMetadata, bQ as ExtendedFields, d8 as ExternalReceipt, fe as ExternalReceiptInfo, br as FocalPoint, dw as FormIdentifier, dv as FormInfo, bF as FreeTrialPeriod, h_ as FulfillerEmailSent, ar as FulfillmentStatus, dS as FulfillmentStatusUpdated, jK as FulfillmentStatusWithLiterals, dl as FulfillmentStatusesAggregate, b$ as FullAddressContactDetails, fc as FutureMembershipDetails, gQ as GetOrderRequest, gR as GetOrderResponse, eu as GetPaymentCollectabilityStatusRequest, eF as GetRefundabilityStatusRequest, iF as GetShipmentsRequest, iG as GetShipmentsResponse, fa as GiftCardPaymentDetails, cT as GiftCardPaymentRefund, gI as HasCustomEmailConfigurationsRequest, gJ as HasCustomEmailConfigurationsResponse, iZ as IdAndVersion, eh as IdentificationData, ei as IdentificationDataIdOneOf, ek as ImportOrderRequest, dQ as ImportedOrderDeleted, hM as InternalActivity, hN as InternalActivityContentOneOf, dB as InternalDocument, dF as InternalDocumentUpdateByFilterOperation, dC as InternalDocumentUpdateOperation, gS as InternalQueryOrdersRequest, gY as InternalQueryOrdersResponse, dG as InternalUpdateExistingOperation, aJ as InventoryAction, j$ as InventoryActionWithLiterals, e4 as InventoryUpdateDetails, hY as InvoiceAdded, j9 as InvoiceDates, jq as InvoiceDynamicPriceTotals, i_ as InvoiceFields, hZ as InvoiceSent, iY as InvoiceSentEvent, bh as InvoiceStatus, kz as InvoiceStatusWithLiterals, jo as InvoicesPayment, gM as IsInAutomationMigrationPopulationRequest, gN as IsInAutomationMigrationPopulationResponse, dX as ItemChangedDetails, ck as ItemCombination, cl as ItemCombinationLineItem, eC as ItemMetadata, bS as ItemModifier, bx as ItemTaxFullDetails, bu as ItemType, bv as ItemTypeItemTypeDataOneOf, ai as ItemTypePreset, jB as ItemTypePresetWithLiterals, ji as ItemizedFee, ak as JurisdictionType, jD as JurisdictionTypeWithLiterals, jb as LineItem, cG as LineItemAmount, cx as LineItemChanges, dZ as LineItemDelta, d_ as LineItemDeltaDeltaOneOf, cB as LineItemDescriptionLineChange, cj as LineItemDiscount, ct as LineItemExchangeData, jf as LineItemMetaData, cC as LineItemModifiersChange, cz as LineItemPriceChange, cA as LineItemProductNameChange, cy as LineItemQuantityChange, ay as LineItemQuantityChangeType, jQ as LineItemQuantityChangeTypeWithLiterals, eS as LineItemRefund, fq as LineItemRefundSummary, jd as LineItemTax, bz as LineItemTaxBreakdown, by as LineItemTaxInfo, ic as LineItemUpdate, ja as LineItems, jg as Locale, dp as Location, bK as LocationAndQuantity, cH as ManagedAdditionalFee, cE as ManagedDiscount, cD as ManagedLineItem, aR as ManuallyRefundableReason, k7 as ManuallyRefundableReasonWithLiterals, ij as MarkAsFulfilledRequest, ik as MarkAsFulfilledResponse, iq as MarkAsUnfulfilledRequest, ir as MarkAsUnfulfilledResponse, ez as MarkOrderAsPaidRequest, ie as MarkOrderAsSeenByHumanRequest, ig as MarkOrderAsSeenByHumanResponse, hJ as MaskedOrderLineItem, ap as MeasurementUnit, jI as MeasurementUnitWithLiterals, eL as MembershipChargeItem, eM as MembershipName, fb as MembershipPaymentDetails, cU as MembershipPaymentRefund, aZ as MembershipPaymentStatus, kf as MembershipPaymentStatusWithLiterals, cp as MerchantComment, cf as MerchantDiscount, cg as MerchantDiscountMerchantDiscountReasonOneOf, eg as MessageEnvelope, jp as MetaData, gb as MetaSiteSpecialEvent, gc as MetaSiteSpecialEventPayloadOneOf, bR as ModifierGroup, b6 as Namespace, gr as NamespaceChanged, ko as NamespaceWithLiterals, cs as NewExchangeOrderCreated, aQ as NonRefundableReason, k6 as NonRefundableReasonWithLiterals, gw as OdeditorAssigned, gx as OdeditorUnassigned, aE as OrderActionType, jW as OrderActionTypeWithLiterals, aA as OrderActivityTypeEnumActivityType, jS as OrderActivityTypeEnumActivityTypeWithLiterals, ba as OrderApprovalStrategy, ks as OrderApprovalStrategyWithLiterals, dK as OrderApproved, hS as OrderCanceled, dT as OrderCanceledEventOrderCanceled, cv as OrderChange, cw as OrderChangeValueOneOf, h8 as OrderCreateNotifications, cr as OrderCreatedFromExchange, h6 as OrderCreationSettings, h7 as OrderCreationSettingsEditableByOneOf, dU as OrderDeltasCommitted, hQ as OrderFulfilled, dP as OrderImported, dN as OrderItemsRestocked, bi as OrderLineItem, dY as OrderLineItemChangedDetails, hR as OrderNotFulfilled, hP as OrderPaid, i2 as OrderPartiallyPaid, i3 as OrderPending, hO as OrderPlaced, cq as OrderRefunded, i4 as OrderRejected, dM as OrderRejectedEventOrderRejected, jx as OrderSearchSpec, dq as OrderSettings, dr as OrderSettingsAllowedActionsOneOf, ds as OrderSettingsEditableByOneOf, av as OrderStatus, cb as OrderTaxBreakdown, ca as OrderTaxInfo, eY as OrderTransactions, dL as OrdersExperiments, b8 as Origin, kq as OriginWithLiterals, du as OwnerApps, eZ as Payment, d1 as PaymentCanceled, d2 as PaymentCanceledPaymentDetailsOneOf, aN as PaymentCollectabilityStatus, k3 as PaymentCollectabilityStatusWithLiterals, d3 as PaymentDeclined, d4 as PaymentDeclinedPaymentDetailsOneOf, f9 as PaymentMethodName, aj as PaymentOptionType, jC as PaymentOptionTypeWithLiterals, e_ as PaymentPaymentDetailsOneOf, cY as PaymentPending, cZ as PaymentPendingPaymentDetailsOneOf, e$ as PaymentReceiptInfoOneOf, cW as PaymentRefundFailed, cV as PaymentRefunded, a_ as PaymentStatus, fg as PaymentStatusDetails, fh as PaymentStatusDetailsStatusDetailsOneOf, aq as PaymentStatusEnumPaymentStatus, jJ as PaymentStatusEnumPaymentStatusWithLiterals, dR as PaymentStatusUpdated, kg as PaymentStatusWithLiterals, jn as Payments, j3 as Phone, bs as PhysicalProperties, gy as PicassoAssigned, gz as PicassoUnassigned, c5 as PickupAddress, c4 as PickupDetails, au as PickupMethod, jN as PickupMethodWithLiterals, i1 as PickupReadyEmailSent, bb as Placement, kt as PlacementWithLiterals, bp as PlainTextValue, dy as PlatformFee, dx as PlatformFeeSummary, gW as PlatformPaging, gZ as PlatformPagingMetadata, gT as PlatformQuery, gU as PlatformQueryPagingMethodOneOf, aO as PredefinedPaymentMethod, k4 as PredefinedPaymentMethodWithLiterals, eq as PreparePaymentCollectionRequest, g3 as PreviewBuyerConfirmationEmailRequest, g4 as PreviewBuyerConfirmationEmailResponse, g1 as PreviewBuyerPaymentsReceivedEmailRequest, g2 as PreviewBuyerPaymentsReceivedEmailResponse, g5 as PreviewBuyerPickupConfirmationEmailRequest, g6 as PreviewBuyerPickupConfirmationEmailResponse, fZ as PreviewCancelEmailRequest, f_ as PreviewCancelEmailResponse, f$ as PreviewCancelRefundEmailRequest, g0 as PreviewCancelRefundEmailResponse, fV as PreviewEmailByTypeRequest, fW as PreviewEmailByTypeResponse, b3 as PreviewEmailType, kl as PreviewEmailTypeWithLiterals, fX as PreviewRefundEmailRequest, fY as PreviewRefundEmailResponse, g9 as PreviewResendDownloadLinksEmailRequest, ga as PreviewResendDownloadLinksEmailResponse, g7 as PreviewShippingConfirmationEmailRequest, g8 as PreviewShippingConfirmationEmailResponse, bJ as PriceDescription, bW as PriceSummary, bj as ProductName, am as ProductPeriodAlignment, jF as ProductPeriodAlignmentWithLiterals, i7 as PublicActivityContentOneOf, g$ as QueryOrderRequest, h0 as QueryOrderResponse, j1 as QuotesAddress, aW as Reason, kc as ReasonWithLiterals, d5 as ReceiptCreated, d6 as ReceiptCreatedReceiptInfoOneOf, d9 as ReceiptSent, da as ReceiptSentReceiptInfoOneOf, ev as RecordManuallyCollectedPaymentRequest, ey as RecordManuallyCollectedPaymentResponse, er as RedirectUrls, fl as Refund, eQ as RefundDetails, cP as RefundInitiated, eR as RefundItem, fp as RefundItemsBreakdown, eV as RefundSideEffects, b2 as RefundStatus, fn as RefundStatusInfo, kk as RefundStatusWithLiterals, fm as RefundTransaction, eG as Refundability, eH as RefundabilityAdditionalRefundabilityInfoOneOf, aP as RefundableStatus, k5 as RefundableStatusWithLiterals, cX as RefundedAsStoreCredit, cQ as RefundedPayment, cR as RefundedPaymentKindOneOf, c_ as RegularPayment, f0 as RegularPaymentDetails, f1 as RegularPaymentDetailsPaymentMethodDetailsOneOf, c$ as RegularPaymentPaymentMethodDetailsOneOf, cS as RegularPaymentRefund, iX as Reschedule, eW as RestockInfo, eX as RestockItem, bw as RestockLocation, aS as RestockType, k8 as RestockTypeWithLiterals, ea as RestoreInfo, cL as SavedPaymentMethod, aL as ScheduledAction, k1 as ScheduledActionWithLiterals, h1 as SearchOrdersRequest, fz 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, iP as SendOrderUpdatedDomainEventRequest, iQ as SendOrderUpdatedDomainEventResponse, fP as SendRefundEmailRequest, fQ as SendRefundEmailResponse, eN as ServiceProperties, gn as ServiceProvisioned, go as ServiceRemoved, el as SetOrderNumberCounterRequest, h$ as ShippingAddressEdited, hX as ShippingConfirmationEmailSent, cK as ShippingInformation, cJ as ShippingInformationChange, c7 as ShippingPrice, eU as ShippingRefund, c8 as ShippingRegion, ge as SiteCreated, b5 as SiteCreatedContext, kn as SiteCreatedContextWithLiterals, gg as SiteDeleted, gq as SiteHardDeleted, gl as SiteMarkedAsTemplate, gm as SiteMarkedAsWixSite, gj as SitePublished, gv as SitePurgedExternally, gp as SiteRenamed, gf as SiteTransferred, gi as SiteUndeleted, gk as SiteUnpublished, gu as SiteUrlChanged, b9 as SortOrder, kr as SortOrderWithLiterals, gV as Sorting, je as Source, bd as SourceType, kv as SourceTypeWithLiterals, aF as SpecificItemsCouponBehavior, jX as SpecificItemsCouponBehaviorWithLiterals, j8 as StandardDetails, b4 as State, km as StateWithLiterals, bZ as StreetAddress, gs as StudioAssigned, gC as StudioTwoAssigned, gD as StudioTwoUnassigned, gt as StudioUnassigned, j7 as Subdivision, bc as SubdivisionType, ku as SubdivisionTypeWithLiterals, bD as SubscriptionDescription, al as SubscriptionFrequency, jE as SubscriptionFrequencyWithLiterals, bB as SubscriptionInfo, bE as SubscriptionSettings, bC as SubscriptionTitle, dn as TagList, dm as Tags, iN as TagsTagList, iM as TagsTags, iR as Task, iT as TaskAction, iU as TaskActionActionOneOf, iS as TaskKey, c9 as TaxSummary, bL as TaxableAddress, bM as TaxableAddressTaxableAddressDataOneOf, ao as TaxableAddressType, jH as TaxableAddressTypeWithLiterals, jh as TotalPrice, cI as TotalPriceChange, hW as TrackingLinkAdded, hU as TrackingNumberAdded, hV as TrackingNumberEdited, aT as TransactionStatus, k9 as TransactionStatusWithLiterals, bP as TranslatableString, cF as TranslatedValue, eP as TriggerRefundRequest, ef as TriggerReindexOrderRequest, e5 as TriggerReindexRequest, e6 as TriggerReindexResponse, hs as UnArchiveOrderRequest, ht as UnArchiveOrderResponse, i9 as UpdateActivityRequest, hF as UpdateBillingContactDetailsRequest, hG as UpdateBillingContactDetailsResponse, hB as UpdateBuyerEmailRequest, hC as UpdateBuyerEmailResponse, hy as UpdateBuyerInfoRequest, hA as UpdateBuyerInfoResponse, dz as UpdateInternalDocumentsEvent, dA as UpdateInternalDocumentsEventOperationOneOf, ib as UpdateLineItemsDescriptionLinesRequest, id as UpdateLineItemsDescriptionLinesResponse, hH as UpdateOrderLineItemRequest, hI as UpdateOrderLineItemsRequest, hK as UpdateOrderLineItemsResponse, ha as UpdateOrderRequest, hb as UpdateOrderResponse, hD as UpdateOrderShippingAddressRequest, hE as UpdateOrderShippingAddressResponse, ii as UpdateOrderStatusRequest, ew as UserDefinedPaymentMethodName, ex as UserDefinedPaymentMethodNameKindOneOf, gF as UserDomainMediaDisabled, gE as UserDomainMediaEnabled, iB as V1BulkMarkOrdersAsPaidRequest, iC as V1BulkMarkOrdersAsPaidResponse, iD as V1CreatePaymentGatewayOrderRequest, iE as V1CreatePaymentGatewayOrderResponse, hj as V1LineItemDelta, hk as V1LineItemDeltaDeltaOneOf, iz as V1MarkOrderAsPaidRequest, iA as V1MarkOrderAsPaidResponse, dO as V1RestockItem, f7 as V1ScheduledAction, c1 as V1ShippingInformation, ep as V1TriggerReindexOrderRequest, en as V1TriggerReindexRequest, eo as V1TriggerReindexResponse, js as Value, bf as ValueType, kx as ValueTypeWithLiterals, c0 as VatId, at as VatType, jM as VatTypeWithLiterals, dI as VersionedDeleteByIdsOperation, dJ as VersionedDocumentId, dH as VersionedDocumentUpdateOperation, aH as VersioningMode, jZ as VersioningModeWithLiterals, fv as VoidAuthorizedPaymentsRequest, b1 as VoidedReason, kj as VoidedReasonWithLiterals, fk as VoidedStatusDetails, aK as WebhookIdentityType, k0 as WebhookIdentityTypeWithLiterals, as as WeightUnit, jL as WeightUnitWithLiterals, d7 as WixReceipt, fd as WixReceiptInfo, gA as WixelAssigned, gB as WixelUnassigned, jy as utils } from './ecom-v1-order-orders.universal-B3g4xg2t.mjs';
4
4
 
5
5
  /** @internal */
6
6
  declare function importOrder$1(httpClient: HttpClient): ImportOrderSignature;
@@ -1797,6 +1797,31 @@ var TaxableAddressType = /* @__PURE__ */ ((TaxableAddressType2) => {
1797
1797
  TaxableAddressType2["SHIPPING"] = "SHIPPING";
1798
1798
  return TaxableAddressType2;
1799
1799
  })(TaxableAddressType || {});
1800
+ var MeasurementUnit = /* @__PURE__ */ ((MeasurementUnit2) => {
1801
+ MeasurementUnit2["UNSPECIFIED"] = "UNSPECIFIED";
1802
+ MeasurementUnit2["ML"] = "ML";
1803
+ MeasurementUnit2["CL"] = "CL";
1804
+ MeasurementUnit2["L"] = "L";
1805
+ MeasurementUnit2["CBM"] = "CBM";
1806
+ MeasurementUnit2["MG"] = "MG";
1807
+ MeasurementUnit2["G"] = "G";
1808
+ MeasurementUnit2["KG"] = "KG";
1809
+ MeasurementUnit2["MM"] = "MM";
1810
+ MeasurementUnit2["CM"] = "CM";
1811
+ MeasurementUnit2["M"] = "M";
1812
+ MeasurementUnit2["SQM"] = "SQM";
1813
+ MeasurementUnit2["OZ"] = "OZ";
1814
+ MeasurementUnit2["LB"] = "LB";
1815
+ MeasurementUnit2["FLOZ"] = "FLOZ";
1816
+ MeasurementUnit2["PT"] = "PT";
1817
+ MeasurementUnit2["QT"] = "QT";
1818
+ MeasurementUnit2["GAL"] = "GAL";
1819
+ MeasurementUnit2["IN"] = "IN";
1820
+ MeasurementUnit2["FT"] = "FT";
1821
+ MeasurementUnit2["YD"] = "YD";
1822
+ MeasurementUnit2["SQFT"] = "SQFT";
1823
+ return MeasurementUnit2;
1824
+ })(MeasurementUnit || {});
1800
1825
  var PaymentStatusEnumPaymentStatus = /* @__PURE__ */ ((PaymentStatusEnumPaymentStatus2) => {
1801
1826
  PaymentStatusEnumPaymentStatus2["UNSPECIFIED"] = "UNSPECIFIED";
1802
1827
  PaymentStatusEnumPaymentStatus2["NOT_PAID"] = "NOT_PAID";
@@ -4130,6 +4155,7 @@ export {
4130
4155
  JurisdictionType,
4131
4156
  LineItemQuantityChangeType,
4132
4157
  ManuallyRefundableReason,
4158
+ MeasurementUnit,
4133
4159
  MembershipPaymentStatus,
4134
4160
  Namespace,
4135
4161
  NonRefundableReason,