@wix/auto_sdk_ecom_orders 1.0.227 → 1.0.228

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