@wix/auto_sdk_ecom_orders 1.0.152 → 1.0.153

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-rM7XIM5J.d.ts → ecom-v1-order-orders.universal-C2w5xnBD.d.ts} +163 -163
  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 +163 -163
  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-rM7XIM5J.d.mts → ecom-v1-order-orders.universal-C2w5xnBD.d.mts} +163 -163
  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 +163 -163
  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-CxuQcKw1.d.ts → ecom-v1-order-orders.universal-CggcngNR.d.ts} +163 -163
  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 +163 -163
  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-CxuQcKw1.d.mts → ecom-v1-order-orders.universal-CggcngNR.d.mts} +163 -163
  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 +163 -163
  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
@@ -3355,168 +3355,6 @@ declare enum WebhookIdentityType {
3355
3355
  }
3356
3356
  /** @enumType */
3357
3357
  type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
3358
- interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
3359
- /** insert/update documents */
3360
- update?: InternalDocumentUpdateOperation;
3361
- /** delete by document ids */
3362
- deleteByIds?: DeleteByIdsOperation;
3363
- /** delete documents matching filter */
3364
- deleteByFilter?: DeleteByFilterOperation;
3365
- /** update internal documents matching filter */
3366
- updateByFilter?: InternalDocumentUpdateByFilterOperation;
3367
- /** update only existing documents */
3368
- updateExisting?: InternalUpdateExistingOperation;
3369
- /** insert/update documents with versioning */
3370
- versionedUpdate?: VersionedDocumentUpdateOperation;
3371
- /** delete by document ids with versioning */
3372
- versionedDeleteByIds?: VersionedDeleteByIdsOperation;
3373
- /**
3374
- * type of the documents
3375
- * @minLength 2
3376
- */
3377
- documentType?: string;
3378
- /**
3379
- * language of the documents (mandatory)
3380
- * @minLength 2
3381
- */
3382
- language?: string | null;
3383
- /**
3384
- * one or more search documents
3385
- * @deprecated
3386
- */
3387
- addDocuments?: InternalDocument[];
3388
- /**
3389
- * one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
3390
- * @deprecated
3391
- */
3392
- removeDocumentIds?: string[];
3393
- /** id to pass to processing notification */
3394
- correlationId?: string | null;
3395
- /** when event was created / issued */
3396
- issuedAt?: Date | null;
3397
- }
3398
- /** @oneof */
3399
- interface UpdateInternalDocumentsEventOperationOneOf {
3400
- /** insert/update documents */
3401
- update?: InternalDocumentUpdateOperation;
3402
- /** delete by document ids */
3403
- deleteByIds?: DeleteByIdsOperation;
3404
- /** delete documents matching filter */
3405
- deleteByFilter?: DeleteByFilterOperation;
3406
- /** update internal documents matching filter */
3407
- updateByFilter?: InternalDocumentUpdateByFilterOperation;
3408
- /** update only existing documents */
3409
- updateExisting?: InternalUpdateExistingOperation;
3410
- /** insert/update documents with versioning */
3411
- versionedUpdate?: VersionedDocumentUpdateOperation;
3412
- /** delete by document ids with versioning */
3413
- versionedDeleteByIds?: VersionedDeleteByIdsOperation;
3414
- }
3415
- interface InternalDocument {
3416
- /** document with mandatory fields (id) and with fields specific to the type of the document */
3417
- document?: Record<string, any> | null;
3418
- }
3419
- interface InternalDocumentUpdateOperation {
3420
- /** documents to index or update */
3421
- documents?: InternalDocument[];
3422
- }
3423
- interface DeleteByIdsOperation {
3424
- /** ids of the documents to delete */
3425
- documentIds?: string[];
3426
- /**
3427
- * tenant id for custom tenancy strategy
3428
- * @minLength 2
3429
- * @maxLength 300
3430
- */
3431
- tenantId?: string | null;
3432
- }
3433
- interface DeleteByFilterOperation {
3434
- /** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
3435
- filter?: Record<string, any> | null;
3436
- /**
3437
- * tenant id for custom tenancy strategy
3438
- * @minLength 2
3439
- * @maxLength 300
3440
- */
3441
- tenantId?: string | null;
3442
- }
3443
- interface InternalDocumentUpdateByFilterOperation {
3444
- /** documents matching this filter will be updated */
3445
- filter?: Record<string, any> | null;
3446
- /** partial document to apply */
3447
- document?: InternalDocument;
3448
- /**
3449
- * tenant id for custom tenancy strategy
3450
- * @minLength 2
3451
- * @maxLength 300
3452
- */
3453
- tenantId?: string | null;
3454
- }
3455
- interface InternalUpdateExistingOperation {
3456
- /** documents to update */
3457
- documents?: InternalDocument[];
3458
- }
3459
- interface VersionedDocumentUpdateOperation {
3460
- /** documents to create or overwrite */
3461
- documents?: InternalDocument[];
3462
- /** versioning mode to use instead of default */
3463
- versioningMode?: VersioningModeWithLiterals;
3464
- }
3465
- declare enum VersioningMode {
3466
- /** use default versioning mode agreed with search team */
3467
- DEFAULT = "DEFAULT",
3468
- /** execute only if version is greater than existing */
3469
- GREATER_THAN = "GREATER_THAN",
3470
- /** execute only if version is greater or equal to existing */
3471
- GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
3472
- }
3473
- /** @enumType */
3474
- type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
3475
- interface VersionedDeleteByIdsOperation {
3476
- /** ids with version of the documents to delete */
3477
- documentIds?: VersionedDocumentId[];
3478
- /**
3479
- * tenant id for custom tenancy strategy
3480
- * @minLength 2
3481
- * @maxLength 300
3482
- */
3483
- tenantId?: string | null;
3484
- }
3485
- interface VersionedDocumentId {
3486
- /** document id */
3487
- documentId?: string;
3488
- /** document version */
3489
- version?: string;
3490
- /** versioning mode to use instead of default */
3491
- versioningMode?: VersioningModeWithLiterals;
3492
- }
3493
- interface TriggerReindexRequest {
3494
- /** @format GUID */
3495
- metasiteId?: string;
3496
- /**
3497
- * @minLength 1
3498
- * @maxLength 100
3499
- * @maxSize 100
3500
- */
3501
- orderIds?: string[];
3502
- }
3503
- interface TriggerReindexResponse {
3504
- }
3505
- interface Empty {
3506
- }
3507
- interface BatchOfTriggerReindexOrderRequest {
3508
- /** @maxSize 25 */
3509
- requests?: TriggerReindexOrderRequest[];
3510
- }
3511
- interface TriggerReindexOrderRequest {
3512
- /** @format GUID */
3513
- metasiteId?: string;
3514
- /**
3515
- * @minLength 1
3516
- * @maxLength 100
3517
- */
3518
- orderId?: string;
3519
- }
3520
3358
  interface SendBuyerConfirmationEmailRequest {
3521
3359
  /** @format GUID */
3522
3360
  orderId?: string;
@@ -3809,6 +3647,8 @@ interface PreviewResendDownloadLinksEmailRequest {
3809
3647
  interface PreviewResendDownloadLinksEmailResponse {
3810
3648
  emailPreview?: string;
3811
3649
  }
3650
+ interface Empty {
3651
+ }
3812
3652
  interface PreparePaymentCollectionRequest {
3813
3653
  /**
3814
3654
  * Ecom order ID.
@@ -4942,6 +4782,166 @@ interface ChargeSavedPaymentMethodResponse {
4942
4782
  /** Payment gateway's order ID (e.g Wix Payments) */
4943
4783
  paymentGatewayOrderId?: string;
4944
4784
  }
4785
+ interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
4786
+ /** insert/update documents */
4787
+ update?: InternalDocumentUpdateOperation;
4788
+ /** delete by document ids */
4789
+ deleteByIds?: DeleteByIdsOperation;
4790
+ /** delete documents matching filter */
4791
+ deleteByFilter?: DeleteByFilterOperation;
4792
+ /** update internal documents matching filter */
4793
+ updateByFilter?: InternalDocumentUpdateByFilterOperation;
4794
+ /** update only existing documents */
4795
+ updateExisting?: InternalUpdateExistingOperation;
4796
+ /** insert/update documents with versioning */
4797
+ versionedUpdate?: VersionedDocumentUpdateOperation;
4798
+ /** delete by document ids with versioning */
4799
+ versionedDeleteByIds?: VersionedDeleteByIdsOperation;
4800
+ /**
4801
+ * type of the documents
4802
+ * @minLength 2
4803
+ */
4804
+ documentType?: string;
4805
+ /**
4806
+ * language of the documents (mandatory)
4807
+ * @minLength 2
4808
+ */
4809
+ language?: string | null;
4810
+ /**
4811
+ * one or more search documents
4812
+ * @deprecated
4813
+ */
4814
+ addDocuments?: InternalDocument[];
4815
+ /**
4816
+ * one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
4817
+ * @deprecated
4818
+ */
4819
+ removeDocumentIds?: string[];
4820
+ /** id to pass to processing notification */
4821
+ correlationId?: string | null;
4822
+ /** when event was created / issued */
4823
+ issuedAt?: Date | null;
4824
+ }
4825
+ /** @oneof */
4826
+ interface UpdateInternalDocumentsEventOperationOneOf {
4827
+ /** insert/update documents */
4828
+ update?: InternalDocumentUpdateOperation;
4829
+ /** delete by document ids */
4830
+ deleteByIds?: DeleteByIdsOperation;
4831
+ /** delete documents matching filter */
4832
+ deleteByFilter?: DeleteByFilterOperation;
4833
+ /** update internal documents matching filter */
4834
+ updateByFilter?: InternalDocumentUpdateByFilterOperation;
4835
+ /** update only existing documents */
4836
+ updateExisting?: InternalUpdateExistingOperation;
4837
+ /** insert/update documents with versioning */
4838
+ versionedUpdate?: VersionedDocumentUpdateOperation;
4839
+ /** delete by document ids with versioning */
4840
+ versionedDeleteByIds?: VersionedDeleteByIdsOperation;
4841
+ }
4842
+ interface InternalDocument {
4843
+ /** document with mandatory fields (id) and with fields specific to the type of the document */
4844
+ document?: Record<string, any> | null;
4845
+ }
4846
+ interface InternalDocumentUpdateOperation {
4847
+ /** documents to index or update */
4848
+ documents?: InternalDocument[];
4849
+ }
4850
+ interface DeleteByIdsOperation {
4851
+ /** ids of the documents to delete */
4852
+ documentIds?: string[];
4853
+ /**
4854
+ * tenant id for custom tenancy strategy
4855
+ * @minLength 2
4856
+ * @maxLength 300
4857
+ */
4858
+ tenantId?: string | null;
4859
+ }
4860
+ interface DeleteByFilterOperation {
4861
+ /** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
4862
+ filter?: Record<string, any> | null;
4863
+ /**
4864
+ * tenant id for custom tenancy strategy
4865
+ * @minLength 2
4866
+ * @maxLength 300
4867
+ */
4868
+ tenantId?: string | null;
4869
+ }
4870
+ interface InternalDocumentUpdateByFilterOperation {
4871
+ /** documents matching this filter will be updated */
4872
+ filter?: Record<string, any> | null;
4873
+ /** partial document to apply */
4874
+ document?: InternalDocument;
4875
+ /**
4876
+ * tenant id for custom tenancy strategy
4877
+ * @minLength 2
4878
+ * @maxLength 300
4879
+ */
4880
+ tenantId?: string | null;
4881
+ }
4882
+ interface InternalUpdateExistingOperation {
4883
+ /** documents to update */
4884
+ documents?: InternalDocument[];
4885
+ }
4886
+ interface VersionedDocumentUpdateOperation {
4887
+ /** documents to create or overwrite */
4888
+ documents?: InternalDocument[];
4889
+ /** versioning mode to use instead of default */
4890
+ versioningMode?: VersioningModeWithLiterals;
4891
+ }
4892
+ declare enum VersioningMode {
4893
+ /** use default versioning mode agreed with search team */
4894
+ DEFAULT = "DEFAULT",
4895
+ /** execute only if version is greater than existing */
4896
+ GREATER_THAN = "GREATER_THAN",
4897
+ /** execute only if version is greater or equal to existing */
4898
+ GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
4899
+ }
4900
+ /** @enumType */
4901
+ type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
4902
+ interface VersionedDeleteByIdsOperation {
4903
+ /** ids with version of the documents to delete */
4904
+ documentIds?: VersionedDocumentId[];
4905
+ /**
4906
+ * tenant id for custom tenancy strategy
4907
+ * @minLength 2
4908
+ * @maxLength 300
4909
+ */
4910
+ tenantId?: string | null;
4911
+ }
4912
+ interface VersionedDocumentId {
4913
+ /** document id */
4914
+ documentId?: string;
4915
+ /** document version */
4916
+ version?: string;
4917
+ /** versioning mode to use instead of default */
4918
+ versioningMode?: VersioningModeWithLiterals;
4919
+ }
4920
+ interface TriggerReindexRequest {
4921
+ /** @format GUID */
4922
+ metasiteId?: string;
4923
+ /**
4924
+ * @minLength 1
4925
+ * @maxLength 100
4926
+ * @maxSize 100
4927
+ */
4928
+ orderIds?: string[];
4929
+ }
4930
+ interface TriggerReindexResponse {
4931
+ }
4932
+ interface BatchOfTriggerReindexOrderRequest {
4933
+ /** @maxSize 25 */
4934
+ requests?: TriggerReindexOrderRequest[];
4935
+ }
4936
+ interface TriggerReindexOrderRequest {
4937
+ /** @format GUID */
4938
+ metasiteId?: string;
4939
+ /**
4940
+ * @minLength 1
4941
+ * @maxLength 100
4942
+ */
4943
+ orderId?: string;
4944
+ }
4945
4945
  interface DiffmatokyPayload {
4946
4946
  left?: string;
4947
4947
  right?: string;
@@ -8451,4 +8451,4 @@ interface BulkUpdateOrderTagsOptions {
8451
8451
  unassignTags?: Tags;
8452
8452
  }
8453
8453
 
8454
- export { type OrderStatusWithLiterals as $, type BulkUpdateOrdersResponse as A, type BulkDeleteImportedOrdersOptions as B, type CreatePaymentGatewayOrderResponse as C, type UpdateOrderLineItemIdentifiers as D, type UpdateOrderLineItem as E, type UpdateOrderLineItemResponse as F, type GetPaymentCollectabilityStatusResponse as G, type PublicActivity as H, type ImportOrderResponse as I, type AddActivityResponse as J, type AddActivitiesOptions as K, type AddActivitiesResponse as L, type MarkOrderAsPaidResponse as M, type UpdateActivityIdentifiers as N, type Order as O, type Price as P, type UpdateActivityResponse as Q, type RecordManuallyCollectedPaymentApplicationErrors as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type DeleteActivityIdentifiers as W, type DeleteActivityResponse as X, type CancelOrderOptions as Y, type CancelOrderResponse as Z, type CancelOrderApplicationErrors as _, type SetOrderNumberCounterResponse as a, type OrderLineItem as a$, type UpdateOrderStatusResponse as a0, type UpdateOrderStatusApplicationErrors as a1, type AggregateOrdersOptions as a2, type AggregateOrdersResponse as a3, type BulkUpdateOrderTagsOptions as a4, type BulkUpdateOrderTagsResponse as a5, type OrderApprovedEnvelope as a6, type OrderUpdatedEnvelope as a7, type OrderCanceledEnvelope as a8, type OrderCreatedEnvelope as a9, PreviewEmailType as aA, ScheduledAction as aB, DurationUnit as aC, PaymentCollectabilityStatus as aD, RefundableStatus as aE, NonRefundableReason as aF, ManuallyRefundableReason as aG, RestockType as aH, TransactionStatus as aI, AuthorizationCaptureStatus as aJ, AuthorizationVoidStatus as aK, Reason as aL, ActionType as aM, ChargebackStatus as aN, MembershipPaymentStatus as aO, RefundStatus as aP, SortOrder as aQ, OrderApprovalStrategy as aR, DeltaPaymentOptionType as aS, InventoryAction as aT, Placement as aU, SubdivisionType as aV, SourceType as aW, CustomFieldGroup as aX, ValueType as aY, DepositType as aZ, InvoiceStatus as a_, type OrderPaymentStatusUpdatedEnvelope as aa, DescriptionLineType as ab, ItemTypePreset as ac, PaymentOptionType as ad, JurisdictionType as ae, SubscriptionFrequency as af, AdjustmentType as ag, TaxableAddressType as ah, PaymentStatus as ai, FulfillmentStatus as aj, WeightUnit as ak, VatType as al, PickupMethod as am, OrderStatus as an, DiscountType as ao, DiscountReason as ap, LineItemQuantityChangeType as aq, ActivityType as ar, OrderActivityTypeEnumActivityType as as, AttributionSource as at, ChannelType as au, AdditionalFeeSource as av, OrderActionType as aw, ChargeType as ax, WebhookIdentityType as ay, VersioningMode as az, type BulkDeleteImportedOrdersResponse as b, type ActivityContentOneOf as b$, type ProductName as b0, type CatalogReference as b1, type DescriptionLine as b2, type DescriptionLineValueOneOf as b3, type DescriptionLineDescriptionLineValueOneOf as b4, type DescriptionLineName as b5, type PlainTextValue as b6, type Color as b7, type FocalPoint as b8, type PhysicalProperties as b9, type Address as bA, type StreetAddress as bB, type AddressLocation as bC, type FullAddressContactDetails as bD, type VatId as bE, type V1ShippingInformation as bF, type DeliveryLogistics as bG, type DeliveryLogisticsAddressOneOf as bH, type PickupDetails as bI, type PickupAddress as bJ, type DeliveryTimeSlot as bK, type ShippingPrice as bL, type ShippingRegion as bM, type TaxSummary as bN, type OrderTaxInfo as bO, type OrderTaxBreakdown as bP, type AppliedDiscount as bQ, type AppliedDiscountDiscountSourceOneOf as bR, type Coupon as bS, type MerchantDiscount as bT, type MerchantDiscountMerchantDiscountReasonOneOf as bU, type DiscountRule as bV, type DiscountRuleName as bW, type LineItemDiscount as bX, type ItemCombination as bY, type ItemCombinationLineItem as bZ, type Activity as b_, type ItemType as ba, type ItemTypeItemTypeDataOneOf as bb, type ItemTaxFullDetails as bc, type LineItemTaxInfo as bd, type LineItemTaxBreakdown as be, type DigitalFile as bf, type SubscriptionInfo as bg, type SubscriptionTitle as bh, type SubscriptionDescription as bi, type SubscriptionSettings as bj, type FreeTrialPeriod as bk, type BillingAdjustment as bl, type BillingAdjustmentPriceSummary as bm, type PriceDescription as bn, type LocationAndQuantity as bo, type TaxableAddress as bp, type TaxableAddressTaxableAddressDataOneOf as bq, type ExtendedFields as br, type ModifierGroup as bs, type TranslatableString as bt, type ItemModifier as bu, type BuyerInfo as bv, type BuyerInfoIdOneOf as bw, type CurrencyConversionDetails as bx, type PriceSummary as by, type AddressWithContact as bz, type PreparePaymentCollectionOptions as c, type Location as c$, type CustomActivity as c0, type MerchantComment as c1, type OrderRefunded as c2, type OrderCreatedFromExchange as c3, type NewExchangeOrderCreated as c4, type LineItemExchangeData as c5, type DraftOrderChangesApplied as c6, type OrderChange as c7, type OrderChangeValueOneOf as c8, type LineItemChanges as c9, type PaymentPending as cA, type PaymentPendingPaymentDetailsOneOf as cB, type RegularPayment as cC, type RegularPaymentPaymentMethodDetailsOneOf as cD, type CreditCardDetails as cE, type PaymentCanceled as cF, type PaymentCanceledPaymentDetailsOneOf as cG, type PaymentDeclined as cH, type PaymentDeclinedPaymentDetailsOneOf as cI, type ReceiptCreated as cJ, type ReceiptCreatedReceiptInfoOneOf as cK, type WixReceipt as cL, type ExternalReceipt as cM, type ReceiptSent as cN, type ReceiptSentReceiptInfoOneOf as cO, type ChargebackCreated as cP, type ChargebackReversed as cQ, type CreatedBy as cR, type CreatedByStringOneOf as cS, type ChannelInfo as cT, type CustomField as cU, type BalanceSummary as cV, type Balance as cW, type AdditionalFee as cX, type FulfillmentStatusesAggregate as cY, type Tags as cZ, type TagList as c_, type LineItemQuantityChange as ca, type LineItemPriceChange as cb, type LineItemProductNameChange as cc, type LineItemDescriptionLineChange as cd, type LineItemModifiersChange as ce, type ManagedLineItem as cf, type ManagedDiscount as cg, type TranslatedValue as ch, type LineItemAmount as ci, type ManagedAdditionalFee as cj, type TotalPriceChange as ck, type ShippingInformationChange as cl, type ShippingInformation as cm, type SavedPaymentMethod as cn, type AuthorizedPaymentCreated as co, type AuthorizedPaymentCaptured as cp, type AuthorizedPaymentVoided as cq, type RefundInitiated as cr, type RefundedPayment as cs, type RefundedPaymentKindOneOf as ct, type RegularPaymentRefund as cu, type GiftCardPaymentRefund as cv, type MembershipPaymentRefund as cw, type PaymentRefunded as cx, type PaymentRefundFailed as cy, type RefundedAsStoreCredit as cz, type PreparePaymentCollectionResponse as d, type SendMerchantOrderReceivedPushResponse as d$, type OrderSettings as d0, type OrderSettingsAllowedActionsOneOf as d1, type CustomAllowedActions as d2, type FormInfo as d3, type FormIdentifier as d4, type PlatformFeeSummary as d5, type PlatformFee as d6, type OrderApproved as d7, type OrdersExperiments as d8, type OrderRejectedEventOrderRejected as d9, type VersionedDocumentUpdateOperation as dA, type VersionedDeleteByIdsOperation as dB, type VersionedDocumentId as dC, type TriggerReindexRequest as dD, type TriggerReindexResponse as dE, type Empty as dF, type BatchOfTriggerReindexOrderRequest as dG, type TriggerReindexOrderRequest as dH, type SendBuyerConfirmationEmailRequest as dI, type SendBuyerConfirmationEmailResponse as dJ, type SendBuyerPaymentsReceivedEmailRequest as dK, type SendBuyerPaymentsReceivedEmailResponse as dL, type SendBuyerPickupConfirmationEmailRequest as dM, type SendBuyerPickupConfirmationEmailResponse as dN, type BulkSendBuyerPickupConfirmationEmailsRequest as dO, type BulkSendBuyerPickupConfirmationEmailsResponse as dP, type SendBuyerShippingConfirmationEmailRequest as dQ, type SendBuyerShippingConfirmationEmailResponse as dR, type BulkSendBuyerShippingConfirmationEmailsRequest as dS, type BulkSendBuyerShippingConfirmationEmailsResponse as dT, type SendMerchantOrderReceivedNotificationRequest as dU, type SendMerchantOrderReceivedNotificationResponse as dV, type SendCancelRefundEmailRequest as dW, type SendCancelRefundEmailResponse as dX, type SendRefundEmailRequest as dY, type SendRefundEmailResponse as dZ, type SendMerchantOrderReceivedPushRequest as d_, type OrderItemsRestocked as da, type V1RestockItem as db, type OrderImported as dc, type ImportedOrderDeleted as dd, type ImportOrderRequest as de, type SetOrderNumberCounterRequest as df, type BulkDeleteImportedOrdersRequest as dg, type DomainEvent as dh, type DomainEventBodyOneOf as di, type EntityCreatedEvent as dj, type RestoreInfo as dk, type EntityUpdatedEvent as dl, type EntityDeletedEvent as dm, type ActionEvent as dn, type MessageEnvelope as dp, type IdentificationData as dq, type IdentificationDataIdOneOf as dr, type UpdateInternalDocumentsEvent as ds, type UpdateInternalDocumentsEventOperationOneOf as dt, type InternalDocument as du, type InternalDocumentUpdateOperation as dv, type DeleteByIdsOperation as dw, type DeleteByFilterOperation as dx, type InternalDocumentUpdateByFilterOperation as dy, type InternalUpdateExistingOperation as dz, type PreparePaymentCollectionApplicationErrors as e, type GiftCardPaymentDetails as e$, type PreviewEmailByTypeRequest as e0, type PreviewEmailByTypeResponse as e1, type PreviewRefundEmailRequest as e2, type RefundDetails as e3, type RefundItem as e4, type LineItemRefund as e5, type AdditionalFeeRefund as e6, type ShippingRefund as e7, type PreviewRefundEmailResponse as e8, type PreviewCancelEmailRequest as e9, type GetRefundabilityStatusRequest as eA, type Refundability as eB, type RefundabilityAdditionalRefundabilityInfoOneOf as eC, type CreatePaymentGatewayOrderRequest as eD, type ChargedBy as eE, type ChargeMembershipsRequest as eF, type MembershipChargeItem as eG, type MembershipName as eH, type ServiceProperties as eI, type ChargeMembershipsResponse as eJ, type TriggerRefundRequest as eK, type RefundSideEffects as eL, type RestockInfo as eM, type RestockItem as eN, type OrderTransactions as eO, type Payment as eP, type PaymentPaymentDetailsOneOf as eQ, type PaymentReceiptInfoOneOf as eR, type RegularPaymentDetails as eS, type RegularPaymentDetailsPaymentMethodDetailsOneOf as eT, type CreditCardPaymentMethodDetails as eU, type AuthorizationDetails as eV, type AuthorizationCapture as eW, type AuthorizationActionFailureDetails as eX, type AuthorizationVoid as eY, type V1ScheduledAction as eZ, type Chargeback as e_, type PreviewCancelEmailResponse as ea, type PreviewCancelRefundEmailRequest as eb, type PreviewCancelRefundEmailResponse as ec, type PreviewBuyerPaymentsReceivedEmailRequest as ed, type PreviewBuyerPaymentsReceivedEmailResponse as ee, type PreviewBuyerConfirmationEmailRequest as ef, type PreviewBuyerConfirmationEmailResponse as eg, type PreviewBuyerPickupConfirmationEmailRequest as eh, type PreviewBuyerPickupConfirmationEmailResponse as ei, type PreviewShippingConfirmationEmailRequest as ej, type PreviewShippingConfirmationEmailResponse as ek, type PreviewResendDownloadLinksEmailRequest as el, type PreviewResendDownloadLinksEmailResponse as em, type PreparePaymentCollectionRequest as en, type RedirectUrls as eo, type DelayedCaptureSettings as ep, type Duration as eq, type GetPaymentCollectabilityStatusRequest as er, type RecordManuallyCollectedPaymentRequest as es, type RecordManuallyCollectedPaymentResponse as et, type MarkOrderAsPaidRequest as eu, type BulkMarkOrdersAsPaidRequest as ev, type BulkOrderResult as ew, type ItemMetadata as ex, type ApplicationError as ey, type BulkActionMetadata as ez, type PaymentCollectionMarkOrderAsPaidApplicationErrors as f, type LineItemDelta as f$, type MembershipPaymentDetails as f0, type WixReceiptInfo as f1, type ExternalReceiptInfo as f2, type Refund as f3, type RefundTransaction as f4, type RefundStatusInfo as f5, type AggregatedRefundSummary as f6, type RefundItemsBreakdown as f7, type LineItemRefundSummary as f8, type CalculateRefundRequest as f9, type CreateOrderRequest as fA, type OrderCreationSettings as fB, type OrderCreateNotifications as fC, type CreateOrderResponse as fD, type UpdateOrderRequest as fE, type UpdateOrderResponse as fF, type BulkUpdateOrdersRequest as fG, type CommitDeltasRequest as fH, type DraftOrderDiffs as fI, type DraftOrderDiffsShippingUpdateInfoOneOf as fJ, type DraftOrderDiffsBuyerUpdateInfoOneOf as fK, type DraftOrderDiffsBillingUpdateInfoOneOf as fL, type DraftOrderDiffsRecipientUpdateInfoOneOf as fM, type V1LineItemDelta as fN, type V1LineItemDeltaDeltaOneOf as fO, type OrderLineItemChangedDetails as fP, type ItemChangedDetails as fQ, type AppliedDiscountDelta as fR, type AppliedDiscountDeltaDeltaOneOf as fS, type AdditionalFeeDelta as fT, type AdditionalFeeDeltaDeltaOneOf as fU, type DraftOrderCommitSettings as fV, type InventoryUpdateDetails as fW, type CommitDeltasResponse as fX, type OrderDeltasCommitted as fY, type CommittedDiffs as fZ, type CommittedDiffsShippingUpdateInfoOneOf as f_, type CalculateRefundItemRequest as fa, type CalculateRefundResponse as fb, type CalculateRefundItemResponse as fc, type VoidAuthorizedPaymentsRequest as fd, type CaptureAuthorizedPaymentsRequest as fe, type ChargeSavedPaymentMethodRequest as ff, type ChargeSavedPaymentMethodResponse as fg, type DiffmatokyPayload as fh, type ErrorInformation as fi, type GetOrderRequest as fj, type GetOrderResponse as fk, type InternalQueryOrdersRequest as fl, type PlatformQuery as fm, type PlatformQueryPagingMethodOneOf as fn, type Sorting as fo, type PlatformPaging as fp, type CursorPaging as fq, type InternalQueryOrdersResponse as fr, type PlatformPagingMetadata as fs, type Cursors as ft, type QueryOrderRequest as fu, type QueryOrderResponse as fv, type SearchOrdersRequest as fw, type CursorSearch as fx, type CursorSearchPagingMethodOneOf as fy, type CursorPagingMetadata as fz, type BulkMarkOrdersAsPaidResponse as g, type MarkAsFulfilledResponse as g$, type LineItemDeltaDeltaOneOf as g0, type ArchiveOrderRequest as g1, type ArchiveOrderResponse as g2, type BulkArchiveOrdersRequest as g3, type BulkArchiveOrdersResponse as g4, type BulkArchiveOrdersByFilterRequest as g5, type BulkArchiveOrdersByFilterResponse as g6, type UnArchiveOrderRequest as g7, type UnArchiveOrderResponse as g8, type BulkUnArchiveOrdersRequest as g9, type TrackingNumberEdited as gA, type TrackingLinkAdded as gB, type ShippingConfirmationEmailSent as gC, type InvoiceAdded as gD, type InvoiceSent as gE, type FulfillerEmailSent as gF, type ShippingAddressEdited as gG, type EmailEdited as gH, type PickupReadyEmailSent as gI, type OrderPartiallyPaid as gJ, type OrderPending as gK, type OrderRejected as gL, type AddInternalActivityResponse as gM, type AddActivityRequest as gN, type PublicActivityContentOneOf as gO, type AddActivitiesRequest as gP, type UpdateActivityRequest as gQ, type DeleteActivityRequest as gR, type UpdateLineItemsDescriptionLinesRequest as gS, type LineItemUpdate as gT, type UpdateLineItemsDescriptionLinesResponse as gU, type MarkOrderAsSeenByHumanRequest as gV, type MarkOrderAsSeenByHumanResponse as gW, type CancelOrderRequest as gX, type OrderCanceledEventOrderCanceled as gY, type UpdateOrderStatusRequest as gZ, type MarkAsFulfilledRequest as g_, type BulkUnArchiveOrdersResponse as ga, type BulkUnArchiveOrdersByFilterRequest as gb, type BulkUnArchiveOrdersByFilterResponse as gc, type UpdateBuyerInfoRequest as gd, type BuyerInfoUpdate as ge, type UpdateBuyerInfoResponse as gf, type UpdateBuyerEmailRequest as gg, type UpdateBuyerEmailResponse as gh, type UpdateOrderShippingAddressRequest as gi, type UpdateOrderShippingAddressResponse as gj, type UpdateBillingContactDetailsRequest as gk, type UpdateBillingContactDetailsResponse as gl, type UpdateOrderLineItemRequest as gm, type UpdateOrderLineItemsRequest as gn, type MaskedOrderLineItem as go, type UpdateOrderLineItemsResponse as gp, type AddInternalActivityRequest as gq, type InternalActivity as gr, type InternalActivityContentOneOf as gs, type OrderPlaced as gt, type OrderPaid as gu, type OrderFulfilled as gv, type OrderNotFulfilled as gw, type OrderCanceled as gx, type DownloadLinkSent as gy, type TrackingNumberAdded as gz, type GetRefundabilityStatusResponse as h, type Payments as h$, type FulfillmentStatusUpdated as h0, type BulkMarkAsFulfilledRequest as h1, type BulkMarkAsFulfilledResponse as h2, type BulkMarkAsFulfilledByFilterRequest as h3, type BulkMarkAsFulfilledByFilterResponse as h4, type MarkAsUnfulfilledRequest as h5, type MarkAsUnfulfilledResponse as h6, type BulkMarkAsUnfulfilledRequest as h7, type BulkMarkAsUnfulfilledResponse as h8, type BulkMarkAsUnfulfilledByFilterRequest as h9, type InvoiceSentEvent as hA, type IdAndVersion as hB, type InvoiceFields as hC, type Customer as hD, type Email as hE, type QuotesAddress as hF, type AddressDescription as hG, type Phone as hH, type Company as hI, type CommonAddress as hJ, type CommonAddressStreetOneOf as hK, type Subdivision as hL, type StandardDetails as hM, type InvoiceDates as hN, type LineItems as hO, type LineItem as hP, type BigDecimalWrapper as hQ, type LineItemTax as hR, type Source as hS, type LineItemMetaData as hT, type Locale as hU, type TotalPrice as hV, type ItemizedFee as hW, type Discount as hX, type DiscountOneDiscountTypeOneOf as hY, type CalculatedTaxes as hZ, type CalculatedTax as h_, type BulkMarkAsUnfulfilledByFilterResponse as ha, type BulkSetBusinessLocationRequest as hb, type BulkSetBusinessLocationResponse as hc, type BulkSetBusinessLocationResult as hd, type V1MarkOrderAsPaidRequest as he, type V1MarkOrderAsPaidResponse as hf, type PaymentStatusUpdated as hg, type V1BulkMarkOrdersAsPaidRequest as hh, type V1BulkMarkOrdersAsPaidResponse as hi, type V1CreatePaymentGatewayOrderRequest as hj, type V1CreatePaymentGatewayOrderResponse as hk, type GetShipmentsRequest as hl, type GetShipmentsResponse as hm, type AggregateOrdersRequest as hn, type DecrementItemsQuantityRequest as ho, type DecrementData as hp, type DecrementItemsQuantityResponse as hq, type BulkUpdateOrderTagsRequest as hr, type BulkUpdateOrderTagsResult as hs, type Task as ht, type TaskKey as hu, type TaskAction as hv, type TaskActionActionOneOf as hw, type Complete as hx, type Cancel as hy, type Reschedule as hz, type PaymentCollectionCreatePaymentGatewayOrderOptions as i, onOrderApproved as i$, type InvoicesPayment as i0, type MetaData as i1, type InvoiceDynamicPriceTotals as i2, type CustomFieldValue as i3, type Value as i4, type Deposit as i5, type BaseEventMetadata as i6, type EventMetadata as i7, type OrderSearchSpec as i8, type DescriptionLineTypeWithLiterals as i9, type ScheduledActionWithLiterals as iA, type DurationUnitWithLiterals as iB, type PaymentCollectabilityStatusWithLiterals as iC, type RefundableStatusWithLiterals as iD, type NonRefundableReasonWithLiterals as iE, type ManuallyRefundableReasonWithLiterals as iF, type RestockTypeWithLiterals as iG, type TransactionStatusWithLiterals as iH, type AuthorizationCaptureStatusWithLiterals as iI, type AuthorizationVoidStatusWithLiterals as iJ, type ReasonWithLiterals as iK, type ActionTypeWithLiterals as iL, type ChargebackStatusWithLiterals as iM, type MembershipPaymentStatusWithLiterals as iN, type RefundStatusWithLiterals as iO, type SortOrderWithLiterals as iP, type OrderApprovalStrategyWithLiterals as iQ, type DeltaPaymentOptionTypeWithLiterals as iR, type InventoryActionWithLiterals as iS, type PlacementWithLiterals as iT, type SubdivisionTypeWithLiterals as iU, type SourceTypeWithLiterals as iV, type CustomFieldGroupWithLiterals as iW, type ValueTypeWithLiterals as iX, type DepositTypeWithLiterals as iY, type InvoiceStatusWithLiterals as iZ, type CommonSearchWithEntityContext as i_, type ItemTypePresetWithLiterals as ia, type PaymentOptionTypeWithLiterals as ib, type JurisdictionTypeWithLiterals as ic, type SubscriptionFrequencyWithLiterals as id, type AdjustmentTypeWithLiterals as ie, type TaxableAddressTypeWithLiterals as ig, type PaymentStatusWithLiterals as ih, type FulfillmentStatusWithLiterals as ii, type WeightUnitWithLiterals as ij, type VatTypeWithLiterals as ik, type PickupMethodWithLiterals as il, type DiscountTypeWithLiterals as im, type DiscountReasonWithLiterals as io, type LineItemQuantityChangeTypeWithLiterals as ip, type ActivityTypeWithLiterals as iq, type OrderActivityTypeEnumActivityTypeWithLiterals as ir, type AttributionSourceWithLiterals as is, type ChannelTypeWithLiterals as it, type AdditionalFeeSourceWithLiterals as iu, type OrderActionTypeWithLiterals as iv, type ChargeTypeWithLiterals as iw, type WebhookIdentityTypeWithLiterals as ix, type VersioningModeWithLiterals as iy, type PreviewEmailTypeWithLiterals as iz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as j, onOrderUpdated as j0, onOrderCanceled as j1, onOrderCreated as j2, onOrderPaymentStatusUpdated as j3, importOrder as j4, setOrderNumberCounter as j5, bulkDeleteImportedOrders as j6, preparePaymentCollection as j7, getPaymentCollectabilityStatus as j8, recordManuallyCollectedPayment as j9, paymentCollectionMarkOrderAsPaid as ja, paymentCollectionBulkMarkOrdersAsPaid as jb, getRefundabilityStatus as jc, paymentCollectionCreatePaymentGatewayOrder as jd, chargeMemberships as je, triggerRefund as jf, voidAuthorizedPayments as jg, captureAuthorizedPayments as jh, getOrder as ji, createOrder as jj, updateOrder as jk, bulkUpdateOrders as jl, updateOrderLineItem as jm, addActivity as jn, addActivities as jo, updateActivity as jp, deleteActivity as jq, cancelOrder as jr, updateOrderStatus as js, aggregateOrders as jt, bulkUpdateOrderTags as ju, type ChargeMembershipsOptions as k, type PaymentRefund as l, type TriggerRefundResponse as m, type TriggerRefundApplicationErrors as n, type VoidAuthorizedPaymentsApplicationErrors as o, type PaymentCapture as p, type CaptureAuthorizedPaymentsResponse as q, type CaptureAuthorizedPaymentsApplicationErrors as r, type GetOrderApplicationErrors as s, type OrderSearch as t, type SearchOrdersResponse as u, type CreateOrderOptions as v, type CreateOrderApplicationErrors as w, type UpdateOrderApplicationErrors as x, type MaskedOrder as y, type BulkUpdateOrdersOptions as z };
8454
+ export { type OrderStatusWithLiterals as $, type BulkUpdateOrdersResponse as A, type BulkDeleteImportedOrdersOptions as B, type CreatePaymentGatewayOrderResponse as C, type UpdateOrderLineItemIdentifiers as D, type UpdateOrderLineItem as E, type UpdateOrderLineItemResponse as F, type GetPaymentCollectabilityStatusResponse as G, type PublicActivity as H, type ImportOrderResponse as I, type AddActivityResponse as J, type AddActivitiesOptions as K, type AddActivitiesResponse as L, type MarkOrderAsPaidResponse as M, type UpdateActivityIdentifiers as N, type Order as O, type Price as P, type UpdateActivityResponse as Q, type RecordManuallyCollectedPaymentApplicationErrors as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type DeleteActivityIdentifiers as W, type DeleteActivityResponse as X, type CancelOrderOptions as Y, type CancelOrderResponse as Z, type CancelOrderApplicationErrors as _, type SetOrderNumberCounterResponse as a, type OrderLineItem as a$, type UpdateOrderStatusResponse as a0, type UpdateOrderStatusApplicationErrors as a1, type AggregateOrdersOptions as a2, type AggregateOrdersResponse as a3, type BulkUpdateOrderTagsOptions as a4, type BulkUpdateOrderTagsResponse as a5, type OrderApprovedEnvelope as a6, type OrderUpdatedEnvelope as a7, type OrderCanceledEnvelope as a8, type OrderCreatedEnvelope as a9, ScheduledAction as aA, DurationUnit as aB, PaymentCollectabilityStatus as aC, RefundableStatus as aD, NonRefundableReason as aE, ManuallyRefundableReason as aF, RestockType as aG, TransactionStatus as aH, AuthorizationCaptureStatus as aI, AuthorizationVoidStatus as aJ, Reason as aK, ActionType as aL, ChargebackStatus as aM, MembershipPaymentStatus as aN, RefundStatus as aO, VersioningMode as aP, SortOrder as aQ, OrderApprovalStrategy as aR, DeltaPaymentOptionType as aS, InventoryAction as aT, Placement as aU, SubdivisionType as aV, SourceType as aW, CustomFieldGroup as aX, ValueType as aY, DepositType as aZ, InvoiceStatus as a_, type OrderPaymentStatusUpdatedEnvelope as aa, DescriptionLineType as ab, ItemTypePreset as ac, PaymentOptionType as ad, JurisdictionType as ae, SubscriptionFrequency as af, AdjustmentType as ag, TaxableAddressType as ah, PaymentStatus as ai, FulfillmentStatus as aj, WeightUnit as ak, VatType as al, PickupMethod as am, OrderStatus as an, DiscountType as ao, DiscountReason as ap, LineItemQuantityChangeType as aq, ActivityType as ar, OrderActivityTypeEnumActivityType as as, AttributionSource as at, ChannelType as au, AdditionalFeeSource as av, OrderActionType as aw, ChargeType as ax, WebhookIdentityType as ay, PreviewEmailType as az, type BulkDeleteImportedOrdersResponse as b, type ActivityContentOneOf as b$, type ProductName as b0, type CatalogReference as b1, type DescriptionLine as b2, type DescriptionLineValueOneOf as b3, type DescriptionLineDescriptionLineValueOneOf as b4, type DescriptionLineName as b5, type PlainTextValue as b6, type Color as b7, type FocalPoint as b8, type PhysicalProperties as b9, type Address as bA, type StreetAddress as bB, type AddressLocation as bC, type FullAddressContactDetails as bD, type VatId as bE, type V1ShippingInformation as bF, type DeliveryLogistics as bG, type DeliveryLogisticsAddressOneOf as bH, type PickupDetails as bI, type PickupAddress as bJ, type DeliveryTimeSlot as bK, type ShippingPrice as bL, type ShippingRegion as bM, type TaxSummary as bN, type OrderTaxInfo as bO, type OrderTaxBreakdown as bP, type AppliedDiscount as bQ, type AppliedDiscountDiscountSourceOneOf as bR, type Coupon as bS, type MerchantDiscount as bT, type MerchantDiscountMerchantDiscountReasonOneOf as bU, type DiscountRule as bV, type DiscountRuleName as bW, type LineItemDiscount as bX, type ItemCombination as bY, type ItemCombinationLineItem as bZ, type Activity as b_, type ItemType as ba, type ItemTypeItemTypeDataOneOf as bb, type ItemTaxFullDetails as bc, type LineItemTaxInfo as bd, type LineItemTaxBreakdown as be, type DigitalFile as bf, type SubscriptionInfo as bg, type SubscriptionTitle as bh, type SubscriptionDescription as bi, type SubscriptionSettings as bj, type FreeTrialPeriod as bk, type BillingAdjustment as bl, type BillingAdjustmentPriceSummary as bm, type PriceDescription as bn, type LocationAndQuantity as bo, type TaxableAddress as bp, type TaxableAddressTaxableAddressDataOneOf as bq, type ExtendedFields as br, type ModifierGroup as bs, type TranslatableString as bt, type ItemModifier as bu, type BuyerInfo as bv, type BuyerInfoIdOneOf as bw, type CurrencyConversionDetails as bx, type PriceSummary as by, type AddressWithContact as bz, type PreparePaymentCollectionOptions as c, type Location as c$, type CustomActivity as c0, type MerchantComment as c1, type OrderRefunded as c2, type OrderCreatedFromExchange as c3, type NewExchangeOrderCreated as c4, type LineItemExchangeData as c5, type DraftOrderChangesApplied as c6, type OrderChange as c7, type OrderChangeValueOneOf as c8, type LineItemChanges as c9, type PaymentPending as cA, type PaymentPendingPaymentDetailsOneOf as cB, type RegularPayment as cC, type RegularPaymentPaymentMethodDetailsOneOf as cD, type CreditCardDetails as cE, type PaymentCanceled as cF, type PaymentCanceledPaymentDetailsOneOf as cG, type PaymentDeclined as cH, type PaymentDeclinedPaymentDetailsOneOf as cI, type ReceiptCreated as cJ, type ReceiptCreatedReceiptInfoOneOf as cK, type WixReceipt as cL, type ExternalReceipt as cM, type ReceiptSent as cN, type ReceiptSentReceiptInfoOneOf as cO, type ChargebackCreated as cP, type ChargebackReversed as cQ, type CreatedBy as cR, type CreatedByStringOneOf as cS, type ChannelInfo as cT, type CustomField as cU, type BalanceSummary as cV, type Balance as cW, type AdditionalFee as cX, type FulfillmentStatusesAggregate as cY, type Tags as cZ, type TagList as c_, type LineItemQuantityChange as ca, type LineItemPriceChange as cb, type LineItemProductNameChange as cc, type LineItemDescriptionLineChange as cd, type LineItemModifiersChange as ce, type ManagedLineItem as cf, type ManagedDiscount as cg, type TranslatedValue as ch, type LineItemAmount as ci, type ManagedAdditionalFee as cj, type TotalPriceChange as ck, type ShippingInformationChange as cl, type ShippingInformation as cm, type SavedPaymentMethod as cn, type AuthorizedPaymentCreated as co, type AuthorizedPaymentCaptured as cp, type AuthorizedPaymentVoided as cq, type RefundInitiated as cr, type RefundedPayment as cs, type RefundedPaymentKindOneOf as ct, type RegularPaymentRefund as cu, type GiftCardPaymentRefund as cv, type MembershipPaymentRefund as cw, type PaymentRefunded as cx, type PaymentRefundFailed as cy, type RefundedAsStoreCredit as cz, type PreparePaymentCollectionResponse as d, type PreviewBuyerConfirmationEmailRequest as d$, type OrderSettings as d0, type OrderSettingsAllowedActionsOneOf as d1, type CustomAllowedActions as d2, type FormInfo as d3, type FormIdentifier as d4, type PlatformFeeSummary as d5, type PlatformFee as d6, type OrderApproved as d7, type OrdersExperiments as d8, type OrderRejectedEventOrderRejected as d9, type SendBuyerShippingConfirmationEmailRequest as dA, type SendBuyerShippingConfirmationEmailResponse as dB, type BulkSendBuyerShippingConfirmationEmailsRequest as dC, type BulkSendBuyerShippingConfirmationEmailsResponse as dD, type SendMerchantOrderReceivedNotificationRequest as dE, type SendMerchantOrderReceivedNotificationResponse as dF, type SendCancelRefundEmailRequest as dG, type SendCancelRefundEmailResponse as dH, type SendRefundEmailRequest as dI, type SendRefundEmailResponse as dJ, type SendMerchantOrderReceivedPushRequest as dK, type SendMerchantOrderReceivedPushResponse as dL, type PreviewEmailByTypeRequest as dM, type PreviewEmailByTypeResponse as dN, type PreviewRefundEmailRequest as dO, type RefundDetails as dP, type RefundItem as dQ, type LineItemRefund as dR, type AdditionalFeeRefund as dS, type ShippingRefund as dT, type PreviewRefundEmailResponse as dU, type PreviewCancelEmailRequest as dV, type PreviewCancelEmailResponse as dW, type PreviewCancelRefundEmailRequest as dX, type PreviewCancelRefundEmailResponse as dY, type PreviewBuyerPaymentsReceivedEmailRequest as dZ, type PreviewBuyerPaymentsReceivedEmailResponse as d_, type OrderItemsRestocked as da, type V1RestockItem as db, type OrderImported as dc, type ImportedOrderDeleted as dd, type ImportOrderRequest as de, type SetOrderNumberCounterRequest as df, type BulkDeleteImportedOrdersRequest as dg, type DomainEvent as dh, type DomainEventBodyOneOf as di, type EntityCreatedEvent as dj, type RestoreInfo as dk, type EntityUpdatedEvent as dl, type EntityDeletedEvent as dm, type ActionEvent as dn, type MessageEnvelope as dp, type IdentificationData as dq, type IdentificationDataIdOneOf as dr, type SendBuyerConfirmationEmailRequest as ds, type SendBuyerConfirmationEmailResponse as dt, type SendBuyerPaymentsReceivedEmailRequest as du, type SendBuyerPaymentsReceivedEmailResponse as dv, type SendBuyerPickupConfirmationEmailRequest as dw, type SendBuyerPickupConfirmationEmailResponse as dx, type BulkSendBuyerPickupConfirmationEmailsRequest as dy, type BulkSendBuyerPickupConfirmationEmailsResponse as dz, type PreparePaymentCollectionApplicationErrors as e, type CaptureAuthorizedPaymentsRequest as e$, type PreviewBuyerConfirmationEmailResponse as e0, type PreviewBuyerPickupConfirmationEmailRequest as e1, type PreviewBuyerPickupConfirmationEmailResponse as e2, type PreviewShippingConfirmationEmailRequest as e3, type PreviewShippingConfirmationEmailResponse as e4, type PreviewResendDownloadLinksEmailRequest as e5, type PreviewResendDownloadLinksEmailResponse as e6, type Empty as e7, type PreparePaymentCollectionRequest as e8, type RedirectUrls as e9, type Payment as eA, type PaymentPaymentDetailsOneOf as eB, type PaymentReceiptInfoOneOf as eC, type RegularPaymentDetails as eD, type RegularPaymentDetailsPaymentMethodDetailsOneOf as eE, type CreditCardPaymentMethodDetails as eF, type AuthorizationDetails as eG, type AuthorizationCapture as eH, type AuthorizationActionFailureDetails as eI, type AuthorizationVoid as eJ, type V1ScheduledAction as eK, type Chargeback as eL, type GiftCardPaymentDetails as eM, type MembershipPaymentDetails as eN, type WixReceiptInfo as eO, type ExternalReceiptInfo as eP, type Refund as eQ, type RefundTransaction as eR, type RefundStatusInfo as eS, type AggregatedRefundSummary as eT, type RefundItemsBreakdown as eU, type LineItemRefundSummary as eV, type CalculateRefundRequest as eW, type CalculateRefundItemRequest as eX, type CalculateRefundResponse as eY, type CalculateRefundItemResponse as eZ, type VoidAuthorizedPaymentsRequest as e_, type DelayedCaptureSettings as ea, type Duration as eb, type GetPaymentCollectabilityStatusRequest as ec, type RecordManuallyCollectedPaymentRequest as ed, type RecordManuallyCollectedPaymentResponse as ee, type MarkOrderAsPaidRequest as ef, type BulkMarkOrdersAsPaidRequest as eg, type BulkOrderResult as eh, type ItemMetadata as ei, type ApplicationError as ej, type BulkActionMetadata as ek, type GetRefundabilityStatusRequest as el, type Refundability as em, type RefundabilityAdditionalRefundabilityInfoOneOf as en, type CreatePaymentGatewayOrderRequest as eo, type ChargedBy as ep, type ChargeMembershipsRequest as eq, type MembershipChargeItem as er, type MembershipName as es, type ServiceProperties as et, type ChargeMembershipsResponse as eu, type TriggerRefundRequest as ev, type RefundSideEffects as ew, type RestockInfo as ex, type RestockItem as ey, type OrderTransactions as ez, type PaymentCollectionMarkOrderAsPaidApplicationErrors as f, type LineItemDelta as f$, type ChargeSavedPaymentMethodRequest as f0, type ChargeSavedPaymentMethodResponse as f1, type UpdateInternalDocumentsEvent as f2, type UpdateInternalDocumentsEventOperationOneOf as f3, type InternalDocument as f4, type InternalDocumentUpdateOperation as f5, type DeleteByIdsOperation as f6, type DeleteByFilterOperation as f7, type InternalDocumentUpdateByFilterOperation as f8, type InternalUpdateExistingOperation as f9, type CreateOrderRequest as fA, type OrderCreationSettings as fB, type OrderCreateNotifications as fC, type CreateOrderResponse as fD, type UpdateOrderRequest as fE, type UpdateOrderResponse as fF, type BulkUpdateOrdersRequest as fG, type CommitDeltasRequest as fH, type DraftOrderDiffs as fI, type DraftOrderDiffsShippingUpdateInfoOneOf as fJ, type DraftOrderDiffsBuyerUpdateInfoOneOf as fK, type DraftOrderDiffsBillingUpdateInfoOneOf as fL, type DraftOrderDiffsRecipientUpdateInfoOneOf as fM, type V1LineItemDelta as fN, type V1LineItemDeltaDeltaOneOf as fO, type OrderLineItemChangedDetails as fP, type ItemChangedDetails as fQ, type AppliedDiscountDelta as fR, type AppliedDiscountDeltaDeltaOneOf as fS, type AdditionalFeeDelta as fT, type AdditionalFeeDeltaDeltaOneOf as fU, type DraftOrderCommitSettings as fV, type InventoryUpdateDetails as fW, type CommitDeltasResponse as fX, type OrderDeltasCommitted as fY, type CommittedDiffs as fZ, type CommittedDiffsShippingUpdateInfoOneOf as f_, type VersionedDocumentUpdateOperation as fa, type VersionedDeleteByIdsOperation as fb, type VersionedDocumentId as fc, type TriggerReindexRequest as fd, type TriggerReindexResponse as fe, type BatchOfTriggerReindexOrderRequest as ff, type TriggerReindexOrderRequest as fg, type DiffmatokyPayload as fh, type ErrorInformation as fi, type GetOrderRequest as fj, type GetOrderResponse as fk, type InternalQueryOrdersRequest as fl, type PlatformQuery as fm, type PlatformQueryPagingMethodOneOf as fn, type Sorting as fo, type PlatformPaging as fp, type CursorPaging as fq, type InternalQueryOrdersResponse as fr, type PlatformPagingMetadata as fs, type Cursors as ft, type QueryOrderRequest as fu, type QueryOrderResponse as fv, type SearchOrdersRequest as fw, type CursorSearch as fx, type CursorSearchPagingMethodOneOf as fy, type CursorPagingMetadata as fz, type BulkMarkOrdersAsPaidResponse as g, type MarkAsFulfilledResponse as g$, type LineItemDeltaDeltaOneOf as g0, type ArchiveOrderRequest as g1, type ArchiveOrderResponse as g2, type BulkArchiveOrdersRequest as g3, type BulkArchiveOrdersResponse as g4, type BulkArchiveOrdersByFilterRequest as g5, type BulkArchiveOrdersByFilterResponse as g6, type UnArchiveOrderRequest as g7, type UnArchiveOrderResponse as g8, type BulkUnArchiveOrdersRequest as g9, type TrackingNumberEdited as gA, type TrackingLinkAdded as gB, type ShippingConfirmationEmailSent as gC, type InvoiceAdded as gD, type InvoiceSent as gE, type FulfillerEmailSent as gF, type ShippingAddressEdited as gG, type EmailEdited as gH, type PickupReadyEmailSent as gI, type OrderPartiallyPaid as gJ, type OrderPending as gK, type OrderRejected as gL, type AddInternalActivityResponse as gM, type AddActivityRequest as gN, type PublicActivityContentOneOf as gO, type AddActivitiesRequest as gP, type UpdateActivityRequest as gQ, type DeleteActivityRequest as gR, type UpdateLineItemsDescriptionLinesRequest as gS, type LineItemUpdate as gT, type UpdateLineItemsDescriptionLinesResponse as gU, type MarkOrderAsSeenByHumanRequest as gV, type MarkOrderAsSeenByHumanResponse as gW, type CancelOrderRequest as gX, type OrderCanceledEventOrderCanceled as gY, type UpdateOrderStatusRequest as gZ, type MarkAsFulfilledRequest as g_, type BulkUnArchiveOrdersResponse as ga, type BulkUnArchiveOrdersByFilterRequest as gb, type BulkUnArchiveOrdersByFilterResponse as gc, type UpdateBuyerInfoRequest as gd, type BuyerInfoUpdate as ge, type UpdateBuyerInfoResponse as gf, type UpdateBuyerEmailRequest as gg, type UpdateBuyerEmailResponse as gh, type UpdateOrderShippingAddressRequest as gi, type UpdateOrderShippingAddressResponse as gj, type UpdateBillingContactDetailsRequest as gk, type UpdateBillingContactDetailsResponse as gl, type UpdateOrderLineItemRequest as gm, type UpdateOrderLineItemsRequest as gn, type MaskedOrderLineItem as go, type UpdateOrderLineItemsResponse as gp, type AddInternalActivityRequest as gq, type InternalActivity as gr, type InternalActivityContentOneOf as gs, type OrderPlaced as gt, type OrderPaid as gu, type OrderFulfilled as gv, type OrderNotFulfilled as gw, type OrderCanceled as gx, type DownloadLinkSent as gy, type TrackingNumberAdded as gz, type GetRefundabilityStatusResponse as h, type Payments as h$, type FulfillmentStatusUpdated as h0, type BulkMarkAsFulfilledRequest as h1, type BulkMarkAsFulfilledResponse as h2, type BulkMarkAsFulfilledByFilterRequest as h3, type BulkMarkAsFulfilledByFilterResponse as h4, type MarkAsUnfulfilledRequest as h5, type MarkAsUnfulfilledResponse as h6, type BulkMarkAsUnfulfilledRequest as h7, type BulkMarkAsUnfulfilledResponse as h8, type BulkMarkAsUnfulfilledByFilterRequest as h9, type InvoiceSentEvent as hA, type IdAndVersion as hB, type InvoiceFields as hC, type Customer as hD, type Email as hE, type QuotesAddress as hF, type AddressDescription as hG, type Phone as hH, type Company as hI, type CommonAddress as hJ, type CommonAddressStreetOneOf as hK, type Subdivision as hL, type StandardDetails as hM, type InvoiceDates as hN, type LineItems as hO, type LineItem as hP, type BigDecimalWrapper as hQ, type LineItemTax as hR, type Source as hS, type LineItemMetaData as hT, type Locale as hU, type TotalPrice as hV, type ItemizedFee as hW, type Discount as hX, type DiscountOneDiscountTypeOneOf as hY, type CalculatedTaxes as hZ, type CalculatedTax as h_, type BulkMarkAsUnfulfilledByFilterResponse as ha, type BulkSetBusinessLocationRequest as hb, type BulkSetBusinessLocationResponse as hc, type BulkSetBusinessLocationResult as hd, type V1MarkOrderAsPaidRequest as he, type V1MarkOrderAsPaidResponse as hf, type PaymentStatusUpdated as hg, type V1BulkMarkOrdersAsPaidRequest as hh, type V1BulkMarkOrdersAsPaidResponse as hi, type V1CreatePaymentGatewayOrderRequest as hj, type V1CreatePaymentGatewayOrderResponse as hk, type GetShipmentsRequest as hl, type GetShipmentsResponse as hm, type AggregateOrdersRequest as hn, type DecrementItemsQuantityRequest as ho, type DecrementData as hp, type DecrementItemsQuantityResponse as hq, type BulkUpdateOrderTagsRequest as hr, type BulkUpdateOrderTagsResult as hs, type Task as ht, type TaskKey as hu, type TaskAction as hv, type TaskActionActionOneOf as hw, type Complete as hx, type Cancel as hy, type Reschedule as hz, type PaymentCollectionCreatePaymentGatewayOrderOptions as i, onOrderApproved as i$, type InvoicesPayment as i0, type MetaData as i1, type InvoiceDynamicPriceTotals as i2, type CustomFieldValue as i3, type Value as i4, type Deposit as i5, type BaseEventMetadata as i6, type EventMetadata as i7, type OrderSearchSpec as i8, type DescriptionLineTypeWithLiterals as i9, type DurationUnitWithLiterals as iA, type PaymentCollectabilityStatusWithLiterals as iB, type RefundableStatusWithLiterals as iC, type NonRefundableReasonWithLiterals as iD, type ManuallyRefundableReasonWithLiterals as iE, type RestockTypeWithLiterals as iF, type TransactionStatusWithLiterals as iG, type AuthorizationCaptureStatusWithLiterals as iH, type AuthorizationVoidStatusWithLiterals as iI, type ReasonWithLiterals as iJ, type ActionTypeWithLiterals as iK, type ChargebackStatusWithLiterals as iL, type MembershipPaymentStatusWithLiterals as iM, type RefundStatusWithLiterals as iN, type VersioningModeWithLiterals as iO, type SortOrderWithLiterals as iP, type OrderApprovalStrategyWithLiterals as iQ, type DeltaPaymentOptionTypeWithLiterals as iR, type InventoryActionWithLiterals as iS, type PlacementWithLiterals as iT, type SubdivisionTypeWithLiterals as iU, type SourceTypeWithLiterals as iV, type CustomFieldGroupWithLiterals as iW, type ValueTypeWithLiterals as iX, type DepositTypeWithLiterals as iY, type InvoiceStatusWithLiterals as iZ, type CommonSearchWithEntityContext as i_, type ItemTypePresetWithLiterals as ia, type PaymentOptionTypeWithLiterals as ib, type JurisdictionTypeWithLiterals as ic, type SubscriptionFrequencyWithLiterals as id, type AdjustmentTypeWithLiterals as ie, type TaxableAddressTypeWithLiterals as ig, type PaymentStatusWithLiterals as ih, type FulfillmentStatusWithLiterals as ii, type WeightUnitWithLiterals as ij, type VatTypeWithLiterals as ik, type PickupMethodWithLiterals as il, type DiscountTypeWithLiterals as im, type DiscountReasonWithLiterals as io, type LineItemQuantityChangeTypeWithLiterals as ip, type ActivityTypeWithLiterals as iq, type OrderActivityTypeEnumActivityTypeWithLiterals as ir, type AttributionSourceWithLiterals as is, type ChannelTypeWithLiterals as it, type AdditionalFeeSourceWithLiterals as iu, type OrderActionTypeWithLiterals as iv, type ChargeTypeWithLiterals as iw, type WebhookIdentityTypeWithLiterals as ix, type PreviewEmailTypeWithLiterals as iy, type ScheduledActionWithLiterals as iz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as j, onOrderUpdated as j0, onOrderCanceled as j1, onOrderCreated as j2, onOrderPaymentStatusUpdated as j3, importOrder as j4, setOrderNumberCounter as j5, bulkDeleteImportedOrders as j6, preparePaymentCollection as j7, getPaymentCollectabilityStatus as j8, recordManuallyCollectedPayment as j9, paymentCollectionMarkOrderAsPaid as ja, paymentCollectionBulkMarkOrdersAsPaid as jb, getRefundabilityStatus as jc, paymentCollectionCreatePaymentGatewayOrder as jd, chargeMemberships as je, triggerRefund as jf, voidAuthorizedPayments as jg, captureAuthorizedPayments as jh, getOrder as ji, createOrder as jj, updateOrder as jk, bulkUpdateOrders as jl, updateOrderLineItem as jm, addActivity as jn, addActivities as jo, updateActivity as jp, deleteActivity as jq, cancelOrder as jr, updateOrderStatus as js, aggregateOrders as jt, bulkUpdateOrderTags as ju, type ChargeMembershipsOptions as k, type PaymentRefund as l, type TriggerRefundResponse as m, type TriggerRefundApplicationErrors as n, type VoidAuthorizedPaymentsApplicationErrors as o, type PaymentCapture as p, type CaptureAuthorizedPaymentsResponse as q, type CaptureAuthorizedPaymentsApplicationErrors as r, type GetOrderApplicationErrors as s, type OrderSearch as t, type SearchOrdersResponse as u, type CreateOrderOptions as v, type CreateOrderApplicationErrors as w, type UpdateOrderApplicationErrors as x, type MaskedOrder as y, type BulkUpdateOrdersOptions 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 RecordManuallyCollectedPaymentApplicationErrors, M as MarkOrderAsPaidResponse, f as PaymentCollectionMarkOrderAsPaidApplicationErrors, g as BulkMarkOrdersAsPaidResponse, h as GetRefundabilityStatusResponse, i as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, j as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, k as ChargeMembershipsOptions, l as PaymentRefund, T as TriggerRefundOptions, m as TriggerRefundResponse, n as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, o as VoidAuthorizedPaymentsApplicationErrors, p as PaymentCapture, q as CaptureAuthorizedPaymentsResponse, r as CaptureAuthorizedPaymentsApplicationErrors, s as GetOrderApplicationErrors, t as OrderSearch, u as SearchOrdersResponse, v as CreateOrderOptions, w as CreateOrderApplicationErrors, U as UpdateOrder, x as UpdateOrderApplicationErrors, y as MaskedOrder, z as BulkUpdateOrdersOptions, A as BulkUpdateOrdersResponse, D as UpdateOrderLineItemIdentifiers, E as UpdateOrderLineItem, F as UpdateOrderLineItemResponse, H as PublicActivity, J as AddActivityResponse, K as AddActivitiesOptions, L as AddActivitiesResponse, N as UpdateActivityIdentifiers, Q as UpdateActivityResponse, W as DeleteActivityIdentifiers, X as DeleteActivityResponse, Y as CancelOrderOptions, Z as CancelOrderResponse, _ as CancelOrderApplicationErrors, $ as OrderStatusWithLiterals, a0 as UpdateOrderStatusResponse, a1 as UpdateOrderStatusApplicationErrors, a2 as AggregateOrdersOptions, a3 as AggregateOrdersResponse, a4 as BulkUpdateOrderTagsOptions, a5 as BulkUpdateOrderTagsResponse, a6 as OrderApprovedEnvelope, a7 as OrderUpdatedEnvelope, a8 as OrderCanceledEnvelope, a9 as OrderCreatedEnvelope, aa as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-CxuQcKw1.js';
3
- export { dn as ActionEvent, aM as ActionType, iL as ActionTypeWithLiterals, b_ as Activity, b$ as ActivityContentOneOf, ar as ActivityType, iq as ActivityTypeWithLiterals, gP as AddActivitiesRequest, gN as AddActivityRequest, gq as AddInternalActivityRequest, gM as AddInternalActivityResponse, cX as AdditionalFee, fT as AdditionalFeeDelta, fU as AdditionalFeeDeltaDeltaOneOf, e6 as AdditionalFeeRefund, av as AdditionalFeeSource, iu as AdditionalFeeSourceWithLiterals, bA as Address, hG as AddressDescription, bC as AddressLocation, bz as AddressWithContact, ag as AdjustmentType, ie as AdjustmentTypeWithLiterals, hn as AggregateOrdersRequest, f6 as AggregatedRefundSummary, ey as ApplicationError, bQ as AppliedDiscount, fR as AppliedDiscountDelta, fS as AppliedDiscountDeltaDeltaOneOf, bR as AppliedDiscountDiscountSourceOneOf, g1 as ArchiveOrderRequest, g2 as ArchiveOrderResponse, at as AttributionSource, is as AttributionSourceWithLiterals, eX as AuthorizationActionFailureDetails, eW as AuthorizationCapture, aJ as AuthorizationCaptureStatus, iI as AuthorizationCaptureStatusWithLiterals, eV as AuthorizationDetails, eY as AuthorizationVoid, aK as AuthorizationVoidStatus, iJ as AuthorizationVoidStatusWithLiterals, cp as AuthorizedPaymentCaptured, co as AuthorizedPaymentCreated, cq as AuthorizedPaymentVoided, cW as Balance, cV as BalanceSummary, i6 as BaseEventMetadata, dG as BatchOfTriggerReindexOrderRequest, hQ as BigDecimalWrapper, bl as BillingAdjustment, bm as BillingAdjustmentPriceSummary, ez as BulkActionMetadata, g5 as BulkArchiveOrdersByFilterRequest, g6 as BulkArchiveOrdersByFilterResponse, g3 as BulkArchiveOrdersRequest, g4 as BulkArchiveOrdersResponse, dg as BulkDeleteImportedOrdersRequest, h3 as BulkMarkAsFulfilledByFilterRequest, h4 as BulkMarkAsFulfilledByFilterResponse, h1 as BulkMarkAsFulfilledRequest, h2 as BulkMarkAsFulfilledResponse, h9 as BulkMarkAsUnfulfilledByFilterRequest, ha as BulkMarkAsUnfulfilledByFilterResponse, h7 as BulkMarkAsUnfulfilledRequest, h8 as BulkMarkAsUnfulfilledResponse, ev as BulkMarkOrdersAsPaidRequest, ew as BulkOrderResult, dO as BulkSendBuyerPickupConfirmationEmailsRequest, dP as BulkSendBuyerPickupConfirmationEmailsResponse, dS as BulkSendBuyerShippingConfirmationEmailsRequest, dT as BulkSendBuyerShippingConfirmationEmailsResponse, hb as BulkSetBusinessLocationRequest, hc as BulkSetBusinessLocationResponse, hd as BulkSetBusinessLocationResult, gb as BulkUnArchiveOrdersByFilterRequest, gc as BulkUnArchiveOrdersByFilterResponse, g9 as BulkUnArchiveOrdersRequest, ga as BulkUnArchiveOrdersResponse, hr as BulkUpdateOrderTagsRequest, hs as BulkUpdateOrderTagsResult, fG as BulkUpdateOrdersRequest, bv as BuyerInfo, bw as BuyerInfoIdOneOf, ge as BuyerInfoUpdate, fa as CalculateRefundItemRequest, fc as CalculateRefundItemResponse, f9 as CalculateRefundRequest, fb as CalculateRefundResponse, h_ as CalculatedTax, hZ as CalculatedTaxes, hy as Cancel, gX as CancelOrderRequest, fe as CaptureAuthorizedPaymentsRequest, b1 as CatalogReference, cT as ChannelInfo, au as ChannelType, it as ChannelTypeWithLiterals, eF as ChargeMembershipsRequest, eJ as ChargeMembershipsResponse, ff as ChargeSavedPaymentMethodRequest, fg as ChargeSavedPaymentMethodResponse, ax as ChargeType, iw as ChargeTypeWithLiterals, e_ as Chargeback, cP as ChargebackCreated, cQ as ChargebackReversed, aN as ChargebackStatus, iM as ChargebackStatusWithLiterals, eE as ChargedBy, b7 as Color, fH as CommitDeltasRequest, fX as CommitDeltasResponse, fZ as CommittedDiffs, f_ as CommittedDiffsShippingUpdateInfoOneOf, hJ as CommonAddress, hK as CommonAddressStreetOneOf, i_ as CommonSearchWithEntityContext, hI as Company, hx as Complete, bS as Coupon, fA as CreateOrderRequest, fD as CreateOrderResponse, eD as CreatePaymentGatewayOrderRequest, cR as CreatedBy, cS as CreatedByStringOneOf, cE as CreditCardDetails, eU as CreditCardPaymentMethodDetails, bx as CurrencyConversionDetails, fq as CursorPaging, fz as CursorPagingMetadata, fx as CursorSearch, fy as CursorSearchPagingMethodOneOf, ft as Cursors, c0 as CustomActivity, d2 as CustomAllowedActions, cU as CustomField, aX as CustomFieldGroup, iW as CustomFieldGroupWithLiterals, i3 as CustomFieldValue, hD as Customer, hp as DecrementData, ho as DecrementItemsQuantityRequest, hq as DecrementItemsQuantityResponse, ep as DelayedCaptureSettings, gR as DeleteActivityRequest, dx as DeleteByFilterOperation, dw as DeleteByIdsOperation, bG as DeliveryLogistics, bH as DeliveryLogisticsAddressOneOf, bK as DeliveryTimeSlot, aS as DeltaPaymentOptionType, iR as DeltaPaymentOptionTypeWithLiterals, i5 as Deposit, aZ as DepositType, iY as DepositTypeWithLiterals, b2 as DescriptionLine, b4 as DescriptionLineDescriptionLineValueOneOf, b5 as DescriptionLineName, ab as DescriptionLineType, i9 as DescriptionLineTypeWithLiterals, b3 as DescriptionLineValueOneOf, fh as DiffmatokyPayload, bf as DigitalFile, hX as Discount, hY as DiscountOneDiscountTypeOneOf, ap as DiscountReason, io as DiscountReasonWithLiterals, bV as DiscountRule, bW as DiscountRuleName, ao as DiscountType, im as DiscountTypeWithLiterals, dh as DomainEvent, di as DomainEventBodyOneOf, gy as DownloadLinkSent, c6 as DraftOrderChangesApplied, fV as DraftOrderCommitSettings, fI as DraftOrderDiffs, fL as DraftOrderDiffsBillingUpdateInfoOneOf, fK as DraftOrderDiffsBuyerUpdateInfoOneOf, fM as DraftOrderDiffsRecipientUpdateInfoOneOf, fJ as DraftOrderDiffsShippingUpdateInfoOneOf, eq as Duration, aC as DurationUnit, iB as DurationUnitWithLiterals, hE as Email, gH as EmailEdited, dF as Empty, dj as EntityCreatedEvent, dm as EntityDeletedEvent, dl as EntityUpdatedEvent, fi as ErrorInformation, i7 as EventMetadata, br as ExtendedFields, cM as ExternalReceipt, f2 as ExternalReceiptInfo, b8 as FocalPoint, d4 as FormIdentifier, d3 as FormInfo, bk as FreeTrialPeriod, gF as FulfillerEmailSent, aj as FulfillmentStatus, h0 as FulfillmentStatusUpdated, ii as FulfillmentStatusWithLiterals, cY as FulfillmentStatusesAggregate, bD as FullAddressContactDetails, fj as GetOrderRequest, fk as GetOrderResponse, er as GetPaymentCollectabilityStatusRequest, eA as GetRefundabilityStatusRequest, hl as GetShipmentsRequest, hm as GetShipmentsResponse, e$ as GiftCardPaymentDetails, cv as GiftCardPaymentRefund, hB as IdAndVersion, dq as IdentificationData, dr as IdentificationDataIdOneOf, de as ImportOrderRequest, dd as ImportedOrderDeleted, gr as InternalActivity, gs as InternalActivityContentOneOf, du as InternalDocument, dy as InternalDocumentUpdateByFilterOperation, dv as InternalDocumentUpdateOperation, fl as InternalQueryOrdersRequest, fr as InternalQueryOrdersResponse, dz as InternalUpdateExistingOperation, aT as InventoryAction, iS as InventoryActionWithLiterals, fW as InventoryUpdateDetails, gD as InvoiceAdded, hN as InvoiceDates, i2 as InvoiceDynamicPriceTotals, hC as InvoiceFields, gE as InvoiceSent, hA as InvoiceSentEvent, a_ as InvoiceStatus, iZ as InvoiceStatusWithLiterals, i0 as InvoicesPayment, fQ as ItemChangedDetails, bY as ItemCombination, bZ as ItemCombinationLineItem, ex as ItemMetadata, bu as ItemModifier, bc as ItemTaxFullDetails, ba as ItemType, bb as ItemTypeItemTypeDataOneOf, ac as ItemTypePreset, ia as ItemTypePresetWithLiterals, hW as ItemizedFee, ae as JurisdictionType, ic as JurisdictionTypeWithLiterals, hP as LineItem, ci as LineItemAmount, c9 as LineItemChanges, f$ as LineItemDelta, g0 as LineItemDeltaDeltaOneOf, cd as LineItemDescriptionLineChange, bX as LineItemDiscount, c5 as LineItemExchangeData, hT as LineItemMetaData, ce as LineItemModifiersChange, cb as LineItemPriceChange, cc as LineItemProductNameChange, ca as LineItemQuantityChange, aq as LineItemQuantityChangeType, ip as LineItemQuantityChangeTypeWithLiterals, e5 as LineItemRefund, f8 as LineItemRefundSummary, hR as LineItemTax, be as LineItemTaxBreakdown, bd as LineItemTaxInfo, gT as LineItemUpdate, hO as LineItems, hU as Locale, c$ as Location, bo as LocationAndQuantity, cj as ManagedAdditionalFee, cg as ManagedDiscount, cf as ManagedLineItem, aG as ManuallyRefundableReason, iF as ManuallyRefundableReasonWithLiterals, g_ as MarkAsFulfilledRequest, g$ as MarkAsFulfilledResponse, h5 as MarkAsUnfulfilledRequest, h6 as MarkAsUnfulfilledResponse, eu as MarkOrderAsPaidRequest, gV as MarkOrderAsSeenByHumanRequest, gW as MarkOrderAsSeenByHumanResponse, go as MaskedOrderLineItem, eG as MembershipChargeItem, eH as MembershipName, f0 as MembershipPaymentDetails, cw as MembershipPaymentRefund, aO as MembershipPaymentStatus, iN as MembershipPaymentStatusWithLiterals, c1 as MerchantComment, bT as MerchantDiscount, bU as MerchantDiscountMerchantDiscountReasonOneOf, dp as MessageEnvelope, i1 as MetaData, bs as ModifierGroup, c4 as NewExchangeOrderCreated, aF as NonRefundableReason, iE as NonRefundableReasonWithLiterals, aw as OrderActionType, iv as OrderActionTypeWithLiterals, as as OrderActivityTypeEnumActivityType, ir as OrderActivityTypeEnumActivityTypeWithLiterals, aR as OrderApprovalStrategy, iQ as OrderApprovalStrategyWithLiterals, d7 as OrderApproved, gx as OrderCanceled, gY as OrderCanceledEventOrderCanceled, c7 as OrderChange, c8 as OrderChangeValueOneOf, fC as OrderCreateNotifications, c3 as OrderCreatedFromExchange, fB as OrderCreationSettings, fY as OrderDeltasCommitted, gv as OrderFulfilled, dc as OrderImported, da as OrderItemsRestocked, a$ as OrderLineItem, fP as OrderLineItemChangedDetails, gw as OrderNotFulfilled, gu as OrderPaid, gJ as OrderPartiallyPaid, gK as OrderPending, gt as OrderPlaced, c2 as OrderRefunded, gL as OrderRejected, d9 as OrderRejectedEventOrderRejected, i8 as OrderSearchSpec, d0 as OrderSettings, d1 as OrderSettingsAllowedActionsOneOf, an as OrderStatus, bP as OrderTaxBreakdown, bO as OrderTaxInfo, eO as OrderTransactions, d8 as OrdersExperiments, eP as Payment, cF as PaymentCanceled, cG as PaymentCanceledPaymentDetailsOneOf, aD as PaymentCollectabilityStatus, iC as PaymentCollectabilityStatusWithLiterals, cH as PaymentDeclined, cI as PaymentDeclinedPaymentDetailsOneOf, ad as PaymentOptionType, ib as PaymentOptionTypeWithLiterals, eQ as PaymentPaymentDetailsOneOf, cA as PaymentPending, cB as PaymentPendingPaymentDetailsOneOf, eR as PaymentReceiptInfoOneOf, cy as PaymentRefundFailed, cx as PaymentRefunded, ai as PaymentStatus, hg as PaymentStatusUpdated, ih as PaymentStatusWithLiterals, h$ as Payments, hH as Phone, b9 as PhysicalProperties, bJ as PickupAddress, bI as PickupDetails, am as PickupMethod, il as PickupMethodWithLiterals, gI as PickupReadyEmailSent, aU as Placement, iT as PlacementWithLiterals, b6 as PlainTextValue, d6 as PlatformFee, d5 as PlatformFeeSummary, fp as PlatformPaging, fs as PlatformPagingMetadata, fm as PlatformQuery, fn as PlatformQueryPagingMethodOneOf, en as PreparePaymentCollectionRequest, ef as PreviewBuyerConfirmationEmailRequest, eg as PreviewBuyerConfirmationEmailResponse, ed as PreviewBuyerPaymentsReceivedEmailRequest, ee as PreviewBuyerPaymentsReceivedEmailResponse, eh as PreviewBuyerPickupConfirmationEmailRequest, ei as PreviewBuyerPickupConfirmationEmailResponse, e9 as PreviewCancelEmailRequest, ea as PreviewCancelEmailResponse, eb as PreviewCancelRefundEmailRequest, ec as PreviewCancelRefundEmailResponse, e0 as PreviewEmailByTypeRequest, e1 as PreviewEmailByTypeResponse, aA as PreviewEmailType, iz as PreviewEmailTypeWithLiterals, e2 as PreviewRefundEmailRequest, e8 as PreviewRefundEmailResponse, el as PreviewResendDownloadLinksEmailRequest, em as PreviewResendDownloadLinksEmailResponse, ej as PreviewShippingConfirmationEmailRequest, ek as PreviewShippingConfirmationEmailResponse, bn as PriceDescription, by as PriceSummary, b0 as ProductName, gO as PublicActivityContentOneOf, fu as QueryOrderRequest, fv as QueryOrderResponse, hF as QuotesAddress, aL as Reason, iK as ReasonWithLiterals, cJ as ReceiptCreated, cK as ReceiptCreatedReceiptInfoOneOf, cN as ReceiptSent, cO as ReceiptSentReceiptInfoOneOf, es as RecordManuallyCollectedPaymentRequest, et as RecordManuallyCollectedPaymentResponse, eo as RedirectUrls, f3 as Refund, e3 as RefundDetails, cr as RefundInitiated, e4 as RefundItem, f7 as RefundItemsBreakdown, eL as RefundSideEffects, aP as RefundStatus, f5 as RefundStatusInfo, iO as RefundStatusWithLiterals, f4 as RefundTransaction, eB as Refundability, eC as RefundabilityAdditionalRefundabilityInfoOneOf, aE as RefundableStatus, iD as RefundableStatusWithLiterals, cz as RefundedAsStoreCredit, cs as RefundedPayment, ct as RefundedPaymentKindOneOf, cC as RegularPayment, eS as RegularPaymentDetails, eT as RegularPaymentDetailsPaymentMethodDetailsOneOf, cD as RegularPaymentPaymentMethodDetailsOneOf, cu as RegularPaymentRefund, hz as Reschedule, eM as RestockInfo, eN as RestockItem, aH as RestockType, iG as RestockTypeWithLiterals, dk as RestoreInfo, cn as SavedPaymentMethod, aB as ScheduledAction, iA as ScheduledActionWithLiterals, fw as SearchOrdersRequest, dI as SendBuyerConfirmationEmailRequest, dJ as SendBuyerConfirmationEmailResponse, dK as SendBuyerPaymentsReceivedEmailRequest, dL as SendBuyerPaymentsReceivedEmailResponse, dM as SendBuyerPickupConfirmationEmailRequest, dN as SendBuyerPickupConfirmationEmailResponse, dQ as SendBuyerShippingConfirmationEmailRequest, dR as SendBuyerShippingConfirmationEmailResponse, dW as SendCancelRefundEmailRequest, dX as SendCancelRefundEmailResponse, dU as SendMerchantOrderReceivedNotificationRequest, dV as SendMerchantOrderReceivedNotificationResponse, d_ as SendMerchantOrderReceivedPushRequest, d$ as SendMerchantOrderReceivedPushResponse, dY as SendRefundEmailRequest, dZ as SendRefundEmailResponse, eI as ServiceProperties, df as SetOrderNumberCounterRequest, gG as ShippingAddressEdited, gC as ShippingConfirmationEmailSent, cm as ShippingInformation, cl as ShippingInformationChange, bL as ShippingPrice, e7 as ShippingRefund, bM as ShippingRegion, aQ as SortOrder, iP as SortOrderWithLiterals, fo as Sorting, hS as Source, aW as SourceType, iV as SourceTypeWithLiterals, hM as StandardDetails, bB as StreetAddress, hL as Subdivision, aV as SubdivisionType, iU as SubdivisionTypeWithLiterals, bi as SubscriptionDescription, af as SubscriptionFrequency, id as SubscriptionFrequencyWithLiterals, bg as SubscriptionInfo, bj as SubscriptionSettings, bh as SubscriptionTitle, c_ as TagList, cZ as Tags, ht as Task, hv as TaskAction, hw as TaskActionActionOneOf, hu as TaskKey, bN as TaxSummary, bp as TaxableAddress, bq as TaxableAddressTaxableAddressDataOneOf, ah as TaxableAddressType, ig as TaxableAddressTypeWithLiterals, hV as TotalPrice, ck as TotalPriceChange, gB as TrackingLinkAdded, gz as TrackingNumberAdded, gA as TrackingNumberEdited, aI as TransactionStatus, iH as TransactionStatusWithLiterals, bt as TranslatableString, ch as TranslatedValue, eK as TriggerRefundRequest, dH as TriggerReindexOrderRequest, dD as TriggerReindexRequest, dE as TriggerReindexResponse, g7 as UnArchiveOrderRequest, g8 as UnArchiveOrderResponse, gQ as UpdateActivityRequest, gk as UpdateBillingContactDetailsRequest, gl as UpdateBillingContactDetailsResponse, gg as UpdateBuyerEmailRequest, gh as UpdateBuyerEmailResponse, gd as UpdateBuyerInfoRequest, gf as UpdateBuyerInfoResponse, ds as UpdateInternalDocumentsEvent, dt as UpdateInternalDocumentsEventOperationOneOf, gS as UpdateLineItemsDescriptionLinesRequest, gU as UpdateLineItemsDescriptionLinesResponse, gm as UpdateOrderLineItemRequest, gn as UpdateOrderLineItemsRequest, gp as UpdateOrderLineItemsResponse, fE as UpdateOrderRequest, fF as UpdateOrderResponse, gi as UpdateOrderShippingAddressRequest, gj as UpdateOrderShippingAddressResponse, gZ as UpdateOrderStatusRequest, hh as V1BulkMarkOrdersAsPaidRequest, hi as V1BulkMarkOrdersAsPaidResponse, hj as V1CreatePaymentGatewayOrderRequest, hk as V1CreatePaymentGatewayOrderResponse, fN as V1LineItemDelta, fO as V1LineItemDeltaDeltaOneOf, he as V1MarkOrderAsPaidRequest, hf as V1MarkOrderAsPaidResponse, db as V1RestockItem, eZ as V1ScheduledAction, bF as V1ShippingInformation, i4 as Value, aY as ValueType, iX as ValueTypeWithLiterals, bE as VatId, al as VatType, ik as VatTypeWithLiterals, dB as VersionedDeleteByIdsOperation, dC as VersionedDocumentId, dA as VersionedDocumentUpdateOperation, az as VersioningMode, iy as VersioningModeWithLiterals, fd as VoidAuthorizedPaymentsRequest, ay as WebhookIdentityType, ix as WebhookIdentityTypeWithLiterals, ak as WeightUnit, ij as WeightUnitWithLiterals, cL as WixReceipt, f1 as WixReceiptInfo } from './ecom-v1-order-orders.universal-CxuQcKw1.js';
2
+ import { O as Order, I as ImportOrderResponse, S as SetOrderNumberCounterOptions, a as SetOrderNumberCounterResponse, B as BulkDeleteImportedOrdersOptions, b as BulkDeleteImportedOrdersResponse, P as Price, c as PreparePaymentCollectionOptions, d as PreparePaymentCollectionResponse, e as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, R as RecordManuallyCollectedPaymentApplicationErrors, M as MarkOrderAsPaidResponse, f as PaymentCollectionMarkOrderAsPaidApplicationErrors, g as BulkMarkOrdersAsPaidResponse, h as GetRefundabilityStatusResponse, i as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, j as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, k as ChargeMembershipsOptions, l as PaymentRefund, T as TriggerRefundOptions, m as TriggerRefundResponse, n as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, o as VoidAuthorizedPaymentsApplicationErrors, p as PaymentCapture, q as CaptureAuthorizedPaymentsResponse, r as CaptureAuthorizedPaymentsApplicationErrors, s as GetOrderApplicationErrors, t as OrderSearch, u as SearchOrdersResponse, v as CreateOrderOptions, w as CreateOrderApplicationErrors, U as UpdateOrder, x as UpdateOrderApplicationErrors, y as MaskedOrder, z as BulkUpdateOrdersOptions, A as BulkUpdateOrdersResponse, D as UpdateOrderLineItemIdentifiers, E as UpdateOrderLineItem, F as UpdateOrderLineItemResponse, H as PublicActivity, J as AddActivityResponse, K as AddActivitiesOptions, L as AddActivitiesResponse, N as UpdateActivityIdentifiers, Q as UpdateActivityResponse, W as DeleteActivityIdentifiers, X as DeleteActivityResponse, Y as CancelOrderOptions, Z as CancelOrderResponse, _ as CancelOrderApplicationErrors, $ as OrderStatusWithLiterals, a0 as UpdateOrderStatusResponse, a1 as UpdateOrderStatusApplicationErrors, a2 as AggregateOrdersOptions, a3 as AggregateOrdersResponse, a4 as BulkUpdateOrderTagsOptions, a5 as BulkUpdateOrderTagsResponse, a6 as OrderApprovedEnvelope, a7 as OrderUpdatedEnvelope, a8 as OrderCanceledEnvelope, a9 as OrderCreatedEnvelope, aa as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-CggcngNR.js';
3
+ export { dn as ActionEvent, aL as ActionType, iK as ActionTypeWithLiterals, b_ as Activity, b$ as ActivityContentOneOf, ar as ActivityType, iq as ActivityTypeWithLiterals, gP as AddActivitiesRequest, gN as AddActivityRequest, gq as AddInternalActivityRequest, gM as AddInternalActivityResponse, cX as AdditionalFee, fT as AdditionalFeeDelta, fU as AdditionalFeeDeltaDeltaOneOf, dS as AdditionalFeeRefund, av as AdditionalFeeSource, iu as AdditionalFeeSourceWithLiterals, bA as Address, hG as AddressDescription, bC as AddressLocation, bz as AddressWithContact, ag as AdjustmentType, ie as AdjustmentTypeWithLiterals, hn as AggregateOrdersRequest, eT as AggregatedRefundSummary, ej as ApplicationError, bQ as AppliedDiscount, fR as AppliedDiscountDelta, fS as AppliedDiscountDeltaDeltaOneOf, bR as AppliedDiscountDiscountSourceOneOf, g1 as ArchiveOrderRequest, g2 as ArchiveOrderResponse, at as AttributionSource, is as AttributionSourceWithLiterals, eI as AuthorizationActionFailureDetails, eH as AuthorizationCapture, aI as AuthorizationCaptureStatus, iH as AuthorizationCaptureStatusWithLiterals, eG as AuthorizationDetails, eJ as AuthorizationVoid, aJ as AuthorizationVoidStatus, iI as AuthorizationVoidStatusWithLiterals, cp as AuthorizedPaymentCaptured, co as AuthorizedPaymentCreated, cq as AuthorizedPaymentVoided, cW as Balance, cV as BalanceSummary, i6 as BaseEventMetadata, ff as BatchOfTriggerReindexOrderRequest, hQ as BigDecimalWrapper, bl as BillingAdjustment, bm as BillingAdjustmentPriceSummary, ek as BulkActionMetadata, g5 as BulkArchiveOrdersByFilterRequest, g6 as BulkArchiveOrdersByFilterResponse, g3 as BulkArchiveOrdersRequest, g4 as BulkArchiveOrdersResponse, dg as BulkDeleteImportedOrdersRequest, h3 as BulkMarkAsFulfilledByFilterRequest, h4 as BulkMarkAsFulfilledByFilterResponse, h1 as BulkMarkAsFulfilledRequest, h2 as BulkMarkAsFulfilledResponse, h9 as BulkMarkAsUnfulfilledByFilterRequest, ha as BulkMarkAsUnfulfilledByFilterResponse, h7 as BulkMarkAsUnfulfilledRequest, h8 as BulkMarkAsUnfulfilledResponse, eg as BulkMarkOrdersAsPaidRequest, eh as BulkOrderResult, dy as BulkSendBuyerPickupConfirmationEmailsRequest, dz as BulkSendBuyerPickupConfirmationEmailsResponse, dC as BulkSendBuyerShippingConfirmationEmailsRequest, dD as BulkSendBuyerShippingConfirmationEmailsResponse, hb as BulkSetBusinessLocationRequest, hc as BulkSetBusinessLocationResponse, hd as BulkSetBusinessLocationResult, gb as BulkUnArchiveOrdersByFilterRequest, gc as BulkUnArchiveOrdersByFilterResponse, g9 as BulkUnArchiveOrdersRequest, ga as BulkUnArchiveOrdersResponse, hr as BulkUpdateOrderTagsRequest, hs as BulkUpdateOrderTagsResult, fG as BulkUpdateOrdersRequest, bv as BuyerInfo, bw as BuyerInfoIdOneOf, ge as BuyerInfoUpdate, eX as CalculateRefundItemRequest, eZ as CalculateRefundItemResponse, eW as CalculateRefundRequest, eY as CalculateRefundResponse, h_ as CalculatedTax, hZ as CalculatedTaxes, hy as Cancel, gX as CancelOrderRequest, e$ as CaptureAuthorizedPaymentsRequest, b1 as CatalogReference, cT as ChannelInfo, au as ChannelType, it as ChannelTypeWithLiterals, eq as ChargeMembershipsRequest, eu as ChargeMembershipsResponse, f0 as ChargeSavedPaymentMethodRequest, f1 as ChargeSavedPaymentMethodResponse, ax as ChargeType, iw as ChargeTypeWithLiterals, eL as Chargeback, cP as ChargebackCreated, cQ as ChargebackReversed, aM as ChargebackStatus, iL as ChargebackStatusWithLiterals, ep as ChargedBy, b7 as Color, fH as CommitDeltasRequest, fX as CommitDeltasResponse, fZ as CommittedDiffs, f_ as CommittedDiffsShippingUpdateInfoOneOf, hJ as CommonAddress, hK as CommonAddressStreetOneOf, i_ as CommonSearchWithEntityContext, hI as Company, hx as Complete, bS as Coupon, fA as CreateOrderRequest, fD as CreateOrderResponse, eo as CreatePaymentGatewayOrderRequest, cR as CreatedBy, cS as CreatedByStringOneOf, cE as CreditCardDetails, eF as CreditCardPaymentMethodDetails, bx as CurrencyConversionDetails, fq as CursorPaging, fz as CursorPagingMetadata, fx as CursorSearch, fy as CursorSearchPagingMethodOneOf, ft as Cursors, c0 as CustomActivity, d2 as CustomAllowedActions, cU as CustomField, aX as CustomFieldGroup, iW as CustomFieldGroupWithLiterals, i3 as CustomFieldValue, hD as Customer, hp as DecrementData, ho as DecrementItemsQuantityRequest, hq as DecrementItemsQuantityResponse, ea as DelayedCaptureSettings, gR as DeleteActivityRequest, f7 as DeleteByFilterOperation, f6 as DeleteByIdsOperation, bG as DeliveryLogistics, bH as DeliveryLogisticsAddressOneOf, bK as DeliveryTimeSlot, aS as DeltaPaymentOptionType, iR as DeltaPaymentOptionTypeWithLiterals, i5 as Deposit, aZ as DepositType, iY as DepositTypeWithLiterals, b2 as DescriptionLine, b4 as DescriptionLineDescriptionLineValueOneOf, b5 as DescriptionLineName, ab as DescriptionLineType, i9 as DescriptionLineTypeWithLiterals, b3 as DescriptionLineValueOneOf, fh as DiffmatokyPayload, bf as DigitalFile, hX as Discount, hY as DiscountOneDiscountTypeOneOf, ap as DiscountReason, io as DiscountReasonWithLiterals, bV as DiscountRule, bW as DiscountRuleName, ao as DiscountType, im as DiscountTypeWithLiterals, dh as DomainEvent, di as DomainEventBodyOneOf, gy as DownloadLinkSent, c6 as DraftOrderChangesApplied, fV as DraftOrderCommitSettings, fI as DraftOrderDiffs, fL as DraftOrderDiffsBillingUpdateInfoOneOf, fK as DraftOrderDiffsBuyerUpdateInfoOneOf, fM as DraftOrderDiffsRecipientUpdateInfoOneOf, fJ as DraftOrderDiffsShippingUpdateInfoOneOf, eb as Duration, aB as DurationUnit, iA as DurationUnitWithLiterals, hE as Email, gH as EmailEdited, e7 as Empty, dj as EntityCreatedEvent, dm as EntityDeletedEvent, dl as EntityUpdatedEvent, fi as ErrorInformation, i7 as EventMetadata, br as ExtendedFields, cM as ExternalReceipt, eP as ExternalReceiptInfo, b8 as FocalPoint, d4 as FormIdentifier, d3 as FormInfo, bk as FreeTrialPeriod, gF as FulfillerEmailSent, aj as FulfillmentStatus, h0 as FulfillmentStatusUpdated, ii as FulfillmentStatusWithLiterals, cY as FulfillmentStatusesAggregate, bD as FullAddressContactDetails, fj as GetOrderRequest, fk as GetOrderResponse, ec as GetPaymentCollectabilityStatusRequest, el as GetRefundabilityStatusRequest, hl as GetShipmentsRequest, hm as GetShipmentsResponse, eM as GiftCardPaymentDetails, cv as GiftCardPaymentRefund, hB as IdAndVersion, dq as IdentificationData, dr as IdentificationDataIdOneOf, de as ImportOrderRequest, dd as ImportedOrderDeleted, gr as InternalActivity, gs as InternalActivityContentOneOf, f4 as InternalDocument, f8 as InternalDocumentUpdateByFilterOperation, f5 as InternalDocumentUpdateOperation, fl as InternalQueryOrdersRequest, fr as InternalQueryOrdersResponse, f9 as InternalUpdateExistingOperation, aT as InventoryAction, iS as InventoryActionWithLiterals, fW as InventoryUpdateDetails, gD as InvoiceAdded, hN as InvoiceDates, i2 as InvoiceDynamicPriceTotals, hC as InvoiceFields, gE as InvoiceSent, hA as InvoiceSentEvent, a_ as InvoiceStatus, iZ as InvoiceStatusWithLiterals, i0 as InvoicesPayment, fQ as ItemChangedDetails, bY as ItemCombination, bZ as ItemCombinationLineItem, ei as ItemMetadata, bu as ItemModifier, bc as ItemTaxFullDetails, ba as ItemType, bb as ItemTypeItemTypeDataOneOf, ac as ItemTypePreset, ia as ItemTypePresetWithLiterals, hW as ItemizedFee, ae as JurisdictionType, ic as JurisdictionTypeWithLiterals, hP as LineItem, ci as LineItemAmount, c9 as LineItemChanges, f$ as LineItemDelta, g0 as LineItemDeltaDeltaOneOf, cd as LineItemDescriptionLineChange, bX as LineItemDiscount, c5 as LineItemExchangeData, hT as LineItemMetaData, ce as LineItemModifiersChange, cb as LineItemPriceChange, cc as LineItemProductNameChange, ca as LineItemQuantityChange, aq as LineItemQuantityChangeType, ip as LineItemQuantityChangeTypeWithLiterals, dR as LineItemRefund, eV as LineItemRefundSummary, hR as LineItemTax, be as LineItemTaxBreakdown, bd as LineItemTaxInfo, gT as LineItemUpdate, hO as LineItems, hU as Locale, c$ as Location, bo as LocationAndQuantity, cj as ManagedAdditionalFee, cg as ManagedDiscount, cf as ManagedLineItem, aF as ManuallyRefundableReason, iE as ManuallyRefundableReasonWithLiterals, g_ as MarkAsFulfilledRequest, g$ as MarkAsFulfilledResponse, h5 as MarkAsUnfulfilledRequest, h6 as MarkAsUnfulfilledResponse, ef as MarkOrderAsPaidRequest, gV as MarkOrderAsSeenByHumanRequest, gW as MarkOrderAsSeenByHumanResponse, go as MaskedOrderLineItem, er as MembershipChargeItem, es as MembershipName, eN as MembershipPaymentDetails, cw as MembershipPaymentRefund, aN as MembershipPaymentStatus, iM as MembershipPaymentStatusWithLiterals, c1 as MerchantComment, bT as MerchantDiscount, bU as MerchantDiscountMerchantDiscountReasonOneOf, dp as MessageEnvelope, i1 as MetaData, bs as ModifierGroup, c4 as NewExchangeOrderCreated, aE as NonRefundableReason, iD as NonRefundableReasonWithLiterals, aw as OrderActionType, iv as OrderActionTypeWithLiterals, as as OrderActivityTypeEnumActivityType, ir as OrderActivityTypeEnumActivityTypeWithLiterals, aR as OrderApprovalStrategy, iQ as OrderApprovalStrategyWithLiterals, d7 as OrderApproved, gx as OrderCanceled, gY as OrderCanceledEventOrderCanceled, c7 as OrderChange, c8 as OrderChangeValueOneOf, fC as OrderCreateNotifications, c3 as OrderCreatedFromExchange, fB as OrderCreationSettings, fY as OrderDeltasCommitted, gv as OrderFulfilled, dc as OrderImported, da as OrderItemsRestocked, a$ as OrderLineItem, fP as OrderLineItemChangedDetails, gw as OrderNotFulfilled, gu as OrderPaid, gJ as OrderPartiallyPaid, gK as OrderPending, gt as OrderPlaced, c2 as OrderRefunded, gL as OrderRejected, d9 as OrderRejectedEventOrderRejected, i8 as OrderSearchSpec, d0 as OrderSettings, d1 as OrderSettingsAllowedActionsOneOf, an as OrderStatus, bP as OrderTaxBreakdown, bO as OrderTaxInfo, ez as OrderTransactions, d8 as OrdersExperiments, eA as Payment, cF as PaymentCanceled, cG as PaymentCanceledPaymentDetailsOneOf, aC as PaymentCollectabilityStatus, iB as PaymentCollectabilityStatusWithLiterals, cH as PaymentDeclined, cI as PaymentDeclinedPaymentDetailsOneOf, ad as PaymentOptionType, ib as PaymentOptionTypeWithLiterals, eB as PaymentPaymentDetailsOneOf, cA as PaymentPending, cB as PaymentPendingPaymentDetailsOneOf, eC as PaymentReceiptInfoOneOf, cy as PaymentRefundFailed, cx as PaymentRefunded, ai as PaymentStatus, hg as PaymentStatusUpdated, ih as PaymentStatusWithLiterals, h$ as Payments, hH as Phone, b9 as PhysicalProperties, bJ as PickupAddress, bI as PickupDetails, am as PickupMethod, il as PickupMethodWithLiterals, gI as PickupReadyEmailSent, aU as Placement, iT as PlacementWithLiterals, b6 as PlainTextValue, d6 as PlatformFee, d5 as PlatformFeeSummary, fp as PlatformPaging, fs as PlatformPagingMetadata, fm as PlatformQuery, fn as PlatformQueryPagingMethodOneOf, e8 as PreparePaymentCollectionRequest, d$ as PreviewBuyerConfirmationEmailRequest, e0 as PreviewBuyerConfirmationEmailResponse, dZ as PreviewBuyerPaymentsReceivedEmailRequest, d_ as PreviewBuyerPaymentsReceivedEmailResponse, e1 as PreviewBuyerPickupConfirmationEmailRequest, e2 as PreviewBuyerPickupConfirmationEmailResponse, dV as PreviewCancelEmailRequest, dW as PreviewCancelEmailResponse, dX as PreviewCancelRefundEmailRequest, dY as PreviewCancelRefundEmailResponse, dM as PreviewEmailByTypeRequest, dN as PreviewEmailByTypeResponse, az as PreviewEmailType, iy as PreviewEmailTypeWithLiterals, dO as PreviewRefundEmailRequest, dU as PreviewRefundEmailResponse, e5 as PreviewResendDownloadLinksEmailRequest, e6 as PreviewResendDownloadLinksEmailResponse, e3 as PreviewShippingConfirmationEmailRequest, e4 as PreviewShippingConfirmationEmailResponse, bn as PriceDescription, by as PriceSummary, b0 as ProductName, gO as PublicActivityContentOneOf, fu as QueryOrderRequest, fv as QueryOrderResponse, hF as QuotesAddress, aK as Reason, iJ as ReasonWithLiterals, cJ as ReceiptCreated, cK as ReceiptCreatedReceiptInfoOneOf, cN as ReceiptSent, cO as ReceiptSentReceiptInfoOneOf, ed as RecordManuallyCollectedPaymentRequest, ee as RecordManuallyCollectedPaymentResponse, e9 as RedirectUrls, eQ as Refund, dP as RefundDetails, cr as RefundInitiated, dQ as RefundItem, eU as RefundItemsBreakdown, ew as RefundSideEffects, aO as RefundStatus, eS as RefundStatusInfo, iN as RefundStatusWithLiterals, eR as RefundTransaction, em as Refundability, en as RefundabilityAdditionalRefundabilityInfoOneOf, aD as RefundableStatus, iC as RefundableStatusWithLiterals, cz as RefundedAsStoreCredit, cs as RefundedPayment, ct as RefundedPaymentKindOneOf, cC as RegularPayment, eD as RegularPaymentDetails, eE as RegularPaymentDetailsPaymentMethodDetailsOneOf, cD as RegularPaymentPaymentMethodDetailsOneOf, cu as RegularPaymentRefund, hz as Reschedule, ex as RestockInfo, ey as RestockItem, aG as RestockType, iF as RestockTypeWithLiterals, dk as RestoreInfo, cn as SavedPaymentMethod, aA as ScheduledAction, iz as ScheduledActionWithLiterals, fw as SearchOrdersRequest, ds as SendBuyerConfirmationEmailRequest, dt as SendBuyerConfirmationEmailResponse, du as SendBuyerPaymentsReceivedEmailRequest, dv as SendBuyerPaymentsReceivedEmailResponse, dw as SendBuyerPickupConfirmationEmailRequest, dx as SendBuyerPickupConfirmationEmailResponse, dA as SendBuyerShippingConfirmationEmailRequest, dB as SendBuyerShippingConfirmationEmailResponse, dG as SendCancelRefundEmailRequest, dH as SendCancelRefundEmailResponse, dE as SendMerchantOrderReceivedNotificationRequest, dF as SendMerchantOrderReceivedNotificationResponse, dK as SendMerchantOrderReceivedPushRequest, dL as SendMerchantOrderReceivedPushResponse, dI as SendRefundEmailRequest, dJ as SendRefundEmailResponse, et as ServiceProperties, df as SetOrderNumberCounterRequest, gG as ShippingAddressEdited, gC as ShippingConfirmationEmailSent, cm as ShippingInformation, cl as ShippingInformationChange, bL as ShippingPrice, dT as ShippingRefund, bM as ShippingRegion, aQ as SortOrder, iP as SortOrderWithLiterals, fo as Sorting, hS as Source, aW as SourceType, iV as SourceTypeWithLiterals, hM as StandardDetails, bB as StreetAddress, hL as Subdivision, aV as SubdivisionType, iU as SubdivisionTypeWithLiterals, bi as SubscriptionDescription, af as SubscriptionFrequency, id as SubscriptionFrequencyWithLiterals, bg as SubscriptionInfo, bj as SubscriptionSettings, bh as SubscriptionTitle, c_ as TagList, cZ as Tags, ht as Task, hv as TaskAction, hw as TaskActionActionOneOf, hu as TaskKey, bN as TaxSummary, bp as TaxableAddress, bq as TaxableAddressTaxableAddressDataOneOf, ah as TaxableAddressType, ig as TaxableAddressTypeWithLiterals, hV as TotalPrice, ck as TotalPriceChange, gB as TrackingLinkAdded, gz as TrackingNumberAdded, gA as TrackingNumberEdited, aH as TransactionStatus, iG as TransactionStatusWithLiterals, bt as TranslatableString, ch as TranslatedValue, ev as TriggerRefundRequest, fg as TriggerReindexOrderRequest, fd as TriggerReindexRequest, fe as TriggerReindexResponse, g7 as UnArchiveOrderRequest, g8 as UnArchiveOrderResponse, gQ as UpdateActivityRequest, gk as UpdateBillingContactDetailsRequest, gl as UpdateBillingContactDetailsResponse, gg as UpdateBuyerEmailRequest, gh as UpdateBuyerEmailResponse, gd as UpdateBuyerInfoRequest, gf as UpdateBuyerInfoResponse, f2 as UpdateInternalDocumentsEvent, f3 as UpdateInternalDocumentsEventOperationOneOf, gS as UpdateLineItemsDescriptionLinesRequest, gU as UpdateLineItemsDescriptionLinesResponse, gm as UpdateOrderLineItemRequest, gn as UpdateOrderLineItemsRequest, gp as UpdateOrderLineItemsResponse, fE as UpdateOrderRequest, fF as UpdateOrderResponse, gi as UpdateOrderShippingAddressRequest, gj as UpdateOrderShippingAddressResponse, gZ as UpdateOrderStatusRequest, hh as V1BulkMarkOrdersAsPaidRequest, hi as V1BulkMarkOrdersAsPaidResponse, hj as V1CreatePaymentGatewayOrderRequest, hk as V1CreatePaymentGatewayOrderResponse, fN as V1LineItemDelta, fO as V1LineItemDeltaDeltaOneOf, he as V1MarkOrderAsPaidRequest, hf as V1MarkOrderAsPaidResponse, db as V1RestockItem, eK as V1ScheduledAction, bF as V1ShippingInformation, i4 as Value, aY as ValueType, iX as ValueTypeWithLiterals, bE as VatId, al as VatType, ik as VatTypeWithLiterals, fb as VersionedDeleteByIdsOperation, fc as VersionedDocumentId, fa as VersionedDocumentUpdateOperation, aP as VersioningMode, iO as VersioningModeWithLiterals, e_ as VoidAuthorizedPaymentsRequest, ay as WebhookIdentityType, ix as WebhookIdentityTypeWithLiterals, ak as WeightUnit, ij as WeightUnitWithLiterals, cL as WixReceipt, eO as WixReceiptInfo } from './ecom-v1-order-orders.universal-CggcngNR.js';
4
4
 
5
5
  /** @internal */
6
6
  declare function importOrder$1(httpClient: HttpClient): ImportOrderSignature;
@@ -2050,12 +2050,6 @@ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
2050
2050
  WebhookIdentityType2["APP"] = "APP";
2051
2051
  return WebhookIdentityType2;
2052
2052
  })(WebhookIdentityType || {});
2053
- var VersioningMode = /* @__PURE__ */ ((VersioningMode2) => {
2054
- VersioningMode2["DEFAULT"] = "DEFAULT";
2055
- VersioningMode2["GREATER_THAN"] = "GREATER_THAN";
2056
- VersioningMode2["GREATER_OR_EQUAL"] = "GREATER_OR_EQUAL";
2057
- return VersioningMode2;
2058
- })(VersioningMode || {});
2059
2053
  var PreviewEmailType = /* @__PURE__ */ ((PreviewEmailType2) => {
2060
2054
  PreviewEmailType2["ORDER_PLACED"] = "ORDER_PLACED";
2061
2055
  PreviewEmailType2["DOWNLOAD_LINKS"] = "DOWNLOAD_LINKS";
@@ -2181,6 +2175,12 @@ var RefundStatus = /* @__PURE__ */ ((RefundStatus2) => {
2181
2175
  RefundStatus2["STARTED"] = "STARTED";
2182
2176
  return RefundStatus2;
2183
2177
  })(RefundStatus || {});
2178
+ var VersioningMode = /* @__PURE__ */ ((VersioningMode2) => {
2179
+ VersioningMode2["DEFAULT"] = "DEFAULT";
2180
+ VersioningMode2["GREATER_THAN"] = "GREATER_THAN";
2181
+ VersioningMode2["GREATER_OR_EQUAL"] = "GREATER_OR_EQUAL";
2182
+ return VersioningMode2;
2183
+ })(VersioningMode || {});
2184
2184
  var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
2185
2185
  SortOrder2["ASC"] = "ASC";
2186
2186
  SortOrder2["DESC"] = "DESC";