@wix/auto_sdk_ecom_orders 1.0.147 → 1.0.148

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