@wix/auto_sdk_ecom_orders 1.0.250 → 1.0.252

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-Cm3lFn3U.d.ts → ecom-v1-order-orders.universal-Cc8IUoG2.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-Cm3lFn3U.d.mts → ecom-v1-order-orders.universal-Cc8IUoG2.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-D0oVonoS.d.ts → ecom-v1-order-orders.universal-Cikj7dUx.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-D0oVonoS.d.mts → ecom-v1-order-orders.universal-Cikj7dUx.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, SiteCreatedContext 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, ScheduledAction as aI, DurationUnit as aJ, PaymentCollectabilityStatus as aK, PredefinedPaymentMethod as aL, RefundableStatus as aM, NonRefundableReason as aN, ManuallyRefundableReason as aO, RestockType as aP, TransactionStatus as aQ, AuthorizationCaptureStatus as aR, AuthorizationVoidStatus as aS, Reason as aT, ActionType as aU, ChargebackStatus as aV, MembershipPaymentStatus as aW, PaymentStatus as aX, RefundStatus as aY, PreviewEmailType as aZ, State 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$, Namespace as b0, DeleteStatus as b1, Origin 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 GiftCardPaymentDetails 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 MembershipChargeItem as eA, type MembershipName as eB, type ServiceProperties as eC, type ChargeMembershipsResponse as eD, type TriggerRefundRequest as eE, type RefundDetails as eF, type RefundItem as eG, type LineItemRefund as eH, type AdditionalFeeRefund as eI, type ShippingRefund as eJ, type RefundSideEffects as eK, type RestockInfo as eL, type RestockItem as eM, type OrderTransactions as eN, type Payment as eO, type PaymentPaymentDetailsOneOf as eP, type PaymentReceiptInfoOneOf as eQ, type RegularPaymentDetails as eR, type RegularPaymentDetailsPaymentMethodDetailsOneOf as eS, type CreditCardPaymentMethodDetails as eT, type AuthorizationDetails as eU, type AuthorizationCapture as eV, type AuthorizationActionFailureDetails as eW, type AuthorizationVoid as eX, type V1ScheduledAction as eY, type Chargeback as eZ, type PaymentMethodName as e_, type VersionedDocumentId as ea, type TriggerReindexRequest as eb, type TriggerReindexResponse as ec, type Empty as ed, type TriggerReindexOrderRequest as ee, type PreparePaymentCollectionRequest as ef, type RedirectUrls as eg, type DelayedCaptureSettings as eh, type Duration as ei, type GetPaymentCollectabilityStatusRequest as ej, type RecordManuallyCollectedPaymentRequest as ek, type UserDefinedPaymentMethodName as el, type UserDefinedPaymentMethodNameKindOneOf as em, type RecordManuallyCollectedPaymentResponse as en, type MarkOrderAsPaidRequest as eo, type BulkMarkOrdersAsPaidRequest as ep, type BulkOrderResult as eq, type ItemMetadata as er, type ApplicationError as es, type BulkActionMetadata as et, type GetRefundabilityStatusRequest as eu, type Refundability as ev, type RefundabilityAdditionalRefundabilityInfoOneOf as ew, type CreatePaymentGatewayOrderRequest as ex, type ChargedBy as ey, type ChargeMembershipsRequest as ez, type RecordManuallyCollectedPaymentApplicationErrors as f, type SiteDeleted as f$, type MembershipPaymentDetails as f0, type WixReceiptInfo as f1, type ExternalReceiptInfo as f2, type CashRoundingDetails as f3, type Refund as f4, type RefundTransaction as f5, type RefundStatusInfo as f6, type AggregatedRefundSummary as f7, type RefundItemsBreakdown as f8, type LineItemRefundSummary as f9, type SendFulfillmentEmailRequest as fA, type SendFulfillmentEmailResponse as fB, type SendMerchantOrderReceivedPushRequest as fC, type SendMerchantOrderReceivedPushResponse as fD, type PreviewEmailByTypeRequest as fE, type PreviewEmailByTypeResponse as fF, type PreviewRefundEmailRequest as fG, type PreviewRefundEmailResponse as fH, type PreviewCancelEmailRequest as fI, type PreviewCancelEmailResponse as fJ, type PreviewCancelRefundEmailRequest as fK, type PreviewCancelRefundEmailResponse as fL, type PreviewBuyerPaymentsReceivedEmailRequest as fM, type PreviewBuyerPaymentsReceivedEmailResponse as fN, type PreviewBuyerConfirmationEmailRequest as fO, type PreviewBuyerConfirmationEmailResponse as fP, type PreviewBuyerPickupConfirmationEmailRequest as fQ, type PreviewBuyerPickupConfirmationEmailResponse as fR, type PreviewShippingConfirmationEmailRequest as fS, type PreviewShippingConfirmationEmailResponse as fT, type PreviewResendDownloadLinksEmailRequest as fU, type PreviewResendDownloadLinksEmailResponse as fV, type MetaSiteSpecialEvent as fW, type MetaSiteSpecialEventPayloadOneOf as fX, type Asset as fY, type SiteCreated as fZ, type SiteTransferred as f_, type CalculateRefundRequest as fa, type CalculateRefundItemRequest as fb, type CalculateRefundResponse as fc, type CalculateRefundItemResponse as fd, type VoidAuthorizedPaymentsRequest as fe, type CaptureAuthorizedPaymentsRequest as ff, type ChargeSavedPaymentMethodRequest as fg, type ChargeSavedPaymentMethodResponse as fh, type SendBuyerConfirmationEmailRequest as fi, type SendBuyerConfirmationEmailResponse as fj, type SendBuyerPaymentsReceivedEmailRequest as fk, type SendBuyerPaymentsReceivedEmailResponse as fl, type SendBuyerPickupConfirmationEmailRequest as fm, type SendBuyerPickupConfirmationEmailResponse as fn, type BulkSendBuyerPickupConfirmationEmailsRequest as fo, type BulkSendBuyerPickupConfirmationEmailsResponse as fp, type SendBuyerShippingConfirmationEmailRequest as fq, type SendBuyerShippingConfirmationEmailResponse as fr, type BulkSendBuyerShippingConfirmationEmailsRequest as fs, type BulkSendBuyerShippingConfirmationEmailsResponse as ft, type SendMerchantOrderReceivedNotificationRequest as fu, type SendMerchantOrderReceivedNotificationResponse as fv, type SendCancelRefundEmailRequest as fw, type SendCancelRefundEmailResponse as fx, type SendRefundEmailRequest as fy, type SendRefundEmailResponse as fz, type PaymentCollectionMarkOrderAsPaidOptions as g, type DraftOrderDiffsBuyerUpdateInfoOneOf as g$, type DeleteContext as g0, type SiteUndeleted as g1, type SitePublished as g2, type SiteUnpublished as g3, type SiteMarkedAsTemplate as g4, type SiteMarkedAsWixSite as g5, type ServiceProvisioned as g6, type ServiceRemoved as g7, type SiteRenamed as g8, type SiteHardDeleted 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 NamespaceChanged as ga, type StudioAssigned as gb, type StudioUnassigned as gc, type SiteUrlChanged as gd, type SitePurgedExternally as ge, type OdeditorAssigned as gf, type OdeditorUnassigned as gg, type PicassoAssigned as gh, type PicassoUnassigned as gi, type WixelAssigned as gj, type WixelUnassigned as gk, type StudioTwoAssigned as gl, type StudioTwoUnassigned as gm, type UserDomainMediaEnabled as gn, type UserDomainMediaDisabled as go, type EditorlessAssigned as gp, type EditorlessUnassigned as gq, type HasCustomEmailConfigurationsRequest as gr, type HasCustomEmailConfigurationsResponse as gs, type AddToAutomationMigrationPopulationRequest as gt, type AddToAutomationMigrationPopulationResponse as gu, type IsInAutomationMigrationPopulationRequest as gv, type IsInAutomationMigrationPopulationResponse 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 PreviewEmailTypeWithLiterals 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 ScheduledActionWithLiterals as jK, type DurationUnitWithLiterals as jL, type PaymentCollectabilityStatusWithLiterals as jM, type PredefinedPaymentMethodWithLiterals as jN, type RefundableStatusWithLiterals as jO, type NonRefundableReasonWithLiterals as jP, type ManuallyRefundableReasonWithLiterals as jQ, type RestockTypeWithLiterals as jR, type TransactionStatusWithLiterals as jS, type AuthorizationCaptureStatusWithLiterals as jT, type AuthorizationVoidStatusWithLiterals as jU, type ReasonWithLiterals as jV, type ActionTypeWithLiterals as jW, type ChargebackStatusWithLiterals as jX, type MembershipPaymentStatusWithLiterals as jY, type PaymentStatusWithLiterals as jZ, type RefundStatusWithLiterals 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 StateWithLiterals as k0, type SiteCreatedContextWithLiterals as k1, type NamespaceWithLiterals as k2, type DeleteStatusWithLiterals as k3, type OriginWithLiterals 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, SiteCreatedContext 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, ScheduledAction as aI, DurationUnit as aJ, PaymentCollectabilityStatus as aK, PredefinedPaymentMethod as aL, RefundableStatus as aM, NonRefundableReason as aN, ManuallyRefundableReason as aO, RestockType as aP, TransactionStatus as aQ, AuthorizationCaptureStatus as aR, AuthorizationVoidStatus as aS, Reason as aT, ActionType as aU, ChargebackStatus as aV, MembershipPaymentStatus as aW, PaymentStatus as aX, RefundStatus as aY, PreviewEmailType as aZ, State 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$, Namespace as b0, DeleteStatus as b1, Origin 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 V1ScheduledAction 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 CreatePaymentGatewayOrderRequest as eA, type ChargedBy as eB, type ChargeMembershipsRequest as eC, type MembershipChargeItem as eD, type MembershipName as eE, type ServiceProperties as eF, type ChargeMembershipsResponse as eG, type TriggerRefundRequest as eH, type RefundDetails as eI, type RefundItem as eJ, type LineItemRefund as eK, type AdditionalFeeRefund as eL, type ShippingRefund as eM, type RefundSideEffects as eN, type RestockInfo as eO, type RestockItem as eP, type OrderTransactions as eQ, type Payment as eR, type PaymentPaymentDetailsOneOf as eS, type PaymentReceiptInfoOneOf as eT, type RegularPaymentDetails as eU, type RegularPaymentDetailsPaymentMethodDetailsOneOf as eV, type CreditCardPaymentMethodDetails as eW, type AuthorizationDetails as eX, type AuthorizationCapture as eY, type AuthorizationActionFailureDetails as eZ, type AuthorizationVoid as e_, type 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 PreparePaymentCollectionRequest as ei, type RedirectUrls as ej, type DelayedCaptureSettings as ek, type Duration as el, type GetPaymentCollectabilityStatusRequest as em, type RecordManuallyCollectedPaymentRequest as en, type UserDefinedPaymentMethodName as eo, type UserDefinedPaymentMethodNameKindOneOf as ep, type RecordManuallyCollectedPaymentResponse as eq, type MarkOrderAsPaidRequest as er, type BulkMarkOrdersAsPaidRequest as es, type BulkOrderResult as et, type ItemMetadata as eu, type ApplicationError as ev, type BulkActionMetadata as ew, type GetRefundabilityStatusRequest as ex, type Refundability as ey, type RefundabilityAdditionalRefundabilityInfoOneOf as ez, type RecordManuallyCollectedPaymentApplicationErrors as f, type Asset as f$, type Chargeback as f0, type PaymentMethodName as f1, type GiftCardPaymentDetails as f2, type MembershipPaymentDetails as f3, type WixReceiptInfo as f4, type ExternalReceiptInfo as f5, type CashRoundingDetails as f6, type Refund as f7, type RefundTransaction as f8, type RefundStatusInfo as f9, type SendCancelRefundEmailResponse as fA, type SendRefundEmailRequest as fB, type SendRefundEmailResponse as fC, type SendFulfillmentEmailRequest as fD, type SendFulfillmentEmailResponse as fE, type SendMerchantOrderReceivedPushRequest as fF, type SendMerchantOrderReceivedPushResponse as fG, type PreviewEmailByTypeRequest as fH, type PreviewEmailByTypeResponse as fI, type PreviewRefundEmailRequest as fJ, type PreviewRefundEmailResponse as fK, type PreviewCancelEmailRequest as fL, type PreviewCancelEmailResponse as fM, type PreviewCancelRefundEmailRequest as fN, type PreviewCancelRefundEmailResponse as fO, type PreviewBuyerPaymentsReceivedEmailRequest as fP, type PreviewBuyerPaymentsReceivedEmailResponse as fQ, type PreviewBuyerConfirmationEmailRequest as fR, type PreviewBuyerConfirmationEmailResponse as fS, type PreviewBuyerPickupConfirmationEmailRequest as fT, type PreviewBuyerPickupConfirmationEmailResponse as fU, type PreviewShippingConfirmationEmailRequest as fV, type PreviewShippingConfirmationEmailResponse as fW, type PreviewResendDownloadLinksEmailRequest as fX, type PreviewResendDownloadLinksEmailResponse as fY, type MetaSiteSpecialEvent as fZ, type MetaSiteSpecialEventPayloadOneOf as f_, type AggregatedRefundSummary as fa, type RefundItemsBreakdown as fb, type LineItemRefundSummary as fc, type CalculateRefundRequest as fd, type CalculateRefundItemRequest as fe, type CalculateRefundResponse as ff, type CalculateRefundItemResponse as fg, type VoidAuthorizedPaymentsRequest as fh, type CaptureAuthorizedPaymentsRequest as fi, type ChargeSavedPaymentMethodRequest as fj, type ChargeSavedPaymentMethodResponse as fk, type SendBuyerConfirmationEmailRequest as fl, type SendBuyerConfirmationEmailResponse as fm, type SendBuyerPaymentsReceivedEmailRequest as fn, type SendBuyerPaymentsReceivedEmailResponse as fo, type SendBuyerPickupConfirmationEmailRequest as fp, type SendBuyerPickupConfirmationEmailResponse as fq, type BulkSendBuyerPickupConfirmationEmailsRequest as fr, type BulkSendBuyerPickupConfirmationEmailsResponse as fs, type SendBuyerShippingConfirmationEmailRequest as ft, type SendBuyerShippingConfirmationEmailResponse as fu, type BulkSendBuyerShippingConfirmationEmailsRequest as fv, type BulkSendBuyerShippingConfirmationEmailsResponse as fw, type SendMerchantOrderReceivedNotificationRequest as fx, type SendMerchantOrderReceivedNotificationResponse as fy, type SendCancelRefundEmailRequest as fz, type PaymentCollectionMarkOrderAsPaidOptions as g, type CommitDeltasRequest as g$, type SiteCreated as g0, type SiteTransferred as g1, type SiteDeleted as g2, type DeleteContext as g3, type SiteUndeleted as g4, type SitePublished as g5, type SiteUnpublished as g6, type SiteMarkedAsTemplate as g7, type SiteMarkedAsWixSite as g8, type ServiceProvisioned 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 ServiceRemoved as ga, type SiteRenamed as gb, type SiteHardDeleted as gc, type NamespaceChanged as gd, type StudioAssigned as ge, type StudioUnassigned as gf, type SiteUrlChanged as gg, type SitePurgedExternally as gh, type OdeditorAssigned as gi, type OdeditorUnassigned as gj, type PicassoAssigned as gk, type PicassoUnassigned as gl, type WixelAssigned as gm, type WixelUnassigned as gn, type StudioTwoAssigned as go, type StudioTwoUnassigned as gp, type UserDomainMediaEnabled as gq, type UserDomainMediaDisabled as gr, type EditorlessAssigned as gs, type EditorlessUnassigned as gt, type HasCustomEmailConfigurationsRequest as gu, type HasCustomEmailConfigurationsResponse as gv, type AddToAutomationMigrationPopulationRequest as gw, type AddToAutomationMigrationPopulationResponse as gx, type IsInAutomationMigrationPopulationRequest as gy, type IsInAutomationMigrationPopulationResponse 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 MembershipPaymentStatusWithLiterals 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 ScheduledActionWithLiterals as jN, type DurationUnitWithLiterals as jO, type PaymentCollectabilityStatusWithLiterals as jP, type PredefinedPaymentMethodWithLiterals as jQ, type RefundableStatusWithLiterals as jR, type NonRefundableReasonWithLiterals as jS, type ManuallyRefundableReasonWithLiterals as jT, type RestockTypeWithLiterals as jU, type TransactionStatusWithLiterals as jV, type AuthorizationCaptureStatusWithLiterals as jW, type AuthorizationVoidStatusWithLiterals as jX, type ReasonWithLiterals as jY, type ActionTypeWithLiterals as jZ, type ChargebackStatusWithLiterals 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 PaymentStatusWithLiterals as k0, type RefundStatusWithLiterals as k1, type PreviewEmailTypeWithLiterals as k2, type StateWithLiterals as k3, type SiteCreatedContextWithLiterals as k4, type NamespaceWithLiterals as k5, type DeleteStatusWithLiterals as k6, type OriginWithLiterals 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-D0oVonoS.js';
3
- export { d$ as AccountInfo, jf as AccountInfoMetadata, dX as ActionEvent, aU as ActionType, jW 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, gt as AddToAutomationMigrationPopulationRequest, gu as AddToAutomationMigrationPopulationResponse, dc as AdditionalFee, dK as AdditionalFeeDelta, dL as AdditionalFeeDeltaDeltaOneOf, eI 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, f7 as AggregatedRefundSummary, es as ApplicationError, c4 as AppliedDiscount, dI as AppliedDiscountDelta, dJ as AppliedDiscountDeltaDeltaOneOf, c5 as AppliedDiscountDiscountSourceOneOf, h5 as ArchiveOrderRequest, h6 as ArchiveOrderResponse, fY as Asset, ay as AttributionSource, jA as AttributionSourceWithLiterals, eW as AuthorizationActionFailureDetails, eV as AuthorizationCapture, aR as AuthorizationCaptureStatus, jT as AuthorizationCaptureStatusWithLiterals, eU as AuthorizationDetails, eX as AuthorizationVoid, aS as AuthorizationVoidStatus, jU 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, et 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, ep as BulkMarkOrdersAsPaidRequest, eq as BulkOrderResult, fo as BulkSendBuyerPickupConfirmationEmailsRequest, fp as BulkSendBuyerPickupConfirmationEmailsResponse, fs as BulkSendBuyerShippingConfirmationEmailsRequest, ft 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, fb as CalculateRefundItemRequest, fd as CalculateRefundItemResponse, fa as CalculateRefundRequest, fc as CalculateRefundResponse, j5 as CalculatedTax, j4 as CalculatedTaxes, iF as Cancel, h$ as CancelOrderRequest, ff as CaptureAuthorizedPaymentsRequest, db as CashRounding, f3 as CashRoundingDetails, be as CatalogReference, d7 as ChannelInfo, az as ChannelType, jB as ChannelTypeWithLiterals, ez as ChargeMembershipsRequest, eD as ChargeMembershipsResponse, fg as ChargeSavedPaymentMethodRequest, fh as ChargeSavedPaymentMethodResponse, aD as ChargeType, jF as ChargeTypeWithLiterals, eZ as Chargeback, d3 as ChargebackCreated, d4 as ChargebackReversed, aV as ChargebackStatus, jX as ChargebackStatusWithLiterals, ey 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, ex as CreatePaymentGatewayOrderRequest, d5 as CreatedBy, d6 as CreatedByStringOneOf, cU as CreditCardDetails, eT 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, eh as DelayedCaptureSettings, hV as DeleteActivityRequest, e5 as DeleteByFilterOperation, e4 as DeleteByIdsOperation, g0 as DeleteContext, b1 as DeleteStatus, k3 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, ei as Duration, aJ as DurationUnit, jL as DurationUnitWithLiterals, gp as EditorlessAssigned, gq 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, f2 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, ej as GetPaymentCollectabilityStatusRequest, eu as GetRefundabilityStatusRequest, io as GetShipmentsRequest, ip as GetShipmentsResponse, e$ as GiftCardPaymentDetails, cL as GiftCardPaymentRefund, gr as HasCustomEmailConfigurationsRequest, gs 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, gv as IsInAutomationMigrationPopulationRequest, gw as IsInAutomationMigrationPopulationResponse, dE as ItemChangedDetails, cc as ItemCombination, cd as ItemCombinationLineItem, er 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, eH as LineItemRefund, f9 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, aO as ManuallyRefundableReason, jQ as ManuallyRefundableReasonWithLiterals, i1 as MarkAsFulfilledRequest, i2 as MarkAsFulfilledResponse, i7 as MarkAsUnfulfilledRequest, i8 as MarkAsUnfulfilledResponse, eo as MarkOrderAsPaidRequest, hZ as MarkOrderAsSeenByHumanRequest, h_ as MarkOrderAsSeenByHumanResponse, hs as MaskedOrderLineItem, eA as MembershipChargeItem, eB as MembershipName, f0 as MembershipPaymentDetails, cM as MembershipPaymentRefund, aW as MembershipPaymentStatus, jY as MembershipPaymentStatusWithLiterals, ch as MerchantComment, c7 as MerchantDiscount, c8 as MerchantDiscountMerchantDiscountReasonOneOf, dY as MessageEnvelope, j8 as MetaData, fW as MetaSiteSpecialEvent, fX as MetaSiteSpecialEventPayloadOneOf, bI as ModifierGroup, b0 as Namespace, ga as NamespaceChanged, k2 as NamespaceWithLiterals, ck as NewExchangeOrderCreated, aN as NonRefundableReason, jP as NonRefundableReasonWithLiterals, gf as OdeditorAssigned, gg 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, eN as OrderTransactions, ds as OrdersExperiments, b2 as Origin, k4 as OriginWithLiterals, dl as OwnerApps, eO as Payment, cV as PaymentCanceled, cW as PaymentCanceledPaymentDetailsOneOf, aK as PaymentCollectabilityStatus, jM as PaymentCollectabilityStatusWithLiterals, cX as PaymentDeclined, cY as PaymentDeclinedPaymentDetailsOneOf, e_ as PaymentMethodName, ai as PaymentOptionType, jl as PaymentOptionTypeWithLiterals, eP as PaymentPaymentDetailsOneOf, cQ as PaymentPending, cR as PaymentPendingPaymentDetailsOneOf, eQ as PaymentReceiptInfoOneOf, cO as PaymentRefundFailed, cN as PaymentRefunded, aX as PaymentStatus, an as PaymentStatusEnumPaymentStatus, jq as PaymentStatusEnumPaymentStatusWithLiterals, dy as PaymentStatusUpdated, jZ as PaymentStatusWithLiterals, j6 as Payments, iO as Phone, bm as PhysicalProperties, gh as PicassoAssigned, gi 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, aL as PredefinedPaymentMethod, jN as PredefinedPaymentMethodWithLiterals, ef as PreparePaymentCollectionRequest, fO as PreviewBuyerConfirmationEmailRequest, fP as PreviewBuyerConfirmationEmailResponse, fM as PreviewBuyerPaymentsReceivedEmailRequest, fN as PreviewBuyerPaymentsReceivedEmailResponse, fQ as PreviewBuyerPickupConfirmationEmailRequest, fR as PreviewBuyerPickupConfirmationEmailResponse, fI as PreviewCancelEmailRequest, fJ as PreviewCancelEmailResponse, fK as PreviewCancelRefundEmailRequest, fL as PreviewCancelRefundEmailResponse, fE as PreviewEmailByTypeRequest, fF as PreviewEmailByTypeResponse, aZ as PreviewEmailType, j$ as PreviewEmailTypeWithLiterals, fG as PreviewRefundEmailRequest, fH as PreviewRefundEmailResponse, fU as PreviewResendDownloadLinksEmailRequest, fV as PreviewResendDownloadLinksEmailResponse, fS as PreviewShippingConfirmationEmailRequest, fT as PreviewShippingConfirmationEmailResponse, bD as PriceDescription, bO as PriceSummary, bd as ProductName, hS as PublicActivityContentOneOf, gK as QueryOrderRequest, gL as QueryOrderResponse, iM as QuotesAddress, aT as Reason, jV as ReasonWithLiterals, cZ as ReceiptCreated, c_ as ReceiptCreatedReceiptInfoOneOf, d1 as ReceiptSent, d2 as ReceiptSentReceiptInfoOneOf, ek as RecordManuallyCollectedPaymentRequest, en as RecordManuallyCollectedPaymentResponse, eg as RedirectUrls, f4 as Refund, eF as RefundDetails, cH as RefundInitiated, eG as RefundItem, f8 as RefundItemsBreakdown, eK as RefundSideEffects, aY as RefundStatus, f6 as RefundStatusInfo, j_ as RefundStatusWithLiterals, f5 as RefundTransaction, ev as Refundability, ew as RefundabilityAdditionalRefundabilityInfoOneOf, aM as RefundableStatus, jO as RefundableStatusWithLiterals, cP as RefundedAsStoreCredit, cI as RefundedPayment, cJ as RefundedPaymentKindOneOf, cS as RegularPayment, eR as RegularPaymentDetails, eS as RegularPaymentDetailsPaymentMethodDetailsOneOf, cT as RegularPaymentPaymentMethodDetailsOneOf, cK as RegularPaymentRefund, iG as Reschedule, eL as RestockInfo, eM as RestockItem, bq as RestockLocation, aP as RestockType, jR as RestockTypeWithLiterals, dU as RestoreInfo, cD as SavedPaymentMethod, aI as ScheduledAction, jK as ScheduledActionWithLiterals, gM as SearchOrdersRequest, fi as SendBuyerConfirmationEmailRequest, fj as SendBuyerConfirmationEmailResponse, fk as SendBuyerPaymentsReceivedEmailRequest, fl as SendBuyerPaymentsReceivedEmailResponse, fm as SendBuyerPickupConfirmationEmailRequest, fn as SendBuyerPickupConfirmationEmailResponse, fq as SendBuyerShippingConfirmationEmailRequest, fr as SendBuyerShippingConfirmationEmailResponse, fw as SendCancelRefundEmailRequest, fx as SendCancelRefundEmailResponse, fA as SendFulfillmentEmailRequest, fB as SendFulfillmentEmailResponse, fu as SendMerchantOrderReceivedNotificationRequest, fv as SendMerchantOrderReceivedNotificationResponse, fC as SendMerchantOrderReceivedPushRequest, fD as SendMerchantOrderReceivedPushResponse, iy as SendOrderUpdatedDomainEventRequest, iz as SendOrderUpdatedDomainEventResponse, fy as SendRefundEmailRequest, fz as SendRefundEmailResponse, eC as ServiceProperties, g6 as ServiceProvisioned, g7 as ServiceRemoved, dP as SetOrderNumberCounterRequest, hK as ShippingAddressEdited, hG as ShippingConfirmationEmailSent, cC as ShippingInformation, cB as ShippingInformationChange, b$ as ShippingPrice, eJ as ShippingRefund, c0 as ShippingRegion, fZ as SiteCreated, a$ as SiteCreatedContext, k1 as SiteCreatedContextWithLiterals, f$ as SiteDeleted, g9 as SiteHardDeleted, g4 as SiteMarkedAsTemplate, g5 as SiteMarkedAsWixSite, g2 as SitePublished, ge as SitePurgedExternally, g8 as SiteRenamed, f_ as SiteTransferred, g1 as SiteUndeleted, g3 as SiteUnpublished, gd 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, a_ as State, k0 as StateWithLiterals, bR as StreetAddress, gb as StudioAssigned, gl as StudioTwoAssigned, gm as StudioTwoUnassigned, gc 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, aQ as TransactionStatus, jS as TransactionStatusWithLiterals, bJ as TranslatableString, cx as TranslatedValue, eE 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, el as UserDefinedPaymentMethodName, em as UserDefinedPaymentMethodNameKindOneOf, go as UserDomainMediaDisabled, gn 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, eY 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, fe as VoidAuthorizedPaymentsRequest, aG as WebhookIdentityType, jI as WebhookIdentityTypeWithLiterals, ap as WeightUnit, js as WeightUnitWithLiterals, c$ as WixReceipt, f1 as WixReceiptInfo, gj as WixelAssigned, gk as WixelUnassigned, jh as utils } from './ecom-v1-order-orders.universal-D0oVonoS.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-Cikj7dUx.js';
3
+ export { eb as AccountInfo, ji as AccountInfoMetadata, e5 as ActionEvent, aU as ActionType, jZ 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, gw as AddToAutomationMigrationPopulationRequest, gx as AddToAutomationMigrationPopulationResponse, dc as AdditionalFee, dV as AdditionalFeeDelta, dW as AdditionalFeeDeltaDeltaOneOf, eL 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, fa as AggregatedRefundSummary, ev as ApplicationError, c4 as AppliedDiscount, dT as AppliedDiscountDelta, dU as AppliedDiscountDeltaDeltaOneOf, c5 as AppliedDiscountDiscountSourceOneOf, h8 as ArchiveOrderRequest, h9 as ArchiveOrderResponse, f$ as Asset, ay as AttributionSource, jD as AttributionSourceWithLiterals, eZ as AuthorizationActionFailureDetails, eY as AuthorizationCapture, aR as AuthorizationCaptureStatus, jW as AuthorizationCaptureStatusWithLiterals, eX as AuthorizationDetails, e_ as AuthorizationVoid, aS as AuthorizationVoidStatus, jX 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, ew 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, es as BulkMarkOrdersAsPaidRequest, et as BulkOrderResult, fr as BulkSendBuyerPickupConfirmationEmailsRequest, fs as BulkSendBuyerPickupConfirmationEmailsResponse, fv as BulkSendBuyerShippingConfirmationEmailsRequest, fw 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, fe as CalculateRefundItemRequest, fg as CalculateRefundItemResponse, fd as CalculateRefundRequest, ff as CalculateRefundResponse, j8 as CalculatedTax, j7 as CalculatedTaxes, iI as Cancel, i2 as CancelOrderRequest, fi as CaptureAuthorizedPaymentsRequest, db as CashRounding, f6 as CashRoundingDetails, be as CatalogReference, d7 as ChannelInfo, az as ChannelType, jE as ChannelTypeWithLiterals, eC as ChargeMembershipsRequest, eG as ChargeMembershipsResponse, fj as ChargeSavedPaymentMethodRequest, fk as ChargeSavedPaymentMethodResponse, aD as ChargeType, jI as ChargeTypeWithLiterals, f0 as Chargeback, d3 as ChargebackCreated, d4 as ChargebackReversed, aV as ChargebackStatus, j_ as ChargebackStatusWithLiterals, eB 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, eA as CreatePaymentGatewayOrderRequest, d5 as CreatedBy, d6 as CreatedByStringOneOf, cU as CreditCardDetails, eW 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, ek as DelayedCaptureSettings, hY as DeleteActivityRequest, dw as DeleteByFilterOperation, dv as DeleteByIdsOperation, g3 as DeleteContext, b1 as DeleteStatus, k6 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, el as Duration, aJ as DurationUnit, jO as DurationUnitWithLiterals, gs as EditorlessAssigned, gt 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, f5 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, em as GetPaymentCollectabilityStatusRequest, ex as GetRefundabilityStatusRequest, ir as GetShipmentsRequest, is as GetShipmentsResponse, f2 as GiftCardPaymentDetails, cL as GiftCardPaymentRefund, gu as HasCustomEmailConfigurationsRequest, gv 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, gy as IsInAutomationMigrationPopulationRequest, gz as IsInAutomationMigrationPopulationResponse, dP as ItemChangedDetails, cc as ItemCombination, cd as ItemCombinationLineItem, eu 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, eK as LineItemRefund, fc 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, aO as ManuallyRefundableReason, jT as ManuallyRefundableReasonWithLiterals, i4 as MarkAsFulfilledRequest, i5 as MarkAsFulfilledResponse, ia as MarkAsUnfulfilledRequest, ib as MarkAsUnfulfilledResponse, er as MarkOrderAsPaidRequest, i0 as MarkOrderAsSeenByHumanRequest, i1 as MarkOrderAsSeenByHumanResponse, hv as MaskedOrderLineItem, eD as MembershipChargeItem, eE as MembershipName, f3 as MembershipPaymentDetails, cM as MembershipPaymentRefund, aW as MembershipPaymentStatus, j$ as MembershipPaymentStatusWithLiterals, ch as MerchantComment, c7 as MerchantDiscount, c8 as MerchantDiscountMerchantDiscountReasonOneOf, e8 as MessageEnvelope, jb as MetaData, fZ as MetaSiteSpecialEvent, f_ as MetaSiteSpecialEventPayloadOneOf, bI as ModifierGroup, b0 as Namespace, gd as NamespaceChanged, k5 as NamespaceWithLiterals, ck as NewExchangeOrderCreated, aN as NonRefundableReason, jS as NonRefundableReasonWithLiterals, gi as OdeditorAssigned, gj 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, eQ as OrderTransactions, dD as OrdersExperiments, b2 as Origin, k7 as OriginWithLiterals, dl as OwnerApps, eR as Payment, cV as PaymentCanceled, cW as PaymentCanceledPaymentDetailsOneOf, aK as PaymentCollectabilityStatus, jP as PaymentCollectabilityStatusWithLiterals, cX as PaymentDeclined, cY as PaymentDeclinedPaymentDetailsOneOf, f1 as PaymentMethodName, ai as PaymentOptionType, jo as PaymentOptionTypeWithLiterals, eS as PaymentPaymentDetailsOneOf, cQ as PaymentPending, cR as PaymentPendingPaymentDetailsOneOf, eT as PaymentReceiptInfoOneOf, cO as PaymentRefundFailed, cN as PaymentRefunded, aX as PaymentStatus, an as PaymentStatusEnumPaymentStatus, jt as PaymentStatusEnumPaymentStatusWithLiterals, dJ as PaymentStatusUpdated, k0 as PaymentStatusWithLiterals, j9 as Payments, iR as Phone, bm as PhysicalProperties, gk as PicassoAssigned, gl 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, aL as PredefinedPaymentMethod, jQ as PredefinedPaymentMethodWithLiterals, ei as PreparePaymentCollectionRequest, fR as PreviewBuyerConfirmationEmailRequest, fS as PreviewBuyerConfirmationEmailResponse, fP as PreviewBuyerPaymentsReceivedEmailRequest, fQ as PreviewBuyerPaymentsReceivedEmailResponse, fT as PreviewBuyerPickupConfirmationEmailRequest, fU as PreviewBuyerPickupConfirmationEmailResponse, fL as PreviewCancelEmailRequest, fM as PreviewCancelEmailResponse, fN as PreviewCancelRefundEmailRequest, fO as PreviewCancelRefundEmailResponse, fH as PreviewEmailByTypeRequest, fI as PreviewEmailByTypeResponse, aZ as PreviewEmailType, k2 as PreviewEmailTypeWithLiterals, fJ as PreviewRefundEmailRequest, fK as PreviewRefundEmailResponse, fX as PreviewResendDownloadLinksEmailRequest, fY as PreviewResendDownloadLinksEmailResponse, fV as PreviewShippingConfirmationEmailRequest, fW as PreviewShippingConfirmationEmailResponse, bD as PriceDescription, bO as PriceSummary, bd as ProductName, hV as PublicActivityContentOneOf, gN as QueryOrderRequest, gO as QueryOrderResponse, iP as QuotesAddress, aT as Reason, jY as ReasonWithLiterals, cZ as ReceiptCreated, c_ as ReceiptCreatedReceiptInfoOneOf, d1 as ReceiptSent, d2 as ReceiptSentReceiptInfoOneOf, en as RecordManuallyCollectedPaymentRequest, eq as RecordManuallyCollectedPaymentResponse, ej as RedirectUrls, f7 as Refund, eI as RefundDetails, cH as RefundInitiated, eJ as RefundItem, fb as RefundItemsBreakdown, eN as RefundSideEffects, aY as RefundStatus, f9 as RefundStatusInfo, k1 as RefundStatusWithLiterals, f8 as RefundTransaction, ey as Refundability, ez as RefundabilityAdditionalRefundabilityInfoOneOf, aM as RefundableStatus, jR as RefundableStatusWithLiterals, cP as RefundedAsStoreCredit, cI as RefundedPayment, cJ as RefundedPaymentKindOneOf, cS as RegularPayment, eU as RegularPaymentDetails, eV as RegularPaymentDetailsPaymentMethodDetailsOneOf, cT as RegularPaymentPaymentMethodDetailsOneOf, cK as RegularPaymentRefund, iJ as Reschedule, eO as RestockInfo, eP as RestockItem, bq as RestockLocation, aP as RestockType, jU as RestockTypeWithLiterals, e2 as RestoreInfo, cD as SavedPaymentMethod, aI as ScheduledAction, jN as ScheduledActionWithLiterals, gP as SearchOrdersRequest, fl as SendBuyerConfirmationEmailRequest, fm as SendBuyerConfirmationEmailResponse, fn as SendBuyerPaymentsReceivedEmailRequest, fo as SendBuyerPaymentsReceivedEmailResponse, fp as SendBuyerPickupConfirmationEmailRequest, fq as SendBuyerPickupConfirmationEmailResponse, ft as SendBuyerShippingConfirmationEmailRequest, fu as SendBuyerShippingConfirmationEmailResponse, fz as SendCancelRefundEmailRequest, fA as SendCancelRefundEmailResponse, fD as SendFulfillmentEmailRequest, fE as SendFulfillmentEmailResponse, fx as SendMerchantOrderReceivedNotificationRequest, fy as SendMerchantOrderReceivedNotificationResponse, fF as SendMerchantOrderReceivedPushRequest, fG as SendMerchantOrderReceivedPushResponse, iB as SendOrderUpdatedDomainEventRequest, iC as SendOrderUpdatedDomainEventResponse, fB as SendRefundEmailRequest, fC as SendRefundEmailResponse, eF as ServiceProperties, g9 as ServiceProvisioned, ga as ServiceRemoved, ed as SetOrderNumberCounterRequest, hN as ShippingAddressEdited, hJ as ShippingConfirmationEmailSent, cC as ShippingInformation, cB as ShippingInformationChange, b$ as ShippingPrice, eM as ShippingRefund, c0 as ShippingRegion, g0 as SiteCreated, a$ as SiteCreatedContext, k4 as SiteCreatedContextWithLiterals, g2 as SiteDeleted, gc as SiteHardDeleted, g7 as SiteMarkedAsTemplate, g8 as SiteMarkedAsWixSite, g5 as SitePublished, gh as SitePurgedExternally, gb as SiteRenamed, g1 as SiteTransferred, g4 as SiteUndeleted, g6 as SiteUnpublished, gg 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, a_ as State, k3 as StateWithLiterals, bR as StreetAddress, ge as StudioAssigned, go as StudioTwoAssigned, gp as StudioTwoUnassigned, gf 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, aQ as TransactionStatus, jV as TransactionStatusWithLiterals, bJ as TranslatableString, cx as TranslatedValue, eH 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, eo as UserDefinedPaymentMethodName, ep as UserDefinedPaymentMethodNameKindOneOf, gr as UserDomainMediaDisabled, gq 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, e$ 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, fh as VoidAuthorizedPaymentsRequest, aH as WebhookIdentityType, jM as WebhookIdentityTypeWithLiterals, ap as WeightUnit, jv as WeightUnitWithLiterals, c$ as WixReceipt, f4 as WixReceiptInfo, gm as WixelAssigned, gn as WixelUnassigned, jk as utils } from './ecom-v1-order-orders.universal-Cikj7dUx.js';
4
4
 
5
5
  /** @internal */
6
6
  declare function importOrder$1(httpClient: HttpClient): ImportOrderSignature;