@wix/auto_sdk_ecom_orders 1.0.251 → 1.0.253

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-Dyxd-jx1.d.ts → ecom-v1-order-orders.universal-D5-HtCQc.d.ts} +189 -168
  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 +190 -169
  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-Dyxd-jx1.d.mts → ecom-v1-order-orders.universal-D5-HtCQc.d.mts} +189 -168
  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 +190 -169
  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-DBd4Vc1m.d.ts → ecom-v1-order-orders.universal-CktXVR3r.d.ts} +189 -168
  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 +190 -169
  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-DBd4Vc1m.d.mts → ecom-v1-order-orders.universal-CktXVR3r.d.mts} +189 -168
  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 +190 -169
  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
@@ -3305,6 +3305,141 @@ declare enum ChargeType {
3305
3305
  }
3306
3306
  /** @enumType */
3307
3307
  type ChargeTypeWithLiterals = ChargeType | 'PASS_ON' | 'ABSORBED';
3308
+ interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
3309
+ /** insert/update documents */
3310
+ update?: InternalDocumentUpdateOperation;
3311
+ /** delete by document ids */
3312
+ deleteByIds?: DeleteByIdsOperation;
3313
+ /** delete documents matching filter */
3314
+ deleteByFilter?: DeleteByFilterOperation;
3315
+ /** update internal documents matching filter */
3316
+ updateByFilter?: InternalDocumentUpdateByFilterOperation;
3317
+ /** update only existing documents */
3318
+ updateExisting?: InternalUpdateExistingOperation;
3319
+ /** insert/update documents with versioning */
3320
+ versionedUpdate?: VersionedDocumentUpdateOperation;
3321
+ /** delete by document ids with versioning */
3322
+ versionedDeleteByIds?: VersionedDeleteByIdsOperation;
3323
+ /**
3324
+ * type of the documents
3325
+ * @minLength 2
3326
+ */
3327
+ documentType?: string;
3328
+ /**
3329
+ * language of the documents (mandatory)
3330
+ * @minLength 2
3331
+ */
3332
+ language?: string | null;
3333
+ /**
3334
+ * one or more search documents
3335
+ * @deprecated
3336
+ */
3337
+ addDocuments?: InternalDocument[];
3338
+ /**
3339
+ * one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
3340
+ * @deprecated
3341
+ */
3342
+ removeDocumentIds?: string[];
3343
+ /** id to pass to processing notification */
3344
+ correlationId?: string | null;
3345
+ /** when event was created / issued */
3346
+ issuedAt?: Date | null;
3347
+ }
3348
+ /** @oneof */
3349
+ interface UpdateInternalDocumentsEventOperationOneOf {
3350
+ /** insert/update documents */
3351
+ update?: InternalDocumentUpdateOperation;
3352
+ /** delete by document ids */
3353
+ deleteByIds?: DeleteByIdsOperation;
3354
+ /** delete documents matching filter */
3355
+ deleteByFilter?: DeleteByFilterOperation;
3356
+ /** update internal documents matching filter */
3357
+ updateByFilter?: InternalDocumentUpdateByFilterOperation;
3358
+ /** update only existing documents */
3359
+ updateExisting?: InternalUpdateExistingOperation;
3360
+ /** insert/update documents with versioning */
3361
+ versionedUpdate?: VersionedDocumentUpdateOperation;
3362
+ /** delete by document ids with versioning */
3363
+ versionedDeleteByIds?: VersionedDeleteByIdsOperation;
3364
+ }
3365
+ interface InternalDocument {
3366
+ /** document with mandatory fields (id) and with fields specific to the type of the document */
3367
+ document?: Record<string, any> | null;
3368
+ }
3369
+ interface InternalDocumentUpdateOperation {
3370
+ /** documents to index or update */
3371
+ documents?: InternalDocument[];
3372
+ }
3373
+ interface DeleteByIdsOperation {
3374
+ /** ids of the documents to delete */
3375
+ documentIds?: string[];
3376
+ /**
3377
+ * tenant id for custom tenancy strategy
3378
+ * @minLength 2
3379
+ * @maxLength 300
3380
+ */
3381
+ tenantId?: string | null;
3382
+ }
3383
+ interface DeleteByFilterOperation {
3384
+ /** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
3385
+ filter?: Record<string, any> | null;
3386
+ /**
3387
+ * tenant id for custom tenancy strategy
3388
+ * @minLength 2
3389
+ * @maxLength 300
3390
+ */
3391
+ tenantId?: string | null;
3392
+ }
3393
+ interface InternalDocumentUpdateByFilterOperation {
3394
+ /** documents matching this filter will be updated */
3395
+ filter?: Record<string, any> | null;
3396
+ /** partial document to apply */
3397
+ document?: InternalDocument;
3398
+ /**
3399
+ * tenant id for custom tenancy strategy
3400
+ * @minLength 2
3401
+ * @maxLength 300
3402
+ */
3403
+ tenantId?: string | null;
3404
+ }
3405
+ interface InternalUpdateExistingOperation {
3406
+ /** documents to update */
3407
+ documents?: InternalDocument[];
3408
+ }
3409
+ interface VersionedDocumentUpdateOperation {
3410
+ /** documents to create or overwrite */
3411
+ documents?: InternalDocument[];
3412
+ /** versioning mode to use instead of default */
3413
+ versioningMode?: VersioningModeWithLiterals;
3414
+ }
3415
+ declare enum VersioningMode {
3416
+ /** use default versioning mode agreed with search team */
3417
+ DEFAULT = "DEFAULT",
3418
+ /** execute only if version is greater than existing */
3419
+ GREATER_THAN = "GREATER_THAN",
3420
+ /** execute only if version is greater or equal to existing */
3421
+ GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
3422
+ }
3423
+ /** @enumType */
3424
+ type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
3425
+ interface VersionedDeleteByIdsOperation {
3426
+ /** ids with version of the documents to delete */
3427
+ documentIds?: VersionedDocumentId[];
3428
+ /**
3429
+ * tenant id for custom tenancy strategy
3430
+ * @minLength 2
3431
+ * @maxLength 300
3432
+ */
3433
+ tenantId?: string | null;
3434
+ }
3435
+ interface VersionedDocumentId {
3436
+ /** document id */
3437
+ documentId?: string;
3438
+ /** document version */
3439
+ version?: string;
3440
+ /** versioning mode to use instead of default */
3441
+ versioningMode?: VersioningModeWithLiterals;
3442
+ }
3308
3443
  /** Triggered when the order status changes to approved */
3309
3444
  interface OrderApproved {
3310
3445
  /** The order that was updated */
@@ -3667,50 +3802,17 @@ declare enum InventoryAction {
3667
3802
  }
3668
3803
  /** @enumType */
3669
3804
  type InventoryActionWithLiterals = InventoryAction | 'RESTOCK' | 'DECREASE';
3670
- interface ImportOrderRequest {
3671
- /**
3672
- * Order to be imported
3673
- * If order.order_settings.order_type and order.order_settings.custom_order_type not set than VIEW_ONLY will be used
3674
- */
3675
- order: Order;
3676
- }
3677
- interface ImportOrderResponse {
3678
- order?: Order;
3679
- }
3680
- /** Set Order number counter request */
3681
- interface SetOrderNumberCounterRequest {
3682
- /**
3683
- * Order number counter to set.
3684
- * Counter will be used as start of number sequence and used as order number with increment
3685
- * @max 999999999
3686
- */
3687
- counter: string;
3688
- /** Whether to allow setting a lower counter than current value */
3689
- allowLowerCounter?: boolean;
3690
- }
3691
- interface SetOrderNumberCounterResponse {
3692
- /** Order number counter before update */
3693
- oldCounter?: string;
3694
- /** Order number counter after update */
3695
- newCounter?: string;
3696
- }
3697
- /** Bulk Delete Imported Orders Messages */
3698
- interface BulkDeleteImportedOrdersRequest {
3805
+ interface TriggerReindexRequest {
3806
+ /** @format GUID */
3807
+ metasiteId?: string;
3699
3808
  /**
3700
- * List of order ids to be deleted.
3701
- * Only orders imported via ImportOrders API can be deleted.
3702
- * @format GUID
3703
- * @minSize 1
3704
- * @maxSize 1000
3809
+ * @minLength 1
3810
+ * @maxLength 100
3811
+ * @maxSize 100
3705
3812
  */
3706
- orderIds: string[];
3813
+ orderIds?: string[];
3707
3814
  }
3708
- interface BulkDeleteImportedOrdersResponse {
3709
- /**
3710
- * Job ID for async operation tracking. Pass to [Get Async Job](https://dev.wix.com/docs/rest/business-management/async-job/get-async-job) or [List Async Job Items](https://dev.wix.com/docs/rest/business-management/async-job/list-async-job-items) to retrieve details and metadata
3711
- * @format GUID
3712
- */
3713
- jobId?: string;
3815
+ interface TriggerReindexResponse {
3714
3816
  }
3715
3817
  interface DomainEvent extends DomainEventBodyOneOf {
3716
3818
  createdEvent?: EntityCreatedEvent;
@@ -3774,6 +3876,17 @@ interface EntityDeletedEvent {
3774
3876
  interface ActionEvent {
3775
3877
  body?: string;
3776
3878
  }
3879
+ interface Empty {
3880
+ }
3881
+ interface TriggerReindexOrderRequest {
3882
+ /** @format GUID */
3883
+ metasiteId?: string;
3884
+ /**
3885
+ * @minLength 1
3886
+ * @maxLength 100
3887
+ */
3888
+ orderId?: string;
3889
+ }
3777
3890
  interface MessageEnvelope {
3778
3891
  /**
3779
3892
  * App instance ID.
@@ -3865,142 +3978,52 @@ interface AccountInfo {
3865
3978
  */
3866
3979
  siteId?: string | null;
3867
3980
  }
3868
- interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
3869
- /** insert/update documents */
3870
- update?: InternalDocumentUpdateOperation;
3871
- /** delete by document ids */
3872
- deleteByIds?: DeleteByIdsOperation;
3873
- /** delete documents matching filter */
3874
- deleteByFilter?: DeleteByFilterOperation;
3875
- /** update internal documents matching filter */
3876
- updateByFilter?: InternalDocumentUpdateByFilterOperation;
3877
- /** update only existing documents */
3878
- updateExisting?: InternalUpdateExistingOperation;
3879
- /** insert/update documents with versioning */
3880
- versionedUpdate?: VersionedDocumentUpdateOperation;
3881
- /** delete by document ids with versioning */
3882
- versionedDeleteByIds?: VersionedDeleteByIdsOperation;
3883
- /**
3884
- * type of the documents
3885
- * @minLength 2
3886
- */
3887
- documentType?: string;
3888
- /**
3889
- * language of the documents (mandatory)
3890
- * @minLength 2
3891
- */
3892
- language?: string | null;
3893
- /**
3894
- * one or more search documents
3895
- * @deprecated
3896
- */
3897
- addDocuments?: InternalDocument[];
3981
+ interface ImportOrderRequest {
3898
3982
  /**
3899
- * one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
3900
- * @deprecated
3983
+ * Order to be imported
3984
+ * If order.order_settings.order_type and order.order_settings.custom_order_type not set than VIEW_ONLY will be used
3901
3985
  */
3902
- removeDocumentIds?: string[];
3903
- /** id to pass to processing notification */
3904
- correlationId?: string | null;
3905
- /** when event was created / issued */
3906
- issuedAt?: Date | null;
3907
- }
3908
- /** @oneof */
3909
- interface UpdateInternalDocumentsEventOperationOneOf {
3910
- /** insert/update documents */
3911
- update?: InternalDocumentUpdateOperation;
3912
- /** delete by document ids */
3913
- deleteByIds?: DeleteByIdsOperation;
3914
- /** delete documents matching filter */
3915
- deleteByFilter?: DeleteByFilterOperation;
3916
- /** update internal documents matching filter */
3917
- updateByFilter?: InternalDocumentUpdateByFilterOperation;
3918
- /** update only existing documents */
3919
- updateExisting?: InternalUpdateExistingOperation;
3920
- /** insert/update documents with versioning */
3921
- versionedUpdate?: VersionedDocumentUpdateOperation;
3922
- /** delete by document ids with versioning */
3923
- versionedDeleteByIds?: VersionedDeleteByIdsOperation;
3924
- }
3925
- interface InternalDocument {
3926
- /** document with mandatory fields (id) and with fields specific to the type of the document */
3927
- document?: Record<string, any> | null;
3986
+ order: Order;
3928
3987
  }
3929
- interface InternalDocumentUpdateOperation {
3930
- /** documents to index or update */
3931
- documents?: InternalDocument[];
3988
+ interface ImportOrderResponse {
3989
+ order?: Order;
3932
3990
  }
3933
- interface DeleteByIdsOperation {
3934
- /** ids of the documents to delete */
3935
- documentIds?: string[];
3991
+ /** Set Order number counter request */
3992
+ interface SetOrderNumberCounterRequest {
3936
3993
  /**
3937
- * tenant id for custom tenancy strategy
3938
- * @minLength 2
3939
- * @maxLength 300
3994
+ * Order number counter to set.
3995
+ * Counter will be used as start of number sequence and used as order number with increment
3996
+ * @max 999999999
3940
3997
  */
3941
- tenantId?: string | null;
3998
+ counter: string;
3999
+ /** Whether to allow setting a lower counter than current value */
4000
+ allowLowerCounter?: boolean;
3942
4001
  }
3943
- interface DeleteByFilterOperation {
3944
- /** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
3945
- filter?: Record<string, any> | null;
3946
- /**
3947
- * tenant id for custom tenancy strategy
3948
- * @minLength 2
3949
- * @maxLength 300
3950
- */
3951
- tenantId?: string | null;
4002
+ interface SetOrderNumberCounterResponse {
4003
+ /** Order number counter before update */
4004
+ oldCounter?: string;
4005
+ /** Order number counter after update */
4006
+ newCounter?: string;
3952
4007
  }
3953
- interface InternalDocumentUpdateByFilterOperation {
3954
- /** documents matching this filter will be updated */
3955
- filter?: Record<string, any> | null;
3956
- /** partial document to apply */
3957
- document?: InternalDocument;
4008
+ /** Bulk Delete Imported Orders Messages */
4009
+ interface BulkDeleteImportedOrdersRequest {
3958
4010
  /**
3959
- * tenant id for custom tenancy strategy
3960
- * @minLength 2
3961
- * @maxLength 300
4011
+ * List of order ids to be deleted.
4012
+ * Only orders imported via ImportOrders API can be deleted.
4013
+ * @format GUID
4014
+ * @minSize 1
4015
+ * @maxSize 1000
3962
4016
  */
3963
- tenantId?: string | null;
3964
- }
3965
- interface InternalUpdateExistingOperation {
3966
- /** documents to update */
3967
- documents?: InternalDocument[];
3968
- }
3969
- interface VersionedDocumentUpdateOperation {
3970
- /** documents to create or overwrite */
3971
- documents?: InternalDocument[];
3972
- /** versioning mode to use instead of default */
3973
- versioningMode?: VersioningModeWithLiterals;
3974
- }
3975
- declare enum VersioningMode {
3976
- /** use default versioning mode agreed with search team */
3977
- DEFAULT = "DEFAULT",
3978
- /** execute only if version is greater than existing */
3979
- GREATER_THAN = "GREATER_THAN",
3980
- /** execute only if version is greater or equal to existing */
3981
- GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
4017
+ orderIds: string[];
3982
4018
  }
3983
- /** @enumType */
3984
- type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
3985
- interface VersionedDeleteByIdsOperation {
3986
- /** ids with version of the documents to delete */
3987
- documentIds?: VersionedDocumentId[];
4019
+ interface BulkDeleteImportedOrdersResponse {
3988
4020
  /**
3989
- * tenant id for custom tenancy strategy
3990
- * @minLength 2
3991
- * @maxLength 300
4021
+ * Job ID for async operation tracking. Pass to [Get Async Job](https://dev.wix.com/docs/rest/business-management/async-job/get-async-job) or [List Async Job Items](https://dev.wix.com/docs/rest/business-management/async-job/list-async-job-items) to retrieve details and metadata
4022
+ * @format GUID
3992
4023
  */
3993
- tenantId?: string | null;
3994
- }
3995
- interface VersionedDocumentId {
3996
- /** document id */
3997
- documentId?: string;
3998
- /** document version */
3999
- version?: string;
4000
- /** versioning mode to use instead of default */
4001
- versioningMode?: VersioningModeWithLiterals;
4024
+ jobId?: string;
4002
4025
  }
4003
- interface TriggerReindexRequest {
4026
+ interface V1TriggerReindexRequest {
4004
4027
  /** @format GUID */
4005
4028
  metasiteId?: string;
4006
4029
  /**
@@ -4010,11 +4033,9 @@ interface TriggerReindexRequest {
4010
4033
  */
4011
4034
  orderIds?: string[];
4012
4035
  }
4013
- interface TriggerReindexResponse {
4036
+ interface V1TriggerReindexResponse {
4014
4037
  }
4015
- interface Empty {
4016
- }
4017
- interface TriggerReindexOrderRequest {
4038
+ interface V1TriggerReindexOrderRequest {
4018
4039
  /** @format GUID */
4019
4040
  metasiteId?: string;
4020
4041
  /**
@@ -9578,4 +9599,4 @@ interface BulkUpdateOrderTagsOptions {
9578
9599
  unassignTags?: TagsTags;
9579
9600
  }
9580
9601
 
9581
- export { type CancelOrderResponse as $, type MaskedOrder as A, type BulkDeleteImportedOrdersResponse as B, type CreatePaymentGatewayOrderResponse as C, type BulkUpdateOrdersOptions as D, type BulkUpdateOrdersResponse as E, type UpdateOrderLineItemIdentifiers as F, type GetPaymentCollectabilityStatusResponse as G, type UpdateOrderLineItem as H, type ImportOrderResponse as I, type UpdateOrderLineItemResponse as J, type PublicActivity as K, type AddActivityResponse as L, type MarkOrderAsPaidResponse as M, type AddActivitiesOptions as N, type Order as O, type Price as P, type AddActivitiesResponse as Q, type RecordManuallyCollectedPaymentOptions as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type UpdateActivityIdentifiers as W, type UpdateActivityResponse as X, type DeleteActivityIdentifiers as Y, type DeleteActivityResponse as Z, type CancelOrderOptions as _, type ImportOrderApplicationErrors as a, ChargebackStatus as a$, type CancelOrderApplicationErrors as a0, type OrderStatusWithLiterals as a1, type UpdateOrderStatusResponse as a2, type UpdateOrderStatusApplicationErrors as a3, type AggregateOrdersOptions as a4, type AggregateOrdersResponse as a5, type BulkUpdateOrderTagsOptions as a6, type BulkUpdateOrderTagsResponse as a7, type OrderApprovedEnvelope as a8, type OrderCanceledEnvelope as a9, AdditionalFeeSource as aA, OrderActionType as aB, SpecificItemsCouponBehavior as aC, ChargeType as aD, DeltaPaymentOptionType as aE, InventoryAction as aF, WebhookIdentityType as aG, VersioningMode as aH, PreviewEmailType as aI, State as aJ, SiteCreatedContext as aK, Namespace as aL, DeleteStatus as aM, Origin as aN, ScheduledAction as aO, DurationUnit as aP, PaymentCollectabilityStatus as aQ, PredefinedPaymentMethod as aR, RefundableStatus as aS, NonRefundableReason as aT, ManuallyRefundableReason as aU, RestockType as aV, TransactionStatus as aW, AuthorizationCaptureStatus as aX, AuthorizationVoidStatus as aY, Reason as aZ, ActionType as a_, type OrderCommittedEnvelope as aa, type OrderCreatedEnvelope as ab, type OrderFulfilledEnvelope as ac, type OrderPaymentStatusUpdatedEnvelope as ad, type OrderUpdatedEnvelope as ae, DescriptionLineType as af, DimensionsUnit as ag, ItemTypePreset as ah, PaymentOptionType as ai, JurisdictionType as aj, SubscriptionFrequency as ak, AdjustmentType as al, TaxableAddressType as am, PaymentStatusEnumPaymentStatus as an, FulfillmentStatus as ao, WeightUnit as ap, VatType as aq, PickupMethod as ar, OrderStatus as as, DiscountType as at, DiscountReason as au, LineItemQuantityChangeType as av, ActivityType as aw, OrderActivityTypeEnumActivityType as ax, AttributionSource as ay, ChannelType as az, type SetOrderNumberCounterResponse as b, type ShippingPrice as b$, MembershipPaymentStatus as b0, PaymentStatus as b1, RefundStatus as b2, SortOrder as b3, OrderApprovalStrategy as b4, Placement as b5, SubdivisionType as b6, SourceType as b7, CustomFieldGroup as b8, ValueType as b9, type BillingSettings as bA, type BillingAdjustment as bB, type BillingAdjustmentPriceSummary as bC, type PriceDescription as bD, type LocationAndQuantity as bE, type TaxableAddress as bF, type TaxableAddressTaxableAddressDataOneOf as bG, type ExtendedFields as bH, type ModifierGroup as bI, type TranslatableString as bJ, type ItemModifier as bK, type BuyerInfo as bL, type BuyerInfoIdOneOf as bM, type CurrencyConversionDetails as bN, type PriceSummary as bO, type AddressWithContact as bP, type Address as bQ, type StreetAddress as bR, type AddressLocation as bS, type FullAddressContactDetails as bT, type VatId as bU, type V1ShippingInformation as bV, type DeliveryLogistics as bW, type DeliveryLogisticsAddressOneOf as bX, type PickupDetails as bY, type PickupAddress as bZ, type DeliveryTimeSlot as b_, DepositType as ba, InvoiceStatus as bb, type OrderLineItem as bc, type ProductName as bd, type CatalogReference as be, type DescriptionLine as bf, type DescriptionLineValueOneOf as bg, type DescriptionLineDescriptionLineValueOneOf as bh, type DescriptionLineName as bi, type PlainTextValue as bj, type Color as bk, type FocalPoint as bl, type PhysicalProperties as bm, type Dimensions as bn, type ItemType as bo, type ItemTypeItemTypeDataOneOf as bp, type RestockLocation as bq, type ItemTaxFullDetails as br, type LineItemTaxInfo as bs, type LineItemTaxBreakdown as bt, type DigitalFile as bu, type SubscriptionInfo as bv, type SubscriptionTitle as bw, type SubscriptionDescription as bx, type SubscriptionSettings as by, type FreeTrialPeriod as bz, type PreparePaymentCollectionOptions as c, type WixReceipt as c$, type ShippingRegion as c0, type TaxSummary as c1, type OrderTaxInfo as c2, type OrderTaxBreakdown as c3, type AppliedDiscount as c4, type AppliedDiscountDiscountSourceOneOf as c5, type Coupon as c6, type MerchantDiscount as c7, type MerchantDiscountMerchantDiscountReasonOneOf as c8, type DiscountRule as c9, type TotalPriceChange as cA, type ShippingInformationChange as cB, type ShippingInformation as cC, type SavedPaymentMethod as cD, type AuthorizedPaymentCreated as cE, type AuthorizedPaymentCaptured as cF, type AuthorizedPaymentVoided as cG, type RefundInitiated as cH, type RefundedPayment as cI, type RefundedPaymentKindOneOf as cJ, type RegularPaymentRefund as cK, type GiftCardPaymentRefund as cL, type MembershipPaymentRefund as cM, type PaymentRefunded as cN, type PaymentRefundFailed as cO, type RefundedAsStoreCredit as cP, type PaymentPending as cQ, type PaymentPendingPaymentDetailsOneOf as cR, type RegularPayment as cS, type RegularPaymentPaymentMethodDetailsOneOf as cT, type CreditCardDetails as cU, type PaymentCanceled as cV, type PaymentCanceledPaymentDetailsOneOf as cW, type PaymentDeclined as cX, type PaymentDeclinedPaymentDetailsOneOf as cY, type ReceiptCreated as cZ, type ReceiptCreatedReceiptInfoOneOf as c_, type DiscountRuleName as ca, type LineItemDiscount as cb, type ItemCombination as cc, type ItemCombinationLineItem as cd, type Activity as ce, type ActivityContentOneOf as cf, type CustomActivity as cg, type MerchantComment as ch, type OrderRefunded as ci, type OrderCreatedFromExchange as cj, type NewExchangeOrderCreated as ck, type LineItemExchangeData as cl, type DraftOrderChangesApplied as cm, type OrderChange as cn, type OrderChangeValueOneOf as co, type LineItemChanges as cp, type LineItemQuantityChange as cq, type LineItemPriceChange as cr, type LineItemProductNameChange as cs, type LineItemDescriptionLineChange as ct, type LineItemModifiersChange as cu, type ManagedLineItem as cv, type ManagedDiscount as cw, type TranslatedValue as cx, type LineItemAmount as cy, type ManagedAdditionalFee as cz, type PreparePaymentCollectionResponse as d, type AccountInfo as d$, type ExternalReceipt as d0, type ReceiptSent as d1, type ReceiptSentReceiptInfoOneOf as d2, type ChargebackCreated as d3, type ChargebackReversed as d4, type CreatedBy as d5, type CreatedByStringOneOf as d6, type ChannelInfo as d7, type CustomField as d8, type BalanceSummary as d9, type OrderCanceledEventOrderCanceled as dA, type OrderDeltasCommitted as dB, type CommittedDiffs as dC, type CommittedDiffsShippingUpdateInfoOneOf as dD, type ItemChangedDetails as dE, type OrderLineItemChangedDetails as dF, type LineItemDelta as dG, type LineItemDeltaDeltaOneOf as dH, type AppliedDiscountDelta as dI, type AppliedDiscountDeltaDeltaOneOf as dJ, type AdditionalFeeDelta as dK, type AdditionalFeeDeltaDeltaOneOf as dL, type DraftOrderCommitSettings as dM, type InventoryUpdateDetails as dN, type ImportOrderRequest as dO, type SetOrderNumberCounterRequest as dP, type BulkDeleteImportedOrdersRequest as dQ, type DomainEvent as dR, type DomainEventBodyOneOf as dS, type EntityCreatedEvent as dT, type RestoreInfo as dU, type EntityUpdatedEvent as dV, type EntityDeletedEvent as dW, type ActionEvent as dX, type MessageEnvelope as dY, type IdentificationData as dZ, type IdentificationDataIdOneOf as d_, type Balance as da, type CashRounding as db, type AdditionalFee as dc, type FulfillmentStatusesAggregate as dd, type Tags as de, type TagList as df, type Location as dg, type OrderSettings as dh, type OrderSettingsAllowedActionsOneOf as di, type OrderSettingsEditableByOneOf as dj, type CustomAllowedActions as dk, type OwnerApps as dl, type FormInfo as dm, type FormIdentifier as dn, type PlatformFeeSummary as dp, type PlatformFee as dq, type OrderApproved as dr, type OrdersExperiments as ds, type OrderRejectedEventOrderRejected as dt, type OrderItemsRestocked as du, type V1RestockItem as dv, type OrderImported as dw, type ImportedOrderDeleted as dx, type PaymentStatusUpdated as dy, type FulfillmentStatusUpdated as dz, type PreparePaymentCollectionApplicationErrors as e, type SiteCreated as e$, type UpdateInternalDocumentsEvent as e0, type UpdateInternalDocumentsEventOperationOneOf as e1, type InternalDocument as e2, type InternalDocumentUpdateOperation as e3, type DeleteByIdsOperation as e4, type DeleteByFilterOperation as e5, type InternalDocumentUpdateByFilterOperation as e6, type InternalUpdateExistingOperation as e7, type VersionedDocumentUpdateOperation as e8, type VersionedDeleteByIdsOperation as e9, type SendMerchantOrderReceivedPushResponse as eA, type PreviewEmailByTypeRequest as eB, type PreviewEmailByTypeResponse as eC, type PreviewRefundEmailRequest as eD, type RefundDetails as eE, type RefundItem as eF, type LineItemRefund as eG, type AdditionalFeeRefund as eH, type ShippingRefund as eI, type PreviewRefundEmailResponse as eJ, type PreviewCancelEmailRequest as eK, type PreviewCancelEmailResponse as eL, type PreviewCancelRefundEmailRequest as eM, type PreviewCancelRefundEmailResponse as eN, type PreviewBuyerPaymentsReceivedEmailRequest as eO, type PreviewBuyerPaymentsReceivedEmailResponse as eP, type PreviewBuyerConfirmationEmailRequest as eQ, type PreviewBuyerConfirmationEmailResponse as eR, type PreviewBuyerPickupConfirmationEmailRequest as eS, type PreviewBuyerPickupConfirmationEmailResponse as eT, type PreviewShippingConfirmationEmailRequest as eU, type PreviewShippingConfirmationEmailResponse as eV, type PreviewResendDownloadLinksEmailRequest as eW, type PreviewResendDownloadLinksEmailResponse as eX, type MetaSiteSpecialEvent as eY, type MetaSiteSpecialEventPayloadOneOf as eZ, type Asset as e_, type VersionedDocumentId as ea, type TriggerReindexRequest as eb, type TriggerReindexResponse as ec, type Empty as ed, type TriggerReindexOrderRequest as ee, type SendBuyerConfirmationEmailRequest as ef, type SendBuyerConfirmationEmailResponse as eg, type SendBuyerPaymentsReceivedEmailRequest as eh, type SendBuyerPaymentsReceivedEmailResponse as ei, type SendBuyerPickupConfirmationEmailRequest as ej, type SendBuyerPickupConfirmationEmailResponse as ek, type BulkSendBuyerPickupConfirmationEmailsRequest as el, type BulkSendBuyerPickupConfirmationEmailsResponse as em, type SendBuyerShippingConfirmationEmailRequest as en, type SendBuyerShippingConfirmationEmailResponse as eo, type BulkSendBuyerShippingConfirmationEmailsRequest as ep, type BulkSendBuyerShippingConfirmationEmailsResponse as eq, type SendMerchantOrderReceivedNotificationRequest as er, type SendMerchantOrderReceivedNotificationResponse as es, type SendCancelRefundEmailRequest as et, type SendCancelRefundEmailResponse as eu, type SendRefundEmailRequest as ev, type SendRefundEmailResponse as ew, type SendFulfillmentEmailRequest as ex, type SendFulfillmentEmailResponse as ey, type SendMerchantOrderReceivedPushRequest as ez, type RecordManuallyCollectedPaymentApplicationErrors as f, type RestockItem as f$, type SiteTransferred as f0, type SiteDeleted as f1, type DeleteContext as f2, type SiteUndeleted as f3, type SitePublished as f4, type SiteUnpublished as f5, type SiteMarkedAsTemplate as f6, type SiteMarkedAsWixSite as f7, type ServiceProvisioned as f8, type ServiceRemoved as f9, type RedirectUrls as fA, type DelayedCaptureSettings as fB, type Duration as fC, type GetPaymentCollectabilityStatusRequest as fD, type RecordManuallyCollectedPaymentRequest as fE, type UserDefinedPaymentMethodName as fF, type UserDefinedPaymentMethodNameKindOneOf as fG, type RecordManuallyCollectedPaymentResponse as fH, type MarkOrderAsPaidRequest as fI, type BulkMarkOrdersAsPaidRequest as fJ, type BulkOrderResult as fK, type ItemMetadata as fL, type ApplicationError as fM, type BulkActionMetadata as fN, type GetRefundabilityStatusRequest as fO, type Refundability as fP, type RefundabilityAdditionalRefundabilityInfoOneOf as fQ, type CreatePaymentGatewayOrderRequest as fR, type ChargedBy as fS, type ChargeMembershipsRequest as fT, type MembershipChargeItem as fU, type MembershipName as fV, type ServiceProperties as fW, type ChargeMembershipsResponse as fX, type TriggerRefundRequest as fY, type RefundSideEffects as fZ, type RestockInfo as f_, type SiteRenamed as fa, type SiteHardDeleted as fb, type NamespaceChanged as fc, type StudioAssigned as fd, type StudioUnassigned as fe, type SiteUrlChanged as ff, type SitePurgedExternally as fg, type OdeditorAssigned as fh, type OdeditorUnassigned as fi, type PicassoAssigned as fj, type PicassoUnassigned as fk, type WixelAssigned as fl, type WixelUnassigned as fm, type StudioTwoAssigned as fn, type StudioTwoUnassigned as fo, type UserDomainMediaEnabled as fp, type UserDomainMediaDisabled as fq, type EditorlessAssigned as fr, type EditorlessUnassigned as fs, type HasCustomEmailConfigurationsRequest as ft, type HasCustomEmailConfigurationsResponse as fu, type AddToAutomationMigrationPopulationRequest as fv, type AddToAutomationMigrationPopulationResponse as fw, type IsInAutomationMigrationPopulationRequest as fx, type IsInAutomationMigrationPopulationResponse as fy, type PreparePaymentCollectionRequest as fz, type PaymentCollectionMarkOrderAsPaidOptions as g, type DraftOrderDiffsBuyerUpdateInfoOneOf as g$, type OrderTransactions as g0, type Payment as g1, type PaymentPaymentDetailsOneOf as g2, type PaymentReceiptInfoOneOf as g3, type RegularPaymentDetails as g4, type RegularPaymentDetailsPaymentMethodDetailsOneOf as g5, type CreditCardPaymentMethodDetails as g6, type AuthorizationDetails as g7, type AuthorizationCapture as g8, type AuthorizationActionFailureDetails as g9, type GetOrderResponse as gA, type InternalQueryOrdersRequest as gB, type PlatformQuery as gC, type PlatformQueryPagingMethodOneOf as gD, type Sorting as gE, type PlatformPaging as gF, type CursorPaging as gG, type InternalQueryOrdersResponse as gH, type PlatformPagingMetadata as gI, type Cursors as gJ, type QueryOrderRequest as gK, type QueryOrderResponse as gL, type SearchOrdersRequest as gM, type CursorSearch as gN, type CursorSearchPagingMethodOneOf as gO, type CursorPagingMetadata as gP, type CreateOrderRequest as gQ, type OrderCreationSettings as gR, type OrderCreationSettingsEditableByOneOf as gS, type OrderCreateNotifications as gT, type CreateOrderResponse as gU, type UpdateOrderRequest as gV, type UpdateOrderResponse as gW, type BulkUpdateOrdersRequest as gX, type CommitDeltasRequest as gY, type DraftOrderDiffs as gZ, type DraftOrderDiffsShippingUpdateInfoOneOf as g_, type AuthorizationVoid as ga, type V1ScheduledAction as gb, type Chargeback as gc, type PaymentMethodName as gd, type GiftCardPaymentDetails as ge, type MembershipPaymentDetails as gf, type WixReceiptInfo as gg, type ExternalReceiptInfo as gh, type CashRoundingDetails as gi, type Refund as gj, type RefundTransaction as gk, type RefundStatusInfo as gl, type AggregatedRefundSummary as gm, type RefundItemsBreakdown as gn, type LineItemRefundSummary as go, type CalculateRefundRequest as gp, type CalculateRefundItemRequest as gq, type CalculateRefundResponse as gr, type CalculateRefundItemResponse as gs, type VoidAuthorizedPaymentsRequest as gt, type CaptureAuthorizedPaymentsRequest as gu, type ChargeSavedPaymentMethodRequest as gv, type ChargeSavedPaymentMethodResponse as gw, type DiffmatokyPayload as gx, type ErrorInformation as gy, type GetOrderRequest as gz, type PaymentCollectionMarkOrderAsPaidApplicationErrors as h, type CancelOrderRequest as h$, type DraftOrderDiffsBillingUpdateInfoOneOf as h0, type DraftOrderDiffsRecipientUpdateInfoOneOf as h1, type V1LineItemDelta as h2, type V1LineItemDeltaDeltaOneOf as h3, type CommitDeltasResponse as h4, type ArchiveOrderRequest as h5, type ArchiveOrderResponse as h6, type BulkArchiveOrdersRequest as h7, type BulkArchiveOrdersResponse as h8, type BulkArchiveOrdersByFilterRequest as h9, type OrderNotFulfilled as hA, type OrderCanceled as hB, type DownloadLinkSent as hC, type TrackingNumberAdded as hD, type TrackingNumberEdited as hE, type TrackingLinkAdded as hF, type ShippingConfirmationEmailSent as hG, type InvoiceAdded as hH, type InvoiceSent as hI, type FulfillerEmailSent as hJ, type ShippingAddressEdited as hK, type EmailEdited as hL, type PickupReadyEmailSent as hM, type OrderPartiallyPaid as hN, type OrderPending as hO, type OrderRejected as hP, type AddInternalActivityResponse as hQ, type AddActivityRequest as hR, type PublicActivityContentOneOf as hS, type AddActivitiesRequest as hT, type UpdateActivityRequest as hU, type DeleteActivityRequest as hV, type UpdateLineItemsDescriptionLinesRequest as hW, type LineItemUpdate as hX, type UpdateLineItemsDescriptionLinesResponse as hY, type MarkOrderAsSeenByHumanRequest as hZ, type MarkOrderAsSeenByHumanResponse as h_, type BulkArchiveOrdersByFilterResponse as ha, type UnArchiveOrderRequest as hb, type UnArchiveOrderResponse as hc, type BulkUnArchiveOrdersRequest as hd, type BulkUnArchiveOrdersResponse as he, type BulkUnArchiveOrdersByFilterRequest as hf, type BulkUnArchiveOrdersByFilterResponse as hg, type UpdateBuyerInfoRequest as hh, type BuyerInfoUpdate as hi, type UpdateBuyerInfoResponse as hj, type UpdateBuyerEmailRequest as hk, type UpdateBuyerEmailResponse as hl, type UpdateOrderShippingAddressRequest as hm, type UpdateOrderShippingAddressResponse as hn, type UpdateBillingContactDetailsRequest as ho, type UpdateBillingContactDetailsResponse as hp, type UpdateOrderLineItemRequest as hq, type UpdateOrderLineItemsRequest as hr, type MaskedOrderLineItem as hs, type UpdateOrderLineItemsResponse as ht, type AddInternalActivityRequest as hu, type InternalActivity as hv, type InternalActivityContentOneOf as hw, type OrderPlaced as hx, type OrderPaid as hy, type OrderFulfilled as hz, type BulkMarkOrdersAsPaidResponse as i, type Locale as i$, type UpdateOrderStatusRequest as i0, type MarkAsFulfilledRequest as i1, type MarkAsFulfilledResponse as i2, type BulkMarkAsFulfilledRequest as i3, type BulkMarkAsFulfilledResponse as i4, type BulkMarkAsFulfilledByFilterRequest as i5, type BulkMarkAsFulfilledByFilterResponse as i6, type MarkAsUnfulfilledRequest as i7, type MarkAsUnfulfilledResponse as i8, type BulkMarkAsUnfulfilledRequest as i9, type Task as iA, type TaskKey as iB, type TaskAction as iC, type TaskActionActionOneOf as iD, type Complete as iE, type Cancel as iF, type Reschedule as iG, type InvoiceSentEvent as iH, type IdAndVersion as iI, type InvoiceFields as iJ, type Customer as iK, type Email as iL, type QuotesAddress as iM, type AddressDescription as iN, type Phone as iO, type Company as iP, type CommonAddress as iQ, type CommonAddressStreetOneOf as iR, type Subdivision as iS, type StandardDetails as iT, type InvoiceDates as iU, type LineItems as iV, type LineItem as iW, type BigDecimalWrapper as iX, type LineItemTax as iY, type Source as iZ, type LineItemMetaData as i_, type BulkMarkAsUnfulfilledResponse as ia, type BulkMarkAsUnfulfilledByFilterRequest as ib, type BulkMarkAsUnfulfilledByFilterResponse as ic, type BulkSetBusinessLocationRequest as id, type BulkSetBusinessLocationResponse as ie, type BulkSetBusinessLocationResult as ig, type V1MarkOrderAsPaidRequest as ih, type V1MarkOrderAsPaidResponse as ii, type V1BulkMarkOrdersAsPaidRequest as ij, type V1BulkMarkOrdersAsPaidResponse as ik, type V1CreatePaymentGatewayOrderRequest as il, type V1CreatePaymentGatewayOrderResponse as im, type GetShipmentsRequest as io, type GetShipmentsResponse as ip, type AggregateOrdersRequest as iq, type DecrementItemsQuantityRequest as ir, type DecrementData as is, type DecrementItemsQuantityResponse as it, type BulkUpdateOrderTagsRequest as iu, type TagsTags as iv, type TagsTagList as iw, type BulkUpdateOrderTagsResult as ix, type SendOrderUpdatedDomainEventRequest as iy, type SendOrderUpdatedDomainEventResponse as iz, type GetRefundabilityStatusResponse as j, type ReasonWithLiterals as j$, type TotalPrice as j0, type ItemizedFee as j1, type Discount as j2, type DiscountOneDiscountTypeOneOf as j3, type CalculatedTaxes as j4, type CalculatedTax as j5, type Payments as j6, type InvoicesPayment as j7, type MetaData as j8, type InvoiceDynamicPriceTotals as j9, type AttributionSourceWithLiterals as jA, type ChannelTypeWithLiterals as jB, type AdditionalFeeSourceWithLiterals as jC, type OrderActionTypeWithLiterals as jD, type SpecificItemsCouponBehaviorWithLiterals as jE, type ChargeTypeWithLiterals as jF, type DeltaPaymentOptionTypeWithLiterals as jG, type InventoryActionWithLiterals as jH, type WebhookIdentityTypeWithLiterals as jI, type VersioningModeWithLiterals as jJ, type PreviewEmailTypeWithLiterals as jK, type StateWithLiterals as jL, type SiteCreatedContextWithLiterals as jM, type NamespaceWithLiterals as jN, type DeleteStatusWithLiterals as jO, type OriginWithLiterals as jP, type ScheduledActionWithLiterals as jQ, type DurationUnitWithLiterals as jR, type PaymentCollectabilityStatusWithLiterals as jS, type PredefinedPaymentMethodWithLiterals as jT, type RefundableStatusWithLiterals as jU, type NonRefundableReasonWithLiterals as jV, type ManuallyRefundableReasonWithLiterals as jW, type RestockTypeWithLiterals as jX, type TransactionStatusWithLiterals as jY, type AuthorizationCaptureStatusWithLiterals as jZ, type AuthorizationVoidStatusWithLiterals as j_, type CustomFieldValue as ja, type Value as jb, type Deposit as jc, type BaseEventMetadata as jd, type EventMetadata as je, type AccountInfoMetadata as jf, type OrderSearchSpec as jg, utils as jh, type DescriptionLineTypeWithLiterals as ji, type DimensionsUnitWithLiterals as jj, type ItemTypePresetWithLiterals as jk, type PaymentOptionTypeWithLiterals as jl, type JurisdictionTypeWithLiterals as jm, type SubscriptionFrequencyWithLiterals as jn, type AdjustmentTypeWithLiterals as jo, type TaxableAddressTypeWithLiterals as jp, type PaymentStatusEnumPaymentStatusWithLiterals as jq, type FulfillmentStatusWithLiterals as jr, type WeightUnitWithLiterals as js, type VatTypeWithLiterals as jt, type PickupMethodWithLiterals as ju, type DiscountTypeWithLiterals as jv, type DiscountReasonWithLiterals as jw, type LineItemQuantityChangeTypeWithLiterals as jx, type ActivityTypeWithLiterals as jy, type OrderActivityTypeEnumActivityTypeWithLiterals as jz, type PaymentCollectionCreatePaymentGatewayOrderOptions as k, type ActionTypeWithLiterals as k0, type ChargebackStatusWithLiterals as k1, type MembershipPaymentStatusWithLiterals as k2, type PaymentStatusWithLiterals as k3, type RefundStatusWithLiterals as k4, type SortOrderWithLiterals as k5, type OrderApprovalStrategyWithLiterals as k6, type PlacementWithLiterals as k7, type SubdivisionTypeWithLiterals as k8, type SourceTypeWithLiterals as k9, getOrder as kA, createOrder as kB, updateOrder as kC, bulkUpdateOrders as kD, updateOrderLineItem as kE, addActivity as kF, addActivities as kG, updateActivity as kH, deleteActivity as kI, cancelOrder as kJ, updateOrderStatus as kK, aggregateOrders as kL, bulkUpdateOrderTags as kM, type CustomFieldGroupWithLiterals as ka, type ValueTypeWithLiterals as kb, type DepositTypeWithLiterals as kc, type InvoiceStatusWithLiterals as kd, type CommonSearchWithEntityContext as ke, onOrderApproved as kf, onOrderCanceled as kg, onOrderCommitted as kh, onOrderCreated as ki, onOrderFulfilled as kj, onOrderPaymentStatusUpdated as kk, onOrderUpdated as kl, importOrder as km, setOrderNumberCounter as kn, bulkDeleteImportedOrders as ko, preparePaymentCollection as kp, getPaymentCollectabilityStatus as kq, recordManuallyCollectedPayment as kr, paymentCollectionMarkOrderAsPaid as ks, paymentCollectionBulkMarkOrdersAsPaid as kt, getRefundabilityStatus as ku, paymentCollectionCreatePaymentGatewayOrder as kv, chargeMemberships as kw, triggerRefund as kx, voidAuthorizedPayments as ky, captureAuthorizedPayments as kz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as l, type ChargeMembershipsOptions as m, type PaymentRefund as n, type TriggerRefundResponse as o, type TriggerRefundApplicationErrors as p, type VoidAuthorizedPaymentsApplicationErrors as q, type PaymentCapture as r, type CaptureAuthorizedPaymentsResponse as s, type CaptureAuthorizedPaymentsApplicationErrors as t, type GetOrderApplicationErrors as u, type OrderSearch as v, type SearchOrdersResponse as w, type CreateOrderOptions as x, type CreateOrderApplicationErrors as y, type UpdateOrderApplicationErrors as z };
9602
+ export { type CancelOrderResponse as $, type MaskedOrder as A, type BulkDeleteImportedOrdersResponse as B, type CreatePaymentGatewayOrderResponse as C, type BulkUpdateOrdersOptions as D, type BulkUpdateOrdersResponse as E, type UpdateOrderLineItemIdentifiers as F, type GetPaymentCollectabilityStatusResponse as G, type UpdateOrderLineItem as H, type ImportOrderResponse as I, type UpdateOrderLineItemResponse as J, type PublicActivity as K, type AddActivityResponse as L, type MarkOrderAsPaidResponse as M, type AddActivitiesOptions as N, type Order as O, type Price as P, type AddActivitiesResponse as Q, type RecordManuallyCollectedPaymentOptions as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type UpdateActivityIdentifiers as W, type UpdateActivityResponse as X, type DeleteActivityIdentifiers as Y, type DeleteActivityResponse as Z, type CancelOrderOptions as _, type ImportOrderApplicationErrors as a, ChargebackStatus as a$, type CancelOrderApplicationErrors as a0, type OrderStatusWithLiterals as a1, type UpdateOrderStatusResponse as a2, type UpdateOrderStatusApplicationErrors as a3, type AggregateOrdersOptions as a4, type AggregateOrdersResponse as a5, type BulkUpdateOrderTagsOptions as a6, type BulkUpdateOrderTagsResponse as a7, type OrderApprovedEnvelope as a8, type OrderCanceledEnvelope as a9, AdditionalFeeSource as aA, OrderActionType as aB, SpecificItemsCouponBehavior as aC, ChargeType as aD, VersioningMode as aE, DeltaPaymentOptionType as aF, InventoryAction as aG, WebhookIdentityType as aH, PreviewEmailType as aI, State as aJ, SiteCreatedContext as aK, Namespace as aL, DeleteStatus as aM, Origin as aN, ScheduledAction as aO, DurationUnit as aP, PaymentCollectabilityStatus as aQ, PredefinedPaymentMethod as aR, RefundableStatus as aS, NonRefundableReason as aT, ManuallyRefundableReason as aU, RestockType as aV, TransactionStatus as aW, AuthorizationCaptureStatus as aX, AuthorizationVoidStatus as aY, Reason as aZ, ActionType as a_, type OrderCommittedEnvelope as aa, type OrderCreatedEnvelope as ab, type OrderFulfilledEnvelope as ac, type OrderPaymentStatusUpdatedEnvelope as ad, type OrderUpdatedEnvelope as ae, DescriptionLineType as af, DimensionsUnit as ag, ItemTypePreset as ah, PaymentOptionType as ai, JurisdictionType as aj, SubscriptionFrequency as ak, AdjustmentType as al, TaxableAddressType as am, PaymentStatusEnumPaymentStatus as an, FulfillmentStatus as ao, WeightUnit as ap, VatType as aq, PickupMethod as ar, OrderStatus as as, DiscountType as at, DiscountReason as au, LineItemQuantityChangeType as av, ActivityType as aw, OrderActivityTypeEnumActivityType as ax, AttributionSource as ay, ChannelType as az, type SetOrderNumberCounterResponse as b, type ShippingPrice as b$, MembershipPaymentStatus as b0, PaymentStatus as b1, RefundStatus as b2, SortOrder as b3, OrderApprovalStrategy as b4, Placement as b5, SubdivisionType as b6, SourceType as b7, CustomFieldGroup as b8, ValueType as b9, type BillingSettings as bA, type BillingAdjustment as bB, type BillingAdjustmentPriceSummary as bC, type PriceDescription as bD, type LocationAndQuantity as bE, type TaxableAddress as bF, type TaxableAddressTaxableAddressDataOneOf as bG, type ExtendedFields as bH, type ModifierGroup as bI, type TranslatableString as bJ, type ItemModifier as bK, type BuyerInfo as bL, type BuyerInfoIdOneOf as bM, type CurrencyConversionDetails as bN, type PriceSummary as bO, type AddressWithContact as bP, type Address as bQ, type StreetAddress as bR, type AddressLocation as bS, type FullAddressContactDetails as bT, type VatId as bU, type V1ShippingInformation as bV, type DeliveryLogistics as bW, type DeliveryLogisticsAddressOneOf as bX, type PickupDetails as bY, type PickupAddress as bZ, type DeliveryTimeSlot as b_, DepositType as ba, InvoiceStatus as bb, type OrderLineItem as bc, type ProductName as bd, type CatalogReference as be, type DescriptionLine as bf, type DescriptionLineValueOneOf as bg, type DescriptionLineDescriptionLineValueOneOf as bh, type DescriptionLineName as bi, type PlainTextValue as bj, type Color as bk, type FocalPoint as bl, type PhysicalProperties as bm, type Dimensions as bn, type ItemType as bo, type ItemTypeItemTypeDataOneOf as bp, type RestockLocation as bq, type ItemTaxFullDetails as br, type LineItemTaxInfo as bs, type LineItemTaxBreakdown as bt, type DigitalFile as bu, type SubscriptionInfo as bv, type SubscriptionTitle as bw, type SubscriptionDescription as bx, type SubscriptionSettings as by, type FreeTrialPeriod as bz, type PreparePaymentCollectionOptions as c, type WixReceipt as c$, type ShippingRegion as c0, type TaxSummary as c1, type OrderTaxInfo as c2, type OrderTaxBreakdown as c3, type AppliedDiscount as c4, type AppliedDiscountDiscountSourceOneOf as c5, type Coupon as c6, type MerchantDiscount as c7, type MerchantDiscountMerchantDiscountReasonOneOf as c8, type DiscountRule as c9, type TotalPriceChange as cA, type ShippingInformationChange as cB, type ShippingInformation as cC, type SavedPaymentMethod as cD, type AuthorizedPaymentCreated as cE, type AuthorizedPaymentCaptured as cF, type AuthorizedPaymentVoided as cG, type RefundInitiated as cH, type RefundedPayment as cI, type RefundedPaymentKindOneOf as cJ, type RegularPaymentRefund as cK, type GiftCardPaymentRefund as cL, type MembershipPaymentRefund as cM, type PaymentRefunded as cN, type PaymentRefundFailed as cO, type RefundedAsStoreCredit as cP, type PaymentPending as cQ, type PaymentPendingPaymentDetailsOneOf as cR, type RegularPayment as cS, type RegularPaymentPaymentMethodDetailsOneOf as cT, type CreditCardDetails as cU, type PaymentCanceled as cV, type PaymentCanceledPaymentDetailsOneOf as cW, type PaymentDeclined as cX, type PaymentDeclinedPaymentDetailsOneOf as cY, type ReceiptCreated as cZ, type ReceiptCreatedReceiptInfoOneOf as c_, type DiscountRuleName as ca, type LineItemDiscount as cb, type ItemCombination as cc, type ItemCombinationLineItem as cd, type Activity as ce, type ActivityContentOneOf as cf, type CustomActivity as cg, type MerchantComment as ch, type OrderRefunded as ci, type OrderCreatedFromExchange as cj, type NewExchangeOrderCreated as ck, type LineItemExchangeData as cl, type DraftOrderChangesApplied as cm, type OrderChange as cn, type OrderChangeValueOneOf as co, type LineItemChanges as cp, type LineItemQuantityChange as cq, type LineItemPriceChange as cr, type LineItemProductNameChange as cs, type LineItemDescriptionLineChange as ct, type LineItemModifiersChange as cu, type ManagedLineItem as cv, type ManagedDiscount as cw, type TranslatedValue as cx, type LineItemAmount as cy, type ManagedAdditionalFee as cz, type PreparePaymentCollectionResponse as d, type DomainEvent as d$, type ExternalReceipt as d0, type ReceiptSent as d1, type ReceiptSentReceiptInfoOneOf as d2, type ChargebackCreated as d3, type ChargebackReversed as d4, type CreatedBy as d5, type CreatedByStringOneOf as d6, type ChannelInfo as d7, type CustomField as d8, type BalanceSummary as d9, type VersionedDeleteByIdsOperation as dA, type VersionedDocumentId as dB, type OrderApproved as dC, type OrdersExperiments as dD, type OrderRejectedEventOrderRejected as dE, type OrderItemsRestocked as dF, type V1RestockItem as dG, type OrderImported as dH, type ImportedOrderDeleted as dI, type PaymentStatusUpdated as dJ, type FulfillmentStatusUpdated as dK, type OrderCanceledEventOrderCanceled as dL, type OrderDeltasCommitted as dM, type CommittedDiffs as dN, type CommittedDiffsShippingUpdateInfoOneOf as dO, type ItemChangedDetails as dP, type OrderLineItemChangedDetails as dQ, type LineItemDelta as dR, type LineItemDeltaDeltaOneOf as dS, type AppliedDiscountDelta as dT, type AppliedDiscountDeltaDeltaOneOf as dU, type AdditionalFeeDelta as dV, type AdditionalFeeDeltaDeltaOneOf as dW, type DraftOrderCommitSettings as dX, type InventoryUpdateDetails as dY, type TriggerReindexRequest as dZ, type TriggerReindexResponse as d_, type Balance as da, type CashRounding as db, type AdditionalFee as dc, type FulfillmentStatusesAggregate as dd, type Tags as de, type TagList as df, type Location as dg, type OrderSettings as dh, type OrderSettingsAllowedActionsOneOf as di, type OrderSettingsEditableByOneOf as dj, type CustomAllowedActions as dk, type OwnerApps as dl, type FormInfo as dm, type FormIdentifier as dn, type PlatformFeeSummary as dp, type PlatformFee as dq, type UpdateInternalDocumentsEvent as dr, type UpdateInternalDocumentsEventOperationOneOf as ds, type InternalDocument as dt, type InternalDocumentUpdateOperation as du, type DeleteByIdsOperation as dv, type DeleteByFilterOperation as dw, type InternalDocumentUpdateByFilterOperation as dx, type InternalUpdateExistingOperation as dy, type VersionedDocumentUpdateOperation as dz, type PreparePaymentCollectionApplicationErrors as e, type MetaSiteSpecialEvent as e$, type DomainEventBodyOneOf as e0, type EntityCreatedEvent as e1, type RestoreInfo as e2, type EntityUpdatedEvent as e3, type EntityDeletedEvent as e4, type ActionEvent as e5, type Empty as e6, type TriggerReindexOrderRequest as e7, type MessageEnvelope as e8, type IdentificationData as e9, type SendFulfillmentEmailRequest as eA, type SendFulfillmentEmailResponse as eB, type SendMerchantOrderReceivedPushRequest as eC, type SendMerchantOrderReceivedPushResponse as eD, type PreviewEmailByTypeRequest as eE, type PreviewEmailByTypeResponse as eF, type PreviewRefundEmailRequest as eG, type RefundDetails as eH, type RefundItem as eI, type LineItemRefund as eJ, type AdditionalFeeRefund as eK, type ShippingRefund as eL, type PreviewRefundEmailResponse as eM, type PreviewCancelEmailRequest as eN, type PreviewCancelEmailResponse as eO, type PreviewCancelRefundEmailRequest as eP, type PreviewCancelRefundEmailResponse as eQ, type PreviewBuyerPaymentsReceivedEmailRequest as eR, type PreviewBuyerPaymentsReceivedEmailResponse as eS, type PreviewBuyerConfirmationEmailRequest as eT, type PreviewBuyerConfirmationEmailResponse as eU, type PreviewBuyerPickupConfirmationEmailRequest as eV, type PreviewBuyerPickupConfirmationEmailResponse as eW, type PreviewShippingConfirmationEmailRequest as eX, type PreviewShippingConfirmationEmailResponse as eY, type PreviewResendDownloadLinksEmailRequest as eZ, type PreviewResendDownloadLinksEmailResponse as e_, type IdentificationDataIdOneOf as ea, type AccountInfo as eb, type ImportOrderRequest as ec, type SetOrderNumberCounterRequest as ed, type BulkDeleteImportedOrdersRequest as ee, type V1TriggerReindexRequest as ef, type V1TriggerReindexResponse as eg, type V1TriggerReindexOrderRequest as eh, type SendBuyerConfirmationEmailRequest as ei, type SendBuyerConfirmationEmailResponse as ej, type SendBuyerPaymentsReceivedEmailRequest as ek, type SendBuyerPaymentsReceivedEmailResponse as el, type SendBuyerPickupConfirmationEmailRequest as em, type SendBuyerPickupConfirmationEmailResponse as en, type BulkSendBuyerPickupConfirmationEmailsRequest as eo, type BulkSendBuyerPickupConfirmationEmailsResponse as ep, type SendBuyerShippingConfirmationEmailRequest as eq, type SendBuyerShippingConfirmationEmailResponse as er, type BulkSendBuyerShippingConfirmationEmailsRequest as es, type BulkSendBuyerShippingConfirmationEmailsResponse as et, type SendMerchantOrderReceivedNotificationRequest as eu, type SendMerchantOrderReceivedNotificationResponse as ev, type SendCancelRefundEmailRequest as ew, type SendCancelRefundEmailResponse as ex, type SendRefundEmailRequest as ey, type SendRefundEmailResponse as ez, type RecordManuallyCollectedPaymentApplicationErrors as f, type TriggerRefundRequest as f$, type MetaSiteSpecialEventPayloadOneOf as f0, type Asset as f1, type SiteCreated as f2, type SiteTransferred as f3, type SiteDeleted as f4, type DeleteContext as f5, type SiteUndeleted as f6, type SitePublished as f7, type SiteUnpublished as f8, type SiteMarkedAsTemplate as f9, type IsInAutomationMigrationPopulationRequest as fA, type IsInAutomationMigrationPopulationResponse as fB, type PreparePaymentCollectionRequest as fC, type RedirectUrls as fD, type DelayedCaptureSettings as fE, type Duration as fF, type GetPaymentCollectabilityStatusRequest as fG, type RecordManuallyCollectedPaymentRequest as fH, type UserDefinedPaymentMethodName as fI, type UserDefinedPaymentMethodNameKindOneOf as fJ, type RecordManuallyCollectedPaymentResponse as fK, type MarkOrderAsPaidRequest as fL, type BulkMarkOrdersAsPaidRequest as fM, type BulkOrderResult as fN, type ItemMetadata as fO, type ApplicationError as fP, type BulkActionMetadata as fQ, type GetRefundabilityStatusRequest as fR, type Refundability as fS, type RefundabilityAdditionalRefundabilityInfoOneOf as fT, type CreatePaymentGatewayOrderRequest as fU, type ChargedBy as fV, type ChargeMembershipsRequest as fW, type MembershipChargeItem as fX, type MembershipName as fY, type ServiceProperties as fZ, type ChargeMembershipsResponse as f_, type SiteMarkedAsWixSite as fa, type ServiceProvisioned as fb, type ServiceRemoved as fc, type SiteRenamed as fd, type SiteHardDeleted as fe, type NamespaceChanged as ff, type StudioAssigned as fg, type StudioUnassigned as fh, type SiteUrlChanged as fi, type SitePurgedExternally as fj, type OdeditorAssigned as fk, type OdeditorUnassigned as fl, type PicassoAssigned as fm, type PicassoUnassigned as fn, type WixelAssigned as fo, type WixelUnassigned as fp, type StudioTwoAssigned as fq, type StudioTwoUnassigned as fr, type UserDomainMediaEnabled as fs, type UserDomainMediaDisabled as ft, type EditorlessAssigned as fu, type EditorlessUnassigned as fv, type HasCustomEmailConfigurationsRequest as fw, type HasCustomEmailConfigurationsResponse as fx, type AddToAutomationMigrationPopulationRequest as fy, type AddToAutomationMigrationPopulationResponse as fz, type PaymentCollectionMarkOrderAsPaidOptions as g, type CommitDeltasRequest as g$, type RefundSideEffects as g0, type RestockInfo as g1, type RestockItem as g2, type OrderTransactions as g3, type Payment as g4, type PaymentPaymentDetailsOneOf as g5, type PaymentReceiptInfoOneOf as g6, type RegularPaymentDetails as g7, type RegularPaymentDetailsPaymentMethodDetailsOneOf as g8, type CreditCardPaymentMethodDetails as g9, type DiffmatokyPayload as gA, type ErrorInformation as gB, type GetOrderRequest as gC, type GetOrderResponse as gD, type InternalQueryOrdersRequest as gE, type PlatformQuery as gF, type PlatformQueryPagingMethodOneOf as gG, type Sorting as gH, type PlatformPaging as gI, type CursorPaging as gJ, type InternalQueryOrdersResponse as gK, type PlatformPagingMetadata as gL, type Cursors as gM, type QueryOrderRequest as gN, type QueryOrderResponse as gO, type SearchOrdersRequest as gP, type CursorSearch as gQ, type CursorSearchPagingMethodOneOf as gR, type CursorPagingMetadata as gS, type CreateOrderRequest as gT, type OrderCreationSettings as gU, type OrderCreationSettingsEditableByOneOf as gV, type OrderCreateNotifications as gW, type CreateOrderResponse as gX, type UpdateOrderRequest as gY, type UpdateOrderResponse as gZ, type BulkUpdateOrdersRequest as g_, type AuthorizationDetails as ga, type AuthorizationCapture as gb, type AuthorizationActionFailureDetails as gc, type AuthorizationVoid as gd, type V1ScheduledAction as ge, type Chargeback as gf, type PaymentMethodName as gg, type GiftCardPaymentDetails as gh, type MembershipPaymentDetails as gi, type WixReceiptInfo as gj, type ExternalReceiptInfo as gk, type CashRoundingDetails as gl, type Refund as gm, type RefundTransaction as gn, type RefundStatusInfo as go, type AggregatedRefundSummary as gp, type RefundItemsBreakdown as gq, type LineItemRefundSummary as gr, type CalculateRefundRequest as gs, type CalculateRefundItemRequest as gt, type CalculateRefundResponse as gu, type CalculateRefundItemResponse as gv, type VoidAuthorizedPaymentsRequest as gw, type CaptureAuthorizedPaymentsRequest as gx, type ChargeSavedPaymentMethodRequest as gy, type ChargeSavedPaymentMethodResponse as gz, type PaymentCollectionMarkOrderAsPaidApplicationErrors as h, type UpdateLineItemsDescriptionLinesResponse as h$, type DraftOrderDiffs as h0, type DraftOrderDiffsShippingUpdateInfoOneOf as h1, type DraftOrderDiffsBuyerUpdateInfoOneOf as h2, type DraftOrderDiffsBillingUpdateInfoOneOf as h3, type DraftOrderDiffsRecipientUpdateInfoOneOf as h4, type V1LineItemDelta as h5, type V1LineItemDeltaDeltaOneOf as h6, type CommitDeltasResponse as h7, type ArchiveOrderRequest as h8, type ArchiveOrderResponse as h9, type OrderPlaced as hA, type OrderPaid as hB, type OrderFulfilled as hC, type OrderNotFulfilled as hD, type OrderCanceled as hE, type DownloadLinkSent as hF, type TrackingNumberAdded as hG, type TrackingNumberEdited as hH, type TrackingLinkAdded as hI, type ShippingConfirmationEmailSent as hJ, type InvoiceAdded as hK, type InvoiceSent as hL, type FulfillerEmailSent as hM, type ShippingAddressEdited as hN, type EmailEdited as hO, type PickupReadyEmailSent as hP, type OrderPartiallyPaid as hQ, type OrderPending as hR, type OrderRejected as hS, type AddInternalActivityResponse as hT, type AddActivityRequest as hU, type PublicActivityContentOneOf as hV, type AddActivitiesRequest as hW, type UpdateActivityRequest as hX, type DeleteActivityRequest as hY, type UpdateLineItemsDescriptionLinesRequest as hZ, type LineItemUpdate as h_, type BulkArchiveOrdersRequest as ha, type BulkArchiveOrdersResponse as hb, type BulkArchiveOrdersByFilterRequest as hc, type BulkArchiveOrdersByFilterResponse as hd, type UnArchiveOrderRequest as he, type UnArchiveOrderResponse as hf, type BulkUnArchiveOrdersRequest as hg, type BulkUnArchiveOrdersResponse as hh, type BulkUnArchiveOrdersByFilterRequest as hi, type BulkUnArchiveOrdersByFilterResponse as hj, type UpdateBuyerInfoRequest as hk, type BuyerInfoUpdate as hl, type UpdateBuyerInfoResponse as hm, type UpdateBuyerEmailRequest as hn, type UpdateBuyerEmailResponse as ho, type UpdateOrderShippingAddressRequest as hp, type UpdateOrderShippingAddressResponse as hq, type UpdateBillingContactDetailsRequest as hr, type UpdateBillingContactDetailsResponse as hs, type UpdateOrderLineItemRequest as ht, type UpdateOrderLineItemsRequest as hu, type MaskedOrderLineItem as hv, type UpdateOrderLineItemsResponse as hw, type AddInternalActivityRequest as hx, type InternalActivity as hy, type InternalActivityContentOneOf as hz, type BulkMarkOrdersAsPaidResponse as i, type LineItemTax as i$, type MarkOrderAsSeenByHumanRequest as i0, type MarkOrderAsSeenByHumanResponse as i1, type CancelOrderRequest as i2, type UpdateOrderStatusRequest as i3, type MarkAsFulfilledRequest as i4, type MarkAsFulfilledResponse as i5, type BulkMarkAsFulfilledRequest as i6, type BulkMarkAsFulfilledResponse as i7, type BulkMarkAsFulfilledByFilterRequest as i8, type BulkMarkAsFulfilledByFilterResponse as i9, type BulkUpdateOrderTagsResult as iA, type SendOrderUpdatedDomainEventRequest as iB, type SendOrderUpdatedDomainEventResponse as iC, type Task as iD, type TaskKey as iE, type TaskAction as iF, type TaskActionActionOneOf as iG, type Complete as iH, type Cancel as iI, type Reschedule as iJ, type InvoiceSentEvent as iK, type IdAndVersion as iL, type InvoiceFields as iM, type Customer as iN, type Email as iO, type QuotesAddress as iP, type AddressDescription as iQ, type Phone as iR, type Company as iS, type CommonAddress as iT, type CommonAddressStreetOneOf as iU, type Subdivision as iV, type StandardDetails as iW, type InvoiceDates as iX, type LineItems as iY, type LineItem as iZ, type BigDecimalWrapper as i_, type MarkAsUnfulfilledRequest as ia, type MarkAsUnfulfilledResponse as ib, type BulkMarkAsUnfulfilledRequest as ic, type BulkMarkAsUnfulfilledResponse as id, type BulkMarkAsUnfulfilledByFilterRequest as ie, type BulkMarkAsUnfulfilledByFilterResponse as ig, type BulkSetBusinessLocationRequest as ih, type BulkSetBusinessLocationResponse as ii, type BulkSetBusinessLocationResult as ij, type V1MarkOrderAsPaidRequest as ik, type V1MarkOrderAsPaidResponse as il, type V1BulkMarkOrdersAsPaidRequest as im, type V1BulkMarkOrdersAsPaidResponse as io, type V1CreatePaymentGatewayOrderRequest as ip, type V1CreatePaymentGatewayOrderResponse as iq, type GetShipmentsRequest as ir, type GetShipmentsResponse as is, type AggregateOrdersRequest as it, type DecrementItemsQuantityRequest as iu, type DecrementData as iv, type DecrementItemsQuantityResponse as iw, type BulkUpdateOrderTagsRequest as ix, type TagsTags as iy, type TagsTagList as iz, type GetRefundabilityStatusResponse as j, type TransactionStatusWithLiterals as j$, type Source as j0, type LineItemMetaData as j1, type Locale as j2, type TotalPrice as j3, type ItemizedFee as j4, type Discount as j5, type DiscountOneDiscountTypeOneOf as j6, type CalculatedTaxes as j7, type CalculatedTax as j8, type Payments as j9, type LineItemQuantityChangeTypeWithLiterals as jA, type ActivityTypeWithLiterals as jB, type OrderActivityTypeEnumActivityTypeWithLiterals as jC, type AttributionSourceWithLiterals as jD, type ChannelTypeWithLiterals as jE, type AdditionalFeeSourceWithLiterals as jF, type OrderActionTypeWithLiterals as jG, type SpecificItemsCouponBehaviorWithLiterals as jH, type ChargeTypeWithLiterals as jI, type VersioningModeWithLiterals as jJ, type DeltaPaymentOptionTypeWithLiterals as jK, type InventoryActionWithLiterals as jL, type WebhookIdentityTypeWithLiterals as jM, type PreviewEmailTypeWithLiterals as jN, type StateWithLiterals as jO, type SiteCreatedContextWithLiterals as jP, type NamespaceWithLiterals as jQ, type DeleteStatusWithLiterals as jR, type OriginWithLiterals as jS, type ScheduledActionWithLiterals as jT, type DurationUnitWithLiterals as jU, type PaymentCollectabilityStatusWithLiterals as jV, type PredefinedPaymentMethodWithLiterals as jW, type RefundableStatusWithLiterals as jX, type NonRefundableReasonWithLiterals as jY, type ManuallyRefundableReasonWithLiterals as jZ, type RestockTypeWithLiterals as j_, type InvoicesPayment as ja, type MetaData as jb, type InvoiceDynamicPriceTotals as jc, type CustomFieldValue as jd, type Value as je, type Deposit as jf, type BaseEventMetadata as jg, type EventMetadata as jh, type AccountInfoMetadata as ji, type OrderSearchSpec as jj, utils as jk, type DescriptionLineTypeWithLiterals as jl, type DimensionsUnitWithLiterals as jm, type ItemTypePresetWithLiterals as jn, type PaymentOptionTypeWithLiterals as jo, type JurisdictionTypeWithLiterals as jp, type SubscriptionFrequencyWithLiterals as jq, type AdjustmentTypeWithLiterals as jr, type TaxableAddressTypeWithLiterals as js, type PaymentStatusEnumPaymentStatusWithLiterals as jt, type FulfillmentStatusWithLiterals as ju, type WeightUnitWithLiterals as jv, type VatTypeWithLiterals as jw, type PickupMethodWithLiterals as jx, type DiscountTypeWithLiterals as jy, type DiscountReasonWithLiterals as jz, type PaymentCollectionCreatePaymentGatewayOrderOptions as k, type AuthorizationCaptureStatusWithLiterals as k0, type AuthorizationVoidStatusWithLiterals as k1, type ReasonWithLiterals as k2, type ActionTypeWithLiterals as k3, type ChargebackStatusWithLiterals as k4, type MembershipPaymentStatusWithLiterals as k5, type PaymentStatusWithLiterals as k6, type RefundStatusWithLiterals as k7, type SortOrderWithLiterals as k8, type OrderApprovalStrategyWithLiterals as k9, triggerRefund as kA, voidAuthorizedPayments as kB, captureAuthorizedPayments as kC, getOrder as kD, createOrder as kE, updateOrder as kF, bulkUpdateOrders as kG, updateOrderLineItem as kH, addActivity as kI, addActivities as kJ, updateActivity as kK, deleteActivity as kL, cancelOrder as kM, updateOrderStatus as kN, aggregateOrders as kO, bulkUpdateOrderTags as kP, type PlacementWithLiterals as ka, type SubdivisionTypeWithLiterals as kb, type SourceTypeWithLiterals as kc, type CustomFieldGroupWithLiterals as kd, type ValueTypeWithLiterals as ke, type DepositTypeWithLiterals as kf, type InvoiceStatusWithLiterals as kg, type CommonSearchWithEntityContext as kh, onOrderApproved as ki, onOrderCanceled as kj, onOrderCommitted as kk, onOrderCreated as kl, onOrderFulfilled as km, onOrderPaymentStatusUpdated as kn, onOrderUpdated as ko, importOrder as kp, setOrderNumberCounter as kq, bulkDeleteImportedOrders as kr, preparePaymentCollection as ks, getPaymentCollectabilityStatus as kt, recordManuallyCollectedPayment as ku, paymentCollectionMarkOrderAsPaid as kv, paymentCollectionBulkMarkOrdersAsPaid as kw, getRefundabilityStatus as kx, paymentCollectionCreatePaymentGatewayOrder as ky, chargeMemberships as kz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as l, type ChargeMembershipsOptions as m, type PaymentRefund as n, type TriggerRefundResponse as o, type TriggerRefundApplicationErrors as p, type VoidAuthorizedPaymentsApplicationErrors as q, type PaymentCapture as r, type CaptureAuthorizedPaymentsResponse as s, type CaptureAuthorizedPaymentsApplicationErrors as t, type GetOrderApplicationErrors as u, type OrderSearch as v, type SearchOrdersResponse as w, type CreateOrderOptions as x, type CreateOrderApplicationErrors as y, type UpdateOrderApplicationErrors as z };
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { O as Order, I as ImportOrderResponse, a as ImportOrderApplicationErrors, S as SetOrderNumberCounterOptions, b as SetOrderNumberCounterResponse, B as BulkDeleteImportedOrdersResponse, P as Price, c as PreparePaymentCollectionOptions, d as PreparePaymentCollectionResponse, e as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, R as RecordManuallyCollectedPaymentOptions, f as RecordManuallyCollectedPaymentApplicationErrors, g as PaymentCollectionMarkOrderAsPaidOptions, M as MarkOrderAsPaidResponse, h as PaymentCollectionMarkOrderAsPaidApplicationErrors, i as BulkMarkOrdersAsPaidResponse, j as GetRefundabilityStatusResponse, k as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, l as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, m as ChargeMembershipsOptions, n as PaymentRefund, T as TriggerRefundOptions, o as TriggerRefundResponse, p as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, q as VoidAuthorizedPaymentsApplicationErrors, r as PaymentCapture, s as CaptureAuthorizedPaymentsResponse, t as CaptureAuthorizedPaymentsApplicationErrors, u as GetOrderApplicationErrors, v as OrderSearch, w as SearchOrdersResponse, x as CreateOrderOptions, y as CreateOrderApplicationErrors, U as UpdateOrder, z as UpdateOrderApplicationErrors, A as MaskedOrder, D as BulkUpdateOrdersOptions, E as BulkUpdateOrdersResponse, F as UpdateOrderLineItemIdentifiers, H as UpdateOrderLineItem, J as UpdateOrderLineItemResponse, K as PublicActivity, L as AddActivityResponse, N as AddActivitiesOptions, Q as AddActivitiesResponse, W as UpdateActivityIdentifiers, X as UpdateActivityResponse, Y as DeleteActivityIdentifiers, Z as DeleteActivityResponse, _ as CancelOrderOptions, $ as CancelOrderResponse, a0 as CancelOrderApplicationErrors, a1 as OrderStatusWithLiterals, a2 as UpdateOrderStatusResponse, a3 as UpdateOrderStatusApplicationErrors, a4 as AggregateOrdersOptions, a5 as AggregateOrdersResponse, a6 as BulkUpdateOrderTagsOptions, a7 as BulkUpdateOrderTagsResponse, a8 as OrderApprovedEnvelope, a9 as OrderCanceledEnvelope, aa as OrderCommittedEnvelope, ab as OrderCreatedEnvelope, ac as OrderFulfilledEnvelope, ad as OrderPaymentStatusUpdatedEnvelope, ae as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-DBd4Vc1m.js';
3
- export { d$ as AccountInfo, jf as AccountInfoMetadata, dX as ActionEvent, a_ as ActionType, k0 as ActionTypeWithLiterals, ce as Activity, cf as ActivityContentOneOf, aw as ActivityType, jy as ActivityTypeWithLiterals, hT as AddActivitiesRequest, hR as AddActivityRequest, hu as AddInternalActivityRequest, hQ as AddInternalActivityResponse, fv as AddToAutomationMigrationPopulationRequest, fw as AddToAutomationMigrationPopulationResponse, dc as AdditionalFee, dK as AdditionalFeeDelta, dL as AdditionalFeeDeltaDeltaOneOf, eH as AdditionalFeeRefund, aA as AdditionalFeeSource, jC as AdditionalFeeSourceWithLiterals, bQ as Address, iN as AddressDescription, bS as AddressLocation, bP as AddressWithContact, al as AdjustmentType, jo as AdjustmentTypeWithLiterals, iq as AggregateOrdersRequest, gm as AggregatedRefundSummary, fM as ApplicationError, c4 as AppliedDiscount, dI as AppliedDiscountDelta, dJ as AppliedDiscountDeltaDeltaOneOf, c5 as AppliedDiscountDiscountSourceOneOf, h5 as ArchiveOrderRequest, h6 as ArchiveOrderResponse, e_ as Asset, ay as AttributionSource, jA as AttributionSourceWithLiterals, g9 as AuthorizationActionFailureDetails, g8 as AuthorizationCapture, aX as AuthorizationCaptureStatus, jZ as AuthorizationCaptureStatusWithLiterals, g7 as AuthorizationDetails, ga as AuthorizationVoid, aY as AuthorizationVoidStatus, j_ as AuthorizationVoidStatusWithLiterals, cF as AuthorizedPaymentCaptured, cE as AuthorizedPaymentCreated, cG as AuthorizedPaymentVoided, da as Balance, d9 as BalanceSummary, jd as BaseEventMetadata, iX as BigDecimalWrapper, bB as BillingAdjustment, bC as BillingAdjustmentPriceSummary, bA as BillingSettings, fN as BulkActionMetadata, h9 as BulkArchiveOrdersByFilterRequest, ha as BulkArchiveOrdersByFilterResponse, h7 as BulkArchiveOrdersRequest, h8 as BulkArchiveOrdersResponse, dQ as BulkDeleteImportedOrdersRequest, i5 as BulkMarkAsFulfilledByFilterRequest, i6 as BulkMarkAsFulfilledByFilterResponse, i3 as BulkMarkAsFulfilledRequest, i4 as BulkMarkAsFulfilledResponse, ib as BulkMarkAsUnfulfilledByFilterRequest, ic as BulkMarkAsUnfulfilledByFilterResponse, i9 as BulkMarkAsUnfulfilledRequest, ia as BulkMarkAsUnfulfilledResponse, fJ as BulkMarkOrdersAsPaidRequest, fK as BulkOrderResult, el as BulkSendBuyerPickupConfirmationEmailsRequest, em as BulkSendBuyerPickupConfirmationEmailsResponse, ep as BulkSendBuyerShippingConfirmationEmailsRequest, eq as BulkSendBuyerShippingConfirmationEmailsResponse, id as BulkSetBusinessLocationRequest, ie as BulkSetBusinessLocationResponse, ig as BulkSetBusinessLocationResult, hf as BulkUnArchiveOrdersByFilterRequest, hg as BulkUnArchiveOrdersByFilterResponse, hd as BulkUnArchiveOrdersRequest, he as BulkUnArchiveOrdersResponse, iu as BulkUpdateOrderTagsRequest, ix as BulkUpdateOrderTagsResult, gX as BulkUpdateOrdersRequest, bL as BuyerInfo, bM as BuyerInfoIdOneOf, hi as BuyerInfoUpdate, gq as CalculateRefundItemRequest, gs as CalculateRefundItemResponse, gp as CalculateRefundRequest, gr as CalculateRefundResponse, j5 as CalculatedTax, j4 as CalculatedTaxes, iF as Cancel, h$ as CancelOrderRequest, gu as CaptureAuthorizedPaymentsRequest, db as CashRounding, gi as CashRoundingDetails, be as CatalogReference, d7 as ChannelInfo, az as ChannelType, jB as ChannelTypeWithLiterals, fT as ChargeMembershipsRequest, fX as ChargeMembershipsResponse, gv as ChargeSavedPaymentMethodRequest, gw as ChargeSavedPaymentMethodResponse, aD as ChargeType, jF as ChargeTypeWithLiterals, gc as Chargeback, d3 as ChargebackCreated, d4 as ChargebackReversed, a$ as ChargebackStatus, k1 as ChargebackStatusWithLiterals, fS as ChargedBy, bk as Color, gY as CommitDeltasRequest, h4 as CommitDeltasResponse, dC as CommittedDiffs, dD as CommittedDiffsShippingUpdateInfoOneOf, iQ as CommonAddress, iR as CommonAddressStreetOneOf, ke as CommonSearchWithEntityContext, iP as Company, iE as Complete, c6 as Coupon, gQ as CreateOrderRequest, gU as CreateOrderResponse, fR as CreatePaymentGatewayOrderRequest, d5 as CreatedBy, d6 as CreatedByStringOneOf, cU as CreditCardDetails, g6 as CreditCardPaymentMethodDetails, bN as CurrencyConversionDetails, gG as CursorPaging, gP as CursorPagingMetadata, gN as CursorSearch, gO as CursorSearchPagingMethodOneOf, gJ as Cursors, cg as CustomActivity, dk as CustomAllowedActions, d8 as CustomField, b8 as CustomFieldGroup, ka as CustomFieldGroupWithLiterals, ja as CustomFieldValue, iK as Customer, is as DecrementData, ir as DecrementItemsQuantityRequest, it as DecrementItemsQuantityResponse, fB as DelayedCaptureSettings, hV as DeleteActivityRequest, e5 as DeleteByFilterOperation, e4 as DeleteByIdsOperation, f2 as DeleteContext, aM as DeleteStatus, jO as DeleteStatusWithLiterals, bW as DeliveryLogistics, bX as DeliveryLogisticsAddressOneOf, b_ as DeliveryTimeSlot, aE as DeltaPaymentOptionType, jG as DeltaPaymentOptionTypeWithLiterals, jc as Deposit, ba as DepositType, kc as DepositTypeWithLiterals, bf as DescriptionLine, bh as DescriptionLineDescriptionLineValueOneOf, bi as DescriptionLineName, af as DescriptionLineType, ji as DescriptionLineTypeWithLiterals, bg as DescriptionLineValueOneOf, gx as DiffmatokyPayload, bu as DigitalFile, bn as Dimensions, ag as DimensionsUnit, jj as DimensionsUnitWithLiterals, j2 as Discount, j3 as DiscountOneDiscountTypeOneOf, au as DiscountReason, jw as DiscountReasonWithLiterals, c9 as DiscountRule, ca as DiscountRuleName, at as DiscountType, jv as DiscountTypeWithLiterals, dR as DomainEvent, dS as DomainEventBodyOneOf, hC as DownloadLinkSent, cm as DraftOrderChangesApplied, dM as DraftOrderCommitSettings, gZ as DraftOrderDiffs, h0 as DraftOrderDiffsBillingUpdateInfoOneOf, g$ as DraftOrderDiffsBuyerUpdateInfoOneOf, h1 as DraftOrderDiffsRecipientUpdateInfoOneOf, g_ as DraftOrderDiffsShippingUpdateInfoOneOf, fC as Duration, aP as DurationUnit, jR as DurationUnitWithLiterals, fr as EditorlessAssigned, fs as EditorlessUnassigned, iL as Email, hL as EmailEdited, ed as Empty, dT as EntityCreatedEvent, dW as EntityDeletedEvent, dV as EntityUpdatedEvent, gy as ErrorInformation, je as EventMetadata, bH as ExtendedFields, d0 as ExternalReceipt, gh as ExternalReceiptInfo, bl as FocalPoint, dn as FormIdentifier, dm as FormInfo, bz as FreeTrialPeriod, hJ as FulfillerEmailSent, ao as FulfillmentStatus, dz as FulfillmentStatusUpdated, jr as FulfillmentStatusWithLiterals, dd as FulfillmentStatusesAggregate, bT as FullAddressContactDetails, gz as GetOrderRequest, gA as GetOrderResponse, fD as GetPaymentCollectabilityStatusRequest, fO as GetRefundabilityStatusRequest, io as GetShipmentsRequest, ip as GetShipmentsResponse, ge as GiftCardPaymentDetails, cL as GiftCardPaymentRefund, ft as HasCustomEmailConfigurationsRequest, fu as HasCustomEmailConfigurationsResponse, iI as IdAndVersion, dZ as IdentificationData, d_ as IdentificationDataIdOneOf, dO as ImportOrderRequest, dx as ImportedOrderDeleted, hv as InternalActivity, hw as InternalActivityContentOneOf, e2 as InternalDocument, e6 as InternalDocumentUpdateByFilterOperation, e3 as InternalDocumentUpdateOperation, gB as InternalQueryOrdersRequest, gH as InternalQueryOrdersResponse, e7 as InternalUpdateExistingOperation, aF as InventoryAction, jH as InventoryActionWithLiterals, dN as InventoryUpdateDetails, hH as InvoiceAdded, iU as InvoiceDates, j9 as InvoiceDynamicPriceTotals, iJ as InvoiceFields, hI as InvoiceSent, iH as InvoiceSentEvent, bb as InvoiceStatus, kd as InvoiceStatusWithLiterals, j7 as InvoicesPayment, fx as IsInAutomationMigrationPopulationRequest, fy as IsInAutomationMigrationPopulationResponse, dE as ItemChangedDetails, cc as ItemCombination, cd as ItemCombinationLineItem, fL as ItemMetadata, bK as ItemModifier, br as ItemTaxFullDetails, bo as ItemType, bp as ItemTypeItemTypeDataOneOf, ah as ItemTypePreset, jk as ItemTypePresetWithLiterals, j1 as ItemizedFee, aj as JurisdictionType, jm as JurisdictionTypeWithLiterals, iW as LineItem, cy as LineItemAmount, cp as LineItemChanges, dG as LineItemDelta, dH as LineItemDeltaDeltaOneOf, ct as LineItemDescriptionLineChange, cb as LineItemDiscount, cl as LineItemExchangeData, i_ as LineItemMetaData, cu as LineItemModifiersChange, cr as LineItemPriceChange, cs as LineItemProductNameChange, cq as LineItemQuantityChange, av as LineItemQuantityChangeType, jx as LineItemQuantityChangeTypeWithLiterals, eG as LineItemRefund, go as LineItemRefundSummary, iY as LineItemTax, bt as LineItemTaxBreakdown, bs as LineItemTaxInfo, hX as LineItemUpdate, iV as LineItems, i$ as Locale, dg as Location, bE as LocationAndQuantity, cz as ManagedAdditionalFee, cw as ManagedDiscount, cv as ManagedLineItem, aU as ManuallyRefundableReason, jW as ManuallyRefundableReasonWithLiterals, i1 as MarkAsFulfilledRequest, i2 as MarkAsFulfilledResponse, i7 as MarkAsUnfulfilledRequest, i8 as MarkAsUnfulfilledResponse, fI as MarkOrderAsPaidRequest, hZ as MarkOrderAsSeenByHumanRequest, h_ as MarkOrderAsSeenByHumanResponse, hs as MaskedOrderLineItem, fU as MembershipChargeItem, fV as MembershipName, gf as MembershipPaymentDetails, cM as MembershipPaymentRefund, b0 as MembershipPaymentStatus, k2 as MembershipPaymentStatusWithLiterals, ch as MerchantComment, c7 as MerchantDiscount, c8 as MerchantDiscountMerchantDiscountReasonOneOf, dY as MessageEnvelope, j8 as MetaData, eY as MetaSiteSpecialEvent, eZ as MetaSiteSpecialEventPayloadOneOf, bI as ModifierGroup, aL as Namespace, fc as NamespaceChanged, jN as NamespaceWithLiterals, ck as NewExchangeOrderCreated, aT as NonRefundableReason, jV as NonRefundableReasonWithLiterals, fh as OdeditorAssigned, fi as OdeditorUnassigned, aB as OrderActionType, jD as OrderActionTypeWithLiterals, ax as OrderActivityTypeEnumActivityType, jz as OrderActivityTypeEnumActivityTypeWithLiterals, b4 as OrderApprovalStrategy, k6 as OrderApprovalStrategyWithLiterals, dr as OrderApproved, hB as OrderCanceled, dA as OrderCanceledEventOrderCanceled, cn as OrderChange, co as OrderChangeValueOneOf, gT as OrderCreateNotifications, cj as OrderCreatedFromExchange, gR as OrderCreationSettings, gS as OrderCreationSettingsEditableByOneOf, dB as OrderDeltasCommitted, hz as OrderFulfilled, dw as OrderImported, du as OrderItemsRestocked, bc as OrderLineItem, dF as OrderLineItemChangedDetails, hA as OrderNotFulfilled, hy as OrderPaid, hN as OrderPartiallyPaid, hO as OrderPending, hx as OrderPlaced, ci as OrderRefunded, hP as OrderRejected, dt as OrderRejectedEventOrderRejected, jg as OrderSearchSpec, dh as OrderSettings, di as OrderSettingsAllowedActionsOneOf, dj as OrderSettingsEditableByOneOf, as as OrderStatus, c3 as OrderTaxBreakdown, c2 as OrderTaxInfo, g0 as OrderTransactions, ds as OrdersExperiments, aN as Origin, jP as OriginWithLiterals, dl as OwnerApps, g1 as Payment, cV as PaymentCanceled, cW as PaymentCanceledPaymentDetailsOneOf, aQ as PaymentCollectabilityStatus, jS as PaymentCollectabilityStatusWithLiterals, cX as PaymentDeclined, cY as PaymentDeclinedPaymentDetailsOneOf, gd as PaymentMethodName, ai as PaymentOptionType, jl as PaymentOptionTypeWithLiterals, g2 as PaymentPaymentDetailsOneOf, cQ as PaymentPending, cR as PaymentPendingPaymentDetailsOneOf, g3 as PaymentReceiptInfoOneOf, cO as PaymentRefundFailed, cN as PaymentRefunded, b1 as PaymentStatus, an as PaymentStatusEnumPaymentStatus, jq as PaymentStatusEnumPaymentStatusWithLiterals, dy as PaymentStatusUpdated, k3 as PaymentStatusWithLiterals, j6 as Payments, iO as Phone, bm as PhysicalProperties, fj as PicassoAssigned, fk as PicassoUnassigned, bZ as PickupAddress, bY as PickupDetails, ar as PickupMethod, ju as PickupMethodWithLiterals, hM as PickupReadyEmailSent, b5 as Placement, k7 as PlacementWithLiterals, bj as PlainTextValue, dq as PlatformFee, dp as PlatformFeeSummary, gF as PlatformPaging, gI as PlatformPagingMetadata, gC as PlatformQuery, gD as PlatformQueryPagingMethodOneOf, aR as PredefinedPaymentMethod, jT as PredefinedPaymentMethodWithLiterals, fz as PreparePaymentCollectionRequest, eQ as PreviewBuyerConfirmationEmailRequest, eR as PreviewBuyerConfirmationEmailResponse, eO as PreviewBuyerPaymentsReceivedEmailRequest, eP as PreviewBuyerPaymentsReceivedEmailResponse, eS as PreviewBuyerPickupConfirmationEmailRequest, eT as PreviewBuyerPickupConfirmationEmailResponse, eK as PreviewCancelEmailRequest, eL as PreviewCancelEmailResponse, eM as PreviewCancelRefundEmailRequest, eN as PreviewCancelRefundEmailResponse, eB as PreviewEmailByTypeRequest, eC as PreviewEmailByTypeResponse, aI as PreviewEmailType, jK as PreviewEmailTypeWithLiterals, eD as PreviewRefundEmailRequest, eJ as PreviewRefundEmailResponse, eW as PreviewResendDownloadLinksEmailRequest, eX as PreviewResendDownloadLinksEmailResponse, eU as PreviewShippingConfirmationEmailRequest, eV as PreviewShippingConfirmationEmailResponse, bD as PriceDescription, bO as PriceSummary, bd as ProductName, hS as PublicActivityContentOneOf, gK as QueryOrderRequest, gL as QueryOrderResponse, iM as QuotesAddress, aZ as Reason, j$ as ReasonWithLiterals, cZ as ReceiptCreated, c_ as ReceiptCreatedReceiptInfoOneOf, d1 as ReceiptSent, d2 as ReceiptSentReceiptInfoOneOf, fE as RecordManuallyCollectedPaymentRequest, fH as RecordManuallyCollectedPaymentResponse, fA as RedirectUrls, gj as Refund, eE as RefundDetails, cH as RefundInitiated, eF as RefundItem, gn as RefundItemsBreakdown, fZ as RefundSideEffects, b2 as RefundStatus, gl as RefundStatusInfo, k4 as RefundStatusWithLiterals, gk as RefundTransaction, fP as Refundability, fQ as RefundabilityAdditionalRefundabilityInfoOneOf, aS as RefundableStatus, jU as RefundableStatusWithLiterals, cP as RefundedAsStoreCredit, cI as RefundedPayment, cJ as RefundedPaymentKindOneOf, cS as RegularPayment, g4 as RegularPaymentDetails, g5 as RegularPaymentDetailsPaymentMethodDetailsOneOf, cT as RegularPaymentPaymentMethodDetailsOneOf, cK as RegularPaymentRefund, iG as Reschedule, f_ as RestockInfo, f$ as RestockItem, bq as RestockLocation, aV as RestockType, jX as RestockTypeWithLiterals, dU as RestoreInfo, cD as SavedPaymentMethod, aO as ScheduledAction, jQ as ScheduledActionWithLiterals, gM as SearchOrdersRequest, ef as SendBuyerConfirmationEmailRequest, eg as SendBuyerConfirmationEmailResponse, eh as SendBuyerPaymentsReceivedEmailRequest, ei as SendBuyerPaymentsReceivedEmailResponse, ej as SendBuyerPickupConfirmationEmailRequest, ek as SendBuyerPickupConfirmationEmailResponse, en as SendBuyerShippingConfirmationEmailRequest, eo as SendBuyerShippingConfirmationEmailResponse, et as SendCancelRefundEmailRequest, eu as SendCancelRefundEmailResponse, ex as SendFulfillmentEmailRequest, ey as SendFulfillmentEmailResponse, er as SendMerchantOrderReceivedNotificationRequest, es as SendMerchantOrderReceivedNotificationResponse, ez as SendMerchantOrderReceivedPushRequest, eA as SendMerchantOrderReceivedPushResponse, iy as SendOrderUpdatedDomainEventRequest, iz as SendOrderUpdatedDomainEventResponse, ev as SendRefundEmailRequest, ew as SendRefundEmailResponse, fW as ServiceProperties, f8 as ServiceProvisioned, f9 as ServiceRemoved, dP as SetOrderNumberCounterRequest, hK as ShippingAddressEdited, hG as ShippingConfirmationEmailSent, cC as ShippingInformation, cB as ShippingInformationChange, b$ as ShippingPrice, eI as ShippingRefund, c0 as ShippingRegion, e$ as SiteCreated, aK as SiteCreatedContext, jM as SiteCreatedContextWithLiterals, f1 as SiteDeleted, fb as SiteHardDeleted, f6 as SiteMarkedAsTemplate, f7 as SiteMarkedAsWixSite, f4 as SitePublished, fg as SitePurgedExternally, fa as SiteRenamed, f0 as SiteTransferred, f3 as SiteUndeleted, f5 as SiteUnpublished, ff as SiteUrlChanged, b3 as SortOrder, k5 as SortOrderWithLiterals, gE as Sorting, iZ as Source, b7 as SourceType, k9 as SourceTypeWithLiterals, aC as SpecificItemsCouponBehavior, jE as SpecificItemsCouponBehaviorWithLiterals, iT as StandardDetails, aJ as State, jL as StateWithLiterals, bR as StreetAddress, fd as StudioAssigned, fn as StudioTwoAssigned, fo as StudioTwoUnassigned, fe as StudioUnassigned, iS as Subdivision, b6 as SubdivisionType, k8 as SubdivisionTypeWithLiterals, bx as SubscriptionDescription, ak as SubscriptionFrequency, jn as SubscriptionFrequencyWithLiterals, bv as SubscriptionInfo, by as SubscriptionSettings, bw as SubscriptionTitle, df as TagList, de as Tags, iw as TagsTagList, iv as TagsTags, iA as Task, iC as TaskAction, iD as TaskActionActionOneOf, iB as TaskKey, c1 as TaxSummary, bF as TaxableAddress, bG as TaxableAddressTaxableAddressDataOneOf, am as TaxableAddressType, jp as TaxableAddressTypeWithLiterals, j0 as TotalPrice, cA as TotalPriceChange, hF as TrackingLinkAdded, hD as TrackingNumberAdded, hE as TrackingNumberEdited, aW as TransactionStatus, jY as TransactionStatusWithLiterals, bJ as TranslatableString, cx as TranslatedValue, fY as TriggerRefundRequest, ee as TriggerReindexOrderRequest, eb as TriggerReindexRequest, ec as TriggerReindexResponse, hb as UnArchiveOrderRequest, hc as UnArchiveOrderResponse, hU as UpdateActivityRequest, ho as UpdateBillingContactDetailsRequest, hp as UpdateBillingContactDetailsResponse, hk as UpdateBuyerEmailRequest, hl as UpdateBuyerEmailResponse, hh as UpdateBuyerInfoRequest, hj as UpdateBuyerInfoResponse, e0 as UpdateInternalDocumentsEvent, e1 as UpdateInternalDocumentsEventOperationOneOf, hW as UpdateLineItemsDescriptionLinesRequest, hY as UpdateLineItemsDescriptionLinesResponse, hq as UpdateOrderLineItemRequest, hr as UpdateOrderLineItemsRequest, ht as UpdateOrderLineItemsResponse, gV as UpdateOrderRequest, gW as UpdateOrderResponse, hm as UpdateOrderShippingAddressRequest, hn as UpdateOrderShippingAddressResponse, i0 as UpdateOrderStatusRequest, fF as UserDefinedPaymentMethodName, fG as UserDefinedPaymentMethodNameKindOneOf, fq as UserDomainMediaDisabled, fp as UserDomainMediaEnabled, ij as V1BulkMarkOrdersAsPaidRequest, ik as V1BulkMarkOrdersAsPaidResponse, il as V1CreatePaymentGatewayOrderRequest, im as V1CreatePaymentGatewayOrderResponse, h2 as V1LineItemDelta, h3 as V1LineItemDeltaDeltaOneOf, ih as V1MarkOrderAsPaidRequest, ii as V1MarkOrderAsPaidResponse, dv as V1RestockItem, gb as V1ScheduledAction, bV as V1ShippingInformation, jb as Value, b9 as ValueType, kb as ValueTypeWithLiterals, bU as VatId, aq as VatType, jt as VatTypeWithLiterals, e9 as VersionedDeleteByIdsOperation, ea as VersionedDocumentId, e8 as VersionedDocumentUpdateOperation, aH as VersioningMode, jJ as VersioningModeWithLiterals, gt as VoidAuthorizedPaymentsRequest, aG as WebhookIdentityType, jI as WebhookIdentityTypeWithLiterals, ap as WeightUnit, js as WeightUnitWithLiterals, c$ as WixReceipt, gg as WixReceiptInfo, fl as WixelAssigned, fm as WixelUnassigned, jh as utils } from './ecom-v1-order-orders.universal-DBd4Vc1m.js';
2
+ import { O as Order, I as ImportOrderResponse, a as ImportOrderApplicationErrors, S as SetOrderNumberCounterOptions, b as SetOrderNumberCounterResponse, B as BulkDeleteImportedOrdersResponse, P as Price, c as PreparePaymentCollectionOptions, d as PreparePaymentCollectionResponse, e as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, R as RecordManuallyCollectedPaymentOptions, f as RecordManuallyCollectedPaymentApplicationErrors, g as PaymentCollectionMarkOrderAsPaidOptions, M as MarkOrderAsPaidResponse, h as PaymentCollectionMarkOrderAsPaidApplicationErrors, i as BulkMarkOrdersAsPaidResponse, j as GetRefundabilityStatusResponse, k as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, l as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, m as ChargeMembershipsOptions, n as PaymentRefund, T as TriggerRefundOptions, o as TriggerRefundResponse, p as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, q as VoidAuthorizedPaymentsApplicationErrors, r as PaymentCapture, s as CaptureAuthorizedPaymentsResponse, t as CaptureAuthorizedPaymentsApplicationErrors, u as GetOrderApplicationErrors, v as OrderSearch, w as SearchOrdersResponse, x as CreateOrderOptions, y as CreateOrderApplicationErrors, U as UpdateOrder, z as UpdateOrderApplicationErrors, A as MaskedOrder, D as BulkUpdateOrdersOptions, E as BulkUpdateOrdersResponse, F as UpdateOrderLineItemIdentifiers, H as UpdateOrderLineItem, J as UpdateOrderLineItemResponse, K as PublicActivity, L as AddActivityResponse, N as AddActivitiesOptions, Q as AddActivitiesResponse, W as UpdateActivityIdentifiers, X as UpdateActivityResponse, Y as DeleteActivityIdentifiers, Z as DeleteActivityResponse, _ as CancelOrderOptions, $ as CancelOrderResponse, a0 as CancelOrderApplicationErrors, a1 as OrderStatusWithLiterals, a2 as UpdateOrderStatusResponse, a3 as UpdateOrderStatusApplicationErrors, a4 as AggregateOrdersOptions, a5 as AggregateOrdersResponse, a6 as BulkUpdateOrderTagsOptions, a7 as BulkUpdateOrderTagsResponse, a8 as OrderApprovedEnvelope, a9 as OrderCanceledEnvelope, aa as OrderCommittedEnvelope, ab as OrderCreatedEnvelope, ac as OrderFulfilledEnvelope, ad as OrderPaymentStatusUpdatedEnvelope, ae as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-CktXVR3r.js';
3
+ export { eb as AccountInfo, ji as AccountInfoMetadata, e5 as ActionEvent, a_ as ActionType, k3 as ActionTypeWithLiterals, ce as Activity, cf as ActivityContentOneOf, aw as ActivityType, jB as ActivityTypeWithLiterals, hW as AddActivitiesRequest, hU as AddActivityRequest, hx as AddInternalActivityRequest, hT as AddInternalActivityResponse, fy as AddToAutomationMigrationPopulationRequest, fz as AddToAutomationMigrationPopulationResponse, dc as AdditionalFee, dV as AdditionalFeeDelta, dW as AdditionalFeeDeltaDeltaOneOf, eK as AdditionalFeeRefund, aA as AdditionalFeeSource, jF as AdditionalFeeSourceWithLiterals, bQ as Address, iQ as AddressDescription, bS as AddressLocation, bP as AddressWithContact, al as AdjustmentType, jr as AdjustmentTypeWithLiterals, it as AggregateOrdersRequest, gp as AggregatedRefundSummary, fP as ApplicationError, c4 as AppliedDiscount, dT as AppliedDiscountDelta, dU as AppliedDiscountDeltaDeltaOneOf, c5 as AppliedDiscountDiscountSourceOneOf, h8 as ArchiveOrderRequest, h9 as ArchiveOrderResponse, f1 as Asset, ay as AttributionSource, jD as AttributionSourceWithLiterals, gc as AuthorizationActionFailureDetails, gb as AuthorizationCapture, aX as AuthorizationCaptureStatus, k0 as AuthorizationCaptureStatusWithLiterals, ga as AuthorizationDetails, gd as AuthorizationVoid, aY as AuthorizationVoidStatus, k1 as AuthorizationVoidStatusWithLiterals, cF as AuthorizedPaymentCaptured, cE as AuthorizedPaymentCreated, cG as AuthorizedPaymentVoided, da as Balance, d9 as BalanceSummary, jg as BaseEventMetadata, i_ as BigDecimalWrapper, bB as BillingAdjustment, bC as BillingAdjustmentPriceSummary, bA as BillingSettings, fQ as BulkActionMetadata, hc as BulkArchiveOrdersByFilterRequest, hd as BulkArchiveOrdersByFilterResponse, ha as BulkArchiveOrdersRequest, hb as BulkArchiveOrdersResponse, ee as BulkDeleteImportedOrdersRequest, i8 as BulkMarkAsFulfilledByFilterRequest, i9 as BulkMarkAsFulfilledByFilterResponse, i6 as BulkMarkAsFulfilledRequest, i7 as BulkMarkAsFulfilledResponse, ie as BulkMarkAsUnfulfilledByFilterRequest, ig as BulkMarkAsUnfulfilledByFilterResponse, ic as BulkMarkAsUnfulfilledRequest, id as BulkMarkAsUnfulfilledResponse, fM as BulkMarkOrdersAsPaidRequest, fN as BulkOrderResult, eo as BulkSendBuyerPickupConfirmationEmailsRequest, ep as BulkSendBuyerPickupConfirmationEmailsResponse, es as BulkSendBuyerShippingConfirmationEmailsRequest, et as BulkSendBuyerShippingConfirmationEmailsResponse, ih as BulkSetBusinessLocationRequest, ii as BulkSetBusinessLocationResponse, ij as BulkSetBusinessLocationResult, hi as BulkUnArchiveOrdersByFilterRequest, hj as BulkUnArchiveOrdersByFilterResponse, hg as BulkUnArchiveOrdersRequest, hh as BulkUnArchiveOrdersResponse, ix as BulkUpdateOrderTagsRequest, iA as BulkUpdateOrderTagsResult, g_ as BulkUpdateOrdersRequest, bL as BuyerInfo, bM as BuyerInfoIdOneOf, hl as BuyerInfoUpdate, gt as CalculateRefundItemRequest, gv as CalculateRefundItemResponse, gs as CalculateRefundRequest, gu as CalculateRefundResponse, j8 as CalculatedTax, j7 as CalculatedTaxes, iI as Cancel, i2 as CancelOrderRequest, gx as CaptureAuthorizedPaymentsRequest, db as CashRounding, gl as CashRoundingDetails, be as CatalogReference, d7 as ChannelInfo, az as ChannelType, jE as ChannelTypeWithLiterals, fW as ChargeMembershipsRequest, f_ as ChargeMembershipsResponse, gy as ChargeSavedPaymentMethodRequest, gz as ChargeSavedPaymentMethodResponse, aD as ChargeType, jI as ChargeTypeWithLiterals, gf as Chargeback, d3 as ChargebackCreated, d4 as ChargebackReversed, a$ as ChargebackStatus, k4 as ChargebackStatusWithLiterals, fV as ChargedBy, bk as Color, g$ as CommitDeltasRequest, h7 as CommitDeltasResponse, dN as CommittedDiffs, dO as CommittedDiffsShippingUpdateInfoOneOf, iT as CommonAddress, iU as CommonAddressStreetOneOf, kh as CommonSearchWithEntityContext, iS as Company, iH as Complete, c6 as Coupon, gT as CreateOrderRequest, gX as CreateOrderResponse, fU as CreatePaymentGatewayOrderRequest, d5 as CreatedBy, d6 as CreatedByStringOneOf, cU as CreditCardDetails, g9 as CreditCardPaymentMethodDetails, bN as CurrencyConversionDetails, gJ as CursorPaging, gS as CursorPagingMetadata, gQ as CursorSearch, gR as CursorSearchPagingMethodOneOf, gM as Cursors, cg as CustomActivity, dk as CustomAllowedActions, d8 as CustomField, b8 as CustomFieldGroup, kd as CustomFieldGroupWithLiterals, jd as CustomFieldValue, iN as Customer, iv as DecrementData, iu as DecrementItemsQuantityRequest, iw as DecrementItemsQuantityResponse, fE as DelayedCaptureSettings, hY as DeleteActivityRequest, dw as DeleteByFilterOperation, dv as DeleteByIdsOperation, f5 as DeleteContext, aM as DeleteStatus, jR as DeleteStatusWithLiterals, bW as DeliveryLogistics, bX as DeliveryLogisticsAddressOneOf, b_ as DeliveryTimeSlot, aF as DeltaPaymentOptionType, jK as DeltaPaymentOptionTypeWithLiterals, jf as Deposit, ba as DepositType, kf as DepositTypeWithLiterals, bf as DescriptionLine, bh as DescriptionLineDescriptionLineValueOneOf, bi as DescriptionLineName, af as DescriptionLineType, jl as DescriptionLineTypeWithLiterals, bg as DescriptionLineValueOneOf, gA as DiffmatokyPayload, bu as DigitalFile, bn as Dimensions, ag as DimensionsUnit, jm as DimensionsUnitWithLiterals, j5 as Discount, j6 as DiscountOneDiscountTypeOneOf, au as DiscountReason, jz as DiscountReasonWithLiterals, c9 as DiscountRule, ca as DiscountRuleName, at as DiscountType, jy as DiscountTypeWithLiterals, d$ as DomainEvent, e0 as DomainEventBodyOneOf, hF as DownloadLinkSent, cm as DraftOrderChangesApplied, dX as DraftOrderCommitSettings, h0 as DraftOrderDiffs, h3 as DraftOrderDiffsBillingUpdateInfoOneOf, h2 as DraftOrderDiffsBuyerUpdateInfoOneOf, h4 as DraftOrderDiffsRecipientUpdateInfoOneOf, h1 as DraftOrderDiffsShippingUpdateInfoOneOf, fF as Duration, aP as DurationUnit, jU as DurationUnitWithLiterals, fu as EditorlessAssigned, fv as EditorlessUnassigned, iO as Email, hO as EmailEdited, e6 as Empty, e1 as EntityCreatedEvent, e4 as EntityDeletedEvent, e3 as EntityUpdatedEvent, gB as ErrorInformation, jh as EventMetadata, bH as ExtendedFields, d0 as ExternalReceipt, gk as ExternalReceiptInfo, bl as FocalPoint, dn as FormIdentifier, dm as FormInfo, bz as FreeTrialPeriod, hM as FulfillerEmailSent, ao as FulfillmentStatus, dK as FulfillmentStatusUpdated, ju as FulfillmentStatusWithLiterals, dd as FulfillmentStatusesAggregate, bT as FullAddressContactDetails, gC as GetOrderRequest, gD as GetOrderResponse, fG as GetPaymentCollectabilityStatusRequest, fR as GetRefundabilityStatusRequest, ir as GetShipmentsRequest, is as GetShipmentsResponse, gh as GiftCardPaymentDetails, cL as GiftCardPaymentRefund, fw as HasCustomEmailConfigurationsRequest, fx as HasCustomEmailConfigurationsResponse, iL as IdAndVersion, e9 as IdentificationData, ea as IdentificationDataIdOneOf, ec as ImportOrderRequest, dI as ImportedOrderDeleted, hy as InternalActivity, hz as InternalActivityContentOneOf, dt as InternalDocument, dx as InternalDocumentUpdateByFilterOperation, du as InternalDocumentUpdateOperation, gE as InternalQueryOrdersRequest, gK as InternalQueryOrdersResponse, dy as InternalUpdateExistingOperation, aG as InventoryAction, jL as InventoryActionWithLiterals, dY as InventoryUpdateDetails, hK as InvoiceAdded, iX as InvoiceDates, jc as InvoiceDynamicPriceTotals, iM as InvoiceFields, hL as InvoiceSent, iK as InvoiceSentEvent, bb as InvoiceStatus, kg as InvoiceStatusWithLiterals, ja as InvoicesPayment, fA as IsInAutomationMigrationPopulationRequest, fB as IsInAutomationMigrationPopulationResponse, dP as ItemChangedDetails, cc as ItemCombination, cd as ItemCombinationLineItem, fO as ItemMetadata, bK as ItemModifier, br as ItemTaxFullDetails, bo as ItemType, bp as ItemTypeItemTypeDataOneOf, ah as ItemTypePreset, jn as ItemTypePresetWithLiterals, j4 as ItemizedFee, aj as JurisdictionType, jp as JurisdictionTypeWithLiterals, iZ as LineItem, cy as LineItemAmount, cp as LineItemChanges, dR as LineItemDelta, dS as LineItemDeltaDeltaOneOf, ct as LineItemDescriptionLineChange, cb as LineItemDiscount, cl as LineItemExchangeData, j1 as LineItemMetaData, cu as LineItemModifiersChange, cr as LineItemPriceChange, cs as LineItemProductNameChange, cq as LineItemQuantityChange, av as LineItemQuantityChangeType, jA as LineItemQuantityChangeTypeWithLiterals, eJ as LineItemRefund, gr as LineItemRefundSummary, i$ as LineItemTax, bt as LineItemTaxBreakdown, bs as LineItemTaxInfo, h_ as LineItemUpdate, iY as LineItems, j2 as Locale, dg as Location, bE as LocationAndQuantity, cz as ManagedAdditionalFee, cw as ManagedDiscount, cv as ManagedLineItem, aU as ManuallyRefundableReason, jZ as ManuallyRefundableReasonWithLiterals, i4 as MarkAsFulfilledRequest, i5 as MarkAsFulfilledResponse, ia as MarkAsUnfulfilledRequest, ib as MarkAsUnfulfilledResponse, fL as MarkOrderAsPaidRequest, i0 as MarkOrderAsSeenByHumanRequest, i1 as MarkOrderAsSeenByHumanResponse, hv as MaskedOrderLineItem, fX as MembershipChargeItem, fY as MembershipName, gi as MembershipPaymentDetails, cM as MembershipPaymentRefund, b0 as MembershipPaymentStatus, k5 as MembershipPaymentStatusWithLiterals, ch as MerchantComment, c7 as MerchantDiscount, c8 as MerchantDiscountMerchantDiscountReasonOneOf, e8 as MessageEnvelope, jb as MetaData, e$ as MetaSiteSpecialEvent, f0 as MetaSiteSpecialEventPayloadOneOf, bI as ModifierGroup, aL as Namespace, ff as NamespaceChanged, jQ as NamespaceWithLiterals, ck as NewExchangeOrderCreated, aT as NonRefundableReason, jY as NonRefundableReasonWithLiterals, fk as OdeditorAssigned, fl as OdeditorUnassigned, aB as OrderActionType, jG as OrderActionTypeWithLiterals, ax as OrderActivityTypeEnumActivityType, jC as OrderActivityTypeEnumActivityTypeWithLiterals, b4 as OrderApprovalStrategy, k9 as OrderApprovalStrategyWithLiterals, dC as OrderApproved, hE as OrderCanceled, dL as OrderCanceledEventOrderCanceled, cn as OrderChange, co as OrderChangeValueOneOf, gW as OrderCreateNotifications, cj as OrderCreatedFromExchange, gU as OrderCreationSettings, gV as OrderCreationSettingsEditableByOneOf, dM as OrderDeltasCommitted, hC as OrderFulfilled, dH as OrderImported, dF as OrderItemsRestocked, bc as OrderLineItem, dQ as OrderLineItemChangedDetails, hD as OrderNotFulfilled, hB as OrderPaid, hQ as OrderPartiallyPaid, hR as OrderPending, hA as OrderPlaced, ci as OrderRefunded, hS as OrderRejected, dE as OrderRejectedEventOrderRejected, jj as OrderSearchSpec, dh as OrderSettings, di as OrderSettingsAllowedActionsOneOf, dj as OrderSettingsEditableByOneOf, as as OrderStatus, c3 as OrderTaxBreakdown, c2 as OrderTaxInfo, g3 as OrderTransactions, dD as OrdersExperiments, aN as Origin, jS as OriginWithLiterals, dl as OwnerApps, g4 as Payment, cV as PaymentCanceled, cW as PaymentCanceledPaymentDetailsOneOf, aQ as PaymentCollectabilityStatus, jV as PaymentCollectabilityStatusWithLiterals, cX as PaymentDeclined, cY as PaymentDeclinedPaymentDetailsOneOf, gg as PaymentMethodName, ai as PaymentOptionType, jo as PaymentOptionTypeWithLiterals, g5 as PaymentPaymentDetailsOneOf, cQ as PaymentPending, cR as PaymentPendingPaymentDetailsOneOf, g6 as PaymentReceiptInfoOneOf, cO as PaymentRefundFailed, cN as PaymentRefunded, b1 as PaymentStatus, an as PaymentStatusEnumPaymentStatus, jt as PaymentStatusEnumPaymentStatusWithLiterals, dJ as PaymentStatusUpdated, k6 as PaymentStatusWithLiterals, j9 as Payments, iR as Phone, bm as PhysicalProperties, fm as PicassoAssigned, fn as PicassoUnassigned, bZ as PickupAddress, bY as PickupDetails, ar as PickupMethod, jx as PickupMethodWithLiterals, hP as PickupReadyEmailSent, b5 as Placement, ka as PlacementWithLiterals, bj as PlainTextValue, dq as PlatformFee, dp as PlatformFeeSummary, gI as PlatformPaging, gL as PlatformPagingMetadata, gF as PlatformQuery, gG as PlatformQueryPagingMethodOneOf, aR as PredefinedPaymentMethod, jW as PredefinedPaymentMethodWithLiterals, fC as PreparePaymentCollectionRequest, eT as PreviewBuyerConfirmationEmailRequest, eU as PreviewBuyerConfirmationEmailResponse, eR as PreviewBuyerPaymentsReceivedEmailRequest, eS as PreviewBuyerPaymentsReceivedEmailResponse, eV as PreviewBuyerPickupConfirmationEmailRequest, eW as PreviewBuyerPickupConfirmationEmailResponse, eN as PreviewCancelEmailRequest, eO as PreviewCancelEmailResponse, eP as PreviewCancelRefundEmailRequest, eQ as PreviewCancelRefundEmailResponse, eE as PreviewEmailByTypeRequest, eF as PreviewEmailByTypeResponse, aI as PreviewEmailType, jN as PreviewEmailTypeWithLiterals, eG as PreviewRefundEmailRequest, eM as PreviewRefundEmailResponse, eZ as PreviewResendDownloadLinksEmailRequest, e_ as PreviewResendDownloadLinksEmailResponse, eX as PreviewShippingConfirmationEmailRequest, eY as PreviewShippingConfirmationEmailResponse, bD as PriceDescription, bO as PriceSummary, bd as ProductName, hV as PublicActivityContentOneOf, gN as QueryOrderRequest, gO as QueryOrderResponse, iP as QuotesAddress, aZ as Reason, k2 as ReasonWithLiterals, cZ as ReceiptCreated, c_ as ReceiptCreatedReceiptInfoOneOf, d1 as ReceiptSent, d2 as ReceiptSentReceiptInfoOneOf, fH as RecordManuallyCollectedPaymentRequest, fK as RecordManuallyCollectedPaymentResponse, fD as RedirectUrls, gm as Refund, eH as RefundDetails, cH as RefundInitiated, eI as RefundItem, gq as RefundItemsBreakdown, g0 as RefundSideEffects, b2 as RefundStatus, go as RefundStatusInfo, k7 as RefundStatusWithLiterals, gn as RefundTransaction, fS as Refundability, fT as RefundabilityAdditionalRefundabilityInfoOneOf, aS as RefundableStatus, jX as RefundableStatusWithLiterals, cP as RefundedAsStoreCredit, cI as RefundedPayment, cJ as RefundedPaymentKindOneOf, cS as RegularPayment, g7 as RegularPaymentDetails, g8 as RegularPaymentDetailsPaymentMethodDetailsOneOf, cT as RegularPaymentPaymentMethodDetailsOneOf, cK as RegularPaymentRefund, iJ as Reschedule, g1 as RestockInfo, g2 as RestockItem, bq as RestockLocation, aV as RestockType, j_ as RestockTypeWithLiterals, e2 as RestoreInfo, cD as SavedPaymentMethod, aO as ScheduledAction, jT as ScheduledActionWithLiterals, gP as SearchOrdersRequest, ei as SendBuyerConfirmationEmailRequest, ej as SendBuyerConfirmationEmailResponse, ek as SendBuyerPaymentsReceivedEmailRequest, el as SendBuyerPaymentsReceivedEmailResponse, em as SendBuyerPickupConfirmationEmailRequest, en as SendBuyerPickupConfirmationEmailResponse, eq as SendBuyerShippingConfirmationEmailRequest, er as SendBuyerShippingConfirmationEmailResponse, ew as SendCancelRefundEmailRequest, ex as SendCancelRefundEmailResponse, eA as SendFulfillmentEmailRequest, eB as SendFulfillmentEmailResponse, eu as SendMerchantOrderReceivedNotificationRequest, ev as SendMerchantOrderReceivedNotificationResponse, eC as SendMerchantOrderReceivedPushRequest, eD as SendMerchantOrderReceivedPushResponse, iB as SendOrderUpdatedDomainEventRequest, iC as SendOrderUpdatedDomainEventResponse, ey as SendRefundEmailRequest, ez as SendRefundEmailResponse, fZ as ServiceProperties, fb as ServiceProvisioned, fc as ServiceRemoved, ed as SetOrderNumberCounterRequest, hN as ShippingAddressEdited, hJ as ShippingConfirmationEmailSent, cC as ShippingInformation, cB as ShippingInformationChange, b$ as ShippingPrice, eL as ShippingRefund, c0 as ShippingRegion, f2 as SiteCreated, aK as SiteCreatedContext, jP as SiteCreatedContextWithLiterals, f4 as SiteDeleted, fe as SiteHardDeleted, f9 as SiteMarkedAsTemplate, fa as SiteMarkedAsWixSite, f7 as SitePublished, fj as SitePurgedExternally, fd as SiteRenamed, f3 as SiteTransferred, f6 as SiteUndeleted, f8 as SiteUnpublished, fi as SiteUrlChanged, b3 as SortOrder, k8 as SortOrderWithLiterals, gH as Sorting, j0 as Source, b7 as SourceType, kc as SourceTypeWithLiterals, aC as SpecificItemsCouponBehavior, jH as SpecificItemsCouponBehaviorWithLiterals, iW as StandardDetails, aJ as State, jO as StateWithLiterals, bR as StreetAddress, fg as StudioAssigned, fq as StudioTwoAssigned, fr as StudioTwoUnassigned, fh as StudioUnassigned, iV as Subdivision, b6 as SubdivisionType, kb as SubdivisionTypeWithLiterals, bx as SubscriptionDescription, ak as SubscriptionFrequency, jq as SubscriptionFrequencyWithLiterals, bv as SubscriptionInfo, by as SubscriptionSettings, bw as SubscriptionTitle, df as TagList, de as Tags, iz as TagsTagList, iy as TagsTags, iD as Task, iF as TaskAction, iG as TaskActionActionOneOf, iE as TaskKey, c1 as TaxSummary, bF as TaxableAddress, bG as TaxableAddressTaxableAddressDataOneOf, am as TaxableAddressType, js as TaxableAddressTypeWithLiterals, j3 as TotalPrice, cA as TotalPriceChange, hI as TrackingLinkAdded, hG as TrackingNumberAdded, hH as TrackingNumberEdited, aW as TransactionStatus, j$ as TransactionStatusWithLiterals, bJ as TranslatableString, cx as TranslatedValue, f$ as TriggerRefundRequest, e7 as TriggerReindexOrderRequest, dZ as TriggerReindexRequest, d_ as TriggerReindexResponse, he as UnArchiveOrderRequest, hf as UnArchiveOrderResponse, hX as UpdateActivityRequest, hr as UpdateBillingContactDetailsRequest, hs as UpdateBillingContactDetailsResponse, hn as UpdateBuyerEmailRequest, ho as UpdateBuyerEmailResponse, hk as UpdateBuyerInfoRequest, hm as UpdateBuyerInfoResponse, dr as UpdateInternalDocumentsEvent, ds as UpdateInternalDocumentsEventOperationOneOf, hZ as UpdateLineItemsDescriptionLinesRequest, h$ as UpdateLineItemsDescriptionLinesResponse, ht as UpdateOrderLineItemRequest, hu as UpdateOrderLineItemsRequest, hw as UpdateOrderLineItemsResponse, gY as UpdateOrderRequest, gZ as UpdateOrderResponse, hp as UpdateOrderShippingAddressRequest, hq as UpdateOrderShippingAddressResponse, i3 as UpdateOrderStatusRequest, fI as UserDefinedPaymentMethodName, fJ as UserDefinedPaymentMethodNameKindOneOf, ft as UserDomainMediaDisabled, fs as UserDomainMediaEnabled, im as V1BulkMarkOrdersAsPaidRequest, io as V1BulkMarkOrdersAsPaidResponse, ip as V1CreatePaymentGatewayOrderRequest, iq as V1CreatePaymentGatewayOrderResponse, h5 as V1LineItemDelta, h6 as V1LineItemDeltaDeltaOneOf, ik as V1MarkOrderAsPaidRequest, il as V1MarkOrderAsPaidResponse, dG as V1RestockItem, ge as V1ScheduledAction, bV as V1ShippingInformation, eh as V1TriggerReindexOrderRequest, ef as V1TriggerReindexRequest, eg as V1TriggerReindexResponse, je as Value, b9 as ValueType, ke as ValueTypeWithLiterals, bU as VatId, aq as VatType, jw as VatTypeWithLiterals, dA as VersionedDeleteByIdsOperation, dB as VersionedDocumentId, dz as VersionedDocumentUpdateOperation, aE as VersioningMode, jJ as VersioningModeWithLiterals, gw as VoidAuthorizedPaymentsRequest, aH as WebhookIdentityType, jM as WebhookIdentityTypeWithLiterals, ap as WeightUnit, jv as WeightUnitWithLiterals, c$ as WixReceipt, gj as WixReceiptInfo, fo as WixelAssigned, fp as WixelUnassigned, jk as utils } from './ecom-v1-order-orders.universal-CktXVR3r.js';
4
4
 
5
5
  /** @internal */
6
6
  declare function importOrder$1(httpClient: HttpClient): ImportOrderSignature;