@wix/auto_sdk_ecom_orders 1.0.156 → 1.0.158

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