@wix/auto_sdk_ecom_orders 1.0.207 → 1.0.208

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-D3-Z-bHz.d.ts → ecom-v1-order-orders.universal-CvSMoLJ1.d.ts} +159 -159
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +6 -6
  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 +6 -6
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +159 -159
  9. package/build/cjs/meta.js +6 -6
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{ecom-v1-order-orders.universal-D3-Z-bHz.d.mts → ecom-v1-order-orders.universal-CvSMoLJ1.d.mts} +159 -159
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +6 -6
  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 +6 -6
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +159 -159
  19. package/build/es/meta.mjs +6 -6
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{ecom-v1-order-orders.universal-DmQnQVc2.d.ts → ecom-v1-order-orders.universal-C82IbNQo.d.ts} +159 -159
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +6 -6
  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 +6 -6
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +159 -159
  29. package/build/internal/cjs/meta.js +6 -6
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{ecom-v1-order-orders.universal-DmQnQVc2.d.mts → ecom-v1-order-orders.universal-C82IbNQo.d.mts} +159 -159
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +6 -6
  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 +6 -6
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +159 -159
  39. package/build/internal/es/meta.mjs +6 -6
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -3772,6 +3772,164 @@ interface AccountInfo {
3772
3772
  */
3773
3773
  siteId?: string | null;
3774
3774
  }
3775
+ interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
3776
+ /** insert/update documents */
3777
+ update?: InternalDocumentUpdateOperation;
3778
+ /** delete by document ids */
3779
+ deleteByIds?: DeleteByIdsOperation;
3780
+ /** delete documents matching filter */
3781
+ deleteByFilter?: DeleteByFilterOperation;
3782
+ /** update internal documents matching filter */
3783
+ updateByFilter?: InternalDocumentUpdateByFilterOperation;
3784
+ /** update only existing documents */
3785
+ updateExisting?: InternalUpdateExistingOperation;
3786
+ /** insert/update documents with versioning */
3787
+ versionedUpdate?: VersionedDocumentUpdateOperation;
3788
+ /** delete by document ids with versioning */
3789
+ versionedDeleteByIds?: VersionedDeleteByIdsOperation;
3790
+ /**
3791
+ * type of the documents
3792
+ * @minLength 2
3793
+ */
3794
+ documentType?: string;
3795
+ /**
3796
+ * language of the documents (mandatory)
3797
+ * @minLength 2
3798
+ */
3799
+ language?: string | null;
3800
+ /**
3801
+ * one or more search documents
3802
+ * @deprecated
3803
+ */
3804
+ addDocuments?: InternalDocument[];
3805
+ /**
3806
+ * one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
3807
+ * @deprecated
3808
+ */
3809
+ removeDocumentIds?: string[];
3810
+ /** id to pass to processing notification */
3811
+ correlationId?: string | null;
3812
+ /** when event was created / issued */
3813
+ issuedAt?: Date | null;
3814
+ }
3815
+ /** @oneof */
3816
+ interface UpdateInternalDocumentsEventOperationOneOf {
3817
+ /** insert/update documents */
3818
+ update?: InternalDocumentUpdateOperation;
3819
+ /** delete by document ids */
3820
+ deleteByIds?: DeleteByIdsOperation;
3821
+ /** delete documents matching filter */
3822
+ deleteByFilter?: DeleteByFilterOperation;
3823
+ /** update internal documents matching filter */
3824
+ updateByFilter?: InternalDocumentUpdateByFilterOperation;
3825
+ /** update only existing documents */
3826
+ updateExisting?: InternalUpdateExistingOperation;
3827
+ /** insert/update documents with versioning */
3828
+ versionedUpdate?: VersionedDocumentUpdateOperation;
3829
+ /** delete by document ids with versioning */
3830
+ versionedDeleteByIds?: VersionedDeleteByIdsOperation;
3831
+ }
3832
+ interface InternalDocument {
3833
+ /** document with mandatory fields (id) and with fields specific to the type of the document */
3834
+ document?: Record<string, any> | null;
3835
+ }
3836
+ interface InternalDocumentUpdateOperation {
3837
+ /** documents to index or update */
3838
+ documents?: InternalDocument[];
3839
+ }
3840
+ interface DeleteByIdsOperation {
3841
+ /** ids of the documents to delete */
3842
+ documentIds?: string[];
3843
+ /**
3844
+ * tenant id for custom tenancy strategy
3845
+ * @minLength 2
3846
+ * @maxLength 300
3847
+ */
3848
+ tenantId?: string | null;
3849
+ }
3850
+ interface DeleteByFilterOperation {
3851
+ /** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
3852
+ filter?: Record<string, any> | null;
3853
+ /**
3854
+ * tenant id for custom tenancy strategy
3855
+ * @minLength 2
3856
+ * @maxLength 300
3857
+ */
3858
+ tenantId?: string | null;
3859
+ }
3860
+ interface InternalDocumentUpdateByFilterOperation {
3861
+ /** documents matching this filter will be updated */
3862
+ filter?: Record<string, any> | null;
3863
+ /** partial document to apply */
3864
+ document?: InternalDocument;
3865
+ /**
3866
+ * tenant id for custom tenancy strategy
3867
+ * @minLength 2
3868
+ * @maxLength 300
3869
+ */
3870
+ tenantId?: string | null;
3871
+ }
3872
+ interface InternalUpdateExistingOperation {
3873
+ /** documents to update */
3874
+ documents?: InternalDocument[];
3875
+ }
3876
+ interface VersionedDocumentUpdateOperation {
3877
+ /** documents to create or overwrite */
3878
+ documents?: InternalDocument[];
3879
+ /** versioning mode to use instead of default */
3880
+ versioningMode?: VersioningModeWithLiterals;
3881
+ }
3882
+ declare enum VersioningMode {
3883
+ /** use default versioning mode agreed with search team */
3884
+ DEFAULT = "DEFAULT",
3885
+ /** execute only if version is greater than existing */
3886
+ GREATER_THAN = "GREATER_THAN",
3887
+ /** execute only if version is greater or equal to existing */
3888
+ GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
3889
+ }
3890
+ /** @enumType */
3891
+ type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
3892
+ interface VersionedDeleteByIdsOperation {
3893
+ /** ids with version of the documents to delete */
3894
+ documentIds?: VersionedDocumentId[];
3895
+ /**
3896
+ * tenant id for custom tenancy strategy
3897
+ * @minLength 2
3898
+ * @maxLength 300
3899
+ */
3900
+ tenantId?: string | null;
3901
+ }
3902
+ interface VersionedDocumentId {
3903
+ /** document id */
3904
+ documentId?: string;
3905
+ /** document version */
3906
+ version?: string;
3907
+ /** versioning mode to use instead of default */
3908
+ versioningMode?: VersioningModeWithLiterals;
3909
+ }
3910
+ interface TriggerReindexRequest {
3911
+ /** @format GUID */
3912
+ metasiteId?: string;
3913
+ /**
3914
+ * @minLength 1
3915
+ * @maxLength 100
3916
+ * @maxSize 100
3917
+ */
3918
+ orderIds?: string[];
3919
+ }
3920
+ interface TriggerReindexResponse {
3921
+ }
3922
+ interface Empty {
3923
+ }
3924
+ interface TriggerReindexOrderRequest {
3925
+ /** @format GUID */
3926
+ metasiteId?: string;
3927
+ /**
3928
+ * @minLength 1
3929
+ * @maxLength 100
3930
+ */
3931
+ orderId?: string;
3932
+ }
3775
3933
  interface SendBuyerConfirmationEmailRequest {
3776
3934
  /** @format GUID */
3777
3935
  orderId?: string;
@@ -4072,8 +4230,6 @@ interface PreviewResendDownloadLinksEmailRequest {
4072
4230
  interface PreviewResendDownloadLinksEmailResponse {
4073
4231
  emailPreview?: string;
4074
4232
  }
4075
- interface Empty {
4076
- }
4077
4233
  interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
4078
4234
  /** Emitted on a meta site creation. */
4079
4235
  siteCreated?: SiteCreated;
@@ -5842,162 +5998,6 @@ interface ChargeSavedPaymentMethodResponse {
5842
5998
  /** Payment gateway's order ID (e.g Wix Payments) */
5843
5999
  paymentGatewayOrderId?: string;
5844
6000
  }
5845
- interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
5846
- /** insert/update documents */
5847
- update?: InternalDocumentUpdateOperation;
5848
- /** delete by document ids */
5849
- deleteByIds?: DeleteByIdsOperation;
5850
- /** delete documents matching filter */
5851
- deleteByFilter?: DeleteByFilterOperation;
5852
- /** update internal documents matching filter */
5853
- updateByFilter?: InternalDocumentUpdateByFilterOperation;
5854
- /** update only existing documents */
5855
- updateExisting?: InternalUpdateExistingOperation;
5856
- /** insert/update documents with versioning */
5857
- versionedUpdate?: VersionedDocumentUpdateOperation;
5858
- /** delete by document ids with versioning */
5859
- versionedDeleteByIds?: VersionedDeleteByIdsOperation;
5860
- /**
5861
- * type of the documents
5862
- * @minLength 2
5863
- */
5864
- documentType?: string;
5865
- /**
5866
- * language of the documents (mandatory)
5867
- * @minLength 2
5868
- */
5869
- language?: string | null;
5870
- /**
5871
- * one or more search documents
5872
- * @deprecated
5873
- */
5874
- addDocuments?: InternalDocument[];
5875
- /**
5876
- * one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
5877
- * @deprecated
5878
- */
5879
- removeDocumentIds?: string[];
5880
- /** id to pass to processing notification */
5881
- correlationId?: string | null;
5882
- /** when event was created / issued */
5883
- issuedAt?: Date | null;
5884
- }
5885
- /** @oneof */
5886
- interface UpdateInternalDocumentsEventOperationOneOf {
5887
- /** insert/update documents */
5888
- update?: InternalDocumentUpdateOperation;
5889
- /** delete by document ids */
5890
- deleteByIds?: DeleteByIdsOperation;
5891
- /** delete documents matching filter */
5892
- deleteByFilter?: DeleteByFilterOperation;
5893
- /** update internal documents matching filter */
5894
- updateByFilter?: InternalDocumentUpdateByFilterOperation;
5895
- /** update only existing documents */
5896
- updateExisting?: InternalUpdateExistingOperation;
5897
- /** insert/update documents with versioning */
5898
- versionedUpdate?: VersionedDocumentUpdateOperation;
5899
- /** delete by document ids with versioning */
5900
- versionedDeleteByIds?: VersionedDeleteByIdsOperation;
5901
- }
5902
- interface InternalDocument {
5903
- /** document with mandatory fields (id) and with fields specific to the type of the document */
5904
- document?: Record<string, any> | null;
5905
- }
5906
- interface InternalDocumentUpdateOperation {
5907
- /** documents to index or update */
5908
- documents?: InternalDocument[];
5909
- }
5910
- interface DeleteByIdsOperation {
5911
- /** ids of the documents to delete */
5912
- documentIds?: string[];
5913
- /**
5914
- * tenant id for custom tenancy strategy
5915
- * @minLength 2
5916
- * @maxLength 300
5917
- */
5918
- tenantId?: string | null;
5919
- }
5920
- interface DeleteByFilterOperation {
5921
- /** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
5922
- filter?: Record<string, any> | null;
5923
- /**
5924
- * tenant id for custom tenancy strategy
5925
- * @minLength 2
5926
- * @maxLength 300
5927
- */
5928
- tenantId?: string | null;
5929
- }
5930
- interface InternalDocumentUpdateByFilterOperation {
5931
- /** documents matching this filter will be updated */
5932
- filter?: Record<string, any> | null;
5933
- /** partial document to apply */
5934
- document?: InternalDocument;
5935
- /**
5936
- * tenant id for custom tenancy strategy
5937
- * @minLength 2
5938
- * @maxLength 300
5939
- */
5940
- tenantId?: string | null;
5941
- }
5942
- interface InternalUpdateExistingOperation {
5943
- /** documents to update */
5944
- documents?: InternalDocument[];
5945
- }
5946
- interface VersionedDocumentUpdateOperation {
5947
- /** documents to create or overwrite */
5948
- documents?: InternalDocument[];
5949
- /** versioning mode to use instead of default */
5950
- versioningMode?: VersioningModeWithLiterals;
5951
- }
5952
- declare enum VersioningMode {
5953
- /** use default versioning mode agreed with search team */
5954
- DEFAULT = "DEFAULT",
5955
- /** execute only if version is greater than existing */
5956
- GREATER_THAN = "GREATER_THAN",
5957
- /** execute only if version is greater or equal to existing */
5958
- GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
5959
- }
5960
- /** @enumType */
5961
- type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
5962
- interface VersionedDeleteByIdsOperation {
5963
- /** ids with version of the documents to delete */
5964
- documentIds?: VersionedDocumentId[];
5965
- /**
5966
- * tenant id for custom tenancy strategy
5967
- * @minLength 2
5968
- * @maxLength 300
5969
- */
5970
- tenantId?: string | null;
5971
- }
5972
- interface VersionedDocumentId {
5973
- /** document id */
5974
- documentId?: string;
5975
- /** document version */
5976
- version?: string;
5977
- /** versioning mode to use instead of default */
5978
- versioningMode?: VersioningModeWithLiterals;
5979
- }
5980
- interface TriggerReindexRequest {
5981
- /** @format GUID */
5982
- metasiteId?: string;
5983
- /**
5984
- * @minLength 1
5985
- * @maxLength 100
5986
- * @maxSize 100
5987
- */
5988
- orderIds?: string[];
5989
- }
5990
- interface TriggerReindexResponse {
5991
- }
5992
- interface TriggerReindexOrderRequest {
5993
- /** @format GUID */
5994
- metasiteId?: string;
5995
- /**
5996
- * @minLength 1
5997
- * @maxLength 100
5998
- */
5999
- orderId?: string;
6000
- }
6001
6001
  interface DiffmatokyPayload {
6002
6002
  left?: string;
6003
6003
  right?: string;
@@ -9363,4 +9363,4 @@ interface BulkUpdateOrderTagsOptions {
9363
9363
  unassignTags?: TagsTags;
9364
9364
  }
9365
9365
 
9366
- export { type CancelOrderResponse as $, type MaskedOrder as A, type BulkDeleteImportedOrdersOptions as B, type CreatePaymentGatewayOrderResponse as C, type BulkUpdateOrdersOptions as D, type BulkUpdateOrdersResponse as E, type UpdateOrderLineItemIdentifiers as F, type GetPaymentCollectabilityStatusResponse as G, type UpdateOrderLineItem as H, type ImportOrderResponse as I, type UpdateOrderLineItemResponse as J, type PublicActivity as K, type AddActivityResponse as L, type MarkOrderAsPaidResponse as M, type AddActivitiesOptions as N, type Order as O, type Price as P, type AddActivitiesResponse as Q, type RecordManuallyCollectedPaymentOptions as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type UpdateActivityIdentifiers as W, type UpdateActivityResponse as X, type DeleteActivityIdentifiers as Y, type DeleteActivityResponse as Z, type CancelOrderOptions as _, type SetOrderNumberCounterResponse as a, VersioningMode as a$, type CancelOrderApplicationErrors as a0, type OrderStatusWithLiterals as a1, type UpdateOrderStatusResponse as a2, type UpdateOrderStatusApplicationErrors as a3, type AggregateOrdersOptions as a4, type AggregateOrdersResponse as a5, type BulkUpdateOrderTagsOptions as a6, type BulkUpdateOrderTagsResponse as a7, type OrderApprovedEnvelope as a8, type OrderCanceledEnvelope as a9, AdditionalFeeSource as aA, OrderActionType as aB, ChargeType as aC, DeltaPaymentOptionType as aD, InventoryAction as aE, WebhookIdentityType as aF, PreviewEmailType as aG, State as aH, SiteCreatedContext as aI, Namespace as aJ, DeleteStatus 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, RefundStatus as a_, type OrderCommittedEnvelope as aa, type OrderCreatedEnvelope as ab, type OrderFulfilledEnvelope as ac, type OrderPaymentStatusUpdatedEnvelope as ad, type OrderUpdatedEnvelope as ae, DescriptionLineType as af, DimensionsUnit as ag, ItemTypePreset as ah, PaymentOptionType as ai, JurisdictionType as aj, SubscriptionFrequency as ak, AdjustmentType as al, TaxableAddressType as am, PaymentStatus as an, FulfillmentStatus as ao, WeightUnit as ap, VatType as aq, PickupMethod as ar, OrderStatus as as, DiscountType as at, DiscountReason as au, LineItemQuantityChangeType as av, ActivityType as aw, OrderActivityTypeEnumActivityType as ax, AttributionSource as ay, ChannelType as az, type BulkDeleteImportedOrdersResponse as b, type AppliedDiscount as b$, SortOrder as b0, OrderApprovalStrategy as b1, Placement as b2, SubdivisionType as b3, SourceType as b4, CustomFieldGroup as b5, ValueType as b6, DepositType as b7, InvoiceStatus as b8, type OrderLineItem as b9, type TaxableAddress as bA, type TaxableAddressTaxableAddressDataOneOf as bB, type ExtendedFields as bC, type ModifierGroup as bD, type TranslatableString as bE, type ItemModifier as bF, type BuyerInfo as bG, type BuyerInfoIdOneOf as bH, type CurrencyConversionDetails as bI, type PriceSummary as bJ, type AddressWithContact as bK, type Address as bL, type StreetAddress as bM, type AddressLocation as bN, type FullAddressContactDetails as bO, type VatId as bP, type V1ShippingInformation as bQ, type DeliveryLogistics as bR, type DeliveryLogisticsAddressOneOf as bS, type PickupDetails as bT, type PickupAddress as bU, type DeliveryTimeSlot as bV, type ShippingPrice as bW, type ShippingRegion as bX, type TaxSummary as bY, type OrderTaxInfo as bZ, type OrderTaxBreakdown as b_, type ProductName as ba, type CatalogReference as bb, type DescriptionLine as bc, type DescriptionLineValueOneOf as bd, type DescriptionLineDescriptionLineValueOneOf as be, type DescriptionLineName as bf, type PlainTextValue as bg, type Color as bh, type FocalPoint as bi, type PhysicalProperties as bj, type Dimensions as bk, type ItemType as bl, type ItemTypeItemTypeDataOneOf as bm, type ItemTaxFullDetails as bn, type LineItemTaxInfo as bo, type LineItemTaxBreakdown as bp, type DigitalFile as bq, type SubscriptionInfo as br, type SubscriptionTitle as bs, type SubscriptionDescription as bt, type SubscriptionSettings as bu, type FreeTrialPeriod as bv, type BillingAdjustment as bw, type BillingAdjustmentPriceSummary as bx, type PriceDescription as by, type LocationAndQuantity as bz, type PreparePaymentCollectionOptions as c, type ChargebackReversed as c$, type AppliedDiscountDiscountSourceOneOf as c0, type Coupon as c1, type MerchantDiscount as c2, type MerchantDiscountMerchantDiscountReasonOneOf as c3, type DiscountRule as c4, type DiscountRuleName as c5, type LineItemDiscount as c6, type ItemCombination as c7, type ItemCombinationLineItem as c8, type Activity as c9, type AuthorizedPaymentCaptured as cA, type AuthorizedPaymentVoided as cB, type RefundInitiated as cC, type RefundedPayment as cD, type RefundedPaymentKindOneOf as cE, type RegularPaymentRefund as cF, type GiftCardPaymentRefund as cG, type MembershipPaymentRefund as cH, type PaymentRefunded as cI, type PaymentRefundFailed as cJ, type RefundedAsStoreCredit as cK, type PaymentPending as cL, type PaymentPendingPaymentDetailsOneOf as cM, type RegularPayment as cN, type RegularPaymentPaymentMethodDetailsOneOf as cO, type CreditCardDetails as cP, type PaymentCanceled as cQ, type PaymentCanceledPaymentDetailsOneOf as cR, type PaymentDeclined as cS, type PaymentDeclinedPaymentDetailsOneOf as cT, type ReceiptCreated as cU, type ReceiptCreatedReceiptInfoOneOf as cV, type WixReceipt as cW, type ExternalReceipt as cX, type ReceiptSent as cY, type ReceiptSentReceiptInfoOneOf as cZ, type ChargebackCreated as c_, type ActivityContentOneOf as ca, type CustomActivity as cb, type MerchantComment as cc, type OrderRefunded as cd, type OrderCreatedFromExchange as ce, type NewExchangeOrderCreated as cf, type LineItemExchangeData as cg, type DraftOrderChangesApplied as ch, type OrderChange as ci, type OrderChangeValueOneOf as cj, type LineItemChanges as ck, type LineItemQuantityChange as cl, type LineItemPriceChange as cm, type LineItemProductNameChange as cn, type LineItemDescriptionLineChange as co, type LineItemModifiersChange as cp, type ManagedLineItem as cq, type ManagedDiscount as cr, type TranslatedValue as cs, type LineItemAmount as ct, type ManagedAdditionalFee as cu, type TotalPriceChange as cv, type ShippingInformationChange as cw, type ShippingInformation as cx, type SavedPaymentMethod as cy, type AuthorizedPaymentCreated as cz, type PreparePaymentCollectionResponse as d, type SendBuyerPickupConfirmationEmailResponse as d$, type CreatedBy as d0, type CreatedByStringOneOf as d1, type ChannelInfo as d2, type CustomField as d3, type BalanceSummary as d4, type Balance as d5, type AdditionalFee as d6, type FulfillmentStatusesAggregate as d7, type Tags as d8, type TagList as d9, type LineItemDelta as dA, type LineItemDeltaDeltaOneOf as dB, type AppliedDiscountDelta as dC, type AppliedDiscountDeltaDeltaOneOf as dD, type AdditionalFeeDelta as dE, type AdditionalFeeDeltaDeltaOneOf as dF, type DraftOrderCommitSettings as dG, type InventoryUpdateDetails as dH, type ImportOrderRequest as dI, type SetOrderNumberCounterRequest as dJ, type BulkDeleteImportedOrdersRequest as dK, type DomainEvent as dL, type DomainEventBodyOneOf as dM, type EntityCreatedEvent as dN, type RestoreInfo as dO, type EntityUpdatedEvent as dP, type EntityDeletedEvent as dQ, type ActionEvent as dR, type MessageEnvelope as dS, type IdentificationData as dT, type IdentificationDataIdOneOf as dU, type AccountInfo as dV, type SendBuyerConfirmationEmailRequest as dW, type SendBuyerConfirmationEmailResponse as dX, type SendBuyerPaymentsReceivedEmailRequest as dY, type SendBuyerPaymentsReceivedEmailResponse as dZ, type SendBuyerPickupConfirmationEmailRequest as d_, type Location as da, type OrderSettings as db, type OrderSettingsAllowedActionsOneOf as dc, type OrderSettingsEditableByOneOf as dd, type CustomAllowedActions as de, type OwnerApps as df, type FormInfo as dg, type FormIdentifier as dh, type PlatformFeeSummary as di, type PlatformFee as dj, type OrderApproved as dk, type OrdersExperiments as dl, type OrderRejectedEventOrderRejected as dm, type OrderItemsRestocked as dn, type V1RestockItem as dp, type OrderImported as dq, type ImportedOrderDeleted as dr, type PaymentStatusUpdated as ds, type FulfillmentStatusUpdated as dt, type OrderCanceledEventOrderCanceled as du, type OrderDeltasCommitted as dv, type CommittedDiffs as dw, type CommittedDiffsShippingUpdateInfoOneOf as dx, type ItemChangedDetails as dy, type OrderLineItemChangedDetails as dz, type PreparePaymentCollectionApplicationErrors as e, type PicassoAssigned as e$, type BulkSendBuyerPickupConfirmationEmailsRequest as e0, type BulkSendBuyerPickupConfirmationEmailsResponse as e1, type SendBuyerShippingConfirmationEmailRequest as e2, type SendBuyerShippingConfirmationEmailResponse as e3, type BulkSendBuyerShippingConfirmationEmailsRequest as e4, type BulkSendBuyerShippingConfirmationEmailsResponse as e5, type SendMerchantOrderReceivedNotificationRequest as e6, type SendMerchantOrderReceivedNotificationResponse as e7, type SendCancelRefundEmailRequest as e8, type SendCancelRefundEmailResponse as e9, type PreviewShippingConfirmationEmailResponse as eA, type PreviewResendDownloadLinksEmailRequest as eB, type PreviewResendDownloadLinksEmailResponse as eC, type Empty as eD, type MetaSiteSpecialEvent as eE, type MetaSiteSpecialEventPayloadOneOf as eF, type Asset as eG, type SiteCreated as eH, type SiteTransferred as eI, type SiteDeleted as eJ, type DeleteContext as eK, type SiteUndeleted as eL, type SitePublished as eM, type SiteUnpublished as eN, type SiteMarkedAsTemplate as eO, type SiteMarkedAsWixSite as eP, type ServiceProvisioned as eQ, type ServiceRemoved as eR, type SiteRenamed as eS, type SiteHardDeleted as eT, type NamespaceChanged as eU, type StudioAssigned as eV, type StudioUnassigned as eW, type SiteUrlChanged as eX, type SitePurgedExternally as eY, type OdeditorAssigned as eZ, type OdeditorUnassigned as e_, type SendRefundEmailRequest as ea, type SendRefundEmailResponse as eb, type SendFulfillmentEmailRequest as ec, type SendFulfillmentEmailResponse as ed, type SendMerchantOrderReceivedPushRequest as ee, type SendMerchantOrderReceivedPushResponse as ef, type PreviewEmailByTypeRequest as eg, type PreviewEmailByTypeResponse as eh, type PreviewRefundEmailRequest as ei, type RefundDetails as ej, type RefundItem as ek, type LineItemRefund as el, type AdditionalFeeRefund as em, type ShippingRefund as en, type PreviewRefundEmailResponse as eo, type PreviewCancelEmailRequest as ep, type PreviewCancelEmailResponse as eq, type PreviewCancelRefundEmailRequest as er, type PreviewCancelRefundEmailResponse as es, type PreviewBuyerPaymentsReceivedEmailRequest as et, type PreviewBuyerPaymentsReceivedEmailResponse as eu, type PreviewBuyerConfirmationEmailRequest as ev, type PreviewBuyerConfirmationEmailResponse as ew, type PreviewBuyerPickupConfirmationEmailRequest as ex, type PreviewBuyerPickupConfirmationEmailResponse as ey, type PreviewShippingConfirmationEmailRequest as ez, type RecordManuallyCollectedPaymentApplicationErrors as f, type RefundTransaction as f$, type PicassoUnassigned as f0, type WixelAssigned as f1, type WixelUnassigned as f2, type StudioTwoAssigned as f3, type StudioTwoUnassigned as f4, type UserDomainMediaEnabled as f5, type UserDomainMediaDisabled as f6, type EditorlessAssigned as f7, type EditorlessUnassigned as f8, type HasCustomEmailConfigurationsRequest as f9, type MembershipChargeItem as fA, type MembershipName as fB, type ServiceProperties as fC, type ChargeMembershipsResponse as fD, type TriggerRefundRequest as fE, type RefundSideEffects as fF, type RestockInfo as fG, type RestockItem as fH, type OrderTransactions as fI, type Payment as fJ, type PaymentPaymentDetailsOneOf as fK, type PaymentReceiptInfoOneOf as fL, type RegularPaymentDetails as fM, type RegularPaymentDetailsPaymentMethodDetailsOneOf as fN, type CreditCardPaymentMethodDetails as fO, type AuthorizationDetails as fP, type AuthorizationCapture as fQ, type AuthorizationActionFailureDetails as fR, type AuthorizationVoid as fS, type V1ScheduledAction as fT, type Chargeback as fU, type PaymentMethodName as fV, type GiftCardPaymentDetails as fW, type MembershipPaymentDetails as fX, type WixReceiptInfo as fY, type ExternalReceiptInfo as fZ, type Refund as f_, type HasCustomEmailConfigurationsResponse as fa, type AddToAutomationMigrationPopulationRequest as fb, type AddToAutomationMigrationPopulationResponse as fc, type IsInAutomationMigrationPopulationRequest as fd, type IsInAutomationMigrationPopulationResponse as fe, type PreparePaymentCollectionRequest as ff, type RedirectUrls as fg, type DelayedCaptureSettings as fh, type Duration as fi, type GetPaymentCollectabilityStatusRequest as fj, type RecordManuallyCollectedPaymentRequest as fk, type UserDefinedPaymentMethodName as fl, type UserDefinedPaymentMethodNameKindOneOf as fm, type RecordManuallyCollectedPaymentResponse as fn, type MarkOrderAsPaidRequest as fo, type BulkMarkOrdersAsPaidRequest as fp, type BulkOrderResult as fq, type ItemMetadata as fr, type ApplicationError as fs, type BulkActionMetadata as ft, type GetRefundabilityStatusRequest as fu, type Refundability as fv, type RefundabilityAdditionalRefundabilityInfoOneOf as fw, type CreatePaymentGatewayOrderRequest as fx, type ChargedBy as fy, type ChargeMembershipsRequest as fz, type PaymentCollectionMarkOrderAsPaidOptions as g, type ArchiveOrderResponse as g$, type RefundStatusInfo as g0, type AggregatedRefundSummary as g1, type RefundItemsBreakdown as g2, type LineItemRefundSummary as g3, type CalculateRefundRequest as g4, type CalculateRefundItemRequest as g5, type CalculateRefundResponse as g6, type CalculateRefundItemResponse as g7, type VoidAuthorizedPaymentsRequest as g8, type CaptureAuthorizedPaymentsRequest as g9, type InternalQueryOrdersResponse as gA, type PlatformPagingMetadata as gB, type Cursors as gC, type QueryOrderRequest as gD, type QueryOrderResponse as gE, type SearchOrdersRequest as gF, type CursorSearch as gG, type CursorSearchPagingMethodOneOf as gH, type CursorPagingMetadata as gI, type CreateOrderRequest as gJ, type OrderCreationSettings as gK, type OrderCreationSettingsEditableByOneOf as gL, type OrderCreateNotifications as gM, type CreateOrderResponse as gN, type UpdateOrderRequest as gO, type UpdateOrderResponse as gP, type BulkUpdateOrdersRequest as gQ, type CommitDeltasRequest as gR, type DraftOrderDiffs as gS, type DraftOrderDiffsShippingUpdateInfoOneOf as gT, type DraftOrderDiffsBuyerUpdateInfoOneOf as gU, type DraftOrderDiffsBillingUpdateInfoOneOf as gV, type DraftOrderDiffsRecipientUpdateInfoOneOf as gW, type V1LineItemDelta as gX, type V1LineItemDeltaDeltaOneOf as gY, type CommitDeltasResponse as gZ, type ArchiveOrderRequest as g_, type ChargeSavedPaymentMethodRequest as ga, type ChargeSavedPaymentMethodResponse as gb, type UpdateInternalDocumentsEvent as gc, type UpdateInternalDocumentsEventOperationOneOf as gd, type InternalDocument as ge, type InternalDocumentUpdateOperation as gf, type DeleteByIdsOperation as gg, type DeleteByFilterOperation as gh, type InternalDocumentUpdateByFilterOperation as gi, type InternalUpdateExistingOperation as gj, type VersionedDocumentUpdateOperation as gk, type VersionedDeleteByIdsOperation as gl, type VersionedDocumentId as gm, type TriggerReindexRequest as gn, type TriggerReindexResponse as go, type TriggerReindexOrderRequest as gp, type DiffmatokyPayload as gq, type ErrorInformation as gr, type GetOrderRequest as gs, type GetOrderResponse as gt, type InternalQueryOrdersRequest as gu, type PlatformQuery as gv, type PlatformQueryPagingMethodOneOf as gw, type Sorting as gx, type PlatformPaging as gy, type CursorPaging as gz, type PaymentCollectionMarkOrderAsPaidApplicationErrors as h, type BulkMarkAsFulfilledByFilterResponse as h$, type BulkArchiveOrdersRequest as h0, type BulkArchiveOrdersResponse as h1, type BulkArchiveOrdersByFilterRequest as h2, type BulkArchiveOrdersByFilterResponse as h3, type UnArchiveOrderRequest as h4, type UnArchiveOrderResponse as h5, type BulkUnArchiveOrdersRequest as h6, type BulkUnArchiveOrdersResponse as h7, type BulkUnArchiveOrdersByFilterRequest as h8, type BulkUnArchiveOrdersByFilterResponse as h9, type InvoiceAdded as hA, type InvoiceSent as hB, type FulfillerEmailSent as hC, type ShippingAddressEdited as hD, type EmailEdited as hE, type PickupReadyEmailSent as hF, type OrderPartiallyPaid as hG, type OrderPending as hH, type OrderRejected as hI, type AddInternalActivityResponse as hJ, type AddActivityRequest as hK, type PublicActivityContentOneOf as hL, type AddActivitiesRequest as hM, type UpdateActivityRequest as hN, type DeleteActivityRequest as hO, type UpdateLineItemsDescriptionLinesRequest as hP, type LineItemUpdate as hQ, type UpdateLineItemsDescriptionLinesResponse as hR, type MarkOrderAsSeenByHumanRequest as hS, type MarkOrderAsSeenByHumanResponse as hT, type CancelOrderRequest as hU, type UpdateOrderStatusRequest as hV, type MarkAsFulfilledRequest as hW, type MarkAsFulfilledResponse as hX, type BulkMarkAsFulfilledRequest as hY, type BulkMarkAsFulfilledResponse as hZ, type BulkMarkAsFulfilledByFilterRequest as h_, type UpdateBuyerInfoRequest as ha, type BuyerInfoUpdate as hb, type UpdateBuyerInfoResponse as hc, type UpdateBuyerEmailRequest as hd, type UpdateBuyerEmailResponse as he, type UpdateOrderShippingAddressRequest as hf, type UpdateOrderShippingAddressResponse as hg, type UpdateBillingContactDetailsRequest as hh, type UpdateBillingContactDetailsResponse as hi, type UpdateOrderLineItemRequest as hj, type UpdateOrderLineItemsRequest as hk, type MaskedOrderLineItem as hl, type UpdateOrderLineItemsResponse as hm, type AddInternalActivityRequest as hn, type InternalActivity as ho, type InternalActivityContentOneOf as hp, type OrderPlaced as hq, type OrderPaid as hr, type OrderFulfilled as hs, type OrderNotFulfilled as ht, type OrderCanceled as hu, type DownloadLinkSent as hv, type TrackingNumberAdded as hw, type TrackingNumberEdited as hx, type TrackingLinkAdded as hy, type ShippingConfirmationEmailSent as hz, type BulkMarkOrdersAsPaidResponse as i, type Payments as i$, type MarkAsUnfulfilledRequest as i0, type MarkAsUnfulfilledResponse as i1, type BulkMarkAsUnfulfilledRequest as i2, type BulkMarkAsUnfulfilledResponse as i3, type BulkMarkAsUnfulfilledByFilterRequest as i4, type BulkMarkAsUnfulfilledByFilterResponse as i5, type BulkSetBusinessLocationRequest as i6, type BulkSetBusinessLocationResponse as i7, type BulkSetBusinessLocationResult as i8, type V1MarkOrderAsPaidRequest as i9, type InvoiceSentEvent as iA, type IdAndVersion as iB, type InvoiceFields as iC, type Customer as iD, type Email as iE, type QuotesAddress as iF, type AddressDescription as iG, type Phone as iH, type Company as iI, type CommonAddress as iJ, type CommonAddressStreetOneOf as iK, type Subdivision as iL, type StandardDetails as iM, type InvoiceDates as iN, type LineItems as iO, type LineItem as iP, type BigDecimalWrapper as iQ, type LineItemTax as iR, type Source as iS, type LineItemMetaData as iT, type Locale as iU, type TotalPrice as iV, type ItemizedFee as iW, type Discount as iX, type DiscountOneDiscountTypeOneOf as iY, type CalculatedTaxes as iZ, type CalculatedTax as i_, type V1MarkOrderAsPaidResponse as ia, type V1BulkMarkOrdersAsPaidRequest as ib, type V1BulkMarkOrdersAsPaidResponse as ic, type V1CreatePaymentGatewayOrderRequest as id, type V1CreatePaymentGatewayOrderResponse as ie, type GetShipmentsRequest as ig, type GetShipmentsResponse as ih, type AggregateOrdersRequest as ii, type DecrementItemsQuantityRequest as ij, type DecrementData as ik, type DecrementItemsQuantityResponse as il, type BulkUpdateOrderTagsRequest as im, type TagsTags as io, type TagsTagList as ip, type BulkUpdateOrderTagsResult as iq, type SendOrderUpdatedDomainEventRequest as ir, type SendOrderUpdatedDomainEventResponse as is, type Task as it, type TaskKey as iu, type TaskAction as iv, type TaskActionActionOneOf as iw, type Complete as ix, type Cancel as iy, type Reschedule as iz, type GetRefundabilityStatusResponse as j, type CustomFieldGroupWithLiterals as j$, type InvoicesPayment as j0, type MetaData as j1, type InvoiceDynamicPriceTotals as j2, type CustomFieldValue as j3, type Value as j4, type Deposit as j5, type BaseEventMetadata as j6, type EventMetadata as j7, type AccountInfoMetadata as j8, type OrderSearchSpec as j9, type PreviewEmailTypeWithLiterals as jA, type StateWithLiterals as jB, type SiteCreatedContextWithLiterals as jC, type NamespaceWithLiterals as jD, type DeleteStatusWithLiterals as jE, type ScheduledActionWithLiterals as jF, type DurationUnitWithLiterals as jG, type PaymentCollectabilityStatusWithLiterals as jH, type PredefinedPaymentMethodWithLiterals as jI, type RefundableStatusWithLiterals as jJ, type NonRefundableReasonWithLiterals as jK, type ManuallyRefundableReasonWithLiterals as jL, type RestockTypeWithLiterals as jM, type TransactionStatusWithLiterals as jN, type AuthorizationCaptureStatusWithLiterals as jO, type AuthorizationVoidStatusWithLiterals as jP, type ReasonWithLiterals as jQ, type ActionTypeWithLiterals as jR, type ChargebackStatusWithLiterals as jS, type MembershipPaymentStatusWithLiterals as jT, type RefundStatusWithLiterals as jU, type VersioningModeWithLiterals as jV, type SortOrderWithLiterals as jW, type OrderApprovalStrategyWithLiterals as jX, type PlacementWithLiterals as jY, type SubdivisionTypeWithLiterals as jZ, type SourceTypeWithLiterals as j_, type DescriptionLineTypeWithLiterals as ja, type DimensionsUnitWithLiterals as jb, type ItemTypePresetWithLiterals as jc, type PaymentOptionTypeWithLiterals as jd, type JurisdictionTypeWithLiterals as je, type SubscriptionFrequencyWithLiterals as jf, type AdjustmentTypeWithLiterals as jg, type TaxableAddressTypeWithLiterals as jh, type PaymentStatusWithLiterals as ji, type FulfillmentStatusWithLiterals as jj, type WeightUnitWithLiterals as jk, type VatTypeWithLiterals as jl, type PickupMethodWithLiterals as jm, type DiscountTypeWithLiterals as jn, type DiscountReasonWithLiterals as jo, type LineItemQuantityChangeTypeWithLiterals as jp, type ActivityTypeWithLiterals as jq, type OrderActivityTypeEnumActivityTypeWithLiterals as jr, type AttributionSourceWithLiterals as js, type ChannelTypeWithLiterals as jt, type AdditionalFeeSourceWithLiterals as ju, type OrderActionTypeWithLiterals as jv, type ChargeTypeWithLiterals as jw, type DeltaPaymentOptionTypeWithLiterals as jx, type InventoryActionWithLiterals as jy, type WebhookIdentityTypeWithLiterals as jz, type PaymentCollectionCreatePaymentGatewayOrderOptions as k, type ValueTypeWithLiterals as k0, type DepositTypeWithLiterals as k1, type InvoiceStatusWithLiterals as k2, type CommonSearchWithEntityContext as k3, onOrderApproved as k4, onOrderCanceled as k5, onOrderCommitted as k6, onOrderCreated as k7, onOrderFulfilled as k8, onOrderPaymentStatusUpdated as k9, aggregateOrders as kA, bulkUpdateOrderTags as kB, onOrderUpdated as ka, importOrder as kb, setOrderNumberCounter as kc, bulkDeleteImportedOrders as kd, preparePaymentCollection as ke, getPaymentCollectabilityStatus as kf, recordManuallyCollectedPayment as kg, paymentCollectionMarkOrderAsPaid as kh, paymentCollectionBulkMarkOrdersAsPaid as ki, getRefundabilityStatus as kj, paymentCollectionCreatePaymentGatewayOrder as kk, chargeMemberships as kl, triggerRefund as km, voidAuthorizedPayments as kn, captureAuthorizedPayments as ko, getOrder as kp, createOrder as kq, updateOrder as kr, bulkUpdateOrders as ks, updateOrderLineItem as kt, addActivity as ku, addActivities as kv, updateActivity as kw, deleteActivity as kx, cancelOrder as ky, updateOrderStatus as kz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as l, type ChargeMembershipsOptions as m, type PaymentRefund as n, type TriggerRefundResponse as o, type TriggerRefundApplicationErrors as p, type VoidAuthorizedPaymentsApplicationErrors as q, type PaymentCapture as r, type CaptureAuthorizedPaymentsResponse as s, type CaptureAuthorizedPaymentsApplicationErrors as t, type GetOrderApplicationErrors as u, type OrderSearch as v, type SearchOrdersResponse as w, type CreateOrderOptions as x, type CreateOrderApplicationErrors as y, type UpdateOrderApplicationErrors as z };
9366
+ export { type CancelOrderResponse as $, type MaskedOrder as A, type BulkDeleteImportedOrdersOptions as B, type CreatePaymentGatewayOrderResponse as C, type BulkUpdateOrdersOptions as D, type BulkUpdateOrdersResponse as E, type UpdateOrderLineItemIdentifiers as F, type GetPaymentCollectabilityStatusResponse as G, type UpdateOrderLineItem as H, type ImportOrderResponse as I, type UpdateOrderLineItemResponse as J, type PublicActivity as K, type AddActivityResponse as L, type MarkOrderAsPaidResponse as M, type AddActivitiesOptions as N, type Order as O, type Price as P, type AddActivitiesResponse as Q, type RecordManuallyCollectedPaymentOptions as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type UpdateActivityIdentifiers as W, type UpdateActivityResponse as X, type DeleteActivityIdentifiers as Y, type DeleteActivityResponse as Z, type CancelOrderOptions as _, type SetOrderNumberCounterResponse as a, RefundStatus as a$, type CancelOrderApplicationErrors as a0, type OrderStatusWithLiterals as a1, type UpdateOrderStatusResponse as a2, type UpdateOrderStatusApplicationErrors as a3, type AggregateOrdersOptions as a4, type AggregateOrdersResponse as a5, type BulkUpdateOrderTagsOptions as a6, type BulkUpdateOrderTagsResponse as a7, type OrderApprovedEnvelope as a8, type OrderCanceledEnvelope as a9, AdditionalFeeSource as aA, OrderActionType as aB, ChargeType as aC, DeltaPaymentOptionType as aD, InventoryAction as aE, WebhookIdentityType as aF, VersioningMode as aG, PreviewEmailType as aH, State as aI, SiteCreatedContext as aJ, Namespace as aK, DeleteStatus as aL, ScheduledAction as aM, DurationUnit as aN, PaymentCollectabilityStatus as aO, PredefinedPaymentMethod as aP, RefundableStatus as aQ, NonRefundableReason as aR, ManuallyRefundableReason as aS, RestockType as aT, TransactionStatus as aU, AuthorizationCaptureStatus as aV, AuthorizationVoidStatus as aW, Reason as aX, ActionType as aY, ChargebackStatus as aZ, MembershipPaymentStatus as a_, type OrderCommittedEnvelope as aa, type OrderCreatedEnvelope as ab, type OrderFulfilledEnvelope as ac, type OrderPaymentStatusUpdatedEnvelope as ad, type OrderUpdatedEnvelope as ae, DescriptionLineType as af, DimensionsUnit as ag, ItemTypePreset as ah, PaymentOptionType as ai, JurisdictionType as aj, SubscriptionFrequency as ak, AdjustmentType as al, TaxableAddressType as am, PaymentStatus as an, FulfillmentStatus as ao, WeightUnit as ap, VatType as aq, PickupMethod as ar, OrderStatus as as, DiscountType as at, DiscountReason as au, LineItemQuantityChangeType as av, ActivityType as aw, OrderActivityTypeEnumActivityType as ax, AttributionSource as ay, ChannelType as az, type BulkDeleteImportedOrdersResponse as b, type AppliedDiscount as b$, SortOrder as b0, OrderApprovalStrategy as b1, Placement as b2, SubdivisionType as b3, SourceType as b4, CustomFieldGroup as b5, ValueType as b6, DepositType as b7, InvoiceStatus as b8, type OrderLineItem as b9, type TaxableAddress as bA, type TaxableAddressTaxableAddressDataOneOf as bB, type ExtendedFields as bC, type ModifierGroup as bD, type TranslatableString as bE, type ItemModifier as bF, type BuyerInfo as bG, type BuyerInfoIdOneOf as bH, type CurrencyConversionDetails as bI, type PriceSummary as bJ, type AddressWithContact as bK, type Address as bL, type StreetAddress as bM, type AddressLocation as bN, type FullAddressContactDetails as bO, type VatId as bP, type V1ShippingInformation as bQ, type DeliveryLogistics as bR, type DeliveryLogisticsAddressOneOf as bS, type PickupDetails as bT, type PickupAddress as bU, type DeliveryTimeSlot as bV, type ShippingPrice as bW, type ShippingRegion as bX, type TaxSummary as bY, type OrderTaxInfo as bZ, type OrderTaxBreakdown as b_, type ProductName as ba, type CatalogReference as bb, type DescriptionLine as bc, type DescriptionLineValueOneOf as bd, type DescriptionLineDescriptionLineValueOneOf as be, type DescriptionLineName as bf, type PlainTextValue as bg, type Color as bh, type FocalPoint as bi, type PhysicalProperties as bj, type Dimensions as bk, type ItemType as bl, type ItemTypeItemTypeDataOneOf as bm, type ItemTaxFullDetails as bn, type LineItemTaxInfo as bo, type LineItemTaxBreakdown as bp, type DigitalFile as bq, type SubscriptionInfo as br, type SubscriptionTitle as bs, type SubscriptionDescription as bt, type SubscriptionSettings as bu, type FreeTrialPeriod as bv, type BillingAdjustment as bw, type BillingAdjustmentPriceSummary as bx, type PriceDescription as by, type LocationAndQuantity as bz, type PreparePaymentCollectionOptions as c, type ChargebackReversed as c$, type AppliedDiscountDiscountSourceOneOf as c0, type Coupon as c1, type MerchantDiscount as c2, type MerchantDiscountMerchantDiscountReasonOneOf as c3, type DiscountRule as c4, type DiscountRuleName as c5, type LineItemDiscount as c6, type ItemCombination as c7, type ItemCombinationLineItem as c8, type Activity as c9, type AuthorizedPaymentCaptured as cA, type AuthorizedPaymentVoided as cB, type RefundInitiated as cC, type RefundedPayment as cD, type RefundedPaymentKindOneOf as cE, type RegularPaymentRefund as cF, type GiftCardPaymentRefund as cG, type MembershipPaymentRefund as cH, type PaymentRefunded as cI, type PaymentRefundFailed as cJ, type RefundedAsStoreCredit as cK, type PaymentPending as cL, type PaymentPendingPaymentDetailsOneOf as cM, type RegularPayment as cN, type RegularPaymentPaymentMethodDetailsOneOf as cO, type CreditCardDetails as cP, type PaymentCanceled as cQ, type PaymentCanceledPaymentDetailsOneOf as cR, type PaymentDeclined as cS, type PaymentDeclinedPaymentDetailsOneOf as cT, type ReceiptCreated as cU, type ReceiptCreatedReceiptInfoOneOf as cV, type WixReceipt as cW, type ExternalReceipt as cX, type ReceiptSent as cY, type ReceiptSentReceiptInfoOneOf as cZ, type ChargebackCreated as c_, type ActivityContentOneOf as ca, type CustomActivity as cb, type MerchantComment as cc, type OrderRefunded as cd, type OrderCreatedFromExchange as ce, type NewExchangeOrderCreated as cf, type LineItemExchangeData as cg, type DraftOrderChangesApplied as ch, type OrderChange as ci, type OrderChangeValueOneOf as cj, type LineItemChanges as ck, type LineItemQuantityChange as cl, type LineItemPriceChange as cm, type LineItemProductNameChange as cn, type LineItemDescriptionLineChange as co, type LineItemModifiersChange as cp, type ManagedLineItem as cq, type ManagedDiscount as cr, type TranslatedValue as cs, type LineItemAmount as ct, type ManagedAdditionalFee as cu, type TotalPriceChange as cv, type ShippingInformationChange as cw, type ShippingInformation as cx, type SavedPaymentMethod as cy, type AuthorizedPaymentCreated as cz, type PreparePaymentCollectionResponse as d, type DeleteByFilterOperation as d$, type CreatedBy as d0, type CreatedByStringOneOf as d1, type ChannelInfo as d2, type CustomField as d3, type BalanceSummary as d4, type Balance as d5, type AdditionalFee as d6, type FulfillmentStatusesAggregate as d7, type Tags as d8, type TagList as d9, type LineItemDelta as dA, type LineItemDeltaDeltaOneOf as dB, type AppliedDiscountDelta as dC, type AppliedDiscountDeltaDeltaOneOf as dD, type AdditionalFeeDelta as dE, type AdditionalFeeDeltaDeltaOneOf as dF, type DraftOrderCommitSettings as dG, type InventoryUpdateDetails as dH, type ImportOrderRequest as dI, type SetOrderNumberCounterRequest as dJ, type BulkDeleteImportedOrdersRequest as dK, type DomainEvent as dL, type DomainEventBodyOneOf as dM, type EntityCreatedEvent as dN, type RestoreInfo as dO, type EntityUpdatedEvent as dP, type EntityDeletedEvent as dQ, type ActionEvent as dR, type MessageEnvelope as dS, type IdentificationData as dT, type IdentificationDataIdOneOf as dU, type AccountInfo as dV, type UpdateInternalDocumentsEvent as dW, type UpdateInternalDocumentsEventOperationOneOf as dX, type InternalDocument as dY, type InternalDocumentUpdateOperation as dZ, type DeleteByIdsOperation as d_, type Location as da, type OrderSettings as db, type OrderSettingsAllowedActionsOneOf as dc, type OrderSettingsEditableByOneOf as dd, type CustomAllowedActions as de, type OwnerApps as df, type FormInfo as dg, type FormIdentifier as dh, type PlatformFeeSummary as di, type PlatformFee as dj, type OrderApproved as dk, type OrdersExperiments as dl, type OrderRejectedEventOrderRejected as dm, type OrderItemsRestocked as dn, type V1RestockItem as dp, type OrderImported as dq, type ImportedOrderDeleted as dr, type PaymentStatusUpdated as ds, type FulfillmentStatusUpdated as dt, type OrderCanceledEventOrderCanceled as du, type OrderDeltasCommitted as dv, type CommittedDiffs as dw, type CommittedDiffsShippingUpdateInfoOneOf as dx, type ItemChangedDetails as dy, type OrderLineItemChangedDetails as dz, type PreparePaymentCollectionApplicationErrors as e, type SiteUnpublished as e$, type InternalDocumentUpdateByFilterOperation as e0, type InternalUpdateExistingOperation as e1, type VersionedDocumentUpdateOperation as e2, type VersionedDeleteByIdsOperation as e3, type VersionedDocumentId as e4, type TriggerReindexRequest as e5, type TriggerReindexResponse as e6, type Empty as e7, type TriggerReindexOrderRequest as e8, type SendBuyerConfirmationEmailRequest as e9, type LineItemRefund as eA, type AdditionalFeeRefund as eB, type ShippingRefund as eC, type PreviewRefundEmailResponse as eD, type PreviewCancelEmailRequest as eE, type PreviewCancelEmailResponse as eF, type PreviewCancelRefundEmailRequest as eG, type PreviewCancelRefundEmailResponse as eH, type PreviewBuyerPaymentsReceivedEmailRequest as eI, type PreviewBuyerPaymentsReceivedEmailResponse as eJ, type PreviewBuyerConfirmationEmailRequest as eK, type PreviewBuyerConfirmationEmailResponse as eL, type PreviewBuyerPickupConfirmationEmailRequest as eM, type PreviewBuyerPickupConfirmationEmailResponse as eN, type PreviewShippingConfirmationEmailRequest as eO, type PreviewShippingConfirmationEmailResponse as eP, type PreviewResendDownloadLinksEmailRequest as eQ, type PreviewResendDownloadLinksEmailResponse as eR, type MetaSiteSpecialEvent as eS, type MetaSiteSpecialEventPayloadOneOf as eT, type Asset as eU, type SiteCreated as eV, type SiteTransferred as eW, type SiteDeleted as eX, type DeleteContext as eY, type SiteUndeleted as eZ, type SitePublished as e_, type SendBuyerConfirmationEmailResponse as ea, type SendBuyerPaymentsReceivedEmailRequest as eb, type SendBuyerPaymentsReceivedEmailResponse as ec, type SendBuyerPickupConfirmationEmailRequest as ed, type SendBuyerPickupConfirmationEmailResponse as ee, type BulkSendBuyerPickupConfirmationEmailsRequest as ef, type BulkSendBuyerPickupConfirmationEmailsResponse as eg, type SendBuyerShippingConfirmationEmailRequest as eh, type SendBuyerShippingConfirmationEmailResponse as ei, type BulkSendBuyerShippingConfirmationEmailsRequest as ej, type BulkSendBuyerShippingConfirmationEmailsResponse as ek, type SendMerchantOrderReceivedNotificationRequest as el, type SendMerchantOrderReceivedNotificationResponse as em, type SendCancelRefundEmailRequest as en, type SendCancelRefundEmailResponse as eo, type SendRefundEmailRequest as ep, type SendRefundEmailResponse as eq, type SendFulfillmentEmailRequest as er, type SendFulfillmentEmailResponse as es, type SendMerchantOrderReceivedPushRequest as et, type SendMerchantOrderReceivedPushResponse as eu, type PreviewEmailByTypeRequest as ev, type PreviewEmailByTypeResponse as ew, type PreviewRefundEmailRequest as ex, type RefundDetails as ey, type RefundItem as ez, type RecordManuallyCollectedPaymentApplicationErrors as f, type RegularPaymentDetailsPaymentMethodDetailsOneOf as f$, type SiteMarkedAsTemplate as f0, type SiteMarkedAsWixSite as f1, type ServiceProvisioned as f2, type ServiceRemoved as f3, type SiteRenamed as f4, type SiteHardDeleted as f5, type NamespaceChanged as f6, type StudioAssigned as f7, type StudioUnassigned as f8, type SiteUrlChanged as f9, type UserDefinedPaymentMethodNameKindOneOf as fA, type RecordManuallyCollectedPaymentResponse as fB, type MarkOrderAsPaidRequest as fC, type BulkMarkOrdersAsPaidRequest as fD, type BulkOrderResult as fE, type ItemMetadata as fF, type ApplicationError as fG, type BulkActionMetadata as fH, type GetRefundabilityStatusRequest as fI, type Refundability as fJ, type RefundabilityAdditionalRefundabilityInfoOneOf as fK, type CreatePaymentGatewayOrderRequest as fL, type ChargedBy as fM, type ChargeMembershipsRequest as fN, type MembershipChargeItem as fO, type MembershipName as fP, type ServiceProperties as fQ, type ChargeMembershipsResponse as fR, type TriggerRefundRequest as fS, type RefundSideEffects as fT, type RestockInfo as fU, type RestockItem as fV, type OrderTransactions as fW, type Payment as fX, type PaymentPaymentDetailsOneOf as fY, type PaymentReceiptInfoOneOf as fZ, type RegularPaymentDetails as f_, type SitePurgedExternally as fa, type OdeditorAssigned as fb, type OdeditorUnassigned as fc, type PicassoAssigned as fd, type PicassoUnassigned as fe, type WixelAssigned as ff, type WixelUnassigned as fg, type StudioTwoAssigned as fh, type StudioTwoUnassigned as fi, type UserDomainMediaEnabled as fj, type UserDomainMediaDisabled as fk, type EditorlessAssigned as fl, type EditorlessUnassigned as fm, type HasCustomEmailConfigurationsRequest as fn, type HasCustomEmailConfigurationsResponse as fo, type AddToAutomationMigrationPopulationRequest as fp, type AddToAutomationMigrationPopulationResponse as fq, type IsInAutomationMigrationPopulationRequest as fr, type IsInAutomationMigrationPopulationResponse as fs, type PreparePaymentCollectionRequest as ft, type RedirectUrls as fu, type DelayedCaptureSettings as fv, type Duration as fw, type GetPaymentCollectabilityStatusRequest as fx, type RecordManuallyCollectedPaymentRequest as fy, type UserDefinedPaymentMethodName as fz, type PaymentCollectionMarkOrderAsPaidOptions as g, type ArchiveOrderResponse as g$, type CreditCardPaymentMethodDetails as g0, type AuthorizationDetails as g1, type AuthorizationCapture as g2, type AuthorizationActionFailureDetails as g3, type AuthorizationVoid as g4, type V1ScheduledAction as g5, type Chargeback as g6, type PaymentMethodName as g7, type GiftCardPaymentDetails as g8, type MembershipPaymentDetails as g9, type InternalQueryOrdersResponse as gA, type PlatformPagingMetadata as gB, type Cursors as gC, type QueryOrderRequest as gD, type QueryOrderResponse as gE, type SearchOrdersRequest as gF, type CursorSearch as gG, type CursorSearchPagingMethodOneOf as gH, type CursorPagingMetadata as gI, type CreateOrderRequest as gJ, type OrderCreationSettings as gK, type OrderCreationSettingsEditableByOneOf as gL, type OrderCreateNotifications as gM, type CreateOrderResponse as gN, type UpdateOrderRequest as gO, type UpdateOrderResponse as gP, type BulkUpdateOrdersRequest as gQ, type CommitDeltasRequest as gR, type DraftOrderDiffs as gS, type DraftOrderDiffsShippingUpdateInfoOneOf as gT, type DraftOrderDiffsBuyerUpdateInfoOneOf as gU, type DraftOrderDiffsBillingUpdateInfoOneOf as gV, type DraftOrderDiffsRecipientUpdateInfoOneOf as gW, type V1LineItemDelta as gX, type V1LineItemDeltaDeltaOneOf as gY, type CommitDeltasResponse as gZ, type ArchiveOrderRequest as g_, type WixReceiptInfo as ga, type ExternalReceiptInfo as gb, type Refund as gc, type RefundTransaction as gd, type RefundStatusInfo as ge, type AggregatedRefundSummary as gf, type RefundItemsBreakdown as gg, type LineItemRefundSummary as gh, type CalculateRefundRequest as gi, type CalculateRefundItemRequest as gj, type CalculateRefundResponse as gk, type CalculateRefundItemResponse as gl, type VoidAuthorizedPaymentsRequest as gm, type CaptureAuthorizedPaymentsRequest as gn, type ChargeSavedPaymentMethodRequest as go, type ChargeSavedPaymentMethodResponse as gp, type DiffmatokyPayload as gq, type ErrorInformation as gr, type GetOrderRequest as gs, type GetOrderResponse as gt, type InternalQueryOrdersRequest as gu, type PlatformQuery as gv, type PlatformQueryPagingMethodOneOf as gw, type Sorting as gx, type PlatformPaging as gy, type CursorPaging as gz, type PaymentCollectionMarkOrderAsPaidApplicationErrors as h, type BulkMarkAsFulfilledByFilterResponse as h$, type BulkArchiveOrdersRequest as h0, type BulkArchiveOrdersResponse as h1, type BulkArchiveOrdersByFilterRequest as h2, type BulkArchiveOrdersByFilterResponse as h3, type UnArchiveOrderRequest as h4, type UnArchiveOrderResponse as h5, type BulkUnArchiveOrdersRequest as h6, type BulkUnArchiveOrdersResponse as h7, type BulkUnArchiveOrdersByFilterRequest as h8, type BulkUnArchiveOrdersByFilterResponse as h9, type InvoiceAdded as hA, type InvoiceSent as hB, type FulfillerEmailSent as hC, type ShippingAddressEdited as hD, type EmailEdited as hE, type PickupReadyEmailSent as hF, type OrderPartiallyPaid as hG, type OrderPending as hH, type OrderRejected as hI, type AddInternalActivityResponse as hJ, type AddActivityRequest as hK, type PublicActivityContentOneOf as hL, type AddActivitiesRequest as hM, type UpdateActivityRequest as hN, type DeleteActivityRequest as hO, type UpdateLineItemsDescriptionLinesRequest as hP, type LineItemUpdate as hQ, type UpdateLineItemsDescriptionLinesResponse as hR, type MarkOrderAsSeenByHumanRequest as hS, type MarkOrderAsSeenByHumanResponse as hT, type CancelOrderRequest as hU, type UpdateOrderStatusRequest as hV, type MarkAsFulfilledRequest as hW, type MarkAsFulfilledResponse as hX, type BulkMarkAsFulfilledRequest as hY, type BulkMarkAsFulfilledResponse as hZ, type BulkMarkAsFulfilledByFilterRequest as h_, type UpdateBuyerInfoRequest as ha, type BuyerInfoUpdate as hb, type UpdateBuyerInfoResponse as hc, type UpdateBuyerEmailRequest as hd, type UpdateBuyerEmailResponse as he, type UpdateOrderShippingAddressRequest as hf, type UpdateOrderShippingAddressResponse as hg, type UpdateBillingContactDetailsRequest as hh, type UpdateBillingContactDetailsResponse as hi, type UpdateOrderLineItemRequest as hj, type UpdateOrderLineItemsRequest as hk, type MaskedOrderLineItem as hl, type UpdateOrderLineItemsResponse as hm, type AddInternalActivityRequest as hn, type InternalActivity as ho, type InternalActivityContentOneOf as hp, type OrderPlaced as hq, type OrderPaid as hr, type OrderFulfilled as hs, type OrderNotFulfilled as ht, type OrderCanceled as hu, type DownloadLinkSent as hv, type TrackingNumberAdded as hw, type TrackingNumberEdited as hx, type TrackingLinkAdded as hy, type ShippingConfirmationEmailSent as hz, type BulkMarkOrdersAsPaidResponse as i, type Payments as i$, type MarkAsUnfulfilledRequest as i0, type MarkAsUnfulfilledResponse as i1, type BulkMarkAsUnfulfilledRequest as i2, type BulkMarkAsUnfulfilledResponse as i3, type BulkMarkAsUnfulfilledByFilterRequest as i4, type BulkMarkAsUnfulfilledByFilterResponse as i5, type BulkSetBusinessLocationRequest as i6, type BulkSetBusinessLocationResponse as i7, type BulkSetBusinessLocationResult as i8, type V1MarkOrderAsPaidRequest as i9, type InvoiceSentEvent as iA, type IdAndVersion as iB, type InvoiceFields as iC, type Customer as iD, type Email as iE, type QuotesAddress as iF, type AddressDescription as iG, type Phone as iH, type Company as iI, type CommonAddress as iJ, type CommonAddressStreetOneOf as iK, type Subdivision as iL, type StandardDetails as iM, type InvoiceDates as iN, type LineItems as iO, type LineItem as iP, type BigDecimalWrapper as iQ, type LineItemTax as iR, type Source as iS, type LineItemMetaData as iT, type Locale as iU, type TotalPrice as iV, type ItemizedFee as iW, type Discount as iX, type DiscountOneDiscountTypeOneOf as iY, type CalculatedTaxes as iZ, type CalculatedTax as i_, type V1MarkOrderAsPaidResponse as ia, type V1BulkMarkOrdersAsPaidRequest as ib, type V1BulkMarkOrdersAsPaidResponse as ic, type V1CreatePaymentGatewayOrderRequest as id, type V1CreatePaymentGatewayOrderResponse as ie, type GetShipmentsRequest as ig, type GetShipmentsResponse as ih, type AggregateOrdersRequest as ii, type DecrementItemsQuantityRequest as ij, type DecrementData as ik, type DecrementItemsQuantityResponse as il, type BulkUpdateOrderTagsRequest as im, type TagsTags as io, type TagsTagList as ip, type BulkUpdateOrderTagsResult as iq, type SendOrderUpdatedDomainEventRequest as ir, type SendOrderUpdatedDomainEventResponse as is, type Task as it, type TaskKey as iu, type TaskAction as iv, type TaskActionActionOneOf as iw, type Complete as ix, type Cancel as iy, type Reschedule as iz, type GetRefundabilityStatusResponse as j, type CustomFieldGroupWithLiterals as j$, type InvoicesPayment as j0, type MetaData as j1, type InvoiceDynamicPriceTotals as j2, type CustomFieldValue as j3, type Value as j4, type Deposit as j5, type BaseEventMetadata as j6, type EventMetadata as j7, type AccountInfoMetadata as j8, type OrderSearchSpec as j9, type VersioningModeWithLiterals as jA, type PreviewEmailTypeWithLiterals as jB, type StateWithLiterals as jC, type SiteCreatedContextWithLiterals as jD, type NamespaceWithLiterals as jE, type DeleteStatusWithLiterals as jF, type ScheduledActionWithLiterals as jG, type DurationUnitWithLiterals as jH, type PaymentCollectabilityStatusWithLiterals as jI, type PredefinedPaymentMethodWithLiterals as jJ, type RefundableStatusWithLiterals as jK, type NonRefundableReasonWithLiterals as jL, type ManuallyRefundableReasonWithLiterals as jM, type RestockTypeWithLiterals as jN, type TransactionStatusWithLiterals as jO, type AuthorizationCaptureStatusWithLiterals as jP, type AuthorizationVoidStatusWithLiterals as jQ, type ReasonWithLiterals as jR, type ActionTypeWithLiterals as jS, type ChargebackStatusWithLiterals as jT, type MembershipPaymentStatusWithLiterals as jU, type RefundStatusWithLiterals as jV, type SortOrderWithLiterals as jW, type OrderApprovalStrategyWithLiterals as jX, type PlacementWithLiterals as jY, type SubdivisionTypeWithLiterals as jZ, type SourceTypeWithLiterals as j_, type DescriptionLineTypeWithLiterals as ja, type DimensionsUnitWithLiterals as jb, type ItemTypePresetWithLiterals as jc, type PaymentOptionTypeWithLiterals as jd, type JurisdictionTypeWithLiterals as je, type SubscriptionFrequencyWithLiterals as jf, type AdjustmentTypeWithLiterals as jg, type TaxableAddressTypeWithLiterals as jh, type PaymentStatusWithLiterals as ji, type FulfillmentStatusWithLiterals as jj, type WeightUnitWithLiterals as jk, type VatTypeWithLiterals as jl, type PickupMethodWithLiterals as jm, type DiscountTypeWithLiterals as jn, type DiscountReasonWithLiterals as jo, type LineItemQuantityChangeTypeWithLiterals as jp, type ActivityTypeWithLiterals as jq, type OrderActivityTypeEnumActivityTypeWithLiterals as jr, type AttributionSourceWithLiterals as js, type ChannelTypeWithLiterals as jt, type AdditionalFeeSourceWithLiterals as ju, type OrderActionTypeWithLiterals as jv, type ChargeTypeWithLiterals as jw, type DeltaPaymentOptionTypeWithLiterals as jx, type InventoryActionWithLiterals as jy, type WebhookIdentityTypeWithLiterals as jz, type PaymentCollectionCreatePaymentGatewayOrderOptions as k, type ValueTypeWithLiterals as k0, type DepositTypeWithLiterals as k1, type InvoiceStatusWithLiterals as k2, type CommonSearchWithEntityContext as k3, onOrderApproved as k4, onOrderCanceled as k5, onOrderCommitted as k6, onOrderCreated as k7, onOrderFulfilled as k8, onOrderPaymentStatusUpdated as k9, aggregateOrders as kA, bulkUpdateOrderTags as kB, onOrderUpdated as ka, importOrder as kb, setOrderNumberCounter as kc, bulkDeleteImportedOrders as kd, preparePaymentCollection as ke, getPaymentCollectabilityStatus as kf, recordManuallyCollectedPayment as kg, paymentCollectionMarkOrderAsPaid as kh, paymentCollectionBulkMarkOrdersAsPaid as ki, getRefundabilityStatus as kj, paymentCollectionCreatePaymentGatewayOrder as kk, chargeMemberships as kl, triggerRefund as km, voidAuthorizedPayments as kn, captureAuthorizedPayments as ko, getOrder as kp, createOrder as kq, updateOrder as kr, bulkUpdateOrders as ks, updateOrderLineItem as kt, addActivity as ku, addActivities as kv, updateActivity as kw, deleteActivity as kx, cancelOrder as ky, updateOrderStatus as kz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as l, type ChargeMembershipsOptions as m, type PaymentRefund as n, type TriggerRefundResponse as o, type TriggerRefundApplicationErrors as p, type VoidAuthorizedPaymentsApplicationErrors as q, type PaymentCapture as r, type CaptureAuthorizedPaymentsResponse as s, type CaptureAuthorizedPaymentsApplicationErrors as t, type GetOrderApplicationErrors as u, type OrderSearch as v, type SearchOrdersResponse as w, type CreateOrderOptions as x, type CreateOrderApplicationErrors as y, type UpdateOrderApplicationErrors as z };
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { O as Order, I as ImportOrderResponse, S as SetOrderNumberCounterOptions, a as SetOrderNumberCounterResponse, B as BulkDeleteImportedOrdersOptions, b as BulkDeleteImportedOrdersResponse, P as Price, c as PreparePaymentCollectionOptions, d as PreparePaymentCollectionResponse, e as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, R as RecordManuallyCollectedPaymentOptions, f as RecordManuallyCollectedPaymentApplicationErrors, g as PaymentCollectionMarkOrderAsPaidOptions, M as MarkOrderAsPaidResponse, h as PaymentCollectionMarkOrderAsPaidApplicationErrors, i as BulkMarkOrdersAsPaidResponse, j as GetRefundabilityStatusResponse, k as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, l as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, m as ChargeMembershipsOptions, n as PaymentRefund, T as TriggerRefundOptions, o as TriggerRefundResponse, p as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, q as VoidAuthorizedPaymentsApplicationErrors, r as PaymentCapture, s as CaptureAuthorizedPaymentsResponse, t as CaptureAuthorizedPaymentsApplicationErrors, u as GetOrderApplicationErrors, v as OrderSearch, w as SearchOrdersResponse, x as CreateOrderOptions, y as CreateOrderApplicationErrors, U as UpdateOrder, z as UpdateOrderApplicationErrors, A as MaskedOrder, D as BulkUpdateOrdersOptions, E as BulkUpdateOrdersResponse, F as UpdateOrderLineItemIdentifiers, H as UpdateOrderLineItem, J as UpdateOrderLineItemResponse, K as PublicActivity, L as AddActivityResponse, N as AddActivitiesOptions, Q as AddActivitiesResponse, W as UpdateActivityIdentifiers, X as UpdateActivityResponse, Y as DeleteActivityIdentifiers, Z as DeleteActivityResponse, _ as CancelOrderOptions, $ as CancelOrderResponse, a0 as CancelOrderApplicationErrors, a1 as OrderStatusWithLiterals, a2 as UpdateOrderStatusResponse, a3 as UpdateOrderStatusApplicationErrors, a4 as AggregateOrdersOptions, a5 as AggregateOrdersResponse, a6 as BulkUpdateOrderTagsOptions, a7 as BulkUpdateOrderTagsResponse, a8 as OrderApprovedEnvelope, a9 as OrderCanceledEnvelope, aa as OrderCommittedEnvelope, ab as OrderCreatedEnvelope, ac as OrderFulfilledEnvelope, ad as OrderPaymentStatusUpdatedEnvelope, ae as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-DmQnQVc2.js';
3
- export { dV as AccountInfo, j8 as AccountInfoMetadata, dR as ActionEvent, aX as ActionType, jR as ActionTypeWithLiterals, c9 as Activity, ca as ActivityContentOneOf, aw as ActivityType, jq as ActivityTypeWithLiterals, hM as AddActivitiesRequest, hK as AddActivityRequest, hn as AddInternalActivityRequest, hJ as AddInternalActivityResponse, fb as AddToAutomationMigrationPopulationRequest, fc as AddToAutomationMigrationPopulationResponse, d6 as AdditionalFee, dE as AdditionalFeeDelta, dF as AdditionalFeeDeltaDeltaOneOf, em as AdditionalFeeRefund, aA as AdditionalFeeSource, ju as AdditionalFeeSourceWithLiterals, bL as Address, iG as AddressDescription, bN as AddressLocation, bK as AddressWithContact, al as AdjustmentType, jg as AdjustmentTypeWithLiterals, ii as AggregateOrdersRequest, g1 as AggregatedRefundSummary, fs as ApplicationError, b$ as AppliedDiscount, dC as AppliedDiscountDelta, dD as AppliedDiscountDeltaDeltaOneOf, c0 as AppliedDiscountDiscountSourceOneOf, g_ as ArchiveOrderRequest, g$ as ArchiveOrderResponse, eG as Asset, ay as AttributionSource, js as AttributionSourceWithLiterals, fR as AuthorizationActionFailureDetails, fQ as AuthorizationCapture, aU as AuthorizationCaptureStatus, jO as AuthorizationCaptureStatusWithLiterals, fP as AuthorizationDetails, fS as AuthorizationVoid, aV as AuthorizationVoidStatus, jP as AuthorizationVoidStatusWithLiterals, cA as AuthorizedPaymentCaptured, cz as AuthorizedPaymentCreated, cB as AuthorizedPaymentVoided, d5 as Balance, d4 as BalanceSummary, j6 as BaseEventMetadata, iQ as BigDecimalWrapper, bw as BillingAdjustment, bx as BillingAdjustmentPriceSummary, ft as BulkActionMetadata, h2 as BulkArchiveOrdersByFilterRequest, h3 as BulkArchiveOrdersByFilterResponse, h0 as BulkArchiveOrdersRequest, h1 as BulkArchiveOrdersResponse, dK as BulkDeleteImportedOrdersRequest, h_ as BulkMarkAsFulfilledByFilterRequest, h$ as BulkMarkAsFulfilledByFilterResponse, hY as BulkMarkAsFulfilledRequest, hZ as BulkMarkAsFulfilledResponse, i4 as BulkMarkAsUnfulfilledByFilterRequest, i5 as BulkMarkAsUnfulfilledByFilterResponse, i2 as BulkMarkAsUnfulfilledRequest, i3 as BulkMarkAsUnfulfilledResponse, fp as BulkMarkOrdersAsPaidRequest, fq as BulkOrderResult, e0 as BulkSendBuyerPickupConfirmationEmailsRequest, e1 as BulkSendBuyerPickupConfirmationEmailsResponse, e4 as BulkSendBuyerShippingConfirmationEmailsRequest, e5 as BulkSendBuyerShippingConfirmationEmailsResponse, i6 as BulkSetBusinessLocationRequest, i7 as BulkSetBusinessLocationResponse, i8 as BulkSetBusinessLocationResult, h8 as BulkUnArchiveOrdersByFilterRequest, h9 as BulkUnArchiveOrdersByFilterResponse, h6 as BulkUnArchiveOrdersRequest, h7 as BulkUnArchiveOrdersResponse, im as BulkUpdateOrderTagsRequest, iq as BulkUpdateOrderTagsResult, gQ as BulkUpdateOrdersRequest, bG as BuyerInfo, bH as BuyerInfoIdOneOf, hb as BuyerInfoUpdate, g5 as CalculateRefundItemRequest, g7 as CalculateRefundItemResponse, g4 as CalculateRefundRequest, g6 as CalculateRefundResponse, i_ as CalculatedTax, iZ as CalculatedTaxes, iy as Cancel, hU as CancelOrderRequest, g9 as CaptureAuthorizedPaymentsRequest, bb as CatalogReference, d2 as ChannelInfo, az as ChannelType, jt as ChannelTypeWithLiterals, fz as ChargeMembershipsRequest, fD as ChargeMembershipsResponse, ga as ChargeSavedPaymentMethodRequest, gb as ChargeSavedPaymentMethodResponse, aC as ChargeType, jw as ChargeTypeWithLiterals, fU as Chargeback, c_ as ChargebackCreated, c$ as ChargebackReversed, aY as ChargebackStatus, jS as ChargebackStatusWithLiterals, fy as ChargedBy, bh as Color, gR as CommitDeltasRequest, gZ as CommitDeltasResponse, dw as CommittedDiffs, dx as CommittedDiffsShippingUpdateInfoOneOf, iJ as CommonAddress, iK as CommonAddressStreetOneOf, k3 as CommonSearchWithEntityContext, iI as Company, ix as Complete, c1 as Coupon, gJ as CreateOrderRequest, gN as CreateOrderResponse, fx as CreatePaymentGatewayOrderRequest, d0 as CreatedBy, d1 as CreatedByStringOneOf, cP as CreditCardDetails, fO as CreditCardPaymentMethodDetails, bI as CurrencyConversionDetails, gz as CursorPaging, gI as CursorPagingMetadata, gG as CursorSearch, gH as CursorSearchPagingMethodOneOf, gC as Cursors, cb as CustomActivity, de as CustomAllowedActions, d3 as CustomField, b5 as CustomFieldGroup, j$ as CustomFieldGroupWithLiterals, j3 as CustomFieldValue, iD as Customer, ik as DecrementData, ij as DecrementItemsQuantityRequest, il as DecrementItemsQuantityResponse, fh as DelayedCaptureSettings, hO as DeleteActivityRequest, gh as DeleteByFilterOperation, gg as DeleteByIdsOperation, eK as DeleteContext, aK as DeleteStatus, jE as DeleteStatusWithLiterals, bR as DeliveryLogistics, bS as DeliveryLogisticsAddressOneOf, bV as DeliveryTimeSlot, aD as DeltaPaymentOptionType, jx as DeltaPaymentOptionTypeWithLiterals, j5 as Deposit, b7 as DepositType, k1 as DepositTypeWithLiterals, bc as DescriptionLine, be as DescriptionLineDescriptionLineValueOneOf, bf as DescriptionLineName, af as DescriptionLineType, ja as DescriptionLineTypeWithLiterals, bd as DescriptionLineValueOneOf, gq as DiffmatokyPayload, bq as DigitalFile, bk as Dimensions, ag as DimensionsUnit, jb as DimensionsUnitWithLiterals, iX as Discount, iY as DiscountOneDiscountTypeOneOf, au as DiscountReason, jo as DiscountReasonWithLiterals, c4 as DiscountRule, c5 as DiscountRuleName, at as DiscountType, jn as DiscountTypeWithLiterals, dL as DomainEvent, dM as DomainEventBodyOneOf, hv as DownloadLinkSent, ch as DraftOrderChangesApplied, dG as DraftOrderCommitSettings, gS as DraftOrderDiffs, gV as DraftOrderDiffsBillingUpdateInfoOneOf, gU as DraftOrderDiffsBuyerUpdateInfoOneOf, gW as DraftOrderDiffsRecipientUpdateInfoOneOf, gT as DraftOrderDiffsShippingUpdateInfoOneOf, fi as Duration, aM as DurationUnit, jG as DurationUnitWithLiterals, f7 as EditorlessAssigned, f8 as EditorlessUnassigned, iE as Email, hE as EmailEdited, eD as Empty, dN as EntityCreatedEvent, dQ as EntityDeletedEvent, dP as EntityUpdatedEvent, gr as ErrorInformation, j7 as EventMetadata, bC as ExtendedFields, cX as ExternalReceipt, fZ as ExternalReceiptInfo, bi as FocalPoint, dh as FormIdentifier, dg as FormInfo, bv as FreeTrialPeriod, hC as FulfillerEmailSent, ao as FulfillmentStatus, dt as FulfillmentStatusUpdated, jj as FulfillmentStatusWithLiterals, d7 as FulfillmentStatusesAggregate, bO as FullAddressContactDetails, gs as GetOrderRequest, gt as GetOrderResponse, fj as GetPaymentCollectabilityStatusRequest, fu as GetRefundabilityStatusRequest, ig as GetShipmentsRequest, ih as GetShipmentsResponse, fW as GiftCardPaymentDetails, cG as GiftCardPaymentRefund, f9 as HasCustomEmailConfigurationsRequest, fa as HasCustomEmailConfigurationsResponse, iB as IdAndVersion, dT as IdentificationData, dU as IdentificationDataIdOneOf, dI as ImportOrderRequest, dr as ImportedOrderDeleted, ho as InternalActivity, hp as InternalActivityContentOneOf, ge as InternalDocument, gi as InternalDocumentUpdateByFilterOperation, gf as InternalDocumentUpdateOperation, gu as InternalQueryOrdersRequest, gA as InternalQueryOrdersResponse, gj as InternalUpdateExistingOperation, aE as InventoryAction, jy as InventoryActionWithLiterals, dH as InventoryUpdateDetails, hA as InvoiceAdded, iN as InvoiceDates, j2 as InvoiceDynamicPriceTotals, iC as InvoiceFields, hB as InvoiceSent, iA as InvoiceSentEvent, b8 as InvoiceStatus, k2 as InvoiceStatusWithLiterals, j0 as InvoicesPayment, fd as IsInAutomationMigrationPopulationRequest, fe as IsInAutomationMigrationPopulationResponse, dy as ItemChangedDetails, c7 as ItemCombination, c8 as ItemCombinationLineItem, fr as ItemMetadata, bF as ItemModifier, bn as ItemTaxFullDetails, bl as ItemType, bm as ItemTypeItemTypeDataOneOf, ah as ItemTypePreset, jc as ItemTypePresetWithLiterals, iW as ItemizedFee, aj as JurisdictionType, je as JurisdictionTypeWithLiterals, iP as LineItem, ct as LineItemAmount, ck as LineItemChanges, dA as LineItemDelta, dB as LineItemDeltaDeltaOneOf, co as LineItemDescriptionLineChange, c6 as LineItemDiscount, cg as LineItemExchangeData, iT as LineItemMetaData, cp as LineItemModifiersChange, cm as LineItemPriceChange, cn as LineItemProductNameChange, cl as LineItemQuantityChange, av as LineItemQuantityChangeType, jp as LineItemQuantityChangeTypeWithLiterals, el as LineItemRefund, g3 as LineItemRefundSummary, iR as LineItemTax, bp as LineItemTaxBreakdown, bo as LineItemTaxInfo, hQ as LineItemUpdate, iO as LineItems, iU as Locale, da as Location, bz as LocationAndQuantity, cu as ManagedAdditionalFee, cr as ManagedDiscount, cq as ManagedLineItem, aR as ManuallyRefundableReason, jL as ManuallyRefundableReasonWithLiterals, hW as MarkAsFulfilledRequest, hX as MarkAsFulfilledResponse, i0 as MarkAsUnfulfilledRequest, i1 as MarkAsUnfulfilledResponse, fo as MarkOrderAsPaidRequest, hS as MarkOrderAsSeenByHumanRequest, hT as MarkOrderAsSeenByHumanResponse, hl as MaskedOrderLineItem, fA as MembershipChargeItem, fB as MembershipName, fX as MembershipPaymentDetails, cH as MembershipPaymentRefund, aZ as MembershipPaymentStatus, jT as MembershipPaymentStatusWithLiterals, cc as MerchantComment, c2 as MerchantDiscount, c3 as MerchantDiscountMerchantDiscountReasonOneOf, dS as MessageEnvelope, j1 as MetaData, eE as MetaSiteSpecialEvent, eF as MetaSiteSpecialEventPayloadOneOf, bD as ModifierGroup, aJ as Namespace, eU as NamespaceChanged, jD as NamespaceWithLiterals, cf as NewExchangeOrderCreated, aQ as NonRefundableReason, jK as NonRefundableReasonWithLiterals, eZ as OdeditorAssigned, e_ as OdeditorUnassigned, aB as OrderActionType, jv as OrderActionTypeWithLiterals, ax as OrderActivityTypeEnumActivityType, jr as OrderActivityTypeEnumActivityTypeWithLiterals, b1 as OrderApprovalStrategy, jX as OrderApprovalStrategyWithLiterals, dk as OrderApproved, hu as OrderCanceled, du as OrderCanceledEventOrderCanceled, ci as OrderChange, cj as OrderChangeValueOneOf, gM as OrderCreateNotifications, ce as OrderCreatedFromExchange, gK as OrderCreationSettings, gL as OrderCreationSettingsEditableByOneOf, dv as OrderDeltasCommitted, hs as OrderFulfilled, dq as OrderImported, dn as OrderItemsRestocked, b9 as OrderLineItem, dz as OrderLineItemChangedDetails, ht as OrderNotFulfilled, hr as OrderPaid, hG as OrderPartiallyPaid, hH as OrderPending, hq as OrderPlaced, cd as OrderRefunded, hI as OrderRejected, dm as OrderRejectedEventOrderRejected, j9 as OrderSearchSpec, db as OrderSettings, dc as OrderSettingsAllowedActionsOneOf, dd as OrderSettingsEditableByOneOf, as as OrderStatus, b_ as OrderTaxBreakdown, bZ as OrderTaxInfo, fI as OrderTransactions, dl as OrdersExperiments, df as OwnerApps, fJ as Payment, cQ as PaymentCanceled, cR as PaymentCanceledPaymentDetailsOneOf, aN as PaymentCollectabilityStatus, jH as PaymentCollectabilityStatusWithLiterals, cS as PaymentDeclined, cT as PaymentDeclinedPaymentDetailsOneOf, fV as PaymentMethodName, ai as PaymentOptionType, jd as PaymentOptionTypeWithLiterals, fK as PaymentPaymentDetailsOneOf, cL as PaymentPending, cM as PaymentPendingPaymentDetailsOneOf, fL as PaymentReceiptInfoOneOf, cJ as PaymentRefundFailed, cI as PaymentRefunded, an as PaymentStatus, ds as PaymentStatusUpdated, ji as PaymentStatusWithLiterals, i$ as Payments, iH as Phone, bj as PhysicalProperties, e$ as PicassoAssigned, f0 as PicassoUnassigned, bU as PickupAddress, bT as PickupDetails, ar as PickupMethod, jm as PickupMethodWithLiterals, hF as PickupReadyEmailSent, b2 as Placement, jY as PlacementWithLiterals, bg as PlainTextValue, dj as PlatformFee, di as PlatformFeeSummary, gy as PlatformPaging, gB as PlatformPagingMetadata, gv as PlatformQuery, gw as PlatformQueryPagingMethodOneOf, aO as PredefinedPaymentMethod, jI as PredefinedPaymentMethodWithLiterals, ff as PreparePaymentCollectionRequest, ev as PreviewBuyerConfirmationEmailRequest, ew as PreviewBuyerConfirmationEmailResponse, et as PreviewBuyerPaymentsReceivedEmailRequest, eu as PreviewBuyerPaymentsReceivedEmailResponse, ex as PreviewBuyerPickupConfirmationEmailRequest, ey as PreviewBuyerPickupConfirmationEmailResponse, ep as PreviewCancelEmailRequest, eq as PreviewCancelEmailResponse, er as PreviewCancelRefundEmailRequest, es as PreviewCancelRefundEmailResponse, eg as PreviewEmailByTypeRequest, eh as PreviewEmailByTypeResponse, aG as PreviewEmailType, jA as PreviewEmailTypeWithLiterals, ei as PreviewRefundEmailRequest, eo as PreviewRefundEmailResponse, eB as PreviewResendDownloadLinksEmailRequest, eC as PreviewResendDownloadLinksEmailResponse, ez as PreviewShippingConfirmationEmailRequest, eA as PreviewShippingConfirmationEmailResponse, by as PriceDescription, bJ as PriceSummary, ba as ProductName, hL as PublicActivityContentOneOf, gD as QueryOrderRequest, gE as QueryOrderResponse, iF as QuotesAddress, aW as Reason, jQ as ReasonWithLiterals, cU as ReceiptCreated, cV as ReceiptCreatedReceiptInfoOneOf, cY as ReceiptSent, cZ as ReceiptSentReceiptInfoOneOf, fk as RecordManuallyCollectedPaymentRequest, fn as RecordManuallyCollectedPaymentResponse, fg as RedirectUrls, f_ as Refund, ej as RefundDetails, cC as RefundInitiated, ek as RefundItem, g2 as RefundItemsBreakdown, fF as RefundSideEffects, a_ as RefundStatus, g0 as RefundStatusInfo, jU as RefundStatusWithLiterals, f$ as RefundTransaction, fv as Refundability, fw as RefundabilityAdditionalRefundabilityInfoOneOf, aP as RefundableStatus, jJ as RefundableStatusWithLiterals, cK as RefundedAsStoreCredit, cD as RefundedPayment, cE as RefundedPaymentKindOneOf, cN as RegularPayment, fM as RegularPaymentDetails, fN as RegularPaymentDetailsPaymentMethodDetailsOneOf, cO as RegularPaymentPaymentMethodDetailsOneOf, cF as RegularPaymentRefund, iz as Reschedule, fG as RestockInfo, fH as RestockItem, aS as RestockType, jM as RestockTypeWithLiterals, dO as RestoreInfo, cy as SavedPaymentMethod, aL as ScheduledAction, jF as ScheduledActionWithLiterals, gF as SearchOrdersRequest, dW as SendBuyerConfirmationEmailRequest, dX as SendBuyerConfirmationEmailResponse, dY as SendBuyerPaymentsReceivedEmailRequest, dZ as SendBuyerPaymentsReceivedEmailResponse, d_ as SendBuyerPickupConfirmationEmailRequest, d$ as SendBuyerPickupConfirmationEmailResponse, e2 as SendBuyerShippingConfirmationEmailRequest, e3 as SendBuyerShippingConfirmationEmailResponse, e8 as SendCancelRefundEmailRequest, e9 as SendCancelRefundEmailResponse, ec as SendFulfillmentEmailRequest, ed as SendFulfillmentEmailResponse, e6 as SendMerchantOrderReceivedNotificationRequest, e7 as SendMerchantOrderReceivedNotificationResponse, ee as SendMerchantOrderReceivedPushRequest, ef as SendMerchantOrderReceivedPushResponse, ir as SendOrderUpdatedDomainEventRequest, is as SendOrderUpdatedDomainEventResponse, ea as SendRefundEmailRequest, eb as SendRefundEmailResponse, fC as ServiceProperties, eQ as ServiceProvisioned, eR as ServiceRemoved, dJ as SetOrderNumberCounterRequest, hD as ShippingAddressEdited, hz as ShippingConfirmationEmailSent, cx as ShippingInformation, cw as ShippingInformationChange, bW as ShippingPrice, en as ShippingRefund, bX as ShippingRegion, eH as SiteCreated, aI as SiteCreatedContext, jC as SiteCreatedContextWithLiterals, eJ as SiteDeleted, eT as SiteHardDeleted, eO as SiteMarkedAsTemplate, eP as SiteMarkedAsWixSite, eM as SitePublished, eY as SitePurgedExternally, eS as SiteRenamed, eI as SiteTransferred, eL as SiteUndeleted, eN as SiteUnpublished, eX as SiteUrlChanged, b0 as SortOrder, jW as SortOrderWithLiterals, gx as Sorting, iS as Source, b4 as SourceType, j_ as SourceTypeWithLiterals, iM as StandardDetails, aH as State, jB as StateWithLiterals, bM as StreetAddress, eV as StudioAssigned, f3 as StudioTwoAssigned, f4 as StudioTwoUnassigned, eW as StudioUnassigned, iL as Subdivision, b3 as SubdivisionType, jZ as SubdivisionTypeWithLiterals, bt as SubscriptionDescription, ak as SubscriptionFrequency, jf as SubscriptionFrequencyWithLiterals, br as SubscriptionInfo, bu as SubscriptionSettings, bs as SubscriptionTitle, d9 as TagList, d8 as Tags, ip as TagsTagList, io as TagsTags, it as Task, iv as TaskAction, iw as TaskActionActionOneOf, iu as TaskKey, bY as TaxSummary, bA as TaxableAddress, bB as TaxableAddressTaxableAddressDataOneOf, am as TaxableAddressType, jh as TaxableAddressTypeWithLiterals, iV as TotalPrice, cv as TotalPriceChange, hy as TrackingLinkAdded, hw as TrackingNumberAdded, hx as TrackingNumberEdited, aT as TransactionStatus, jN as TransactionStatusWithLiterals, bE as TranslatableString, cs as TranslatedValue, fE as TriggerRefundRequest, gp as TriggerReindexOrderRequest, gn as TriggerReindexRequest, go as TriggerReindexResponse, h4 as UnArchiveOrderRequest, h5 as UnArchiveOrderResponse, hN as UpdateActivityRequest, hh as UpdateBillingContactDetailsRequest, hi as UpdateBillingContactDetailsResponse, hd as UpdateBuyerEmailRequest, he as UpdateBuyerEmailResponse, ha as UpdateBuyerInfoRequest, hc as UpdateBuyerInfoResponse, gc as UpdateInternalDocumentsEvent, gd as UpdateInternalDocumentsEventOperationOneOf, hP as UpdateLineItemsDescriptionLinesRequest, hR as UpdateLineItemsDescriptionLinesResponse, hj as UpdateOrderLineItemRequest, hk as UpdateOrderLineItemsRequest, hm as UpdateOrderLineItemsResponse, gO as UpdateOrderRequest, gP as UpdateOrderResponse, hf as UpdateOrderShippingAddressRequest, hg as UpdateOrderShippingAddressResponse, hV as UpdateOrderStatusRequest, fl as UserDefinedPaymentMethodName, fm as UserDefinedPaymentMethodNameKindOneOf, f6 as UserDomainMediaDisabled, f5 as UserDomainMediaEnabled, ib as V1BulkMarkOrdersAsPaidRequest, ic as V1BulkMarkOrdersAsPaidResponse, id as V1CreatePaymentGatewayOrderRequest, ie as V1CreatePaymentGatewayOrderResponse, gX as V1LineItemDelta, gY as V1LineItemDeltaDeltaOneOf, i9 as V1MarkOrderAsPaidRequest, ia as V1MarkOrderAsPaidResponse, dp as V1RestockItem, fT as V1ScheduledAction, bQ as V1ShippingInformation, j4 as Value, b6 as ValueType, k0 as ValueTypeWithLiterals, bP as VatId, aq as VatType, jl as VatTypeWithLiterals, gl as VersionedDeleteByIdsOperation, gm as VersionedDocumentId, gk as VersionedDocumentUpdateOperation, a$ as VersioningMode, jV as VersioningModeWithLiterals, g8 as VoidAuthorizedPaymentsRequest, aF as WebhookIdentityType, jz as WebhookIdentityTypeWithLiterals, ap as WeightUnit, jk as WeightUnitWithLiterals, cW as WixReceipt, fY as WixReceiptInfo, f1 as WixelAssigned, f2 as WixelUnassigned } from './ecom-v1-order-orders.universal-DmQnQVc2.js';
2
+ import { O as Order, I as ImportOrderResponse, S as SetOrderNumberCounterOptions, a as SetOrderNumberCounterResponse, B as BulkDeleteImportedOrdersOptions, b as BulkDeleteImportedOrdersResponse, P as Price, c as PreparePaymentCollectionOptions, d as PreparePaymentCollectionResponse, e as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, R as RecordManuallyCollectedPaymentOptions, f as RecordManuallyCollectedPaymentApplicationErrors, g as PaymentCollectionMarkOrderAsPaidOptions, M as MarkOrderAsPaidResponse, h as PaymentCollectionMarkOrderAsPaidApplicationErrors, i as BulkMarkOrdersAsPaidResponse, j as GetRefundabilityStatusResponse, k as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, l as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, m as ChargeMembershipsOptions, n as PaymentRefund, T as TriggerRefundOptions, o as TriggerRefundResponse, p as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, q as VoidAuthorizedPaymentsApplicationErrors, r as PaymentCapture, s as CaptureAuthorizedPaymentsResponse, t as CaptureAuthorizedPaymentsApplicationErrors, u as GetOrderApplicationErrors, v as OrderSearch, w as SearchOrdersResponse, x as CreateOrderOptions, y as CreateOrderApplicationErrors, U as UpdateOrder, z as UpdateOrderApplicationErrors, A as MaskedOrder, D as BulkUpdateOrdersOptions, E as BulkUpdateOrdersResponse, F as UpdateOrderLineItemIdentifiers, H as UpdateOrderLineItem, J as UpdateOrderLineItemResponse, K as PublicActivity, L as AddActivityResponse, N as AddActivitiesOptions, Q as AddActivitiesResponse, W as UpdateActivityIdentifiers, X as UpdateActivityResponse, Y as DeleteActivityIdentifiers, Z as DeleteActivityResponse, _ as CancelOrderOptions, $ as CancelOrderResponse, a0 as CancelOrderApplicationErrors, a1 as OrderStatusWithLiterals, a2 as UpdateOrderStatusResponse, a3 as UpdateOrderStatusApplicationErrors, a4 as AggregateOrdersOptions, a5 as AggregateOrdersResponse, a6 as BulkUpdateOrderTagsOptions, a7 as BulkUpdateOrderTagsResponse, a8 as OrderApprovedEnvelope, a9 as OrderCanceledEnvelope, aa as OrderCommittedEnvelope, ab as OrderCreatedEnvelope, ac as OrderFulfilledEnvelope, ad as OrderPaymentStatusUpdatedEnvelope, ae as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-C82IbNQo.js';
3
+ export { dV as AccountInfo, j8 as AccountInfoMetadata, dR as ActionEvent, aY as ActionType, jS as ActionTypeWithLiterals, c9 as Activity, ca as ActivityContentOneOf, aw as ActivityType, jq as ActivityTypeWithLiterals, hM as AddActivitiesRequest, hK as AddActivityRequest, hn as AddInternalActivityRequest, hJ as AddInternalActivityResponse, fp as AddToAutomationMigrationPopulationRequest, fq as AddToAutomationMigrationPopulationResponse, d6 as AdditionalFee, dE as AdditionalFeeDelta, dF as AdditionalFeeDeltaDeltaOneOf, eB as AdditionalFeeRefund, aA as AdditionalFeeSource, ju as AdditionalFeeSourceWithLiterals, bL as Address, iG as AddressDescription, bN as AddressLocation, bK as AddressWithContact, al as AdjustmentType, jg as AdjustmentTypeWithLiterals, ii as AggregateOrdersRequest, gf as AggregatedRefundSummary, fG as ApplicationError, b$ as AppliedDiscount, dC as AppliedDiscountDelta, dD as AppliedDiscountDeltaDeltaOneOf, c0 as AppliedDiscountDiscountSourceOneOf, g_ as ArchiveOrderRequest, g$ as ArchiveOrderResponse, eU as Asset, ay as AttributionSource, js as AttributionSourceWithLiterals, g3 as AuthorizationActionFailureDetails, g2 as AuthorizationCapture, aV as AuthorizationCaptureStatus, jP as AuthorizationCaptureStatusWithLiterals, g1 as AuthorizationDetails, g4 as AuthorizationVoid, aW as AuthorizationVoidStatus, jQ as AuthorizationVoidStatusWithLiterals, cA as AuthorizedPaymentCaptured, cz as AuthorizedPaymentCreated, cB as AuthorizedPaymentVoided, d5 as Balance, d4 as BalanceSummary, j6 as BaseEventMetadata, iQ as BigDecimalWrapper, bw as BillingAdjustment, bx as BillingAdjustmentPriceSummary, fH as BulkActionMetadata, h2 as BulkArchiveOrdersByFilterRequest, h3 as BulkArchiveOrdersByFilterResponse, h0 as BulkArchiveOrdersRequest, h1 as BulkArchiveOrdersResponse, dK as BulkDeleteImportedOrdersRequest, h_ as BulkMarkAsFulfilledByFilterRequest, h$ as BulkMarkAsFulfilledByFilterResponse, hY as BulkMarkAsFulfilledRequest, hZ as BulkMarkAsFulfilledResponse, i4 as BulkMarkAsUnfulfilledByFilterRequest, i5 as BulkMarkAsUnfulfilledByFilterResponse, i2 as BulkMarkAsUnfulfilledRequest, i3 as BulkMarkAsUnfulfilledResponse, fD as BulkMarkOrdersAsPaidRequest, fE as BulkOrderResult, ef as BulkSendBuyerPickupConfirmationEmailsRequest, eg as BulkSendBuyerPickupConfirmationEmailsResponse, ej as BulkSendBuyerShippingConfirmationEmailsRequest, ek as BulkSendBuyerShippingConfirmationEmailsResponse, i6 as BulkSetBusinessLocationRequest, i7 as BulkSetBusinessLocationResponse, i8 as BulkSetBusinessLocationResult, h8 as BulkUnArchiveOrdersByFilterRequest, h9 as BulkUnArchiveOrdersByFilterResponse, h6 as BulkUnArchiveOrdersRequest, h7 as BulkUnArchiveOrdersResponse, im as BulkUpdateOrderTagsRequest, iq as BulkUpdateOrderTagsResult, gQ as BulkUpdateOrdersRequest, bG as BuyerInfo, bH as BuyerInfoIdOneOf, hb as BuyerInfoUpdate, gj as CalculateRefundItemRequest, gl as CalculateRefundItemResponse, gi as CalculateRefundRequest, gk as CalculateRefundResponse, i_ as CalculatedTax, iZ as CalculatedTaxes, iy as Cancel, hU as CancelOrderRequest, gn as CaptureAuthorizedPaymentsRequest, bb as CatalogReference, d2 as ChannelInfo, az as ChannelType, jt as ChannelTypeWithLiterals, fN as ChargeMembershipsRequest, fR as ChargeMembershipsResponse, go as ChargeSavedPaymentMethodRequest, gp as ChargeSavedPaymentMethodResponse, aC as ChargeType, jw as ChargeTypeWithLiterals, g6 as Chargeback, c_ as ChargebackCreated, c$ as ChargebackReversed, aZ as ChargebackStatus, jT as ChargebackStatusWithLiterals, fM as ChargedBy, bh as Color, gR as CommitDeltasRequest, gZ as CommitDeltasResponse, dw as CommittedDiffs, dx as CommittedDiffsShippingUpdateInfoOneOf, iJ as CommonAddress, iK as CommonAddressStreetOneOf, k3 as CommonSearchWithEntityContext, iI as Company, ix as Complete, c1 as Coupon, gJ as CreateOrderRequest, gN as CreateOrderResponse, fL as CreatePaymentGatewayOrderRequest, d0 as CreatedBy, d1 as CreatedByStringOneOf, cP as CreditCardDetails, g0 as CreditCardPaymentMethodDetails, bI as CurrencyConversionDetails, gz as CursorPaging, gI as CursorPagingMetadata, gG as CursorSearch, gH as CursorSearchPagingMethodOneOf, gC as Cursors, cb as CustomActivity, de as CustomAllowedActions, d3 as CustomField, b5 as CustomFieldGroup, j$ as CustomFieldGroupWithLiterals, j3 as CustomFieldValue, iD as Customer, ik as DecrementData, ij as DecrementItemsQuantityRequest, il as DecrementItemsQuantityResponse, fv as DelayedCaptureSettings, hO as DeleteActivityRequest, d$ as DeleteByFilterOperation, d_ as DeleteByIdsOperation, eY as DeleteContext, aL as DeleteStatus, jF as DeleteStatusWithLiterals, bR as DeliveryLogistics, bS as DeliveryLogisticsAddressOneOf, bV as DeliveryTimeSlot, aD as DeltaPaymentOptionType, jx as DeltaPaymentOptionTypeWithLiterals, j5 as Deposit, b7 as DepositType, k1 as DepositTypeWithLiterals, bc as DescriptionLine, be as DescriptionLineDescriptionLineValueOneOf, bf as DescriptionLineName, af as DescriptionLineType, ja as DescriptionLineTypeWithLiterals, bd as DescriptionLineValueOneOf, gq as DiffmatokyPayload, bq as DigitalFile, bk as Dimensions, ag as DimensionsUnit, jb as DimensionsUnitWithLiterals, iX as Discount, iY as DiscountOneDiscountTypeOneOf, au as DiscountReason, jo as DiscountReasonWithLiterals, c4 as DiscountRule, c5 as DiscountRuleName, at as DiscountType, jn as DiscountTypeWithLiterals, dL as DomainEvent, dM as DomainEventBodyOneOf, hv as DownloadLinkSent, ch as DraftOrderChangesApplied, dG as DraftOrderCommitSettings, gS as DraftOrderDiffs, gV as DraftOrderDiffsBillingUpdateInfoOneOf, gU as DraftOrderDiffsBuyerUpdateInfoOneOf, gW as DraftOrderDiffsRecipientUpdateInfoOneOf, gT as DraftOrderDiffsShippingUpdateInfoOneOf, fw as Duration, aN as DurationUnit, jH as DurationUnitWithLiterals, fl as EditorlessAssigned, fm as EditorlessUnassigned, iE as Email, hE as EmailEdited, e7 as Empty, dN as EntityCreatedEvent, dQ as EntityDeletedEvent, dP as EntityUpdatedEvent, gr as ErrorInformation, j7 as EventMetadata, bC as ExtendedFields, cX as ExternalReceipt, gb as ExternalReceiptInfo, bi as FocalPoint, dh as FormIdentifier, dg as FormInfo, bv as FreeTrialPeriod, hC as FulfillerEmailSent, ao as FulfillmentStatus, dt as FulfillmentStatusUpdated, jj as FulfillmentStatusWithLiterals, d7 as FulfillmentStatusesAggregate, bO as FullAddressContactDetails, gs as GetOrderRequest, gt as GetOrderResponse, fx as GetPaymentCollectabilityStatusRequest, fI as GetRefundabilityStatusRequest, ig as GetShipmentsRequest, ih as GetShipmentsResponse, g8 as GiftCardPaymentDetails, cG as GiftCardPaymentRefund, fn as HasCustomEmailConfigurationsRequest, fo as HasCustomEmailConfigurationsResponse, iB as IdAndVersion, dT as IdentificationData, dU as IdentificationDataIdOneOf, dI as ImportOrderRequest, dr as ImportedOrderDeleted, ho as InternalActivity, hp as InternalActivityContentOneOf, dY as InternalDocument, e0 as InternalDocumentUpdateByFilterOperation, dZ as InternalDocumentUpdateOperation, gu as InternalQueryOrdersRequest, gA as InternalQueryOrdersResponse, e1 as InternalUpdateExistingOperation, aE as InventoryAction, jy as InventoryActionWithLiterals, dH as InventoryUpdateDetails, hA as InvoiceAdded, iN as InvoiceDates, j2 as InvoiceDynamicPriceTotals, iC as InvoiceFields, hB as InvoiceSent, iA as InvoiceSentEvent, b8 as InvoiceStatus, k2 as InvoiceStatusWithLiterals, j0 as InvoicesPayment, fr as IsInAutomationMigrationPopulationRequest, fs as IsInAutomationMigrationPopulationResponse, dy as ItemChangedDetails, c7 as ItemCombination, c8 as ItemCombinationLineItem, fF as ItemMetadata, bF as ItemModifier, bn as ItemTaxFullDetails, bl as ItemType, bm as ItemTypeItemTypeDataOneOf, ah as ItemTypePreset, jc as ItemTypePresetWithLiterals, iW as ItemizedFee, aj as JurisdictionType, je as JurisdictionTypeWithLiterals, iP as LineItem, ct as LineItemAmount, ck as LineItemChanges, dA as LineItemDelta, dB as LineItemDeltaDeltaOneOf, co as LineItemDescriptionLineChange, c6 as LineItemDiscount, cg as LineItemExchangeData, iT as LineItemMetaData, cp as LineItemModifiersChange, cm as LineItemPriceChange, cn as LineItemProductNameChange, cl as LineItemQuantityChange, av as LineItemQuantityChangeType, jp as LineItemQuantityChangeTypeWithLiterals, eA as LineItemRefund, gh as LineItemRefundSummary, iR as LineItemTax, bp as LineItemTaxBreakdown, bo as LineItemTaxInfo, hQ as LineItemUpdate, iO as LineItems, iU as Locale, da as Location, bz as LocationAndQuantity, cu as ManagedAdditionalFee, cr as ManagedDiscount, cq as ManagedLineItem, aS as ManuallyRefundableReason, jM as ManuallyRefundableReasonWithLiterals, hW as MarkAsFulfilledRequest, hX as MarkAsFulfilledResponse, i0 as MarkAsUnfulfilledRequest, i1 as MarkAsUnfulfilledResponse, fC as MarkOrderAsPaidRequest, hS as MarkOrderAsSeenByHumanRequest, hT as MarkOrderAsSeenByHumanResponse, hl as MaskedOrderLineItem, fO as MembershipChargeItem, fP as MembershipName, g9 as MembershipPaymentDetails, cH as MembershipPaymentRefund, a_ as MembershipPaymentStatus, jU as MembershipPaymentStatusWithLiterals, cc as MerchantComment, c2 as MerchantDiscount, c3 as MerchantDiscountMerchantDiscountReasonOneOf, dS as MessageEnvelope, j1 as MetaData, eS as MetaSiteSpecialEvent, eT as MetaSiteSpecialEventPayloadOneOf, bD as ModifierGroup, aK as Namespace, f6 as NamespaceChanged, jE as NamespaceWithLiterals, cf as NewExchangeOrderCreated, aR as NonRefundableReason, jL as NonRefundableReasonWithLiterals, fb as OdeditorAssigned, fc as OdeditorUnassigned, aB as OrderActionType, jv as OrderActionTypeWithLiterals, ax as OrderActivityTypeEnumActivityType, jr as OrderActivityTypeEnumActivityTypeWithLiterals, b1 as OrderApprovalStrategy, jX as OrderApprovalStrategyWithLiterals, dk as OrderApproved, hu as OrderCanceled, du as OrderCanceledEventOrderCanceled, ci as OrderChange, cj as OrderChangeValueOneOf, gM as OrderCreateNotifications, ce as OrderCreatedFromExchange, gK as OrderCreationSettings, gL as OrderCreationSettingsEditableByOneOf, dv as OrderDeltasCommitted, hs as OrderFulfilled, dq as OrderImported, dn as OrderItemsRestocked, b9 as OrderLineItem, dz as OrderLineItemChangedDetails, ht as OrderNotFulfilled, hr as OrderPaid, hG as OrderPartiallyPaid, hH as OrderPending, hq as OrderPlaced, cd as OrderRefunded, hI as OrderRejected, dm as OrderRejectedEventOrderRejected, j9 as OrderSearchSpec, db as OrderSettings, dc as OrderSettingsAllowedActionsOneOf, dd as OrderSettingsEditableByOneOf, as as OrderStatus, b_ as OrderTaxBreakdown, bZ as OrderTaxInfo, fW as OrderTransactions, dl as OrdersExperiments, df as OwnerApps, fX as Payment, cQ as PaymentCanceled, cR as PaymentCanceledPaymentDetailsOneOf, aO as PaymentCollectabilityStatus, jI as PaymentCollectabilityStatusWithLiterals, cS as PaymentDeclined, cT as PaymentDeclinedPaymentDetailsOneOf, g7 as PaymentMethodName, ai as PaymentOptionType, jd as PaymentOptionTypeWithLiterals, fY as PaymentPaymentDetailsOneOf, cL as PaymentPending, cM as PaymentPendingPaymentDetailsOneOf, fZ as PaymentReceiptInfoOneOf, cJ as PaymentRefundFailed, cI as PaymentRefunded, an as PaymentStatus, ds as PaymentStatusUpdated, ji as PaymentStatusWithLiterals, i$ as Payments, iH as Phone, bj as PhysicalProperties, fd as PicassoAssigned, fe as PicassoUnassigned, bU as PickupAddress, bT as PickupDetails, ar as PickupMethod, jm as PickupMethodWithLiterals, hF as PickupReadyEmailSent, b2 as Placement, jY as PlacementWithLiterals, bg as PlainTextValue, dj as PlatformFee, di as PlatformFeeSummary, gy as PlatformPaging, gB as PlatformPagingMetadata, gv as PlatformQuery, gw as PlatformQueryPagingMethodOneOf, aP as PredefinedPaymentMethod, jJ as PredefinedPaymentMethodWithLiterals, ft as PreparePaymentCollectionRequest, eK as PreviewBuyerConfirmationEmailRequest, eL as PreviewBuyerConfirmationEmailResponse, eI as PreviewBuyerPaymentsReceivedEmailRequest, eJ as PreviewBuyerPaymentsReceivedEmailResponse, eM as PreviewBuyerPickupConfirmationEmailRequest, eN as PreviewBuyerPickupConfirmationEmailResponse, eE as PreviewCancelEmailRequest, eF as PreviewCancelEmailResponse, eG as PreviewCancelRefundEmailRequest, eH as PreviewCancelRefundEmailResponse, ev as PreviewEmailByTypeRequest, ew as PreviewEmailByTypeResponse, aH as PreviewEmailType, jB as PreviewEmailTypeWithLiterals, ex as PreviewRefundEmailRequest, eD as PreviewRefundEmailResponse, eQ as PreviewResendDownloadLinksEmailRequest, eR as PreviewResendDownloadLinksEmailResponse, eO as PreviewShippingConfirmationEmailRequest, eP as PreviewShippingConfirmationEmailResponse, by as PriceDescription, bJ as PriceSummary, ba as ProductName, hL as PublicActivityContentOneOf, gD as QueryOrderRequest, gE as QueryOrderResponse, iF as QuotesAddress, aX as Reason, jR as ReasonWithLiterals, cU as ReceiptCreated, cV as ReceiptCreatedReceiptInfoOneOf, cY as ReceiptSent, cZ as ReceiptSentReceiptInfoOneOf, fy as RecordManuallyCollectedPaymentRequest, fB as RecordManuallyCollectedPaymentResponse, fu as RedirectUrls, gc as Refund, ey as RefundDetails, cC as RefundInitiated, ez as RefundItem, gg as RefundItemsBreakdown, fT as RefundSideEffects, a$ as RefundStatus, ge as RefundStatusInfo, jV as RefundStatusWithLiterals, gd as RefundTransaction, fJ as Refundability, fK as RefundabilityAdditionalRefundabilityInfoOneOf, aQ as RefundableStatus, jK as RefundableStatusWithLiterals, cK as RefundedAsStoreCredit, cD as RefundedPayment, cE as RefundedPaymentKindOneOf, cN as RegularPayment, f_ as RegularPaymentDetails, f$ as RegularPaymentDetailsPaymentMethodDetailsOneOf, cO as RegularPaymentPaymentMethodDetailsOneOf, cF as RegularPaymentRefund, iz as Reschedule, fU as RestockInfo, fV as RestockItem, aT as RestockType, jN as RestockTypeWithLiterals, dO as RestoreInfo, cy as SavedPaymentMethod, aM as ScheduledAction, jG as ScheduledActionWithLiterals, gF as SearchOrdersRequest, e9 as SendBuyerConfirmationEmailRequest, ea as SendBuyerConfirmationEmailResponse, eb as SendBuyerPaymentsReceivedEmailRequest, ec as SendBuyerPaymentsReceivedEmailResponse, ed as SendBuyerPickupConfirmationEmailRequest, ee as SendBuyerPickupConfirmationEmailResponse, eh as SendBuyerShippingConfirmationEmailRequest, ei as SendBuyerShippingConfirmationEmailResponse, en as SendCancelRefundEmailRequest, eo as SendCancelRefundEmailResponse, er as SendFulfillmentEmailRequest, es as SendFulfillmentEmailResponse, el as SendMerchantOrderReceivedNotificationRequest, em as SendMerchantOrderReceivedNotificationResponse, et as SendMerchantOrderReceivedPushRequest, eu as SendMerchantOrderReceivedPushResponse, ir as SendOrderUpdatedDomainEventRequest, is as SendOrderUpdatedDomainEventResponse, ep as SendRefundEmailRequest, eq as SendRefundEmailResponse, fQ as ServiceProperties, f2 as ServiceProvisioned, f3 as ServiceRemoved, dJ as SetOrderNumberCounterRequest, hD as ShippingAddressEdited, hz as ShippingConfirmationEmailSent, cx as ShippingInformation, cw as ShippingInformationChange, bW as ShippingPrice, eC as ShippingRefund, bX as ShippingRegion, eV as SiteCreated, aJ as SiteCreatedContext, jD as SiteCreatedContextWithLiterals, eX as SiteDeleted, f5 as SiteHardDeleted, f0 as SiteMarkedAsTemplate, f1 as SiteMarkedAsWixSite, e_ as SitePublished, fa as SitePurgedExternally, f4 as SiteRenamed, eW as SiteTransferred, eZ as SiteUndeleted, e$ as SiteUnpublished, f9 as SiteUrlChanged, b0 as SortOrder, jW as SortOrderWithLiterals, gx as Sorting, iS as Source, b4 as SourceType, j_ as SourceTypeWithLiterals, iM as StandardDetails, aI as State, jC as StateWithLiterals, bM as StreetAddress, f7 as StudioAssigned, fh as StudioTwoAssigned, fi as StudioTwoUnassigned, f8 as StudioUnassigned, iL as Subdivision, b3 as SubdivisionType, jZ as SubdivisionTypeWithLiterals, bt as SubscriptionDescription, ak as SubscriptionFrequency, jf as SubscriptionFrequencyWithLiterals, br as SubscriptionInfo, bu as SubscriptionSettings, bs as SubscriptionTitle, d9 as TagList, d8 as Tags, ip as TagsTagList, io as TagsTags, it as Task, iv as TaskAction, iw as TaskActionActionOneOf, iu as TaskKey, bY as TaxSummary, bA as TaxableAddress, bB as TaxableAddressTaxableAddressDataOneOf, am as TaxableAddressType, jh as TaxableAddressTypeWithLiterals, iV as TotalPrice, cv as TotalPriceChange, hy as TrackingLinkAdded, hw as TrackingNumberAdded, hx as TrackingNumberEdited, aU as TransactionStatus, jO as TransactionStatusWithLiterals, bE as TranslatableString, cs as TranslatedValue, fS as TriggerRefundRequest, e8 as TriggerReindexOrderRequest, e5 as TriggerReindexRequest, e6 as TriggerReindexResponse, h4 as UnArchiveOrderRequest, h5 as UnArchiveOrderResponse, hN as UpdateActivityRequest, hh as UpdateBillingContactDetailsRequest, hi as UpdateBillingContactDetailsResponse, hd as UpdateBuyerEmailRequest, he as UpdateBuyerEmailResponse, ha as UpdateBuyerInfoRequest, hc as UpdateBuyerInfoResponse, dW as UpdateInternalDocumentsEvent, dX as UpdateInternalDocumentsEventOperationOneOf, hP as UpdateLineItemsDescriptionLinesRequest, hR as UpdateLineItemsDescriptionLinesResponse, hj as UpdateOrderLineItemRequest, hk as UpdateOrderLineItemsRequest, hm as UpdateOrderLineItemsResponse, gO as UpdateOrderRequest, gP as UpdateOrderResponse, hf as UpdateOrderShippingAddressRequest, hg as UpdateOrderShippingAddressResponse, hV as UpdateOrderStatusRequest, fz as UserDefinedPaymentMethodName, fA as UserDefinedPaymentMethodNameKindOneOf, fk as UserDomainMediaDisabled, fj as UserDomainMediaEnabled, ib as V1BulkMarkOrdersAsPaidRequest, ic as V1BulkMarkOrdersAsPaidResponse, id as V1CreatePaymentGatewayOrderRequest, ie as V1CreatePaymentGatewayOrderResponse, gX as V1LineItemDelta, gY as V1LineItemDeltaDeltaOneOf, i9 as V1MarkOrderAsPaidRequest, ia as V1MarkOrderAsPaidResponse, dp as V1RestockItem, g5 as V1ScheduledAction, bQ as V1ShippingInformation, j4 as Value, b6 as ValueType, k0 as ValueTypeWithLiterals, bP as VatId, aq as VatType, jl as VatTypeWithLiterals, e3 as VersionedDeleteByIdsOperation, e4 as VersionedDocumentId, e2 as VersionedDocumentUpdateOperation, aG as VersioningMode, jA as VersioningModeWithLiterals, gm as VoidAuthorizedPaymentsRequest, aF as WebhookIdentityType, jz as WebhookIdentityTypeWithLiterals, ap as WeightUnit, jk as WeightUnitWithLiterals, cW as WixReceipt, ga as WixReceiptInfo, ff as WixelAssigned, fg as WixelUnassigned } from './ecom-v1-order-orders.universal-C82IbNQo.js';
4
4
 
5
5
  /** @internal */
6
6
  declare function importOrder$1(httpClient: HttpClient): ImportOrderSignature;
@@ -2079,6 +2079,12 @@ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
2079
2079
  WebhookIdentityType2["APP"] = "APP";
2080
2080
  return WebhookIdentityType2;
2081
2081
  })(WebhookIdentityType || {});
2082
+ var VersioningMode = /* @__PURE__ */ ((VersioningMode2) => {
2083
+ VersioningMode2["DEFAULT"] = "DEFAULT";
2084
+ VersioningMode2["GREATER_THAN"] = "GREATER_THAN";
2085
+ VersioningMode2["GREATER_OR_EQUAL"] = "GREATER_OR_EQUAL";
2086
+ return VersioningMode2;
2087
+ })(VersioningMode || {});
2082
2088
  var PreviewEmailType = /* @__PURE__ */ ((PreviewEmailType2) => {
2083
2089
  PreviewEmailType2["ORDER_PLACED"] = "ORDER_PLACED";
2084
2090
  PreviewEmailType2["DOWNLOAD_LINKS"] = "DOWNLOAD_LINKS";
@@ -2275,12 +2281,6 @@ var RefundStatus = /* @__PURE__ */ ((RefundStatus2) => {
2275
2281
  RefundStatus2["STARTED"] = "STARTED";
2276
2282
  return RefundStatus2;
2277
2283
  })(RefundStatus || {});
2278
- var VersioningMode = /* @__PURE__ */ ((VersioningMode2) => {
2279
- VersioningMode2["DEFAULT"] = "DEFAULT";
2280
- VersioningMode2["GREATER_THAN"] = "GREATER_THAN";
2281
- VersioningMode2["GREATER_OR_EQUAL"] = "GREATER_OR_EQUAL";
2282
- return VersioningMode2;
2283
- })(VersioningMode || {});
2284
2284
  var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
2285
2285
  SortOrder2["ASC"] = "ASC";
2286
2286
  SortOrder2["DESC"] = "DESC";