@wix/auto_sdk_ecom_orders 1.0.251 → 1.0.253

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/build/cjs/{ecom-v1-order-orders.universal-Dyxd-jx1.d.ts → ecom-v1-order-orders.universal-D5-HtCQc.d.ts} +189 -168
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +6 -6
  4. package/build/cjs/index.js.map +1 -1
  5. package/build/cjs/index.typings.d.ts +2 -2
  6. package/build/cjs/index.typings.js +6 -6
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +190 -169
  9. package/build/cjs/meta.js +6 -6
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{ecom-v1-order-orders.universal-Dyxd-jx1.d.mts → ecom-v1-order-orders.universal-D5-HtCQc.d.mts} +189 -168
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +6 -6
  14. package/build/es/index.mjs.map +1 -1
  15. package/build/es/index.typings.d.mts +2 -2
  16. package/build/es/index.typings.mjs +6 -6
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +190 -169
  19. package/build/es/meta.mjs +6 -6
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{ecom-v1-order-orders.universal-DBd4Vc1m.d.ts → ecom-v1-order-orders.universal-CktXVR3r.d.ts} +189 -168
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +6 -6
  24. package/build/internal/cjs/index.js.map +1 -1
  25. package/build/internal/cjs/index.typings.d.ts +2 -2
  26. package/build/internal/cjs/index.typings.js +6 -6
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +190 -169
  29. package/build/internal/cjs/meta.js +6 -6
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{ecom-v1-order-orders.universal-DBd4Vc1m.d.mts → ecom-v1-order-orders.universal-CktXVR3r.d.mts} +189 -168
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +6 -6
  34. package/build/internal/es/index.mjs.map +1 -1
  35. package/build/internal/es/index.typings.d.mts +2 -2
  36. package/build/internal/es/index.typings.mjs +6 -6
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +190 -169
  39. package/build/internal/es/meta.mjs +6 -6
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -3081,6 +3081,141 @@ declare enum ChargeType {
3081
3081
  }
3082
3082
  /** @enumType */
3083
3083
  type ChargeTypeWithLiterals = ChargeType | 'PASS_ON' | 'ABSORBED';
3084
+ interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
3085
+ /** insert/update documents */
3086
+ update?: InternalDocumentUpdateOperation;
3087
+ /** delete by document ids */
3088
+ deleteByIds?: DeleteByIdsOperation;
3089
+ /** delete documents matching filter */
3090
+ deleteByFilter?: DeleteByFilterOperation;
3091
+ /** update internal documents matching filter */
3092
+ updateByFilter?: InternalDocumentUpdateByFilterOperation;
3093
+ /** update only existing documents */
3094
+ updateExisting?: InternalUpdateExistingOperation;
3095
+ /** insert/update documents with versioning */
3096
+ versionedUpdate?: VersionedDocumentUpdateOperation;
3097
+ /** delete by document ids with versioning */
3098
+ versionedDeleteByIds?: VersionedDeleteByIdsOperation;
3099
+ /**
3100
+ * type of the documents
3101
+ * @minLength 2
3102
+ */
3103
+ documentType?: string;
3104
+ /**
3105
+ * language of the documents (mandatory)
3106
+ * @minLength 2
3107
+ */
3108
+ language?: string | null;
3109
+ /**
3110
+ * one or more search documents
3111
+ * @deprecated
3112
+ */
3113
+ addDocuments?: InternalDocument[];
3114
+ /**
3115
+ * one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
3116
+ * @deprecated
3117
+ */
3118
+ removeDocumentIds?: string[];
3119
+ /** id to pass to processing notification */
3120
+ correlationId?: string | null;
3121
+ /** when event was created / issued */
3122
+ issuedAt?: Date | null;
3123
+ }
3124
+ /** @oneof */
3125
+ interface UpdateInternalDocumentsEventOperationOneOf {
3126
+ /** insert/update documents */
3127
+ update?: InternalDocumentUpdateOperation;
3128
+ /** delete by document ids */
3129
+ deleteByIds?: DeleteByIdsOperation;
3130
+ /** delete documents matching filter */
3131
+ deleteByFilter?: DeleteByFilterOperation;
3132
+ /** update internal documents matching filter */
3133
+ updateByFilter?: InternalDocumentUpdateByFilterOperation;
3134
+ /** update only existing documents */
3135
+ updateExisting?: InternalUpdateExistingOperation;
3136
+ /** insert/update documents with versioning */
3137
+ versionedUpdate?: VersionedDocumentUpdateOperation;
3138
+ /** delete by document ids with versioning */
3139
+ versionedDeleteByIds?: VersionedDeleteByIdsOperation;
3140
+ }
3141
+ interface InternalDocument {
3142
+ /** document with mandatory fields (id) and with fields specific to the type of the document */
3143
+ document?: Record<string, any> | null;
3144
+ }
3145
+ interface InternalDocumentUpdateOperation {
3146
+ /** documents to index or update */
3147
+ documents?: InternalDocument[];
3148
+ }
3149
+ interface DeleteByIdsOperation {
3150
+ /** ids of the documents to delete */
3151
+ documentIds?: string[];
3152
+ /**
3153
+ * tenant id for custom tenancy strategy
3154
+ * @minLength 2
3155
+ * @maxLength 300
3156
+ */
3157
+ tenantId?: string | null;
3158
+ }
3159
+ interface DeleteByFilterOperation {
3160
+ /** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
3161
+ filter?: Record<string, any> | null;
3162
+ /**
3163
+ * tenant id for custom tenancy strategy
3164
+ * @minLength 2
3165
+ * @maxLength 300
3166
+ */
3167
+ tenantId?: string | null;
3168
+ }
3169
+ interface InternalDocumentUpdateByFilterOperation {
3170
+ /** documents matching this filter will be updated */
3171
+ filter?: Record<string, any> | null;
3172
+ /** partial document to apply */
3173
+ document?: InternalDocument;
3174
+ /**
3175
+ * tenant id for custom tenancy strategy
3176
+ * @minLength 2
3177
+ * @maxLength 300
3178
+ */
3179
+ tenantId?: string | null;
3180
+ }
3181
+ interface InternalUpdateExistingOperation {
3182
+ /** documents to update */
3183
+ documents?: InternalDocument[];
3184
+ }
3185
+ interface VersionedDocumentUpdateOperation {
3186
+ /** documents to create or overwrite */
3187
+ documents?: InternalDocument[];
3188
+ /** versioning mode to use instead of default */
3189
+ versioningMode?: VersioningModeWithLiterals;
3190
+ }
3191
+ declare enum VersioningMode {
3192
+ /** use default versioning mode agreed with search team */
3193
+ DEFAULT = "DEFAULT",
3194
+ /** execute only if version is greater than existing */
3195
+ GREATER_THAN = "GREATER_THAN",
3196
+ /** execute only if version is greater or equal to existing */
3197
+ GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
3198
+ }
3199
+ /** @enumType */
3200
+ type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
3201
+ interface VersionedDeleteByIdsOperation {
3202
+ /** ids with version of the documents to delete */
3203
+ documentIds?: VersionedDocumentId[];
3204
+ /**
3205
+ * tenant id for custom tenancy strategy
3206
+ * @minLength 2
3207
+ * @maxLength 300
3208
+ */
3209
+ tenantId?: string | null;
3210
+ }
3211
+ interface VersionedDocumentId {
3212
+ /** document id */
3213
+ documentId?: string;
3214
+ /** document version */
3215
+ version?: string;
3216
+ /** versioning mode to use instead of default */
3217
+ versioningMode?: VersioningModeWithLiterals;
3218
+ }
3084
3219
  /** Triggered when the order status changes to approved */
3085
3220
  interface OrderApproved {
3086
3221
  /** The order that was updated */
@@ -3382,50 +3517,17 @@ declare enum InventoryAction {
3382
3517
  }
3383
3518
  /** @enumType */
3384
3519
  type InventoryActionWithLiterals = InventoryAction | 'RESTOCK' | 'DECREASE';
3385
- interface ImportOrderRequest {
3386
- /**
3387
- * Order to be imported
3388
- * If order.order_settings.order_type and order.order_settings.custom_order_type not set than VIEW_ONLY will be used
3389
- */
3390
- order: Order;
3391
- }
3392
- interface ImportOrderResponse {
3393
- order?: Order;
3394
- }
3395
- /** Set Order number counter request */
3396
- interface SetOrderNumberCounterRequest {
3397
- /**
3398
- * Order number counter to set.
3399
- * Counter will be used as start of number sequence and used as order number with increment
3400
- * @max 999999999
3401
- */
3402
- counter: string;
3403
- /** Whether to allow setting a lower counter than current value */
3404
- allowLowerCounter?: boolean;
3405
- }
3406
- interface SetOrderNumberCounterResponse {
3407
- /** Order number counter before update */
3408
- oldCounter?: string;
3409
- /** Order number counter after update */
3410
- newCounter?: string;
3411
- }
3412
- /** Bulk Delete Imported Orders Messages */
3413
- interface BulkDeleteImportedOrdersRequest {
3520
+ interface TriggerReindexRequest {
3521
+ /** @format GUID */
3522
+ metasiteId?: string;
3414
3523
  /**
3415
- * List of order ids to be deleted.
3416
- * Only orders imported via ImportOrders API can be deleted.
3417
- * @format GUID
3418
- * @minSize 1
3419
- * @maxSize 1000
3524
+ * @minLength 1
3525
+ * @maxLength 100
3526
+ * @maxSize 100
3420
3527
  */
3421
- orderIds: string[];
3528
+ orderIds?: string[];
3422
3529
  }
3423
- interface BulkDeleteImportedOrdersResponse {
3424
- /**
3425
- * 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
3426
- * @format GUID
3427
- */
3428
- jobId?: string;
3530
+ interface TriggerReindexResponse {
3429
3531
  }
3430
3532
  interface DomainEvent extends DomainEventBodyOneOf {
3431
3533
  createdEvent?: EntityCreatedEvent;
@@ -3489,6 +3591,17 @@ interface EntityDeletedEvent {
3489
3591
  interface ActionEvent {
3490
3592
  body?: string;
3491
3593
  }
3594
+ interface Empty {
3595
+ }
3596
+ interface TriggerReindexOrderRequest {
3597
+ /** @format GUID */
3598
+ metasiteId?: string;
3599
+ /**
3600
+ * @minLength 1
3601
+ * @maxLength 100
3602
+ */
3603
+ orderId?: string;
3604
+ }
3492
3605
  interface MessageEnvelope {
3493
3606
  /**
3494
3607
  * App instance ID.
@@ -3580,142 +3693,52 @@ interface AccountInfo {
3580
3693
  */
3581
3694
  siteId?: string | null;
3582
3695
  }
3583
- interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
3584
- /** insert/update documents */
3585
- update?: InternalDocumentUpdateOperation;
3586
- /** delete by document ids */
3587
- deleteByIds?: DeleteByIdsOperation;
3588
- /** delete documents matching filter */
3589
- deleteByFilter?: DeleteByFilterOperation;
3590
- /** update internal documents matching filter */
3591
- updateByFilter?: InternalDocumentUpdateByFilterOperation;
3592
- /** update only existing documents */
3593
- updateExisting?: InternalUpdateExistingOperation;
3594
- /** insert/update documents with versioning */
3595
- versionedUpdate?: VersionedDocumentUpdateOperation;
3596
- /** delete by document ids with versioning */
3597
- versionedDeleteByIds?: VersionedDeleteByIdsOperation;
3598
- /**
3599
- * type of the documents
3600
- * @minLength 2
3601
- */
3602
- documentType?: string;
3603
- /**
3604
- * language of the documents (mandatory)
3605
- * @minLength 2
3606
- */
3607
- language?: string | null;
3608
- /**
3609
- * one or more search documents
3610
- * @deprecated
3611
- */
3612
- addDocuments?: InternalDocument[];
3696
+ interface ImportOrderRequest {
3613
3697
  /**
3614
- * one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
3615
- * @deprecated
3698
+ * Order to be imported
3699
+ * If order.order_settings.order_type and order.order_settings.custom_order_type not set than VIEW_ONLY will be used
3616
3700
  */
3617
- removeDocumentIds?: string[];
3618
- /** id to pass to processing notification */
3619
- correlationId?: string | null;
3620
- /** when event was created / issued */
3621
- issuedAt?: Date | null;
3622
- }
3623
- /** @oneof */
3624
- interface UpdateInternalDocumentsEventOperationOneOf {
3625
- /** insert/update documents */
3626
- update?: InternalDocumentUpdateOperation;
3627
- /** delete by document ids */
3628
- deleteByIds?: DeleteByIdsOperation;
3629
- /** delete documents matching filter */
3630
- deleteByFilter?: DeleteByFilterOperation;
3631
- /** update internal documents matching filter */
3632
- updateByFilter?: InternalDocumentUpdateByFilterOperation;
3633
- /** update only existing documents */
3634
- updateExisting?: InternalUpdateExistingOperation;
3635
- /** insert/update documents with versioning */
3636
- versionedUpdate?: VersionedDocumentUpdateOperation;
3637
- /** delete by document ids with versioning */
3638
- versionedDeleteByIds?: VersionedDeleteByIdsOperation;
3639
- }
3640
- interface InternalDocument {
3641
- /** document with mandatory fields (id) and with fields specific to the type of the document */
3642
- document?: Record<string, any> | null;
3701
+ order: Order;
3643
3702
  }
3644
- interface InternalDocumentUpdateOperation {
3645
- /** documents to index or update */
3646
- documents?: InternalDocument[];
3703
+ interface ImportOrderResponse {
3704
+ order?: Order;
3647
3705
  }
3648
- interface DeleteByIdsOperation {
3649
- /** ids of the documents to delete */
3650
- documentIds?: string[];
3706
+ /** Set Order number counter request */
3707
+ interface SetOrderNumberCounterRequest {
3651
3708
  /**
3652
- * tenant id for custom tenancy strategy
3653
- * @minLength 2
3654
- * @maxLength 300
3709
+ * Order number counter to set.
3710
+ * Counter will be used as start of number sequence and used as order number with increment
3711
+ * @max 999999999
3655
3712
  */
3656
- tenantId?: string | null;
3713
+ counter: string;
3714
+ /** Whether to allow setting a lower counter than current value */
3715
+ allowLowerCounter?: boolean;
3657
3716
  }
3658
- interface DeleteByFilterOperation {
3659
- /** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
3660
- filter?: Record<string, any> | null;
3661
- /**
3662
- * tenant id for custom tenancy strategy
3663
- * @minLength 2
3664
- * @maxLength 300
3665
- */
3666
- tenantId?: string | null;
3717
+ interface SetOrderNumberCounterResponse {
3718
+ /** Order number counter before update */
3719
+ oldCounter?: string;
3720
+ /** Order number counter after update */
3721
+ newCounter?: string;
3667
3722
  }
3668
- interface InternalDocumentUpdateByFilterOperation {
3669
- /** documents matching this filter will be updated */
3670
- filter?: Record<string, any> | null;
3671
- /** partial document to apply */
3672
- document?: InternalDocument;
3723
+ /** Bulk Delete Imported Orders Messages */
3724
+ interface BulkDeleteImportedOrdersRequest {
3673
3725
  /**
3674
- * tenant id for custom tenancy strategy
3675
- * @minLength 2
3676
- * @maxLength 300
3726
+ * List of order ids to be deleted.
3727
+ * Only orders imported via ImportOrders API can be deleted.
3728
+ * @format GUID
3729
+ * @minSize 1
3730
+ * @maxSize 1000
3677
3731
  */
3678
- tenantId?: string | null;
3679
- }
3680
- interface InternalUpdateExistingOperation {
3681
- /** documents to update */
3682
- documents?: InternalDocument[];
3683
- }
3684
- interface VersionedDocumentUpdateOperation {
3685
- /** documents to create or overwrite */
3686
- documents?: InternalDocument[];
3687
- /** versioning mode to use instead of default */
3688
- versioningMode?: VersioningModeWithLiterals;
3689
- }
3690
- declare enum VersioningMode {
3691
- /** use default versioning mode agreed with search team */
3692
- DEFAULT = "DEFAULT",
3693
- /** execute only if version is greater than existing */
3694
- GREATER_THAN = "GREATER_THAN",
3695
- /** execute only if version is greater or equal to existing */
3696
- GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
3732
+ orderIds: string[];
3697
3733
  }
3698
- /** @enumType */
3699
- type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
3700
- interface VersionedDeleteByIdsOperation {
3701
- /** ids with version of the documents to delete */
3702
- documentIds?: VersionedDocumentId[];
3734
+ interface BulkDeleteImportedOrdersResponse {
3703
3735
  /**
3704
- * tenant id for custom tenancy strategy
3705
- * @minLength 2
3706
- * @maxLength 300
3736
+ * 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
3737
+ * @format GUID
3707
3738
  */
3708
- tenantId?: string | null;
3709
- }
3710
- interface VersionedDocumentId {
3711
- /** document id */
3712
- documentId?: string;
3713
- /** document version */
3714
- version?: string;
3715
- /** versioning mode to use instead of default */
3716
- versioningMode?: VersioningModeWithLiterals;
3739
+ jobId?: string;
3717
3740
  }
3718
- interface TriggerReindexRequest {
3741
+ interface V1TriggerReindexRequest {
3719
3742
  /** @format GUID */
3720
3743
  metasiteId?: string;
3721
3744
  /**
@@ -3725,11 +3748,9 @@ interface TriggerReindexRequest {
3725
3748
  */
3726
3749
  orderIds?: string[];
3727
3750
  }
3728
- interface TriggerReindexResponse {
3751
+ interface V1TriggerReindexResponse {
3729
3752
  }
3730
- interface Empty {
3731
- }
3732
- interface TriggerReindexOrderRequest {
3753
+ interface V1TriggerReindexOrderRequest {
3733
3754
  /** @format GUID */
3734
3755
  metasiteId?: string;
3735
3756
  /**
@@ -8740,4 +8761,4 @@ interface BulkUpdateOrderTagsOptions {
8740
8761
  unassignTags?: TagsTags;
8741
8762
  }
8742
8763
 
8743
- export { OrderActivityTypeEnumActivityType as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PaymentOptionType as E, SubscriptionFrequency as F, type GetPaymentCollectabilityStatusResponse as G, AdjustmentType as H, ItemTypePreset as I, JurisdictionType as J, PaymentStatusEnumPaymentStatus as K, FulfillmentStatus as L, type MaskedOrder as M, VatType as N, type Order as O, type Price as P, PickupMethod as Q, OrderStatus as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, DiscountType as X, DiscountReason as Y, LineItemQuantityChangeType as Z, ActivityType as _, type PreparePaymentCollectionOptions as a, type SubscriptionDescription as a$, AttributionSource as a0, ChannelType as a1, AdditionalFeeSource as a2, OrderActionType as a3, SpecificItemsCouponBehavior as a4, ChargeType as a5, DeltaPaymentOptionType as a6, InventoryAction as a7, WebhookIdentityType as a8, VersioningMode as a9, SubdivisionType as aA, SourceType as aB, CustomFieldGroup as aC, ValueType as aD, DepositType as aE, InvoiceStatus as aF, type OrderLineItem as aG, type ProductName as aH, type CatalogReference as aI, type DescriptionLine as aJ, type DescriptionLineValueOneOf as aK, type DescriptionLineDescriptionLineValueOneOf as aL, type DescriptionLineName as aM, type PlainTextValue as aN, type Color as aO, type FocalPoint as aP, type PhysicalProperties as aQ, type Dimensions as aR, type ItemType as aS, type ItemTypeItemTypeDataOneOf as aT, type RestockLocation as aU, type ItemTaxFullDetails as aV, type LineItemTaxInfo as aW, type LineItemTaxBreakdown as aX, type DigitalFile as aY, type SubscriptionInfo as aZ, type SubscriptionTitle as a_, PreviewEmailType as aa, State as ab, SiteCreatedContext as ac, Namespace as ad, DeleteStatus as ae, Origin as af, ScheduledAction as ag, DurationUnit as ah, PaymentCollectabilityStatus as ai, PredefinedPaymentMethod as aj, RefundableStatus as ak, NonRefundableReason as al, ManuallyRefundableReason as am, RestockType as an, TransactionStatus as ao, AuthorizationCaptureStatus as ap, AuthorizationVoidStatus as aq, Reason as ar, ActionType as as, ChargebackStatus as at, MembershipPaymentStatus as au, PaymentStatus as av, RefundStatus as aw, SortOrder as ax, OrderApprovalStrategy as ay, Placement as az, type PreparePaymentCollectionResponse as b, type TranslatedValue as b$, type SubscriptionSettings as b0, type FreeTrialPeriod as b1, type BillingSettings as b2, type BillingAdjustment as b3, type BillingAdjustmentPriceSummary as b4, type PriceDescription as b5, type LocationAndQuantity as b6, type TaxableAddress as b7, type TaxableAddressTaxableAddressDataOneOf as b8, type ExtendedFields as b9, type Coupon as bA, type MerchantDiscount as bB, type MerchantDiscountMerchantDiscountReasonOneOf as bC, type DiscountRule as bD, type DiscountRuleName as bE, type LineItemDiscount as bF, type ItemCombination as bG, type ItemCombinationLineItem as bH, type Activity as bI, type ActivityContentOneOf as bJ, type CustomActivity as bK, type MerchantComment as bL, type OrderRefunded as bM, type OrderCreatedFromExchange as bN, type NewExchangeOrderCreated as bO, type LineItemExchangeData as bP, type DraftOrderChangesApplied as bQ, type OrderChange as bR, type OrderChangeValueOneOf as bS, type LineItemChanges as bT, type LineItemQuantityChange as bU, type LineItemPriceChange as bV, type LineItemProductNameChange as bW, type LineItemDescriptionLineChange as bX, type LineItemModifiersChange as bY, type ManagedLineItem as bZ, type ManagedDiscount as b_, type ModifierGroup as ba, type TranslatableString as bb, type ItemModifier as bc, type BuyerInfo as bd, type BuyerInfoIdOneOf as be, type CurrencyConversionDetails as bf, type PriceSummary as bg, type AddressWithContact as bh, type Address as bi, type StreetAddress as bj, type AddressLocation as bk, type FullAddressContactDetails as bl, type VatId as bm, type V1ShippingInformation as bn, type DeliveryLogistics as bo, type DeliveryLogisticsAddressOneOf as bp, type PickupDetails as bq, type PickupAddress as br, type DeliveryTimeSlot as bs, type ShippingPrice as bt, type ShippingRegion as bu, type TaxSummary as bv, type OrderTaxInfo as bw, type OrderTaxBreakdown as bx, type AppliedDiscount as by, type AppliedDiscountDiscountSourceOneOf as bz, type PreparePaymentCollectionApplicationErrors as c, type PaymentStatusUpdated as c$, type LineItemAmount as c0, type ManagedAdditionalFee as c1, type TotalPriceChange as c2, type ShippingInformationChange as c3, type ShippingInformation as c4, type SavedPaymentMethod as c5, type AuthorizedPaymentCreated as c6, type AuthorizedPaymentCaptured as c7, type AuthorizedPaymentVoided as c8, type RefundInitiated as c9, type CreatedByStringOneOf as cA, type ChannelInfo as cB, type CustomField as cC, type BalanceSummary as cD, type Balance as cE, type CashRounding as cF, type AdditionalFee as cG, type FulfillmentStatusesAggregate as cH, type Tags as cI, type TagList as cJ, type Location as cK, type OrderSettings as cL, type OrderSettingsAllowedActionsOneOf as cM, type OrderSettingsEditableByOneOf as cN, type CustomAllowedActions as cO, type OwnerApps as cP, type FormInfo as cQ, type FormIdentifier as cR, type PlatformFeeSummary as cS, type PlatformFee as cT, type OrderApproved as cU, type OrdersExperiments as cV, type OrderRejectedEventOrderRejected as cW, type OrderItemsRestocked as cX, type V1RestockItem as cY, type OrderImported as cZ, type ImportedOrderDeleted as c_, type RefundedPayment as ca, type RefundedPaymentKindOneOf as cb, type RegularPaymentRefund as cc, type GiftCardPaymentRefund as cd, type MembershipPaymentRefund as ce, type PaymentRefunded as cf, type PaymentRefundFailed as cg, type RefundedAsStoreCredit as ch, type PaymentPending as ci, type PaymentPendingPaymentDetailsOneOf as cj, type RegularPayment as ck, type RegularPaymentPaymentMethodDetailsOneOf as cl, type CreditCardDetails as cm, type PaymentCanceled as cn, type PaymentCanceledPaymentDetailsOneOf as co, type PaymentDeclined as cp, type PaymentDeclinedPaymentDetailsOneOf as cq, type ReceiptCreated as cr, type ReceiptCreatedReceiptInfoOneOf as cs, type WixReceipt as ct, type ExternalReceipt as cu, type ReceiptSent as cv, type ReceiptSentReceiptInfoOneOf as cw, type ChargebackCreated as cx, type ChargebackReversed as cy, type CreatedBy as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type SendCancelRefundEmailResponse as d$, type FulfillmentStatusUpdated as d0, type OrderCanceledEventOrderCanceled as d1, type OrderDeltasCommitted as d2, type CommittedDiffs as d3, type CommittedDiffsShippingUpdateInfoOneOf as d4, type ItemChangedDetails as d5, type OrderLineItemChangedDetails as d6, type LineItemDelta as d7, type LineItemDeltaDeltaOneOf as d8, type AppliedDiscountDelta as d9, type InternalDocumentUpdateOperation as dA, type DeleteByIdsOperation as dB, type DeleteByFilterOperation as dC, type InternalDocumentUpdateByFilterOperation as dD, type InternalUpdateExistingOperation as dE, type VersionedDocumentUpdateOperation as dF, type VersionedDeleteByIdsOperation as dG, type VersionedDocumentId as dH, type TriggerReindexRequest as dI, type TriggerReindexResponse as dJ, type Empty as dK, type TriggerReindexOrderRequest as dL, type SendBuyerConfirmationEmailRequest as dM, type SendBuyerConfirmationEmailResponse as dN, type SendBuyerPaymentsReceivedEmailRequest as dO, type SendBuyerPaymentsReceivedEmailResponse as dP, type SendBuyerPickupConfirmationEmailRequest as dQ, type SendBuyerPickupConfirmationEmailResponse as dR, type BulkSendBuyerPickupConfirmationEmailsRequest as dS, type BulkSendBuyerPickupConfirmationEmailsResponse as dT, type SendBuyerShippingConfirmationEmailRequest as dU, type SendBuyerShippingConfirmationEmailResponse as dV, type BulkSendBuyerShippingConfirmationEmailsRequest as dW, type BulkSendBuyerShippingConfirmationEmailsResponse as dX, type SendMerchantOrderReceivedNotificationRequest as dY, type SendMerchantOrderReceivedNotificationResponse as dZ, type SendCancelRefundEmailRequest as d_, type AppliedDiscountDeltaDeltaOneOf as da, type AdditionalFeeDelta as db, type AdditionalFeeDeltaDeltaOneOf as dc, type DraftOrderCommitSettings as dd, type InventoryUpdateDetails as de, type ImportOrderRequest as df, type ImportOrderResponse as dg, type SetOrderNumberCounterRequest as dh, type SetOrderNumberCounterResponse as di, type BulkDeleteImportedOrdersRequest as dj, type BulkDeleteImportedOrdersResponse as dk, type DomainEvent as dl, type DomainEventBodyOneOf as dm, type EntityCreatedEvent as dn, type RestoreInfo as dp, type EntityUpdatedEvent as dq, type EntityDeletedEvent as dr, type ActionEvent as ds, type MessageEnvelope as dt, type IdentificationData as du, type IdentificationDataIdOneOf as dv, type AccountInfo as dw, type UpdateInternalDocumentsEvent as dx, type UpdateInternalDocumentsEventOperationOneOf as dy, type InternalDocument as dz, type PaymentCapture as e, type HasCustomEmailConfigurationsResponse as e$, type SendRefundEmailRequest as e0, type SendRefundEmailResponse as e1, type SendFulfillmentEmailRequest as e2, type SendFulfillmentEmailResponse as e3, type SendMerchantOrderReceivedPushRequest as e4, type SendMerchantOrderReceivedPushResponse as e5, type PreviewEmailByTypeRequest as e6, type PreviewEmailByTypeResponse as e7, type PreviewRefundEmailRequest as e8, type RefundDetails as e9, type SiteUndeleted as eA, type SitePublished as eB, type SiteUnpublished as eC, type SiteMarkedAsTemplate as eD, type SiteMarkedAsWixSite as eE, type ServiceProvisioned as eF, type ServiceRemoved as eG, type SiteRenamed as eH, type SiteHardDeleted as eI, type NamespaceChanged as eJ, type StudioAssigned as eK, type StudioUnassigned as eL, type SiteUrlChanged as eM, type SitePurgedExternally as eN, type OdeditorAssigned as eO, type OdeditorUnassigned as eP, type PicassoAssigned as eQ, type PicassoUnassigned as eR, type WixelAssigned as eS, type WixelUnassigned as eT, type StudioTwoAssigned as eU, type StudioTwoUnassigned as eV, type UserDomainMediaEnabled as eW, type UserDomainMediaDisabled as eX, type EditorlessAssigned as eY, type EditorlessUnassigned as eZ, type HasCustomEmailConfigurationsRequest as e_, type RefundItem as ea, type LineItemRefund as eb, type AdditionalFeeRefund as ec, type ShippingRefund as ed, type PreviewRefundEmailResponse as ee, type PreviewCancelEmailRequest as ef, type PreviewCancelEmailResponse as eg, type PreviewCancelRefundEmailRequest as eh, type PreviewCancelRefundEmailResponse as ei, type PreviewBuyerPaymentsReceivedEmailRequest as ej, type PreviewBuyerPaymentsReceivedEmailResponse as ek, type PreviewBuyerConfirmationEmailRequest as el, type PreviewBuyerConfirmationEmailResponse as em, type PreviewBuyerPickupConfirmationEmailRequest as en, type PreviewBuyerPickupConfirmationEmailResponse as eo, type PreviewShippingConfirmationEmailRequest as ep, type PreviewShippingConfirmationEmailResponse as eq, type PreviewResendDownloadLinksEmailRequest as er, type PreviewResendDownloadLinksEmailResponse as es, type MetaSiteSpecialEvent as et, type MetaSiteSpecialEventPayloadOneOf as eu, type Asset as ev, type SiteCreated as ew, type SiteTransferred as ex, type SiteDeleted as ey, type DeleteContext as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type LineItemRefundSummary as f$, type AddToAutomationMigrationPopulationRequest as f0, type AddToAutomationMigrationPopulationResponse as f1, type IsInAutomationMigrationPopulationRequest as f2, type IsInAutomationMigrationPopulationResponse as f3, type PreparePaymentCollectionRequest as f4, type RedirectUrls as f5, type DelayedCaptureSettings as f6, type Duration as f7, type GetPaymentCollectabilityStatusRequest as f8, type RecordManuallyCollectedPaymentRequest as f9, type RestockInfo as fA, type RestockItem as fB, type TriggerRefundResponse as fC, type OrderTransactions as fD, type Payment as fE, type PaymentPaymentDetailsOneOf as fF, type PaymentReceiptInfoOneOf as fG, type RegularPaymentDetails as fH, type RegularPaymentDetailsPaymentMethodDetailsOneOf as fI, type CreditCardPaymentMethodDetails as fJ, type AuthorizationDetails as fK, type AuthorizationCapture as fL, type AuthorizationActionFailureDetails as fM, type AuthorizationVoid as fN, type V1ScheduledAction as fO, type Chargeback as fP, type PaymentMethodName as fQ, type GiftCardPaymentDetails as fR, type MembershipPaymentDetails as fS, type WixReceiptInfo as fT, type ExternalReceiptInfo as fU, type CashRoundingDetails as fV, type Refund as fW, type RefundTransaction as fX, type RefundStatusInfo as fY, type AggregatedRefundSummary as fZ, type RefundItemsBreakdown as f_, type UserDefinedPaymentMethodName as fa, type UserDefinedPaymentMethodNameKindOneOf as fb, type RecordManuallyCollectedPaymentResponse as fc, type MarkOrderAsPaidRequest as fd, type MarkOrderAsPaidResponse as fe, type BulkMarkOrdersAsPaidRequest as ff, type BulkMarkOrdersAsPaidResponse as fg, type BulkOrderResult as fh, type ItemMetadata as fi, type ApplicationError as fj, type BulkActionMetadata as fk, type GetRefundabilityStatusRequest as fl, type GetRefundabilityStatusResponse as fm, type Refundability as fn, type RefundabilityAdditionalRefundabilityInfoOneOf as fo, type CreatePaymentGatewayOrderRequest as fp, type ChargedBy as fq, type CreatePaymentGatewayOrderResponse as fr, type ChargeMembershipsRequest as fs, type MembershipChargeItem as ft, type MembershipName as fu, type ServiceProperties as fv, type ChargeMembershipsResponse as fw, type TriggerRefundRequest as fx, type PaymentRefund as fy, type RefundSideEffects as fz, type GetOrderApplicationErrors as g, type UpdateBillingContactDetailsRequest as g$, type CalculateRefundRequest as g0, type CalculateRefundItemRequest as g1, type CalculateRefundResponse as g2, type CalculateRefundItemResponse as g3, type VoidAuthorizedPaymentsRequest as g4, type CaptureAuthorizedPaymentsRequest as g5, type ChargeSavedPaymentMethodRequest as g6, type ChargeSavedPaymentMethodResponse as g7, type DiffmatokyPayload as g8, type ErrorInformation as g9, type DraftOrderDiffs as gA, type DraftOrderDiffsShippingUpdateInfoOneOf as gB, type DraftOrderDiffsBuyerUpdateInfoOneOf as gC, type DraftOrderDiffsBillingUpdateInfoOneOf as gD, type DraftOrderDiffsRecipientUpdateInfoOneOf as gE, type V1LineItemDelta as gF, type V1LineItemDeltaDeltaOneOf as gG, type CommitDeltasResponse as gH, type ArchiveOrderRequest as gI, type ArchiveOrderResponse as gJ, type BulkArchiveOrdersRequest as gK, type BulkArchiveOrdersResponse as gL, type BulkArchiveOrdersByFilterRequest as gM, type BulkArchiveOrdersByFilterResponse as gN, type UnArchiveOrderRequest as gO, type UnArchiveOrderResponse as gP, type BulkUnArchiveOrdersRequest as gQ, type BulkUnArchiveOrdersResponse as gR, type BulkUnArchiveOrdersByFilterRequest as gS, type BulkUnArchiveOrdersByFilterResponse as gT, type UpdateBuyerInfoRequest as gU, type BuyerInfoUpdate as gV, type UpdateBuyerInfoResponse as gW, type UpdateBuyerEmailRequest as gX, type UpdateBuyerEmailResponse as gY, type UpdateOrderShippingAddressRequest as gZ, type UpdateOrderShippingAddressResponse as g_, type GetOrderRequest as ga, type GetOrderResponse as gb, type InternalQueryOrdersRequest as gc, type PlatformQuery as gd, type PlatformQueryPagingMethodOneOf as ge, type Sorting as gf, type PlatformPaging as gg, type CursorPaging as gh, type InternalQueryOrdersResponse as gi, type PlatformPagingMetadata as gj, type Cursors as gk, type QueryOrderRequest as gl, type QueryOrderResponse as gm, type SearchOrdersRequest as gn, type CursorSearch as go, type CursorSearchPagingMethodOneOf as gp, type CursorPagingMetadata as gq, type CreateOrderRequest as gr, type OrderCreationSettings as gs, type OrderCreationSettingsEditableByOneOf as gt, type OrderCreateNotifications as gu, type CreateOrderResponse as gv, type UpdateOrderRequest as gw, type UpdateOrderResponse as gx, type BulkUpdateOrdersRequest as gy, type CommitDeltasRequest as gz, type OrderSearch as h, type V1BulkMarkOrdersAsPaidRequest as h$, type UpdateBillingContactDetailsResponse as h0, type UpdateOrderLineItemRequest as h1, type UpdateOrderLineItemResponse as h2, type UpdateOrderLineItemsRequest as h3, type MaskedOrderLineItem as h4, type UpdateOrderLineItemsResponse as h5, type AddInternalActivityRequest as h6, type InternalActivity as h7, type InternalActivityContentOneOf as h8, type OrderPlaced as h9, type DeleteActivityRequest as hA, type DeleteActivityResponse as hB, type UpdateLineItemsDescriptionLinesRequest as hC, type LineItemUpdate as hD, type UpdateLineItemsDescriptionLinesResponse as hE, type MarkOrderAsSeenByHumanRequest as hF, type MarkOrderAsSeenByHumanResponse as hG, type CancelOrderRequest as hH, type UpdateOrderStatusRequest as hI, type UpdateOrderStatusResponse as hJ, type MarkAsFulfilledRequest as hK, type MarkAsFulfilledResponse as hL, type BulkMarkAsFulfilledRequest as hM, type BulkMarkAsFulfilledResponse as hN, type BulkMarkAsFulfilledByFilterRequest as hO, type BulkMarkAsFulfilledByFilterResponse as hP, type MarkAsUnfulfilledRequest as hQ, type MarkAsUnfulfilledResponse as hR, type BulkMarkAsUnfulfilledRequest as hS, type BulkMarkAsUnfulfilledResponse as hT, type BulkMarkAsUnfulfilledByFilterRequest as hU, type BulkMarkAsUnfulfilledByFilterResponse as hV, type BulkSetBusinessLocationRequest as hW, type BulkSetBusinessLocationResponse as hX, type BulkSetBusinessLocationResult as hY, type V1MarkOrderAsPaidRequest as hZ, type V1MarkOrderAsPaidResponse as h_, type OrderPaid as ha, type OrderFulfilled as hb, type OrderNotFulfilled as hc, type OrderCanceled as hd, type DownloadLinkSent as he, type TrackingNumberAdded as hf, type TrackingNumberEdited as hg, type TrackingLinkAdded as hh, type ShippingConfirmationEmailSent as hi, type InvoiceAdded as hj, type InvoiceSent as hk, type FulfillerEmailSent as hl, type ShippingAddressEdited as hm, type EmailEdited as hn, type PickupReadyEmailSent as ho, type OrderPartiallyPaid as hp, type OrderPending as hq, type OrderRejected as hr, type AddInternalActivityResponse as hs, type AddActivityRequest as ht, type PublicActivity as hu, type PublicActivityContentOneOf as hv, type AddActivityResponse as hw, type AddActivitiesRequest as hx, type UpdateActivityRequest as hy, type UpdateActivityResponse as hz, type CreateOrderOptions as i, type RecordManuallyCollectedPaymentOptions as i$, type V1BulkMarkOrdersAsPaidResponse as i0, type V1CreatePaymentGatewayOrderRequest as i1, type V1CreatePaymentGatewayOrderResponse as i2, type GetShipmentsRequest as i3, type GetShipmentsResponse as i4, type AggregateOrdersRequest as i5, type AggregateOrdersResponse as i6, type DecrementItemsQuantityRequest as i7, type DecrementData as i8, type DecrementItemsQuantityResponse as i9, type Subdivision as iA, type StandardDetails as iB, type InvoiceDates as iC, type LineItems as iD, type LineItem as iE, type BigDecimalWrapper as iF, type LineItemTax as iG, type Source as iH, type LineItemMetaData as iI, type Locale as iJ, type TotalPrice as iK, type ItemizedFee as iL, type Discount as iM, type DiscountOneDiscountTypeOneOf as iN, type CalculatedTaxes as iO, type CalculatedTax as iP, type Payments as iQ, type InvoicesPayment as iR, type MetaData as iS, type InvoiceDynamicPriceTotals as iT, type CustomFieldValue as iU, type Value as iV, type Deposit as iW, type BaseEventMetadata as iX, type EventMetadata as iY, type AccountInfoMetadata as iZ, type SetOrderNumberCounterOptions as i_, type BulkUpdateOrderTagsRequest as ia, type TagsTags as ib, type TagsTagList as ic, type BulkUpdateOrderTagsResult as id, type SendOrderUpdatedDomainEventRequest as ie, type SendOrderUpdatedDomainEventResponse as ig, type Task as ih, type TaskKey as ii, type TaskAction as ij, type TaskActionActionOneOf as ik, type Complete as il, type Cancel as im, type Reschedule as io, type InvoiceSentEvent as ip, type IdAndVersion as iq, type InvoiceFields as ir, type Customer as is, type Email as it, type QuotesAddress as iu, type AddressDescription as iv, type Phone as iw, type Company as ix, type CommonAddress as iy, type CommonAddressStreetOneOf as iz, type CreateOrderApplicationErrors as j, type SortOrderWithLiterals as j$, type PaymentCollectionMarkOrderAsPaidOptions as j0, type PaymentCollectionCreatePaymentGatewayOrderOptions as j1, type ChargeMembershipsOptions as j2, type TriggerRefundOptions as j3, type OrderSearchSpec as j4, type UpdateOrderLineItemIdentifiers as j5, type UpdateOrderLineItem as j6, type UpdateActivityIdentifiers as j7, type DeleteActivityIdentifiers as j8, type AggregateOrdersOptions as j9, type DeltaPaymentOptionTypeWithLiterals as jA, type InventoryActionWithLiterals as jB, type WebhookIdentityTypeWithLiterals as jC, type VersioningModeWithLiterals as jD, type PreviewEmailTypeWithLiterals as jE, type StateWithLiterals as jF, type SiteCreatedContextWithLiterals as jG, type NamespaceWithLiterals as jH, type DeleteStatusWithLiterals as jI, type OriginWithLiterals 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_, utils as ja, type DescriptionLineTypeWithLiterals as jb, type DimensionsUnitWithLiterals as jc, type ItemTypePresetWithLiterals as jd, type PaymentOptionTypeWithLiterals as je, type JurisdictionTypeWithLiterals as jf, type SubscriptionFrequencyWithLiterals as jg, type AdjustmentTypeWithLiterals as jh, type TaxableAddressTypeWithLiterals as ji, type PaymentStatusEnumPaymentStatusWithLiterals as jj, type FulfillmentStatusWithLiterals as jk, type WeightUnitWithLiterals as jl, type VatTypeWithLiterals as jm, type PickupMethodWithLiterals as jn, type OrderStatusWithLiterals as jo, type DiscountTypeWithLiterals as jp, type DiscountReasonWithLiterals as jq, type LineItemQuantityChangeTypeWithLiterals as jr, type ActivityTypeWithLiterals as js, type OrderActivityTypeEnumActivityTypeWithLiterals as jt, type AttributionSourceWithLiterals as ju, type ChannelTypeWithLiterals as jv, type AdditionalFeeSourceWithLiterals as jw, type OrderActionTypeWithLiterals as jx, type SpecificItemsCouponBehaviorWithLiterals as jy, type ChargeTypeWithLiterals as jz, type UpdateOrderApplicationErrors as k, type OrderApprovalStrategyWithLiterals as k0, type PlacementWithLiterals as k1, type SubdivisionTypeWithLiterals as k2, type SourceTypeWithLiterals as k3, type CustomFieldGroupWithLiterals as k4, type ValueTypeWithLiterals as k5, type DepositTypeWithLiterals as k6, type InvoiceStatusWithLiterals as k7, type ImportOrderApplicationErrors as k8, type RecordManuallyCollectedPaymentApplicationErrors as k9, type PaymentCollectionMarkOrderAsPaidApplicationErrors as ka, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as kb, type TriggerRefundApplicationErrors as kc, type UpdateOrderStatusApplicationErrors 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, preparePaymentCollection as km, getPaymentCollectabilityStatus as kn, voidAuthorizedPayments as ko, captureAuthorizedPayments as kp, getOrder as kq, createOrder as kr, updateOrder as ks, bulkUpdateOrders as kt, addActivities as ku, cancelOrder as kv, bulkUpdateOrderTags as kw, type BulkUpdateOrdersResponse as l, type AddActivitiesResponse as m, type CancelOrderOptions as n, type CancelOrderResponse as o, type CancelOrderApplicationErrors as p, type BulkUpdateOrderTagsOptions as q, type BulkUpdateOrderTagsResponse as r, type OrderApprovedEnvelope as s, type OrderCanceledEnvelope as t, type OrderCommittedEnvelope as u, type OrderCreatedEnvelope as v, type OrderFulfilledEnvelope as w, type OrderPaymentStatusUpdatedEnvelope as x, type OrderUpdatedEnvelope as y, DimensionsUnit as z };
8764
+ export { OrderActivityTypeEnumActivityType as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PaymentOptionType as E, SubscriptionFrequency as F, type GetPaymentCollectabilityStatusResponse as G, AdjustmentType as H, ItemTypePreset as I, JurisdictionType as J, PaymentStatusEnumPaymentStatus as K, FulfillmentStatus as L, type MaskedOrder as M, VatType as N, type Order as O, type Price as P, PickupMethod as Q, OrderStatus as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, DiscountType as X, DiscountReason as Y, LineItemQuantityChangeType as Z, ActivityType as _, type PreparePaymentCollectionOptions as a, type SubscriptionDescription as a$, AttributionSource as a0, ChannelType as a1, AdditionalFeeSource as a2, OrderActionType as a3, SpecificItemsCouponBehavior as a4, ChargeType as a5, VersioningMode as a6, DeltaPaymentOptionType as a7, InventoryAction as a8, WebhookIdentityType as a9, SubdivisionType as aA, SourceType as aB, CustomFieldGroup as aC, ValueType as aD, DepositType as aE, InvoiceStatus as aF, type OrderLineItem as aG, type ProductName as aH, type CatalogReference as aI, type DescriptionLine as aJ, type DescriptionLineValueOneOf as aK, type DescriptionLineDescriptionLineValueOneOf as aL, type DescriptionLineName as aM, type PlainTextValue as aN, type Color as aO, type FocalPoint as aP, type PhysicalProperties as aQ, type Dimensions as aR, type ItemType as aS, type ItemTypeItemTypeDataOneOf as aT, type RestockLocation as aU, type ItemTaxFullDetails as aV, type LineItemTaxInfo as aW, type LineItemTaxBreakdown as aX, type DigitalFile as aY, type SubscriptionInfo as aZ, type SubscriptionTitle as a_, PreviewEmailType as aa, State as ab, SiteCreatedContext as ac, Namespace as ad, DeleteStatus as ae, Origin as af, ScheduledAction as ag, DurationUnit as ah, PaymentCollectabilityStatus as ai, PredefinedPaymentMethod as aj, RefundableStatus as ak, NonRefundableReason as al, ManuallyRefundableReason as am, RestockType as an, TransactionStatus as ao, AuthorizationCaptureStatus as ap, AuthorizationVoidStatus as aq, Reason as ar, ActionType as as, ChargebackStatus as at, MembershipPaymentStatus as au, PaymentStatus as av, RefundStatus as aw, SortOrder as ax, OrderApprovalStrategy as ay, Placement as az, type PreparePaymentCollectionResponse as b, type TranslatedValue as b$, type SubscriptionSettings as b0, type FreeTrialPeriod as b1, type BillingSettings as b2, type BillingAdjustment as b3, type BillingAdjustmentPriceSummary as b4, type PriceDescription as b5, type LocationAndQuantity as b6, type TaxableAddress as b7, type TaxableAddressTaxableAddressDataOneOf as b8, type ExtendedFields as b9, type Coupon as bA, type MerchantDiscount as bB, type MerchantDiscountMerchantDiscountReasonOneOf as bC, type DiscountRule as bD, type DiscountRuleName as bE, type LineItemDiscount as bF, type ItemCombination as bG, type ItemCombinationLineItem as bH, type Activity as bI, type ActivityContentOneOf as bJ, type CustomActivity as bK, type MerchantComment as bL, type OrderRefunded as bM, type OrderCreatedFromExchange as bN, type NewExchangeOrderCreated as bO, type LineItemExchangeData as bP, type DraftOrderChangesApplied as bQ, type OrderChange as bR, type OrderChangeValueOneOf as bS, type LineItemChanges as bT, type LineItemQuantityChange as bU, type LineItemPriceChange as bV, type LineItemProductNameChange as bW, type LineItemDescriptionLineChange as bX, type LineItemModifiersChange as bY, type ManagedLineItem as bZ, type ManagedDiscount as b_, type ModifierGroup as ba, type TranslatableString as bb, type ItemModifier as bc, type BuyerInfo as bd, type BuyerInfoIdOneOf as be, type CurrencyConversionDetails as bf, type PriceSummary as bg, type AddressWithContact as bh, type Address as bi, type StreetAddress as bj, type AddressLocation as bk, type FullAddressContactDetails as bl, type VatId as bm, type V1ShippingInformation as bn, type DeliveryLogistics as bo, type DeliveryLogisticsAddressOneOf as bp, type PickupDetails as bq, type PickupAddress as br, type DeliveryTimeSlot as bs, type ShippingPrice as bt, type ShippingRegion as bu, type TaxSummary as bv, type OrderTaxInfo as bw, type OrderTaxBreakdown as bx, type AppliedDiscount as by, type AppliedDiscountDiscountSourceOneOf as bz, type PreparePaymentCollectionApplicationErrors as c, type InternalUpdateExistingOperation as c$, type LineItemAmount as c0, type ManagedAdditionalFee as c1, type TotalPriceChange as c2, type ShippingInformationChange as c3, type ShippingInformation as c4, type SavedPaymentMethod as c5, type AuthorizedPaymentCreated as c6, type AuthorizedPaymentCaptured as c7, type AuthorizedPaymentVoided as c8, type RefundInitiated as c9, type CreatedByStringOneOf as cA, type ChannelInfo as cB, type CustomField as cC, type BalanceSummary as cD, type Balance as cE, type CashRounding as cF, type AdditionalFee as cG, type FulfillmentStatusesAggregate as cH, type Tags as cI, type TagList as cJ, type Location as cK, type OrderSettings as cL, type OrderSettingsAllowedActionsOneOf as cM, type OrderSettingsEditableByOneOf as cN, type CustomAllowedActions as cO, type OwnerApps as cP, type FormInfo as cQ, type FormIdentifier as cR, type PlatformFeeSummary as cS, type PlatformFee as cT, type UpdateInternalDocumentsEvent as cU, type UpdateInternalDocumentsEventOperationOneOf as cV, type InternalDocument as cW, type InternalDocumentUpdateOperation as cX, type DeleteByIdsOperation as cY, type DeleteByFilterOperation as cZ, type InternalDocumentUpdateByFilterOperation as c_, type RefundedPayment as ca, type RefundedPaymentKindOneOf as cb, type RegularPaymentRefund as cc, type GiftCardPaymentRefund as cd, type MembershipPaymentRefund as ce, type PaymentRefunded as cf, type PaymentRefundFailed as cg, type RefundedAsStoreCredit as ch, type PaymentPending as ci, type PaymentPendingPaymentDetailsOneOf as cj, type RegularPayment as ck, type RegularPaymentPaymentMethodDetailsOneOf as cl, type CreditCardDetails as cm, type PaymentCanceled as cn, type PaymentCanceledPaymentDetailsOneOf as co, type PaymentDeclined as cp, type PaymentDeclinedPaymentDetailsOneOf as cq, type ReceiptCreated as cr, type ReceiptCreatedReceiptInfoOneOf as cs, type WixReceipt as ct, type ExternalReceipt as cu, type ReceiptSent as cv, type ReceiptSentReceiptInfoOneOf as cw, type ChargebackCreated as cx, type ChargebackReversed as cy, type CreatedBy as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type SendMerchantOrderReceivedNotificationRequest as d$, type VersionedDocumentUpdateOperation as d0, type VersionedDeleteByIdsOperation as d1, type VersionedDocumentId as d2, type OrderApproved as d3, type OrdersExperiments as d4, type OrderRejectedEventOrderRejected as d5, type OrderItemsRestocked as d6, type V1RestockItem as d7, type OrderImported as d8, type ImportedOrderDeleted as d9, type Empty as dA, type TriggerReindexOrderRequest as dB, type MessageEnvelope as dC, type IdentificationData as dD, type IdentificationDataIdOneOf as dE, type AccountInfo as dF, type ImportOrderRequest as dG, type ImportOrderResponse as dH, type SetOrderNumberCounterRequest as dI, type SetOrderNumberCounterResponse as dJ, type BulkDeleteImportedOrdersRequest as dK, type BulkDeleteImportedOrdersResponse as dL, type V1TriggerReindexRequest as dM, type V1TriggerReindexResponse as dN, type V1TriggerReindexOrderRequest as dO, type SendBuyerConfirmationEmailRequest as dP, type SendBuyerConfirmationEmailResponse as dQ, type SendBuyerPaymentsReceivedEmailRequest as dR, type SendBuyerPaymentsReceivedEmailResponse as dS, type SendBuyerPickupConfirmationEmailRequest as dT, type SendBuyerPickupConfirmationEmailResponse as dU, type BulkSendBuyerPickupConfirmationEmailsRequest as dV, type BulkSendBuyerPickupConfirmationEmailsResponse as dW, type SendBuyerShippingConfirmationEmailRequest as dX, type SendBuyerShippingConfirmationEmailResponse as dY, type BulkSendBuyerShippingConfirmationEmailsRequest as dZ, type BulkSendBuyerShippingConfirmationEmailsResponse as d_, type PaymentStatusUpdated as da, type FulfillmentStatusUpdated as db, type OrderCanceledEventOrderCanceled as dc, type OrderDeltasCommitted as dd, type CommittedDiffs as de, type CommittedDiffsShippingUpdateInfoOneOf as df, type ItemChangedDetails as dg, type OrderLineItemChangedDetails as dh, type LineItemDelta as di, type LineItemDeltaDeltaOneOf as dj, type AppliedDiscountDelta as dk, type AppliedDiscountDeltaDeltaOneOf as dl, type AdditionalFeeDelta as dm, type AdditionalFeeDeltaDeltaOneOf as dn, type DraftOrderCommitSettings as dp, type InventoryUpdateDetails as dq, type TriggerReindexRequest as dr, type TriggerReindexResponse as ds, type DomainEvent as dt, type DomainEventBodyOneOf as du, type EntityCreatedEvent as dv, type RestoreInfo as dw, type EntityUpdatedEvent as dx, type EntityDeletedEvent as dy, type ActionEvent as dz, type PaymentCapture as e, type EditorlessAssigned as e$, type SendMerchantOrderReceivedNotificationResponse as e0, type SendCancelRefundEmailRequest as e1, type SendCancelRefundEmailResponse as e2, type SendRefundEmailRequest as e3, type SendRefundEmailResponse as e4, type SendFulfillmentEmailRequest as e5, type SendFulfillmentEmailResponse as e6, type SendMerchantOrderReceivedPushRequest as e7, type SendMerchantOrderReceivedPushResponse as e8, type PreviewEmailByTypeRequest as e9, type SiteTransferred as eA, type SiteDeleted as eB, type DeleteContext as eC, type SiteUndeleted as eD, type SitePublished as eE, type SiteUnpublished as eF, type SiteMarkedAsTemplate as eG, type SiteMarkedAsWixSite as eH, type ServiceProvisioned as eI, type ServiceRemoved as eJ, type SiteRenamed as eK, type SiteHardDeleted as eL, type NamespaceChanged as eM, type StudioAssigned as eN, type StudioUnassigned as eO, type SiteUrlChanged as eP, type SitePurgedExternally as eQ, type OdeditorAssigned as eR, type OdeditorUnassigned as eS, type PicassoAssigned as eT, type PicassoUnassigned as eU, type WixelAssigned as eV, type WixelUnassigned as eW, type StudioTwoAssigned as eX, type StudioTwoUnassigned as eY, type UserDomainMediaEnabled as eZ, type UserDomainMediaDisabled as e_, type PreviewEmailByTypeResponse as ea, type PreviewRefundEmailRequest as eb, type RefundDetails as ec, type RefundItem as ed, type LineItemRefund as ee, type AdditionalFeeRefund as ef, type ShippingRefund as eg, type PreviewRefundEmailResponse as eh, type PreviewCancelEmailRequest as ei, type PreviewCancelEmailResponse as ej, type PreviewCancelRefundEmailRequest as ek, type PreviewCancelRefundEmailResponse as el, type PreviewBuyerPaymentsReceivedEmailRequest as em, type PreviewBuyerPaymentsReceivedEmailResponse as en, type PreviewBuyerConfirmationEmailRequest as eo, type PreviewBuyerConfirmationEmailResponse as ep, type PreviewBuyerPickupConfirmationEmailRequest as eq, type PreviewBuyerPickupConfirmationEmailResponse as er, type PreviewShippingConfirmationEmailRequest as es, type PreviewShippingConfirmationEmailResponse as et, type PreviewResendDownloadLinksEmailRequest as eu, type PreviewResendDownloadLinksEmailResponse as ev, type MetaSiteSpecialEvent as ew, type MetaSiteSpecialEventPayloadOneOf as ex, type Asset as ey, type SiteCreated as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type RefundStatusInfo as f$, type EditorlessUnassigned as f0, type HasCustomEmailConfigurationsRequest as f1, type HasCustomEmailConfigurationsResponse as f2, type AddToAutomationMigrationPopulationRequest as f3, type AddToAutomationMigrationPopulationResponse as f4, type IsInAutomationMigrationPopulationRequest as f5, type IsInAutomationMigrationPopulationResponse as f6, type PreparePaymentCollectionRequest as f7, type RedirectUrls as f8, type DelayedCaptureSettings as f9, type TriggerRefundRequest as fA, type PaymentRefund as fB, type RefundSideEffects as fC, type RestockInfo as fD, type RestockItem as fE, type TriggerRefundResponse as fF, type OrderTransactions as fG, type Payment as fH, type PaymentPaymentDetailsOneOf as fI, type PaymentReceiptInfoOneOf as fJ, type RegularPaymentDetails as fK, type RegularPaymentDetailsPaymentMethodDetailsOneOf as fL, type CreditCardPaymentMethodDetails as fM, type AuthorizationDetails as fN, type AuthorizationCapture as fO, type AuthorizationActionFailureDetails as fP, type AuthorizationVoid as fQ, type V1ScheduledAction as fR, type Chargeback as fS, type PaymentMethodName as fT, type GiftCardPaymentDetails as fU, type MembershipPaymentDetails as fV, type WixReceiptInfo as fW, type ExternalReceiptInfo as fX, type CashRoundingDetails as fY, type Refund as fZ, type RefundTransaction as f_, type Duration as fa, type GetPaymentCollectabilityStatusRequest as fb, type RecordManuallyCollectedPaymentRequest as fc, type UserDefinedPaymentMethodName as fd, type UserDefinedPaymentMethodNameKindOneOf as fe, type RecordManuallyCollectedPaymentResponse as ff, type MarkOrderAsPaidRequest as fg, type MarkOrderAsPaidResponse as fh, type BulkMarkOrdersAsPaidRequest as fi, type BulkMarkOrdersAsPaidResponse as fj, type BulkOrderResult as fk, type ItemMetadata as fl, type ApplicationError as fm, type BulkActionMetadata as fn, type GetRefundabilityStatusRequest as fo, type GetRefundabilityStatusResponse as fp, type Refundability as fq, type RefundabilityAdditionalRefundabilityInfoOneOf as fr, type CreatePaymentGatewayOrderRequest as fs, type ChargedBy as ft, type CreatePaymentGatewayOrderResponse as fu, type ChargeMembershipsRequest as fv, type MembershipChargeItem as fw, type MembershipName as fx, type ServiceProperties as fy, type ChargeMembershipsResponse as fz, type GetOrderApplicationErrors as g, type UpdateBuyerEmailResponse as g$, type AggregatedRefundSummary as g0, type RefundItemsBreakdown as g1, type LineItemRefundSummary as g2, type CalculateRefundRequest as g3, type CalculateRefundItemRequest as g4, type CalculateRefundResponse as g5, type CalculateRefundItemResponse as g6, type VoidAuthorizedPaymentsRequest as g7, type CaptureAuthorizedPaymentsRequest as g8, type ChargeSavedPaymentMethodRequest as g9, type UpdateOrderResponse as gA, type BulkUpdateOrdersRequest as gB, type CommitDeltasRequest as gC, type DraftOrderDiffs as gD, type DraftOrderDiffsShippingUpdateInfoOneOf as gE, type DraftOrderDiffsBuyerUpdateInfoOneOf as gF, type DraftOrderDiffsBillingUpdateInfoOneOf as gG, type DraftOrderDiffsRecipientUpdateInfoOneOf as gH, type V1LineItemDelta as gI, type V1LineItemDeltaDeltaOneOf as gJ, type CommitDeltasResponse as gK, type ArchiveOrderRequest as gL, type ArchiveOrderResponse as gM, type BulkArchiveOrdersRequest as gN, type BulkArchiveOrdersResponse as gO, type BulkArchiveOrdersByFilterRequest as gP, type BulkArchiveOrdersByFilterResponse as gQ, type UnArchiveOrderRequest as gR, type UnArchiveOrderResponse as gS, type BulkUnArchiveOrdersRequest as gT, type BulkUnArchiveOrdersResponse as gU, type BulkUnArchiveOrdersByFilterRequest as gV, type BulkUnArchiveOrdersByFilterResponse as gW, type UpdateBuyerInfoRequest as gX, type BuyerInfoUpdate as gY, type UpdateBuyerInfoResponse as gZ, type UpdateBuyerEmailRequest as g_, type ChargeSavedPaymentMethodResponse as ga, type DiffmatokyPayload as gb, type ErrorInformation as gc, type GetOrderRequest as gd, type GetOrderResponse as ge, type InternalQueryOrdersRequest as gf, type PlatformQuery as gg, type PlatformQueryPagingMethodOneOf as gh, type Sorting as gi, type PlatformPaging as gj, type CursorPaging as gk, type InternalQueryOrdersResponse as gl, type PlatformPagingMetadata as gm, type Cursors as gn, type QueryOrderRequest as go, type QueryOrderResponse as gp, type SearchOrdersRequest as gq, type CursorSearch as gr, type CursorSearchPagingMethodOneOf as gs, type CursorPagingMetadata as gt, type CreateOrderRequest as gu, type OrderCreationSettings as gv, type OrderCreationSettingsEditableByOneOf as gw, type OrderCreateNotifications as gx, type CreateOrderResponse as gy, type UpdateOrderRequest as gz, type OrderSearch as h, type BulkSetBusinessLocationResult as h$, type UpdateOrderShippingAddressRequest as h0, type UpdateOrderShippingAddressResponse as h1, type UpdateBillingContactDetailsRequest as h2, type UpdateBillingContactDetailsResponse as h3, type UpdateOrderLineItemRequest as h4, type UpdateOrderLineItemResponse as h5, type UpdateOrderLineItemsRequest as h6, type MaskedOrderLineItem as h7, type UpdateOrderLineItemsResponse as h8, type AddInternalActivityRequest as h9, type AddActivitiesRequest as hA, type UpdateActivityRequest as hB, type UpdateActivityResponse as hC, type DeleteActivityRequest as hD, type DeleteActivityResponse as hE, type UpdateLineItemsDescriptionLinesRequest as hF, type LineItemUpdate as hG, type UpdateLineItemsDescriptionLinesResponse as hH, type MarkOrderAsSeenByHumanRequest as hI, type MarkOrderAsSeenByHumanResponse as hJ, type CancelOrderRequest as hK, type UpdateOrderStatusRequest as hL, type UpdateOrderStatusResponse as hM, type MarkAsFulfilledRequest as hN, type MarkAsFulfilledResponse as hO, type BulkMarkAsFulfilledRequest as hP, type BulkMarkAsFulfilledResponse as hQ, type BulkMarkAsFulfilledByFilterRequest as hR, type BulkMarkAsFulfilledByFilterResponse as hS, type MarkAsUnfulfilledRequest as hT, type MarkAsUnfulfilledResponse as hU, type BulkMarkAsUnfulfilledRequest as hV, type BulkMarkAsUnfulfilledResponse as hW, type BulkMarkAsUnfulfilledByFilterRequest as hX, type BulkMarkAsUnfulfilledByFilterResponse as hY, type BulkSetBusinessLocationRequest as hZ, type BulkSetBusinessLocationResponse as h_, type InternalActivity as ha, type InternalActivityContentOneOf as hb, type OrderPlaced as hc, type OrderPaid as hd, type OrderFulfilled as he, type OrderNotFulfilled as hf, type OrderCanceled as hg, type DownloadLinkSent as hh, type TrackingNumberAdded as hi, type TrackingNumberEdited as hj, type TrackingLinkAdded as hk, type ShippingConfirmationEmailSent as hl, type InvoiceAdded as hm, type InvoiceSent as hn, type FulfillerEmailSent as ho, type ShippingAddressEdited as hp, type EmailEdited as hq, type PickupReadyEmailSent as hr, type OrderPartiallyPaid as hs, type OrderPending as ht, type OrderRejected as hu, type AddInternalActivityResponse as hv, type AddActivityRequest as hw, type PublicActivity as hx, type PublicActivityContentOneOf as hy, type AddActivityResponse as hz, type CreateOrderOptions as i, type EventMetadata as i$, type V1MarkOrderAsPaidRequest as i0, type V1MarkOrderAsPaidResponse as i1, type V1BulkMarkOrdersAsPaidRequest as i2, type V1BulkMarkOrdersAsPaidResponse as i3, type V1CreatePaymentGatewayOrderRequest as i4, type V1CreatePaymentGatewayOrderResponse as i5, type GetShipmentsRequest as i6, type GetShipmentsResponse as i7, type AggregateOrdersRequest as i8, type AggregateOrdersResponse as i9, type Company as iA, type CommonAddress as iB, type CommonAddressStreetOneOf as iC, type Subdivision as iD, type StandardDetails as iE, type InvoiceDates as iF, type LineItems as iG, type LineItem as iH, type BigDecimalWrapper as iI, type LineItemTax as iJ, type Source as iK, type LineItemMetaData as iL, type Locale as iM, type TotalPrice as iN, type ItemizedFee as iO, type Discount as iP, type DiscountOneDiscountTypeOneOf as iQ, type CalculatedTaxes as iR, type CalculatedTax as iS, type Payments as iT, type InvoicesPayment as iU, type MetaData as iV, type InvoiceDynamicPriceTotals as iW, type CustomFieldValue as iX, type Value as iY, type Deposit as iZ, type BaseEventMetadata as i_, type DecrementItemsQuantityRequest as ia, type DecrementData as ib, type DecrementItemsQuantityResponse as ic, type BulkUpdateOrderTagsRequest as id, type TagsTags as ie, type TagsTagList as ig, type BulkUpdateOrderTagsResult as ih, type SendOrderUpdatedDomainEventRequest as ii, type SendOrderUpdatedDomainEventResponse as ij, type Task as ik, type TaskKey as il, type TaskAction as im, type TaskActionActionOneOf as io, type Complete as ip, type Cancel as iq, type Reschedule as ir, type InvoiceSentEvent as is, type IdAndVersion as it, type InvoiceFields as iu, type Customer as iv, type Email as iw, type QuotesAddress as ix, type AddressDescription as iy, type Phone as iz, type CreateOrderApplicationErrors as j, type MembershipPaymentStatusWithLiterals as j$, type AccountInfoMetadata as j0, type SetOrderNumberCounterOptions as j1, type RecordManuallyCollectedPaymentOptions as j2, type PaymentCollectionMarkOrderAsPaidOptions as j3, type PaymentCollectionCreatePaymentGatewayOrderOptions as j4, type ChargeMembershipsOptions as j5, type TriggerRefundOptions as j6, type OrderSearchSpec as j7, type UpdateOrderLineItemIdentifiers as j8, type UpdateOrderLineItem as j9, type OrderActionTypeWithLiterals as jA, type SpecificItemsCouponBehaviorWithLiterals as jB, type ChargeTypeWithLiterals as jC, type VersioningModeWithLiterals as jD, type DeltaPaymentOptionTypeWithLiterals as jE, type InventoryActionWithLiterals as jF, type WebhookIdentityTypeWithLiterals as jG, type PreviewEmailTypeWithLiterals as jH, type StateWithLiterals as jI, type SiteCreatedContextWithLiterals as jJ, type NamespaceWithLiterals as jK, type DeleteStatusWithLiterals as jL, type OriginWithLiterals 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 UpdateActivityIdentifiers as ja, type DeleteActivityIdentifiers as jb, type AggregateOrdersOptions as jc, utils as jd, type DescriptionLineTypeWithLiterals as je, type DimensionsUnitWithLiterals as jf, type ItemTypePresetWithLiterals as jg, type PaymentOptionTypeWithLiterals as jh, type JurisdictionTypeWithLiterals as ji, type SubscriptionFrequencyWithLiterals as jj, type AdjustmentTypeWithLiterals as jk, type TaxableAddressTypeWithLiterals as jl, type PaymentStatusEnumPaymentStatusWithLiterals as jm, type FulfillmentStatusWithLiterals as jn, type WeightUnitWithLiterals as jo, type VatTypeWithLiterals as jp, type PickupMethodWithLiterals as jq, type OrderStatusWithLiterals as jr, type DiscountTypeWithLiterals as js, type DiscountReasonWithLiterals as jt, type LineItemQuantityChangeTypeWithLiterals as ju, type ActivityTypeWithLiterals as jv, type OrderActivityTypeEnumActivityTypeWithLiterals as jw, type AttributionSourceWithLiterals as jx, type ChannelTypeWithLiterals as jy, type AdditionalFeeSourceWithLiterals as jz, type UpdateOrderApplicationErrors as k, type PaymentStatusWithLiterals as k0, type RefundStatusWithLiterals as k1, type SortOrderWithLiterals as k2, type OrderApprovalStrategyWithLiterals as k3, type PlacementWithLiterals as k4, type SubdivisionTypeWithLiterals as k5, type SourceTypeWithLiterals as k6, type CustomFieldGroupWithLiterals as k7, type ValueTypeWithLiterals as k8, type DepositTypeWithLiterals as k9, type InvoiceStatusWithLiterals as ka, type ImportOrderApplicationErrors as kb, type RecordManuallyCollectedPaymentApplicationErrors as kc, type PaymentCollectionMarkOrderAsPaidApplicationErrors as kd, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as ke, type TriggerRefundApplicationErrors as kf, type UpdateOrderStatusApplicationErrors 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, preparePaymentCollection as kp, getPaymentCollectabilityStatus as kq, voidAuthorizedPayments as kr, captureAuthorizedPayments as ks, getOrder as kt, createOrder as ku, updateOrder as kv, bulkUpdateOrders as kw, addActivities as kx, cancelOrder as ky, bulkUpdateOrderTags as kz, type BulkUpdateOrdersResponse as l, type AddActivitiesResponse as m, type CancelOrderOptions as n, type CancelOrderResponse as o, type CancelOrderApplicationErrors as p, type BulkUpdateOrderTagsOptions as q, type BulkUpdateOrderTagsResponse as r, type OrderApprovedEnvelope as s, type OrderCanceledEnvelope as t, type OrderCommittedEnvelope as u, type OrderCreatedEnvelope as v, type OrderFulfilledEnvelope as w, type OrderPaymentStatusUpdatedEnvelope as x, type OrderUpdatedEnvelope as y, DimensionsUnit as z };
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { P as Price, a as PreparePaymentCollectionOptions, b as PreparePaymentCollectionResponse, c as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, V as VoidAuthorizedPaymentsResponse, d as VoidAuthorizedPaymentsApplicationErrors, e as PaymentCapture, C as CaptureAuthorizedPaymentsResponse, f as CaptureAuthorizedPaymentsApplicationErrors, O as Order, g as GetOrderApplicationErrors, h as OrderSearch, S as SearchOrdersResponse, i as CreateOrderOptions, j as CreateOrderApplicationErrors, U as UpdateOrder, k as UpdateOrderApplicationErrors, M as MaskedOrder, B as BulkUpdateOrdersOptions, l as BulkUpdateOrdersResponse, A as AddActivitiesOptions, m as AddActivitiesResponse, n as CancelOrderOptions, o as CancelOrderResponse, p as CancelOrderApplicationErrors, q as BulkUpdateOrderTagsOptions, r as BulkUpdateOrderTagsResponse, s as OrderApprovedEnvelope, t as OrderCanceledEnvelope, u as OrderCommittedEnvelope, v as OrderCreatedEnvelope, w as OrderFulfilledEnvelope, x as OrderPaymentStatusUpdatedEnvelope, y as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-Dyxd-jx1.mjs';
3
- export { dw as AccountInfo, iZ as AccountInfoMetadata, ds as ActionEvent, as as ActionType, jW as ActionTypeWithLiterals, bI as Activity, bJ as ActivityContentOneOf, _ as ActivityType, js as ActivityTypeWithLiterals, hx as AddActivitiesRequest, ht as AddActivityRequest, hw as AddActivityResponse, h6 as AddInternalActivityRequest, hs as AddInternalActivityResponse, f0 as AddToAutomationMigrationPopulationRequest, f1 as AddToAutomationMigrationPopulationResponse, cG as AdditionalFee, db as AdditionalFeeDelta, dc as AdditionalFeeDeltaDeltaOneOf, ec as AdditionalFeeRefund, a2 as AdditionalFeeSource, jw as AdditionalFeeSourceWithLiterals, bi as Address, iv as AddressDescription, bk as AddressLocation, bh as AddressWithContact, H as AdjustmentType, jh as AdjustmentTypeWithLiterals, j9 as AggregateOrdersOptions, i5 as AggregateOrdersRequest, i6 as AggregateOrdersResponse, fZ as AggregatedRefundSummary, fj as ApplicationError, by as AppliedDiscount, d9 as AppliedDiscountDelta, da as AppliedDiscountDeltaDeltaOneOf, bz as AppliedDiscountDiscountSourceOneOf, gI as ArchiveOrderRequest, gJ as ArchiveOrderResponse, ev as Asset, a0 as AttributionSource, ju as AttributionSourceWithLiterals, fM as AuthorizationActionFailureDetails, fL as AuthorizationCapture, ap as AuthorizationCaptureStatus, jT as AuthorizationCaptureStatusWithLiterals, fK as AuthorizationDetails, fN as AuthorizationVoid, aq as AuthorizationVoidStatus, jU as AuthorizationVoidStatusWithLiterals, c7 as AuthorizedPaymentCaptured, c6 as AuthorizedPaymentCreated, c8 as AuthorizedPaymentVoided, cE as Balance, cD as BalanceSummary, iX as BaseEventMetadata, iF as BigDecimalWrapper, b3 as BillingAdjustment, b4 as BillingAdjustmentPriceSummary, b2 as BillingSettings, fk as BulkActionMetadata, gM as BulkArchiveOrdersByFilterRequest, gN as BulkArchiveOrdersByFilterResponse, gK as BulkArchiveOrdersRequest, gL as BulkArchiveOrdersResponse, dj as BulkDeleteImportedOrdersRequest, dk as BulkDeleteImportedOrdersResponse, hO as BulkMarkAsFulfilledByFilterRequest, hP as BulkMarkAsFulfilledByFilterResponse, hM as BulkMarkAsFulfilledRequest, hN as BulkMarkAsFulfilledResponse, hU as BulkMarkAsUnfulfilledByFilterRequest, hV as BulkMarkAsUnfulfilledByFilterResponse, hS as BulkMarkAsUnfulfilledRequest, hT as BulkMarkAsUnfulfilledResponse, ff as BulkMarkOrdersAsPaidRequest, fg as BulkMarkOrdersAsPaidResponse, fh as BulkOrderResult, dS as BulkSendBuyerPickupConfirmationEmailsRequest, dT as BulkSendBuyerPickupConfirmationEmailsResponse, dW as BulkSendBuyerShippingConfirmationEmailsRequest, dX as BulkSendBuyerShippingConfirmationEmailsResponse, hW as BulkSetBusinessLocationRequest, hX as BulkSetBusinessLocationResponse, hY as BulkSetBusinessLocationResult, gS as BulkUnArchiveOrdersByFilterRequest, gT as BulkUnArchiveOrdersByFilterResponse, gQ as BulkUnArchiveOrdersRequest, gR as BulkUnArchiveOrdersResponse, ia as BulkUpdateOrderTagsRequest, id as BulkUpdateOrderTagsResult, gy as BulkUpdateOrdersRequest, bd as BuyerInfo, be as BuyerInfoIdOneOf, gV as BuyerInfoUpdate, g1 as CalculateRefundItemRequest, g3 as CalculateRefundItemResponse, g0 as CalculateRefundRequest, g2 as CalculateRefundResponse, iP as CalculatedTax, iO as CalculatedTaxes, im as Cancel, hH as CancelOrderRequest, g5 as CaptureAuthorizedPaymentsRequest, cF as CashRounding, fV as CashRoundingDetails, aI as CatalogReference, cB as ChannelInfo, a1 as ChannelType, jv as ChannelTypeWithLiterals, j2 as ChargeMembershipsOptions, fs as ChargeMembershipsRequest, fw as ChargeMembershipsResponse, g6 as ChargeSavedPaymentMethodRequest, g7 as ChargeSavedPaymentMethodResponse, a5 as ChargeType, jz as ChargeTypeWithLiterals, fP as Chargeback, cx as ChargebackCreated, cy as ChargebackReversed, at as ChargebackStatus, jX as ChargebackStatusWithLiterals, fq as ChargedBy, aO as Color, gz as CommitDeltasRequest, gH as CommitDeltasResponse, d3 as CommittedDiffs, d4 as CommittedDiffsShippingUpdateInfoOneOf, iy as CommonAddress, iz as CommonAddressStreetOneOf, ke as CommonSearchWithEntityContext, ix as Company, il as Complete, bA as Coupon, gr as CreateOrderRequest, gv as CreateOrderResponse, fp as CreatePaymentGatewayOrderRequest, fr as CreatePaymentGatewayOrderResponse, cz as CreatedBy, cA as CreatedByStringOneOf, cm as CreditCardDetails, fJ as CreditCardPaymentMethodDetails, bf as CurrencyConversionDetails, gh as CursorPaging, gq as CursorPagingMetadata, go as CursorSearch, gp as CursorSearchPagingMethodOneOf, gk as Cursors, bK as CustomActivity, cO as CustomAllowedActions, cC as CustomField, aC as CustomFieldGroup, k4 as CustomFieldGroupWithLiterals, iU as CustomFieldValue, is as Customer, i8 as DecrementData, i7 as DecrementItemsQuantityRequest, i9 as DecrementItemsQuantityResponse, f6 as DelayedCaptureSettings, j8 as DeleteActivityIdentifiers, hA as DeleteActivityRequest, hB as DeleteActivityResponse, dC as DeleteByFilterOperation, dB as DeleteByIdsOperation, ez as DeleteContext, ae as DeleteStatus, jI as DeleteStatusWithLiterals, bo as DeliveryLogistics, bp as DeliveryLogisticsAddressOneOf, bs as DeliveryTimeSlot, a6 as DeltaPaymentOptionType, jA as DeltaPaymentOptionTypeWithLiterals, iW as Deposit, aE as DepositType, k6 as DepositTypeWithLiterals, aJ as DescriptionLine, aL as DescriptionLineDescriptionLineValueOneOf, aM as DescriptionLineName, D as DescriptionLineType, jb as DescriptionLineTypeWithLiterals, aK as DescriptionLineValueOneOf, g8 as DiffmatokyPayload, aY as DigitalFile, aR as Dimensions, z as DimensionsUnit, jc as DimensionsUnitWithLiterals, iM as Discount, iN as DiscountOneDiscountTypeOneOf, Y as DiscountReason, jq as DiscountReasonWithLiterals, bD as DiscountRule, bE as DiscountRuleName, X as DiscountType, jp as DiscountTypeWithLiterals, dl as DomainEvent, dm as DomainEventBodyOneOf, he as DownloadLinkSent, bQ as DraftOrderChangesApplied, dd as DraftOrderCommitSettings, gA as DraftOrderDiffs, gD as DraftOrderDiffsBillingUpdateInfoOneOf, gC as DraftOrderDiffsBuyerUpdateInfoOneOf, gE as DraftOrderDiffsRecipientUpdateInfoOneOf, gB as DraftOrderDiffsShippingUpdateInfoOneOf, f7 as Duration, ah as DurationUnit, jL as DurationUnitWithLiterals, eY as EditorlessAssigned, eZ as EditorlessUnassigned, it as Email, hn as EmailEdited, dK as Empty, dn as EntityCreatedEvent, dr as EntityDeletedEvent, dq as EntityUpdatedEvent, g9 as ErrorInformation, iY as EventMetadata, b9 as ExtendedFields, cu as ExternalReceipt, fU as ExternalReceiptInfo, aP as FocalPoint, cR as FormIdentifier, cQ as FormInfo, b1 as FreeTrialPeriod, hl as FulfillerEmailSent, L as FulfillmentStatus, d0 as FulfillmentStatusUpdated, jk as FulfillmentStatusWithLiterals, cH as FulfillmentStatusesAggregate, bl as FullAddressContactDetails, ga as GetOrderRequest, gb as GetOrderResponse, f8 as GetPaymentCollectabilityStatusRequest, fl as GetRefundabilityStatusRequest, fm as GetRefundabilityStatusResponse, i3 as GetShipmentsRequest, i4 as GetShipmentsResponse, fR as GiftCardPaymentDetails, cd as GiftCardPaymentRefund, e_ as HasCustomEmailConfigurationsRequest, e$ as HasCustomEmailConfigurationsResponse, iq as IdAndVersion, du as IdentificationData, dv as IdentificationDataIdOneOf, k8 as ImportOrderApplicationErrors, df as ImportOrderRequest, dg as ImportOrderResponse, c_ as ImportedOrderDeleted, h7 as InternalActivity, h8 as InternalActivityContentOneOf, dz as InternalDocument, dD as InternalDocumentUpdateByFilterOperation, dA as InternalDocumentUpdateOperation, gc as InternalQueryOrdersRequest, gi as InternalQueryOrdersResponse, dE as InternalUpdateExistingOperation, a7 as InventoryAction, jB as InventoryActionWithLiterals, de as InventoryUpdateDetails, hj as InvoiceAdded, iC as InvoiceDates, iT as InvoiceDynamicPriceTotals, ir as InvoiceFields, hk as InvoiceSent, ip as InvoiceSentEvent, aF as InvoiceStatus, k7 as InvoiceStatusWithLiterals, iR as InvoicesPayment, f2 as IsInAutomationMigrationPopulationRequest, f3 as IsInAutomationMigrationPopulationResponse, d5 as ItemChangedDetails, bG as ItemCombination, bH as ItemCombinationLineItem, fi as ItemMetadata, bc as ItemModifier, aV as ItemTaxFullDetails, aS as ItemType, aT as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, jd as ItemTypePresetWithLiterals, iL as ItemizedFee, J as JurisdictionType, jf as JurisdictionTypeWithLiterals, iE as LineItem, c0 as LineItemAmount, bT as LineItemChanges, d7 as LineItemDelta, d8 as LineItemDeltaDeltaOneOf, bX as LineItemDescriptionLineChange, bF as LineItemDiscount, bP as LineItemExchangeData, iI as LineItemMetaData, bY as LineItemModifiersChange, bV as LineItemPriceChange, bW as LineItemProductNameChange, bU as LineItemQuantityChange, Z as LineItemQuantityChangeType, jr as LineItemQuantityChangeTypeWithLiterals, eb as LineItemRefund, f$ as LineItemRefundSummary, iG as LineItemTax, aX as LineItemTaxBreakdown, aW as LineItemTaxInfo, hD as LineItemUpdate, iD as LineItems, iJ as Locale, cK as Location, b6 as LocationAndQuantity, c1 as ManagedAdditionalFee, b_ as ManagedDiscount, bZ as ManagedLineItem, am as ManuallyRefundableReason, jQ as ManuallyRefundableReasonWithLiterals, hK as MarkAsFulfilledRequest, hL as MarkAsFulfilledResponse, hQ as MarkAsUnfulfilledRequest, hR as MarkAsUnfulfilledResponse, fd as MarkOrderAsPaidRequest, fe as MarkOrderAsPaidResponse, hF as MarkOrderAsSeenByHumanRequest, hG as MarkOrderAsSeenByHumanResponse, h4 as MaskedOrderLineItem, ft as MembershipChargeItem, fu as MembershipName, fS as MembershipPaymentDetails, ce as MembershipPaymentRefund, au as MembershipPaymentStatus, jY as MembershipPaymentStatusWithLiterals, bL as MerchantComment, bB as MerchantDiscount, bC as MerchantDiscountMerchantDiscountReasonOneOf, dt as MessageEnvelope, iS as MetaData, et as MetaSiteSpecialEvent, eu as MetaSiteSpecialEventPayloadOneOf, ba as ModifierGroup, ad as Namespace, eJ as NamespaceChanged, jH as NamespaceWithLiterals, bO as NewExchangeOrderCreated, al as NonRefundableReason, jP as NonRefundableReasonWithLiterals, eO as OdeditorAssigned, eP as OdeditorUnassigned, a3 as OrderActionType, jx as OrderActionTypeWithLiterals, $ as OrderActivityTypeEnumActivityType, jt as OrderActivityTypeEnumActivityTypeWithLiterals, ay as OrderApprovalStrategy, k0 as OrderApprovalStrategyWithLiterals, cU as OrderApproved, hd as OrderCanceled, d1 as OrderCanceledEventOrderCanceled, bR as OrderChange, bS as OrderChangeValueOneOf, gu as OrderCreateNotifications, bN as OrderCreatedFromExchange, gs as OrderCreationSettings, gt as OrderCreationSettingsEditableByOneOf, d2 as OrderDeltasCommitted, hb as OrderFulfilled, cZ as OrderImported, cX as OrderItemsRestocked, aG as OrderLineItem, d6 as OrderLineItemChangedDetails, hc as OrderNotFulfilled, ha as OrderPaid, hp as OrderPartiallyPaid, hq as OrderPending, h9 as OrderPlaced, bM as OrderRefunded, hr as OrderRejected, cW as OrderRejectedEventOrderRejected, j4 as OrderSearchSpec, cL as OrderSettings, cM as OrderSettingsAllowedActionsOneOf, cN as OrderSettingsEditableByOneOf, R as OrderStatus, jo as OrderStatusWithLiterals, bx as OrderTaxBreakdown, bw as OrderTaxInfo, fD as OrderTransactions, cV as OrdersExperiments, af as Origin, jJ as OriginWithLiterals, cP as OwnerApps, fE as Payment, cn as PaymentCanceled, co as PaymentCanceledPaymentDetailsOneOf, ai as PaymentCollectabilityStatus, jM as PaymentCollectabilityStatusWithLiterals, kb as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, j1 as PaymentCollectionCreatePaymentGatewayOrderOptions, ka as PaymentCollectionMarkOrderAsPaidApplicationErrors, j0 as PaymentCollectionMarkOrderAsPaidOptions, cp as PaymentDeclined, cq as PaymentDeclinedPaymentDetailsOneOf, fQ as PaymentMethodName, E as PaymentOptionType, je as PaymentOptionTypeWithLiterals, fF as PaymentPaymentDetailsOneOf, ci as PaymentPending, cj as PaymentPendingPaymentDetailsOneOf, fG as PaymentReceiptInfoOneOf, fy as PaymentRefund, cg as PaymentRefundFailed, cf as PaymentRefunded, av as PaymentStatus, K as PaymentStatusEnumPaymentStatus, jj as PaymentStatusEnumPaymentStatusWithLiterals, c$ as PaymentStatusUpdated, jZ as PaymentStatusWithLiterals, iQ as Payments, iw as Phone, aQ as PhysicalProperties, eQ as PicassoAssigned, eR as PicassoUnassigned, br as PickupAddress, bq as PickupDetails, Q as PickupMethod, jn as PickupMethodWithLiterals, ho as PickupReadyEmailSent, az as Placement, k1 as PlacementWithLiterals, aN as PlainTextValue, cT as PlatformFee, cS as PlatformFeeSummary, gg as PlatformPaging, gj as PlatformPagingMetadata, gd as PlatformQuery, ge as PlatformQueryPagingMethodOneOf, aj as PredefinedPaymentMethod, jN as PredefinedPaymentMethodWithLiterals, f4 as PreparePaymentCollectionRequest, el as PreviewBuyerConfirmationEmailRequest, em as PreviewBuyerConfirmationEmailResponse, ej as PreviewBuyerPaymentsReceivedEmailRequest, ek as PreviewBuyerPaymentsReceivedEmailResponse, en as PreviewBuyerPickupConfirmationEmailRequest, eo as PreviewBuyerPickupConfirmationEmailResponse, ef as PreviewCancelEmailRequest, eg as PreviewCancelEmailResponse, eh as PreviewCancelRefundEmailRequest, ei as PreviewCancelRefundEmailResponse, e6 as PreviewEmailByTypeRequest, e7 as PreviewEmailByTypeResponse, aa as PreviewEmailType, jE as PreviewEmailTypeWithLiterals, e8 as PreviewRefundEmailRequest, ee as PreviewRefundEmailResponse, er as PreviewResendDownloadLinksEmailRequest, es as PreviewResendDownloadLinksEmailResponse, ep as PreviewShippingConfirmationEmailRequest, eq as PreviewShippingConfirmationEmailResponse, b5 as PriceDescription, bg as PriceSummary, aH as ProductName, hu as PublicActivity, hv as PublicActivityContentOneOf, gl as QueryOrderRequest, gm as QueryOrderResponse, iu as QuotesAddress, ar as Reason, jV as ReasonWithLiterals, cr as ReceiptCreated, cs as ReceiptCreatedReceiptInfoOneOf, cv as ReceiptSent, cw as ReceiptSentReceiptInfoOneOf, k9 as RecordManuallyCollectedPaymentApplicationErrors, i$ as RecordManuallyCollectedPaymentOptions, f9 as RecordManuallyCollectedPaymentRequest, fc as RecordManuallyCollectedPaymentResponse, f5 as RedirectUrls, fW as Refund, e9 as RefundDetails, c9 as RefundInitiated, ea as RefundItem, f_ as RefundItemsBreakdown, fz as RefundSideEffects, aw as RefundStatus, fY as RefundStatusInfo, j_ as RefundStatusWithLiterals, fX as RefundTransaction, fn as Refundability, fo as RefundabilityAdditionalRefundabilityInfoOneOf, ak as RefundableStatus, jO as RefundableStatusWithLiterals, ch as RefundedAsStoreCredit, ca as RefundedPayment, cb as RefundedPaymentKindOneOf, ck as RegularPayment, fH as RegularPaymentDetails, fI as RegularPaymentDetailsPaymentMethodDetailsOneOf, cl as RegularPaymentPaymentMethodDetailsOneOf, cc as RegularPaymentRefund, io as Reschedule, fA as RestockInfo, fB as RestockItem, aU as RestockLocation, an as RestockType, jR as RestockTypeWithLiterals, dp as RestoreInfo, c5 as SavedPaymentMethod, ag as ScheduledAction, jK as ScheduledActionWithLiterals, gn as SearchOrdersRequest, dM as SendBuyerConfirmationEmailRequest, dN as SendBuyerConfirmationEmailResponse, dO as SendBuyerPaymentsReceivedEmailRequest, dP as SendBuyerPaymentsReceivedEmailResponse, dQ as SendBuyerPickupConfirmationEmailRequest, dR as SendBuyerPickupConfirmationEmailResponse, dU as SendBuyerShippingConfirmationEmailRequest, dV as SendBuyerShippingConfirmationEmailResponse, d_ as SendCancelRefundEmailRequest, d$ as SendCancelRefundEmailResponse, e2 as SendFulfillmentEmailRequest, e3 as SendFulfillmentEmailResponse, dY as SendMerchantOrderReceivedNotificationRequest, dZ as SendMerchantOrderReceivedNotificationResponse, e4 as SendMerchantOrderReceivedPushRequest, e5 as SendMerchantOrderReceivedPushResponse, ie as SendOrderUpdatedDomainEventRequest, ig as SendOrderUpdatedDomainEventResponse, e0 as SendRefundEmailRequest, e1 as SendRefundEmailResponse, fv as ServiceProperties, eF as ServiceProvisioned, eG as ServiceRemoved, i_ as SetOrderNumberCounterOptions, dh as SetOrderNumberCounterRequest, di as SetOrderNumberCounterResponse, hm as ShippingAddressEdited, hi as ShippingConfirmationEmailSent, c4 as ShippingInformation, c3 as ShippingInformationChange, bt as ShippingPrice, ed as ShippingRefund, bu as ShippingRegion, ew as SiteCreated, ac as SiteCreatedContext, jG as SiteCreatedContextWithLiterals, ey as SiteDeleted, eI as SiteHardDeleted, eD as SiteMarkedAsTemplate, eE as SiteMarkedAsWixSite, eB as SitePublished, eN as SitePurgedExternally, eH as SiteRenamed, ex as SiteTransferred, eA as SiteUndeleted, eC as SiteUnpublished, eM as SiteUrlChanged, ax as SortOrder, j$ as SortOrderWithLiterals, gf as Sorting, iH as Source, aB as SourceType, k3 as SourceTypeWithLiterals, a4 as SpecificItemsCouponBehavior, jy as SpecificItemsCouponBehaviorWithLiterals, iB as StandardDetails, ab as State, jF as StateWithLiterals, bj as StreetAddress, eK as StudioAssigned, eU as StudioTwoAssigned, eV as StudioTwoUnassigned, eL as StudioUnassigned, iA as Subdivision, aA as SubdivisionType, k2 as SubdivisionTypeWithLiterals, a$ as SubscriptionDescription, F as SubscriptionFrequency, jg as SubscriptionFrequencyWithLiterals, aZ as SubscriptionInfo, b0 as SubscriptionSettings, a_ as SubscriptionTitle, cJ as TagList, cI as Tags, ic as TagsTagList, ib as TagsTags, ih as Task, ij as TaskAction, ik as TaskActionActionOneOf, ii as TaskKey, bv as TaxSummary, b7 as TaxableAddress, b8 as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, ji as TaxableAddressTypeWithLiterals, iK as TotalPrice, c2 as TotalPriceChange, hh as TrackingLinkAdded, hf as TrackingNumberAdded, hg as TrackingNumberEdited, ao as TransactionStatus, jS as TransactionStatusWithLiterals, bb as TranslatableString, b$ as TranslatedValue, kc as TriggerRefundApplicationErrors, j3 as TriggerRefundOptions, fx as TriggerRefundRequest, fC as TriggerRefundResponse, dL as TriggerReindexOrderRequest, dI as TriggerReindexRequest, dJ as TriggerReindexResponse, gO as UnArchiveOrderRequest, gP as UnArchiveOrderResponse, j7 as UpdateActivityIdentifiers, hy as UpdateActivityRequest, hz as UpdateActivityResponse, g$ as UpdateBillingContactDetailsRequest, h0 as UpdateBillingContactDetailsResponse, gX as UpdateBuyerEmailRequest, gY as UpdateBuyerEmailResponse, gU as UpdateBuyerInfoRequest, gW as UpdateBuyerInfoResponse, dx as UpdateInternalDocumentsEvent, dy as UpdateInternalDocumentsEventOperationOneOf, hC as UpdateLineItemsDescriptionLinesRequest, hE as UpdateLineItemsDescriptionLinesResponse, j6 as UpdateOrderLineItem, j5 as UpdateOrderLineItemIdentifiers, h1 as UpdateOrderLineItemRequest, h2 as UpdateOrderLineItemResponse, h3 as UpdateOrderLineItemsRequest, h5 as UpdateOrderLineItemsResponse, gw as UpdateOrderRequest, gx as UpdateOrderResponse, gZ as UpdateOrderShippingAddressRequest, g_ as UpdateOrderShippingAddressResponse, kd as UpdateOrderStatusApplicationErrors, hI as UpdateOrderStatusRequest, hJ as UpdateOrderStatusResponse, fa as UserDefinedPaymentMethodName, fb as UserDefinedPaymentMethodNameKindOneOf, eX as UserDomainMediaDisabled, eW as UserDomainMediaEnabled, h$ as V1BulkMarkOrdersAsPaidRequest, i0 as V1BulkMarkOrdersAsPaidResponse, i1 as V1CreatePaymentGatewayOrderRequest, i2 as V1CreatePaymentGatewayOrderResponse, gF as V1LineItemDelta, gG as V1LineItemDeltaDeltaOneOf, hZ as V1MarkOrderAsPaidRequest, h_ as V1MarkOrderAsPaidResponse, cY as V1RestockItem, fO as V1ScheduledAction, bn as V1ShippingInformation, iV as Value, aD as ValueType, k5 as ValueTypeWithLiterals, bm as VatId, N as VatType, jm as VatTypeWithLiterals, dG as VersionedDeleteByIdsOperation, dH as VersionedDocumentId, dF as VersionedDocumentUpdateOperation, a9 as VersioningMode, jD as VersioningModeWithLiterals, g4 as VoidAuthorizedPaymentsRequest, a8 as WebhookIdentityType, jC as WebhookIdentityTypeWithLiterals, W as WeightUnit, jl as WeightUnitWithLiterals, ct as WixReceipt, fT as WixReceiptInfo, eS as WixelAssigned, eT as WixelUnassigned, ja as utils } from './ecom-v1-order-orders.universal-Dyxd-jx1.mjs';
2
+ import { P as Price, a as PreparePaymentCollectionOptions, b as PreparePaymentCollectionResponse, c as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, V as VoidAuthorizedPaymentsResponse, d as VoidAuthorizedPaymentsApplicationErrors, e as PaymentCapture, C as CaptureAuthorizedPaymentsResponse, f as CaptureAuthorizedPaymentsApplicationErrors, O as Order, g as GetOrderApplicationErrors, h as OrderSearch, S as SearchOrdersResponse, i as CreateOrderOptions, j as CreateOrderApplicationErrors, U as UpdateOrder, k as UpdateOrderApplicationErrors, M as MaskedOrder, B as BulkUpdateOrdersOptions, l as BulkUpdateOrdersResponse, A as AddActivitiesOptions, m as AddActivitiesResponse, n as CancelOrderOptions, o as CancelOrderResponse, p as CancelOrderApplicationErrors, q as BulkUpdateOrderTagsOptions, r as BulkUpdateOrderTagsResponse, s as OrderApprovedEnvelope, t as OrderCanceledEnvelope, u as OrderCommittedEnvelope, v as OrderCreatedEnvelope, w as OrderFulfilledEnvelope, x as OrderPaymentStatusUpdatedEnvelope, y as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-D5-HtCQc.mjs';
3
+ export { dF as AccountInfo, j0 as AccountInfoMetadata, dz as ActionEvent, as as ActionType, jZ as ActionTypeWithLiterals, bI as Activity, bJ as ActivityContentOneOf, _ as ActivityType, jv as ActivityTypeWithLiterals, hA as AddActivitiesRequest, hw as AddActivityRequest, hz as AddActivityResponse, h9 as AddInternalActivityRequest, hv as AddInternalActivityResponse, f3 as AddToAutomationMigrationPopulationRequest, f4 as AddToAutomationMigrationPopulationResponse, cG as AdditionalFee, dm as AdditionalFeeDelta, dn as AdditionalFeeDeltaDeltaOneOf, ef as AdditionalFeeRefund, a2 as AdditionalFeeSource, jz as AdditionalFeeSourceWithLiterals, bi as Address, iy as AddressDescription, bk as AddressLocation, bh as AddressWithContact, H as AdjustmentType, jk as AdjustmentTypeWithLiterals, jc as AggregateOrdersOptions, i8 as AggregateOrdersRequest, i9 as AggregateOrdersResponse, g0 as AggregatedRefundSummary, fm as ApplicationError, by as AppliedDiscount, dk as AppliedDiscountDelta, dl as AppliedDiscountDeltaDeltaOneOf, bz as AppliedDiscountDiscountSourceOneOf, gL as ArchiveOrderRequest, gM as ArchiveOrderResponse, ey as Asset, a0 as AttributionSource, jx as AttributionSourceWithLiterals, fP as AuthorizationActionFailureDetails, fO as AuthorizationCapture, ap as AuthorizationCaptureStatus, jW as AuthorizationCaptureStatusWithLiterals, fN as AuthorizationDetails, fQ as AuthorizationVoid, aq as AuthorizationVoidStatus, jX as AuthorizationVoidStatusWithLiterals, c7 as AuthorizedPaymentCaptured, c6 as AuthorizedPaymentCreated, c8 as AuthorizedPaymentVoided, cE as Balance, cD as BalanceSummary, i_ as BaseEventMetadata, iI as BigDecimalWrapper, b3 as BillingAdjustment, b4 as BillingAdjustmentPriceSummary, b2 as BillingSettings, fn as BulkActionMetadata, gP as BulkArchiveOrdersByFilterRequest, gQ as BulkArchiveOrdersByFilterResponse, gN as BulkArchiveOrdersRequest, gO as BulkArchiveOrdersResponse, dK as BulkDeleteImportedOrdersRequest, dL as BulkDeleteImportedOrdersResponse, hR as BulkMarkAsFulfilledByFilterRequest, hS as BulkMarkAsFulfilledByFilterResponse, hP as BulkMarkAsFulfilledRequest, hQ as BulkMarkAsFulfilledResponse, hX as BulkMarkAsUnfulfilledByFilterRequest, hY as BulkMarkAsUnfulfilledByFilterResponse, hV as BulkMarkAsUnfulfilledRequest, hW as BulkMarkAsUnfulfilledResponse, fi as BulkMarkOrdersAsPaidRequest, fj as BulkMarkOrdersAsPaidResponse, fk as BulkOrderResult, dV as BulkSendBuyerPickupConfirmationEmailsRequest, dW as BulkSendBuyerPickupConfirmationEmailsResponse, dZ as BulkSendBuyerShippingConfirmationEmailsRequest, d_ as BulkSendBuyerShippingConfirmationEmailsResponse, hZ as BulkSetBusinessLocationRequest, h_ as BulkSetBusinessLocationResponse, h$ as BulkSetBusinessLocationResult, gV as BulkUnArchiveOrdersByFilterRequest, gW as BulkUnArchiveOrdersByFilterResponse, gT as BulkUnArchiveOrdersRequest, gU as BulkUnArchiveOrdersResponse, id as BulkUpdateOrderTagsRequest, ih as BulkUpdateOrderTagsResult, gB as BulkUpdateOrdersRequest, bd as BuyerInfo, be as BuyerInfoIdOneOf, gY as BuyerInfoUpdate, g4 as CalculateRefundItemRequest, g6 as CalculateRefundItemResponse, g3 as CalculateRefundRequest, g5 as CalculateRefundResponse, iS as CalculatedTax, iR as CalculatedTaxes, iq as Cancel, hK as CancelOrderRequest, g8 as CaptureAuthorizedPaymentsRequest, cF as CashRounding, fY as CashRoundingDetails, aI as CatalogReference, cB as ChannelInfo, a1 as ChannelType, jy as ChannelTypeWithLiterals, j5 as ChargeMembershipsOptions, fv as ChargeMembershipsRequest, fz as ChargeMembershipsResponse, g9 as ChargeSavedPaymentMethodRequest, ga as ChargeSavedPaymentMethodResponse, a5 as ChargeType, jC as ChargeTypeWithLiterals, fS as Chargeback, cx as ChargebackCreated, cy as ChargebackReversed, at as ChargebackStatus, j_ as ChargebackStatusWithLiterals, ft as ChargedBy, aO as Color, gC as CommitDeltasRequest, gK as CommitDeltasResponse, de as CommittedDiffs, df as CommittedDiffsShippingUpdateInfoOneOf, iB as CommonAddress, iC as CommonAddressStreetOneOf, kh as CommonSearchWithEntityContext, iA as Company, ip as Complete, bA as Coupon, gu as CreateOrderRequest, gy as CreateOrderResponse, fs as CreatePaymentGatewayOrderRequest, fu as CreatePaymentGatewayOrderResponse, cz as CreatedBy, cA as CreatedByStringOneOf, cm as CreditCardDetails, fM as CreditCardPaymentMethodDetails, bf as CurrencyConversionDetails, gk as CursorPaging, gt as CursorPagingMetadata, gr as CursorSearch, gs as CursorSearchPagingMethodOneOf, gn as Cursors, bK as CustomActivity, cO as CustomAllowedActions, cC as CustomField, aC as CustomFieldGroup, k7 as CustomFieldGroupWithLiterals, iX as CustomFieldValue, iv as Customer, ib as DecrementData, ia as DecrementItemsQuantityRequest, ic as DecrementItemsQuantityResponse, f9 as DelayedCaptureSettings, jb as DeleteActivityIdentifiers, hD as DeleteActivityRequest, hE as DeleteActivityResponse, cZ as DeleteByFilterOperation, cY as DeleteByIdsOperation, eC as DeleteContext, ae as DeleteStatus, jL as DeleteStatusWithLiterals, bo as DeliveryLogistics, bp as DeliveryLogisticsAddressOneOf, bs as DeliveryTimeSlot, a7 as DeltaPaymentOptionType, jE as DeltaPaymentOptionTypeWithLiterals, iZ as Deposit, aE as DepositType, k9 as DepositTypeWithLiterals, aJ as DescriptionLine, aL as DescriptionLineDescriptionLineValueOneOf, aM as DescriptionLineName, D as DescriptionLineType, je as DescriptionLineTypeWithLiterals, aK as DescriptionLineValueOneOf, gb as DiffmatokyPayload, aY as DigitalFile, aR as Dimensions, z as DimensionsUnit, jf as DimensionsUnitWithLiterals, iP as Discount, iQ as DiscountOneDiscountTypeOneOf, Y as DiscountReason, jt as DiscountReasonWithLiterals, bD as DiscountRule, bE as DiscountRuleName, X as DiscountType, js as DiscountTypeWithLiterals, dt as DomainEvent, du as DomainEventBodyOneOf, hh as DownloadLinkSent, bQ as DraftOrderChangesApplied, dp as DraftOrderCommitSettings, gD as DraftOrderDiffs, gG as DraftOrderDiffsBillingUpdateInfoOneOf, gF as DraftOrderDiffsBuyerUpdateInfoOneOf, gH as DraftOrderDiffsRecipientUpdateInfoOneOf, gE as DraftOrderDiffsShippingUpdateInfoOneOf, fa as Duration, ah as DurationUnit, jO as DurationUnitWithLiterals, e$ as EditorlessAssigned, f0 as EditorlessUnassigned, iw as Email, hq as EmailEdited, dA as Empty, dv as EntityCreatedEvent, dy as EntityDeletedEvent, dx as EntityUpdatedEvent, gc as ErrorInformation, i$ as EventMetadata, b9 as ExtendedFields, cu as ExternalReceipt, fX as ExternalReceiptInfo, aP as FocalPoint, cR as FormIdentifier, cQ as FormInfo, b1 as FreeTrialPeriod, ho as FulfillerEmailSent, L as FulfillmentStatus, db as FulfillmentStatusUpdated, jn as FulfillmentStatusWithLiterals, cH as FulfillmentStatusesAggregate, bl as FullAddressContactDetails, gd as GetOrderRequest, ge as GetOrderResponse, fb as GetPaymentCollectabilityStatusRequest, fo as GetRefundabilityStatusRequest, fp as GetRefundabilityStatusResponse, i6 as GetShipmentsRequest, i7 as GetShipmentsResponse, fU as GiftCardPaymentDetails, cd as GiftCardPaymentRefund, f1 as HasCustomEmailConfigurationsRequest, f2 as HasCustomEmailConfigurationsResponse, it as IdAndVersion, dD as IdentificationData, dE as IdentificationDataIdOneOf, kb as ImportOrderApplicationErrors, dG as ImportOrderRequest, dH as ImportOrderResponse, d9 as ImportedOrderDeleted, ha as InternalActivity, hb as InternalActivityContentOneOf, cW as InternalDocument, c_ as InternalDocumentUpdateByFilterOperation, cX as InternalDocumentUpdateOperation, gf as InternalQueryOrdersRequest, gl as InternalQueryOrdersResponse, c$ as InternalUpdateExistingOperation, a8 as InventoryAction, jF as InventoryActionWithLiterals, dq as InventoryUpdateDetails, hm as InvoiceAdded, iF as InvoiceDates, iW as InvoiceDynamicPriceTotals, iu as InvoiceFields, hn as InvoiceSent, is as InvoiceSentEvent, aF as InvoiceStatus, ka as InvoiceStatusWithLiterals, iU as InvoicesPayment, f5 as IsInAutomationMigrationPopulationRequest, f6 as IsInAutomationMigrationPopulationResponse, dg as ItemChangedDetails, bG as ItemCombination, bH as ItemCombinationLineItem, fl as ItemMetadata, bc as ItemModifier, aV as ItemTaxFullDetails, aS as ItemType, aT as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, jg as ItemTypePresetWithLiterals, iO as ItemizedFee, J as JurisdictionType, ji as JurisdictionTypeWithLiterals, iH as LineItem, c0 as LineItemAmount, bT as LineItemChanges, di as LineItemDelta, dj as LineItemDeltaDeltaOneOf, bX as LineItemDescriptionLineChange, bF as LineItemDiscount, bP as LineItemExchangeData, iL as LineItemMetaData, bY as LineItemModifiersChange, bV as LineItemPriceChange, bW as LineItemProductNameChange, bU as LineItemQuantityChange, Z as LineItemQuantityChangeType, ju as LineItemQuantityChangeTypeWithLiterals, ee as LineItemRefund, g2 as LineItemRefundSummary, iJ as LineItemTax, aX as LineItemTaxBreakdown, aW as LineItemTaxInfo, hG as LineItemUpdate, iG as LineItems, iM as Locale, cK as Location, b6 as LocationAndQuantity, c1 as ManagedAdditionalFee, b_ as ManagedDiscount, bZ as ManagedLineItem, am as ManuallyRefundableReason, jT as ManuallyRefundableReasonWithLiterals, hN as MarkAsFulfilledRequest, hO as MarkAsFulfilledResponse, hT as MarkAsUnfulfilledRequest, hU as MarkAsUnfulfilledResponse, fg as MarkOrderAsPaidRequest, fh as MarkOrderAsPaidResponse, hI as MarkOrderAsSeenByHumanRequest, hJ as MarkOrderAsSeenByHumanResponse, h7 as MaskedOrderLineItem, fw as MembershipChargeItem, fx as MembershipName, fV as MembershipPaymentDetails, ce as MembershipPaymentRefund, au as MembershipPaymentStatus, j$ as MembershipPaymentStatusWithLiterals, bL as MerchantComment, bB as MerchantDiscount, bC as MerchantDiscountMerchantDiscountReasonOneOf, dC as MessageEnvelope, iV as MetaData, ew as MetaSiteSpecialEvent, ex as MetaSiteSpecialEventPayloadOneOf, ba as ModifierGroup, ad as Namespace, eM as NamespaceChanged, jK as NamespaceWithLiterals, bO as NewExchangeOrderCreated, al as NonRefundableReason, jS as NonRefundableReasonWithLiterals, eR as OdeditorAssigned, eS as OdeditorUnassigned, a3 as OrderActionType, jA as OrderActionTypeWithLiterals, $ as OrderActivityTypeEnumActivityType, jw as OrderActivityTypeEnumActivityTypeWithLiterals, ay as OrderApprovalStrategy, k3 as OrderApprovalStrategyWithLiterals, d3 as OrderApproved, hg as OrderCanceled, dc as OrderCanceledEventOrderCanceled, bR as OrderChange, bS as OrderChangeValueOneOf, gx as OrderCreateNotifications, bN as OrderCreatedFromExchange, gv as OrderCreationSettings, gw as OrderCreationSettingsEditableByOneOf, dd as OrderDeltasCommitted, he as OrderFulfilled, d8 as OrderImported, d6 as OrderItemsRestocked, aG as OrderLineItem, dh as OrderLineItemChangedDetails, hf as OrderNotFulfilled, hd as OrderPaid, hs as OrderPartiallyPaid, ht as OrderPending, hc as OrderPlaced, bM as OrderRefunded, hu as OrderRejected, d5 as OrderRejectedEventOrderRejected, j7 as OrderSearchSpec, cL as OrderSettings, cM as OrderSettingsAllowedActionsOneOf, cN as OrderSettingsEditableByOneOf, R as OrderStatus, jr as OrderStatusWithLiterals, bx as OrderTaxBreakdown, bw as OrderTaxInfo, fG as OrderTransactions, d4 as OrdersExperiments, af as Origin, jM as OriginWithLiterals, cP as OwnerApps, fH as Payment, cn as PaymentCanceled, co as PaymentCanceledPaymentDetailsOneOf, ai as PaymentCollectabilityStatus, jP as PaymentCollectabilityStatusWithLiterals, ke as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, j4 as PaymentCollectionCreatePaymentGatewayOrderOptions, kd as PaymentCollectionMarkOrderAsPaidApplicationErrors, j3 as PaymentCollectionMarkOrderAsPaidOptions, cp as PaymentDeclined, cq as PaymentDeclinedPaymentDetailsOneOf, fT as PaymentMethodName, E as PaymentOptionType, jh as PaymentOptionTypeWithLiterals, fI as PaymentPaymentDetailsOneOf, ci as PaymentPending, cj as PaymentPendingPaymentDetailsOneOf, fJ as PaymentReceiptInfoOneOf, fB as PaymentRefund, cg as PaymentRefundFailed, cf as PaymentRefunded, av as PaymentStatus, K as PaymentStatusEnumPaymentStatus, jm as PaymentStatusEnumPaymentStatusWithLiterals, da as PaymentStatusUpdated, k0 as PaymentStatusWithLiterals, iT as Payments, iz as Phone, aQ as PhysicalProperties, eT as PicassoAssigned, eU as PicassoUnassigned, br as PickupAddress, bq as PickupDetails, Q as PickupMethod, jq as PickupMethodWithLiterals, hr as PickupReadyEmailSent, az as Placement, k4 as PlacementWithLiterals, aN as PlainTextValue, cT as PlatformFee, cS as PlatformFeeSummary, gj as PlatformPaging, gm as PlatformPagingMetadata, gg as PlatformQuery, gh as PlatformQueryPagingMethodOneOf, aj as PredefinedPaymentMethod, jQ as PredefinedPaymentMethodWithLiterals, f7 as PreparePaymentCollectionRequest, eo as PreviewBuyerConfirmationEmailRequest, ep as PreviewBuyerConfirmationEmailResponse, em as PreviewBuyerPaymentsReceivedEmailRequest, en as PreviewBuyerPaymentsReceivedEmailResponse, eq as PreviewBuyerPickupConfirmationEmailRequest, er as PreviewBuyerPickupConfirmationEmailResponse, ei as PreviewCancelEmailRequest, ej as PreviewCancelEmailResponse, ek as PreviewCancelRefundEmailRequest, el as PreviewCancelRefundEmailResponse, e9 as PreviewEmailByTypeRequest, ea as PreviewEmailByTypeResponse, aa as PreviewEmailType, jH as PreviewEmailTypeWithLiterals, eb as PreviewRefundEmailRequest, eh as PreviewRefundEmailResponse, eu as PreviewResendDownloadLinksEmailRequest, ev as PreviewResendDownloadLinksEmailResponse, es as PreviewShippingConfirmationEmailRequest, et as PreviewShippingConfirmationEmailResponse, b5 as PriceDescription, bg as PriceSummary, aH as ProductName, hx as PublicActivity, hy as PublicActivityContentOneOf, go as QueryOrderRequest, gp as QueryOrderResponse, ix as QuotesAddress, ar as Reason, jY as ReasonWithLiterals, cr as ReceiptCreated, cs as ReceiptCreatedReceiptInfoOneOf, cv as ReceiptSent, cw as ReceiptSentReceiptInfoOneOf, kc as RecordManuallyCollectedPaymentApplicationErrors, j2 as RecordManuallyCollectedPaymentOptions, fc as RecordManuallyCollectedPaymentRequest, ff as RecordManuallyCollectedPaymentResponse, f8 as RedirectUrls, fZ as Refund, ec as RefundDetails, c9 as RefundInitiated, ed as RefundItem, g1 as RefundItemsBreakdown, fC as RefundSideEffects, aw as RefundStatus, f$ as RefundStatusInfo, k1 as RefundStatusWithLiterals, f_ as RefundTransaction, fq as Refundability, fr as RefundabilityAdditionalRefundabilityInfoOneOf, ak as RefundableStatus, jR as RefundableStatusWithLiterals, ch as RefundedAsStoreCredit, ca as RefundedPayment, cb as RefundedPaymentKindOneOf, ck as RegularPayment, fK as RegularPaymentDetails, fL as RegularPaymentDetailsPaymentMethodDetailsOneOf, cl as RegularPaymentPaymentMethodDetailsOneOf, cc as RegularPaymentRefund, ir as Reschedule, fD as RestockInfo, fE as RestockItem, aU as RestockLocation, an as RestockType, jU as RestockTypeWithLiterals, dw as RestoreInfo, c5 as SavedPaymentMethod, ag as ScheduledAction, jN as ScheduledActionWithLiterals, gq as SearchOrdersRequest, dP as SendBuyerConfirmationEmailRequest, dQ as SendBuyerConfirmationEmailResponse, dR as SendBuyerPaymentsReceivedEmailRequest, dS as SendBuyerPaymentsReceivedEmailResponse, dT as SendBuyerPickupConfirmationEmailRequest, dU as SendBuyerPickupConfirmationEmailResponse, dX as SendBuyerShippingConfirmationEmailRequest, dY as SendBuyerShippingConfirmationEmailResponse, e1 as SendCancelRefundEmailRequest, e2 as SendCancelRefundEmailResponse, e5 as SendFulfillmentEmailRequest, e6 as SendFulfillmentEmailResponse, d$ as SendMerchantOrderReceivedNotificationRequest, e0 as SendMerchantOrderReceivedNotificationResponse, e7 as SendMerchantOrderReceivedPushRequest, e8 as SendMerchantOrderReceivedPushResponse, ii as SendOrderUpdatedDomainEventRequest, ij as SendOrderUpdatedDomainEventResponse, e3 as SendRefundEmailRequest, e4 as SendRefundEmailResponse, fy as ServiceProperties, eI as ServiceProvisioned, eJ as ServiceRemoved, j1 as SetOrderNumberCounterOptions, dI as SetOrderNumberCounterRequest, dJ as SetOrderNumberCounterResponse, hp as ShippingAddressEdited, hl as ShippingConfirmationEmailSent, c4 as ShippingInformation, c3 as ShippingInformationChange, bt as ShippingPrice, eg as ShippingRefund, bu as ShippingRegion, ez as SiteCreated, ac as SiteCreatedContext, jJ as SiteCreatedContextWithLiterals, eB as SiteDeleted, eL as SiteHardDeleted, eG as SiteMarkedAsTemplate, eH as SiteMarkedAsWixSite, eE as SitePublished, eQ as SitePurgedExternally, eK as SiteRenamed, eA as SiteTransferred, eD as SiteUndeleted, eF as SiteUnpublished, eP as SiteUrlChanged, ax as SortOrder, k2 as SortOrderWithLiterals, gi as Sorting, iK as Source, aB as SourceType, k6 as SourceTypeWithLiterals, a4 as SpecificItemsCouponBehavior, jB as SpecificItemsCouponBehaviorWithLiterals, iE as StandardDetails, ab as State, jI as StateWithLiterals, bj as StreetAddress, eN as StudioAssigned, eX as StudioTwoAssigned, eY as StudioTwoUnassigned, eO as StudioUnassigned, iD as Subdivision, aA as SubdivisionType, k5 as SubdivisionTypeWithLiterals, a$ as SubscriptionDescription, F as SubscriptionFrequency, jj as SubscriptionFrequencyWithLiterals, aZ as SubscriptionInfo, b0 as SubscriptionSettings, a_ as SubscriptionTitle, cJ as TagList, cI as Tags, ig as TagsTagList, ie as TagsTags, ik as Task, im as TaskAction, io as TaskActionActionOneOf, il as TaskKey, bv as TaxSummary, b7 as TaxableAddress, b8 as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, jl as TaxableAddressTypeWithLiterals, iN as TotalPrice, c2 as TotalPriceChange, hk as TrackingLinkAdded, hi as TrackingNumberAdded, hj as TrackingNumberEdited, ao as TransactionStatus, jV as TransactionStatusWithLiterals, bb as TranslatableString, b$ as TranslatedValue, kf as TriggerRefundApplicationErrors, j6 as TriggerRefundOptions, fA as TriggerRefundRequest, fF as TriggerRefundResponse, dB as TriggerReindexOrderRequest, dr as TriggerReindexRequest, ds as TriggerReindexResponse, gR as UnArchiveOrderRequest, gS as UnArchiveOrderResponse, ja as UpdateActivityIdentifiers, hB as UpdateActivityRequest, hC as UpdateActivityResponse, h2 as UpdateBillingContactDetailsRequest, h3 as UpdateBillingContactDetailsResponse, g_ as UpdateBuyerEmailRequest, g$ as UpdateBuyerEmailResponse, gX as UpdateBuyerInfoRequest, gZ as UpdateBuyerInfoResponse, cU as UpdateInternalDocumentsEvent, cV as UpdateInternalDocumentsEventOperationOneOf, hF as UpdateLineItemsDescriptionLinesRequest, hH as UpdateLineItemsDescriptionLinesResponse, j9 as UpdateOrderLineItem, j8 as UpdateOrderLineItemIdentifiers, h4 as UpdateOrderLineItemRequest, h5 as UpdateOrderLineItemResponse, h6 as UpdateOrderLineItemsRequest, h8 as UpdateOrderLineItemsResponse, gz as UpdateOrderRequest, gA as UpdateOrderResponse, h0 as UpdateOrderShippingAddressRequest, h1 as UpdateOrderShippingAddressResponse, kg as UpdateOrderStatusApplicationErrors, hL as UpdateOrderStatusRequest, hM as UpdateOrderStatusResponse, fd as UserDefinedPaymentMethodName, fe as UserDefinedPaymentMethodNameKindOneOf, e_ as UserDomainMediaDisabled, eZ as UserDomainMediaEnabled, i2 as V1BulkMarkOrdersAsPaidRequest, i3 as V1BulkMarkOrdersAsPaidResponse, i4 as V1CreatePaymentGatewayOrderRequest, i5 as V1CreatePaymentGatewayOrderResponse, gI as V1LineItemDelta, gJ as V1LineItemDeltaDeltaOneOf, i0 as V1MarkOrderAsPaidRequest, i1 as V1MarkOrderAsPaidResponse, d7 as V1RestockItem, fR as V1ScheduledAction, bn as V1ShippingInformation, dO as V1TriggerReindexOrderRequest, dM as V1TriggerReindexRequest, dN as V1TriggerReindexResponse, iY as Value, aD as ValueType, k8 as ValueTypeWithLiterals, bm as VatId, N as VatType, jp as VatTypeWithLiterals, d1 as VersionedDeleteByIdsOperation, d2 as VersionedDocumentId, d0 as VersionedDocumentUpdateOperation, a6 as VersioningMode, jD as VersioningModeWithLiterals, g7 as VoidAuthorizedPaymentsRequest, a9 as WebhookIdentityType, jG as WebhookIdentityTypeWithLiterals, W as WeightUnit, jo as WeightUnitWithLiterals, ct as WixReceipt, fW as WixReceiptInfo, eV as WixelAssigned, eW as WixelUnassigned, jd as utils } from './ecom-v1-order-orders.universal-D5-HtCQc.mjs';
4
4
 
5
5
  declare function preparePaymentCollection$1(httpClient: HttpClient): PreparePaymentCollectionSignature;
6
6
  interface PreparePaymentCollectionSignature {
@@ -1943,6 +1943,12 @@ var ChargeType = /* @__PURE__ */ ((ChargeType2) => {
1943
1943
  ChargeType2["ABSORBED"] = "ABSORBED";
1944
1944
  return ChargeType2;
1945
1945
  })(ChargeType || {});
1946
+ var VersioningMode = /* @__PURE__ */ ((VersioningMode2) => {
1947
+ VersioningMode2["DEFAULT"] = "DEFAULT";
1948
+ VersioningMode2["GREATER_THAN"] = "GREATER_THAN";
1949
+ VersioningMode2["GREATER_OR_EQUAL"] = "GREATER_OR_EQUAL";
1950
+ return VersioningMode2;
1951
+ })(VersioningMode || {});
1946
1952
  var DeltaPaymentOptionType = /* @__PURE__ */ ((DeltaPaymentOptionType2) => {
1947
1953
  DeltaPaymentOptionType2["FULL_PAYMENT_OFFLINE"] = "FULL_PAYMENT_OFFLINE";
1948
1954
  DeltaPaymentOptionType2["MEMBERSHIP_OFFLINE"] = "MEMBERSHIP_OFFLINE";
@@ -1961,12 +1967,6 @@ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
1961
1967
  WebhookIdentityType2["APP"] = "APP";
1962
1968
  return WebhookIdentityType2;
1963
1969
  })(WebhookIdentityType || {});
1964
- var VersioningMode = /* @__PURE__ */ ((VersioningMode2) => {
1965
- VersioningMode2["DEFAULT"] = "DEFAULT";
1966
- VersioningMode2["GREATER_THAN"] = "GREATER_THAN";
1967
- VersioningMode2["GREATER_OR_EQUAL"] = "GREATER_OR_EQUAL";
1968
- return VersioningMode2;
1969
- })(VersioningMode || {});
1970
1970
  var PreviewEmailType = /* @__PURE__ */ ((PreviewEmailType2) => {
1971
1971
  PreviewEmailType2["ORDER_PLACED"] = "ORDER_PLACED";
1972
1972
  PreviewEmailType2["DOWNLOAD_LINKS"] = "DOWNLOAD_LINKS";