@wix/auto_sdk_ecom_orders 1.0.250 → 1.0.252

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/build/cjs/{ecom-v1-order-orders.universal-Cm3lFn3U.d.ts → ecom-v1-order-orders.universal-Cc8IUoG2.d.ts} +189 -168
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +6 -6
  4. package/build/cjs/index.js.map +1 -1
  5. package/build/cjs/index.typings.d.ts +2 -2
  6. package/build/cjs/index.typings.js +6 -6
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +190 -169
  9. package/build/cjs/meta.js +6 -6
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{ecom-v1-order-orders.universal-Cm3lFn3U.d.mts → ecom-v1-order-orders.universal-Cc8IUoG2.d.mts} +189 -168
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +6 -6
  14. package/build/es/index.mjs.map +1 -1
  15. package/build/es/index.typings.d.mts +2 -2
  16. package/build/es/index.typings.mjs +6 -6
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +190 -169
  19. package/build/es/meta.mjs +6 -6
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{ecom-v1-order-orders.universal-D0oVonoS.d.ts → ecom-v1-order-orders.universal-Cikj7dUx.d.ts} +189 -168
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +6 -6
  24. package/build/internal/cjs/index.js.map +1 -1
  25. package/build/internal/cjs/index.typings.d.ts +2 -2
  26. package/build/internal/cjs/index.typings.js +6 -6
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +190 -169
  29. package/build/internal/cjs/meta.js +6 -6
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{ecom-v1-order-orders.universal-D0oVonoS.d.mts → ecom-v1-order-orders.universal-Cikj7dUx.d.mts} +189 -168
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +6 -6
  34. package/build/internal/es/index.mjs.map +1 -1
  35. package/build/internal/es/index.typings.d.mts +2 -2
  36. package/build/internal/es/index.typings.mjs +6 -6
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +190 -169
  39. package/build/internal/es/meta.mjs +6 -6
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -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_, ScheduledAction as aa, DurationUnit as ab, PaymentCollectabilityStatus as ac, PredefinedPaymentMethod as ad, RefundableStatus as ae, NonRefundableReason as af, ManuallyRefundableReason as ag, RestockType as ah, TransactionStatus as ai, AuthorizationCaptureStatus as aj, AuthorizationVoidStatus as ak, Reason as al, ActionType as am, ChargebackStatus as an, MembershipPaymentStatus as ao, PaymentStatus as ap, RefundStatus as aq, PreviewEmailType as ar, State as as, SiteCreatedContext as at, Namespace as au, DeleteStatus as av, Origin 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 ApplicationError 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 PreparePaymentCollectionRequest as dM, type RedirectUrls as dN, type DelayedCaptureSettings as dO, type Duration as dP, type GetPaymentCollectabilityStatusRequest as dQ, type RecordManuallyCollectedPaymentRequest as dR, type UserDefinedPaymentMethodName as dS, type UserDefinedPaymentMethodNameKindOneOf as dT, type RecordManuallyCollectedPaymentResponse as dU, type MarkOrderAsPaidRequest as dV, type MarkOrderAsPaidResponse as dW, type BulkMarkOrdersAsPaidRequest as dX, type BulkMarkOrdersAsPaidResponse as dY, type BulkOrderResult as dZ, type ItemMetadata 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 BulkSendBuyerPickupConfirmationEmailsRequest as e$, type BulkActionMetadata as e0, type GetRefundabilityStatusRequest as e1, type GetRefundabilityStatusResponse as e2, type Refundability as e3, type RefundabilityAdditionalRefundabilityInfoOneOf as e4, type CreatePaymentGatewayOrderRequest as e5, type ChargedBy as e6, type CreatePaymentGatewayOrderResponse as e7, type ChargeMembershipsRequest as e8, type MembershipChargeItem as e9, type Chargeback as eA, type PaymentMethodName as eB, type GiftCardPaymentDetails as eC, type MembershipPaymentDetails as eD, type WixReceiptInfo as eE, type ExternalReceiptInfo as eF, type CashRoundingDetails as eG, type Refund as eH, type RefundTransaction as eI, type RefundStatusInfo as eJ, type AggregatedRefundSummary as eK, type RefundItemsBreakdown as eL, type LineItemRefundSummary as eM, type CalculateRefundRequest as eN, type CalculateRefundItemRequest as eO, type CalculateRefundResponse as eP, type CalculateRefundItemResponse as eQ, type VoidAuthorizedPaymentsRequest as eR, type CaptureAuthorizedPaymentsRequest as eS, type ChargeSavedPaymentMethodRequest as eT, type ChargeSavedPaymentMethodResponse as eU, type SendBuyerConfirmationEmailRequest as eV, type SendBuyerConfirmationEmailResponse as eW, type SendBuyerPaymentsReceivedEmailRequest as eX, type SendBuyerPaymentsReceivedEmailResponse as eY, type SendBuyerPickupConfirmationEmailRequest as eZ, type SendBuyerPickupConfirmationEmailResponse as e_, type MembershipName as ea, type ServiceProperties as eb, type ChargeMembershipsResponse as ec, type TriggerRefundRequest as ed, type PaymentRefund as ee, type RefundDetails as ef, type RefundItem as eg, type LineItemRefund as eh, type AdditionalFeeRefund as ei, type ShippingRefund as ej, type RefundSideEffects as ek, type RestockInfo as el, type RestockItem as em, type TriggerRefundResponse as en, type OrderTransactions as eo, type Payment as ep, type PaymentPaymentDetailsOneOf as eq, type PaymentReceiptInfoOneOf as er, type RegularPaymentDetails as es, type RegularPaymentDetailsPaymentMethodDetailsOneOf as et, type CreditCardPaymentMethodDetails as eu, type AuthorizationDetails as ev, type AuthorizationCapture as ew, type AuthorizationActionFailureDetails as ex, type AuthorizationVoid as ey, type V1ScheduledAction as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type UserDomainMediaDisabled as f$, type BulkSendBuyerPickupConfirmationEmailsResponse as f0, type SendBuyerShippingConfirmationEmailRequest as f1, type SendBuyerShippingConfirmationEmailResponse as f2, type BulkSendBuyerShippingConfirmationEmailsRequest as f3, type BulkSendBuyerShippingConfirmationEmailsResponse as f4, type SendMerchantOrderReceivedNotificationRequest as f5, type SendMerchantOrderReceivedNotificationResponse as f6, type SendCancelRefundEmailRequest as f7, type SendCancelRefundEmailResponse as f8, type SendRefundEmailRequest as f9, type SiteCreated as fA, type SiteTransferred as fB, type SiteDeleted as fC, type DeleteContext as fD, type SiteUndeleted as fE, type SitePublished as fF, type SiteUnpublished as fG, type SiteMarkedAsTemplate as fH, type SiteMarkedAsWixSite as fI, type ServiceProvisioned as fJ, type ServiceRemoved as fK, type SiteRenamed as fL, type SiteHardDeleted as fM, type NamespaceChanged as fN, type StudioAssigned as fO, type StudioUnassigned as fP, type SiteUrlChanged as fQ, type SitePurgedExternally as fR, type OdeditorAssigned as fS, type OdeditorUnassigned as fT, type PicassoAssigned as fU, type PicassoUnassigned as fV, type WixelAssigned as fW, type WixelUnassigned as fX, type StudioTwoAssigned as fY, type StudioTwoUnassigned as fZ, type UserDomainMediaEnabled as f_, type SendRefundEmailResponse as fa, type SendFulfillmentEmailRequest as fb, type SendFulfillmentEmailResponse as fc, type SendMerchantOrderReceivedPushRequest as fd, type SendMerchantOrderReceivedPushResponse as fe, type PreviewEmailByTypeRequest as ff, type PreviewEmailByTypeResponse as fg, type PreviewRefundEmailRequest as fh, type PreviewRefundEmailResponse as fi, type PreviewCancelEmailRequest as fj, type PreviewCancelEmailResponse as fk, type PreviewCancelRefundEmailRequest as fl, type PreviewCancelRefundEmailResponse as fm, type PreviewBuyerPaymentsReceivedEmailRequest as fn, type PreviewBuyerPaymentsReceivedEmailResponse as fo, type PreviewBuyerConfirmationEmailRequest as fp, type PreviewBuyerConfirmationEmailResponse as fq, type PreviewBuyerPickupConfirmationEmailRequest as fr, type PreviewBuyerPickupConfirmationEmailResponse as fs, type PreviewShippingConfirmationEmailRequest as ft, type PreviewShippingConfirmationEmailResponse as fu, type PreviewResendDownloadLinksEmailRequest as fv, type PreviewResendDownloadLinksEmailResponse as fw, type MetaSiteSpecialEvent as fx, type MetaSiteSpecialEventPayloadOneOf as fy, type Asset as fz, type GetOrderApplicationErrors as g, type UpdateBillingContactDetailsRequest as g$, type EditorlessAssigned as g0, type EditorlessUnassigned as g1, type HasCustomEmailConfigurationsRequest as g2, type HasCustomEmailConfigurationsResponse as g3, type AddToAutomationMigrationPopulationRequest as g4, type AddToAutomationMigrationPopulationResponse as g5, type IsInAutomationMigrationPopulationRequest as g6, type IsInAutomationMigrationPopulationResponse 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 ScheduledActionWithLiterals as jE, type DurationUnitWithLiterals as jF, type PaymentCollectabilityStatusWithLiterals as jG, type PredefinedPaymentMethodWithLiterals as jH, type RefundableStatusWithLiterals as jI, type NonRefundableReasonWithLiterals as jJ, type ManuallyRefundableReasonWithLiterals as jK, type RestockTypeWithLiterals as jL, type TransactionStatusWithLiterals as jM, type AuthorizationCaptureStatusWithLiterals as jN, type AuthorizationVoidStatusWithLiterals as jO, type ReasonWithLiterals as jP, type ActionTypeWithLiterals as jQ, type ChargebackStatusWithLiterals as jR, type MembershipPaymentStatusWithLiterals as jS, type PaymentStatusWithLiterals as jT, type RefundStatusWithLiterals as jU, type PreviewEmailTypeWithLiterals as jV, type StateWithLiterals as jW, type SiteCreatedContextWithLiterals as jX, type NamespaceWithLiterals as jY, type DeleteStatusWithLiterals as jZ, type OriginWithLiterals 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_, ScheduledAction as aa, DurationUnit as ab, PaymentCollectabilityStatus as ac, PredefinedPaymentMethod as ad, RefundableStatus as ae, NonRefundableReason as af, ManuallyRefundableReason as ag, RestockType as ah, TransactionStatus as ai, AuthorizationCaptureStatus as aj, AuthorizationVoidStatus as ak, Reason as al, ActionType as am, ChargebackStatus as an, MembershipPaymentStatus as ao, PaymentStatus as ap, RefundStatus as aq, PreviewEmailType as ar, State as as, SiteCreatedContext as at, Namespace as au, DeleteStatus as av, Origin 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 BulkMarkOrdersAsPaidResponse 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 PreparePaymentCollectionRequest as dP, type RedirectUrls as dQ, type DelayedCaptureSettings as dR, type Duration as dS, type GetPaymentCollectabilityStatusRequest as dT, type RecordManuallyCollectedPaymentRequest as dU, type UserDefinedPaymentMethodName as dV, type UserDefinedPaymentMethodNameKindOneOf as dW, type RecordManuallyCollectedPaymentResponse as dX, type MarkOrderAsPaidRequest as dY, type MarkOrderAsPaidResponse as dZ, type BulkMarkOrdersAsPaidRequest 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 SendBuyerPaymentsReceivedEmailResponse as e$, type BulkOrderResult as e0, type ItemMetadata as e1, type ApplicationError as e2, type BulkActionMetadata as e3, type GetRefundabilityStatusRequest as e4, type GetRefundabilityStatusResponse as e5, type Refundability as e6, type RefundabilityAdditionalRefundabilityInfoOneOf as e7, type CreatePaymentGatewayOrderRequest as e8, type ChargedBy as e9, type AuthorizationActionFailureDetails as eA, type AuthorizationVoid as eB, type V1ScheduledAction as eC, type Chargeback as eD, type PaymentMethodName as eE, type GiftCardPaymentDetails as eF, type MembershipPaymentDetails as eG, type WixReceiptInfo as eH, type ExternalReceiptInfo as eI, type CashRoundingDetails as eJ, type Refund as eK, type RefundTransaction as eL, type RefundStatusInfo as eM, type AggregatedRefundSummary as eN, type RefundItemsBreakdown as eO, type LineItemRefundSummary as eP, type CalculateRefundRequest as eQ, type CalculateRefundItemRequest as eR, type CalculateRefundResponse as eS, type CalculateRefundItemResponse as eT, type VoidAuthorizedPaymentsRequest as eU, type CaptureAuthorizedPaymentsRequest as eV, type ChargeSavedPaymentMethodRequest as eW, type ChargeSavedPaymentMethodResponse as eX, type SendBuyerConfirmationEmailRequest as eY, type SendBuyerConfirmationEmailResponse as eZ, type SendBuyerPaymentsReceivedEmailRequest as e_, type CreatePaymentGatewayOrderResponse as ea, type ChargeMembershipsRequest as eb, type MembershipChargeItem as ec, type MembershipName as ed, type ServiceProperties as ee, type ChargeMembershipsResponse as ef, type TriggerRefundRequest as eg, type PaymentRefund as eh, type RefundDetails as ei, type RefundItem as ej, type LineItemRefund as ek, type AdditionalFeeRefund as el, type ShippingRefund as em, type RefundSideEffects as en, type RestockInfo as eo, type RestockItem as ep, type TriggerRefundResponse as eq, type OrderTransactions as er, type Payment as es, type PaymentPaymentDetailsOneOf as et, type PaymentReceiptInfoOneOf as eu, type RegularPaymentDetails as ev, type RegularPaymentDetailsPaymentMethodDetailsOneOf as ew, type CreditCardPaymentMethodDetails as ex, type AuthorizationDetails as ey, type AuthorizationCapture as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type StudioTwoAssigned as f$, type SendBuyerPickupConfirmationEmailRequest as f0, type SendBuyerPickupConfirmationEmailResponse as f1, type BulkSendBuyerPickupConfirmationEmailsRequest as f2, type BulkSendBuyerPickupConfirmationEmailsResponse as f3, type SendBuyerShippingConfirmationEmailRequest as f4, type SendBuyerShippingConfirmationEmailResponse as f5, type BulkSendBuyerShippingConfirmationEmailsRequest as f6, type BulkSendBuyerShippingConfirmationEmailsResponse as f7, type SendMerchantOrderReceivedNotificationRequest as f8, type SendMerchantOrderReceivedNotificationResponse as f9, type MetaSiteSpecialEvent as fA, type MetaSiteSpecialEventPayloadOneOf as fB, type Asset as fC, type SiteCreated as fD, type SiteTransferred as fE, type SiteDeleted as fF, type DeleteContext as fG, type SiteUndeleted as fH, type SitePublished as fI, type SiteUnpublished as fJ, type SiteMarkedAsTemplate as fK, type SiteMarkedAsWixSite as fL, type ServiceProvisioned as fM, type ServiceRemoved as fN, type SiteRenamed as fO, type SiteHardDeleted as fP, type NamespaceChanged as fQ, type StudioAssigned as fR, type StudioUnassigned as fS, type SiteUrlChanged as fT, type SitePurgedExternally as fU, type OdeditorAssigned as fV, type OdeditorUnassigned as fW, type PicassoAssigned as fX, type PicassoUnassigned as fY, type WixelAssigned as fZ, type WixelUnassigned as f_, type SendCancelRefundEmailRequest as fa, type SendCancelRefundEmailResponse as fb, type SendRefundEmailRequest as fc, type SendRefundEmailResponse as fd, type SendFulfillmentEmailRequest as fe, type SendFulfillmentEmailResponse as ff, type SendMerchantOrderReceivedPushRequest as fg, type SendMerchantOrderReceivedPushResponse as fh, type PreviewEmailByTypeRequest as fi, type PreviewEmailByTypeResponse as fj, type PreviewRefundEmailRequest as fk, type PreviewRefundEmailResponse as fl, type PreviewCancelEmailRequest as fm, type PreviewCancelEmailResponse as fn, type PreviewCancelRefundEmailRequest as fo, type PreviewCancelRefundEmailResponse as fp, type PreviewBuyerPaymentsReceivedEmailRequest as fq, type PreviewBuyerPaymentsReceivedEmailResponse as fr, type PreviewBuyerConfirmationEmailRequest as fs, type PreviewBuyerConfirmationEmailResponse as ft, type PreviewBuyerPickupConfirmationEmailRequest as fu, type PreviewBuyerPickupConfirmationEmailResponse as fv, type PreviewShippingConfirmationEmailRequest as fw, type PreviewShippingConfirmationEmailResponse as fx, type PreviewResendDownloadLinksEmailRequest as fy, type PreviewResendDownloadLinksEmailResponse as fz, type GetOrderApplicationErrors as g, type UpdateBuyerEmailResponse as g$, type StudioTwoUnassigned as g0, type UserDomainMediaEnabled as g1, type UserDomainMediaDisabled as g2, type EditorlessAssigned as g3, type EditorlessUnassigned as g4, type HasCustomEmailConfigurationsRequest as g5, type HasCustomEmailConfigurationsResponse as g6, type AddToAutomationMigrationPopulationRequest as g7, type AddToAutomationMigrationPopulationResponse as g8, type IsInAutomationMigrationPopulationRequest 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 IsInAutomationMigrationPopulationResponse 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 NamespaceWithLiterals 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 ScheduledActionWithLiterals as jH, type DurationUnitWithLiterals as jI, type PaymentCollectabilityStatusWithLiterals as jJ, type PredefinedPaymentMethodWithLiterals as jK, type RefundableStatusWithLiterals as jL, type NonRefundableReasonWithLiterals as jM, type ManuallyRefundableReasonWithLiterals as jN, type RestockTypeWithLiterals as jO, type TransactionStatusWithLiterals as jP, type AuthorizationCaptureStatusWithLiterals as jQ, type AuthorizationVoidStatusWithLiterals as jR, type ReasonWithLiterals as jS, type ActionTypeWithLiterals as jT, type ChargebackStatusWithLiterals as jU, type MembershipPaymentStatusWithLiterals as jV, type PaymentStatusWithLiterals as jW, type RefundStatusWithLiterals as jX, type PreviewEmailTypeWithLiterals as jY, type StateWithLiterals as jZ, type SiteCreatedContextWithLiterals 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 DeleteStatusWithLiterals as k0, type OriginWithLiterals 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-Cm3lFn3U.js';
3
- export { dw as AccountInfo, iZ as AccountInfoMetadata, ds as ActionEvent, am as ActionType, jQ 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, g4 as AddToAutomationMigrationPopulationRequest, g5 as AddToAutomationMigrationPopulationResponse, cG as AdditionalFee, db as AdditionalFeeDelta, dc as AdditionalFeeDeltaDeltaOneOf, ei 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, eK as AggregatedRefundSummary, d$ as ApplicationError, by as AppliedDiscount, d9 as AppliedDiscountDelta, da as AppliedDiscountDeltaDeltaOneOf, bz as AppliedDiscountDiscountSourceOneOf, gI as ArchiveOrderRequest, gJ as ArchiveOrderResponse, fz as Asset, a0 as AttributionSource, ju as AttributionSourceWithLiterals, ex as AuthorizationActionFailureDetails, ew as AuthorizationCapture, aj as AuthorizationCaptureStatus, jN as AuthorizationCaptureStatusWithLiterals, ev as AuthorizationDetails, ey as AuthorizationVoid, ak as AuthorizationVoidStatus, jO 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, e0 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, dX as BulkMarkOrdersAsPaidRequest, dY as BulkMarkOrdersAsPaidResponse, dZ as BulkOrderResult, e$ as BulkSendBuyerPickupConfirmationEmailsRequest, f0 as BulkSendBuyerPickupConfirmationEmailsResponse, f3 as BulkSendBuyerShippingConfirmationEmailsRequest, f4 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, eO as CalculateRefundItemRequest, eQ as CalculateRefundItemResponse, eN as CalculateRefundRequest, eP as CalculateRefundResponse, iP as CalculatedTax, iO as CalculatedTaxes, im as Cancel, hH as CancelOrderRequest, eS as CaptureAuthorizedPaymentsRequest, cF as CashRounding, eG as CashRoundingDetails, aI as CatalogReference, cB as ChannelInfo, a1 as ChannelType, jv as ChannelTypeWithLiterals, j2 as ChargeMembershipsOptions, e8 as ChargeMembershipsRequest, ec as ChargeMembershipsResponse, eT as ChargeSavedPaymentMethodRequest, eU as ChargeSavedPaymentMethodResponse, a5 as ChargeType, jz as ChargeTypeWithLiterals, eA as Chargeback, cx as ChargebackCreated, cy as ChargebackReversed, an as ChargebackStatus, jR as ChargebackStatusWithLiterals, e6 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, e5 as CreatePaymentGatewayOrderRequest, e7 as CreatePaymentGatewayOrderResponse, cz as CreatedBy, cA as CreatedByStringOneOf, cm as CreditCardDetails, eu 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, dO as DelayedCaptureSettings, j8 as DeleteActivityIdentifiers, hA as DeleteActivityRequest, hB as DeleteActivityResponse, dC as DeleteByFilterOperation, dB as DeleteByIdsOperation, fD as DeleteContext, av as DeleteStatus, jZ 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, dP as Duration, ab as DurationUnit, jF as DurationUnitWithLiterals, g0 as EditorlessAssigned, g1 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, eF 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, dQ as GetPaymentCollectabilityStatusRequest, e1 as GetRefundabilityStatusRequest, e2 as GetRefundabilityStatusResponse, i3 as GetShipmentsRequest, i4 as GetShipmentsResponse, eC as GiftCardPaymentDetails, cd as GiftCardPaymentRefund, g2 as HasCustomEmailConfigurationsRequest, g3 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, g6 as IsInAutomationMigrationPopulationRequest, g7 as IsInAutomationMigrationPopulationResponse, d5 as ItemChangedDetails, bG as ItemCombination, bH as ItemCombinationLineItem, d_ 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, eh as LineItemRefund, eM 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, ag as ManuallyRefundableReason, jK as ManuallyRefundableReasonWithLiterals, hK as MarkAsFulfilledRequest, hL as MarkAsFulfilledResponse, hQ as MarkAsUnfulfilledRequest, hR as MarkAsUnfulfilledResponse, dV as MarkOrderAsPaidRequest, dW as MarkOrderAsPaidResponse, hF as MarkOrderAsSeenByHumanRequest, hG as MarkOrderAsSeenByHumanResponse, h4 as MaskedOrderLineItem, e9 as MembershipChargeItem, ea as MembershipName, eD as MembershipPaymentDetails, ce as MembershipPaymentRefund, ao as MembershipPaymentStatus, jS as MembershipPaymentStatusWithLiterals, bL as MerchantComment, bB as MerchantDiscount, bC as MerchantDiscountMerchantDiscountReasonOneOf, dt as MessageEnvelope, iS as MetaData, fx as MetaSiteSpecialEvent, fy as MetaSiteSpecialEventPayloadOneOf, ba as ModifierGroup, au as Namespace, fN as NamespaceChanged, jY as NamespaceWithLiterals, bO as NewExchangeOrderCreated, af as NonRefundableReason, jJ as NonRefundableReasonWithLiterals, fS as OdeditorAssigned, fT 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, eo as OrderTransactions, cV as OrdersExperiments, aw as Origin, j_ as OriginWithLiterals, cP as OwnerApps, ep as Payment, cn as PaymentCanceled, co as PaymentCanceledPaymentDetailsOneOf, ac as PaymentCollectabilityStatus, jG as PaymentCollectabilityStatusWithLiterals, kb as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, j1 as PaymentCollectionCreatePaymentGatewayOrderOptions, ka as PaymentCollectionMarkOrderAsPaidApplicationErrors, j0 as PaymentCollectionMarkOrderAsPaidOptions, cp as PaymentDeclined, cq as PaymentDeclinedPaymentDetailsOneOf, eB as PaymentMethodName, E as PaymentOptionType, je as PaymentOptionTypeWithLiterals, eq as PaymentPaymentDetailsOneOf, ci as PaymentPending, cj as PaymentPendingPaymentDetailsOneOf, er as PaymentReceiptInfoOneOf, ee as PaymentRefund, cg as PaymentRefundFailed, cf as PaymentRefunded, ap as PaymentStatus, K as PaymentStatusEnumPaymentStatus, jj as PaymentStatusEnumPaymentStatusWithLiterals, c$ as PaymentStatusUpdated, jT as PaymentStatusWithLiterals, iQ as Payments, iw as Phone, aQ as PhysicalProperties, fU as PicassoAssigned, fV 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, ad as PredefinedPaymentMethod, jH as PredefinedPaymentMethodWithLiterals, dM as PreparePaymentCollectionRequest, fp as PreviewBuyerConfirmationEmailRequest, fq as PreviewBuyerConfirmationEmailResponse, fn as PreviewBuyerPaymentsReceivedEmailRequest, fo as PreviewBuyerPaymentsReceivedEmailResponse, fr as PreviewBuyerPickupConfirmationEmailRequest, fs as PreviewBuyerPickupConfirmationEmailResponse, fj as PreviewCancelEmailRequest, fk as PreviewCancelEmailResponse, fl as PreviewCancelRefundEmailRequest, fm as PreviewCancelRefundEmailResponse, ff as PreviewEmailByTypeRequest, fg as PreviewEmailByTypeResponse, ar as PreviewEmailType, jV as PreviewEmailTypeWithLiterals, fh as PreviewRefundEmailRequest, fi as PreviewRefundEmailResponse, fv as PreviewResendDownloadLinksEmailRequest, fw as PreviewResendDownloadLinksEmailResponse, ft as PreviewShippingConfirmationEmailRequest, fu 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, al as Reason, jP as ReasonWithLiterals, cr as ReceiptCreated, cs as ReceiptCreatedReceiptInfoOneOf, cv as ReceiptSent, cw as ReceiptSentReceiptInfoOneOf, k9 as RecordManuallyCollectedPaymentApplicationErrors, i$ as RecordManuallyCollectedPaymentOptions, dR as RecordManuallyCollectedPaymentRequest, dU as RecordManuallyCollectedPaymentResponse, dN as RedirectUrls, eH as Refund, ef as RefundDetails, c9 as RefundInitiated, eg as RefundItem, eL as RefundItemsBreakdown, ek as RefundSideEffects, aq as RefundStatus, eJ as RefundStatusInfo, jU as RefundStatusWithLiterals, eI as RefundTransaction, e3 as Refundability, e4 as RefundabilityAdditionalRefundabilityInfoOneOf, ae as RefundableStatus, jI as RefundableStatusWithLiterals, ch as RefundedAsStoreCredit, ca as RefundedPayment, cb as RefundedPaymentKindOneOf, ck as RegularPayment, es as RegularPaymentDetails, et as RegularPaymentDetailsPaymentMethodDetailsOneOf, cl as RegularPaymentPaymentMethodDetailsOneOf, cc as RegularPaymentRefund, io as Reschedule, el as RestockInfo, em as RestockItem, aU as RestockLocation, ah as RestockType, jL as RestockTypeWithLiterals, dp as RestoreInfo, c5 as SavedPaymentMethod, aa as ScheduledAction, jE as ScheduledActionWithLiterals, gn as SearchOrdersRequest, eV as SendBuyerConfirmationEmailRequest, eW as SendBuyerConfirmationEmailResponse, eX as SendBuyerPaymentsReceivedEmailRequest, eY as SendBuyerPaymentsReceivedEmailResponse, eZ as SendBuyerPickupConfirmationEmailRequest, e_ as SendBuyerPickupConfirmationEmailResponse, f1 as SendBuyerShippingConfirmationEmailRequest, f2 as SendBuyerShippingConfirmationEmailResponse, f7 as SendCancelRefundEmailRequest, f8 as SendCancelRefundEmailResponse, fb as SendFulfillmentEmailRequest, fc as SendFulfillmentEmailResponse, f5 as SendMerchantOrderReceivedNotificationRequest, f6 as SendMerchantOrderReceivedNotificationResponse, fd as SendMerchantOrderReceivedPushRequest, fe as SendMerchantOrderReceivedPushResponse, ie as SendOrderUpdatedDomainEventRequest, ig as SendOrderUpdatedDomainEventResponse, f9 as SendRefundEmailRequest, fa as SendRefundEmailResponse, eb as ServiceProperties, fJ as ServiceProvisioned, fK 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, ej as ShippingRefund, bu as ShippingRegion, fA as SiteCreated, at as SiteCreatedContext, jX as SiteCreatedContextWithLiterals, fC as SiteDeleted, fM as SiteHardDeleted, fH as SiteMarkedAsTemplate, fI as SiteMarkedAsWixSite, fF as SitePublished, fR as SitePurgedExternally, fL as SiteRenamed, fB as SiteTransferred, fE as SiteUndeleted, fG as SiteUnpublished, fQ 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, as as State, jW as StateWithLiterals, bj as StreetAddress, fO as StudioAssigned, fY as StudioTwoAssigned, fZ as StudioTwoUnassigned, fP 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, ai as TransactionStatus, jM as TransactionStatusWithLiterals, bb as TranslatableString, b$ as TranslatedValue, kc as TriggerRefundApplicationErrors, j3 as TriggerRefundOptions, ed as TriggerRefundRequest, en 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, dS as UserDefinedPaymentMethodName, dT as UserDefinedPaymentMethodNameKindOneOf, f$ as UserDomainMediaDisabled, f_ 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, ez 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, eR as VoidAuthorizedPaymentsRequest, a8 as WebhookIdentityType, jC as WebhookIdentityTypeWithLiterals, W as WeightUnit, jl as WeightUnitWithLiterals, ct as WixReceipt, eE as WixReceiptInfo, fW as WixelAssigned, fX as WixelUnassigned, ja as utils } from './ecom-v1-order-orders.universal-Cm3lFn3U.js';
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-Cc8IUoG2.js';
3
+ export { dF as AccountInfo, j0 as AccountInfoMetadata, dz as ActionEvent, am as ActionType, jT 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, g7 as AddToAutomationMigrationPopulationRequest, g8 as AddToAutomationMigrationPopulationResponse, cG as AdditionalFee, dm as AdditionalFeeDelta, dn as AdditionalFeeDeltaDeltaOneOf, el 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, eN as AggregatedRefundSummary, e2 as ApplicationError, by as AppliedDiscount, dk as AppliedDiscountDelta, dl as AppliedDiscountDeltaDeltaOneOf, bz as AppliedDiscountDiscountSourceOneOf, gL as ArchiveOrderRequest, gM as ArchiveOrderResponse, fC as Asset, a0 as AttributionSource, jx as AttributionSourceWithLiterals, eA as AuthorizationActionFailureDetails, ez as AuthorizationCapture, aj as AuthorizationCaptureStatus, jQ as AuthorizationCaptureStatusWithLiterals, ey as AuthorizationDetails, eB as AuthorizationVoid, ak as AuthorizationVoidStatus, jR 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, e3 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, d_ as BulkMarkOrdersAsPaidRequest, d$ as BulkMarkOrdersAsPaidResponse, e0 as BulkOrderResult, f2 as BulkSendBuyerPickupConfirmationEmailsRequest, f3 as BulkSendBuyerPickupConfirmationEmailsResponse, f6 as BulkSendBuyerShippingConfirmationEmailsRequest, f7 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, eR as CalculateRefundItemRequest, eT as CalculateRefundItemResponse, eQ as CalculateRefundRequest, eS as CalculateRefundResponse, iS as CalculatedTax, iR as CalculatedTaxes, iq as Cancel, hK as CancelOrderRequest, eV as CaptureAuthorizedPaymentsRequest, cF as CashRounding, eJ as CashRoundingDetails, aI as CatalogReference, cB as ChannelInfo, a1 as ChannelType, jy as ChannelTypeWithLiterals, j5 as ChargeMembershipsOptions, eb as ChargeMembershipsRequest, ef as ChargeMembershipsResponse, eW as ChargeSavedPaymentMethodRequest, eX as ChargeSavedPaymentMethodResponse, a5 as ChargeType, jC as ChargeTypeWithLiterals, eD as Chargeback, cx as ChargebackCreated, cy as ChargebackReversed, an as ChargebackStatus, jU as ChargebackStatusWithLiterals, e9 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, e8 as CreatePaymentGatewayOrderRequest, ea as CreatePaymentGatewayOrderResponse, cz as CreatedBy, cA as CreatedByStringOneOf, cm as CreditCardDetails, ex 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, dR as DelayedCaptureSettings, jb as DeleteActivityIdentifiers, hD as DeleteActivityRequest, hE as DeleteActivityResponse, cZ as DeleteByFilterOperation, cY as DeleteByIdsOperation, fG as DeleteContext, av as DeleteStatus, k0 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, dS as Duration, ab as DurationUnit, jI as DurationUnitWithLiterals, g3 as EditorlessAssigned, g4 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, eI 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, dT as GetPaymentCollectabilityStatusRequest, e4 as GetRefundabilityStatusRequest, e5 as GetRefundabilityStatusResponse, i6 as GetShipmentsRequest, i7 as GetShipmentsResponse, eF as GiftCardPaymentDetails, cd as GiftCardPaymentRefund, g5 as HasCustomEmailConfigurationsRequest, g6 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, g9 as IsInAutomationMigrationPopulationRequest, ga as IsInAutomationMigrationPopulationResponse, dg as ItemChangedDetails, bG as ItemCombination, bH as ItemCombinationLineItem, e1 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, ek as LineItemRefund, eP 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, ag as ManuallyRefundableReason, jN as ManuallyRefundableReasonWithLiterals, hN as MarkAsFulfilledRequest, hO as MarkAsFulfilledResponse, hT as MarkAsUnfulfilledRequest, hU as MarkAsUnfulfilledResponse, dY as MarkOrderAsPaidRequest, dZ as MarkOrderAsPaidResponse, hI as MarkOrderAsSeenByHumanRequest, hJ as MarkOrderAsSeenByHumanResponse, h7 as MaskedOrderLineItem, ec as MembershipChargeItem, ed as MembershipName, eG as MembershipPaymentDetails, ce as MembershipPaymentRefund, ao as MembershipPaymentStatus, jV as MembershipPaymentStatusWithLiterals, bL as MerchantComment, bB as MerchantDiscount, bC as MerchantDiscountMerchantDiscountReasonOneOf, dC as MessageEnvelope, iV as MetaData, fA as MetaSiteSpecialEvent, fB as MetaSiteSpecialEventPayloadOneOf, ba as ModifierGroup, au as Namespace, fQ as NamespaceChanged, j$ as NamespaceWithLiterals, bO as NewExchangeOrderCreated, af as NonRefundableReason, jM as NonRefundableReasonWithLiterals, fV as OdeditorAssigned, fW 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, er as OrderTransactions, d4 as OrdersExperiments, aw as Origin, k1 as OriginWithLiterals, cP as OwnerApps, es as Payment, cn as PaymentCanceled, co as PaymentCanceledPaymentDetailsOneOf, ac as PaymentCollectabilityStatus, jJ as PaymentCollectabilityStatusWithLiterals, ke as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, j4 as PaymentCollectionCreatePaymentGatewayOrderOptions, kd as PaymentCollectionMarkOrderAsPaidApplicationErrors, j3 as PaymentCollectionMarkOrderAsPaidOptions, cp as PaymentDeclined, cq as PaymentDeclinedPaymentDetailsOneOf, eE as PaymentMethodName, E as PaymentOptionType, jh as PaymentOptionTypeWithLiterals, et as PaymentPaymentDetailsOneOf, ci as PaymentPending, cj as PaymentPendingPaymentDetailsOneOf, eu as PaymentReceiptInfoOneOf, eh as PaymentRefund, cg as PaymentRefundFailed, cf as PaymentRefunded, ap as PaymentStatus, K as PaymentStatusEnumPaymentStatus, jm as PaymentStatusEnumPaymentStatusWithLiterals, da as PaymentStatusUpdated, jW as PaymentStatusWithLiterals, iT as Payments, iz as Phone, aQ as PhysicalProperties, fX as PicassoAssigned, fY 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, ad as PredefinedPaymentMethod, jK as PredefinedPaymentMethodWithLiterals, dP as PreparePaymentCollectionRequest, fs as PreviewBuyerConfirmationEmailRequest, ft as PreviewBuyerConfirmationEmailResponse, fq as PreviewBuyerPaymentsReceivedEmailRequest, fr as PreviewBuyerPaymentsReceivedEmailResponse, fu as PreviewBuyerPickupConfirmationEmailRequest, fv as PreviewBuyerPickupConfirmationEmailResponse, fm as PreviewCancelEmailRequest, fn as PreviewCancelEmailResponse, fo as PreviewCancelRefundEmailRequest, fp as PreviewCancelRefundEmailResponse, fi as PreviewEmailByTypeRequest, fj as PreviewEmailByTypeResponse, ar as PreviewEmailType, jY as PreviewEmailTypeWithLiterals, fk as PreviewRefundEmailRequest, fl as PreviewRefundEmailResponse, fy as PreviewResendDownloadLinksEmailRequest, fz as PreviewResendDownloadLinksEmailResponse, fw as PreviewShippingConfirmationEmailRequest, fx 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, al as Reason, jS as ReasonWithLiterals, cr as ReceiptCreated, cs as ReceiptCreatedReceiptInfoOneOf, cv as ReceiptSent, cw as ReceiptSentReceiptInfoOneOf, kc as RecordManuallyCollectedPaymentApplicationErrors, j2 as RecordManuallyCollectedPaymentOptions, dU as RecordManuallyCollectedPaymentRequest, dX as RecordManuallyCollectedPaymentResponse, dQ as RedirectUrls, eK as Refund, ei as RefundDetails, c9 as RefundInitiated, ej as RefundItem, eO as RefundItemsBreakdown, en as RefundSideEffects, aq as RefundStatus, eM as RefundStatusInfo, jX as RefundStatusWithLiterals, eL as RefundTransaction, e6 as Refundability, e7 as RefundabilityAdditionalRefundabilityInfoOneOf, ae as RefundableStatus, jL as RefundableStatusWithLiterals, ch as RefundedAsStoreCredit, ca as RefundedPayment, cb as RefundedPaymentKindOneOf, ck as RegularPayment, ev as RegularPaymentDetails, ew as RegularPaymentDetailsPaymentMethodDetailsOneOf, cl as RegularPaymentPaymentMethodDetailsOneOf, cc as RegularPaymentRefund, ir as Reschedule, eo as RestockInfo, ep as RestockItem, aU as RestockLocation, ah as RestockType, jO as RestockTypeWithLiterals, dw as RestoreInfo, c5 as SavedPaymentMethod, aa as ScheduledAction, jH as ScheduledActionWithLiterals, gq as SearchOrdersRequest, eY as SendBuyerConfirmationEmailRequest, eZ as SendBuyerConfirmationEmailResponse, e_ as SendBuyerPaymentsReceivedEmailRequest, e$ as SendBuyerPaymentsReceivedEmailResponse, f0 as SendBuyerPickupConfirmationEmailRequest, f1 as SendBuyerPickupConfirmationEmailResponse, f4 as SendBuyerShippingConfirmationEmailRequest, f5 as SendBuyerShippingConfirmationEmailResponse, fa as SendCancelRefundEmailRequest, fb as SendCancelRefundEmailResponse, fe as SendFulfillmentEmailRequest, ff as SendFulfillmentEmailResponse, f8 as SendMerchantOrderReceivedNotificationRequest, f9 as SendMerchantOrderReceivedNotificationResponse, fg as SendMerchantOrderReceivedPushRequest, fh as SendMerchantOrderReceivedPushResponse, ii as SendOrderUpdatedDomainEventRequest, ij as SendOrderUpdatedDomainEventResponse, fc as SendRefundEmailRequest, fd as SendRefundEmailResponse, ee as ServiceProperties, fM as ServiceProvisioned, fN 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, em as ShippingRefund, bu as ShippingRegion, fD as SiteCreated, at as SiteCreatedContext, j_ as SiteCreatedContextWithLiterals, fF as SiteDeleted, fP as SiteHardDeleted, fK as SiteMarkedAsTemplate, fL as SiteMarkedAsWixSite, fI as SitePublished, fU as SitePurgedExternally, fO as SiteRenamed, fE as SiteTransferred, fH as SiteUndeleted, fJ as SiteUnpublished, fT 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, as as State, jZ as StateWithLiterals, bj as StreetAddress, fR as StudioAssigned, f$ as StudioTwoAssigned, g0 as StudioTwoUnassigned, fS 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, ai as TransactionStatus, jP as TransactionStatusWithLiterals, bb as TranslatableString, b$ as TranslatedValue, kf as TriggerRefundApplicationErrors, j6 as TriggerRefundOptions, eg as TriggerRefundRequest, eq 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, dV as UserDefinedPaymentMethodName, dW as UserDefinedPaymentMethodNameKindOneOf, g2 as UserDomainMediaDisabled, g1 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, eC 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, eU as VoidAuthorizedPaymentsRequest, a9 as WebhookIdentityType, jG as WebhookIdentityTypeWithLiterals, W as WeightUnit, jo as WeightUnitWithLiterals, ct as WixReceipt, eH as WixReceiptInfo, fZ as WixelAssigned, f_ as WixelUnassigned, jd as utils } from './ecom-v1-order-orders.universal-Cc8IUoG2.js';
4
4
 
5
5
  declare function preparePaymentCollection$1(httpClient: HttpClient): PreparePaymentCollectionSignature;
6
6
  interface PreparePaymentCollectionSignature {
@@ -2062,6 +2062,12 @@ var ChargeType = /* @__PURE__ */ ((ChargeType2) => {
2062
2062
  ChargeType2["ABSORBED"] = "ABSORBED";
2063
2063
  return ChargeType2;
2064
2064
  })(ChargeType || {});
2065
+ var VersioningMode = /* @__PURE__ */ ((VersioningMode2) => {
2066
+ VersioningMode2["DEFAULT"] = "DEFAULT";
2067
+ VersioningMode2["GREATER_THAN"] = "GREATER_THAN";
2068
+ VersioningMode2["GREATER_OR_EQUAL"] = "GREATER_OR_EQUAL";
2069
+ return VersioningMode2;
2070
+ })(VersioningMode || {});
2065
2071
  var DeltaPaymentOptionType = /* @__PURE__ */ ((DeltaPaymentOptionType2) => {
2066
2072
  DeltaPaymentOptionType2["FULL_PAYMENT_OFFLINE"] = "FULL_PAYMENT_OFFLINE";
2067
2073
  DeltaPaymentOptionType2["MEMBERSHIP_OFFLINE"] = "MEMBERSHIP_OFFLINE";
@@ -2080,12 +2086,6 @@ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
2080
2086
  WebhookIdentityType2["APP"] = "APP";
2081
2087
  return WebhookIdentityType2;
2082
2088
  })(WebhookIdentityType || {});
2083
- var VersioningMode = /* @__PURE__ */ ((VersioningMode2) => {
2084
- VersioningMode2["DEFAULT"] = "DEFAULT";
2085
- VersioningMode2["GREATER_THAN"] = "GREATER_THAN";
2086
- VersioningMode2["GREATER_OR_EQUAL"] = "GREATER_OR_EQUAL";
2087
- return VersioningMode2;
2088
- })(VersioningMode || {});
2089
2089
  var ScheduledAction = /* @__PURE__ */ ((ScheduledAction2) => {
2090
2090
  ScheduledAction2["VOID"] = "VOID";
2091
2091
  ScheduledAction2["CAPTURE"] = "CAPTURE";