@wix/auto_sdk_ecom_orders 1.0.227 → 1.0.228

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