@wix/auto_sdk_ecom_orders 1.0.231 → 1.0.232

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-D6FY2-Jb.d.ts → ecom-v1-order-orders.universal-BNlrrHuJ.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-D6FY2-Jb.d.mts → ecom-v1-order-orders.universal-BNlrrHuJ.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-QJ_VV3kp.d.ts → ecom-v1-order-orders.universal-CRMpNFbE.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-QJ_VV3kp.d.mts → ecom-v1-order-orders.universal-CRMpNFbE.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
@@ -3841,164 +3841,6 @@ interface AccountInfo {
3841
3841
  */
3842
3842
  siteId?: string | null;
3843
3843
  }
3844
- interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
3845
- /** insert/update documents */
3846
- update?: InternalDocumentUpdateOperation;
3847
- /** delete by document ids */
3848
- deleteByIds?: DeleteByIdsOperation;
3849
- /** delete documents matching filter */
3850
- deleteByFilter?: DeleteByFilterOperation;
3851
- /** update internal documents matching filter */
3852
- updateByFilter?: InternalDocumentUpdateByFilterOperation;
3853
- /** update only existing documents */
3854
- updateExisting?: InternalUpdateExistingOperation;
3855
- /** insert/update documents with versioning */
3856
- versionedUpdate?: VersionedDocumentUpdateOperation;
3857
- /** delete by document ids with versioning */
3858
- versionedDeleteByIds?: VersionedDeleteByIdsOperation;
3859
- /**
3860
- * type of the documents
3861
- * @minLength 2
3862
- */
3863
- documentType?: string;
3864
- /**
3865
- * language of the documents (mandatory)
3866
- * @minLength 2
3867
- */
3868
- language?: string | null;
3869
- /**
3870
- * one or more search documents
3871
- * @deprecated
3872
- */
3873
- addDocuments?: InternalDocument[];
3874
- /**
3875
- * one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
3876
- * @deprecated
3877
- */
3878
- removeDocumentIds?: string[];
3879
- /** id to pass to processing notification */
3880
- correlationId?: string | null;
3881
- /** when event was created / issued */
3882
- issuedAt?: Date | null;
3883
- }
3884
- /** @oneof */
3885
- interface UpdateInternalDocumentsEventOperationOneOf {
3886
- /** insert/update documents */
3887
- update?: InternalDocumentUpdateOperation;
3888
- /** delete by document ids */
3889
- deleteByIds?: DeleteByIdsOperation;
3890
- /** delete documents matching filter */
3891
- deleteByFilter?: DeleteByFilterOperation;
3892
- /** update internal documents matching filter */
3893
- updateByFilter?: InternalDocumentUpdateByFilterOperation;
3894
- /** update only existing documents */
3895
- updateExisting?: InternalUpdateExistingOperation;
3896
- /** insert/update documents with versioning */
3897
- versionedUpdate?: VersionedDocumentUpdateOperation;
3898
- /** delete by document ids with versioning */
3899
- versionedDeleteByIds?: VersionedDeleteByIdsOperation;
3900
- }
3901
- interface InternalDocument {
3902
- /** document with mandatory fields (id) and with fields specific to the type of the document */
3903
- document?: Record<string, any> | null;
3904
- }
3905
- interface InternalDocumentUpdateOperation {
3906
- /** documents to index or update */
3907
- documents?: InternalDocument[];
3908
- }
3909
- interface DeleteByIdsOperation {
3910
- /** ids of the documents to delete */
3911
- documentIds?: string[];
3912
- /**
3913
- * tenant id for custom tenancy strategy
3914
- * @minLength 2
3915
- * @maxLength 300
3916
- */
3917
- tenantId?: string | null;
3918
- }
3919
- interface DeleteByFilterOperation {
3920
- /** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
3921
- filter?: Record<string, any> | null;
3922
- /**
3923
- * tenant id for custom tenancy strategy
3924
- * @minLength 2
3925
- * @maxLength 300
3926
- */
3927
- tenantId?: string | null;
3928
- }
3929
- interface InternalDocumentUpdateByFilterOperation {
3930
- /** documents matching this filter will be updated */
3931
- filter?: Record<string, any> | null;
3932
- /** partial document to apply */
3933
- document?: InternalDocument;
3934
- /**
3935
- * tenant id for custom tenancy strategy
3936
- * @minLength 2
3937
- * @maxLength 300
3938
- */
3939
- tenantId?: string | null;
3940
- }
3941
- interface InternalUpdateExistingOperation {
3942
- /** documents to update */
3943
- documents?: InternalDocument[];
3944
- }
3945
- interface VersionedDocumentUpdateOperation {
3946
- /** documents to create or overwrite */
3947
- documents?: InternalDocument[];
3948
- /** versioning mode to use instead of default */
3949
- versioningMode?: VersioningModeWithLiterals;
3950
- }
3951
- declare enum VersioningMode {
3952
- /** use default versioning mode agreed with search team */
3953
- DEFAULT = "DEFAULT",
3954
- /** execute only if version is greater than existing */
3955
- GREATER_THAN = "GREATER_THAN",
3956
- /** execute only if version is greater or equal to existing */
3957
- GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
3958
- }
3959
- /** @enumType */
3960
- type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
3961
- interface VersionedDeleteByIdsOperation {
3962
- /** ids with version of the documents to delete */
3963
- documentIds?: VersionedDocumentId[];
3964
- /**
3965
- * tenant id for custom tenancy strategy
3966
- * @minLength 2
3967
- * @maxLength 300
3968
- */
3969
- tenantId?: string | null;
3970
- }
3971
- interface VersionedDocumentId {
3972
- /** document id */
3973
- documentId?: string;
3974
- /** document version */
3975
- version?: string;
3976
- /** versioning mode to use instead of default */
3977
- versioningMode?: VersioningModeWithLiterals;
3978
- }
3979
- interface TriggerReindexRequest {
3980
- /** @format GUID */
3981
- metasiteId?: string;
3982
- /**
3983
- * @minLength 1
3984
- * @maxLength 100
3985
- * @maxSize 100
3986
- */
3987
- orderIds?: string[];
3988
- }
3989
- interface TriggerReindexResponse {
3990
- }
3991
- interface Empty {
3992
- }
3993
- interface TriggerReindexOrderRequest {
3994
- /** @format GUID */
3995
- metasiteId?: string;
3996
- /**
3997
- * @minLength 1
3998
- * @maxLength 100
3999
- */
4000
- orderId?: string;
4001
- }
4002
3844
  interface SendBuyerConfirmationEmailRequest {
4003
3845
  /** @format GUID */
4004
3846
  orderId?: string;
@@ -4299,6 +4141,8 @@ interface PreviewResendDownloadLinksEmailRequest {
4299
4141
  interface PreviewResendDownloadLinksEmailResponse {
4300
4142
  emailPreview?: string;
4301
4143
  }
4144
+ interface Empty {
4145
+ }
4302
4146
  interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
4303
4147
  /** Emitted on a meta site creation. */
4304
4148
  siteCreated?: SiteCreated;
@@ -6106,6 +5950,162 @@ interface ChargeSavedPaymentMethodResponse {
6106
5950
  /** Payment gateway's order ID (e.g Wix Payments) */
6107
5951
  paymentGatewayOrderId?: string;
6108
5952
  }
5953
+ interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
5954
+ /** insert/update documents */
5955
+ update?: InternalDocumentUpdateOperation;
5956
+ /** delete by document ids */
5957
+ deleteByIds?: DeleteByIdsOperation;
5958
+ /** delete documents matching filter */
5959
+ deleteByFilter?: DeleteByFilterOperation;
5960
+ /** update internal documents matching filter */
5961
+ updateByFilter?: InternalDocumentUpdateByFilterOperation;
5962
+ /** update only existing documents */
5963
+ updateExisting?: InternalUpdateExistingOperation;
5964
+ /** insert/update documents with versioning */
5965
+ versionedUpdate?: VersionedDocumentUpdateOperation;
5966
+ /** delete by document ids with versioning */
5967
+ versionedDeleteByIds?: VersionedDeleteByIdsOperation;
5968
+ /**
5969
+ * type of the documents
5970
+ * @minLength 2
5971
+ */
5972
+ documentType?: string;
5973
+ /**
5974
+ * language of the documents (mandatory)
5975
+ * @minLength 2
5976
+ */
5977
+ language?: string | null;
5978
+ /**
5979
+ * one or more search documents
5980
+ * @deprecated
5981
+ */
5982
+ addDocuments?: InternalDocument[];
5983
+ /**
5984
+ * one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
5985
+ * @deprecated
5986
+ */
5987
+ removeDocumentIds?: string[];
5988
+ /** id to pass to processing notification */
5989
+ correlationId?: string | null;
5990
+ /** when event was created / issued */
5991
+ issuedAt?: Date | null;
5992
+ }
5993
+ /** @oneof */
5994
+ interface UpdateInternalDocumentsEventOperationOneOf {
5995
+ /** insert/update documents */
5996
+ update?: InternalDocumentUpdateOperation;
5997
+ /** delete by document ids */
5998
+ deleteByIds?: DeleteByIdsOperation;
5999
+ /** delete documents matching filter */
6000
+ deleteByFilter?: DeleteByFilterOperation;
6001
+ /** update internal documents matching filter */
6002
+ updateByFilter?: InternalDocumentUpdateByFilterOperation;
6003
+ /** update only existing documents */
6004
+ updateExisting?: InternalUpdateExistingOperation;
6005
+ /** insert/update documents with versioning */
6006
+ versionedUpdate?: VersionedDocumentUpdateOperation;
6007
+ /** delete by document ids with versioning */
6008
+ versionedDeleteByIds?: VersionedDeleteByIdsOperation;
6009
+ }
6010
+ interface InternalDocument {
6011
+ /** document with mandatory fields (id) and with fields specific to the type of the document */
6012
+ document?: Record<string, any> | null;
6013
+ }
6014
+ interface InternalDocumentUpdateOperation {
6015
+ /** documents to index or update */
6016
+ documents?: InternalDocument[];
6017
+ }
6018
+ interface DeleteByIdsOperation {
6019
+ /** ids of the documents to delete */
6020
+ documentIds?: string[];
6021
+ /**
6022
+ * tenant id for custom tenancy strategy
6023
+ * @minLength 2
6024
+ * @maxLength 300
6025
+ */
6026
+ tenantId?: string | null;
6027
+ }
6028
+ interface DeleteByFilterOperation {
6029
+ /** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
6030
+ filter?: Record<string, any> | null;
6031
+ /**
6032
+ * tenant id for custom tenancy strategy
6033
+ * @minLength 2
6034
+ * @maxLength 300
6035
+ */
6036
+ tenantId?: string | null;
6037
+ }
6038
+ interface InternalDocumentUpdateByFilterOperation {
6039
+ /** documents matching this filter will be updated */
6040
+ filter?: Record<string, any> | null;
6041
+ /** partial document to apply */
6042
+ document?: InternalDocument;
6043
+ /**
6044
+ * tenant id for custom tenancy strategy
6045
+ * @minLength 2
6046
+ * @maxLength 300
6047
+ */
6048
+ tenantId?: string | null;
6049
+ }
6050
+ interface InternalUpdateExistingOperation {
6051
+ /** documents to update */
6052
+ documents?: InternalDocument[];
6053
+ }
6054
+ interface VersionedDocumentUpdateOperation {
6055
+ /** documents to create or overwrite */
6056
+ documents?: InternalDocument[];
6057
+ /** versioning mode to use instead of default */
6058
+ versioningMode?: VersioningModeWithLiterals;
6059
+ }
6060
+ declare enum VersioningMode {
6061
+ /** use default versioning mode agreed with search team */
6062
+ DEFAULT = "DEFAULT",
6063
+ /** execute only if version is greater than existing */
6064
+ GREATER_THAN = "GREATER_THAN",
6065
+ /** execute only if version is greater or equal to existing */
6066
+ GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
6067
+ }
6068
+ /** @enumType */
6069
+ type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
6070
+ interface VersionedDeleteByIdsOperation {
6071
+ /** ids with version of the documents to delete */
6072
+ documentIds?: VersionedDocumentId[];
6073
+ /**
6074
+ * tenant id for custom tenancy strategy
6075
+ * @minLength 2
6076
+ * @maxLength 300
6077
+ */
6078
+ tenantId?: string | null;
6079
+ }
6080
+ interface VersionedDocumentId {
6081
+ /** document id */
6082
+ documentId?: string;
6083
+ /** document version */
6084
+ version?: string;
6085
+ /** versioning mode to use instead of default */
6086
+ versioningMode?: VersioningModeWithLiterals;
6087
+ }
6088
+ interface TriggerReindexRequest {
6089
+ /** @format GUID */
6090
+ metasiteId?: string;
6091
+ /**
6092
+ * @minLength 1
6093
+ * @maxLength 100
6094
+ * @maxSize 100
6095
+ */
6096
+ orderIds?: string[];
6097
+ }
6098
+ interface TriggerReindexResponse {
6099
+ }
6100
+ interface TriggerReindexOrderRequest {
6101
+ /** @format GUID */
6102
+ metasiteId?: string;
6103
+ /**
6104
+ * @minLength 1
6105
+ * @maxLength 100
6106
+ */
6107
+ orderId?: string;
6108
+ }
6109
6109
  interface DiffmatokyPayload {
6110
6110
  left?: string;
6111
6111
  right?: string;
@@ -9492,4 +9492,4 @@ interface BulkUpdateOrderTagsOptions {
9492
9492
  unassignTags?: TagsTags;
9493
9493
  }
9494
9494
 
9495
- export { type CancelOrderApplicationErrors as $, type BulkUpdateOrdersOptions as A, type BulkDeleteImportedOrdersResponse as B, type CreatePaymentGatewayOrderResponse as C, type BulkUpdateOrdersResponse as D, type UpdateOrderLineItemIdentifiers as E, type UpdateOrderLineItem as F, type GetPaymentCollectabilityStatusResponse as G, type UpdateOrderLineItemResponse as H, type ImportOrderResponse as I, type PublicActivity as J, type AddActivityResponse as K, type AddActivitiesOptions as L, type MarkOrderAsPaidResponse as M, type AddActivitiesResponse as N, type Order as O, type Price as P, type UpdateActivityIdentifiers as Q, type RecordManuallyCollectedPaymentOptions as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type UpdateActivityResponse as W, type DeleteActivityIdentifiers as X, type DeleteActivityResponse as Y, type CancelOrderOptions as Z, type CancelOrderResponse as _, type SetOrderNumberCounterResponse as a, MembershipPaymentStatus as a$, type OrderStatusWithLiterals as a0, type UpdateOrderStatusResponse as a1, type UpdateOrderStatusApplicationErrors as a2, type AggregateOrdersOptions as a3, type AggregateOrdersResponse as a4, type BulkUpdateOrderTagsOptions as a5, type BulkUpdateOrderTagsResponse as a6, type OrderApprovedEnvelope as a7, type OrderCanceledEnvelope as a8, type OrderCommittedEnvelope as a9, OrderActionType as aA, SpecificItemsCouponBehavior 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, Origin as aM, ScheduledAction as aN, DurationUnit as aO, PaymentCollectabilityStatus as aP, PredefinedPaymentMethod as aQ, RefundableStatus as aR, NonRefundableReason as aS, ManuallyRefundableReason as aT, RestockType as aU, TransactionStatus as aV, AuthorizationCaptureStatus as aW, AuthorizationVoidStatus as aX, Reason as aY, ActionType as aZ, ChargebackStatus as a_, type OrderCreatedEnvelope as aa, type OrderFulfilledEnvelope as ab, type OrderPaymentStatusUpdatedEnvelope as ac, type OrderUpdatedEnvelope as ad, DescriptionLineType as ae, DimensionsUnit as af, ItemTypePreset as ag, PaymentOptionType as ah, JurisdictionType as ai, SubscriptionFrequency as aj, AdjustmentType as ak, TaxableAddressType as al, PaymentStatusEnumPaymentStatus as am, FulfillmentStatus as an, WeightUnit as ao, VatType as ap, PickupMethod as aq, OrderStatus as ar, DiscountType as as, DiscountReason as at, LineItemQuantityChangeType as au, ActivityType as av, OrderActivityTypeEnumActivityType as aw, AttributionSource as ax, ChannelType as ay, AdditionalFeeSource as az, type PreparePaymentCollectionOptions as b, type TaxSummary as b$, PaymentStatus as b0, RefundStatus as b1, SortOrder as b2, OrderApprovalStrategy as b3, Placement as b4, SubdivisionType as b5, SourceType as b6, CustomFieldGroup as b7, ValueType as b8, DepositType as b9, type BillingAdjustmentPriceSummary as bA, type PriceDescription as bB, type LocationAndQuantity as bC, type TaxableAddress as bD, type TaxableAddressTaxableAddressDataOneOf as bE, type ExtendedFields as bF, type ModifierGroup as bG, type TranslatableString as bH, type ItemModifier as bI, type BuyerInfo as bJ, type BuyerInfoIdOneOf as bK, type CurrencyConversionDetails as bL, type PriceSummary as bM, type AddressWithContact as bN, type Address as bO, type StreetAddress as bP, type AddressLocation as bQ, type FullAddressContactDetails as bR, type VatId as bS, type V1ShippingInformation as bT, type DeliveryLogistics as bU, type DeliveryLogisticsAddressOneOf as bV, type PickupDetails as bW, type PickupAddress as bX, type DeliveryTimeSlot as bY, type ShippingPrice as bZ, type ShippingRegion as b_, InvoiceStatus as ba, type OrderLineItem as bb, type ProductName as bc, type CatalogReference as bd, type DescriptionLine as be, type DescriptionLineValueOneOf as bf, type DescriptionLineDescriptionLineValueOneOf as bg, type DescriptionLineName as bh, type PlainTextValue as bi, type Color as bj, type FocalPoint as bk, type PhysicalProperties as bl, type Dimensions as bm, type ItemType as bn, type ItemTypeItemTypeDataOneOf as bo, type RestockLocation as bp, type ItemTaxFullDetails as bq, type LineItemTaxInfo as br, type LineItemTaxBreakdown as bs, type DigitalFile as bt, type SubscriptionInfo as bu, type SubscriptionTitle as bv, type SubscriptionDescription as bw, type SubscriptionSettings as bx, type FreeTrialPeriod as by, type BillingAdjustment as bz, type PreparePaymentCollectionResponse as c, type ReceiptSent as c$, type OrderTaxInfo as c0, type OrderTaxBreakdown as c1, type AppliedDiscount as c2, type AppliedDiscountDiscountSourceOneOf as c3, type Coupon as c4, type MerchantDiscount as c5, type MerchantDiscountMerchantDiscountReasonOneOf as c6, type DiscountRule as c7, type DiscountRuleName as c8, type LineItemDiscount as c9, type ShippingInformation as cA, type SavedPaymentMethod as cB, type AuthorizedPaymentCreated as cC, type AuthorizedPaymentCaptured as cD, type AuthorizedPaymentVoided as cE, type RefundInitiated as cF, type RefundedPayment as cG, type RefundedPaymentKindOneOf as cH, type RegularPaymentRefund as cI, type GiftCardPaymentRefund as cJ, type MembershipPaymentRefund as cK, type PaymentRefunded as cL, type PaymentRefundFailed as cM, type RefundedAsStoreCredit as cN, type PaymentPending as cO, type PaymentPendingPaymentDetailsOneOf as cP, type RegularPayment as cQ, type RegularPaymentPaymentMethodDetailsOneOf as cR, type CreditCardDetails as cS, type PaymentCanceled as cT, type PaymentCanceledPaymentDetailsOneOf as cU, type PaymentDeclined as cV, type PaymentDeclinedPaymentDetailsOneOf as cW, type ReceiptCreated as cX, type ReceiptCreatedReceiptInfoOneOf as cY, type WixReceipt as cZ, type ExternalReceipt as c_, type ItemCombination as ca, type ItemCombinationLineItem as cb, type Activity as cc, type ActivityContentOneOf as cd, type CustomActivity as ce, type MerchantComment as cf, type OrderRefunded as cg, type OrderCreatedFromExchange as ch, type NewExchangeOrderCreated as ci, type LineItemExchangeData as cj, type DraftOrderChangesApplied as ck, type OrderChange as cl, type OrderChangeValueOneOf as cm, type LineItemChanges as cn, type LineItemQuantityChange as co, type LineItemPriceChange as cp, type LineItemProductNameChange as cq, type LineItemDescriptionLineChange as cr, type LineItemModifiersChange as cs, type ManagedLineItem as ct, type ManagedDiscount as cu, type TranslatedValue as cv, type LineItemAmount as cw, type ManagedAdditionalFee as cx, type TotalPriceChange as cy, type ShippingInformationChange as cz, type PreparePaymentCollectionApplicationErrors as d, type UpdateInternalDocumentsEventOperationOneOf as d$, type ReceiptSentReceiptInfoOneOf as d0, type ChargebackCreated as d1, type ChargebackReversed as d2, type CreatedBy as d3, type CreatedByStringOneOf as d4, type ChannelInfo as d5, type CustomField as d6, type BalanceSummary as d7, type Balance as d8, type CashRounding as d9, type CommittedDiffs as dA, type CommittedDiffsShippingUpdateInfoOneOf as dB, type ItemChangedDetails as dC, type OrderLineItemChangedDetails as dD, type LineItemDelta as dE, type LineItemDeltaDeltaOneOf as dF, type AppliedDiscountDelta as dG, type AppliedDiscountDeltaDeltaOneOf as dH, type AdditionalFeeDelta as dI, type AdditionalFeeDeltaDeltaOneOf as dJ, type DraftOrderCommitSettings as dK, type InventoryUpdateDetails as dL, type ImportOrderRequest as dM, type SetOrderNumberCounterRequest as dN, type BulkDeleteImportedOrdersRequest as dO, type DomainEvent as dP, type DomainEventBodyOneOf as dQ, type EntityCreatedEvent as dR, type RestoreInfo as dS, type EntityUpdatedEvent as dT, type EntityDeletedEvent as dU, type ActionEvent as dV, type MessageEnvelope as dW, type IdentificationData as dX, type IdentificationDataIdOneOf as dY, type AccountInfo as dZ, type UpdateInternalDocumentsEvent as d_, type AdditionalFee as da, type FulfillmentStatusesAggregate as db, type Tags as dc, type TagList as dd, type Location as de, type OrderSettings as df, type OrderSettingsAllowedActionsOneOf as dg, type OrderSettingsEditableByOneOf as dh, type CustomAllowedActions as di, type OwnerApps as dj, type FormInfo as dk, type FormIdentifier as dl, type PlatformFeeSummary as dm, type PlatformFee as dn, type OrderApproved as dp, type OrdersExperiments as dq, type OrderRejectedEventOrderRejected as dr, type OrderItemsRestocked as ds, type V1RestockItem as dt, type OrderImported as du, type ImportedOrderDeleted as dv, type PaymentStatusUpdated as dw, type FulfillmentStatusUpdated as dx, type OrderCanceledEventOrderCanceled as dy, type OrderDeltasCommitted as dz, type RecordManuallyCollectedPaymentApplicationErrors as e, type SiteDeleted as e$, type InternalDocument as e0, type InternalDocumentUpdateOperation as e1, type DeleteByIdsOperation as e2, type DeleteByFilterOperation as e3, type InternalDocumentUpdateByFilterOperation as e4, type InternalUpdateExistingOperation as e5, type VersionedDocumentUpdateOperation as e6, type VersionedDeleteByIdsOperation as e7, type VersionedDocumentId as e8, type TriggerReindexRequest as e9, type PreviewEmailByTypeResponse as eA, type PreviewRefundEmailRequest as eB, type RefundDetails as eC, type RefundItem as eD, type LineItemRefund as eE, type AdditionalFeeRefund as eF, type ShippingRefund as eG, type PreviewRefundEmailResponse as eH, type PreviewCancelEmailRequest as eI, type PreviewCancelEmailResponse as eJ, type PreviewCancelRefundEmailRequest as eK, type PreviewCancelRefundEmailResponse as eL, type PreviewBuyerPaymentsReceivedEmailRequest as eM, type PreviewBuyerPaymentsReceivedEmailResponse as eN, type PreviewBuyerConfirmationEmailRequest as eO, type PreviewBuyerConfirmationEmailResponse as eP, type PreviewBuyerPickupConfirmationEmailRequest as eQ, type PreviewBuyerPickupConfirmationEmailResponse as eR, type PreviewShippingConfirmationEmailRequest as eS, type PreviewShippingConfirmationEmailResponse as eT, type PreviewResendDownloadLinksEmailRequest as eU, type PreviewResendDownloadLinksEmailResponse as eV, type MetaSiteSpecialEvent as eW, type MetaSiteSpecialEventPayloadOneOf as eX, type Asset as eY, type SiteCreated as eZ, type SiteTransferred as e_, type TriggerReindexResponse as ea, type Empty as eb, type TriggerReindexOrderRequest as ec, type SendBuyerConfirmationEmailRequest as ed, type SendBuyerConfirmationEmailResponse as ee, type SendBuyerPaymentsReceivedEmailRequest as ef, type SendBuyerPaymentsReceivedEmailResponse as eg, type SendBuyerPickupConfirmationEmailRequest as eh, type SendBuyerPickupConfirmationEmailResponse as ei, type BulkSendBuyerPickupConfirmationEmailsRequest as ej, type BulkSendBuyerPickupConfirmationEmailsResponse as ek, type SendBuyerShippingConfirmationEmailRequest as el, type SendBuyerShippingConfirmationEmailResponse as em, type BulkSendBuyerShippingConfirmationEmailsRequest as en, type BulkSendBuyerShippingConfirmationEmailsResponse as eo, type SendMerchantOrderReceivedNotificationRequest as ep, type SendMerchantOrderReceivedNotificationResponse as eq, type SendCancelRefundEmailRequest as er, type SendCancelRefundEmailResponse as es, type SendRefundEmailRequest as et, type SendRefundEmailResponse as eu, type SendFulfillmentEmailRequest as ev, type SendFulfillmentEmailResponse as ew, type SendMerchantOrderReceivedPushRequest as ex, type SendMerchantOrderReceivedPushResponse as ey, type PreviewEmailByTypeRequest as ez, type PaymentCollectionMarkOrderAsPaidOptions as f, type Payment as f$, type DeleteContext as f0, type SiteUndeleted as f1, type SitePublished as f2, type SiteUnpublished as f3, type SiteMarkedAsTemplate as f4, type SiteMarkedAsWixSite as f5, type ServiceProvisioned as f6, type ServiceRemoved as f7, type SiteRenamed as f8, type SiteHardDeleted as f9, type Duration as fA, type GetPaymentCollectabilityStatusRequest as fB, type RecordManuallyCollectedPaymentRequest as fC, type UserDefinedPaymentMethodName as fD, type UserDefinedPaymentMethodNameKindOneOf as fE, type RecordManuallyCollectedPaymentResponse as fF, type MarkOrderAsPaidRequest as fG, type BulkMarkOrdersAsPaidRequest as fH, type BulkOrderResult as fI, type ItemMetadata as fJ, type ApplicationError as fK, type BulkActionMetadata as fL, type GetRefundabilityStatusRequest as fM, type Refundability as fN, type RefundabilityAdditionalRefundabilityInfoOneOf as fO, type CreatePaymentGatewayOrderRequest as fP, type ChargedBy as fQ, type ChargeMembershipsRequest as fR, type MembershipChargeItem as fS, type MembershipName as fT, type ServiceProperties as fU, type ChargeMembershipsResponse as fV, type TriggerRefundRequest as fW, type RefundSideEffects as fX, type RestockInfo as fY, type RestockItem as fZ, type OrderTransactions as f_, type NamespaceChanged as fa, type StudioAssigned as fb, type StudioUnassigned as fc, type SiteUrlChanged as fd, type SitePurgedExternally as fe, type OdeditorAssigned as ff, type OdeditorUnassigned as fg, type PicassoAssigned as fh, type PicassoUnassigned as fi, type WixelAssigned as fj, type WixelUnassigned as fk, type StudioTwoAssigned as fl, type StudioTwoUnassigned as fm, type UserDomainMediaEnabled as fn, type UserDomainMediaDisabled as fo, type EditorlessAssigned as fp, type EditorlessUnassigned as fq, type HasCustomEmailConfigurationsRequest as fr, type HasCustomEmailConfigurationsResponse as fs, type AddToAutomationMigrationPopulationRequest as ft, type AddToAutomationMigrationPopulationResponse as fu, type IsInAutomationMigrationPopulationRequest as fv, type IsInAutomationMigrationPopulationResponse as fw, type PreparePaymentCollectionRequest as fx, type RedirectUrls as fy, type DelayedCaptureSettings as fz, type PaymentCollectionMarkOrderAsPaidApplicationErrors as g, type DraftOrderDiffsRecipientUpdateInfoOneOf as g$, type PaymentPaymentDetailsOneOf as g0, type PaymentReceiptInfoOneOf as g1, type RegularPaymentDetails as g2, type RegularPaymentDetailsPaymentMethodDetailsOneOf as g3, type CreditCardPaymentMethodDetails as g4, type AuthorizationDetails as g5, type AuthorizationCapture as g6, type AuthorizationActionFailureDetails as g7, type AuthorizationVoid as g8, type V1ScheduledAction as g9, type PlatformQuery as gA, type PlatformQueryPagingMethodOneOf as gB, type Sorting as gC, type PlatformPaging as gD, type CursorPaging as gE, type InternalQueryOrdersResponse as gF, type PlatformPagingMetadata as gG, type Cursors as gH, type QueryOrderRequest as gI, type QueryOrderResponse as gJ, type SearchOrdersRequest as gK, type CursorSearch as gL, type CursorSearchPagingMethodOneOf as gM, type CursorPagingMetadata as gN, type CreateOrderRequest as gO, type OrderCreationSettings as gP, type OrderCreationSettingsEditableByOneOf as gQ, type OrderCreateNotifications as gR, type CreateOrderResponse as gS, type UpdateOrderRequest as gT, type UpdateOrderResponse as gU, type BulkUpdateOrdersRequest as gV, type CommitDeltasRequest as gW, type DraftOrderDiffs as gX, type DraftOrderDiffsShippingUpdateInfoOneOf as gY, type DraftOrderDiffsBuyerUpdateInfoOneOf as gZ, type DraftOrderDiffsBillingUpdateInfoOneOf as g_, type Chargeback as ga, type PaymentMethodName as gb, type GiftCardPaymentDetails as gc, type MembershipPaymentDetails as gd, type WixReceiptInfo as ge, type ExternalReceiptInfo as gf, type CashRoundingDetails as gg, type Refund as gh, type RefundTransaction as gi, type RefundStatusInfo as gj, type AggregatedRefundSummary as gk, type RefundItemsBreakdown as gl, type LineItemRefundSummary as gm, type CalculateRefundRequest as gn, type CalculateRefundItemRequest as go, type CalculateRefundResponse as gp, type CalculateRefundItemResponse as gq, type VoidAuthorizedPaymentsRequest as gr, type CaptureAuthorizedPaymentsRequest as gs, type ChargeSavedPaymentMethodRequest as gt, type ChargeSavedPaymentMethodResponse as gu, type DiffmatokyPayload as gv, type ErrorInformation as gw, type GetOrderRequest as gx, type GetOrderResponse as gy, type InternalQueryOrdersRequest as gz, type BulkMarkOrdersAsPaidResponse as h, type MarkAsFulfilledRequest as h$, type V1LineItemDelta as h0, type V1LineItemDeltaDeltaOneOf as h1, type CommitDeltasResponse as h2, type ArchiveOrderRequest as h3, type ArchiveOrderResponse as h4, type BulkArchiveOrdersRequest as h5, type BulkArchiveOrdersResponse as h6, type BulkArchiveOrdersByFilterRequest as h7, type BulkArchiveOrdersByFilterResponse as h8, type UnArchiveOrderRequest as h9, type DownloadLinkSent as hA, type TrackingNumberAdded as hB, type TrackingNumberEdited as hC, type TrackingLinkAdded as hD, type ShippingConfirmationEmailSent as hE, type InvoiceAdded as hF, type InvoiceSent as hG, type FulfillerEmailSent as hH, type ShippingAddressEdited as hI, type EmailEdited as hJ, type PickupReadyEmailSent as hK, type OrderPartiallyPaid as hL, type OrderPending as hM, type OrderRejected as hN, type AddInternalActivityResponse as hO, type AddActivityRequest as hP, type PublicActivityContentOneOf as hQ, type AddActivitiesRequest as hR, type UpdateActivityRequest as hS, type DeleteActivityRequest as hT, type UpdateLineItemsDescriptionLinesRequest as hU, type LineItemUpdate as hV, type UpdateLineItemsDescriptionLinesResponse as hW, type MarkOrderAsSeenByHumanRequest as hX, type MarkOrderAsSeenByHumanResponse as hY, type CancelOrderRequest as hZ, type UpdateOrderStatusRequest as h_, type UnArchiveOrderResponse as ha, type BulkUnArchiveOrdersRequest as hb, type BulkUnArchiveOrdersResponse as hc, type BulkUnArchiveOrdersByFilterRequest as hd, type BulkUnArchiveOrdersByFilterResponse as he, type UpdateBuyerInfoRequest as hf, type BuyerInfoUpdate as hg, type UpdateBuyerInfoResponse as hh, type UpdateBuyerEmailRequest as hi, type UpdateBuyerEmailResponse as hj, type UpdateOrderShippingAddressRequest as hk, type UpdateOrderShippingAddressResponse as hl, type UpdateBillingContactDetailsRequest as hm, type UpdateBillingContactDetailsResponse as hn, type UpdateOrderLineItemRequest as ho, type UpdateOrderLineItemsRequest as hp, type MaskedOrderLineItem as hq, type UpdateOrderLineItemsResponse as hr, type AddInternalActivityRequest as hs, type InternalActivity as ht, type InternalActivityContentOneOf as hu, type OrderPlaced as hv, type OrderPaid as hw, type OrderFulfilled as hx, type OrderNotFulfilled as hy, type OrderCanceled as hz, type GetRefundabilityStatusResponse as i, type ItemizedFee as i$, type MarkAsFulfilledResponse as i0, type BulkMarkAsFulfilledRequest as i1, type BulkMarkAsFulfilledResponse as i2, type BulkMarkAsFulfilledByFilterRequest as i3, type BulkMarkAsFulfilledByFilterResponse as i4, type MarkAsUnfulfilledRequest as i5, type MarkAsUnfulfilledResponse as i6, type BulkMarkAsUnfulfilledRequest as i7, type BulkMarkAsUnfulfilledResponse as i8, type BulkMarkAsUnfulfilledByFilterRequest as i9, type TaskAction as iA, type TaskActionActionOneOf as iB, type Complete as iC, type Cancel as iD, type Reschedule as iE, type InvoiceSentEvent as iF, type IdAndVersion as iG, type InvoiceFields as iH, type Customer as iI, type Email as iJ, type QuotesAddress as iK, type AddressDescription as iL, type Phone as iM, type Company as iN, type CommonAddress as iO, type CommonAddressStreetOneOf as iP, type Subdivision as iQ, type StandardDetails as iR, type InvoiceDates as iS, type LineItems as iT, type LineItem as iU, type BigDecimalWrapper as iV, type LineItemTax as iW, type Source as iX, type LineItemMetaData as iY, type Locale as iZ, type TotalPrice as i_, type BulkMarkAsUnfulfilledByFilterResponse as ia, type BulkSetBusinessLocationRequest as ib, type BulkSetBusinessLocationResponse as ic, type BulkSetBusinessLocationResult as id, type V1MarkOrderAsPaidRequest as ie, type V1MarkOrderAsPaidResponse as ig, type V1BulkMarkOrdersAsPaidRequest as ih, type V1BulkMarkOrdersAsPaidResponse as ii, type V1CreatePaymentGatewayOrderRequest as ij, type V1CreatePaymentGatewayOrderResponse as ik, type GetShipmentsRequest as il, type GetShipmentsResponse as im, type AggregateOrdersRequest as io, type DecrementItemsQuantityRequest as ip, type DecrementData as iq, type DecrementItemsQuantityResponse as ir, type BulkUpdateOrderTagsRequest as is, type TagsTags as it, type TagsTagList as iu, type BulkUpdateOrderTagsResult as iv, type SendOrderUpdatedDomainEventRequest as iw, type SendOrderUpdatedDomainEventResponse as ix, type Task as iy, type TaskKey as iz, type PaymentCollectionCreatePaymentGatewayOrderOptions as j, type ChargebackStatusWithLiterals as j$, type Discount as j0, type DiscountOneDiscountTypeOneOf as j1, type CalculatedTaxes as j2, type CalculatedTax as j3, type Payments as j4, type InvoicesPayment as j5, type MetaData as j6, type InvoiceDynamicPriceTotals as j7, type CustomFieldValue as j8, type Value as j9, type AdditionalFeeSourceWithLiterals as jA, type OrderActionTypeWithLiterals as jB, type SpecificItemsCouponBehaviorWithLiterals as jC, type ChargeTypeWithLiterals as jD, type DeltaPaymentOptionTypeWithLiterals as jE, type InventoryActionWithLiterals as jF, type WebhookIdentityTypeWithLiterals as jG, type VersioningModeWithLiterals as jH, type PreviewEmailTypeWithLiterals as jI, type StateWithLiterals as jJ, type SiteCreatedContextWithLiterals as jK, type NamespaceWithLiterals as jL, type DeleteStatusWithLiterals as jM, type OriginWithLiterals as jN, type ScheduledActionWithLiterals as jO, type DurationUnitWithLiterals as jP, type PaymentCollectabilityStatusWithLiterals as jQ, type PredefinedPaymentMethodWithLiterals as jR, type RefundableStatusWithLiterals as jS, type NonRefundableReasonWithLiterals as jT, type ManuallyRefundableReasonWithLiterals as jU, type RestockTypeWithLiterals as jV, type TransactionStatusWithLiterals as jW, type AuthorizationCaptureStatusWithLiterals as jX, type AuthorizationVoidStatusWithLiterals as jY, type ReasonWithLiterals as jZ, type ActionTypeWithLiterals as j_, type Deposit as ja, type BaseEventMetadata as jb, type EventMetadata as jc, type AccountInfoMetadata as jd, type OrderSearchSpec as je, utils as jf, type DescriptionLineTypeWithLiterals as jg, type DimensionsUnitWithLiterals as jh, type ItemTypePresetWithLiterals as ji, type PaymentOptionTypeWithLiterals as jj, type JurisdictionTypeWithLiterals as jk, type SubscriptionFrequencyWithLiterals as jl, type AdjustmentTypeWithLiterals as jm, type TaxableAddressTypeWithLiterals as jn, type PaymentStatusEnumPaymentStatusWithLiterals as jo, type FulfillmentStatusWithLiterals as jp, type WeightUnitWithLiterals as jq, type VatTypeWithLiterals as jr, type PickupMethodWithLiterals as js, type DiscountTypeWithLiterals as jt, type DiscountReasonWithLiterals as ju, type LineItemQuantityChangeTypeWithLiterals as jv, type ActivityTypeWithLiterals as jw, type OrderActivityTypeEnumActivityTypeWithLiterals as jx, type AttributionSourceWithLiterals as jy, type ChannelTypeWithLiterals as jz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as k, type MembershipPaymentStatusWithLiterals as k0, type PaymentStatusWithLiterals as k1, type RefundStatusWithLiterals as k2, type SortOrderWithLiterals as k3, type OrderApprovalStrategyWithLiterals as k4, type PlacementWithLiterals as k5, type SubdivisionTypeWithLiterals as k6, type SourceTypeWithLiterals as k7, type CustomFieldGroupWithLiterals as k8, type ValueTypeWithLiterals as k9, updateOrder as kA, bulkUpdateOrders as kB, updateOrderLineItem as kC, addActivity as kD, addActivities as kE, updateActivity as kF, deleteActivity as kG, cancelOrder as kH, updateOrderStatus as kI, aggregateOrders as kJ, bulkUpdateOrderTags as kK, type DepositTypeWithLiterals as ka, type InvoiceStatusWithLiterals as kb, type CommonSearchWithEntityContext as kc, onOrderApproved as kd, onOrderCanceled as ke, onOrderCommitted as kf, onOrderCreated as kg, onOrderFulfilled as kh, onOrderPaymentStatusUpdated as ki, onOrderUpdated as kj, importOrder as kk, setOrderNumberCounter as kl, bulkDeleteImportedOrders as km, preparePaymentCollection as kn, getPaymentCollectabilityStatus as ko, recordManuallyCollectedPayment as kp, paymentCollectionMarkOrderAsPaid as kq, paymentCollectionBulkMarkOrdersAsPaid as kr, getRefundabilityStatus as ks, paymentCollectionCreatePaymentGatewayOrder as kt, chargeMemberships as ku, triggerRefund as kv, voidAuthorizedPayments as kw, captureAuthorizedPayments as kx, getOrder as ky, createOrder as kz, type ChargeMembershipsOptions as l, type PaymentRefund as m, type TriggerRefundResponse as n, type TriggerRefundApplicationErrors as o, type VoidAuthorizedPaymentsApplicationErrors as p, type PaymentCapture as q, type CaptureAuthorizedPaymentsResponse as r, type CaptureAuthorizedPaymentsApplicationErrors as s, type GetOrderApplicationErrors as t, type OrderSearch as u, type SearchOrdersResponse as v, type CreateOrderOptions as w, type CreateOrderApplicationErrors as x, type UpdateOrderApplicationErrors as y, type MaskedOrder as z };
9495
+ export { type CancelOrderApplicationErrors as $, type BulkUpdateOrdersOptions as A, type BulkDeleteImportedOrdersResponse as B, type CreatePaymentGatewayOrderResponse as C, type BulkUpdateOrdersResponse as D, type UpdateOrderLineItemIdentifiers as E, type UpdateOrderLineItem as F, type GetPaymentCollectabilityStatusResponse as G, type UpdateOrderLineItemResponse as H, type ImportOrderResponse as I, type PublicActivity as J, type AddActivityResponse as K, type AddActivitiesOptions as L, type MarkOrderAsPaidResponse as M, type AddActivitiesResponse as N, type Order as O, type Price as P, type UpdateActivityIdentifiers as Q, type RecordManuallyCollectedPaymentOptions as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type UpdateActivityResponse as W, type DeleteActivityIdentifiers as X, type DeleteActivityResponse as Y, type CancelOrderOptions as Z, type CancelOrderResponse as _, type SetOrderNumberCounterResponse as a, PaymentStatus as a$, type OrderStatusWithLiterals as a0, type UpdateOrderStatusResponse as a1, type UpdateOrderStatusApplicationErrors as a2, type AggregateOrdersOptions as a3, type AggregateOrdersResponse as a4, type BulkUpdateOrderTagsOptions as a5, type BulkUpdateOrderTagsResponse as a6, type OrderApprovedEnvelope as a7, type OrderCanceledEnvelope as a8, type OrderCommittedEnvelope as a9, OrderActionType as aA, SpecificItemsCouponBehavior 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, Origin 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 OrderCreatedEnvelope as aa, type OrderFulfilledEnvelope as ab, type OrderPaymentStatusUpdatedEnvelope as ac, type OrderUpdatedEnvelope as ad, DescriptionLineType as ae, DimensionsUnit as af, ItemTypePreset as ag, PaymentOptionType as ah, JurisdictionType as ai, SubscriptionFrequency as aj, AdjustmentType as ak, TaxableAddressType as al, PaymentStatusEnumPaymentStatus as am, FulfillmentStatus as an, WeightUnit as ao, VatType as ap, PickupMethod as aq, OrderStatus as ar, DiscountType as as, DiscountReason as at, LineItemQuantityChangeType as au, ActivityType as av, OrderActivityTypeEnumActivityType as aw, AttributionSource as ax, ChannelType as ay, AdditionalFeeSource as az, type PreparePaymentCollectionOptions as b, type TaxSummary as b$, RefundStatus as b0, VersioningMode as b1, SortOrder as b2, OrderApprovalStrategy as b3, Placement as b4, SubdivisionType as b5, SourceType as b6, CustomFieldGroup as b7, ValueType as b8, DepositType as b9, type BillingAdjustmentPriceSummary as bA, type PriceDescription as bB, type LocationAndQuantity as bC, type TaxableAddress as bD, type TaxableAddressTaxableAddressDataOneOf as bE, type ExtendedFields as bF, type ModifierGroup as bG, type TranslatableString as bH, type ItemModifier as bI, type BuyerInfo as bJ, type BuyerInfoIdOneOf as bK, type CurrencyConversionDetails as bL, type PriceSummary as bM, type AddressWithContact as bN, type Address as bO, type StreetAddress as bP, type AddressLocation as bQ, type FullAddressContactDetails as bR, type VatId as bS, type V1ShippingInformation as bT, type DeliveryLogistics as bU, type DeliveryLogisticsAddressOneOf as bV, type PickupDetails as bW, type PickupAddress as bX, type DeliveryTimeSlot as bY, type ShippingPrice as bZ, type ShippingRegion as b_, InvoiceStatus as ba, type OrderLineItem as bb, type ProductName as bc, type CatalogReference as bd, type DescriptionLine as be, type DescriptionLineValueOneOf as bf, type DescriptionLineDescriptionLineValueOneOf as bg, type DescriptionLineName as bh, type PlainTextValue as bi, type Color as bj, type FocalPoint as bk, type PhysicalProperties as bl, type Dimensions as bm, type ItemType as bn, type ItemTypeItemTypeDataOneOf as bo, type RestockLocation as bp, type ItemTaxFullDetails as bq, type LineItemTaxInfo as br, type LineItemTaxBreakdown as bs, type DigitalFile as bt, type SubscriptionInfo as bu, type SubscriptionTitle as bv, type SubscriptionDescription as bw, type SubscriptionSettings as bx, type FreeTrialPeriod as by, type BillingAdjustment as bz, type PreparePaymentCollectionResponse as c, type ReceiptSent as c$, type OrderTaxInfo as c0, type OrderTaxBreakdown as c1, type AppliedDiscount as c2, type AppliedDiscountDiscountSourceOneOf as c3, type Coupon as c4, type MerchantDiscount as c5, type MerchantDiscountMerchantDiscountReasonOneOf as c6, type DiscountRule as c7, type DiscountRuleName as c8, type LineItemDiscount as c9, type ShippingInformation as cA, type SavedPaymentMethod as cB, type AuthorizedPaymentCreated as cC, type AuthorizedPaymentCaptured as cD, type AuthorizedPaymentVoided as cE, type RefundInitiated as cF, type RefundedPayment as cG, type RefundedPaymentKindOneOf as cH, type RegularPaymentRefund as cI, type GiftCardPaymentRefund as cJ, type MembershipPaymentRefund as cK, type PaymentRefunded as cL, type PaymentRefundFailed as cM, type RefundedAsStoreCredit as cN, type PaymentPending as cO, type PaymentPendingPaymentDetailsOneOf as cP, type RegularPayment as cQ, type RegularPaymentPaymentMethodDetailsOneOf as cR, type CreditCardDetails as cS, type PaymentCanceled as cT, type PaymentCanceledPaymentDetailsOneOf as cU, type PaymentDeclined as cV, type PaymentDeclinedPaymentDetailsOneOf as cW, type ReceiptCreated as cX, type ReceiptCreatedReceiptInfoOneOf as cY, type WixReceipt as cZ, type ExternalReceipt as c_, type ItemCombination as ca, type ItemCombinationLineItem as cb, type Activity as cc, type ActivityContentOneOf as cd, type CustomActivity as ce, type MerchantComment as cf, type OrderRefunded as cg, type OrderCreatedFromExchange as ch, type NewExchangeOrderCreated as ci, type LineItemExchangeData as cj, type DraftOrderChangesApplied as ck, type OrderChange as cl, type OrderChangeValueOneOf as cm, type LineItemChanges as cn, type LineItemQuantityChange as co, type LineItemPriceChange as cp, type LineItemProductNameChange as cq, type LineItemDescriptionLineChange as cr, type LineItemModifiersChange as cs, type ManagedLineItem as ct, type ManagedDiscount as cu, type TranslatedValue as cv, type LineItemAmount as cw, type ManagedAdditionalFee as cx, type TotalPriceChange as cy, type ShippingInformationChange as cz, type PreparePaymentCollectionApplicationErrors as d, type SendBuyerConfirmationEmailResponse as d$, type ReceiptSentReceiptInfoOneOf as d0, type ChargebackCreated as d1, type ChargebackReversed as d2, type CreatedBy as d3, type CreatedByStringOneOf as d4, type ChannelInfo as d5, type CustomField as d6, type BalanceSummary as d7, type Balance as d8, type CashRounding as d9, type CommittedDiffs as dA, type CommittedDiffsShippingUpdateInfoOneOf as dB, type ItemChangedDetails as dC, type OrderLineItemChangedDetails as dD, type LineItemDelta as dE, type LineItemDeltaDeltaOneOf as dF, type AppliedDiscountDelta as dG, type AppliedDiscountDeltaDeltaOneOf as dH, type AdditionalFeeDelta as dI, type AdditionalFeeDeltaDeltaOneOf as dJ, type DraftOrderCommitSettings as dK, type InventoryUpdateDetails as dL, type ImportOrderRequest as dM, type SetOrderNumberCounterRequest as dN, type BulkDeleteImportedOrdersRequest as dO, type DomainEvent as dP, type DomainEventBodyOneOf as dQ, type EntityCreatedEvent as dR, type RestoreInfo as dS, type EntityUpdatedEvent as dT, type EntityDeletedEvent as dU, type ActionEvent as dV, type MessageEnvelope as dW, type IdentificationData as dX, type IdentificationDataIdOneOf as dY, type AccountInfo as dZ, type SendBuyerConfirmationEmailRequest as d_, type AdditionalFee as da, type FulfillmentStatusesAggregate as db, type Tags as dc, type TagList as dd, type Location as de, type OrderSettings as df, type OrderSettingsAllowedActionsOneOf as dg, type OrderSettingsEditableByOneOf as dh, type CustomAllowedActions as di, type OwnerApps as dj, type FormInfo as dk, type FormIdentifier as dl, type PlatformFeeSummary as dm, type PlatformFee as dn, type OrderApproved as dp, type OrdersExperiments as dq, type OrderRejectedEventOrderRejected as dr, type OrderItemsRestocked as ds, type V1RestockItem as dt, type OrderImported as du, type ImportedOrderDeleted as dv, type PaymentStatusUpdated as dw, type FulfillmentStatusUpdated as dx, type OrderCanceledEventOrderCanceled as dy, type OrderDeltasCommitted as dz, type RecordManuallyCollectedPaymentApplicationErrors as e, type SiteUrlChanged as e$, type SendBuyerPaymentsReceivedEmailRequest as e0, type SendBuyerPaymentsReceivedEmailResponse as e1, type SendBuyerPickupConfirmationEmailRequest as e2, type SendBuyerPickupConfirmationEmailResponse as e3, type BulkSendBuyerPickupConfirmationEmailsRequest as e4, type BulkSendBuyerPickupConfirmationEmailsResponse as e5, type SendBuyerShippingConfirmationEmailRequest as e6, type SendBuyerShippingConfirmationEmailResponse as e7, type BulkSendBuyerShippingConfirmationEmailsRequest as e8, type BulkSendBuyerShippingConfirmationEmailsResponse as e9, type PreviewBuyerConfirmationEmailResponse as eA, type PreviewBuyerPickupConfirmationEmailRequest as eB, type PreviewBuyerPickupConfirmationEmailResponse as eC, type PreviewShippingConfirmationEmailRequest as eD, type PreviewShippingConfirmationEmailResponse as eE, type PreviewResendDownloadLinksEmailRequest as eF, type PreviewResendDownloadLinksEmailResponse as eG, type Empty as eH, type MetaSiteSpecialEvent as eI, type MetaSiteSpecialEventPayloadOneOf as eJ, type Asset as eK, type SiteCreated as eL, type SiteTransferred as eM, type SiteDeleted as eN, type DeleteContext as eO, type SiteUndeleted as eP, type SitePublished as eQ, type SiteUnpublished as eR, type SiteMarkedAsTemplate as eS, type SiteMarkedAsWixSite as eT, type ServiceProvisioned as eU, type ServiceRemoved as eV, type SiteRenamed as eW, type SiteHardDeleted as eX, type NamespaceChanged as eY, type StudioAssigned as eZ, type StudioUnassigned as e_, type SendMerchantOrderReceivedNotificationRequest as ea, type SendMerchantOrderReceivedNotificationResponse as eb, type SendCancelRefundEmailRequest as ec, type SendCancelRefundEmailResponse as ed, type SendRefundEmailRequest as ee, type SendRefundEmailResponse as ef, type SendFulfillmentEmailRequest as eg, type SendFulfillmentEmailResponse as eh, type SendMerchantOrderReceivedPushRequest as ei, type SendMerchantOrderReceivedPushResponse as ej, type PreviewEmailByTypeRequest as ek, type PreviewEmailByTypeResponse as el, type PreviewRefundEmailRequest as em, type RefundDetails as en, type RefundItem as eo, type LineItemRefund as ep, type AdditionalFeeRefund as eq, type ShippingRefund as er, type PreviewRefundEmailResponse as es, type PreviewCancelEmailRequest as et, type PreviewCancelEmailResponse as eu, type PreviewCancelRefundEmailRequest as ev, type PreviewCancelRefundEmailResponse as ew, type PreviewBuyerPaymentsReceivedEmailRequest as ex, type PreviewBuyerPaymentsReceivedEmailResponse as ey, type PreviewBuyerConfirmationEmailRequest as ez, type PaymentCollectionMarkOrderAsPaidOptions as f, type MembershipPaymentDetails as f$, type SitePurgedExternally as f0, type OdeditorAssigned as f1, type OdeditorUnassigned as f2, type PicassoAssigned as f3, type PicassoUnassigned as f4, type WixelAssigned as f5, type WixelUnassigned as f6, type StudioTwoAssigned as f7, type StudioTwoUnassigned as f8, type UserDomainMediaEnabled as f9, type RefundabilityAdditionalRefundabilityInfoOneOf as fA, type CreatePaymentGatewayOrderRequest as fB, type ChargedBy as fC, type ChargeMembershipsRequest as fD, type MembershipChargeItem as fE, type MembershipName as fF, type ServiceProperties as fG, type ChargeMembershipsResponse as fH, type TriggerRefundRequest as fI, type RefundSideEffects as fJ, type RestockInfo as fK, type RestockItem as fL, type OrderTransactions as fM, type Payment as fN, type PaymentPaymentDetailsOneOf as fO, type PaymentReceiptInfoOneOf as fP, type RegularPaymentDetails as fQ, type RegularPaymentDetailsPaymentMethodDetailsOneOf as fR, type CreditCardPaymentMethodDetails as fS, type AuthorizationDetails as fT, type AuthorizationCapture as fU, type AuthorizationActionFailureDetails as fV, type AuthorizationVoid as fW, type V1ScheduledAction as fX, type Chargeback as fY, type PaymentMethodName as fZ, type GiftCardPaymentDetails as f_, type UserDomainMediaDisabled as fa, type EditorlessAssigned as fb, type EditorlessUnassigned as fc, type HasCustomEmailConfigurationsRequest as fd, type HasCustomEmailConfigurationsResponse as fe, type AddToAutomationMigrationPopulationRequest as ff, type AddToAutomationMigrationPopulationResponse as fg, type IsInAutomationMigrationPopulationRequest as fh, type IsInAutomationMigrationPopulationResponse as fi, type PreparePaymentCollectionRequest as fj, type RedirectUrls as fk, type DelayedCaptureSettings as fl, type Duration as fm, type GetPaymentCollectabilityStatusRequest as fn, type RecordManuallyCollectedPaymentRequest as fo, type UserDefinedPaymentMethodName as fp, type UserDefinedPaymentMethodNameKindOneOf as fq, type RecordManuallyCollectedPaymentResponse as fr, type MarkOrderAsPaidRequest as fs, type BulkMarkOrdersAsPaidRequest as ft, type BulkOrderResult as fu, type ItemMetadata as fv, type ApplicationError as fw, type BulkActionMetadata as fx, type GetRefundabilityStatusRequest as fy, type Refundability as fz, type PaymentCollectionMarkOrderAsPaidApplicationErrors as g, type DraftOrderDiffsRecipientUpdateInfoOneOf as g$, type WixReceiptInfo as g0, type ExternalReceiptInfo as g1, type CashRoundingDetails as g2, type Refund as g3, type RefundTransaction as g4, type RefundStatusInfo as g5, type AggregatedRefundSummary as g6, type RefundItemsBreakdown as g7, type LineItemRefundSummary as g8, type CalculateRefundRequest as g9, type PlatformQuery as gA, type PlatformQueryPagingMethodOneOf as gB, type Sorting as gC, type PlatformPaging as gD, type CursorPaging as gE, type InternalQueryOrdersResponse as gF, type PlatformPagingMetadata as gG, type Cursors as gH, type QueryOrderRequest as gI, type QueryOrderResponse as gJ, type SearchOrdersRequest as gK, type CursorSearch as gL, type CursorSearchPagingMethodOneOf as gM, type CursorPagingMetadata as gN, type CreateOrderRequest as gO, type OrderCreationSettings as gP, type OrderCreationSettingsEditableByOneOf as gQ, type OrderCreateNotifications as gR, type CreateOrderResponse as gS, type UpdateOrderRequest as gT, type UpdateOrderResponse as gU, type BulkUpdateOrdersRequest as gV, type CommitDeltasRequest as gW, type DraftOrderDiffs as gX, type DraftOrderDiffsShippingUpdateInfoOneOf as gY, type DraftOrderDiffsBuyerUpdateInfoOneOf as gZ, type DraftOrderDiffsBillingUpdateInfoOneOf as g_, type CalculateRefundItemRequest as ga, type CalculateRefundResponse as gb, type CalculateRefundItemResponse as gc, type VoidAuthorizedPaymentsRequest as gd, type CaptureAuthorizedPaymentsRequest as ge, type ChargeSavedPaymentMethodRequest as gf, type ChargeSavedPaymentMethodResponse as gg, type UpdateInternalDocumentsEvent as gh, type UpdateInternalDocumentsEventOperationOneOf as gi, type InternalDocument as gj, type InternalDocumentUpdateOperation as gk, type DeleteByIdsOperation as gl, type DeleteByFilterOperation as gm, type InternalDocumentUpdateByFilterOperation as gn, type InternalUpdateExistingOperation as go, type VersionedDocumentUpdateOperation as gp, type VersionedDeleteByIdsOperation as gq, type VersionedDocumentId as gr, type TriggerReindexRequest as gs, type TriggerReindexResponse as gt, type TriggerReindexOrderRequest as gu, type DiffmatokyPayload as gv, type ErrorInformation as gw, type GetOrderRequest as gx, type GetOrderResponse as gy, type InternalQueryOrdersRequest as gz, type BulkMarkOrdersAsPaidResponse as h, type MarkAsFulfilledRequest as h$, type V1LineItemDelta as h0, type V1LineItemDeltaDeltaOneOf as h1, type CommitDeltasResponse as h2, type ArchiveOrderRequest as h3, type ArchiveOrderResponse as h4, type BulkArchiveOrdersRequest as h5, type BulkArchiveOrdersResponse as h6, type BulkArchiveOrdersByFilterRequest as h7, type BulkArchiveOrdersByFilterResponse as h8, type UnArchiveOrderRequest as h9, type DownloadLinkSent as hA, type TrackingNumberAdded as hB, type TrackingNumberEdited as hC, type TrackingLinkAdded as hD, type ShippingConfirmationEmailSent as hE, type InvoiceAdded as hF, type InvoiceSent as hG, type FulfillerEmailSent as hH, type ShippingAddressEdited as hI, type EmailEdited as hJ, type PickupReadyEmailSent as hK, type OrderPartiallyPaid as hL, type OrderPending as hM, type OrderRejected as hN, type AddInternalActivityResponse as hO, type AddActivityRequest as hP, type PublicActivityContentOneOf as hQ, type AddActivitiesRequest as hR, type UpdateActivityRequest as hS, type DeleteActivityRequest as hT, type UpdateLineItemsDescriptionLinesRequest as hU, type LineItemUpdate as hV, type UpdateLineItemsDescriptionLinesResponse as hW, type MarkOrderAsSeenByHumanRequest as hX, type MarkOrderAsSeenByHumanResponse as hY, type CancelOrderRequest as hZ, type UpdateOrderStatusRequest as h_, type UnArchiveOrderResponse as ha, type BulkUnArchiveOrdersRequest as hb, type BulkUnArchiveOrdersResponse as hc, type BulkUnArchiveOrdersByFilterRequest as hd, type BulkUnArchiveOrdersByFilterResponse as he, type UpdateBuyerInfoRequest as hf, type BuyerInfoUpdate as hg, type UpdateBuyerInfoResponse as hh, type UpdateBuyerEmailRequest as hi, type UpdateBuyerEmailResponse as hj, type UpdateOrderShippingAddressRequest as hk, type UpdateOrderShippingAddressResponse as hl, type UpdateBillingContactDetailsRequest as hm, type UpdateBillingContactDetailsResponse as hn, type UpdateOrderLineItemRequest as ho, type UpdateOrderLineItemsRequest as hp, type MaskedOrderLineItem as hq, type UpdateOrderLineItemsResponse as hr, type AddInternalActivityRequest as hs, type InternalActivity as ht, type InternalActivityContentOneOf as hu, type OrderPlaced as hv, type OrderPaid as hw, type OrderFulfilled as hx, type OrderNotFulfilled as hy, type OrderCanceled as hz, type GetRefundabilityStatusResponse as i, type ItemizedFee as i$, type MarkAsFulfilledResponse as i0, type BulkMarkAsFulfilledRequest as i1, type BulkMarkAsFulfilledResponse as i2, type BulkMarkAsFulfilledByFilterRequest as i3, type BulkMarkAsFulfilledByFilterResponse as i4, type MarkAsUnfulfilledRequest as i5, type MarkAsUnfulfilledResponse as i6, type BulkMarkAsUnfulfilledRequest as i7, type BulkMarkAsUnfulfilledResponse as i8, type BulkMarkAsUnfulfilledByFilterRequest as i9, type TaskAction as iA, type TaskActionActionOneOf as iB, type Complete as iC, type Cancel as iD, type Reschedule as iE, type InvoiceSentEvent as iF, type IdAndVersion as iG, type InvoiceFields as iH, type Customer as iI, type Email as iJ, type QuotesAddress as iK, type AddressDescription as iL, type Phone as iM, type Company as iN, type CommonAddress as iO, type CommonAddressStreetOneOf as iP, type Subdivision as iQ, type StandardDetails as iR, type InvoiceDates as iS, type LineItems as iT, type LineItem as iU, type BigDecimalWrapper as iV, type LineItemTax as iW, type Source as iX, type LineItemMetaData as iY, type Locale as iZ, type TotalPrice as i_, type BulkMarkAsUnfulfilledByFilterResponse as ia, type BulkSetBusinessLocationRequest as ib, type BulkSetBusinessLocationResponse as ic, type BulkSetBusinessLocationResult as id, type V1MarkOrderAsPaidRequest as ie, type V1MarkOrderAsPaidResponse as ig, type V1BulkMarkOrdersAsPaidRequest as ih, type V1BulkMarkOrdersAsPaidResponse as ii, type V1CreatePaymentGatewayOrderRequest as ij, type V1CreatePaymentGatewayOrderResponse as ik, type GetShipmentsRequest as il, type GetShipmentsResponse as im, type AggregateOrdersRequest as io, type DecrementItemsQuantityRequest as ip, type DecrementData as iq, type DecrementItemsQuantityResponse as ir, type BulkUpdateOrderTagsRequest as is, type TagsTags as it, type TagsTagList as iu, type BulkUpdateOrderTagsResult as iv, type SendOrderUpdatedDomainEventRequest as iw, type SendOrderUpdatedDomainEventResponse as ix, type Task as iy, type TaskKey as iz, type PaymentCollectionCreatePaymentGatewayOrderOptions as j, type MembershipPaymentStatusWithLiterals as j$, type Discount as j0, type DiscountOneDiscountTypeOneOf as j1, type CalculatedTaxes as j2, type CalculatedTax as j3, type Payments as j4, type InvoicesPayment as j5, type MetaData as j6, type InvoiceDynamicPriceTotals as j7, type CustomFieldValue as j8, type Value as j9, type AdditionalFeeSourceWithLiterals as jA, type OrderActionTypeWithLiterals as jB, type SpecificItemsCouponBehaviorWithLiterals as jC, type ChargeTypeWithLiterals as jD, type DeltaPaymentOptionTypeWithLiterals as jE, type InventoryActionWithLiterals as jF, type WebhookIdentityTypeWithLiterals as jG, type PreviewEmailTypeWithLiterals as jH, type StateWithLiterals as jI, type SiteCreatedContextWithLiterals as jJ, type NamespaceWithLiterals as jK, type DeleteStatusWithLiterals as jL, type OriginWithLiterals as jM, type ScheduledActionWithLiterals as jN, type DurationUnitWithLiterals as jO, type PaymentCollectabilityStatusWithLiterals as jP, type PredefinedPaymentMethodWithLiterals as jQ, type RefundableStatusWithLiterals as jR, type NonRefundableReasonWithLiterals as jS, type ManuallyRefundableReasonWithLiterals as jT, type RestockTypeWithLiterals as jU, type TransactionStatusWithLiterals as jV, type AuthorizationCaptureStatusWithLiterals as jW, type AuthorizationVoidStatusWithLiterals as jX, type ReasonWithLiterals as jY, type ActionTypeWithLiterals as jZ, type ChargebackStatusWithLiterals as j_, type Deposit as ja, type BaseEventMetadata as jb, type EventMetadata as jc, type AccountInfoMetadata as jd, type OrderSearchSpec as je, utils as jf, type DescriptionLineTypeWithLiterals as jg, type DimensionsUnitWithLiterals as jh, type ItemTypePresetWithLiterals as ji, type PaymentOptionTypeWithLiterals as jj, type JurisdictionTypeWithLiterals as jk, type SubscriptionFrequencyWithLiterals as jl, type AdjustmentTypeWithLiterals as jm, type TaxableAddressTypeWithLiterals as jn, type PaymentStatusEnumPaymentStatusWithLiterals as jo, type FulfillmentStatusWithLiterals as jp, type WeightUnitWithLiterals as jq, type VatTypeWithLiterals as jr, type PickupMethodWithLiterals as js, type DiscountTypeWithLiterals as jt, type DiscountReasonWithLiterals as ju, type LineItemQuantityChangeTypeWithLiterals as jv, type ActivityTypeWithLiterals as jw, type OrderActivityTypeEnumActivityTypeWithLiterals as jx, type AttributionSourceWithLiterals as jy, type ChannelTypeWithLiterals as jz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as k, type PaymentStatusWithLiterals as k0, type RefundStatusWithLiterals as k1, type VersioningModeWithLiterals as k2, type SortOrderWithLiterals as k3, type OrderApprovalStrategyWithLiterals as k4, type PlacementWithLiterals as k5, type SubdivisionTypeWithLiterals as k6, type SourceTypeWithLiterals as k7, type CustomFieldGroupWithLiterals as k8, type ValueTypeWithLiterals as k9, updateOrder as kA, bulkUpdateOrders as kB, updateOrderLineItem as kC, addActivity as kD, addActivities as kE, updateActivity as kF, deleteActivity as kG, cancelOrder as kH, updateOrderStatus as kI, aggregateOrders as kJ, bulkUpdateOrderTags as kK, type DepositTypeWithLiterals as ka, type InvoiceStatusWithLiterals as kb, type CommonSearchWithEntityContext as kc, onOrderApproved as kd, onOrderCanceled as ke, onOrderCommitted as kf, onOrderCreated as kg, onOrderFulfilled as kh, onOrderPaymentStatusUpdated as ki, onOrderUpdated as kj, importOrder as kk, setOrderNumberCounter as kl, bulkDeleteImportedOrders as km, preparePaymentCollection as kn, getPaymentCollectabilityStatus as ko, recordManuallyCollectedPayment as kp, paymentCollectionMarkOrderAsPaid as kq, paymentCollectionBulkMarkOrdersAsPaid as kr, getRefundabilityStatus as ks, paymentCollectionCreatePaymentGatewayOrder as kt, chargeMemberships as ku, triggerRefund as kv, voidAuthorizedPayments as kw, captureAuthorizedPayments as kx, getOrder as ky, createOrder as kz, type ChargeMembershipsOptions as l, type PaymentRefund as m, type TriggerRefundResponse as n, type TriggerRefundApplicationErrors as o, type VoidAuthorizedPaymentsApplicationErrors as p, type PaymentCapture as q, type CaptureAuthorizedPaymentsResponse as r, type CaptureAuthorizedPaymentsApplicationErrors as s, type GetOrderApplicationErrors as t, type OrderSearch as u, type SearchOrdersResponse as v, type CreateOrderOptions as w, type CreateOrderApplicationErrors as x, type UpdateOrderApplicationErrors as y, type MaskedOrder 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 BulkDeleteImportedOrdersResponse, P as Price, b as PreparePaymentCollectionOptions, c as PreparePaymentCollectionResponse, d as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, R as RecordManuallyCollectedPaymentOptions, e as RecordManuallyCollectedPaymentApplicationErrors, f as PaymentCollectionMarkOrderAsPaidOptions, M as MarkOrderAsPaidResponse, g as PaymentCollectionMarkOrderAsPaidApplicationErrors, h as BulkMarkOrdersAsPaidResponse, i as GetRefundabilityStatusResponse, j as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, k as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, l as ChargeMembershipsOptions, m as PaymentRefund, T as TriggerRefundOptions, n as TriggerRefundResponse, o as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, p as VoidAuthorizedPaymentsApplicationErrors, q as PaymentCapture, r as CaptureAuthorizedPaymentsResponse, s as CaptureAuthorizedPaymentsApplicationErrors, t as GetOrderApplicationErrors, u as OrderSearch, v as SearchOrdersResponse, w as CreateOrderOptions, x as CreateOrderApplicationErrors, U as UpdateOrder, y as UpdateOrderApplicationErrors, z as MaskedOrder, A as BulkUpdateOrdersOptions, D as BulkUpdateOrdersResponse, E as UpdateOrderLineItemIdentifiers, F as UpdateOrderLineItem, H as UpdateOrderLineItemResponse, J as PublicActivity, K as AddActivityResponse, L as AddActivitiesOptions, N as AddActivitiesResponse, Q as UpdateActivityIdentifiers, W as UpdateActivityResponse, X as DeleteActivityIdentifiers, Y as DeleteActivityResponse, Z as CancelOrderOptions, _ as CancelOrderResponse, $ as CancelOrderApplicationErrors, a0 as OrderStatusWithLiterals, a1 as UpdateOrderStatusResponse, a2 as UpdateOrderStatusApplicationErrors, a3 as AggregateOrdersOptions, a4 as AggregateOrdersResponse, a5 as BulkUpdateOrderTagsOptions, a6 as BulkUpdateOrderTagsResponse, a7 as OrderApprovedEnvelope, a8 as OrderCanceledEnvelope, a9 as OrderCommittedEnvelope, aa as OrderCreatedEnvelope, ab as OrderFulfilledEnvelope, ac as OrderPaymentStatusUpdatedEnvelope, ad as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-QJ_VV3kp.js';
3
- export { dZ as AccountInfo, jd as AccountInfoMetadata, dV as ActionEvent, aZ as ActionType, j_ as ActionTypeWithLiterals, cc as Activity, cd as ActivityContentOneOf, av as ActivityType, jw as ActivityTypeWithLiterals, hR as AddActivitiesRequest, hP as AddActivityRequest, hs as AddInternalActivityRequest, hO as AddInternalActivityResponse, ft as AddToAutomationMigrationPopulationRequest, fu as AddToAutomationMigrationPopulationResponse, da as AdditionalFee, dI as AdditionalFeeDelta, dJ as AdditionalFeeDeltaDeltaOneOf, eF as AdditionalFeeRefund, az as AdditionalFeeSource, jA as AdditionalFeeSourceWithLiterals, bO as Address, iL as AddressDescription, bQ as AddressLocation, bN as AddressWithContact, ak as AdjustmentType, jm as AdjustmentTypeWithLiterals, io as AggregateOrdersRequest, gk as AggregatedRefundSummary, fK as ApplicationError, c2 as AppliedDiscount, dG as AppliedDiscountDelta, dH as AppliedDiscountDeltaDeltaOneOf, c3 as AppliedDiscountDiscountSourceOneOf, h3 as ArchiveOrderRequest, h4 as ArchiveOrderResponse, eY as Asset, ax as AttributionSource, jy as AttributionSourceWithLiterals, g7 as AuthorizationActionFailureDetails, g6 as AuthorizationCapture, aW as AuthorizationCaptureStatus, jX as AuthorizationCaptureStatusWithLiterals, g5 as AuthorizationDetails, g8 as AuthorizationVoid, aX as AuthorizationVoidStatus, jY as AuthorizationVoidStatusWithLiterals, cD as AuthorizedPaymentCaptured, cC as AuthorizedPaymentCreated, cE as AuthorizedPaymentVoided, d8 as Balance, d7 as BalanceSummary, jb as BaseEventMetadata, iV as BigDecimalWrapper, bz as BillingAdjustment, bA as BillingAdjustmentPriceSummary, fL as BulkActionMetadata, h7 as BulkArchiveOrdersByFilterRequest, h8 as BulkArchiveOrdersByFilterResponse, h5 as BulkArchiveOrdersRequest, h6 as BulkArchiveOrdersResponse, dO as BulkDeleteImportedOrdersRequest, i3 as BulkMarkAsFulfilledByFilterRequest, i4 as BulkMarkAsFulfilledByFilterResponse, i1 as BulkMarkAsFulfilledRequest, i2 as BulkMarkAsFulfilledResponse, i9 as BulkMarkAsUnfulfilledByFilterRequest, ia as BulkMarkAsUnfulfilledByFilterResponse, i7 as BulkMarkAsUnfulfilledRequest, i8 as BulkMarkAsUnfulfilledResponse, fH as BulkMarkOrdersAsPaidRequest, fI as BulkOrderResult, ej as BulkSendBuyerPickupConfirmationEmailsRequest, ek as BulkSendBuyerPickupConfirmationEmailsResponse, en as BulkSendBuyerShippingConfirmationEmailsRequest, eo as BulkSendBuyerShippingConfirmationEmailsResponse, ib as BulkSetBusinessLocationRequest, ic as BulkSetBusinessLocationResponse, id as BulkSetBusinessLocationResult, hd as BulkUnArchiveOrdersByFilterRequest, he as BulkUnArchiveOrdersByFilterResponse, hb as BulkUnArchiveOrdersRequest, hc as BulkUnArchiveOrdersResponse, is as BulkUpdateOrderTagsRequest, iv as BulkUpdateOrderTagsResult, gV as BulkUpdateOrdersRequest, bJ as BuyerInfo, bK as BuyerInfoIdOneOf, hg as BuyerInfoUpdate, go as CalculateRefundItemRequest, gq as CalculateRefundItemResponse, gn as CalculateRefundRequest, gp as CalculateRefundResponse, j3 as CalculatedTax, j2 as CalculatedTaxes, iD as Cancel, hZ as CancelOrderRequest, gs as CaptureAuthorizedPaymentsRequest, d9 as CashRounding, gg as CashRoundingDetails, bd as CatalogReference, d5 as ChannelInfo, ay as ChannelType, jz as ChannelTypeWithLiterals, fR as ChargeMembershipsRequest, fV as ChargeMembershipsResponse, gt as ChargeSavedPaymentMethodRequest, gu as ChargeSavedPaymentMethodResponse, aC as ChargeType, jD as ChargeTypeWithLiterals, ga as Chargeback, d1 as ChargebackCreated, d2 as ChargebackReversed, a_ as ChargebackStatus, j$ as ChargebackStatusWithLiterals, fQ as ChargedBy, bj as Color, gW as CommitDeltasRequest, h2 as CommitDeltasResponse, dA as CommittedDiffs, dB as CommittedDiffsShippingUpdateInfoOneOf, iO as CommonAddress, iP as CommonAddressStreetOneOf, kc as CommonSearchWithEntityContext, iN as Company, iC as Complete, c4 as Coupon, gO as CreateOrderRequest, gS as CreateOrderResponse, fP as CreatePaymentGatewayOrderRequest, d3 as CreatedBy, d4 as CreatedByStringOneOf, cS as CreditCardDetails, g4 as CreditCardPaymentMethodDetails, bL as CurrencyConversionDetails, gE as CursorPaging, gN as CursorPagingMetadata, gL as CursorSearch, gM as CursorSearchPagingMethodOneOf, gH as Cursors, ce as CustomActivity, di as CustomAllowedActions, d6 as CustomField, b7 as CustomFieldGroup, k8 as CustomFieldGroupWithLiterals, j8 as CustomFieldValue, iI as Customer, iq as DecrementData, ip as DecrementItemsQuantityRequest, ir as DecrementItemsQuantityResponse, fz as DelayedCaptureSettings, hT as DeleteActivityRequest, e3 as DeleteByFilterOperation, e2 as DeleteByIdsOperation, f0 as DeleteContext, aL as DeleteStatus, jM as DeleteStatusWithLiterals, bU as DeliveryLogistics, bV as DeliveryLogisticsAddressOneOf, bY as DeliveryTimeSlot, aD as DeltaPaymentOptionType, jE as DeltaPaymentOptionTypeWithLiterals, ja as Deposit, b9 as DepositType, ka as DepositTypeWithLiterals, be as DescriptionLine, bg as DescriptionLineDescriptionLineValueOneOf, bh as DescriptionLineName, ae as DescriptionLineType, jg as DescriptionLineTypeWithLiterals, bf as DescriptionLineValueOneOf, gv as DiffmatokyPayload, bt as DigitalFile, bm as Dimensions, af as DimensionsUnit, jh as DimensionsUnitWithLiterals, j0 as Discount, j1 as DiscountOneDiscountTypeOneOf, at as DiscountReason, ju as DiscountReasonWithLiterals, c7 as DiscountRule, c8 as DiscountRuleName, as as DiscountType, jt as DiscountTypeWithLiterals, dP as DomainEvent, dQ as DomainEventBodyOneOf, hA as DownloadLinkSent, ck as DraftOrderChangesApplied, dK as DraftOrderCommitSettings, gX as DraftOrderDiffs, g_ as DraftOrderDiffsBillingUpdateInfoOneOf, gZ as DraftOrderDiffsBuyerUpdateInfoOneOf, g$ as DraftOrderDiffsRecipientUpdateInfoOneOf, gY as DraftOrderDiffsShippingUpdateInfoOneOf, fA as Duration, aO as DurationUnit, jP as DurationUnitWithLiterals, fp as EditorlessAssigned, fq as EditorlessUnassigned, iJ as Email, hJ as EmailEdited, eb as Empty, dR as EntityCreatedEvent, dU as EntityDeletedEvent, dT as EntityUpdatedEvent, gw as ErrorInformation, jc as EventMetadata, bF as ExtendedFields, c_ as ExternalReceipt, gf as ExternalReceiptInfo, bk as FocalPoint, dl as FormIdentifier, dk as FormInfo, by as FreeTrialPeriod, hH as FulfillerEmailSent, an as FulfillmentStatus, dx as FulfillmentStatusUpdated, jp as FulfillmentStatusWithLiterals, db as FulfillmentStatusesAggregate, bR as FullAddressContactDetails, gx as GetOrderRequest, gy as GetOrderResponse, fB as GetPaymentCollectabilityStatusRequest, fM as GetRefundabilityStatusRequest, il as GetShipmentsRequest, im as GetShipmentsResponse, gc as GiftCardPaymentDetails, cJ as GiftCardPaymentRefund, fr as HasCustomEmailConfigurationsRequest, fs as HasCustomEmailConfigurationsResponse, iG as IdAndVersion, dX as IdentificationData, dY as IdentificationDataIdOneOf, dM as ImportOrderRequest, dv as ImportedOrderDeleted, ht as InternalActivity, hu as InternalActivityContentOneOf, e0 as InternalDocument, e4 as InternalDocumentUpdateByFilterOperation, e1 as InternalDocumentUpdateOperation, gz as InternalQueryOrdersRequest, gF as InternalQueryOrdersResponse, e5 as InternalUpdateExistingOperation, aE as InventoryAction, jF as InventoryActionWithLiterals, dL as InventoryUpdateDetails, hF as InvoiceAdded, iS as InvoiceDates, j7 as InvoiceDynamicPriceTotals, iH as InvoiceFields, hG as InvoiceSent, iF as InvoiceSentEvent, ba as InvoiceStatus, kb as InvoiceStatusWithLiterals, j5 as InvoicesPayment, fv as IsInAutomationMigrationPopulationRequest, fw as IsInAutomationMigrationPopulationResponse, dC as ItemChangedDetails, ca as ItemCombination, cb as ItemCombinationLineItem, fJ as ItemMetadata, bI as ItemModifier, bq as ItemTaxFullDetails, bn as ItemType, bo as ItemTypeItemTypeDataOneOf, ag as ItemTypePreset, ji as ItemTypePresetWithLiterals, i$ as ItemizedFee, ai as JurisdictionType, jk as JurisdictionTypeWithLiterals, iU as LineItem, cw as LineItemAmount, cn as LineItemChanges, dE as LineItemDelta, dF as LineItemDeltaDeltaOneOf, cr as LineItemDescriptionLineChange, c9 as LineItemDiscount, cj as LineItemExchangeData, iY as LineItemMetaData, cs as LineItemModifiersChange, cp as LineItemPriceChange, cq as LineItemProductNameChange, co as LineItemQuantityChange, au as LineItemQuantityChangeType, jv as LineItemQuantityChangeTypeWithLiterals, eE as LineItemRefund, gm as LineItemRefundSummary, iW as LineItemTax, bs as LineItemTaxBreakdown, br as LineItemTaxInfo, hV as LineItemUpdate, iT as LineItems, iZ as Locale, de as Location, bC as LocationAndQuantity, cx as ManagedAdditionalFee, cu as ManagedDiscount, ct as ManagedLineItem, aT as ManuallyRefundableReason, jU as ManuallyRefundableReasonWithLiterals, h$ as MarkAsFulfilledRequest, i0 as MarkAsFulfilledResponse, i5 as MarkAsUnfulfilledRequest, i6 as MarkAsUnfulfilledResponse, fG as MarkOrderAsPaidRequest, hX as MarkOrderAsSeenByHumanRequest, hY as MarkOrderAsSeenByHumanResponse, hq as MaskedOrderLineItem, fS as MembershipChargeItem, fT as MembershipName, gd as MembershipPaymentDetails, cK as MembershipPaymentRefund, a$ as MembershipPaymentStatus, k0 as MembershipPaymentStatusWithLiterals, cf as MerchantComment, c5 as MerchantDiscount, c6 as MerchantDiscountMerchantDiscountReasonOneOf, dW as MessageEnvelope, j6 as MetaData, eW as MetaSiteSpecialEvent, eX as MetaSiteSpecialEventPayloadOneOf, bG as ModifierGroup, aK as Namespace, fa as NamespaceChanged, jL as NamespaceWithLiterals, ci as NewExchangeOrderCreated, aS as NonRefundableReason, jT as NonRefundableReasonWithLiterals, ff as OdeditorAssigned, fg as OdeditorUnassigned, aA as OrderActionType, jB as OrderActionTypeWithLiterals, aw as OrderActivityTypeEnumActivityType, jx as OrderActivityTypeEnumActivityTypeWithLiterals, b3 as OrderApprovalStrategy, k4 as OrderApprovalStrategyWithLiterals, dp as OrderApproved, hz as OrderCanceled, dy as OrderCanceledEventOrderCanceled, cl as OrderChange, cm as OrderChangeValueOneOf, gR as OrderCreateNotifications, ch as OrderCreatedFromExchange, gP as OrderCreationSettings, gQ as OrderCreationSettingsEditableByOneOf, dz as OrderDeltasCommitted, hx as OrderFulfilled, du as OrderImported, ds as OrderItemsRestocked, bb as OrderLineItem, dD as OrderLineItemChangedDetails, hy as OrderNotFulfilled, hw as OrderPaid, hL as OrderPartiallyPaid, hM as OrderPending, hv as OrderPlaced, cg as OrderRefunded, hN as OrderRejected, dr as OrderRejectedEventOrderRejected, je as OrderSearchSpec, df as OrderSettings, dg as OrderSettingsAllowedActionsOneOf, dh as OrderSettingsEditableByOneOf, ar as OrderStatus, c1 as OrderTaxBreakdown, c0 as OrderTaxInfo, f_ as OrderTransactions, dq as OrdersExperiments, aM as Origin, jN as OriginWithLiterals, dj as OwnerApps, f$ as Payment, cT as PaymentCanceled, cU as PaymentCanceledPaymentDetailsOneOf, aP as PaymentCollectabilityStatus, jQ as PaymentCollectabilityStatusWithLiterals, cV as PaymentDeclined, cW as PaymentDeclinedPaymentDetailsOneOf, gb as PaymentMethodName, ah as PaymentOptionType, jj as PaymentOptionTypeWithLiterals, g0 as PaymentPaymentDetailsOneOf, cO as PaymentPending, cP as PaymentPendingPaymentDetailsOneOf, g1 as PaymentReceiptInfoOneOf, cM as PaymentRefundFailed, cL as PaymentRefunded, b0 as PaymentStatus, am as PaymentStatusEnumPaymentStatus, jo as PaymentStatusEnumPaymentStatusWithLiterals, dw as PaymentStatusUpdated, k1 as PaymentStatusWithLiterals, j4 as Payments, iM as Phone, bl as PhysicalProperties, fh as PicassoAssigned, fi as PicassoUnassigned, bX as PickupAddress, bW as PickupDetails, aq as PickupMethod, js as PickupMethodWithLiterals, hK as PickupReadyEmailSent, b4 as Placement, k5 as PlacementWithLiterals, bi as PlainTextValue, dn as PlatformFee, dm as PlatformFeeSummary, gD as PlatformPaging, gG as PlatformPagingMetadata, gA as PlatformQuery, gB as PlatformQueryPagingMethodOneOf, aQ as PredefinedPaymentMethod, jR as PredefinedPaymentMethodWithLiterals, fx as PreparePaymentCollectionRequest, eO as PreviewBuyerConfirmationEmailRequest, eP as PreviewBuyerConfirmationEmailResponse, eM as PreviewBuyerPaymentsReceivedEmailRequest, eN as PreviewBuyerPaymentsReceivedEmailResponse, eQ as PreviewBuyerPickupConfirmationEmailRequest, eR as PreviewBuyerPickupConfirmationEmailResponse, eI as PreviewCancelEmailRequest, eJ as PreviewCancelEmailResponse, eK as PreviewCancelRefundEmailRequest, eL as PreviewCancelRefundEmailResponse, ez as PreviewEmailByTypeRequest, eA as PreviewEmailByTypeResponse, aH as PreviewEmailType, jI as PreviewEmailTypeWithLiterals, eB as PreviewRefundEmailRequest, eH as PreviewRefundEmailResponse, eU as PreviewResendDownloadLinksEmailRequest, eV as PreviewResendDownloadLinksEmailResponse, eS as PreviewShippingConfirmationEmailRequest, eT as PreviewShippingConfirmationEmailResponse, bB as PriceDescription, bM as PriceSummary, bc as ProductName, hQ as PublicActivityContentOneOf, gI as QueryOrderRequest, gJ as QueryOrderResponse, iK as QuotesAddress, aY as Reason, jZ as ReasonWithLiterals, cX as ReceiptCreated, cY as ReceiptCreatedReceiptInfoOneOf, c$ as ReceiptSent, d0 as ReceiptSentReceiptInfoOneOf, fC as RecordManuallyCollectedPaymentRequest, fF as RecordManuallyCollectedPaymentResponse, fy as RedirectUrls, gh as Refund, eC as RefundDetails, cF as RefundInitiated, eD as RefundItem, gl as RefundItemsBreakdown, fX as RefundSideEffects, b1 as RefundStatus, gj as RefundStatusInfo, k2 as RefundStatusWithLiterals, gi as RefundTransaction, fN as Refundability, fO as RefundabilityAdditionalRefundabilityInfoOneOf, aR as RefundableStatus, jS as RefundableStatusWithLiterals, cN as RefundedAsStoreCredit, cG as RefundedPayment, cH as RefundedPaymentKindOneOf, cQ as RegularPayment, g2 as RegularPaymentDetails, g3 as RegularPaymentDetailsPaymentMethodDetailsOneOf, cR as RegularPaymentPaymentMethodDetailsOneOf, cI as RegularPaymentRefund, iE as Reschedule, fY as RestockInfo, fZ as RestockItem, bp as RestockLocation, aU as RestockType, jV as RestockTypeWithLiterals, dS as RestoreInfo, cB as SavedPaymentMethod, aN as ScheduledAction, jO as ScheduledActionWithLiterals, gK as SearchOrdersRequest, ed as SendBuyerConfirmationEmailRequest, ee as SendBuyerConfirmationEmailResponse, ef as SendBuyerPaymentsReceivedEmailRequest, eg as SendBuyerPaymentsReceivedEmailResponse, eh as SendBuyerPickupConfirmationEmailRequest, ei as SendBuyerPickupConfirmationEmailResponse, el as SendBuyerShippingConfirmationEmailRequest, em as SendBuyerShippingConfirmationEmailResponse, er as SendCancelRefundEmailRequest, es as SendCancelRefundEmailResponse, ev as SendFulfillmentEmailRequest, ew as SendFulfillmentEmailResponse, ep as SendMerchantOrderReceivedNotificationRequest, eq as SendMerchantOrderReceivedNotificationResponse, ex as SendMerchantOrderReceivedPushRequest, ey as SendMerchantOrderReceivedPushResponse, iw as SendOrderUpdatedDomainEventRequest, ix as SendOrderUpdatedDomainEventResponse, et as SendRefundEmailRequest, eu as SendRefundEmailResponse, fU as ServiceProperties, f6 as ServiceProvisioned, f7 as ServiceRemoved, dN as SetOrderNumberCounterRequest, hI as ShippingAddressEdited, hE as ShippingConfirmationEmailSent, cA as ShippingInformation, cz as ShippingInformationChange, bZ as ShippingPrice, eG as ShippingRefund, b_ as ShippingRegion, eZ as SiteCreated, aJ as SiteCreatedContext, jK as SiteCreatedContextWithLiterals, e$ as SiteDeleted, f9 as SiteHardDeleted, f4 as SiteMarkedAsTemplate, f5 as SiteMarkedAsWixSite, f2 as SitePublished, fe as SitePurgedExternally, f8 as SiteRenamed, e_ as SiteTransferred, f1 as SiteUndeleted, f3 as SiteUnpublished, fd as SiteUrlChanged, b2 as SortOrder, k3 as SortOrderWithLiterals, gC as Sorting, iX as Source, b6 as SourceType, k7 as SourceTypeWithLiterals, aB as SpecificItemsCouponBehavior, jC as SpecificItemsCouponBehaviorWithLiterals, iR as StandardDetails, aI as State, jJ as StateWithLiterals, bP as StreetAddress, fb as StudioAssigned, fl as StudioTwoAssigned, fm as StudioTwoUnassigned, fc as StudioUnassigned, iQ as Subdivision, b5 as SubdivisionType, k6 as SubdivisionTypeWithLiterals, bw as SubscriptionDescription, aj as SubscriptionFrequency, jl as SubscriptionFrequencyWithLiterals, bu as SubscriptionInfo, bx as SubscriptionSettings, bv as SubscriptionTitle, dd as TagList, dc as Tags, iu as TagsTagList, it as TagsTags, iy as Task, iA as TaskAction, iB as TaskActionActionOneOf, iz as TaskKey, b$ as TaxSummary, bD as TaxableAddress, bE as TaxableAddressTaxableAddressDataOneOf, al as TaxableAddressType, jn as TaxableAddressTypeWithLiterals, i_ as TotalPrice, cy as TotalPriceChange, hD as TrackingLinkAdded, hB as TrackingNumberAdded, hC as TrackingNumberEdited, aV as TransactionStatus, jW as TransactionStatusWithLiterals, bH as TranslatableString, cv as TranslatedValue, fW as TriggerRefundRequest, ec as TriggerReindexOrderRequest, e9 as TriggerReindexRequest, ea as TriggerReindexResponse, h9 as UnArchiveOrderRequest, ha as UnArchiveOrderResponse, hS as UpdateActivityRequest, hm as UpdateBillingContactDetailsRequest, hn as UpdateBillingContactDetailsResponse, hi as UpdateBuyerEmailRequest, hj as UpdateBuyerEmailResponse, hf as UpdateBuyerInfoRequest, hh as UpdateBuyerInfoResponse, d_ as UpdateInternalDocumentsEvent, d$ as UpdateInternalDocumentsEventOperationOneOf, hU as UpdateLineItemsDescriptionLinesRequest, hW as UpdateLineItemsDescriptionLinesResponse, ho as UpdateOrderLineItemRequest, hp as UpdateOrderLineItemsRequest, hr as UpdateOrderLineItemsResponse, gT as UpdateOrderRequest, gU as UpdateOrderResponse, hk as UpdateOrderShippingAddressRequest, hl as UpdateOrderShippingAddressResponse, h_ as UpdateOrderStatusRequest, fD as UserDefinedPaymentMethodName, fE as UserDefinedPaymentMethodNameKindOneOf, fo as UserDomainMediaDisabled, fn as UserDomainMediaEnabled, ih as V1BulkMarkOrdersAsPaidRequest, ii as V1BulkMarkOrdersAsPaidResponse, ij as V1CreatePaymentGatewayOrderRequest, ik as V1CreatePaymentGatewayOrderResponse, h0 as V1LineItemDelta, h1 as V1LineItemDeltaDeltaOneOf, ie as V1MarkOrderAsPaidRequest, ig as V1MarkOrderAsPaidResponse, dt as V1RestockItem, g9 as V1ScheduledAction, bT as V1ShippingInformation, j9 as Value, b8 as ValueType, k9 as ValueTypeWithLiterals, bS as VatId, ap as VatType, jr as VatTypeWithLiterals, e7 as VersionedDeleteByIdsOperation, e8 as VersionedDocumentId, e6 as VersionedDocumentUpdateOperation, aG as VersioningMode, jH as VersioningModeWithLiterals, gr as VoidAuthorizedPaymentsRequest, aF as WebhookIdentityType, jG as WebhookIdentityTypeWithLiterals, ao as WeightUnit, jq as WeightUnitWithLiterals, cZ as WixReceipt, ge as WixReceiptInfo, fj as WixelAssigned, fk as WixelUnassigned, jf as utils } from './ecom-v1-order-orders.universal-QJ_VV3kp.js';
2
+ import { O as Order, I as ImportOrderResponse, S as SetOrderNumberCounterOptions, a as SetOrderNumberCounterResponse, B as BulkDeleteImportedOrdersResponse, P as Price, b as PreparePaymentCollectionOptions, c as PreparePaymentCollectionResponse, d as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, R as RecordManuallyCollectedPaymentOptions, e as RecordManuallyCollectedPaymentApplicationErrors, f as PaymentCollectionMarkOrderAsPaidOptions, M as MarkOrderAsPaidResponse, g as PaymentCollectionMarkOrderAsPaidApplicationErrors, h as BulkMarkOrdersAsPaidResponse, i as GetRefundabilityStatusResponse, j as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, k as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, l as ChargeMembershipsOptions, m as PaymentRefund, T as TriggerRefundOptions, n as TriggerRefundResponse, o as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, p as VoidAuthorizedPaymentsApplicationErrors, q as PaymentCapture, r as CaptureAuthorizedPaymentsResponse, s as CaptureAuthorizedPaymentsApplicationErrors, t as GetOrderApplicationErrors, u as OrderSearch, v as SearchOrdersResponse, w as CreateOrderOptions, x as CreateOrderApplicationErrors, U as UpdateOrder, y as UpdateOrderApplicationErrors, z as MaskedOrder, A as BulkUpdateOrdersOptions, D as BulkUpdateOrdersResponse, E as UpdateOrderLineItemIdentifiers, F as UpdateOrderLineItem, H as UpdateOrderLineItemResponse, J as PublicActivity, K as AddActivityResponse, L as AddActivitiesOptions, N as AddActivitiesResponse, Q as UpdateActivityIdentifiers, W as UpdateActivityResponse, X as DeleteActivityIdentifiers, Y as DeleteActivityResponse, Z as CancelOrderOptions, _ as CancelOrderResponse, $ as CancelOrderApplicationErrors, a0 as OrderStatusWithLiterals, a1 as UpdateOrderStatusResponse, a2 as UpdateOrderStatusApplicationErrors, a3 as AggregateOrdersOptions, a4 as AggregateOrdersResponse, a5 as BulkUpdateOrderTagsOptions, a6 as BulkUpdateOrderTagsResponse, a7 as OrderApprovedEnvelope, a8 as OrderCanceledEnvelope, a9 as OrderCommittedEnvelope, aa as OrderCreatedEnvelope, ab as OrderFulfilledEnvelope, ac as OrderPaymentStatusUpdatedEnvelope, ad as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-CRMpNFbE.js';
3
+ export { dZ as AccountInfo, jd as AccountInfoMetadata, dV as ActionEvent, aY as ActionType, jZ as ActionTypeWithLiterals, cc as Activity, cd as ActivityContentOneOf, av as ActivityType, jw as ActivityTypeWithLiterals, hR as AddActivitiesRequest, hP as AddActivityRequest, hs as AddInternalActivityRequest, hO as AddInternalActivityResponse, ff as AddToAutomationMigrationPopulationRequest, fg as AddToAutomationMigrationPopulationResponse, da as AdditionalFee, dI as AdditionalFeeDelta, dJ as AdditionalFeeDeltaDeltaOneOf, eq as AdditionalFeeRefund, az as AdditionalFeeSource, jA as AdditionalFeeSourceWithLiterals, bO as Address, iL as AddressDescription, bQ as AddressLocation, bN as AddressWithContact, ak as AdjustmentType, jm as AdjustmentTypeWithLiterals, io as AggregateOrdersRequest, g6 as AggregatedRefundSummary, fw as ApplicationError, c2 as AppliedDiscount, dG as AppliedDiscountDelta, dH as AppliedDiscountDeltaDeltaOneOf, c3 as AppliedDiscountDiscountSourceOneOf, h3 as ArchiveOrderRequest, h4 as ArchiveOrderResponse, eK as Asset, ax as AttributionSource, jy as AttributionSourceWithLiterals, fV as AuthorizationActionFailureDetails, fU as AuthorizationCapture, aV as AuthorizationCaptureStatus, jW as AuthorizationCaptureStatusWithLiterals, fT as AuthorizationDetails, fW as AuthorizationVoid, aW as AuthorizationVoidStatus, jX as AuthorizationVoidStatusWithLiterals, cD as AuthorizedPaymentCaptured, cC as AuthorizedPaymentCreated, cE as AuthorizedPaymentVoided, d8 as Balance, d7 as BalanceSummary, jb as BaseEventMetadata, iV as BigDecimalWrapper, bz as BillingAdjustment, bA as BillingAdjustmentPriceSummary, fx as BulkActionMetadata, h7 as BulkArchiveOrdersByFilterRequest, h8 as BulkArchiveOrdersByFilterResponse, h5 as BulkArchiveOrdersRequest, h6 as BulkArchiveOrdersResponse, dO as BulkDeleteImportedOrdersRequest, i3 as BulkMarkAsFulfilledByFilterRequest, i4 as BulkMarkAsFulfilledByFilterResponse, i1 as BulkMarkAsFulfilledRequest, i2 as BulkMarkAsFulfilledResponse, i9 as BulkMarkAsUnfulfilledByFilterRequest, ia as BulkMarkAsUnfulfilledByFilterResponse, i7 as BulkMarkAsUnfulfilledRequest, i8 as BulkMarkAsUnfulfilledResponse, ft as BulkMarkOrdersAsPaidRequest, fu as BulkOrderResult, e4 as BulkSendBuyerPickupConfirmationEmailsRequest, e5 as BulkSendBuyerPickupConfirmationEmailsResponse, e8 as BulkSendBuyerShippingConfirmationEmailsRequest, e9 as BulkSendBuyerShippingConfirmationEmailsResponse, ib as BulkSetBusinessLocationRequest, ic as BulkSetBusinessLocationResponse, id as BulkSetBusinessLocationResult, hd as BulkUnArchiveOrdersByFilterRequest, he as BulkUnArchiveOrdersByFilterResponse, hb as BulkUnArchiveOrdersRequest, hc as BulkUnArchiveOrdersResponse, is as BulkUpdateOrderTagsRequest, iv as BulkUpdateOrderTagsResult, gV as BulkUpdateOrdersRequest, bJ as BuyerInfo, bK as BuyerInfoIdOneOf, hg as BuyerInfoUpdate, ga as CalculateRefundItemRequest, gc as CalculateRefundItemResponse, g9 as CalculateRefundRequest, gb as CalculateRefundResponse, j3 as CalculatedTax, j2 as CalculatedTaxes, iD as Cancel, hZ as CancelOrderRequest, ge as CaptureAuthorizedPaymentsRequest, d9 as CashRounding, g2 as CashRoundingDetails, bd as CatalogReference, d5 as ChannelInfo, ay as ChannelType, jz as ChannelTypeWithLiterals, fD as ChargeMembershipsRequest, fH as ChargeMembershipsResponse, gf as ChargeSavedPaymentMethodRequest, gg as ChargeSavedPaymentMethodResponse, aC as ChargeType, jD as ChargeTypeWithLiterals, fY as Chargeback, d1 as ChargebackCreated, d2 as ChargebackReversed, aZ as ChargebackStatus, j_ as ChargebackStatusWithLiterals, fC as ChargedBy, bj as Color, gW as CommitDeltasRequest, h2 as CommitDeltasResponse, dA as CommittedDiffs, dB as CommittedDiffsShippingUpdateInfoOneOf, iO as CommonAddress, iP as CommonAddressStreetOneOf, kc as CommonSearchWithEntityContext, iN as Company, iC as Complete, c4 as Coupon, gO as CreateOrderRequest, gS as CreateOrderResponse, fB as CreatePaymentGatewayOrderRequest, d3 as CreatedBy, d4 as CreatedByStringOneOf, cS as CreditCardDetails, fS as CreditCardPaymentMethodDetails, bL as CurrencyConversionDetails, gE as CursorPaging, gN as CursorPagingMetadata, gL as CursorSearch, gM as CursorSearchPagingMethodOneOf, gH as Cursors, ce as CustomActivity, di as CustomAllowedActions, d6 as CustomField, b7 as CustomFieldGroup, k8 as CustomFieldGroupWithLiterals, j8 as CustomFieldValue, iI as Customer, iq as DecrementData, ip as DecrementItemsQuantityRequest, ir as DecrementItemsQuantityResponse, fl as DelayedCaptureSettings, hT as DeleteActivityRequest, gm as DeleteByFilterOperation, gl as DeleteByIdsOperation, eO as DeleteContext, aK as DeleteStatus, jL as DeleteStatusWithLiterals, bU as DeliveryLogistics, bV as DeliveryLogisticsAddressOneOf, bY as DeliveryTimeSlot, aD as DeltaPaymentOptionType, jE as DeltaPaymentOptionTypeWithLiterals, ja as Deposit, b9 as DepositType, ka as DepositTypeWithLiterals, be as DescriptionLine, bg as DescriptionLineDescriptionLineValueOneOf, bh as DescriptionLineName, ae as DescriptionLineType, jg as DescriptionLineTypeWithLiterals, bf as DescriptionLineValueOneOf, gv as DiffmatokyPayload, bt as DigitalFile, bm as Dimensions, af as DimensionsUnit, jh as DimensionsUnitWithLiterals, j0 as Discount, j1 as DiscountOneDiscountTypeOneOf, at as DiscountReason, ju as DiscountReasonWithLiterals, c7 as DiscountRule, c8 as DiscountRuleName, as as DiscountType, jt as DiscountTypeWithLiterals, dP as DomainEvent, dQ as DomainEventBodyOneOf, hA as DownloadLinkSent, ck as DraftOrderChangesApplied, dK as DraftOrderCommitSettings, gX as DraftOrderDiffs, g_ as DraftOrderDiffsBillingUpdateInfoOneOf, gZ as DraftOrderDiffsBuyerUpdateInfoOneOf, g$ as DraftOrderDiffsRecipientUpdateInfoOneOf, gY as DraftOrderDiffsShippingUpdateInfoOneOf, fm as Duration, aN as DurationUnit, jO as DurationUnitWithLiterals, fb as EditorlessAssigned, fc as EditorlessUnassigned, iJ as Email, hJ as EmailEdited, eH as Empty, dR as EntityCreatedEvent, dU as EntityDeletedEvent, dT as EntityUpdatedEvent, gw as ErrorInformation, jc as EventMetadata, bF as ExtendedFields, c_ as ExternalReceipt, g1 as ExternalReceiptInfo, bk as FocalPoint, dl as FormIdentifier, dk as FormInfo, by as FreeTrialPeriod, hH as FulfillerEmailSent, an as FulfillmentStatus, dx as FulfillmentStatusUpdated, jp as FulfillmentStatusWithLiterals, db as FulfillmentStatusesAggregate, bR as FullAddressContactDetails, gx as GetOrderRequest, gy as GetOrderResponse, fn as GetPaymentCollectabilityStatusRequest, fy as GetRefundabilityStatusRequest, il as GetShipmentsRequest, im as GetShipmentsResponse, f_ as GiftCardPaymentDetails, cJ as GiftCardPaymentRefund, fd as HasCustomEmailConfigurationsRequest, fe as HasCustomEmailConfigurationsResponse, iG as IdAndVersion, dX as IdentificationData, dY as IdentificationDataIdOneOf, dM as ImportOrderRequest, dv as ImportedOrderDeleted, ht as InternalActivity, hu as InternalActivityContentOneOf, gj as InternalDocument, gn as InternalDocumentUpdateByFilterOperation, gk as InternalDocumentUpdateOperation, gz as InternalQueryOrdersRequest, gF as InternalQueryOrdersResponse, go as InternalUpdateExistingOperation, aE as InventoryAction, jF as InventoryActionWithLiterals, dL as InventoryUpdateDetails, hF as InvoiceAdded, iS as InvoiceDates, j7 as InvoiceDynamicPriceTotals, iH as InvoiceFields, hG as InvoiceSent, iF as InvoiceSentEvent, ba as InvoiceStatus, kb as InvoiceStatusWithLiterals, j5 as InvoicesPayment, fh as IsInAutomationMigrationPopulationRequest, fi as IsInAutomationMigrationPopulationResponse, dC as ItemChangedDetails, ca as ItemCombination, cb as ItemCombinationLineItem, fv as ItemMetadata, bI as ItemModifier, bq as ItemTaxFullDetails, bn as ItemType, bo as ItemTypeItemTypeDataOneOf, ag as ItemTypePreset, ji as ItemTypePresetWithLiterals, i$ as ItemizedFee, ai as JurisdictionType, jk as JurisdictionTypeWithLiterals, iU as LineItem, cw as LineItemAmount, cn as LineItemChanges, dE as LineItemDelta, dF as LineItemDeltaDeltaOneOf, cr as LineItemDescriptionLineChange, c9 as LineItemDiscount, cj as LineItemExchangeData, iY as LineItemMetaData, cs as LineItemModifiersChange, cp as LineItemPriceChange, cq as LineItemProductNameChange, co as LineItemQuantityChange, au as LineItemQuantityChangeType, jv as LineItemQuantityChangeTypeWithLiterals, ep as LineItemRefund, g8 as LineItemRefundSummary, iW as LineItemTax, bs as LineItemTaxBreakdown, br as LineItemTaxInfo, hV as LineItemUpdate, iT as LineItems, iZ as Locale, de as Location, bC as LocationAndQuantity, cx as ManagedAdditionalFee, cu as ManagedDiscount, ct as ManagedLineItem, aS as ManuallyRefundableReason, jT as ManuallyRefundableReasonWithLiterals, h$ as MarkAsFulfilledRequest, i0 as MarkAsFulfilledResponse, i5 as MarkAsUnfulfilledRequest, i6 as MarkAsUnfulfilledResponse, fs as MarkOrderAsPaidRequest, hX as MarkOrderAsSeenByHumanRequest, hY as MarkOrderAsSeenByHumanResponse, hq as MaskedOrderLineItem, fE as MembershipChargeItem, fF as MembershipName, f$ as MembershipPaymentDetails, cK as MembershipPaymentRefund, a_ as MembershipPaymentStatus, j$ as MembershipPaymentStatusWithLiterals, cf as MerchantComment, c5 as MerchantDiscount, c6 as MerchantDiscountMerchantDiscountReasonOneOf, dW as MessageEnvelope, j6 as MetaData, eI as MetaSiteSpecialEvent, eJ as MetaSiteSpecialEventPayloadOneOf, bG as ModifierGroup, aJ as Namespace, eY as NamespaceChanged, jK as NamespaceWithLiterals, ci as NewExchangeOrderCreated, aR as NonRefundableReason, jS as NonRefundableReasonWithLiterals, f1 as OdeditorAssigned, f2 as OdeditorUnassigned, aA as OrderActionType, jB as OrderActionTypeWithLiterals, aw as OrderActivityTypeEnumActivityType, jx as OrderActivityTypeEnumActivityTypeWithLiterals, b3 as OrderApprovalStrategy, k4 as OrderApprovalStrategyWithLiterals, dp as OrderApproved, hz as OrderCanceled, dy as OrderCanceledEventOrderCanceled, cl as OrderChange, cm as OrderChangeValueOneOf, gR as OrderCreateNotifications, ch as OrderCreatedFromExchange, gP as OrderCreationSettings, gQ as OrderCreationSettingsEditableByOneOf, dz as OrderDeltasCommitted, hx as OrderFulfilled, du as OrderImported, ds as OrderItemsRestocked, bb as OrderLineItem, dD as OrderLineItemChangedDetails, hy as OrderNotFulfilled, hw as OrderPaid, hL as OrderPartiallyPaid, hM as OrderPending, hv as OrderPlaced, cg as OrderRefunded, hN as OrderRejected, dr as OrderRejectedEventOrderRejected, je as OrderSearchSpec, df as OrderSettings, dg as OrderSettingsAllowedActionsOneOf, dh as OrderSettingsEditableByOneOf, ar as OrderStatus, c1 as OrderTaxBreakdown, c0 as OrderTaxInfo, fM as OrderTransactions, dq as OrdersExperiments, aL as Origin, jM as OriginWithLiterals, dj as OwnerApps, fN as Payment, cT as PaymentCanceled, cU as PaymentCanceledPaymentDetailsOneOf, aO as PaymentCollectabilityStatus, jP as PaymentCollectabilityStatusWithLiterals, cV as PaymentDeclined, cW as PaymentDeclinedPaymentDetailsOneOf, fZ as PaymentMethodName, ah as PaymentOptionType, jj as PaymentOptionTypeWithLiterals, fO as PaymentPaymentDetailsOneOf, cO as PaymentPending, cP as PaymentPendingPaymentDetailsOneOf, fP as PaymentReceiptInfoOneOf, cM as PaymentRefundFailed, cL as PaymentRefunded, a$ as PaymentStatus, am as PaymentStatusEnumPaymentStatus, jo as PaymentStatusEnumPaymentStatusWithLiterals, dw as PaymentStatusUpdated, k0 as PaymentStatusWithLiterals, j4 as Payments, iM as Phone, bl as PhysicalProperties, f3 as PicassoAssigned, f4 as PicassoUnassigned, bX as PickupAddress, bW as PickupDetails, aq as PickupMethod, js as PickupMethodWithLiterals, hK as PickupReadyEmailSent, b4 as Placement, k5 as PlacementWithLiterals, bi as PlainTextValue, dn as PlatformFee, dm as PlatformFeeSummary, gD as PlatformPaging, gG as PlatformPagingMetadata, gA as PlatformQuery, gB as PlatformQueryPagingMethodOneOf, aP as PredefinedPaymentMethod, jQ as PredefinedPaymentMethodWithLiterals, fj as PreparePaymentCollectionRequest, ez as PreviewBuyerConfirmationEmailRequest, eA as PreviewBuyerConfirmationEmailResponse, ex as PreviewBuyerPaymentsReceivedEmailRequest, ey as PreviewBuyerPaymentsReceivedEmailResponse, eB as PreviewBuyerPickupConfirmationEmailRequest, eC as PreviewBuyerPickupConfirmationEmailResponse, et as PreviewCancelEmailRequest, eu as PreviewCancelEmailResponse, ev as PreviewCancelRefundEmailRequest, ew as PreviewCancelRefundEmailResponse, ek as PreviewEmailByTypeRequest, el as PreviewEmailByTypeResponse, aG as PreviewEmailType, jH as PreviewEmailTypeWithLiterals, em as PreviewRefundEmailRequest, es as PreviewRefundEmailResponse, eF as PreviewResendDownloadLinksEmailRequest, eG as PreviewResendDownloadLinksEmailResponse, eD as PreviewShippingConfirmationEmailRequest, eE as PreviewShippingConfirmationEmailResponse, bB as PriceDescription, bM as PriceSummary, bc as ProductName, hQ as PublicActivityContentOneOf, gI as QueryOrderRequest, gJ as QueryOrderResponse, iK as QuotesAddress, aX as Reason, jY as ReasonWithLiterals, cX as ReceiptCreated, cY as ReceiptCreatedReceiptInfoOneOf, c$ as ReceiptSent, d0 as ReceiptSentReceiptInfoOneOf, fo as RecordManuallyCollectedPaymentRequest, fr as RecordManuallyCollectedPaymentResponse, fk as RedirectUrls, g3 as Refund, en as RefundDetails, cF as RefundInitiated, eo as RefundItem, g7 as RefundItemsBreakdown, fJ as RefundSideEffects, b0 as RefundStatus, g5 as RefundStatusInfo, k1 as RefundStatusWithLiterals, g4 as RefundTransaction, fz as Refundability, fA as RefundabilityAdditionalRefundabilityInfoOneOf, aQ as RefundableStatus, jR as RefundableStatusWithLiterals, cN as RefundedAsStoreCredit, cG as RefundedPayment, cH as RefundedPaymentKindOneOf, cQ as RegularPayment, fQ as RegularPaymentDetails, fR as RegularPaymentDetailsPaymentMethodDetailsOneOf, cR as RegularPaymentPaymentMethodDetailsOneOf, cI as RegularPaymentRefund, iE as Reschedule, fK as RestockInfo, fL as RestockItem, bp as RestockLocation, aT as RestockType, jU as RestockTypeWithLiterals, dS as RestoreInfo, cB as SavedPaymentMethod, aM as ScheduledAction, jN as ScheduledActionWithLiterals, gK as SearchOrdersRequest, d_ as SendBuyerConfirmationEmailRequest, d$ as SendBuyerConfirmationEmailResponse, e0 as SendBuyerPaymentsReceivedEmailRequest, e1 as SendBuyerPaymentsReceivedEmailResponse, e2 as SendBuyerPickupConfirmationEmailRequest, e3 as SendBuyerPickupConfirmationEmailResponse, e6 as SendBuyerShippingConfirmationEmailRequest, e7 as SendBuyerShippingConfirmationEmailResponse, ec as SendCancelRefundEmailRequest, ed as SendCancelRefundEmailResponse, eg as SendFulfillmentEmailRequest, eh as SendFulfillmentEmailResponse, ea as SendMerchantOrderReceivedNotificationRequest, eb as SendMerchantOrderReceivedNotificationResponse, ei as SendMerchantOrderReceivedPushRequest, ej as SendMerchantOrderReceivedPushResponse, iw as SendOrderUpdatedDomainEventRequest, ix as SendOrderUpdatedDomainEventResponse, ee as SendRefundEmailRequest, ef as SendRefundEmailResponse, fG as ServiceProperties, eU as ServiceProvisioned, eV as ServiceRemoved, dN as SetOrderNumberCounterRequest, hI as ShippingAddressEdited, hE as ShippingConfirmationEmailSent, cA as ShippingInformation, cz as ShippingInformationChange, bZ as ShippingPrice, er as ShippingRefund, b_ as ShippingRegion, eL as SiteCreated, aI as SiteCreatedContext, jJ as SiteCreatedContextWithLiterals, eN as SiteDeleted, eX as SiteHardDeleted, eS as SiteMarkedAsTemplate, eT as SiteMarkedAsWixSite, eQ as SitePublished, f0 as SitePurgedExternally, eW as SiteRenamed, eM as SiteTransferred, eP as SiteUndeleted, eR as SiteUnpublished, e$ as SiteUrlChanged, b2 as SortOrder, k3 as SortOrderWithLiterals, gC as Sorting, iX as Source, b6 as SourceType, k7 as SourceTypeWithLiterals, aB as SpecificItemsCouponBehavior, jC as SpecificItemsCouponBehaviorWithLiterals, iR as StandardDetails, aH as State, jI as StateWithLiterals, bP as StreetAddress, eZ as StudioAssigned, f7 as StudioTwoAssigned, f8 as StudioTwoUnassigned, e_ as StudioUnassigned, iQ as Subdivision, b5 as SubdivisionType, k6 as SubdivisionTypeWithLiterals, bw as SubscriptionDescription, aj as SubscriptionFrequency, jl as SubscriptionFrequencyWithLiterals, bu as SubscriptionInfo, bx as SubscriptionSettings, bv as SubscriptionTitle, dd as TagList, dc as Tags, iu as TagsTagList, it as TagsTags, iy as Task, iA as TaskAction, iB as TaskActionActionOneOf, iz as TaskKey, b$ as TaxSummary, bD as TaxableAddress, bE as TaxableAddressTaxableAddressDataOneOf, al as TaxableAddressType, jn as TaxableAddressTypeWithLiterals, i_ as TotalPrice, cy as TotalPriceChange, hD as TrackingLinkAdded, hB as TrackingNumberAdded, hC as TrackingNumberEdited, aU as TransactionStatus, jV as TransactionStatusWithLiterals, bH as TranslatableString, cv as TranslatedValue, fI as TriggerRefundRequest, gu as TriggerReindexOrderRequest, gs as TriggerReindexRequest, gt as TriggerReindexResponse, h9 as UnArchiveOrderRequest, ha as UnArchiveOrderResponse, hS as UpdateActivityRequest, hm as UpdateBillingContactDetailsRequest, hn as UpdateBillingContactDetailsResponse, hi as UpdateBuyerEmailRequest, hj as UpdateBuyerEmailResponse, hf as UpdateBuyerInfoRequest, hh as UpdateBuyerInfoResponse, gh as UpdateInternalDocumentsEvent, gi as UpdateInternalDocumentsEventOperationOneOf, hU as UpdateLineItemsDescriptionLinesRequest, hW as UpdateLineItemsDescriptionLinesResponse, ho as UpdateOrderLineItemRequest, hp as UpdateOrderLineItemsRequest, hr as UpdateOrderLineItemsResponse, gT as UpdateOrderRequest, gU as UpdateOrderResponse, hk as UpdateOrderShippingAddressRequest, hl as UpdateOrderShippingAddressResponse, h_ as UpdateOrderStatusRequest, fp as UserDefinedPaymentMethodName, fq as UserDefinedPaymentMethodNameKindOneOf, fa as UserDomainMediaDisabled, f9 as UserDomainMediaEnabled, ih as V1BulkMarkOrdersAsPaidRequest, ii as V1BulkMarkOrdersAsPaidResponse, ij as V1CreatePaymentGatewayOrderRequest, ik as V1CreatePaymentGatewayOrderResponse, h0 as V1LineItemDelta, h1 as V1LineItemDeltaDeltaOneOf, ie as V1MarkOrderAsPaidRequest, ig as V1MarkOrderAsPaidResponse, dt as V1RestockItem, fX as V1ScheduledAction, bT as V1ShippingInformation, j9 as Value, b8 as ValueType, k9 as ValueTypeWithLiterals, bS as VatId, ap as VatType, jr as VatTypeWithLiterals, gq as VersionedDeleteByIdsOperation, gr as VersionedDocumentId, gp as VersionedDocumentUpdateOperation, b1 as VersioningMode, k2 as VersioningModeWithLiterals, gd as VoidAuthorizedPaymentsRequest, aF as WebhookIdentityType, jG as WebhookIdentityTypeWithLiterals, ao as WeightUnit, jq as WeightUnitWithLiterals, cZ as WixReceipt, g0 as WixReceiptInfo, f5 as WixelAssigned, f6 as WixelUnassigned, jf as utils } from './ecom-v1-order-orders.universal-CRMpNFbE.js';
4
4
 
5
5
  /** @internal */
6
6
  declare function importOrder$1(httpClient: HttpClient): ImportOrderSignature;
@@ -2079,12 +2079,6 @@ 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 || {});
2088
2082
  var PreviewEmailType = /* @__PURE__ */ ((PreviewEmailType2) => {
2089
2083
  PreviewEmailType2["ORDER_PLACED"] = "ORDER_PLACED";
2090
2084
  PreviewEmailType2["DOWNLOAD_LINKS"] = "DOWNLOAD_LINKS";
@@ -2290,6 +2284,12 @@ var RefundStatus = /* @__PURE__ */ ((RefundStatus2) => {
2290
2284
  RefundStatus2["STARTED"] = "STARTED";
2291
2285
  return RefundStatus2;
2292
2286
  })(RefundStatus || {});
2287
+ var VersioningMode = /* @__PURE__ */ ((VersioningMode2) => {
2288
+ VersioningMode2["DEFAULT"] = "DEFAULT";
2289
+ VersioningMode2["GREATER_THAN"] = "GREATER_THAN";
2290
+ VersioningMode2["GREATER_OR_EQUAL"] = "GREATER_OR_EQUAL";
2291
+ return VersioningMode2;
2292
+ })(VersioningMode || {});
2293
2293
  var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
2294
2294
  SortOrder2["ASC"] = "ASC";
2295
2295
  SortOrder2["DESC"] = "DESC";