@wix/auto_sdk_ecom_orders 1.0.218 → 1.0.220

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-u09r8hRJ.d.ts → ecom-v1-order-orders.universal-BjvDnQO1.d.ts} +177 -168
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +14 -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 +14 -6
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +178 -169
  9. package/build/cjs/meta.js +14 -6
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{ecom-v1-order-orders.universal-u09r8hRJ.d.mts → ecom-v1-order-orders.universal-BjvDnQO1.d.mts} +177 -168
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +13 -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 +13 -6
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +178 -169
  19. package/build/es/meta.mjs +13 -6
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{ecom-v1-order-orders.universal-B_SIJVco.d.ts → ecom-v1-order-orders.universal-lXc4bLyX.d.ts} +183 -168
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +14 -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 +14 -6
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +178 -169
  29. package/build/internal/cjs/meta.js +14 -6
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{ecom-v1-order-orders.universal-B_SIJVco.d.mts → ecom-v1-order-orders.universal-lXc4bLyX.d.mts} +183 -168
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +13 -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 +13 -6
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +178 -169
  39. package/build/internal/es/meta.mjs +13 -6
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -528,6 +528,20 @@ declare enum ItemTypePreset {
528
528
  }
529
529
  /** @enumType */
530
530
  type ItemTypePresetWithLiterals = ItemTypePreset | 'UNRECOGNISED' | 'PHYSICAL' | 'DIGITAL' | 'GIFT_CARD' | 'SERVICE';
531
+ /** Quantity of items restocked at a specific location. */
532
+ interface RestockLocation {
533
+ /**
534
+ * ID of the location where items were restocked.
535
+ * @format GUID
536
+ */
537
+ locationId?: string;
538
+ /**
539
+ * Number of items restocked at this location.
540
+ * @min 1
541
+ * @max 100000
542
+ */
543
+ quantity?: number;
544
+ }
531
545
  /** Type of selected payment option for catalog item */
532
546
  declare enum PaymentOptionType {
533
547
  /** The entire payment for this item happens as part of the checkout. */
@@ -3562,164 +3576,6 @@ interface AccountInfo {
3562
3576
  */
3563
3577
  siteId?: string | null;
3564
3578
  }
3565
- interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
3566
- /** insert/update documents */
3567
- update?: InternalDocumentUpdateOperation;
3568
- /** delete by document ids */
3569
- deleteByIds?: DeleteByIdsOperation;
3570
- /** delete documents matching filter */
3571
- deleteByFilter?: DeleteByFilterOperation;
3572
- /** update internal documents matching filter */
3573
- updateByFilter?: InternalDocumentUpdateByFilterOperation;
3574
- /** update only existing documents */
3575
- updateExisting?: InternalUpdateExistingOperation;
3576
- /** insert/update documents with versioning */
3577
- versionedUpdate?: VersionedDocumentUpdateOperation;
3578
- /** delete by document ids with versioning */
3579
- versionedDeleteByIds?: VersionedDeleteByIdsOperation;
3580
- /**
3581
- * type of the documents
3582
- * @minLength 2
3583
- */
3584
- documentType?: string;
3585
- /**
3586
- * language of the documents (mandatory)
3587
- * @minLength 2
3588
- */
3589
- language?: string | null;
3590
- /**
3591
- * one or more search documents
3592
- * @deprecated
3593
- */
3594
- addDocuments?: InternalDocument[];
3595
- /**
3596
- * one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
3597
- * @deprecated
3598
- */
3599
- removeDocumentIds?: string[];
3600
- /** id to pass to processing notification */
3601
- correlationId?: string | null;
3602
- /** when event was created / issued */
3603
- issuedAt?: Date | null;
3604
- }
3605
- /** @oneof */
3606
- interface UpdateInternalDocumentsEventOperationOneOf {
3607
- /** insert/update documents */
3608
- update?: InternalDocumentUpdateOperation;
3609
- /** delete by document ids */
3610
- deleteByIds?: DeleteByIdsOperation;
3611
- /** delete documents matching filter */
3612
- deleteByFilter?: DeleteByFilterOperation;
3613
- /** update internal documents matching filter */
3614
- updateByFilter?: InternalDocumentUpdateByFilterOperation;
3615
- /** update only existing documents */
3616
- updateExisting?: InternalUpdateExistingOperation;
3617
- /** insert/update documents with versioning */
3618
- versionedUpdate?: VersionedDocumentUpdateOperation;
3619
- /** delete by document ids with versioning */
3620
- versionedDeleteByIds?: VersionedDeleteByIdsOperation;
3621
- }
3622
- interface InternalDocument {
3623
- /** document with mandatory fields (id) and with fields specific to the type of the document */
3624
- document?: Record<string, any> | null;
3625
- }
3626
- interface InternalDocumentUpdateOperation {
3627
- /** documents to index or update */
3628
- documents?: InternalDocument[];
3629
- }
3630
- interface DeleteByIdsOperation {
3631
- /** ids of the documents to delete */
3632
- documentIds?: string[];
3633
- /**
3634
- * tenant id for custom tenancy strategy
3635
- * @minLength 2
3636
- * @maxLength 300
3637
- */
3638
- tenantId?: string | null;
3639
- }
3640
- interface DeleteByFilterOperation {
3641
- /** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
3642
- filter?: Record<string, any> | null;
3643
- /**
3644
- * tenant id for custom tenancy strategy
3645
- * @minLength 2
3646
- * @maxLength 300
3647
- */
3648
- tenantId?: string | null;
3649
- }
3650
- interface InternalDocumentUpdateByFilterOperation {
3651
- /** documents matching this filter will be updated */
3652
- filter?: Record<string, any> | null;
3653
- /** partial document to apply */
3654
- document?: InternalDocument;
3655
- /**
3656
- * tenant id for custom tenancy strategy
3657
- * @minLength 2
3658
- * @maxLength 300
3659
- */
3660
- tenantId?: string | null;
3661
- }
3662
- interface InternalUpdateExistingOperation {
3663
- /** documents to update */
3664
- documents?: InternalDocument[];
3665
- }
3666
- interface VersionedDocumentUpdateOperation {
3667
- /** documents to create or overwrite */
3668
- documents?: InternalDocument[];
3669
- /** versioning mode to use instead of default */
3670
- versioningMode?: VersioningModeWithLiterals;
3671
- }
3672
- declare enum VersioningMode {
3673
- /** use default versioning mode agreed with search team */
3674
- DEFAULT = "DEFAULT",
3675
- /** execute only if version is greater than existing */
3676
- GREATER_THAN = "GREATER_THAN",
3677
- /** execute only if version is greater or equal to existing */
3678
- GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
3679
- }
3680
- /** @enumType */
3681
- type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
3682
- interface VersionedDeleteByIdsOperation {
3683
- /** ids with version of the documents to delete */
3684
- documentIds?: VersionedDocumentId[];
3685
- /**
3686
- * tenant id for custom tenancy strategy
3687
- * @minLength 2
3688
- * @maxLength 300
3689
- */
3690
- tenantId?: string | null;
3691
- }
3692
- interface VersionedDocumentId {
3693
- /** document id */
3694
- documentId?: string;
3695
- /** document version */
3696
- version?: string;
3697
- /** versioning mode to use instead of default */
3698
- versioningMode?: VersioningModeWithLiterals;
3699
- }
3700
- interface TriggerReindexRequest {
3701
- /** @format GUID */
3702
- metasiteId?: string;
3703
- /**
3704
- * @minLength 1
3705
- * @maxLength 100
3706
- * @maxSize 100
3707
- */
3708
- orderIds?: string[];
3709
- }
3710
- interface TriggerReindexResponse {
3711
- }
3712
- interface Empty {
3713
- }
3714
- interface TriggerReindexOrderRequest {
3715
- /** @format GUID */
3716
- metasiteId?: string;
3717
- /**
3718
- * @minLength 1
3719
- * @maxLength 100
3720
- */
3721
- orderId?: string;
3722
- }
3723
3579
  interface SendBuyerConfirmationEmailRequest {
3724
3580
  /** @format GUID */
3725
3581
  orderId?: string;
@@ -4020,6 +3876,8 @@ interface PreviewResendDownloadLinksEmailRequest {
4020
3876
  interface PreviewResendDownloadLinksEmailResponse {
4021
3877
  emailPreview?: string;
4022
3878
  }
3879
+ interface Empty {
3880
+ }
4023
3881
  interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
4024
3882
  /** Emitted on a meta site creation. */
4025
3883
  siteCreated?: SiteCreated;
@@ -4549,7 +4407,16 @@ interface HasCustomEmailConfigurationsResponse {
4549
4407
  interface AddToAutomationMigrationPopulationRequest {
4550
4408
  /** When true, sends custom email configurations to automation system via email */
4551
4409
  sendCustomEmailConfigs?: boolean;
4410
+ /** Origin of the migration request. Defaults to OPT_IN when UNKNOWN_ORIGIN. */
4411
+ origin?: OriginWithLiterals;
4552
4412
  }
4413
+ declare enum Origin {
4414
+ UNKNOWN_ORIGIN = "UNKNOWN_ORIGIN",
4415
+ OPT_IN = "OPT_IN",
4416
+ MIGRATION = "MIGRATION"
4417
+ }
4418
+ /** @enumType */
4419
+ type OriginWithLiterals = Origin | 'UNKNOWN_ORIGIN' | 'OPT_IN' | 'MIGRATION';
4553
4420
  interface AddToAutomationMigrationPopulationResponse {
4554
4421
  success?: boolean;
4555
4422
  }
@@ -5707,19 +5574,161 @@ interface ChargeSavedPaymentMethodResponse {
5707
5574
  /** Payment gateway's order ID (e.g Wix Payments) */
5708
5575
  paymentGatewayOrderId?: string;
5709
5576
  }
5710
- /** Quantity of items restocked at a specific location. */
5711
- interface RestockLocation {
5577
+ interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
5578
+ /** insert/update documents */
5579
+ update?: InternalDocumentUpdateOperation;
5580
+ /** delete by document ids */
5581
+ deleteByIds?: DeleteByIdsOperation;
5582
+ /** delete documents matching filter */
5583
+ deleteByFilter?: DeleteByFilterOperation;
5584
+ /** update internal documents matching filter */
5585
+ updateByFilter?: InternalDocumentUpdateByFilterOperation;
5586
+ /** update only existing documents */
5587
+ updateExisting?: InternalUpdateExistingOperation;
5588
+ /** insert/update documents with versioning */
5589
+ versionedUpdate?: VersionedDocumentUpdateOperation;
5590
+ /** delete by document ids with versioning */
5591
+ versionedDeleteByIds?: VersionedDeleteByIdsOperation;
5712
5592
  /**
5713
- * ID of the location where items were restocked.
5714
- * @format GUID
5593
+ * type of the documents
5594
+ * @minLength 2
5715
5595
  */
5716
- locationId?: string;
5596
+ documentType?: string;
5717
5597
  /**
5718
- * Number of items restocked at this location.
5719
- * @min 1
5720
- * @max 100000
5598
+ * language of the documents (mandatory)
5599
+ * @minLength 2
5721
5600
  */
5722
- quantity?: number;
5601
+ language?: string | null;
5602
+ /**
5603
+ * one or more search documents
5604
+ * @deprecated
5605
+ */
5606
+ addDocuments?: InternalDocument[];
5607
+ /**
5608
+ * one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
5609
+ * @deprecated
5610
+ */
5611
+ removeDocumentIds?: string[];
5612
+ /** id to pass to processing notification */
5613
+ correlationId?: string | null;
5614
+ /** when event was created / issued */
5615
+ issuedAt?: Date | null;
5616
+ }
5617
+ /** @oneof */
5618
+ interface UpdateInternalDocumentsEventOperationOneOf {
5619
+ /** insert/update documents */
5620
+ update?: InternalDocumentUpdateOperation;
5621
+ /** delete by document ids */
5622
+ deleteByIds?: DeleteByIdsOperation;
5623
+ /** delete documents matching filter */
5624
+ deleteByFilter?: DeleteByFilterOperation;
5625
+ /** update internal documents matching filter */
5626
+ updateByFilter?: InternalDocumentUpdateByFilterOperation;
5627
+ /** update only existing documents */
5628
+ updateExisting?: InternalUpdateExistingOperation;
5629
+ /** insert/update documents with versioning */
5630
+ versionedUpdate?: VersionedDocumentUpdateOperation;
5631
+ /** delete by document ids with versioning */
5632
+ versionedDeleteByIds?: VersionedDeleteByIdsOperation;
5633
+ }
5634
+ interface InternalDocument {
5635
+ /** document with mandatory fields (id) and with fields specific to the type of the document */
5636
+ document?: Record<string, any> | null;
5637
+ }
5638
+ interface InternalDocumentUpdateOperation {
5639
+ /** documents to index or update */
5640
+ documents?: InternalDocument[];
5641
+ }
5642
+ interface DeleteByIdsOperation {
5643
+ /** ids of the documents to delete */
5644
+ documentIds?: string[];
5645
+ /**
5646
+ * tenant id for custom tenancy strategy
5647
+ * @minLength 2
5648
+ * @maxLength 300
5649
+ */
5650
+ tenantId?: string | null;
5651
+ }
5652
+ interface DeleteByFilterOperation {
5653
+ /** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
5654
+ filter?: Record<string, any> | null;
5655
+ /**
5656
+ * tenant id for custom tenancy strategy
5657
+ * @minLength 2
5658
+ * @maxLength 300
5659
+ */
5660
+ tenantId?: string | null;
5661
+ }
5662
+ interface InternalDocumentUpdateByFilterOperation {
5663
+ /** documents matching this filter will be updated */
5664
+ filter?: Record<string, any> | null;
5665
+ /** partial document to apply */
5666
+ document?: InternalDocument;
5667
+ /**
5668
+ * tenant id for custom tenancy strategy
5669
+ * @minLength 2
5670
+ * @maxLength 300
5671
+ */
5672
+ tenantId?: string | null;
5673
+ }
5674
+ interface InternalUpdateExistingOperation {
5675
+ /** documents to update */
5676
+ documents?: InternalDocument[];
5677
+ }
5678
+ interface VersionedDocumentUpdateOperation {
5679
+ /** documents to create or overwrite */
5680
+ documents?: InternalDocument[];
5681
+ /** versioning mode to use instead of default */
5682
+ versioningMode?: VersioningModeWithLiterals;
5683
+ }
5684
+ declare enum VersioningMode {
5685
+ /** use default versioning mode agreed with search team */
5686
+ DEFAULT = "DEFAULT",
5687
+ /** execute only if version is greater than existing */
5688
+ GREATER_THAN = "GREATER_THAN",
5689
+ /** execute only if version is greater or equal to existing */
5690
+ GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
5691
+ }
5692
+ /** @enumType */
5693
+ type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
5694
+ interface VersionedDeleteByIdsOperation {
5695
+ /** ids with version of the documents to delete */
5696
+ documentIds?: VersionedDocumentId[];
5697
+ /**
5698
+ * tenant id for custom tenancy strategy
5699
+ * @minLength 2
5700
+ * @maxLength 300
5701
+ */
5702
+ tenantId?: string | null;
5703
+ }
5704
+ interface VersionedDocumentId {
5705
+ /** document id */
5706
+ documentId?: string;
5707
+ /** document version */
5708
+ version?: string;
5709
+ /** versioning mode to use instead of default */
5710
+ versioningMode?: VersioningModeWithLiterals;
5711
+ }
5712
+ interface TriggerReindexRequest {
5713
+ /** @format GUID */
5714
+ metasiteId?: string;
5715
+ /**
5716
+ * @minLength 1
5717
+ * @maxLength 100
5718
+ * @maxSize 100
5719
+ */
5720
+ orderIds?: string[];
5721
+ }
5722
+ interface TriggerReindexResponse {
5723
+ }
5724
+ interface TriggerReindexOrderRequest {
5725
+ /** @format GUID */
5726
+ metasiteId?: string;
5727
+ /**
5728
+ * @minLength 1
5729
+ * @maxLength 100
5730
+ */
5731
+ orderId?: string;
5723
5732
  }
5724
5733
  interface DiffmatokyPayload {
5725
5734
  left?: string;
@@ -8692,4 +8701,4 @@ interface BulkUpdateOrderTagsOptions {
8692
8701
  unassignTags?: TagsTags;
8693
8702
  }
8694
8703
 
8695
- 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, PaymentStatus 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 BillingAdjustment 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, CustomFieldGroup as aA, ValueType as aB, DepositType as aC, InvoiceStatus as aD, type OrderLineItem as aE, type ProductName as aF, type CatalogReference as aG, type DescriptionLine as aH, type DescriptionLineValueOneOf as aI, type DescriptionLineDescriptionLineValueOneOf as aJ, type DescriptionLineName as aK, type PlainTextValue as aL, type Color as aM, type FocalPoint as aN, type PhysicalProperties as aO, type Dimensions as aP, type ItemType as aQ, type ItemTypeItemTypeDataOneOf as aR, type ItemTaxFullDetails as aS, type LineItemTaxInfo as aT, type LineItemTaxBreakdown as aU, type DigitalFile as aV, type SubscriptionInfo as aW, type SubscriptionTitle as aX, type SubscriptionDescription as aY, type SubscriptionSettings as aZ, type FreeTrialPeriod as a_, PreviewEmailType as aa, State as ab, SiteCreatedContext as ac, Namespace as ad, DeleteStatus as ae, ScheduledAction as af, DurationUnit as ag, PaymentCollectabilityStatus as ah, PredefinedPaymentMethod as ai, RefundableStatus as aj, NonRefundableReason as ak, ManuallyRefundableReason as al, RestockType as am, TransactionStatus as an, AuthorizationCaptureStatus as ao, AuthorizationVoidStatus as ap, Reason as aq, ActionType as ar, ChargebackStatus as as, MembershipPaymentStatus as at, RefundStatus as au, SortOrder as av, OrderApprovalStrategy as aw, Placement as ax, SubdivisionType as ay, SourceType as az, type PreparePaymentCollectionResponse as b, type ShippingInformationChange as b$, type BillingAdjustmentPriceSummary as b0, type PriceDescription as b1, type LocationAndQuantity as b2, type TaxableAddress as b3, type TaxableAddressTaxableAddressDataOneOf as b4, type ExtendedFields as b5, type ModifierGroup as b6, type TranslatableString as b7, type ItemModifier as b8, type BuyerInfo as b9, type DiscountRuleName as bA, type LineItemDiscount as bB, type ItemCombination as bC, type ItemCombinationLineItem as bD, type Activity as bE, type ActivityContentOneOf as bF, type CustomActivity as bG, type MerchantComment as bH, type OrderRefunded as bI, type OrderCreatedFromExchange as bJ, type NewExchangeOrderCreated as bK, type LineItemExchangeData as bL, type DraftOrderChangesApplied as bM, type OrderChange as bN, type OrderChangeValueOneOf as bO, type LineItemChanges as bP, type LineItemQuantityChange as bQ, type LineItemPriceChange as bR, type LineItemProductNameChange as bS, type LineItemDescriptionLineChange as bT, type LineItemModifiersChange as bU, type ManagedLineItem as bV, type ManagedDiscount as bW, type TranslatedValue as bX, type LineItemAmount as bY, type ManagedAdditionalFee as bZ, type TotalPriceChange as b_, type BuyerInfoIdOneOf as ba, type CurrencyConversionDetails as bb, type PriceSummary as bc, type AddressWithContact as bd, type Address as be, type StreetAddress as bf, type AddressLocation as bg, type FullAddressContactDetails as bh, type VatId as bi, type V1ShippingInformation as bj, type DeliveryLogistics as bk, type DeliveryLogisticsAddressOneOf as bl, type PickupDetails as bm, type PickupAddress as bn, type DeliveryTimeSlot as bo, type ShippingPrice as bp, type ShippingRegion as bq, type TaxSummary as br, type OrderTaxInfo as bs, type OrderTaxBreakdown as bt, type AppliedDiscount as bu, type AppliedDiscountDiscountSourceOneOf as bv, type Coupon as bw, type MerchantDiscount as bx, type MerchantDiscountMerchantDiscountReasonOneOf as by, type DiscountRule as bz, type PreparePaymentCollectionApplicationErrors as c, type CommittedDiffs as c$, type ShippingInformation as c0, type SavedPaymentMethod as c1, type AuthorizedPaymentCreated as c2, type AuthorizedPaymentCaptured as c3, type AuthorizedPaymentVoided as c4, type RefundInitiated as c5, type RefundedPayment as c6, type RefundedPaymentKindOneOf as c7, type RegularPaymentRefund as c8, type GiftCardPaymentRefund as c9, type Balance as cA, type CashRounding as cB, type AdditionalFee as cC, type FulfillmentStatusesAggregate as cD, type Tags as cE, type TagList as cF, type Location as cG, type OrderSettings as cH, type OrderSettingsAllowedActionsOneOf as cI, type OrderSettingsEditableByOneOf as cJ, type CustomAllowedActions as cK, type OwnerApps as cL, type FormInfo as cM, type FormIdentifier as cN, type PlatformFeeSummary as cO, type PlatformFee as cP, type OrderApproved as cQ, type OrdersExperiments as cR, type OrderRejectedEventOrderRejected as cS, type OrderItemsRestocked as cT, type V1RestockItem as cU, type OrderImported as cV, type ImportedOrderDeleted as cW, type PaymentStatusUpdated as cX, type FulfillmentStatusUpdated as cY, type OrderCanceledEventOrderCanceled as cZ, type OrderDeltasCommitted as c_, type MembershipPaymentRefund as ca, type PaymentRefunded as cb, type PaymentRefundFailed as cc, type RefundedAsStoreCredit as cd, type PaymentPending as ce, type PaymentPendingPaymentDetailsOneOf as cf, type RegularPayment as cg, type RegularPaymentPaymentMethodDetailsOneOf as ch, type CreditCardDetails as ci, type PaymentCanceled as cj, type PaymentCanceledPaymentDetailsOneOf as ck, type PaymentDeclined as cl, type PaymentDeclinedPaymentDetailsOneOf as cm, type ReceiptCreated as cn, type ReceiptCreatedReceiptInfoOneOf as co, type WixReceipt as cp, type ExternalReceipt as cq, type ReceiptSent as cr, type ReceiptSentReceiptInfoOneOf as cs, type ChargebackCreated as ct, type ChargebackReversed as cu, type CreatedBy as cv, type CreatedByStringOneOf as cw, type ChannelInfo as cx, type CustomField as cy, type BalanceSummary as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type SendFulfillmentEmailResponse as d$, type CommittedDiffsShippingUpdateInfoOneOf as d0, type ItemChangedDetails as d1, type OrderLineItemChangedDetails as d2, type LineItemDelta as d3, type LineItemDeltaDeltaOneOf as d4, type AppliedDiscountDelta as d5, type AppliedDiscountDeltaDeltaOneOf as d6, type AdditionalFeeDelta as d7, type AdditionalFeeDeltaDeltaOneOf as d8, type DraftOrderCommitSettings as d9, type InternalUpdateExistingOperation as dA, type VersionedDocumentUpdateOperation as dB, type VersionedDeleteByIdsOperation as dC, type VersionedDocumentId as dD, type TriggerReindexRequest as dE, type TriggerReindexResponse as dF, type Empty as dG, type TriggerReindexOrderRequest as dH, type SendBuyerConfirmationEmailRequest as dI, type SendBuyerConfirmationEmailResponse as dJ, type SendBuyerPaymentsReceivedEmailRequest as dK, type SendBuyerPaymentsReceivedEmailResponse as dL, type SendBuyerPickupConfirmationEmailRequest as dM, type SendBuyerPickupConfirmationEmailResponse as dN, type BulkSendBuyerPickupConfirmationEmailsRequest as dO, type BulkSendBuyerPickupConfirmationEmailsResponse as dP, type SendBuyerShippingConfirmationEmailRequest as dQ, type SendBuyerShippingConfirmationEmailResponse as dR, type BulkSendBuyerShippingConfirmationEmailsRequest as dS, type BulkSendBuyerShippingConfirmationEmailsResponse as dT, type SendMerchantOrderReceivedNotificationRequest as dU, type SendMerchantOrderReceivedNotificationResponse as dV, type SendCancelRefundEmailRequest as dW, type SendCancelRefundEmailResponse as dX, type SendRefundEmailRequest as dY, type SendRefundEmailResponse as dZ, type SendFulfillmentEmailRequest as d_, type InventoryUpdateDetails as da, type ImportOrderRequest as db, type ImportOrderResponse as dc, type SetOrderNumberCounterRequest as dd, type SetOrderNumberCounterResponse as de, type BulkDeleteImportedOrdersRequest as df, type BulkDeleteImportedOrdersResponse as dg, type DomainEvent as dh, type DomainEventBodyOneOf as di, type EntityCreatedEvent as dj, type RestoreInfo as dk, type EntityUpdatedEvent as dl, type EntityDeletedEvent as dm, type ActionEvent as dn, type MessageEnvelope as dp, type IdentificationData as dq, type IdentificationDataIdOneOf as dr, type AccountInfo as ds, type UpdateInternalDocumentsEvent as dt, type UpdateInternalDocumentsEventOperationOneOf as du, type InternalDocument as dv, type InternalDocumentUpdateOperation as dw, type DeleteByIdsOperation as dx, type DeleteByFilterOperation as dy, type InternalDocumentUpdateByFilterOperation as dz, type PaymentCapture as e, type IsInAutomationMigrationPopulationResponse as e$, type SendMerchantOrderReceivedPushRequest as e0, type SendMerchantOrderReceivedPushResponse as e1, type PreviewEmailByTypeRequest as e2, type PreviewEmailByTypeResponse as e3, type PreviewRefundEmailRequest as e4, type RefundDetails as e5, type RefundItem as e6, type LineItemRefund as e7, type AdditionalFeeRefund as e8, type ShippingRefund as e9, type SiteMarkedAsWixSite as eA, type ServiceProvisioned as eB, type ServiceRemoved as eC, type SiteRenamed as eD, type SiteHardDeleted as eE, type NamespaceChanged as eF, type StudioAssigned as eG, type StudioUnassigned as eH, type SiteUrlChanged as eI, type SitePurgedExternally as eJ, type OdeditorAssigned as eK, type OdeditorUnassigned as eL, type PicassoAssigned as eM, type PicassoUnassigned as eN, type WixelAssigned as eO, type WixelUnassigned as eP, type StudioTwoAssigned as eQ, type StudioTwoUnassigned as eR, type UserDomainMediaEnabled as eS, type UserDomainMediaDisabled as eT, type EditorlessAssigned as eU, type EditorlessUnassigned as eV, type HasCustomEmailConfigurationsRequest as eW, type HasCustomEmailConfigurationsResponse as eX, type AddToAutomationMigrationPopulationRequest as eY, type AddToAutomationMigrationPopulationResponse as eZ, type IsInAutomationMigrationPopulationRequest as e_, type PreviewRefundEmailResponse as ea, type PreviewCancelEmailRequest as eb, type PreviewCancelEmailResponse as ec, type PreviewCancelRefundEmailRequest as ed, type PreviewCancelRefundEmailResponse as ee, type PreviewBuyerPaymentsReceivedEmailRequest as ef, type PreviewBuyerPaymentsReceivedEmailResponse as eg, type PreviewBuyerConfirmationEmailRequest as eh, type PreviewBuyerConfirmationEmailResponse as ei, type PreviewBuyerPickupConfirmationEmailRequest as ej, type PreviewBuyerPickupConfirmationEmailResponse as ek, type PreviewShippingConfirmationEmailRequest as el, type PreviewShippingConfirmationEmailResponse as em, type PreviewResendDownloadLinksEmailRequest as en, type PreviewResendDownloadLinksEmailResponse as eo, type MetaSiteSpecialEvent as ep, type MetaSiteSpecialEventPayloadOneOf as eq, type Asset as er, type SiteCreated as es, type SiteTransferred as et, type SiteDeleted as eu, type DeleteContext as ev, type SiteUndeleted as ew, type SitePublished as ex, type SiteUnpublished as ey, type SiteMarkedAsTemplate as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type CalculateRefundItemResponse as f$, type PreparePaymentCollectionRequest as f0, type RedirectUrls as f1, type DelayedCaptureSettings as f2, type Duration as f3, type GetPaymentCollectabilityStatusRequest as f4, type RecordManuallyCollectedPaymentRequest as f5, type UserDefinedPaymentMethodName as f6, type UserDefinedPaymentMethodNameKindOneOf as f7, type RecordManuallyCollectedPaymentResponse as f8, type MarkOrderAsPaidRequest as f9, type Payment as fA, type PaymentPaymentDetailsOneOf as fB, type PaymentReceiptInfoOneOf as fC, type RegularPaymentDetails as fD, type RegularPaymentDetailsPaymentMethodDetailsOneOf as fE, type CreditCardPaymentMethodDetails as fF, type AuthorizationDetails as fG, type AuthorizationCapture as fH, type AuthorizationActionFailureDetails as fI, type AuthorizationVoid as fJ, type V1ScheduledAction as fK, type Chargeback as fL, type PaymentMethodName as fM, type GiftCardPaymentDetails as fN, type MembershipPaymentDetails as fO, type WixReceiptInfo as fP, type ExternalReceiptInfo as fQ, type CashRoundingDetails as fR, type Refund as fS, type RefundTransaction as fT, type RefundStatusInfo as fU, type AggregatedRefundSummary as fV, type RefundItemsBreakdown as fW, type LineItemRefundSummary as fX, type CalculateRefundRequest as fY, type CalculateRefundItemRequest as fZ, type CalculateRefundResponse as f_, type MarkOrderAsPaidResponse as fa, type BulkMarkOrdersAsPaidRequest as fb, type BulkMarkOrdersAsPaidResponse as fc, type BulkOrderResult as fd, type ItemMetadata as fe, type ApplicationError as ff, type BulkActionMetadata as fg, type GetRefundabilityStatusRequest as fh, type GetRefundabilityStatusResponse as fi, type Refundability as fj, type RefundabilityAdditionalRefundabilityInfoOneOf as fk, type CreatePaymentGatewayOrderRequest as fl, type ChargedBy as fm, type CreatePaymentGatewayOrderResponse as fn, type ChargeMembershipsRequest as fo, type MembershipChargeItem as fp, type MembershipName as fq, type ServiceProperties as fr, type ChargeMembershipsResponse as fs, type TriggerRefundRequest as ft, type PaymentRefund as fu, type RefundSideEffects as fv, type RestockInfo as fw, type RestockItem as fx, type TriggerRefundResponse as fy, type OrderTransactions as fz, type GetOrderApplicationErrors as g, type UpdateOrderLineItemResponse as g$, type VoidAuthorizedPaymentsRequest as g0, type CaptureAuthorizedPaymentsRequest as g1, type ChargeSavedPaymentMethodRequest as g2, type ChargeSavedPaymentMethodResponse as g3, type RestockLocation as g4, type DiffmatokyPayload as g5, type ErrorInformation as g6, type GetOrderRequest as g7, type GetOrderResponse as g8, type InternalQueryOrdersRequest as g9, type DraftOrderDiffsBillingUpdateInfoOneOf as gA, type DraftOrderDiffsRecipientUpdateInfoOneOf as gB, type V1LineItemDelta as gC, type V1LineItemDeltaDeltaOneOf as gD, type CommitDeltasResponse as gE, type ArchiveOrderRequest as gF, type ArchiveOrderResponse as gG, type BulkArchiveOrdersRequest as gH, type BulkArchiveOrdersResponse as gI, type BulkArchiveOrdersByFilterRequest as gJ, type BulkArchiveOrdersByFilterResponse as gK, type UnArchiveOrderRequest as gL, type UnArchiveOrderResponse as gM, type BulkUnArchiveOrdersRequest as gN, type BulkUnArchiveOrdersResponse as gO, type BulkUnArchiveOrdersByFilterRequest as gP, type BulkUnArchiveOrdersByFilterResponse as gQ, type UpdateBuyerInfoRequest as gR, type BuyerInfoUpdate as gS, type UpdateBuyerInfoResponse as gT, type UpdateBuyerEmailRequest as gU, type UpdateBuyerEmailResponse as gV, type UpdateOrderShippingAddressRequest as gW, type UpdateOrderShippingAddressResponse as gX, type UpdateBillingContactDetailsRequest as gY, type UpdateBillingContactDetailsResponse as gZ, type UpdateOrderLineItemRequest as g_, type PlatformQuery as ga, type PlatformQueryPagingMethodOneOf as gb, type Sorting as gc, type PlatformPaging as gd, type CursorPaging as ge, type InternalQueryOrdersResponse as gf, type PlatformPagingMetadata as gg, type Cursors as gh, type QueryOrderRequest as gi, type QueryOrderResponse as gj, type SearchOrdersRequest as gk, type CursorSearch as gl, type CursorSearchPagingMethodOneOf as gm, type CursorPagingMetadata as gn, type CreateOrderRequest as go, type OrderCreationSettings as gp, type OrderCreationSettingsEditableByOneOf as gq, type OrderCreateNotifications as gr, type CreateOrderResponse as gs, type UpdateOrderRequest as gt, type UpdateOrderResponse as gu, type BulkUpdateOrdersRequest as gv, type CommitDeltasRequest as gw, type DraftOrderDiffs as gx, type DraftOrderDiffsShippingUpdateInfoOneOf as gy, type DraftOrderDiffsBuyerUpdateInfoOneOf as gz, type OrderSearch as h, type V1CreatePaymentGatewayOrderResponse as h$, type UpdateOrderLineItemsRequest as h0, type MaskedOrderLineItem as h1, type UpdateOrderLineItemsResponse as h2, type AddInternalActivityRequest as h3, type InternalActivity as h4, type InternalActivityContentOneOf as h5, type OrderPlaced as h6, type OrderPaid as h7, type OrderFulfilled as h8, type OrderNotFulfilled as h9, type LineItemUpdate as hA, type UpdateLineItemsDescriptionLinesResponse as hB, type MarkOrderAsSeenByHumanRequest as hC, type MarkOrderAsSeenByHumanResponse as hD, type CancelOrderRequest as hE, type UpdateOrderStatusRequest as hF, type UpdateOrderStatusResponse as hG, type MarkAsFulfilledRequest as hH, type MarkAsFulfilledResponse as hI, type BulkMarkAsFulfilledRequest as hJ, type BulkMarkAsFulfilledResponse as hK, type BulkMarkAsFulfilledByFilterRequest as hL, type BulkMarkAsFulfilledByFilterResponse as hM, type MarkAsUnfulfilledRequest as hN, type MarkAsUnfulfilledResponse as hO, type BulkMarkAsUnfulfilledRequest as hP, type BulkMarkAsUnfulfilledResponse as hQ, type BulkMarkAsUnfulfilledByFilterRequest as hR, type BulkMarkAsUnfulfilledByFilterResponse as hS, type BulkSetBusinessLocationRequest as hT, type BulkSetBusinessLocationResponse as hU, type BulkSetBusinessLocationResult as hV, type V1MarkOrderAsPaidRequest as hW, type V1MarkOrderAsPaidResponse as hX, type V1BulkMarkOrdersAsPaidRequest as hY, type V1BulkMarkOrdersAsPaidResponse as hZ, type V1CreatePaymentGatewayOrderRequest as h_, type OrderCanceled as ha, type DownloadLinkSent as hb, type TrackingNumberAdded as hc, type TrackingNumberEdited as hd, type TrackingLinkAdded as he, type ShippingConfirmationEmailSent as hf, type InvoiceAdded as hg, type InvoiceSent as hh, type FulfillerEmailSent as hi, type ShippingAddressEdited as hj, type EmailEdited as hk, type PickupReadyEmailSent as hl, type OrderPartiallyPaid as hm, type OrderPending as hn, type OrderRejected as ho, type AddInternalActivityResponse as hp, type AddActivityRequest as hq, type PublicActivity as hr, type PublicActivityContentOneOf as hs, type AddActivityResponse as ht, type AddActivitiesRequest as hu, type UpdateActivityRequest as hv, type UpdateActivityResponse as hw, type DeleteActivityRequest as hx, type DeleteActivityResponse as hy, type UpdateLineItemsDescriptionLinesRequest as hz, type CreateOrderOptions as i, type PaymentCollectionCreatePaymentGatewayOrderOptions as i$, type GetShipmentsRequest as i0, type GetShipmentsResponse as i1, type AggregateOrdersRequest as i2, type AggregateOrdersResponse as i3, type DecrementItemsQuantityRequest as i4, type DecrementData as i5, type DecrementItemsQuantityResponse as i6, type BulkUpdateOrderTagsRequest as i7, type TagsTags as i8, type TagsTagList as i9, type LineItems as iA, type LineItem as iB, type BigDecimalWrapper as iC, type LineItemTax as iD, type Source as iE, type LineItemMetaData as iF, type Locale as iG, type TotalPrice as iH, type ItemizedFee as iI, type Discount as iJ, type DiscountOneDiscountTypeOneOf as iK, type CalculatedTaxes as iL, type CalculatedTax as iM, type Payments as iN, type InvoicesPayment as iO, type MetaData as iP, type InvoiceDynamicPriceTotals as iQ, type CustomFieldValue as iR, type Value as iS, type Deposit as iT, type BaseEventMetadata as iU, type EventMetadata as iV, type AccountInfoMetadata as iW, type SetOrderNumberCounterOptions as iX, type BulkDeleteImportedOrdersOptions as iY, type RecordManuallyCollectedPaymentOptions as iZ, type PaymentCollectionMarkOrderAsPaidOptions as i_, type BulkUpdateOrderTagsResult as ia, type SendOrderUpdatedDomainEventRequest as ib, type SendOrderUpdatedDomainEventResponse as ic, type Task as id, type TaskKey as ie, type TaskAction as ig, type TaskActionActionOneOf as ih, type Complete as ii, type Cancel as ij, type Reschedule as ik, type InvoiceSentEvent as il, type IdAndVersion as im, type InvoiceFields as io, type Customer as ip, type Email as iq, type QuotesAddress as ir, type AddressDescription as is, type Phone as it, type Company as iu, type CommonAddress as iv, type CommonAddressStreetOneOf as iw, type Subdivision as ix, type StandardDetails as iy, type InvoiceDates as iz, type CreateOrderApplicationErrors as j, type SourceTypeWithLiterals as j$, type ChargeMembershipsOptions as j0, type TriggerRefundOptions as j1, type OrderSearchSpec as j2, type UpdateOrderLineItemIdentifiers as j3, type UpdateOrderLineItem as j4, type UpdateActivityIdentifiers as j5, type DeleteActivityIdentifiers as j6, type AggregateOrdersOptions as j7, utils as j8, type DescriptionLineTypeWithLiterals as j9, type WebhookIdentityTypeWithLiterals as jA, type VersioningModeWithLiterals as jB, type PreviewEmailTypeWithLiterals as jC, type StateWithLiterals as jD, type SiteCreatedContextWithLiterals as jE, type NamespaceWithLiterals as jF, type DeleteStatusWithLiterals 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 RefundStatusWithLiterals as jW, type SortOrderWithLiterals as jX, type OrderApprovalStrategyWithLiterals as jY, type PlacementWithLiterals as jZ, type SubdivisionTypeWithLiterals as j_, type DimensionsUnitWithLiterals as ja, type ItemTypePresetWithLiterals as jb, type PaymentOptionTypeWithLiterals as jc, type JurisdictionTypeWithLiterals as jd, type SubscriptionFrequencyWithLiterals as je, type AdjustmentTypeWithLiterals as jf, type TaxableAddressTypeWithLiterals as jg, type PaymentStatusWithLiterals as jh, type FulfillmentStatusWithLiterals as ji, type WeightUnitWithLiterals as jj, type VatTypeWithLiterals as jk, type PickupMethodWithLiterals as jl, type OrderStatusWithLiterals as jm, type DiscountTypeWithLiterals as jn, type DiscountReasonWithLiterals as jo, type LineItemQuantityChangeTypeWithLiterals as jp, type ActivityTypeWithLiterals as jq, type OrderActivityTypeEnumActivityTypeWithLiterals as jr, type AttributionSourceWithLiterals as js, type ChannelTypeWithLiterals as jt, type AdditionalFeeSourceWithLiterals as ju, type OrderActionTypeWithLiterals as jv, type SpecificItemsCouponBehaviorWithLiterals as jw, type ChargeTypeWithLiterals as jx, type DeltaPaymentOptionTypeWithLiterals as jy, type InventoryActionWithLiterals as jz, type UpdateOrderApplicationErrors as k, type CustomFieldGroupWithLiterals as k0, type ValueTypeWithLiterals as k1, type DepositTypeWithLiterals as k2, type InvoiceStatusWithLiterals as k3, type RecordManuallyCollectedPaymentApplicationErrors as k4, type PaymentCollectionMarkOrderAsPaidApplicationErrors as k5, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as k6, type TriggerRefundApplicationErrors as k7, type UpdateOrderStatusApplicationErrors as k8, type CommonSearchWithEntityContext as k9, onOrderApproved as ka, onOrderCanceled as kb, onOrderCommitted as kc, onOrderCreated as kd, onOrderFulfilled as ke, onOrderPaymentStatusUpdated as kf, onOrderUpdated as kg, preparePaymentCollection as kh, getPaymentCollectabilityStatus as ki, voidAuthorizedPayments as kj, captureAuthorizedPayments as kk, getOrder as kl, createOrder as km, updateOrder as kn, bulkUpdateOrders as ko, addActivities as kp, cancelOrder as kq, bulkUpdateOrderTags as kr, 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 };
8704
+ 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, PaymentStatus 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 SubscriptionSettings 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, PreviewEmailType as a9, SourceType as aA, CustomFieldGroup as aB, ValueType as aC, DepositType as aD, InvoiceStatus as aE, type OrderLineItem as aF, type ProductName as aG, type CatalogReference as aH, type DescriptionLine as aI, type DescriptionLineValueOneOf as aJ, type DescriptionLineDescriptionLineValueOneOf as aK, type DescriptionLineName as aL, type PlainTextValue as aM, type Color as aN, type FocalPoint as aO, type PhysicalProperties as aP, type Dimensions as aQ, type ItemType as aR, type ItemTypeItemTypeDataOneOf as aS, type RestockLocation as aT, type ItemTaxFullDetails as aU, type LineItemTaxInfo as aV, type LineItemTaxBreakdown as aW, type DigitalFile as aX, type SubscriptionInfo as aY, type SubscriptionTitle as aZ, type SubscriptionDescription as a_, State as aa, SiteCreatedContext as ab, Namespace as ac, DeleteStatus as ad, Origin as ae, ScheduledAction as af, DurationUnit as ag, PaymentCollectabilityStatus as ah, PredefinedPaymentMethod as ai, RefundableStatus as aj, NonRefundableReason as ak, ManuallyRefundableReason as al, RestockType as am, TransactionStatus as an, AuthorizationCaptureStatus as ao, AuthorizationVoidStatus as ap, Reason as aq, ActionType as ar, ChargebackStatus as as, MembershipPaymentStatus as at, RefundStatus as au, VersioningMode as av, SortOrder as aw, OrderApprovalStrategy as ax, Placement as ay, SubdivisionType as az, type PreparePaymentCollectionResponse as b, type ManagedAdditionalFee as b$, type FreeTrialPeriod as b0, type BillingAdjustment as b1, type BillingAdjustmentPriceSummary as b2, type PriceDescription as b3, type LocationAndQuantity as b4, type TaxableAddress as b5, type TaxableAddressTaxableAddressDataOneOf as b6, type ExtendedFields as b7, type ModifierGroup as b8, type TranslatableString as b9, type MerchantDiscountMerchantDiscountReasonOneOf as bA, type DiscountRule as bB, type DiscountRuleName as bC, type LineItemDiscount as bD, type ItemCombination as bE, type ItemCombinationLineItem as bF, type Activity as bG, type ActivityContentOneOf as bH, type CustomActivity as bI, type MerchantComment as bJ, type OrderRefunded as bK, type OrderCreatedFromExchange as bL, type NewExchangeOrderCreated as bM, type LineItemExchangeData as bN, type DraftOrderChangesApplied as bO, type OrderChange as bP, type OrderChangeValueOneOf as bQ, type LineItemChanges as bR, type LineItemQuantityChange as bS, type LineItemPriceChange as bT, type LineItemProductNameChange as bU, type LineItemDescriptionLineChange as bV, type LineItemModifiersChange as bW, type ManagedLineItem as bX, type ManagedDiscount as bY, type TranslatedValue as bZ, type LineItemAmount as b_, type ItemModifier as ba, type BuyerInfo as bb, type BuyerInfoIdOneOf as bc, type CurrencyConversionDetails as bd, type PriceSummary as be, type AddressWithContact as bf, type Address as bg, type StreetAddress as bh, type AddressLocation as bi, type FullAddressContactDetails as bj, type VatId as bk, type V1ShippingInformation as bl, type DeliveryLogistics as bm, type DeliveryLogisticsAddressOneOf as bn, type PickupDetails as bo, type PickupAddress as bp, type DeliveryTimeSlot as bq, type ShippingPrice as br, type ShippingRegion as bs, type TaxSummary as bt, type OrderTaxInfo as bu, type OrderTaxBreakdown as bv, type AppliedDiscount as bw, type AppliedDiscountDiscountSourceOneOf as bx, type Coupon as by, type MerchantDiscount as bz, type PreparePaymentCollectionApplicationErrors as c, type OrderCanceledEventOrderCanceled as c$, type TotalPriceChange as c0, type ShippingInformationChange as c1, type ShippingInformation as c2, type SavedPaymentMethod as c3, type AuthorizedPaymentCreated as c4, type AuthorizedPaymentCaptured as c5, type AuthorizedPaymentVoided as c6, type RefundInitiated as c7, type RefundedPayment as c8, type RefundedPaymentKindOneOf as c9, type CustomField as cA, type BalanceSummary as cB, type Balance as cC, type CashRounding as cD, type AdditionalFee as cE, type FulfillmentStatusesAggregate as cF, type Tags as cG, type TagList as cH, type Location as cI, type OrderSettings as cJ, type OrderSettingsAllowedActionsOneOf as cK, type OrderSettingsEditableByOneOf as cL, type CustomAllowedActions as cM, type OwnerApps as cN, type FormInfo as cO, type FormIdentifier as cP, type PlatformFeeSummary as cQ, type PlatformFee as cR, type OrderApproved as cS, type OrdersExperiments as cT, type OrderRejectedEventOrderRejected as cU, type OrderItemsRestocked as cV, type V1RestockItem as cW, type OrderImported as cX, type ImportedOrderDeleted as cY, type PaymentStatusUpdated as cZ, type FulfillmentStatusUpdated as c_, type RegularPaymentRefund as ca, type GiftCardPaymentRefund as cb, type MembershipPaymentRefund as cc, type PaymentRefunded as cd, type PaymentRefundFailed as ce, type RefundedAsStoreCredit as cf, type PaymentPending as cg, type PaymentPendingPaymentDetailsOneOf as ch, type RegularPayment as ci, type RegularPaymentPaymentMethodDetailsOneOf as cj, type CreditCardDetails as ck, type PaymentCanceled as cl, type PaymentCanceledPaymentDetailsOneOf as cm, type PaymentDeclined as cn, type PaymentDeclinedPaymentDetailsOneOf as co, type ReceiptCreated as cp, type ReceiptCreatedReceiptInfoOneOf as cq, type WixReceipt as cr, type ExternalReceipt as cs, type ReceiptSent as ct, type ReceiptSentReceiptInfoOneOf as cu, type ChargebackCreated as cv, type ChargebackReversed as cw, type CreatedBy as cx, type CreatedByStringOneOf as cy, type ChannelInfo as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type PreviewCancelEmailResponse as d$, type OrderDeltasCommitted as d0, type CommittedDiffs as d1, type CommittedDiffsShippingUpdateInfoOneOf as d2, type ItemChangedDetails as d3, type OrderLineItemChangedDetails as d4, type LineItemDelta as d5, type LineItemDeltaDeltaOneOf as d6, type AppliedDiscountDelta as d7, type AppliedDiscountDeltaDeltaOneOf as d8, type AdditionalFeeDelta as d9, type SendBuyerPickupConfirmationEmailResponse as dA, type BulkSendBuyerPickupConfirmationEmailsRequest as dB, type BulkSendBuyerPickupConfirmationEmailsResponse as dC, type SendBuyerShippingConfirmationEmailRequest as dD, type SendBuyerShippingConfirmationEmailResponse as dE, type BulkSendBuyerShippingConfirmationEmailsRequest as dF, type BulkSendBuyerShippingConfirmationEmailsResponse as dG, type SendMerchantOrderReceivedNotificationRequest as dH, type SendMerchantOrderReceivedNotificationResponse as dI, type SendCancelRefundEmailRequest as dJ, type SendCancelRefundEmailResponse as dK, type SendRefundEmailRequest as dL, type SendRefundEmailResponse as dM, type SendFulfillmentEmailRequest as dN, type SendFulfillmentEmailResponse as dO, type SendMerchantOrderReceivedPushRequest as dP, type SendMerchantOrderReceivedPushResponse as dQ, type PreviewEmailByTypeRequest as dR, type PreviewEmailByTypeResponse as dS, type PreviewRefundEmailRequest as dT, type RefundDetails as dU, type RefundItem as dV, type LineItemRefund as dW, type AdditionalFeeRefund as dX, type ShippingRefund as dY, type PreviewRefundEmailResponse as dZ, type PreviewCancelEmailRequest as d_, type AdditionalFeeDeltaDeltaOneOf as da, type DraftOrderCommitSettings as db, type InventoryUpdateDetails as dc, type ImportOrderRequest as dd, type ImportOrderResponse as de, type SetOrderNumberCounterRequest as df, type SetOrderNumberCounterResponse as dg, type BulkDeleteImportedOrdersRequest as dh, type BulkDeleteImportedOrdersResponse as di, type DomainEvent as dj, type DomainEventBodyOneOf as dk, type EntityCreatedEvent as dl, type RestoreInfo as dm, type EntityUpdatedEvent as dn, type EntityDeletedEvent as dp, type ActionEvent as dq, type MessageEnvelope as dr, type IdentificationData as ds, type IdentificationDataIdOneOf as dt, type AccountInfo as du, type SendBuyerConfirmationEmailRequest as dv, type SendBuyerConfirmationEmailResponse as dw, type SendBuyerPaymentsReceivedEmailRequest as dx, type SendBuyerPaymentsReceivedEmailResponse as dy, type SendBuyerPickupConfirmationEmailRequest as dz, type PaymentCapture as e, type BulkMarkOrdersAsPaidRequest as e$, type PreviewCancelRefundEmailRequest as e0, type PreviewCancelRefundEmailResponse as e1, type PreviewBuyerPaymentsReceivedEmailRequest as e2, type PreviewBuyerPaymentsReceivedEmailResponse as e3, type PreviewBuyerConfirmationEmailRequest as e4, type PreviewBuyerConfirmationEmailResponse as e5, type PreviewBuyerPickupConfirmationEmailRequest as e6, type PreviewBuyerPickupConfirmationEmailResponse as e7, type PreviewShippingConfirmationEmailRequest as e8, type PreviewShippingConfirmationEmailResponse as e9, type PicassoAssigned as eA, type PicassoUnassigned as eB, type WixelAssigned as eC, type WixelUnassigned as eD, type StudioTwoAssigned as eE, type StudioTwoUnassigned as eF, type UserDomainMediaEnabled as eG, type UserDomainMediaDisabled as eH, type EditorlessAssigned as eI, type EditorlessUnassigned as eJ, type HasCustomEmailConfigurationsRequest as eK, type HasCustomEmailConfigurationsResponse as eL, type AddToAutomationMigrationPopulationRequest as eM, type AddToAutomationMigrationPopulationResponse as eN, type IsInAutomationMigrationPopulationRequest as eO, type IsInAutomationMigrationPopulationResponse as eP, type PreparePaymentCollectionRequest as eQ, type RedirectUrls as eR, type DelayedCaptureSettings as eS, type Duration as eT, type GetPaymentCollectabilityStatusRequest as eU, type RecordManuallyCollectedPaymentRequest as eV, type UserDefinedPaymentMethodName as eW, type UserDefinedPaymentMethodNameKindOneOf as eX, type RecordManuallyCollectedPaymentResponse as eY, type MarkOrderAsPaidRequest as eZ, type MarkOrderAsPaidResponse as e_, type PreviewResendDownloadLinksEmailRequest as ea, type PreviewResendDownloadLinksEmailResponse as eb, type Empty as ec, type MetaSiteSpecialEvent as ed, type MetaSiteSpecialEventPayloadOneOf as ee, type Asset as ef, type SiteCreated as eg, type SiteTransferred as eh, type SiteDeleted as ei, type DeleteContext as ej, type SiteUndeleted as ek, type SitePublished as el, type SiteUnpublished as em, type SiteMarkedAsTemplate as en, type SiteMarkedAsWixSite as eo, type ServiceProvisioned as ep, type ServiceRemoved as eq, type SiteRenamed as er, type SiteHardDeleted as es, type NamespaceChanged as et, type StudioAssigned as eu, type StudioUnassigned as ev, type SiteUrlChanged as ew, type SitePurgedExternally as ex, type OdeditorAssigned as ey, type OdeditorUnassigned as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type InternalUpdateExistingOperation as f$, type BulkMarkOrdersAsPaidResponse as f0, type BulkOrderResult as f1, type ItemMetadata as f2, type ApplicationError as f3, type BulkActionMetadata as f4, type GetRefundabilityStatusRequest as f5, type GetRefundabilityStatusResponse as f6, type Refundability as f7, type RefundabilityAdditionalRefundabilityInfoOneOf as f8, type CreatePaymentGatewayOrderRequest as f9, type PaymentMethodName as fA, type GiftCardPaymentDetails as fB, type MembershipPaymentDetails as fC, type WixReceiptInfo as fD, type ExternalReceiptInfo as fE, type CashRoundingDetails as fF, type Refund as fG, type RefundTransaction as fH, type RefundStatusInfo as fI, type AggregatedRefundSummary as fJ, type RefundItemsBreakdown as fK, type LineItemRefundSummary as fL, type CalculateRefundRequest as fM, type CalculateRefundItemRequest as fN, type CalculateRefundResponse as fO, type CalculateRefundItemResponse as fP, type VoidAuthorizedPaymentsRequest as fQ, type CaptureAuthorizedPaymentsRequest as fR, type ChargeSavedPaymentMethodRequest as fS, type ChargeSavedPaymentMethodResponse as fT, type UpdateInternalDocumentsEvent as fU, type UpdateInternalDocumentsEventOperationOneOf as fV, type InternalDocument as fW, type InternalDocumentUpdateOperation as fX, type DeleteByIdsOperation as fY, type DeleteByFilterOperation as fZ, type InternalDocumentUpdateByFilterOperation as f_, type ChargedBy as fa, type CreatePaymentGatewayOrderResponse as fb, type ChargeMembershipsRequest as fc, type MembershipChargeItem as fd, type MembershipName as fe, type ServiceProperties as ff, type ChargeMembershipsResponse as fg, type TriggerRefundRequest as fh, type PaymentRefund as fi, type RefundSideEffects as fj, type RestockInfo as fk, type RestockItem as fl, type TriggerRefundResponse as fm, type OrderTransactions as fn, type Payment as fo, type PaymentPaymentDetailsOneOf as fp, type PaymentReceiptInfoOneOf as fq, type RegularPaymentDetails as fr, type RegularPaymentDetailsPaymentMethodDetailsOneOf as fs, type CreditCardPaymentMethodDetails as ft, type AuthorizationDetails as fu, type AuthorizationCapture as fv, type AuthorizationActionFailureDetails as fw, type AuthorizationVoid as fx, type V1ScheduledAction as fy, type Chargeback as fz, type GetOrderApplicationErrors as g, type UpdateOrderLineItemRequest as g$, type VersionedDocumentUpdateOperation as g0, type VersionedDeleteByIdsOperation as g1, type VersionedDocumentId as g2, type TriggerReindexRequest as g3, type TriggerReindexResponse as g4, type TriggerReindexOrderRequest as g5, type DiffmatokyPayload as g6, type ErrorInformation as g7, type GetOrderRequest as g8, type GetOrderResponse as g9, type DraftOrderDiffsBuyerUpdateInfoOneOf as gA, type DraftOrderDiffsBillingUpdateInfoOneOf as gB, type DraftOrderDiffsRecipientUpdateInfoOneOf as gC, type V1LineItemDelta as gD, type V1LineItemDeltaDeltaOneOf as gE, type CommitDeltasResponse as gF, type ArchiveOrderRequest as gG, type ArchiveOrderResponse as gH, type BulkArchiveOrdersRequest as gI, type BulkArchiveOrdersResponse as gJ, type BulkArchiveOrdersByFilterRequest as gK, type BulkArchiveOrdersByFilterResponse as gL, type UnArchiveOrderRequest as gM, type UnArchiveOrderResponse as gN, type BulkUnArchiveOrdersRequest as gO, type BulkUnArchiveOrdersResponse as gP, type BulkUnArchiveOrdersByFilterRequest as gQ, type BulkUnArchiveOrdersByFilterResponse as gR, type UpdateBuyerInfoRequest as gS, type BuyerInfoUpdate as gT, type UpdateBuyerInfoResponse as gU, type UpdateBuyerEmailRequest as gV, type UpdateBuyerEmailResponse as gW, type UpdateOrderShippingAddressRequest as gX, type UpdateOrderShippingAddressResponse as gY, type UpdateBillingContactDetailsRequest as gZ, type UpdateBillingContactDetailsResponse as g_, type InternalQueryOrdersRequest as ga, type PlatformQuery as gb, type PlatformQueryPagingMethodOneOf as gc, type Sorting as gd, type PlatformPaging as ge, type CursorPaging as gf, type InternalQueryOrdersResponse as gg, type PlatformPagingMetadata as gh, type Cursors as gi, type QueryOrderRequest as gj, type QueryOrderResponse as gk, type SearchOrdersRequest as gl, type CursorSearch as gm, type CursorSearchPagingMethodOneOf as gn, type CursorPagingMetadata as go, type CreateOrderRequest as gp, type OrderCreationSettings as gq, type OrderCreationSettingsEditableByOneOf as gr, type OrderCreateNotifications as gs, type CreateOrderResponse as gt, type UpdateOrderRequest as gu, type UpdateOrderResponse as gv, type BulkUpdateOrdersRequest as gw, type CommitDeltasRequest as gx, type DraftOrderDiffs as gy, type DraftOrderDiffsShippingUpdateInfoOneOf as gz, type OrderSearch as h, type V1CreatePaymentGatewayOrderRequest as h$, type UpdateOrderLineItemResponse as h0, type UpdateOrderLineItemsRequest as h1, type MaskedOrderLineItem as h2, type UpdateOrderLineItemsResponse as h3, type AddInternalActivityRequest as h4, type InternalActivity as h5, type InternalActivityContentOneOf as h6, type OrderPlaced as h7, type OrderPaid as h8, type OrderFulfilled as h9, type UpdateLineItemsDescriptionLinesRequest as hA, type LineItemUpdate as hB, type UpdateLineItemsDescriptionLinesResponse as hC, type MarkOrderAsSeenByHumanRequest as hD, type MarkOrderAsSeenByHumanResponse as hE, type CancelOrderRequest as hF, type UpdateOrderStatusRequest as hG, type UpdateOrderStatusResponse as hH, type MarkAsFulfilledRequest as hI, type MarkAsFulfilledResponse as hJ, type BulkMarkAsFulfilledRequest as hK, type BulkMarkAsFulfilledResponse as hL, type BulkMarkAsFulfilledByFilterRequest as hM, type BulkMarkAsFulfilledByFilterResponse as hN, type MarkAsUnfulfilledRequest as hO, type MarkAsUnfulfilledResponse as hP, type BulkMarkAsUnfulfilledRequest as hQ, type BulkMarkAsUnfulfilledResponse as hR, type BulkMarkAsUnfulfilledByFilterRequest as hS, type BulkMarkAsUnfulfilledByFilterResponse as hT, type BulkSetBusinessLocationRequest as hU, type BulkSetBusinessLocationResponse as hV, type BulkSetBusinessLocationResult as hW, type V1MarkOrderAsPaidRequest as hX, type V1MarkOrderAsPaidResponse as hY, type V1BulkMarkOrdersAsPaidRequest as hZ, type V1BulkMarkOrdersAsPaidResponse as h_, type OrderNotFulfilled as ha, type OrderCanceled as hb, type DownloadLinkSent as hc, type TrackingNumberAdded as hd, type TrackingNumberEdited as he, type TrackingLinkAdded as hf, type ShippingConfirmationEmailSent as hg, type InvoiceAdded as hh, type InvoiceSent as hi, type FulfillerEmailSent as hj, type ShippingAddressEdited as hk, type EmailEdited as hl, type PickupReadyEmailSent as hm, type OrderPartiallyPaid as hn, type OrderPending as ho, type OrderRejected as hp, type AddInternalActivityResponse as hq, type AddActivityRequest as hr, type PublicActivity as hs, type PublicActivityContentOneOf as ht, type AddActivityResponse as hu, type AddActivitiesRequest as hv, type UpdateActivityRequest as hw, type UpdateActivityResponse as hx, type DeleteActivityRequest as hy, type DeleteActivityResponse as hz, type CreateOrderOptions as i, type PaymentCollectionMarkOrderAsPaidOptions as i$, type V1CreatePaymentGatewayOrderResponse as i0, type GetShipmentsRequest as i1, type GetShipmentsResponse as i2, type AggregateOrdersRequest as i3, type AggregateOrdersResponse as i4, type DecrementItemsQuantityRequest as i5, type DecrementData as i6, type DecrementItemsQuantityResponse as i7, type BulkUpdateOrderTagsRequest as i8, type TagsTags as i9, type InvoiceDates as iA, type LineItems as iB, type LineItem as iC, type BigDecimalWrapper as iD, type LineItemTax as iE, type Source as iF, type LineItemMetaData as iG, type Locale as iH, type TotalPrice as iI, type ItemizedFee as iJ, type Discount as iK, type DiscountOneDiscountTypeOneOf as iL, type CalculatedTaxes as iM, type CalculatedTax as iN, type Payments as iO, type InvoicesPayment as iP, type MetaData as iQ, type InvoiceDynamicPriceTotals as iR, type CustomFieldValue as iS, type Value as iT, type Deposit as iU, type BaseEventMetadata as iV, type EventMetadata as iW, type AccountInfoMetadata as iX, type SetOrderNumberCounterOptions as iY, type BulkDeleteImportedOrdersOptions as iZ, type RecordManuallyCollectedPaymentOptions as i_, type TagsTagList as ia, type BulkUpdateOrderTagsResult as ib, type SendOrderUpdatedDomainEventRequest as ic, type SendOrderUpdatedDomainEventResponse as id, type Task as ie, type TaskKey as ig, type TaskAction as ih, type TaskActionActionOneOf as ii, type Complete as ij, type Cancel as ik, type Reschedule as il, type InvoiceSentEvent as im, type IdAndVersion as io, type InvoiceFields as ip, type Customer as iq, type Email as ir, type QuotesAddress as is, type AddressDescription as it, type Phone as iu, type Company as iv, type CommonAddress as iw, type CommonAddressStreetOneOf as ix, type Subdivision as iy, type StandardDetails as iz, type CreateOrderApplicationErrors as j, type PlacementWithLiterals as j$, type PaymentCollectionCreatePaymentGatewayOrderOptions as j0, type ChargeMembershipsOptions as j1, type TriggerRefundOptions as j2, type OrderSearchSpec as j3, type UpdateOrderLineItemIdentifiers as j4, type UpdateOrderLineItem as j5, type UpdateActivityIdentifiers as j6, type DeleteActivityIdentifiers as j7, type AggregateOrdersOptions as j8, utils as j9, type InventoryActionWithLiterals as jA, type WebhookIdentityTypeWithLiterals as jB, type PreviewEmailTypeWithLiterals as jC, type StateWithLiterals as jD, type SiteCreatedContextWithLiterals as jE, type NamespaceWithLiterals as jF, type DeleteStatusWithLiterals as jG, type OriginWithLiterals as jH, type ScheduledActionWithLiterals as jI, type DurationUnitWithLiterals as jJ, type PaymentCollectabilityStatusWithLiterals as jK, type PredefinedPaymentMethodWithLiterals as jL, type RefundableStatusWithLiterals as jM, type NonRefundableReasonWithLiterals as jN, type ManuallyRefundableReasonWithLiterals as jO, type RestockTypeWithLiterals as jP, type TransactionStatusWithLiterals as jQ, type AuthorizationCaptureStatusWithLiterals as jR, type AuthorizationVoidStatusWithLiterals as jS, type ReasonWithLiterals as jT, type ActionTypeWithLiterals as jU, type ChargebackStatusWithLiterals as jV, type MembershipPaymentStatusWithLiterals as jW, type RefundStatusWithLiterals as jX, type VersioningModeWithLiterals as jY, type SortOrderWithLiterals as jZ, type OrderApprovalStrategyWithLiterals as j_, type DescriptionLineTypeWithLiterals as ja, type DimensionsUnitWithLiterals as jb, type ItemTypePresetWithLiterals as jc, type PaymentOptionTypeWithLiterals as jd, type JurisdictionTypeWithLiterals as je, type SubscriptionFrequencyWithLiterals as jf, type AdjustmentTypeWithLiterals as jg, type TaxableAddressTypeWithLiterals as jh, type PaymentStatusWithLiterals as ji, type FulfillmentStatusWithLiterals as jj, type WeightUnitWithLiterals as jk, type VatTypeWithLiterals as jl, type PickupMethodWithLiterals as jm, type OrderStatusWithLiterals as jn, type DiscountTypeWithLiterals as jo, type DiscountReasonWithLiterals as jp, type LineItemQuantityChangeTypeWithLiterals as jq, type ActivityTypeWithLiterals as jr, type OrderActivityTypeEnumActivityTypeWithLiterals as js, type AttributionSourceWithLiterals as jt, type ChannelTypeWithLiterals as ju, type AdditionalFeeSourceWithLiterals as jv, type OrderActionTypeWithLiterals as jw, type SpecificItemsCouponBehaviorWithLiterals as jx, type ChargeTypeWithLiterals as jy, type DeltaPaymentOptionTypeWithLiterals as jz, type UpdateOrderApplicationErrors as k, type SubdivisionTypeWithLiterals as k0, type SourceTypeWithLiterals as k1, type CustomFieldGroupWithLiterals as k2, type ValueTypeWithLiterals as k3, type DepositTypeWithLiterals as k4, type InvoiceStatusWithLiterals as k5, type RecordManuallyCollectedPaymentApplicationErrors as k6, type PaymentCollectionMarkOrderAsPaidApplicationErrors as k7, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as k8, type TriggerRefundApplicationErrors as k9, type UpdateOrderStatusApplicationErrors as ka, type CommonSearchWithEntityContext as kb, onOrderApproved as kc, onOrderCanceled as kd, onOrderCommitted as ke, onOrderCreated as kf, onOrderFulfilled as kg, onOrderPaymentStatusUpdated as kh, onOrderUpdated as ki, preparePaymentCollection as kj, getPaymentCollectabilityStatus as kk, voidAuthorizedPayments as kl, captureAuthorizedPayments as km, getOrder as kn, createOrder as ko, updateOrder as kp, bulkUpdateOrders as kq, addActivities as kr, cancelOrder as ks, bulkUpdateOrderTags as kt, 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-u09r8hRJ.js';
3
- export { ds as AccountInfo, iW as AccountInfoMetadata, dn as ActionEvent, ar as ActionType, jT as ActionTypeWithLiterals, bE as Activity, bF as ActivityContentOneOf, _ as ActivityType, jq as ActivityTypeWithLiterals, hu as AddActivitiesRequest, hq as AddActivityRequest, ht as AddActivityResponse, h3 as AddInternalActivityRequest, hp as AddInternalActivityResponse, eY as AddToAutomationMigrationPopulationRequest, eZ as AddToAutomationMigrationPopulationResponse, cC as AdditionalFee, d7 as AdditionalFeeDelta, d8 as AdditionalFeeDeltaDeltaOneOf, e8 as AdditionalFeeRefund, a2 as AdditionalFeeSource, ju as AdditionalFeeSourceWithLiterals, be as Address, is as AddressDescription, bg as AddressLocation, bd as AddressWithContact, H as AdjustmentType, jf as AdjustmentTypeWithLiterals, j7 as AggregateOrdersOptions, i2 as AggregateOrdersRequest, i3 as AggregateOrdersResponse, fV as AggregatedRefundSummary, ff as ApplicationError, bu as AppliedDiscount, d5 as AppliedDiscountDelta, d6 as AppliedDiscountDeltaDeltaOneOf, bv as AppliedDiscountDiscountSourceOneOf, gF as ArchiveOrderRequest, gG as ArchiveOrderResponse, er as Asset, a0 as AttributionSource, js as AttributionSourceWithLiterals, fI as AuthorizationActionFailureDetails, fH as AuthorizationCapture, ao as AuthorizationCaptureStatus, jQ as AuthorizationCaptureStatusWithLiterals, fG as AuthorizationDetails, fJ as AuthorizationVoid, ap as AuthorizationVoidStatus, jR as AuthorizationVoidStatusWithLiterals, c3 as AuthorizedPaymentCaptured, c2 as AuthorizedPaymentCreated, c4 as AuthorizedPaymentVoided, cA as Balance, cz as BalanceSummary, iU as BaseEventMetadata, iC as BigDecimalWrapper, a$ as BillingAdjustment, b0 as BillingAdjustmentPriceSummary, fg as BulkActionMetadata, gJ as BulkArchiveOrdersByFilterRequest, gK as BulkArchiveOrdersByFilterResponse, gH as BulkArchiveOrdersRequest, gI as BulkArchiveOrdersResponse, iY as BulkDeleteImportedOrdersOptions, df as BulkDeleteImportedOrdersRequest, dg as BulkDeleteImportedOrdersResponse, hL as BulkMarkAsFulfilledByFilterRequest, hM as BulkMarkAsFulfilledByFilterResponse, hJ as BulkMarkAsFulfilledRequest, hK as BulkMarkAsFulfilledResponse, hR as BulkMarkAsUnfulfilledByFilterRequest, hS as BulkMarkAsUnfulfilledByFilterResponse, hP as BulkMarkAsUnfulfilledRequest, hQ as BulkMarkAsUnfulfilledResponse, fb as BulkMarkOrdersAsPaidRequest, fc as BulkMarkOrdersAsPaidResponse, fd as BulkOrderResult, dO as BulkSendBuyerPickupConfirmationEmailsRequest, dP as BulkSendBuyerPickupConfirmationEmailsResponse, dS as BulkSendBuyerShippingConfirmationEmailsRequest, dT as BulkSendBuyerShippingConfirmationEmailsResponse, hT as BulkSetBusinessLocationRequest, hU as BulkSetBusinessLocationResponse, hV as BulkSetBusinessLocationResult, gP as BulkUnArchiveOrdersByFilterRequest, gQ as BulkUnArchiveOrdersByFilterResponse, gN as BulkUnArchiveOrdersRequest, gO as BulkUnArchiveOrdersResponse, i7 as BulkUpdateOrderTagsRequest, ia as BulkUpdateOrderTagsResult, gv as BulkUpdateOrdersRequest, b9 as BuyerInfo, ba as BuyerInfoIdOneOf, gS as BuyerInfoUpdate, fZ as CalculateRefundItemRequest, f$ as CalculateRefundItemResponse, fY as CalculateRefundRequest, f_ as CalculateRefundResponse, iM as CalculatedTax, iL as CalculatedTaxes, ij as Cancel, hE as CancelOrderRequest, g1 as CaptureAuthorizedPaymentsRequest, cB as CashRounding, fR as CashRoundingDetails, aG as CatalogReference, cx as ChannelInfo, a1 as ChannelType, jt as ChannelTypeWithLiterals, j0 as ChargeMembershipsOptions, fo as ChargeMembershipsRequest, fs as ChargeMembershipsResponse, g2 as ChargeSavedPaymentMethodRequest, g3 as ChargeSavedPaymentMethodResponse, a5 as ChargeType, jx as ChargeTypeWithLiterals, fL as Chargeback, ct as ChargebackCreated, cu as ChargebackReversed, as as ChargebackStatus, jU as ChargebackStatusWithLiterals, fm as ChargedBy, aM as Color, gw as CommitDeltasRequest, gE as CommitDeltasResponse, c$ as CommittedDiffs, d0 as CommittedDiffsShippingUpdateInfoOneOf, iv as CommonAddress, iw as CommonAddressStreetOneOf, k9 as CommonSearchWithEntityContext, iu as Company, ii as Complete, bw as Coupon, go as CreateOrderRequest, gs as CreateOrderResponse, fl as CreatePaymentGatewayOrderRequest, fn as CreatePaymentGatewayOrderResponse, cv as CreatedBy, cw as CreatedByStringOneOf, ci as CreditCardDetails, fF as CreditCardPaymentMethodDetails, bb as CurrencyConversionDetails, ge as CursorPaging, gn as CursorPagingMetadata, gl as CursorSearch, gm as CursorSearchPagingMethodOneOf, gh as Cursors, bG as CustomActivity, cK as CustomAllowedActions, cy as CustomField, aA as CustomFieldGroup, k0 as CustomFieldGroupWithLiterals, iR as CustomFieldValue, ip as Customer, i5 as DecrementData, i4 as DecrementItemsQuantityRequest, i6 as DecrementItemsQuantityResponse, f2 as DelayedCaptureSettings, j6 as DeleteActivityIdentifiers, hx as DeleteActivityRequest, hy as DeleteActivityResponse, dy as DeleteByFilterOperation, dx as DeleteByIdsOperation, ev as DeleteContext, ae as DeleteStatus, jG as DeleteStatusWithLiterals, bk as DeliveryLogistics, bl as DeliveryLogisticsAddressOneOf, bo as DeliveryTimeSlot, a6 as DeltaPaymentOptionType, jy as DeltaPaymentOptionTypeWithLiterals, iT as Deposit, aC as DepositType, k2 as DepositTypeWithLiterals, aH as DescriptionLine, aJ as DescriptionLineDescriptionLineValueOneOf, aK as DescriptionLineName, D as DescriptionLineType, j9 as DescriptionLineTypeWithLiterals, aI as DescriptionLineValueOneOf, g5 as DiffmatokyPayload, aV as DigitalFile, aP as Dimensions, z as DimensionsUnit, ja as DimensionsUnitWithLiterals, iJ as Discount, iK as DiscountOneDiscountTypeOneOf, Y as DiscountReason, jo as DiscountReasonWithLiterals, bz as DiscountRule, bA as DiscountRuleName, X as DiscountType, jn as DiscountTypeWithLiterals, dh as DomainEvent, di as DomainEventBodyOneOf, hb as DownloadLinkSent, bM as DraftOrderChangesApplied, d9 as DraftOrderCommitSettings, gx as DraftOrderDiffs, gA as DraftOrderDiffsBillingUpdateInfoOneOf, gz as DraftOrderDiffsBuyerUpdateInfoOneOf, gB as DraftOrderDiffsRecipientUpdateInfoOneOf, gy as DraftOrderDiffsShippingUpdateInfoOneOf, f3 as Duration, ag as DurationUnit, jI as DurationUnitWithLiterals, eU as EditorlessAssigned, eV as EditorlessUnassigned, iq as Email, hk as EmailEdited, dG as Empty, dj as EntityCreatedEvent, dm as EntityDeletedEvent, dl as EntityUpdatedEvent, g6 as ErrorInformation, iV as EventMetadata, b5 as ExtendedFields, cq as ExternalReceipt, fQ as ExternalReceiptInfo, aN as FocalPoint, cN as FormIdentifier, cM as FormInfo, a_ as FreeTrialPeriod, hi as FulfillerEmailSent, L as FulfillmentStatus, cY as FulfillmentStatusUpdated, ji as FulfillmentStatusWithLiterals, cD as FulfillmentStatusesAggregate, bh as FullAddressContactDetails, g7 as GetOrderRequest, g8 as GetOrderResponse, f4 as GetPaymentCollectabilityStatusRequest, fh as GetRefundabilityStatusRequest, fi as GetRefundabilityStatusResponse, i0 as GetShipmentsRequest, i1 as GetShipmentsResponse, fN as GiftCardPaymentDetails, c9 as GiftCardPaymentRefund, eW as HasCustomEmailConfigurationsRequest, eX as HasCustomEmailConfigurationsResponse, im as IdAndVersion, dq as IdentificationData, dr as IdentificationDataIdOneOf, db as ImportOrderRequest, dc as ImportOrderResponse, cW as ImportedOrderDeleted, h4 as InternalActivity, h5 as InternalActivityContentOneOf, dv as InternalDocument, dz as InternalDocumentUpdateByFilterOperation, dw as InternalDocumentUpdateOperation, g9 as InternalQueryOrdersRequest, gf as InternalQueryOrdersResponse, dA as InternalUpdateExistingOperation, a7 as InventoryAction, jz as InventoryActionWithLiterals, da as InventoryUpdateDetails, hg as InvoiceAdded, iz as InvoiceDates, iQ as InvoiceDynamicPriceTotals, io as InvoiceFields, hh as InvoiceSent, il as InvoiceSentEvent, aD as InvoiceStatus, k3 as InvoiceStatusWithLiterals, iO as InvoicesPayment, e_ as IsInAutomationMigrationPopulationRequest, e$ as IsInAutomationMigrationPopulationResponse, d1 as ItemChangedDetails, bC as ItemCombination, bD as ItemCombinationLineItem, fe as ItemMetadata, b8 as ItemModifier, aS as ItemTaxFullDetails, aQ as ItemType, aR as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, jb as ItemTypePresetWithLiterals, iI as ItemizedFee, J as JurisdictionType, jd as JurisdictionTypeWithLiterals, iB as LineItem, bY as LineItemAmount, bP as LineItemChanges, d3 as LineItemDelta, d4 as LineItemDeltaDeltaOneOf, bT as LineItemDescriptionLineChange, bB as LineItemDiscount, bL as LineItemExchangeData, iF as LineItemMetaData, bU as LineItemModifiersChange, bR as LineItemPriceChange, bS as LineItemProductNameChange, bQ as LineItemQuantityChange, Z as LineItemQuantityChangeType, jp as LineItemQuantityChangeTypeWithLiterals, e7 as LineItemRefund, fX as LineItemRefundSummary, iD as LineItemTax, aU as LineItemTaxBreakdown, aT as LineItemTaxInfo, hA as LineItemUpdate, iA as LineItems, iG as Locale, cG as Location, b2 as LocationAndQuantity, bZ as ManagedAdditionalFee, bW as ManagedDiscount, bV as ManagedLineItem, al as ManuallyRefundableReason, jN as ManuallyRefundableReasonWithLiterals, hH as MarkAsFulfilledRequest, hI as MarkAsFulfilledResponse, hN as MarkAsUnfulfilledRequest, hO as MarkAsUnfulfilledResponse, f9 as MarkOrderAsPaidRequest, fa as MarkOrderAsPaidResponse, hC as MarkOrderAsSeenByHumanRequest, hD as MarkOrderAsSeenByHumanResponse, h1 as MaskedOrderLineItem, fp as MembershipChargeItem, fq as MembershipName, fO as MembershipPaymentDetails, ca as MembershipPaymentRefund, at as MembershipPaymentStatus, jV as MembershipPaymentStatusWithLiterals, bH as MerchantComment, bx as MerchantDiscount, by as MerchantDiscountMerchantDiscountReasonOneOf, dp as MessageEnvelope, iP as MetaData, ep as MetaSiteSpecialEvent, eq as MetaSiteSpecialEventPayloadOneOf, b6 as ModifierGroup, ad as Namespace, eF as NamespaceChanged, jF as NamespaceWithLiterals, bK as NewExchangeOrderCreated, ak as NonRefundableReason, jM as NonRefundableReasonWithLiterals, eK as OdeditorAssigned, eL as OdeditorUnassigned, a3 as OrderActionType, jv as OrderActionTypeWithLiterals, $ as OrderActivityTypeEnumActivityType, jr as OrderActivityTypeEnumActivityTypeWithLiterals, aw as OrderApprovalStrategy, jY as OrderApprovalStrategyWithLiterals, cQ as OrderApproved, ha as OrderCanceled, cZ as OrderCanceledEventOrderCanceled, bN as OrderChange, bO as OrderChangeValueOneOf, gr as OrderCreateNotifications, bJ as OrderCreatedFromExchange, gp as OrderCreationSettings, gq as OrderCreationSettingsEditableByOneOf, c_ as OrderDeltasCommitted, h8 as OrderFulfilled, cV as OrderImported, cT as OrderItemsRestocked, aE as OrderLineItem, d2 as OrderLineItemChangedDetails, h9 as OrderNotFulfilled, h7 as OrderPaid, hm as OrderPartiallyPaid, hn as OrderPending, h6 as OrderPlaced, bI as OrderRefunded, ho as OrderRejected, cS as OrderRejectedEventOrderRejected, j2 as OrderSearchSpec, cH as OrderSettings, cI as OrderSettingsAllowedActionsOneOf, cJ as OrderSettingsEditableByOneOf, R as OrderStatus, jm as OrderStatusWithLiterals, bt as OrderTaxBreakdown, bs as OrderTaxInfo, fz as OrderTransactions, cR as OrdersExperiments, cL as OwnerApps, fA as Payment, cj as PaymentCanceled, ck as PaymentCanceledPaymentDetailsOneOf, ah as PaymentCollectabilityStatus, jJ as PaymentCollectabilityStatusWithLiterals, k6 as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, i$ as PaymentCollectionCreatePaymentGatewayOrderOptions, k5 as PaymentCollectionMarkOrderAsPaidApplicationErrors, i_ as PaymentCollectionMarkOrderAsPaidOptions, cl as PaymentDeclined, cm as PaymentDeclinedPaymentDetailsOneOf, fM as PaymentMethodName, E as PaymentOptionType, jc as PaymentOptionTypeWithLiterals, fB as PaymentPaymentDetailsOneOf, ce as PaymentPending, cf as PaymentPendingPaymentDetailsOneOf, fC as PaymentReceiptInfoOneOf, fu as PaymentRefund, cc as PaymentRefundFailed, cb as PaymentRefunded, K as PaymentStatus, cX as PaymentStatusUpdated, jh as PaymentStatusWithLiterals, iN as Payments, it as Phone, aO as PhysicalProperties, eM as PicassoAssigned, eN as PicassoUnassigned, bn as PickupAddress, bm as PickupDetails, Q as PickupMethod, jl as PickupMethodWithLiterals, hl as PickupReadyEmailSent, ax as Placement, jZ as PlacementWithLiterals, aL as PlainTextValue, cP as PlatformFee, cO as PlatformFeeSummary, gd as PlatformPaging, gg as PlatformPagingMetadata, ga as PlatformQuery, gb as PlatformQueryPagingMethodOneOf, ai as PredefinedPaymentMethod, jK as PredefinedPaymentMethodWithLiterals, f0 as PreparePaymentCollectionRequest, eh as PreviewBuyerConfirmationEmailRequest, ei as PreviewBuyerConfirmationEmailResponse, ef as PreviewBuyerPaymentsReceivedEmailRequest, eg as PreviewBuyerPaymentsReceivedEmailResponse, ej as PreviewBuyerPickupConfirmationEmailRequest, ek as PreviewBuyerPickupConfirmationEmailResponse, eb as PreviewCancelEmailRequest, ec as PreviewCancelEmailResponse, ed as PreviewCancelRefundEmailRequest, ee as PreviewCancelRefundEmailResponse, e2 as PreviewEmailByTypeRequest, e3 as PreviewEmailByTypeResponse, aa as PreviewEmailType, jC as PreviewEmailTypeWithLiterals, e4 as PreviewRefundEmailRequest, ea as PreviewRefundEmailResponse, en as PreviewResendDownloadLinksEmailRequest, eo as PreviewResendDownloadLinksEmailResponse, el as PreviewShippingConfirmationEmailRequest, em as PreviewShippingConfirmationEmailResponse, b1 as PriceDescription, bc as PriceSummary, aF as ProductName, hr as PublicActivity, hs as PublicActivityContentOneOf, gi as QueryOrderRequest, gj as QueryOrderResponse, ir as QuotesAddress, aq as Reason, jS as ReasonWithLiterals, cn as ReceiptCreated, co as ReceiptCreatedReceiptInfoOneOf, cr as ReceiptSent, cs as ReceiptSentReceiptInfoOneOf, k4 as RecordManuallyCollectedPaymentApplicationErrors, iZ as RecordManuallyCollectedPaymentOptions, f5 as RecordManuallyCollectedPaymentRequest, f8 as RecordManuallyCollectedPaymentResponse, f1 as RedirectUrls, fS as Refund, e5 as RefundDetails, c5 as RefundInitiated, e6 as RefundItem, fW as RefundItemsBreakdown, fv as RefundSideEffects, au as RefundStatus, fU as RefundStatusInfo, jW as RefundStatusWithLiterals, fT as RefundTransaction, fj as Refundability, fk as RefundabilityAdditionalRefundabilityInfoOneOf, aj as RefundableStatus, jL as RefundableStatusWithLiterals, cd as RefundedAsStoreCredit, c6 as RefundedPayment, c7 as RefundedPaymentKindOneOf, cg as RegularPayment, fD as RegularPaymentDetails, fE as RegularPaymentDetailsPaymentMethodDetailsOneOf, ch as RegularPaymentPaymentMethodDetailsOneOf, c8 as RegularPaymentRefund, ik as Reschedule, fw as RestockInfo, fx as RestockItem, g4 as RestockLocation, am as RestockType, jO as RestockTypeWithLiterals, dk as RestoreInfo, c1 as SavedPaymentMethod, af as ScheduledAction, jH as ScheduledActionWithLiterals, gk as SearchOrdersRequest, dI as SendBuyerConfirmationEmailRequest, dJ as SendBuyerConfirmationEmailResponse, dK as SendBuyerPaymentsReceivedEmailRequest, dL as SendBuyerPaymentsReceivedEmailResponse, dM as SendBuyerPickupConfirmationEmailRequest, dN as SendBuyerPickupConfirmationEmailResponse, dQ as SendBuyerShippingConfirmationEmailRequest, dR as SendBuyerShippingConfirmationEmailResponse, dW as SendCancelRefundEmailRequest, dX as SendCancelRefundEmailResponse, d_ as SendFulfillmentEmailRequest, d$ as SendFulfillmentEmailResponse, dU as SendMerchantOrderReceivedNotificationRequest, dV as SendMerchantOrderReceivedNotificationResponse, e0 as SendMerchantOrderReceivedPushRequest, e1 as SendMerchantOrderReceivedPushResponse, ib as SendOrderUpdatedDomainEventRequest, ic as SendOrderUpdatedDomainEventResponse, dY as SendRefundEmailRequest, dZ as SendRefundEmailResponse, fr as ServiceProperties, eB as ServiceProvisioned, eC as ServiceRemoved, iX as SetOrderNumberCounterOptions, dd as SetOrderNumberCounterRequest, de as SetOrderNumberCounterResponse, hj as ShippingAddressEdited, hf as ShippingConfirmationEmailSent, c0 as ShippingInformation, b$ as ShippingInformationChange, bp as ShippingPrice, e9 as ShippingRefund, bq as ShippingRegion, es as SiteCreated, ac as SiteCreatedContext, jE as SiteCreatedContextWithLiterals, eu as SiteDeleted, eE as SiteHardDeleted, ez as SiteMarkedAsTemplate, eA as SiteMarkedAsWixSite, ex as SitePublished, eJ as SitePurgedExternally, eD as SiteRenamed, et as SiteTransferred, ew as SiteUndeleted, ey as SiteUnpublished, eI as SiteUrlChanged, av as SortOrder, jX as SortOrderWithLiterals, gc as Sorting, iE as Source, az as SourceType, j$ as SourceTypeWithLiterals, a4 as SpecificItemsCouponBehavior, jw as SpecificItemsCouponBehaviorWithLiterals, iy as StandardDetails, ab as State, jD as StateWithLiterals, bf as StreetAddress, eG as StudioAssigned, eQ as StudioTwoAssigned, eR as StudioTwoUnassigned, eH as StudioUnassigned, ix as Subdivision, ay as SubdivisionType, j_ as SubdivisionTypeWithLiterals, aY as SubscriptionDescription, F as SubscriptionFrequency, je as SubscriptionFrequencyWithLiterals, aW as SubscriptionInfo, aZ as SubscriptionSettings, aX as SubscriptionTitle, cF as TagList, cE as Tags, i9 as TagsTagList, i8 as TagsTags, id as Task, ig as TaskAction, ih as TaskActionActionOneOf, ie as TaskKey, br as TaxSummary, b3 as TaxableAddress, b4 as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, jg as TaxableAddressTypeWithLiterals, iH as TotalPrice, b_ as TotalPriceChange, he as TrackingLinkAdded, hc as TrackingNumberAdded, hd as TrackingNumberEdited, an as TransactionStatus, jP as TransactionStatusWithLiterals, b7 as TranslatableString, bX as TranslatedValue, k7 as TriggerRefundApplicationErrors, j1 as TriggerRefundOptions, ft as TriggerRefundRequest, fy as TriggerRefundResponse, dH as TriggerReindexOrderRequest, dE as TriggerReindexRequest, dF as TriggerReindexResponse, gL as UnArchiveOrderRequest, gM as UnArchiveOrderResponse, j5 as UpdateActivityIdentifiers, hv as UpdateActivityRequest, hw as UpdateActivityResponse, gY as UpdateBillingContactDetailsRequest, gZ as UpdateBillingContactDetailsResponse, gU as UpdateBuyerEmailRequest, gV as UpdateBuyerEmailResponse, gR as UpdateBuyerInfoRequest, gT as UpdateBuyerInfoResponse, dt as UpdateInternalDocumentsEvent, du as UpdateInternalDocumentsEventOperationOneOf, hz as UpdateLineItemsDescriptionLinesRequest, hB as UpdateLineItemsDescriptionLinesResponse, j4 as UpdateOrderLineItem, j3 as UpdateOrderLineItemIdentifiers, g_ as UpdateOrderLineItemRequest, g$ as UpdateOrderLineItemResponse, h0 as UpdateOrderLineItemsRequest, h2 as UpdateOrderLineItemsResponse, gt as UpdateOrderRequest, gu as UpdateOrderResponse, gW as UpdateOrderShippingAddressRequest, gX as UpdateOrderShippingAddressResponse, k8 as UpdateOrderStatusApplicationErrors, hF as UpdateOrderStatusRequest, hG as UpdateOrderStatusResponse, f6 as UserDefinedPaymentMethodName, f7 as UserDefinedPaymentMethodNameKindOneOf, eT as UserDomainMediaDisabled, eS as UserDomainMediaEnabled, hY as V1BulkMarkOrdersAsPaidRequest, hZ as V1BulkMarkOrdersAsPaidResponse, h_ as V1CreatePaymentGatewayOrderRequest, h$ as V1CreatePaymentGatewayOrderResponse, gC as V1LineItemDelta, gD as V1LineItemDeltaDeltaOneOf, hW as V1MarkOrderAsPaidRequest, hX as V1MarkOrderAsPaidResponse, cU as V1RestockItem, fK as V1ScheduledAction, bj as V1ShippingInformation, iS as Value, aB as ValueType, k1 as ValueTypeWithLiterals, bi as VatId, N as VatType, jk as VatTypeWithLiterals, dC as VersionedDeleteByIdsOperation, dD as VersionedDocumentId, dB as VersionedDocumentUpdateOperation, a9 as VersioningMode, jB as VersioningModeWithLiterals, g0 as VoidAuthorizedPaymentsRequest, a8 as WebhookIdentityType, jA as WebhookIdentityTypeWithLiterals, W as WeightUnit, jj as WeightUnitWithLiterals, cp as WixReceipt, fP as WixReceiptInfo, eO as WixelAssigned, eP as WixelUnassigned, j8 as utils } from './ecom-v1-order-orders.universal-u09r8hRJ.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-BjvDnQO1.js';
3
+ export { du as AccountInfo, iX as AccountInfoMetadata, dq as ActionEvent, ar as ActionType, jU as ActionTypeWithLiterals, bG as Activity, bH as ActivityContentOneOf, _ as ActivityType, jr as ActivityTypeWithLiterals, hv as AddActivitiesRequest, hr as AddActivityRequest, hu as AddActivityResponse, h4 as AddInternalActivityRequest, hq as AddInternalActivityResponse, eM as AddToAutomationMigrationPopulationRequest, eN as AddToAutomationMigrationPopulationResponse, cE as AdditionalFee, d9 as AdditionalFeeDelta, da as AdditionalFeeDeltaDeltaOneOf, dX as AdditionalFeeRefund, a2 as AdditionalFeeSource, jv as AdditionalFeeSourceWithLiterals, bg as Address, it as AddressDescription, bi as AddressLocation, bf as AddressWithContact, H as AdjustmentType, jg as AdjustmentTypeWithLiterals, j8 as AggregateOrdersOptions, i3 as AggregateOrdersRequest, i4 as AggregateOrdersResponse, fJ as AggregatedRefundSummary, f3 as ApplicationError, bw as AppliedDiscount, d7 as AppliedDiscountDelta, d8 as AppliedDiscountDeltaDeltaOneOf, bx as AppliedDiscountDiscountSourceOneOf, gG as ArchiveOrderRequest, gH as ArchiveOrderResponse, ef as Asset, a0 as AttributionSource, jt as AttributionSourceWithLiterals, fw as AuthorizationActionFailureDetails, fv as AuthorizationCapture, ao as AuthorizationCaptureStatus, jR as AuthorizationCaptureStatusWithLiterals, fu as AuthorizationDetails, fx as AuthorizationVoid, ap as AuthorizationVoidStatus, jS as AuthorizationVoidStatusWithLiterals, c5 as AuthorizedPaymentCaptured, c4 as AuthorizedPaymentCreated, c6 as AuthorizedPaymentVoided, cC as Balance, cB as BalanceSummary, iV as BaseEventMetadata, iD as BigDecimalWrapper, b1 as BillingAdjustment, b2 as BillingAdjustmentPriceSummary, f4 as BulkActionMetadata, gK as BulkArchiveOrdersByFilterRequest, gL as BulkArchiveOrdersByFilterResponse, gI as BulkArchiveOrdersRequest, gJ as BulkArchiveOrdersResponse, iZ as BulkDeleteImportedOrdersOptions, dh as BulkDeleteImportedOrdersRequest, di as BulkDeleteImportedOrdersResponse, hM as BulkMarkAsFulfilledByFilterRequest, hN as BulkMarkAsFulfilledByFilterResponse, hK as BulkMarkAsFulfilledRequest, hL as BulkMarkAsFulfilledResponse, hS as BulkMarkAsUnfulfilledByFilterRequest, hT as BulkMarkAsUnfulfilledByFilterResponse, hQ as BulkMarkAsUnfulfilledRequest, hR as BulkMarkAsUnfulfilledResponse, e$ as BulkMarkOrdersAsPaidRequest, f0 as BulkMarkOrdersAsPaidResponse, f1 as BulkOrderResult, dB as BulkSendBuyerPickupConfirmationEmailsRequest, dC as BulkSendBuyerPickupConfirmationEmailsResponse, dF as BulkSendBuyerShippingConfirmationEmailsRequest, dG as BulkSendBuyerShippingConfirmationEmailsResponse, hU as BulkSetBusinessLocationRequest, hV as BulkSetBusinessLocationResponse, hW as BulkSetBusinessLocationResult, gQ as BulkUnArchiveOrdersByFilterRequest, gR as BulkUnArchiveOrdersByFilterResponse, gO as BulkUnArchiveOrdersRequest, gP as BulkUnArchiveOrdersResponse, i8 as BulkUpdateOrderTagsRequest, ib as BulkUpdateOrderTagsResult, gw as BulkUpdateOrdersRequest, bb as BuyerInfo, bc as BuyerInfoIdOneOf, gT as BuyerInfoUpdate, fN as CalculateRefundItemRequest, fP as CalculateRefundItemResponse, fM as CalculateRefundRequest, fO as CalculateRefundResponse, iN as CalculatedTax, iM as CalculatedTaxes, ik as Cancel, hF as CancelOrderRequest, fR as CaptureAuthorizedPaymentsRequest, cD as CashRounding, fF as CashRoundingDetails, aH as CatalogReference, cz as ChannelInfo, a1 as ChannelType, ju as ChannelTypeWithLiterals, j1 as ChargeMembershipsOptions, fc as ChargeMembershipsRequest, fg as ChargeMembershipsResponse, fS as ChargeSavedPaymentMethodRequest, fT as ChargeSavedPaymentMethodResponse, a5 as ChargeType, jy as ChargeTypeWithLiterals, fz as Chargeback, cv as ChargebackCreated, cw as ChargebackReversed, as as ChargebackStatus, jV as ChargebackStatusWithLiterals, fa as ChargedBy, aN as Color, gx as CommitDeltasRequest, gF as CommitDeltasResponse, d1 as CommittedDiffs, d2 as CommittedDiffsShippingUpdateInfoOneOf, iw as CommonAddress, ix as CommonAddressStreetOneOf, kb as CommonSearchWithEntityContext, iv as Company, ij as Complete, by as Coupon, gp as CreateOrderRequest, gt as CreateOrderResponse, f9 as CreatePaymentGatewayOrderRequest, fb as CreatePaymentGatewayOrderResponse, cx as CreatedBy, cy as CreatedByStringOneOf, ck as CreditCardDetails, ft as CreditCardPaymentMethodDetails, bd as CurrencyConversionDetails, gf as CursorPaging, go as CursorPagingMetadata, gm as CursorSearch, gn as CursorSearchPagingMethodOneOf, gi as Cursors, bI as CustomActivity, cM as CustomAllowedActions, cA as CustomField, aB as CustomFieldGroup, k2 as CustomFieldGroupWithLiterals, iS as CustomFieldValue, iq as Customer, i6 as DecrementData, i5 as DecrementItemsQuantityRequest, i7 as DecrementItemsQuantityResponse, eS as DelayedCaptureSettings, j7 as DeleteActivityIdentifiers, hy as DeleteActivityRequest, hz as DeleteActivityResponse, fZ as DeleteByFilterOperation, fY as DeleteByIdsOperation, ej as DeleteContext, ad as DeleteStatus, jG as DeleteStatusWithLiterals, bm as DeliveryLogistics, bn as DeliveryLogisticsAddressOneOf, bq as DeliveryTimeSlot, a6 as DeltaPaymentOptionType, jz as DeltaPaymentOptionTypeWithLiterals, iU as Deposit, aD as DepositType, k4 as DepositTypeWithLiterals, aI as DescriptionLine, aK as DescriptionLineDescriptionLineValueOneOf, aL as DescriptionLineName, D as DescriptionLineType, ja as DescriptionLineTypeWithLiterals, aJ as DescriptionLineValueOneOf, g6 as DiffmatokyPayload, aX as DigitalFile, aQ as Dimensions, z as DimensionsUnit, jb as DimensionsUnitWithLiterals, iK as Discount, iL as DiscountOneDiscountTypeOneOf, Y as DiscountReason, jp as DiscountReasonWithLiterals, bB as DiscountRule, bC as DiscountRuleName, X as DiscountType, jo as DiscountTypeWithLiterals, dj as DomainEvent, dk as DomainEventBodyOneOf, hc as DownloadLinkSent, bO as DraftOrderChangesApplied, db as DraftOrderCommitSettings, gy as DraftOrderDiffs, gB as DraftOrderDiffsBillingUpdateInfoOneOf, gA as DraftOrderDiffsBuyerUpdateInfoOneOf, gC as DraftOrderDiffsRecipientUpdateInfoOneOf, gz as DraftOrderDiffsShippingUpdateInfoOneOf, eT as Duration, ag as DurationUnit, jJ as DurationUnitWithLiterals, eI as EditorlessAssigned, eJ as EditorlessUnassigned, ir as Email, hl as EmailEdited, ec as Empty, dl as EntityCreatedEvent, dp as EntityDeletedEvent, dn as EntityUpdatedEvent, g7 as ErrorInformation, iW as EventMetadata, b7 as ExtendedFields, cs as ExternalReceipt, fE as ExternalReceiptInfo, aO as FocalPoint, cP as FormIdentifier, cO as FormInfo, b0 as FreeTrialPeriod, hj as FulfillerEmailSent, L as FulfillmentStatus, c_ as FulfillmentStatusUpdated, jj as FulfillmentStatusWithLiterals, cF as FulfillmentStatusesAggregate, bj as FullAddressContactDetails, g8 as GetOrderRequest, g9 as GetOrderResponse, eU as GetPaymentCollectabilityStatusRequest, f5 as GetRefundabilityStatusRequest, f6 as GetRefundabilityStatusResponse, i1 as GetShipmentsRequest, i2 as GetShipmentsResponse, fB as GiftCardPaymentDetails, cb as GiftCardPaymentRefund, eK as HasCustomEmailConfigurationsRequest, eL as HasCustomEmailConfigurationsResponse, io as IdAndVersion, ds as IdentificationData, dt as IdentificationDataIdOneOf, dd as ImportOrderRequest, de as ImportOrderResponse, cY as ImportedOrderDeleted, h5 as InternalActivity, h6 as InternalActivityContentOneOf, fW as InternalDocument, f_ as InternalDocumentUpdateByFilterOperation, fX as InternalDocumentUpdateOperation, ga as InternalQueryOrdersRequest, gg as InternalQueryOrdersResponse, f$ as InternalUpdateExistingOperation, a7 as InventoryAction, jA as InventoryActionWithLiterals, dc as InventoryUpdateDetails, hh as InvoiceAdded, iA as InvoiceDates, iR as InvoiceDynamicPriceTotals, ip as InvoiceFields, hi as InvoiceSent, im as InvoiceSentEvent, aE as InvoiceStatus, k5 as InvoiceStatusWithLiterals, iP as InvoicesPayment, eO as IsInAutomationMigrationPopulationRequest, eP as IsInAutomationMigrationPopulationResponse, d3 as ItemChangedDetails, bE as ItemCombination, bF as ItemCombinationLineItem, f2 as ItemMetadata, ba as ItemModifier, aU as ItemTaxFullDetails, aR as ItemType, aS as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, jc as ItemTypePresetWithLiterals, iJ as ItemizedFee, J as JurisdictionType, je as JurisdictionTypeWithLiterals, iC as LineItem, b_ as LineItemAmount, bR as LineItemChanges, d5 as LineItemDelta, d6 as LineItemDeltaDeltaOneOf, bV as LineItemDescriptionLineChange, bD as LineItemDiscount, bN as LineItemExchangeData, iG as LineItemMetaData, bW as LineItemModifiersChange, bT as LineItemPriceChange, bU as LineItemProductNameChange, bS as LineItemQuantityChange, Z as LineItemQuantityChangeType, jq as LineItemQuantityChangeTypeWithLiterals, dW as LineItemRefund, fL as LineItemRefundSummary, iE as LineItemTax, aW as LineItemTaxBreakdown, aV as LineItemTaxInfo, hB as LineItemUpdate, iB as LineItems, iH as Locale, cI as Location, b4 as LocationAndQuantity, b$ as ManagedAdditionalFee, bY as ManagedDiscount, bX as ManagedLineItem, al as ManuallyRefundableReason, jO as ManuallyRefundableReasonWithLiterals, hI as MarkAsFulfilledRequest, hJ as MarkAsFulfilledResponse, hO as MarkAsUnfulfilledRequest, hP as MarkAsUnfulfilledResponse, eZ as MarkOrderAsPaidRequest, e_ as MarkOrderAsPaidResponse, hD as MarkOrderAsSeenByHumanRequest, hE as MarkOrderAsSeenByHumanResponse, h2 as MaskedOrderLineItem, fd as MembershipChargeItem, fe as MembershipName, fC as MembershipPaymentDetails, cc as MembershipPaymentRefund, at as MembershipPaymentStatus, jW as MembershipPaymentStatusWithLiterals, bJ as MerchantComment, bz as MerchantDiscount, bA as MerchantDiscountMerchantDiscountReasonOneOf, dr as MessageEnvelope, iQ as MetaData, ed as MetaSiteSpecialEvent, ee as MetaSiteSpecialEventPayloadOneOf, b8 as ModifierGroup, ac as Namespace, et as NamespaceChanged, jF as NamespaceWithLiterals, bM as NewExchangeOrderCreated, ak as NonRefundableReason, jN as NonRefundableReasonWithLiterals, ey as OdeditorAssigned, ez as OdeditorUnassigned, a3 as OrderActionType, jw as OrderActionTypeWithLiterals, $ as OrderActivityTypeEnumActivityType, js as OrderActivityTypeEnumActivityTypeWithLiterals, ax as OrderApprovalStrategy, j_ as OrderApprovalStrategyWithLiterals, cS as OrderApproved, hb as OrderCanceled, c$ as OrderCanceledEventOrderCanceled, bP as OrderChange, bQ as OrderChangeValueOneOf, gs as OrderCreateNotifications, bL as OrderCreatedFromExchange, gq as OrderCreationSettings, gr as OrderCreationSettingsEditableByOneOf, d0 as OrderDeltasCommitted, h9 as OrderFulfilled, cX as OrderImported, cV as OrderItemsRestocked, aF as OrderLineItem, d4 as OrderLineItemChangedDetails, ha as OrderNotFulfilled, h8 as OrderPaid, hn as OrderPartiallyPaid, ho as OrderPending, h7 as OrderPlaced, bK as OrderRefunded, hp as OrderRejected, cU as OrderRejectedEventOrderRejected, j3 as OrderSearchSpec, cJ as OrderSettings, cK as OrderSettingsAllowedActionsOneOf, cL as OrderSettingsEditableByOneOf, R as OrderStatus, jn as OrderStatusWithLiterals, bv as OrderTaxBreakdown, bu as OrderTaxInfo, fn as OrderTransactions, cT as OrdersExperiments, ae as Origin, jH as OriginWithLiterals, cN as OwnerApps, fo as Payment, cl as PaymentCanceled, cm as PaymentCanceledPaymentDetailsOneOf, ah as PaymentCollectabilityStatus, jK as PaymentCollectabilityStatusWithLiterals, k8 as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, j0 as PaymentCollectionCreatePaymentGatewayOrderOptions, k7 as PaymentCollectionMarkOrderAsPaidApplicationErrors, i$ as PaymentCollectionMarkOrderAsPaidOptions, cn as PaymentDeclined, co as PaymentDeclinedPaymentDetailsOneOf, fA as PaymentMethodName, E as PaymentOptionType, jd as PaymentOptionTypeWithLiterals, fp as PaymentPaymentDetailsOneOf, cg as PaymentPending, ch as PaymentPendingPaymentDetailsOneOf, fq as PaymentReceiptInfoOneOf, fi as PaymentRefund, ce as PaymentRefundFailed, cd as PaymentRefunded, K as PaymentStatus, cZ as PaymentStatusUpdated, ji as PaymentStatusWithLiterals, iO as Payments, iu as Phone, aP as PhysicalProperties, eA as PicassoAssigned, eB as PicassoUnassigned, bp as PickupAddress, bo as PickupDetails, Q as PickupMethod, jm as PickupMethodWithLiterals, hm as PickupReadyEmailSent, ay as Placement, j$ as PlacementWithLiterals, aM as PlainTextValue, cR as PlatformFee, cQ as PlatformFeeSummary, ge as PlatformPaging, gh as PlatformPagingMetadata, gb as PlatformQuery, gc as PlatformQueryPagingMethodOneOf, ai as PredefinedPaymentMethod, jL as PredefinedPaymentMethodWithLiterals, eQ as PreparePaymentCollectionRequest, e4 as PreviewBuyerConfirmationEmailRequest, e5 as PreviewBuyerConfirmationEmailResponse, e2 as PreviewBuyerPaymentsReceivedEmailRequest, e3 as PreviewBuyerPaymentsReceivedEmailResponse, e6 as PreviewBuyerPickupConfirmationEmailRequest, e7 as PreviewBuyerPickupConfirmationEmailResponse, d_ as PreviewCancelEmailRequest, d$ as PreviewCancelEmailResponse, e0 as PreviewCancelRefundEmailRequest, e1 as PreviewCancelRefundEmailResponse, dR as PreviewEmailByTypeRequest, dS as PreviewEmailByTypeResponse, a9 as PreviewEmailType, jC as PreviewEmailTypeWithLiterals, dT as PreviewRefundEmailRequest, dZ as PreviewRefundEmailResponse, ea as PreviewResendDownloadLinksEmailRequest, eb as PreviewResendDownloadLinksEmailResponse, e8 as PreviewShippingConfirmationEmailRequest, e9 as PreviewShippingConfirmationEmailResponse, b3 as PriceDescription, be as PriceSummary, aG as ProductName, hs as PublicActivity, ht as PublicActivityContentOneOf, gj as QueryOrderRequest, gk as QueryOrderResponse, is as QuotesAddress, aq as Reason, jT as ReasonWithLiterals, cp as ReceiptCreated, cq as ReceiptCreatedReceiptInfoOneOf, ct as ReceiptSent, cu as ReceiptSentReceiptInfoOneOf, k6 as RecordManuallyCollectedPaymentApplicationErrors, i_ as RecordManuallyCollectedPaymentOptions, eV as RecordManuallyCollectedPaymentRequest, eY as RecordManuallyCollectedPaymentResponse, eR as RedirectUrls, fG as Refund, dU as RefundDetails, c7 as RefundInitiated, dV as RefundItem, fK as RefundItemsBreakdown, fj as RefundSideEffects, au as RefundStatus, fI as RefundStatusInfo, jX as RefundStatusWithLiterals, fH as RefundTransaction, f7 as Refundability, f8 as RefundabilityAdditionalRefundabilityInfoOneOf, aj as RefundableStatus, jM as RefundableStatusWithLiterals, cf as RefundedAsStoreCredit, c8 as RefundedPayment, c9 as RefundedPaymentKindOneOf, ci as RegularPayment, fr as RegularPaymentDetails, fs as RegularPaymentDetailsPaymentMethodDetailsOneOf, cj as RegularPaymentPaymentMethodDetailsOneOf, ca as RegularPaymentRefund, il as Reschedule, fk as RestockInfo, fl as RestockItem, aT as RestockLocation, am as RestockType, jP as RestockTypeWithLiterals, dm as RestoreInfo, c3 as SavedPaymentMethod, af as ScheduledAction, jI as ScheduledActionWithLiterals, gl as SearchOrdersRequest, dv as SendBuyerConfirmationEmailRequest, dw as SendBuyerConfirmationEmailResponse, dx as SendBuyerPaymentsReceivedEmailRequest, dy as SendBuyerPaymentsReceivedEmailResponse, dz as SendBuyerPickupConfirmationEmailRequest, dA as SendBuyerPickupConfirmationEmailResponse, dD as SendBuyerShippingConfirmationEmailRequest, dE as SendBuyerShippingConfirmationEmailResponse, dJ as SendCancelRefundEmailRequest, dK as SendCancelRefundEmailResponse, dN as SendFulfillmentEmailRequest, dO as SendFulfillmentEmailResponse, dH as SendMerchantOrderReceivedNotificationRequest, dI as SendMerchantOrderReceivedNotificationResponse, dP as SendMerchantOrderReceivedPushRequest, dQ as SendMerchantOrderReceivedPushResponse, ic as SendOrderUpdatedDomainEventRequest, id as SendOrderUpdatedDomainEventResponse, dL as SendRefundEmailRequest, dM as SendRefundEmailResponse, ff as ServiceProperties, ep as ServiceProvisioned, eq as ServiceRemoved, iY as SetOrderNumberCounterOptions, df as SetOrderNumberCounterRequest, dg as SetOrderNumberCounterResponse, hk as ShippingAddressEdited, hg as ShippingConfirmationEmailSent, c2 as ShippingInformation, c1 as ShippingInformationChange, br as ShippingPrice, dY as ShippingRefund, bs as ShippingRegion, eg as SiteCreated, ab as SiteCreatedContext, jE as SiteCreatedContextWithLiterals, ei as SiteDeleted, es as SiteHardDeleted, en as SiteMarkedAsTemplate, eo as SiteMarkedAsWixSite, el as SitePublished, ex as SitePurgedExternally, er as SiteRenamed, eh as SiteTransferred, ek as SiteUndeleted, em as SiteUnpublished, ew as SiteUrlChanged, aw as SortOrder, jZ as SortOrderWithLiterals, gd as Sorting, iF as Source, aA as SourceType, k1 as SourceTypeWithLiterals, a4 as SpecificItemsCouponBehavior, jx as SpecificItemsCouponBehaviorWithLiterals, iz as StandardDetails, aa as State, jD as StateWithLiterals, bh as StreetAddress, eu as StudioAssigned, eE as StudioTwoAssigned, eF as StudioTwoUnassigned, ev as StudioUnassigned, iy as Subdivision, az as SubdivisionType, k0 as SubdivisionTypeWithLiterals, a_ as SubscriptionDescription, F as SubscriptionFrequency, jf as SubscriptionFrequencyWithLiterals, aY as SubscriptionInfo, a$ as SubscriptionSettings, aZ as SubscriptionTitle, cH as TagList, cG as Tags, ia as TagsTagList, i9 as TagsTags, ie as Task, ih as TaskAction, ii as TaskActionActionOneOf, ig as TaskKey, bt as TaxSummary, b5 as TaxableAddress, b6 as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, jh as TaxableAddressTypeWithLiterals, iI as TotalPrice, c0 as TotalPriceChange, hf as TrackingLinkAdded, hd as TrackingNumberAdded, he as TrackingNumberEdited, an as TransactionStatus, jQ as TransactionStatusWithLiterals, b9 as TranslatableString, bZ as TranslatedValue, k9 as TriggerRefundApplicationErrors, j2 as TriggerRefundOptions, fh as TriggerRefundRequest, fm as TriggerRefundResponse, g5 as TriggerReindexOrderRequest, g3 as TriggerReindexRequest, g4 as TriggerReindexResponse, gM as UnArchiveOrderRequest, gN as UnArchiveOrderResponse, j6 as UpdateActivityIdentifiers, hw as UpdateActivityRequest, hx as UpdateActivityResponse, gZ as UpdateBillingContactDetailsRequest, g_ as UpdateBillingContactDetailsResponse, gV as UpdateBuyerEmailRequest, gW as UpdateBuyerEmailResponse, gS as UpdateBuyerInfoRequest, gU as UpdateBuyerInfoResponse, fU as UpdateInternalDocumentsEvent, fV as UpdateInternalDocumentsEventOperationOneOf, hA as UpdateLineItemsDescriptionLinesRequest, hC as UpdateLineItemsDescriptionLinesResponse, j5 as UpdateOrderLineItem, j4 as UpdateOrderLineItemIdentifiers, g$ as UpdateOrderLineItemRequest, h0 as UpdateOrderLineItemResponse, h1 as UpdateOrderLineItemsRequest, h3 as UpdateOrderLineItemsResponse, gu as UpdateOrderRequest, gv as UpdateOrderResponse, gX as UpdateOrderShippingAddressRequest, gY as UpdateOrderShippingAddressResponse, ka as UpdateOrderStatusApplicationErrors, hG as UpdateOrderStatusRequest, hH as UpdateOrderStatusResponse, eW as UserDefinedPaymentMethodName, eX as UserDefinedPaymentMethodNameKindOneOf, eH as UserDomainMediaDisabled, eG as UserDomainMediaEnabled, hZ as V1BulkMarkOrdersAsPaidRequest, h_ as V1BulkMarkOrdersAsPaidResponse, h$ as V1CreatePaymentGatewayOrderRequest, i0 as V1CreatePaymentGatewayOrderResponse, gD as V1LineItemDelta, gE as V1LineItemDeltaDeltaOneOf, hX as V1MarkOrderAsPaidRequest, hY as V1MarkOrderAsPaidResponse, cW as V1RestockItem, fy as V1ScheduledAction, bl as V1ShippingInformation, iT as Value, aC as ValueType, k3 as ValueTypeWithLiterals, bk as VatId, N as VatType, jl as VatTypeWithLiterals, g1 as VersionedDeleteByIdsOperation, g2 as VersionedDocumentId, g0 as VersionedDocumentUpdateOperation, av as VersioningMode, jY as VersioningModeWithLiterals, fQ as VoidAuthorizedPaymentsRequest, a8 as WebhookIdentityType, jB as WebhookIdentityTypeWithLiterals, W as WeightUnit, jk as WeightUnitWithLiterals, cr as WixReceipt, fD as WixReceiptInfo, eC as WixelAssigned, eD as WixelUnassigned, j9 as utils } from './ecom-v1-order-orders.universal-BjvDnQO1.js';
4
4
 
5
5
  declare function preparePaymentCollection$1(httpClient: HttpClient): PreparePaymentCollectionSignature;
6
6
  interface PreparePaymentCollectionSignature {
@@ -53,6 +53,7 @@ __export(index_exports, {
53
53
  OrderActivityTypeEnumActivityType: () => OrderActivityTypeEnumActivityType,
54
54
  OrderApprovalStrategy: () => OrderApprovalStrategy,
55
55
  OrderStatus: () => OrderStatus,
56
+ Origin: () => Origin,
56
57
  PaymentCollectabilityStatus: () => PaymentCollectabilityStatus,
57
58
  PaymentOptionType: () => PaymentOptionType,
58
59
  PaymentStatus: () => PaymentStatus,
@@ -2089,12 +2090,6 @@ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
2089
2090
  WebhookIdentityType2["APP"] = "APP";
2090
2091
  return WebhookIdentityType2;
2091
2092
  })(WebhookIdentityType || {});
2092
- var VersioningMode = /* @__PURE__ */ ((VersioningMode2) => {
2093
- VersioningMode2["DEFAULT"] = "DEFAULT";
2094
- VersioningMode2["GREATER_THAN"] = "GREATER_THAN";
2095
- VersioningMode2["GREATER_OR_EQUAL"] = "GREATER_OR_EQUAL";
2096
- return VersioningMode2;
2097
- })(VersioningMode || {});
2098
2093
  var PreviewEmailType = /* @__PURE__ */ ((PreviewEmailType2) => {
2099
2094
  PreviewEmailType2["ORDER_PLACED"] = "ORDER_PLACED";
2100
2095
  PreviewEmailType2["DOWNLOAD_LINKS"] = "DOWNLOAD_LINKS";
@@ -2164,6 +2159,12 @@ var DeleteStatus = /* @__PURE__ */ ((DeleteStatus2) => {
2164
2159
  DeleteStatus2["PURGED_EXTERNALLY"] = "PURGED_EXTERNALLY";
2165
2160
  return DeleteStatus2;
2166
2161
  })(DeleteStatus || {});
2162
+ var Origin = /* @__PURE__ */ ((Origin2) => {
2163
+ Origin2["UNKNOWN_ORIGIN"] = "UNKNOWN_ORIGIN";
2164
+ Origin2["OPT_IN"] = "OPT_IN";
2165
+ Origin2["MIGRATION"] = "MIGRATION";
2166
+ return Origin2;
2167
+ })(Origin || {});
2167
2168
  var ScheduledAction = /* @__PURE__ */ ((ScheduledAction2) => {
2168
2169
  ScheduledAction2["UNSPECIFIED"] = "UNSPECIFIED";
2169
2170
  ScheduledAction2["VOID"] = "VOID";
@@ -2291,6 +2292,12 @@ var RefundStatus = /* @__PURE__ */ ((RefundStatus2) => {
2291
2292
  RefundStatus2["STARTED"] = "STARTED";
2292
2293
  return RefundStatus2;
2293
2294
  })(RefundStatus || {});
2295
+ var VersioningMode = /* @__PURE__ */ ((VersioningMode2) => {
2296
+ VersioningMode2["DEFAULT"] = "DEFAULT";
2297
+ VersioningMode2["GREATER_THAN"] = "GREATER_THAN";
2298
+ VersioningMode2["GREATER_OR_EQUAL"] = "GREATER_OR_EQUAL";
2299
+ return VersioningMode2;
2300
+ })(VersioningMode || {});
2294
2301
  var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
2295
2302
  SortOrder2["ASC"] = "ASC";
2296
2303
  SortOrder2["DESC"] = "DESC";
@@ -4171,6 +4178,7 @@ var onOrderUpdated2 = (0, import_event_definition_modules.createEventModule)(onO
4171
4178
  OrderActivityTypeEnumActivityType,
4172
4179
  OrderApprovalStrategy,
4173
4180
  OrderStatus,
4181
+ Origin,
4174
4182
  PaymentCollectabilityStatus,
4175
4183
  PaymentOptionType,
4176
4184
  PaymentStatus,