@wix/auto_sdk_ecom_orders 1.0.136 → 1.0.137

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-C3ADe9Sb.d.ts → ecom-v1-order-orders.universal-E2sGTz4Q.d.ts} +47 -70
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +0 -190
  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 +0 -181
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +48 -57
  9. package/build/cjs/meta.js +0 -125
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{ecom-v1-order-orders.universal-C3ADe9Sb.d.mts → ecom-v1-order-orders.universal-E2sGTz4Q.d.mts} +47 -70
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +0 -189
  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 +0 -180
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +48 -57
  19. package/build/es/meta.mjs +0 -124
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{ecom-v1-order-orders.universal-_nmG8kso.d.ts → ecom-v1-order-orders.universal-Q3RWBc4C.d.ts} +47 -85
  22. package/build/internal/cjs/index.d.ts +3 -13
  23. package/build/internal/cjs/index.js +0 -190
  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 +0 -181
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +48 -57
  29. package/build/internal/cjs/meta.js +0 -125
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{ecom-v1-order-orders.universal-_nmG8kso.d.mts → ecom-v1-order-orders.universal-Q3RWBc4C.d.mts} +47 -85
  32. package/build/internal/es/index.d.mts +3 -13
  33. package/build/internal/es/index.mjs +0 -189
  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 +0 -180
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +48 -57
  39. package/build/internal/es/meta.mjs +0 -124
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -2832,6 +2832,50 @@ declare enum OrderActionType {
2832
2832
  }
2833
2833
  /** @enumType */
2834
2834
  type OrderActionTypeWithLiterals = OrderActionType | 'EDIT' | 'UPDATE' | 'REFUND' | 'APPROVE' | 'CANCEL' | 'FULFILL' | 'COLLECT_PAYMENTS' | 'SEND_NOTIFICATIONS' | 'ADD_MERCHANT_ACTIVITY' | 'ADD_ACTIVITY' | 'CREATE_INVOICE' | 'CREATE_RECEIPTS' | 'ASSIGN_TAG' | 'PRINT_PACKAGING_SLIP' | 'MODIFY_INVENTORY';
2835
+ interface FormInfo {
2836
+ /**
2837
+ * The identifier of the form schema.
2838
+ * @readonly
2839
+ */
2840
+ schemaIdentifier?: FormIdentifier;
2841
+ /**
2842
+ * The unique identifier of the form instance.
2843
+ * @format GUID
2844
+ * @readonly
2845
+ */
2846
+ _id?: string;
2847
+ /**
2848
+ * The line item ids associated with this form.
2849
+ * @format GUID
2850
+ * @readonly
2851
+ * @maxSize 300
2852
+ */
2853
+ lineItemIds?: string[];
2854
+ /**
2855
+ * The translated title of the form.
2856
+ * @maxLength 100
2857
+ * @readonly
2858
+ */
2859
+ title?: string;
2860
+ /**
2861
+ * The translated subtitles of the form.
2862
+ * @maxSize 10
2863
+ * @maxLength 100
2864
+ * @readonly
2865
+ */
2866
+ subtitles?: string[] | null;
2867
+ /**
2868
+ * The id of the form submission.
2869
+ * @format GUID
2870
+ */
2871
+ formSubmissionId?: string | null;
2872
+ }
2873
+ interface FormIdentifier {
2874
+ /** @format GUID */
2875
+ formSchemaId?: string;
2876
+ /** @maxLength 100 */
2877
+ namespace?: string;
2878
+ }
2835
2879
  /** Triggered when the order status changes to approved */
2836
2880
  interface OrderApproved {
2837
2881
  /** The order that was updated */
@@ -4575,50 +4619,6 @@ interface TriggerReindexOrderRequest {
4575
4619
  */
4576
4620
  orderId?: string;
4577
4621
  }
4578
- interface FormInfo {
4579
- /**
4580
- * The identifier of the form schema.
4581
- * @readonly
4582
- */
4583
- schemaIdentifier?: FormIdentifier;
4584
- /**
4585
- * The unique identifier of the form instance.
4586
- * @format GUID
4587
- * @readonly
4588
- */
4589
- _id?: string;
4590
- /**
4591
- * The line item ids associated with this form.
4592
- * @format GUID
4593
- * @readonly
4594
- * @maxSize 300
4595
- */
4596
- lineItemIds?: string[];
4597
- /**
4598
- * The translated title of the form.
4599
- * @maxLength 100
4600
- * @readonly
4601
- */
4602
- title?: string;
4603
- /**
4604
- * The translated subtitles of the form.
4605
- * @maxSize 10
4606
- * @maxLength 100
4607
- * @readonly
4608
- */
4609
- subtitles?: string[] | null;
4610
- /**
4611
- * The id of the form submission.
4612
- * @format GUID
4613
- */
4614
- formSubmissionId?: string | null;
4615
- }
4616
- interface FormIdentifier {
4617
- /** @format GUID */
4618
- formSchemaId?: string;
4619
- /** @maxLength 100 */
4620
- namespace?: string;
4621
- }
4622
4622
  interface DiffmatokyPayload {
4623
4623
  left?: string;
4624
4624
  right?: string;
@@ -4874,7 +4874,7 @@ interface BulkUpdateOrdersResponse {
4874
4874
  }
4875
4875
  interface CommitDeltasRequest {
4876
4876
  /** Order id to be updated */
4877
- _id: string;
4877
+ _id?: string;
4878
4878
  /**
4879
4879
  * Draft order Id representing this change.
4880
4880
  * Use this ID to get this specific draft content. call .../v1/draft-orders/{draft_order_id}/get
@@ -4882,7 +4882,7 @@ interface CommitDeltasRequest {
4882
4882
  */
4883
4883
  draftOrderId?: string;
4884
4884
  /** Draft order changes to be applied */
4885
- changes: DraftOrderDiffs;
4885
+ changes?: DraftOrderDiffs;
4886
4886
  /** Side-effects to happen after order is updated */
4887
4887
  commitSettings?: DraftOrderCommitSettings;
4888
4888
  /**
@@ -6697,12 +6697,6 @@ type UpdateOrderApplicationErrors = {
6697
6697
  data?: Record<string, any>;
6698
6698
  };
6699
6699
  /** @docsIgnore */
6700
- type CommitDeltasApplicationErrors = {
6701
- code?: 'EMPTY_DELTAS_TO_COMMIT';
6702
- description?: string;
6703
- data?: Record<string, any>;
6704
- };
6705
- /** @docsIgnore */
6706
6700
  type CancelOrderApplicationErrors = {
6707
6701
  code?: 'ORDER_HAS_AUTHORIZED_TRANSACTION';
6708
6702
  description?: string;
@@ -7471,23 +7465,6 @@ interface BulkUpdateOrdersOptions {
7471
7465
  */
7472
7466
  returnEntity?: boolean;
7473
7467
  }
7474
- interface CommitDeltasOptions {
7475
- /**
7476
- * Draft order Id representing this change.
7477
- * Use this ID to get this specific draft content. call .../v1/draft-orders/{draft_order_id}/get
7478
- * @format GUID
7479
- */
7480
- draftOrderId?: string;
7481
- /** Draft order changes to be applied */
7482
- changes: DraftOrderDiffs;
7483
- /** Side-effects to happen after order is updated */
7484
- commitSettings?: DraftOrderCommitSettings;
7485
- /**
7486
- * Reason for edit, given by user (optional).
7487
- * @maxLength 200
7488
- */
7489
- reason?: string | null;
7490
- }
7491
7468
  interface UpdateOrderLineItemIdentifiers {
7492
7469
  /**
7493
7470
  * Order ID
@@ -7746,4 +7723,4 @@ interface BulkUpdateOrderTagsOptions {
7746
7723
  unassignTags?: Tags;
7747
7724
  }
7748
7725
 
7749
- export { OrderActionType as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PaymentStatus as E, FulfillmentStatus as F, type GetPaymentCollectabilityStatusResponse as G, VatType as H, ItemTypePreset as I, JurisdictionType as J, PickupMethod as K, OrderStatus as L, type MaskedOrder as M, DiscountType as N, type Order as O, type Price as P, DiscountReason as Q, LineItemQuantityChangeType as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, ActivityType as X, OrderActivityTypeEnumActivityType as Y, AttributionSource as Z, ChannelType as _, type PreparePaymentCollectionOptions as a, type CurrencyConversionDetails as a$, WebhookIdentityType as a0, PreviewEmailType as a1, ScheduledAction as a2, DurationUnit as a3, PaymentCollectabilityStatus as a4, RefundableStatus as a5, NonRefundableReason as a6, ManuallyRefundableReason as a7, RestockType as a8, TransactionStatus as a9, type PlainTextValue as aA, type Color as aB, type FocalPoint as aC, type PhysicalProperties as aD, type ItemType as aE, type ItemTypeItemTypeDataOneOf as aF, type ItemTaxFullDetails as aG, type LineItemTaxInfo as aH, type LineItemTaxBreakdown as aI, type DigitalFile as aJ, type SubscriptionInfo as aK, type SubscriptionTitle as aL, type SubscriptionDescription as aM, type SubscriptionSettings as aN, type FreeTrialPeriod as aO, type BillingAdjustment as aP, type BillingAdjustmentPriceSummary as aQ, type PriceDescription as aR, type LocationAndQuantity as aS, type TaxableAddress as aT, type TaxableAddressTaxableAddressDataOneOf as aU, type ExtendedFields as aV, type ModifierGroup as aW, type TranslatableString as aX, type ItemModifier as aY, type BuyerInfo as aZ, type BuyerInfoIdOneOf as a_, AuthorizationCaptureStatus as aa, AuthorizationVoidStatus as ab, Reason as ac, ActionType as ad, ChargebackStatus as ae, MembershipPaymentStatus as af, RefundStatus as ag, VersioningMode as ah, SortOrder as ai, OrderApprovalStrategy as aj, DeltaPaymentOptionType as ak, InventoryAction as al, Placement as am, SubdivisionType as an, SourceType as ao, CustomFieldGroup as ap, ValueType as aq, DepositType as ar, InvoiceStatus as as, type OrderLineItem as at, type ProductName as au, type CatalogReference as av, type DescriptionLine as aw, type DescriptionLineValueOneOf as ax, type DescriptionLineDescriptionLineValueOneOf as ay, type DescriptionLineName as az, type PreparePaymentCollectionResponse as b, type RefundedAsStoreCredit as b$, type PriceSummary as b0, type AddressWithContact as b1, type Address as b2, type StreetAddress as b3, type AddressLocation as b4, type FullAddressContactDetails as b5, type VatId as b6, type V1ShippingInformation as b7, type DeliveryLogistics as b8, type DeliveryLogisticsAddressOneOf as b9, type OrderChangeValueOneOf as bA, type LineItemChanges as bB, type LineItemQuantityChange as bC, type LineItemPriceChange as bD, type LineItemProductNameChange as bE, type LineItemDescriptionLineChange as bF, type LineItemModifiersChange as bG, type ManagedLineItem as bH, type ManagedDiscount as bI, type TranslatedValue as bJ, type LineItemAmount as bK, type ManagedAdditionalFee as bL, type TotalPriceChange as bM, type ShippingInformationChange as bN, type ShippingInformation as bO, type SavedPaymentMethod as bP, type AuthorizedPaymentCreated as bQ, type AuthorizedPaymentCaptured as bR, type AuthorizedPaymentVoided as bS, type RefundInitiated as bT, type RefundedPayment as bU, type RefundedPaymentKindOneOf as bV, type RegularPaymentRefund as bW, type GiftCardPaymentRefund as bX, type MembershipPaymentRefund as bY, type PaymentRefunded as bZ, type PaymentRefundFailed as b_, type PickupDetails as ba, type PickupAddress as bb, type DeliveryTimeSlot as bc, type ShippingPrice as bd, type ShippingRegion as be, type TaxSummary as bf, type OrderTaxInfo as bg, type OrderTaxBreakdown as bh, type AppliedDiscount as bi, type AppliedDiscountDiscountSourceOneOf as bj, type Coupon as bk, type MerchantDiscount as bl, type MerchantDiscountMerchantDiscountReasonOneOf as bm, type DiscountRule as bn, type DiscountRuleName as bo, type LineItemDiscount as bp, type Activity as bq, type ActivityContentOneOf as br, type CustomActivity as bs, type MerchantComment as bt, type OrderRefunded as bu, type OrderCreatedFromExchange as bv, type NewExchangeOrderCreated as bw, type LineItemExchangeData as bx, type DraftOrderChangesApplied as by, type OrderChange as bz, type PreparePaymentCollectionApplicationErrors as c, type SendBuyerShippingConfirmationEmailResponse as c$, type PaymentPending as c0, type PaymentPendingPaymentDetailsOneOf as c1, type RegularPayment as c2, type RegularPaymentPaymentMethodDetailsOneOf as c3, type CreditCardDetails as c4, type PaymentCanceled as c5, type PaymentCanceledPaymentDetailsOneOf as c6, type PaymentDeclined as c7, type PaymentDeclinedPaymentDetailsOneOf as c8, type ReceiptCreated as c9, type OrderImported as cA, type ImportedOrderDeleted as cB, type ImportOrderRequest as cC, type ImportOrderResponse as cD, type SetOrderNumberCounterRequest as cE, type SetOrderNumberCounterResponse as cF, type BulkDeleteImportedOrdersRequest as cG, type BulkDeleteImportedOrdersResponse as cH, type DomainEvent as cI, type DomainEventBodyOneOf as cJ, type EntityCreatedEvent as cK, type RestoreInfo as cL, type EntityUpdatedEvent as cM, type EntityDeletedEvent as cN, type ActionEvent as cO, type MessageEnvelope as cP, type IdentificationData as cQ, type IdentificationDataIdOneOf as cR, type SendBuyerConfirmationEmailRequest as cS, type SendBuyerConfirmationEmailResponse as cT, type SendBuyerPaymentsReceivedEmailRequest as cU, type SendBuyerPaymentsReceivedEmailResponse as cV, type SendBuyerPickupConfirmationEmailRequest as cW, type SendBuyerPickupConfirmationEmailResponse as cX, type BulkSendBuyerPickupConfirmationEmailsRequest as cY, type BulkSendBuyerPickupConfirmationEmailsResponse as cZ, type SendBuyerShippingConfirmationEmailRequest as c_, type ReceiptCreatedReceiptInfoOneOf as ca, type WixReceipt as cb, type ExternalReceipt as cc, type ReceiptSent as cd, type ReceiptSentReceiptInfoOneOf as ce, type ChargebackCreated as cf, type ChargebackReversed as cg, type CreatedBy as ch, type CreatedByStringOneOf as ci, type ChannelInfo as cj, type CustomField as ck, type BalanceSummary as cl, type Balance as cm, type AdditionalFee as cn, type FulfillmentStatusesAggregate as co, type Tags as cp, type TagList as cq, type Location as cr, type OrderSettings as cs, type OrderSettingsAllowedActionsOneOf as ct, type CustomAllowedActions as cu, type OrderApproved as cv, type OrdersExperiments as cw, type OrderRejectedEventOrderRejected as cx, type OrderItemsRestocked as cy, type V1RestockItem as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type PaymentRefund as d$, type BulkSendBuyerShippingConfirmationEmailsRequest as d0, type BulkSendBuyerShippingConfirmationEmailsResponse as d1, type SendMerchantOrderReceivedNotificationRequest as d2, type SendMerchantOrderReceivedNotificationResponse as d3, type SendCancelRefundEmailRequest as d4, type SendCancelRefundEmailResponse as d5, type SendRefundEmailRequest as d6, type SendRefundEmailResponse as d7, type SendMerchantOrderReceivedPushRequest as d8, type SendMerchantOrderReceivedPushResponse as d9, type RedirectUrls as dA, type DelayedCaptureSettings as dB, type Duration as dC, type GetPaymentCollectabilityStatusRequest as dD, type RecordManuallyCollectedPaymentRequest as dE, type RecordManuallyCollectedPaymentResponse as dF, type MarkOrderAsPaidRequest as dG, type MarkOrderAsPaidResponse as dH, type BulkMarkOrdersAsPaidRequest as dI, type BulkMarkOrdersAsPaidResponse as dJ, type BulkOrderResult as dK, type ItemMetadata as dL, type ApplicationError as dM, type BulkActionMetadata as dN, type GetRefundabilityStatusRequest as dO, type GetRefundabilityStatusResponse as dP, type Refundability as dQ, type RefundabilityAdditionalRefundabilityInfoOneOf as dR, type CreatePaymentGatewayOrderRequest as dS, type ChargedBy as dT, type CreatePaymentGatewayOrderResponse as dU, type ChargeMembershipsRequest as dV, type MembershipChargeItem as dW, type MembershipName as dX, type ServiceProperties as dY, type ChargeMembershipsResponse as dZ, type TriggerRefundRequest as d_, type PreviewEmailByTypeRequest as da, type PreviewEmailByTypeResponse as db, type PreviewRefundEmailRequest as dc, type RefundDetails as dd, type RefundItem as de, type LineItemRefund as df, type AdditionalFeeRefund as dg, type ShippingRefund as dh, type PreviewRefundEmailResponse as di, type PreviewCancelEmailRequest as dj, type PreviewCancelEmailResponse as dk, type PreviewCancelRefundEmailRequest as dl, type PreviewCancelRefundEmailResponse as dm, type PreviewBuyerPaymentsReceivedEmailRequest as dn, type PreviewBuyerPaymentsReceivedEmailResponse as dp, type PreviewBuyerConfirmationEmailRequest as dq, type PreviewBuyerConfirmationEmailResponse as dr, type PreviewBuyerPickupConfirmationEmailRequest as ds, type PreviewBuyerPickupConfirmationEmailResponse as dt, type PreviewShippingConfirmationEmailRequest as du, type PreviewShippingConfirmationEmailResponse as dv, type PreviewResendDownloadLinksEmailRequest as dw, type PreviewResendDownloadLinksEmailResponse as dx, type Empty as dy, type PreparePaymentCollectionRequest as dz, type PaymentCapture as e, type PlatformPagingMetadata as e$, type RefundSideEffects as e0, type RestockInfo as e1, type RestockItem as e2, type TriggerRefundResponse as e3, type OrderTransactions as e4, type Payment as e5, type PaymentPaymentDetailsOneOf as e6, type PaymentReceiptInfoOneOf as e7, type RegularPaymentDetails as e8, type RegularPaymentDetailsPaymentMethodDetailsOneOf as e9, type UpdateInternalDocumentsEventOperationOneOf as eA, type InternalDocument as eB, type InternalDocumentUpdateOperation as eC, type DeleteByIdsOperation as eD, type DeleteByFilterOperation as eE, type InternalDocumentUpdateByFilterOperation as eF, type InternalUpdateExistingOperation as eG, type VersionedDocumentUpdateOperation as eH, type VersionedDeleteByIdsOperation as eI, type VersionedDocumentId as eJ, type TriggerReindexRequest as eK, type TriggerReindexResponse as eL, type BatchOfTriggerReindexOrderRequest as eM, type TriggerReindexOrderRequest as eN, type FormInfo as eO, type FormIdentifier as eP, type DiffmatokyPayload as eQ, type ErrorInformation as eR, type GetOrderRequest as eS, type GetOrderResponse as eT, type InternalQueryOrdersRequest as eU, type PlatformQuery as eV, type PlatformQueryPagingMethodOneOf as eW, type Sorting as eX, type PlatformPaging as eY, type CursorPaging as eZ, type InternalQueryOrdersResponse as e_, type CreditCardPaymentMethodDetails as ea, type AuthorizationDetails as eb, type AuthorizationCapture as ec, type AuthorizationActionFailureDetails as ed, type AuthorizationVoid as ee, type V1ScheduledAction as ef, type Chargeback as eg, type GiftCardPaymentDetails as eh, type MembershipPaymentDetails as ei, type WixReceiptInfo as ej, type ExternalReceiptInfo as ek, type Refund as el, type RefundTransaction as em, type RefundStatusInfo as en, type AggregatedRefundSummary as eo, type RefundItemsBreakdown as ep, type LineItemRefundSummary as eq, type CalculateRefundRequest as er, type CalculateRefundItemRequest as es, type CalculateRefundResponse as et, type CalculateRefundItemResponse as eu, type VoidAuthorizedPaymentsRequest as ev, type CaptureAuthorizedPaymentsRequest as ew, type ChargeSavedPaymentMethodRequest as ex, type ChargeSavedPaymentMethodResponse as ey, type UpdateInternalDocumentsEvent as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type InternalActivity as f$, type Cursors as f0, type QueryOrderRequest as f1, type QueryOrderResponse as f2, type SearchOrdersRequest as f3, type CursorSearch as f4, type CursorSearchPagingMethodOneOf as f5, type CursorPagingMetadata as f6, type CreateOrderRequest as f7, type OrderCreationSettings as f8, type OrderCreateNotifications as f9, type ArchiveOrderRequest as fA, type ArchiveOrderResponse as fB, type BulkArchiveOrdersRequest as fC, type BulkArchiveOrdersResponse as fD, type BulkArchiveOrdersByFilterRequest as fE, type BulkArchiveOrdersByFilterResponse as fF, type UnArchiveOrderRequest as fG, type UnArchiveOrderResponse as fH, type BulkUnArchiveOrdersRequest as fI, type BulkUnArchiveOrdersResponse as fJ, type BulkUnArchiveOrdersByFilterRequest as fK, type BulkUnArchiveOrdersByFilterResponse as fL, type UpdateBuyerInfoRequest as fM, type BuyerInfoUpdate as fN, type UpdateBuyerInfoResponse as fO, type UpdateBuyerEmailRequest as fP, type UpdateBuyerEmailResponse as fQ, type UpdateOrderShippingAddressRequest as fR, type UpdateOrderShippingAddressResponse as fS, type UpdateBillingContactDetailsRequest as fT, type UpdateBillingContactDetailsResponse as fU, type UpdateOrderLineItemRequest as fV, type UpdateOrderLineItemResponse as fW, type UpdateOrderLineItemsRequest as fX, type MaskedOrderLineItem as fY, type UpdateOrderLineItemsResponse as fZ, type AddInternalActivityRequest as f_, type CreateOrderResponse as fa, type UpdateOrderRequest as fb, type UpdateOrderResponse as fc, type BulkUpdateOrdersRequest as fd, type CommitDeltasRequest as fe, type DraftOrderDiffs as ff, type DraftOrderDiffsShippingUpdateInfoOneOf as fg, type DraftOrderDiffsBuyerUpdateInfoOneOf as fh, type DraftOrderDiffsBillingUpdateInfoOneOf as fi, type DraftOrderDiffsRecipientUpdateInfoOneOf as fj, type V1LineItemDelta as fk, type V1LineItemDeltaDeltaOneOf as fl, type OrderLineItemChangedDetails as fm, type ItemChangedDetails as fn, type AppliedDiscountDelta as fo, type AppliedDiscountDeltaDeltaOneOf as fp, type AdditionalFeeDelta as fq, type AdditionalFeeDeltaDeltaOneOf as fr, type DraftOrderCommitSettings as fs, type InventoryUpdateDetails as ft, type CommitDeltasResponse as fu, type OrderDeltasCommitted as fv, type CommittedDiffs as fw, type CommittedDiffsShippingUpdateInfoOneOf as fx, type LineItemDelta as fy, type LineItemDeltaDeltaOneOf as fz, type GetOrderApplicationErrors as g, type GetShipmentsResponse as g$, type InternalActivityContentOneOf as g0, type OrderPlaced as g1, type OrderPaid as g2, type OrderFulfilled as g3, type OrderNotFulfilled as g4, type OrderCanceled as g5, type DownloadLinkSent as g6, type TrackingNumberAdded as g7, type TrackingNumberEdited as g8, type TrackingLinkAdded as g9, type OrderCanceledEventOrderCanceled as gA, type UpdateOrderStatusRequest as gB, type UpdateOrderStatusResponse as gC, type MarkAsFulfilledRequest as gD, type MarkAsFulfilledResponse as gE, type FulfillmentStatusUpdated as gF, type BulkMarkAsFulfilledRequest as gG, type BulkMarkAsFulfilledResponse as gH, type BulkMarkAsFulfilledByFilterRequest as gI, type BulkMarkAsFulfilledByFilterResponse as gJ, type MarkAsUnfulfilledRequest as gK, type MarkAsUnfulfilledResponse as gL, type BulkMarkAsUnfulfilledRequest as gM, type BulkMarkAsUnfulfilledResponse as gN, type BulkMarkAsUnfulfilledByFilterRequest as gO, type BulkMarkAsUnfulfilledByFilterResponse as gP, type BulkSetBusinessLocationRequest as gQ, type BulkSetBusinessLocationResponse as gR, type BulkSetBusinessLocationResult as gS, type V1MarkOrderAsPaidRequest as gT, type V1MarkOrderAsPaidResponse as gU, type PaymentStatusUpdated as gV, type V1BulkMarkOrdersAsPaidRequest as gW, type V1BulkMarkOrdersAsPaidResponse as gX, type V1CreatePaymentGatewayOrderRequest as gY, type V1CreatePaymentGatewayOrderResponse as gZ, type GetShipmentsRequest as g_, type ShippingConfirmationEmailSent as ga, type InvoiceAdded as gb, type InvoiceSent as gc, type FulfillerEmailSent as gd, type ShippingAddressEdited as ge, type EmailEdited as gf, type PickupReadyEmailSent as gg, type OrderPartiallyPaid as gh, type OrderPending as gi, type OrderRejected as gj, type AddInternalActivityResponse as gk, type AddActivityRequest as gl, type PublicActivity as gm, type PublicActivityContentOneOf as gn, type AddActivityResponse as go, type AddActivitiesRequest as gp, type UpdateActivityRequest as gq, type UpdateActivityResponse as gr, type DeleteActivityRequest as gs, type DeleteActivityResponse as gt, type UpdateLineItemsDescriptionLinesRequest as gu, type LineItemUpdate as gv, type UpdateLineItemsDescriptionLinesResponse as gw, type MarkOrderAsSeenByHumanRequest as gx, type MarkOrderAsSeenByHumanResponse as gy, type CancelOrderRequest as gz, type OrderSearch as h, type ItemTypePresetWithLiterals as h$, type AggregateOrdersRequest as h0, type AggregateOrdersResponse as h1, type DecrementItemsQuantityRequest as h2, type DecrementData as h3, type DecrementItemsQuantityResponse as h4, type BulkUpdateOrderTagsRequest as h5, type BulkUpdateOrderTagsResult as h6, type Task as h7, type TaskKey as h8, type TaskAction as h9, type ItemizedFee as hA, type Discount as hB, type DiscountOneDiscountTypeOneOf as hC, type CalculatedTaxes as hD, type CalculatedTax as hE, type Payments as hF, type InvoicesPayment as hG, type MetaData as hH, type InvoiceDynamicPriceTotals as hI, type CustomFieldValue as hJ, type Value as hK, type Deposit as hL, type BaseEventMetadata as hM, type EventMetadata as hN, type SetOrderNumberCounterOptions as hO, type BulkDeleteImportedOrdersOptions as hP, type PaymentCollectionCreatePaymentGatewayOrderOptions as hQ, type ChargeMembershipsOptions as hR, type TriggerRefundOptions as hS, type OrderSearchSpec as hT, type CommitDeltasOptions as hU, type UpdateOrderLineItemIdentifiers as hV, type UpdateOrderLineItem as hW, type UpdateActivityIdentifiers as hX, type DeleteActivityIdentifiers as hY, type AggregateOrdersOptions as hZ, type DescriptionLineTypeWithLiterals as h_, type TaskActionActionOneOf as ha, type Complete as hb, type Cancel as hc, type Reschedule as hd, type InvoiceSentEvent as he, type IdAndVersion as hf, type InvoiceFields as hg, type Customer as hh, type Email as hi, type QuotesAddress as hj, type AddressDescription as hk, type Phone as hl, type Company as hm, type CommonAddress as hn, type CommonAddressStreetOneOf as ho, type Subdivision as hp, type StandardDetails as hq, type InvoiceDates as hr, type LineItems as hs, type LineItem as ht, type BigDecimalWrapper as hu, type LineItemTax as hv, type Source as hw, type LineItemMetaData as hx, type Locale as hy, type TotalPrice as hz, type CreateOrderOptions as i, getPaymentCollectabilityStatus as i$, type PaymentOptionTypeWithLiterals as i0, type JurisdictionTypeWithLiterals as i1, type SubscriptionFrequencyWithLiterals as i2, type AdjustmentTypeWithLiterals as i3, type TaxableAddressTypeWithLiterals as i4, type PaymentStatusWithLiterals as i5, type FulfillmentStatusWithLiterals as i6, type WeightUnitWithLiterals as i7, type VatTypeWithLiterals as i8, type PickupMethodWithLiterals as i9, type MembershipPaymentStatusWithLiterals as iA, type RefundStatusWithLiterals as iB, type VersioningModeWithLiterals as iC, type SortOrderWithLiterals as iD, type OrderApprovalStrategyWithLiterals as iE, type DeltaPaymentOptionTypeWithLiterals as iF, type InventoryActionWithLiterals as iG, type PlacementWithLiterals as iH, type SubdivisionTypeWithLiterals as iI, type SourceTypeWithLiterals as iJ, type CustomFieldGroupWithLiterals as iK, type ValueTypeWithLiterals as iL, type DepositTypeWithLiterals as iM, type InvoiceStatusWithLiterals as iN, type RecordManuallyCollectedPaymentApplicationErrors as iO, type PaymentCollectionMarkOrderAsPaidApplicationErrors as iP, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as iQ, type TriggerRefundApplicationErrors as iR, type CommitDeltasApplicationErrors as iS, type UpdateOrderStatusApplicationErrors as iT, type CommonSearchWithEntityContext as iU, onOrderApproved as iV, onOrderUpdated as iW, onOrderCanceled as iX, onOrderCreated as iY, onOrderPaymentStatusUpdated as iZ, preparePaymentCollection as i_, type OrderStatusWithLiterals as ia, type DiscountTypeWithLiterals as ib, type DiscountReasonWithLiterals as ic, type LineItemQuantityChangeTypeWithLiterals as id, type ActivityTypeWithLiterals as ie, type OrderActivityTypeEnumActivityTypeWithLiterals as ig, type AttributionSourceWithLiterals as ih, type ChannelTypeWithLiterals as ii, type OrderActionTypeWithLiterals as ij, type WebhookIdentityTypeWithLiterals as ik, type PreviewEmailTypeWithLiterals as il, type ScheduledActionWithLiterals as im, type DurationUnitWithLiterals as io, type PaymentCollectabilityStatusWithLiterals as ip, type RefundableStatusWithLiterals as iq, type NonRefundableReasonWithLiterals as ir, type ManuallyRefundableReasonWithLiterals as is, type RestockTypeWithLiterals as it, type TransactionStatusWithLiterals as iu, type AuthorizationCaptureStatusWithLiterals as iv, type AuthorizationVoidStatusWithLiterals as iw, type ReasonWithLiterals as ix, type ActionTypeWithLiterals as iy, type ChargebackStatusWithLiterals as iz, type CreateOrderApplicationErrors as j, voidAuthorizedPayments as j0, captureAuthorizedPayments as j1, getOrder as j2, createOrder as j3, updateOrder as j4, bulkUpdateOrders as j5, addActivities as j6, cancelOrder as j7, bulkUpdateOrderTags as j8, type UpdateOrderApplicationErrors as k, 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 OrderUpdatedEnvelope as t, type OrderCanceledEnvelope as u, type OrderCreatedEnvelope as v, type OrderPaymentStatusUpdatedEnvelope as w, PaymentOptionType as x, SubscriptionFrequency as y, AdjustmentType as z };
7726
+ export { OrderActionType as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PaymentStatus as E, FulfillmentStatus as F, type GetPaymentCollectabilityStatusResponse as G, VatType as H, ItemTypePreset as I, JurisdictionType as J, PickupMethod as K, OrderStatus as L, type MaskedOrder as M, DiscountType as N, type Order as O, type Price as P, DiscountReason as Q, LineItemQuantityChangeType as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, ActivityType as X, OrderActivityTypeEnumActivityType as Y, AttributionSource as Z, ChannelType as _, type PreparePaymentCollectionOptions as a, type CurrencyConversionDetails as a$, WebhookIdentityType as a0, PreviewEmailType as a1, ScheduledAction as a2, DurationUnit as a3, PaymentCollectabilityStatus as a4, RefundableStatus as a5, NonRefundableReason as a6, ManuallyRefundableReason as a7, RestockType as a8, TransactionStatus as a9, type PlainTextValue as aA, type Color as aB, type FocalPoint as aC, type PhysicalProperties as aD, type ItemType as aE, type ItemTypeItemTypeDataOneOf as aF, type ItemTaxFullDetails as aG, type LineItemTaxInfo as aH, type LineItemTaxBreakdown as aI, type DigitalFile as aJ, type SubscriptionInfo as aK, type SubscriptionTitle as aL, type SubscriptionDescription as aM, type SubscriptionSettings as aN, type FreeTrialPeriod as aO, type BillingAdjustment as aP, type BillingAdjustmentPriceSummary as aQ, type PriceDescription as aR, type LocationAndQuantity as aS, type TaxableAddress as aT, type TaxableAddressTaxableAddressDataOneOf as aU, type ExtendedFields as aV, type ModifierGroup as aW, type TranslatableString as aX, type ItemModifier as aY, type BuyerInfo as aZ, type BuyerInfoIdOneOf as a_, AuthorizationCaptureStatus as aa, AuthorizationVoidStatus as ab, Reason as ac, ActionType as ad, ChargebackStatus as ae, MembershipPaymentStatus as af, RefundStatus as ag, VersioningMode as ah, SortOrder as ai, OrderApprovalStrategy as aj, DeltaPaymentOptionType as ak, InventoryAction as al, Placement as am, SubdivisionType as an, SourceType as ao, CustomFieldGroup as ap, ValueType as aq, DepositType as ar, InvoiceStatus as as, type OrderLineItem as at, type ProductName as au, type CatalogReference as av, type DescriptionLine as aw, type DescriptionLineValueOneOf as ax, type DescriptionLineDescriptionLineValueOneOf as ay, type DescriptionLineName as az, type PreparePaymentCollectionResponse as b, type RefundedAsStoreCredit as b$, type PriceSummary as b0, type AddressWithContact as b1, type Address as b2, type StreetAddress as b3, type AddressLocation as b4, type FullAddressContactDetails as b5, type VatId as b6, type V1ShippingInformation as b7, type DeliveryLogistics as b8, type DeliveryLogisticsAddressOneOf as b9, type OrderChangeValueOneOf as bA, type LineItemChanges as bB, type LineItemQuantityChange as bC, type LineItemPriceChange as bD, type LineItemProductNameChange as bE, type LineItemDescriptionLineChange as bF, type LineItemModifiersChange as bG, type ManagedLineItem as bH, type ManagedDiscount as bI, type TranslatedValue as bJ, type LineItemAmount as bK, type ManagedAdditionalFee as bL, type TotalPriceChange as bM, type ShippingInformationChange as bN, type ShippingInformation as bO, type SavedPaymentMethod as bP, type AuthorizedPaymentCreated as bQ, type AuthorizedPaymentCaptured as bR, type AuthorizedPaymentVoided as bS, type RefundInitiated as bT, type RefundedPayment as bU, type RefundedPaymentKindOneOf as bV, type RegularPaymentRefund as bW, type GiftCardPaymentRefund as bX, type MembershipPaymentRefund as bY, type PaymentRefunded as bZ, type PaymentRefundFailed as b_, type PickupDetails as ba, type PickupAddress as bb, type DeliveryTimeSlot as bc, type ShippingPrice as bd, type ShippingRegion as be, type TaxSummary as bf, type OrderTaxInfo as bg, type OrderTaxBreakdown as bh, type AppliedDiscount as bi, type AppliedDiscountDiscountSourceOneOf as bj, type Coupon as bk, type MerchantDiscount as bl, type MerchantDiscountMerchantDiscountReasonOneOf as bm, type DiscountRule as bn, type DiscountRuleName as bo, type LineItemDiscount as bp, type Activity as bq, type ActivityContentOneOf as br, type CustomActivity as bs, type MerchantComment as bt, type OrderRefunded as bu, type OrderCreatedFromExchange as bv, type NewExchangeOrderCreated as bw, type LineItemExchangeData as bx, type DraftOrderChangesApplied as by, type OrderChange as bz, type PreparePaymentCollectionApplicationErrors as c, type BulkSendBuyerPickupConfirmationEmailsResponse as c$, type PaymentPending as c0, type PaymentPendingPaymentDetailsOneOf as c1, type RegularPayment as c2, type RegularPaymentPaymentMethodDetailsOneOf as c3, type CreditCardDetails as c4, type PaymentCanceled as c5, type PaymentCanceledPaymentDetailsOneOf as c6, type PaymentDeclined as c7, type PaymentDeclinedPaymentDetailsOneOf as c8, type ReceiptCreated as c9, type OrderItemsRestocked as cA, type V1RestockItem as cB, type OrderImported as cC, type ImportedOrderDeleted as cD, type ImportOrderRequest as cE, type ImportOrderResponse as cF, type SetOrderNumberCounterRequest as cG, type SetOrderNumberCounterResponse as cH, type BulkDeleteImportedOrdersRequest as cI, type BulkDeleteImportedOrdersResponse as cJ, type DomainEvent as cK, type DomainEventBodyOneOf as cL, type EntityCreatedEvent as cM, type RestoreInfo as cN, type EntityUpdatedEvent as cO, type EntityDeletedEvent as cP, type ActionEvent as cQ, type MessageEnvelope as cR, type IdentificationData as cS, type IdentificationDataIdOneOf as cT, type SendBuyerConfirmationEmailRequest as cU, type SendBuyerConfirmationEmailResponse as cV, type SendBuyerPaymentsReceivedEmailRequest as cW, type SendBuyerPaymentsReceivedEmailResponse as cX, type SendBuyerPickupConfirmationEmailRequest as cY, type SendBuyerPickupConfirmationEmailResponse as cZ, type BulkSendBuyerPickupConfirmationEmailsRequest as c_, type ReceiptCreatedReceiptInfoOneOf as ca, type WixReceipt as cb, type ExternalReceipt as cc, type ReceiptSent as cd, type ReceiptSentReceiptInfoOneOf as ce, type ChargebackCreated as cf, type ChargebackReversed as cg, type CreatedBy as ch, type CreatedByStringOneOf as ci, type ChannelInfo as cj, type CustomField as ck, type BalanceSummary as cl, type Balance as cm, type AdditionalFee as cn, type FulfillmentStatusesAggregate as co, type Tags as cp, type TagList as cq, type Location as cr, type OrderSettings as cs, type OrderSettingsAllowedActionsOneOf as ct, type CustomAllowedActions as cu, type FormInfo as cv, type FormIdentifier as cw, type OrderApproved as cx, type OrdersExperiments as cy, type OrderRejectedEventOrderRejected as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type ChargeMembershipsResponse as d$, type SendBuyerShippingConfirmationEmailRequest as d0, type SendBuyerShippingConfirmationEmailResponse as d1, type BulkSendBuyerShippingConfirmationEmailsRequest as d2, type BulkSendBuyerShippingConfirmationEmailsResponse as d3, type SendMerchantOrderReceivedNotificationRequest as d4, type SendMerchantOrderReceivedNotificationResponse as d5, type SendCancelRefundEmailRequest as d6, type SendCancelRefundEmailResponse as d7, type SendRefundEmailRequest as d8, type SendRefundEmailResponse as d9, type Empty as dA, type PreparePaymentCollectionRequest as dB, type RedirectUrls as dC, type DelayedCaptureSettings as dD, type Duration as dE, type GetPaymentCollectabilityStatusRequest as dF, type RecordManuallyCollectedPaymentRequest as dG, type RecordManuallyCollectedPaymentResponse as dH, type MarkOrderAsPaidRequest as dI, type MarkOrderAsPaidResponse as dJ, type BulkMarkOrdersAsPaidRequest as dK, type BulkMarkOrdersAsPaidResponse as dL, type BulkOrderResult as dM, type ItemMetadata as dN, type ApplicationError as dO, type BulkActionMetadata as dP, type GetRefundabilityStatusRequest as dQ, type GetRefundabilityStatusResponse as dR, type Refundability as dS, type RefundabilityAdditionalRefundabilityInfoOneOf as dT, type CreatePaymentGatewayOrderRequest as dU, type ChargedBy as dV, type CreatePaymentGatewayOrderResponse as dW, type ChargeMembershipsRequest as dX, type MembershipChargeItem as dY, type MembershipName as dZ, type ServiceProperties as d_, type SendMerchantOrderReceivedPushRequest as da, type SendMerchantOrderReceivedPushResponse as db, type PreviewEmailByTypeRequest as dc, type PreviewEmailByTypeResponse as dd, type PreviewRefundEmailRequest as de, type RefundDetails as df, type RefundItem as dg, type LineItemRefund as dh, type AdditionalFeeRefund as di, type ShippingRefund as dj, type PreviewRefundEmailResponse as dk, type PreviewCancelEmailRequest as dl, type PreviewCancelEmailResponse as dm, type PreviewCancelRefundEmailRequest as dn, type PreviewCancelRefundEmailResponse as dp, type PreviewBuyerPaymentsReceivedEmailRequest as dq, type PreviewBuyerPaymentsReceivedEmailResponse as dr, type PreviewBuyerConfirmationEmailRequest as ds, type PreviewBuyerConfirmationEmailResponse as dt, type PreviewBuyerPickupConfirmationEmailRequest as du, type PreviewBuyerPickupConfirmationEmailResponse as dv, type PreviewShippingConfirmationEmailRequest as dw, type PreviewShippingConfirmationEmailResponse as dx, type PreviewResendDownloadLinksEmailRequest as dy, type PreviewResendDownloadLinksEmailResponse as dz, type PaymentCapture as e, type PlatformPagingMetadata as e$, type TriggerRefundRequest as e0, type PaymentRefund as e1, type RefundSideEffects as e2, type RestockInfo as e3, type RestockItem as e4, type TriggerRefundResponse as e5, type OrderTransactions as e6, type Payment as e7, type PaymentPaymentDetailsOneOf as e8, type PaymentReceiptInfoOneOf as e9, type ChargeSavedPaymentMethodResponse as eA, type UpdateInternalDocumentsEvent as eB, type UpdateInternalDocumentsEventOperationOneOf as eC, type InternalDocument as eD, type InternalDocumentUpdateOperation as eE, type DeleteByIdsOperation as eF, type DeleteByFilterOperation as eG, type InternalDocumentUpdateByFilterOperation as eH, type InternalUpdateExistingOperation as eI, type VersionedDocumentUpdateOperation as eJ, type VersionedDeleteByIdsOperation as eK, type VersionedDocumentId as eL, type TriggerReindexRequest as eM, type TriggerReindexResponse as eN, type BatchOfTriggerReindexOrderRequest as eO, type TriggerReindexOrderRequest as eP, type DiffmatokyPayload as eQ, type ErrorInformation as eR, type GetOrderRequest as eS, type GetOrderResponse as eT, type InternalQueryOrdersRequest as eU, type PlatformQuery as eV, type PlatformQueryPagingMethodOneOf as eW, type Sorting as eX, type PlatformPaging as eY, type CursorPaging as eZ, type InternalQueryOrdersResponse as e_, type RegularPaymentDetails as ea, type RegularPaymentDetailsPaymentMethodDetailsOneOf as eb, type CreditCardPaymentMethodDetails as ec, type AuthorizationDetails as ed, type AuthorizationCapture as ee, type AuthorizationActionFailureDetails as ef, type AuthorizationVoid as eg, type V1ScheduledAction as eh, type Chargeback as ei, type GiftCardPaymentDetails as ej, type MembershipPaymentDetails as ek, type WixReceiptInfo as el, type ExternalReceiptInfo as em, type Refund as en, type RefundTransaction as eo, type RefundStatusInfo as ep, type AggregatedRefundSummary as eq, type RefundItemsBreakdown as er, type LineItemRefundSummary as es, type CalculateRefundRequest as et, type CalculateRefundItemRequest as eu, type CalculateRefundResponse as ev, type CalculateRefundItemResponse as ew, type VoidAuthorizedPaymentsRequest as ex, type CaptureAuthorizedPaymentsRequest as ey, type ChargeSavedPaymentMethodRequest as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type InternalActivity as f$, type Cursors as f0, type QueryOrderRequest as f1, type QueryOrderResponse as f2, type SearchOrdersRequest as f3, type CursorSearch as f4, type CursorSearchPagingMethodOneOf as f5, type CursorPagingMetadata as f6, type CreateOrderRequest as f7, type OrderCreationSettings as f8, type OrderCreateNotifications as f9, type ArchiveOrderRequest as fA, type ArchiveOrderResponse as fB, type BulkArchiveOrdersRequest as fC, type BulkArchiveOrdersResponse as fD, type BulkArchiveOrdersByFilterRequest as fE, type BulkArchiveOrdersByFilterResponse as fF, type UnArchiveOrderRequest as fG, type UnArchiveOrderResponse as fH, type BulkUnArchiveOrdersRequest as fI, type BulkUnArchiveOrdersResponse as fJ, type BulkUnArchiveOrdersByFilterRequest as fK, type BulkUnArchiveOrdersByFilterResponse as fL, type UpdateBuyerInfoRequest as fM, type BuyerInfoUpdate as fN, type UpdateBuyerInfoResponse as fO, type UpdateBuyerEmailRequest as fP, type UpdateBuyerEmailResponse as fQ, type UpdateOrderShippingAddressRequest as fR, type UpdateOrderShippingAddressResponse as fS, type UpdateBillingContactDetailsRequest as fT, type UpdateBillingContactDetailsResponse as fU, type UpdateOrderLineItemRequest as fV, type UpdateOrderLineItemResponse as fW, type UpdateOrderLineItemsRequest as fX, type MaskedOrderLineItem as fY, type UpdateOrderLineItemsResponse as fZ, type AddInternalActivityRequest as f_, type CreateOrderResponse as fa, type UpdateOrderRequest as fb, type UpdateOrderResponse as fc, type BulkUpdateOrdersRequest as fd, type CommitDeltasRequest as fe, type DraftOrderDiffs as ff, type DraftOrderDiffsShippingUpdateInfoOneOf as fg, type DraftOrderDiffsBuyerUpdateInfoOneOf as fh, type DraftOrderDiffsBillingUpdateInfoOneOf as fi, type DraftOrderDiffsRecipientUpdateInfoOneOf as fj, type V1LineItemDelta as fk, type V1LineItemDeltaDeltaOneOf as fl, type OrderLineItemChangedDetails as fm, type ItemChangedDetails as fn, type AppliedDiscountDelta as fo, type AppliedDiscountDeltaDeltaOneOf as fp, type AdditionalFeeDelta as fq, type AdditionalFeeDeltaDeltaOneOf as fr, type DraftOrderCommitSettings as fs, type InventoryUpdateDetails as ft, type CommitDeltasResponse as fu, type OrderDeltasCommitted as fv, type CommittedDiffs as fw, type CommittedDiffsShippingUpdateInfoOneOf as fx, type LineItemDelta as fy, type LineItemDeltaDeltaOneOf as fz, type GetOrderApplicationErrors as g, type GetShipmentsResponse as g$, type InternalActivityContentOneOf as g0, type OrderPlaced as g1, type OrderPaid as g2, type OrderFulfilled as g3, type OrderNotFulfilled as g4, type OrderCanceled as g5, type DownloadLinkSent as g6, type TrackingNumberAdded as g7, type TrackingNumberEdited as g8, type TrackingLinkAdded as g9, type OrderCanceledEventOrderCanceled as gA, type UpdateOrderStatusRequest as gB, type UpdateOrderStatusResponse as gC, type MarkAsFulfilledRequest as gD, type MarkAsFulfilledResponse as gE, type FulfillmentStatusUpdated as gF, type BulkMarkAsFulfilledRequest as gG, type BulkMarkAsFulfilledResponse as gH, type BulkMarkAsFulfilledByFilterRequest as gI, type BulkMarkAsFulfilledByFilterResponse as gJ, type MarkAsUnfulfilledRequest as gK, type MarkAsUnfulfilledResponse as gL, type BulkMarkAsUnfulfilledRequest as gM, type BulkMarkAsUnfulfilledResponse as gN, type BulkMarkAsUnfulfilledByFilterRequest as gO, type BulkMarkAsUnfulfilledByFilterResponse as gP, type BulkSetBusinessLocationRequest as gQ, type BulkSetBusinessLocationResponse as gR, type BulkSetBusinessLocationResult as gS, type V1MarkOrderAsPaidRequest as gT, type V1MarkOrderAsPaidResponse as gU, type PaymentStatusUpdated as gV, type V1BulkMarkOrdersAsPaidRequest as gW, type V1BulkMarkOrdersAsPaidResponse as gX, type V1CreatePaymentGatewayOrderRequest as gY, type V1CreatePaymentGatewayOrderResponse as gZ, type GetShipmentsRequest as g_, type ShippingConfirmationEmailSent as ga, type InvoiceAdded as gb, type InvoiceSent as gc, type FulfillerEmailSent as gd, type ShippingAddressEdited as ge, type EmailEdited as gf, type PickupReadyEmailSent as gg, type OrderPartiallyPaid as gh, type OrderPending as gi, type OrderRejected as gj, type AddInternalActivityResponse as gk, type AddActivityRequest as gl, type PublicActivity as gm, type PublicActivityContentOneOf as gn, type AddActivityResponse as go, type AddActivitiesRequest as gp, type UpdateActivityRequest as gq, type UpdateActivityResponse as gr, type DeleteActivityRequest as gs, type DeleteActivityResponse as gt, type UpdateLineItemsDescriptionLinesRequest as gu, type LineItemUpdate as gv, type UpdateLineItemsDescriptionLinesResponse as gw, type MarkOrderAsSeenByHumanRequest as gx, type MarkOrderAsSeenByHumanResponse as gy, type CancelOrderRequest as gz, type OrderSearch as h, type PaymentOptionTypeWithLiterals as h$, type AggregateOrdersRequest as h0, type AggregateOrdersResponse as h1, type DecrementItemsQuantityRequest as h2, type DecrementData as h3, type DecrementItemsQuantityResponse as h4, type BulkUpdateOrderTagsRequest as h5, type BulkUpdateOrderTagsResult as h6, type Task as h7, type TaskKey as h8, type TaskAction as h9, type ItemizedFee as hA, type Discount as hB, type DiscountOneDiscountTypeOneOf as hC, type CalculatedTaxes as hD, type CalculatedTax as hE, type Payments as hF, type InvoicesPayment as hG, type MetaData as hH, type InvoiceDynamicPriceTotals as hI, type CustomFieldValue as hJ, type Value as hK, type Deposit as hL, type BaseEventMetadata as hM, type EventMetadata as hN, type SetOrderNumberCounterOptions as hO, type BulkDeleteImportedOrdersOptions as hP, type PaymentCollectionCreatePaymentGatewayOrderOptions as hQ, type ChargeMembershipsOptions as hR, type TriggerRefundOptions as hS, type OrderSearchSpec as hT, type UpdateOrderLineItemIdentifiers as hU, type UpdateOrderLineItem as hV, type UpdateActivityIdentifiers as hW, type DeleteActivityIdentifiers as hX, type AggregateOrdersOptions as hY, type DescriptionLineTypeWithLiterals as hZ, type ItemTypePresetWithLiterals as h_, type TaskActionActionOneOf as ha, type Complete as hb, type Cancel as hc, type Reschedule as hd, type InvoiceSentEvent as he, type IdAndVersion as hf, type InvoiceFields as hg, type Customer as hh, type Email as hi, type QuotesAddress as hj, type AddressDescription as hk, type Phone as hl, type Company as hm, type CommonAddress as hn, type CommonAddressStreetOneOf as ho, type Subdivision as hp, type StandardDetails as hq, type InvoiceDates as hr, type LineItems as hs, type LineItem as ht, type BigDecimalWrapper as hu, type LineItemTax as hv, type Source as hw, type LineItemMetaData as hx, type Locale as hy, type TotalPrice as hz, type CreateOrderOptions as i, captureAuthorizedPayments as i$, type JurisdictionTypeWithLiterals as i0, type SubscriptionFrequencyWithLiterals as i1, type AdjustmentTypeWithLiterals as i2, type TaxableAddressTypeWithLiterals as i3, type PaymentStatusWithLiterals as i4, type FulfillmentStatusWithLiterals as i5, type WeightUnitWithLiterals as i6, type VatTypeWithLiterals as i7, type PickupMethodWithLiterals as i8, type OrderStatusWithLiterals as i9, type RefundStatusWithLiterals as iA, type VersioningModeWithLiterals as iB, type SortOrderWithLiterals as iC, type OrderApprovalStrategyWithLiterals as iD, type DeltaPaymentOptionTypeWithLiterals as iE, type InventoryActionWithLiterals as iF, type PlacementWithLiterals as iG, type SubdivisionTypeWithLiterals as iH, type SourceTypeWithLiterals as iI, type CustomFieldGroupWithLiterals as iJ, type ValueTypeWithLiterals as iK, type DepositTypeWithLiterals as iL, type InvoiceStatusWithLiterals as iM, type RecordManuallyCollectedPaymentApplicationErrors as iN, type PaymentCollectionMarkOrderAsPaidApplicationErrors as iO, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as iP, type TriggerRefundApplicationErrors as iQ, type UpdateOrderStatusApplicationErrors as iR, type CommonSearchWithEntityContext as iS, onOrderApproved as iT, onOrderUpdated as iU, onOrderCanceled as iV, onOrderCreated as iW, onOrderPaymentStatusUpdated as iX, preparePaymentCollection as iY, getPaymentCollectabilityStatus as iZ, voidAuthorizedPayments as i_, type DiscountTypeWithLiterals as ia, type DiscountReasonWithLiterals as ib, type LineItemQuantityChangeTypeWithLiterals as ic, type ActivityTypeWithLiterals as id, type OrderActivityTypeEnumActivityTypeWithLiterals as ie, type AttributionSourceWithLiterals as ig, type ChannelTypeWithLiterals as ih, type OrderActionTypeWithLiterals as ii, type WebhookIdentityTypeWithLiterals as ij, type PreviewEmailTypeWithLiterals as ik, type ScheduledActionWithLiterals as il, type DurationUnitWithLiterals as im, type PaymentCollectabilityStatusWithLiterals as io, type RefundableStatusWithLiterals as ip, type NonRefundableReasonWithLiterals as iq, type ManuallyRefundableReasonWithLiterals as ir, type RestockTypeWithLiterals as is, type TransactionStatusWithLiterals as it, type AuthorizationCaptureStatusWithLiterals as iu, type AuthorizationVoidStatusWithLiterals as iv, type ReasonWithLiterals as iw, type ActionTypeWithLiterals as ix, type ChargebackStatusWithLiterals as iy, type MembershipPaymentStatusWithLiterals as iz, type CreateOrderApplicationErrors as j, getOrder as j0, createOrder as j1, updateOrder as j2, bulkUpdateOrders as j3, addActivities as j4, cancelOrder as j5, bulkUpdateOrderTags as j6, type UpdateOrderApplicationErrors as k, 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 OrderUpdatedEnvelope as t, type OrderCanceledEnvelope as u, type OrderCreatedEnvelope as v, type OrderPaymentStatusUpdatedEnvelope as w, PaymentOptionType as x, SubscriptionFrequency as y, AdjustmentType 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 OrderUpdatedEnvelope, u as OrderCanceledEnvelope, v as OrderCreatedEnvelope, w as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-C3ADe9Sb.mjs';
3
- export { cO as ActionEvent, ad as ActionType, iy as ActionTypeWithLiterals, bq as Activity, br as ActivityContentOneOf, X as ActivityType, ie as ActivityTypeWithLiterals, gp as AddActivitiesRequest, gl as AddActivityRequest, go as AddActivityResponse, f_ as AddInternalActivityRequest, gk as AddInternalActivityResponse, cn as AdditionalFee, fq as AdditionalFeeDelta, fr as AdditionalFeeDeltaDeltaOneOf, dg as AdditionalFeeRefund, b2 as Address, hk as AddressDescription, b4 as AddressLocation, b1 as AddressWithContact, z as AdjustmentType, i3 as AdjustmentTypeWithLiterals, hZ as AggregateOrdersOptions, h0 as AggregateOrdersRequest, h1 as AggregateOrdersResponse, eo as AggregatedRefundSummary, dM as ApplicationError, bi as AppliedDiscount, fo as AppliedDiscountDelta, fp as AppliedDiscountDeltaDeltaOneOf, bj as AppliedDiscountDiscountSourceOneOf, fA as ArchiveOrderRequest, fB as ArchiveOrderResponse, Z as AttributionSource, ih as AttributionSourceWithLiterals, ed as AuthorizationActionFailureDetails, ec as AuthorizationCapture, aa as AuthorizationCaptureStatus, iv as AuthorizationCaptureStatusWithLiterals, eb as AuthorizationDetails, ee as AuthorizationVoid, ab as AuthorizationVoidStatus, iw as AuthorizationVoidStatusWithLiterals, bR as AuthorizedPaymentCaptured, bQ as AuthorizedPaymentCreated, bS as AuthorizedPaymentVoided, cm as Balance, cl as BalanceSummary, hM as BaseEventMetadata, eM as BatchOfTriggerReindexOrderRequest, hu as BigDecimalWrapper, aP as BillingAdjustment, aQ as BillingAdjustmentPriceSummary, dN as BulkActionMetadata, fE as BulkArchiveOrdersByFilterRequest, fF as BulkArchiveOrdersByFilterResponse, fC as BulkArchiveOrdersRequest, fD as BulkArchiveOrdersResponse, hP as BulkDeleteImportedOrdersOptions, cG as BulkDeleteImportedOrdersRequest, cH as BulkDeleteImportedOrdersResponse, gI as BulkMarkAsFulfilledByFilterRequest, gJ as BulkMarkAsFulfilledByFilterResponse, gG as BulkMarkAsFulfilledRequest, gH as BulkMarkAsFulfilledResponse, gO as BulkMarkAsUnfulfilledByFilterRequest, gP as BulkMarkAsUnfulfilledByFilterResponse, gM as BulkMarkAsUnfulfilledRequest, gN as BulkMarkAsUnfulfilledResponse, dI as BulkMarkOrdersAsPaidRequest, dJ as BulkMarkOrdersAsPaidResponse, dK as BulkOrderResult, cY as BulkSendBuyerPickupConfirmationEmailsRequest, cZ as BulkSendBuyerPickupConfirmationEmailsResponse, d0 as BulkSendBuyerShippingConfirmationEmailsRequest, d1 as BulkSendBuyerShippingConfirmationEmailsResponse, gQ as BulkSetBusinessLocationRequest, gR as BulkSetBusinessLocationResponse, gS as BulkSetBusinessLocationResult, fK as BulkUnArchiveOrdersByFilterRequest, fL as BulkUnArchiveOrdersByFilterResponse, fI as BulkUnArchiveOrdersRequest, fJ as BulkUnArchiveOrdersResponse, h5 as BulkUpdateOrderTagsRequest, h6 as BulkUpdateOrderTagsResult, fd as BulkUpdateOrdersRequest, aZ as BuyerInfo, a_ as BuyerInfoIdOneOf, fN as BuyerInfoUpdate, es as CalculateRefundItemRequest, eu as CalculateRefundItemResponse, er as CalculateRefundRequest, et as CalculateRefundResponse, hE as CalculatedTax, hD as CalculatedTaxes, hc as Cancel, gz as CancelOrderRequest, ew as CaptureAuthorizedPaymentsRequest, av as CatalogReference, cj as ChannelInfo, _ as ChannelType, ii as ChannelTypeWithLiterals, hR as ChargeMembershipsOptions, dV as ChargeMembershipsRequest, dZ as ChargeMembershipsResponse, ex as ChargeSavedPaymentMethodRequest, ey as ChargeSavedPaymentMethodResponse, eg as Chargeback, cf as ChargebackCreated, cg as ChargebackReversed, ae as ChargebackStatus, iz as ChargebackStatusWithLiterals, dT as ChargedBy, aB as Color, iS as CommitDeltasApplicationErrors, hU as CommitDeltasOptions, fe as CommitDeltasRequest, fu as CommitDeltasResponse, fw as CommittedDiffs, fx as CommittedDiffsShippingUpdateInfoOneOf, hn as CommonAddress, ho as CommonAddressStreetOneOf, iU as CommonSearchWithEntityContext, hm as Company, hb as Complete, bk as Coupon, f7 as CreateOrderRequest, fa as CreateOrderResponse, dS as CreatePaymentGatewayOrderRequest, dU as CreatePaymentGatewayOrderResponse, ch as CreatedBy, ci as CreatedByStringOneOf, c4 as CreditCardDetails, ea as CreditCardPaymentMethodDetails, a$ as CurrencyConversionDetails, eZ as CursorPaging, f6 as CursorPagingMetadata, f4 as CursorSearch, f5 as CursorSearchPagingMethodOneOf, f0 as Cursors, bs as CustomActivity, cu as CustomAllowedActions, ck as CustomField, ap as CustomFieldGroup, iK as CustomFieldGroupWithLiterals, hJ as CustomFieldValue, hh as Customer, h3 as DecrementData, h2 as DecrementItemsQuantityRequest, h4 as DecrementItemsQuantityResponse, dB as DelayedCaptureSettings, hY as DeleteActivityIdentifiers, gs as DeleteActivityRequest, gt as DeleteActivityResponse, eE as DeleteByFilterOperation, eD as DeleteByIdsOperation, b8 as DeliveryLogistics, b9 as DeliveryLogisticsAddressOneOf, bc as DeliveryTimeSlot, ak as DeltaPaymentOptionType, iF as DeltaPaymentOptionTypeWithLiterals, hL as Deposit, ar as DepositType, iM as DepositTypeWithLiterals, aw as DescriptionLine, ay as DescriptionLineDescriptionLineValueOneOf, az as DescriptionLineName, D as DescriptionLineType, h_ as DescriptionLineTypeWithLiterals, ax as DescriptionLineValueOneOf, eQ as DiffmatokyPayload, aJ as DigitalFile, hB as Discount, hC as DiscountOneDiscountTypeOneOf, Q as DiscountReason, ic as DiscountReasonWithLiterals, bn as DiscountRule, bo as DiscountRuleName, N as DiscountType, ib as DiscountTypeWithLiterals, cI as DomainEvent, cJ as DomainEventBodyOneOf, g6 as DownloadLinkSent, by as DraftOrderChangesApplied, fs as DraftOrderCommitSettings, ff as DraftOrderDiffs, fi as DraftOrderDiffsBillingUpdateInfoOneOf, fh as DraftOrderDiffsBuyerUpdateInfoOneOf, fj as DraftOrderDiffsRecipientUpdateInfoOneOf, fg as DraftOrderDiffsShippingUpdateInfoOneOf, dC as Duration, a3 as DurationUnit, io as DurationUnitWithLiterals, hi as Email, gf as EmailEdited, dy as Empty, cK as EntityCreatedEvent, cN as EntityDeletedEvent, cM as EntityUpdatedEvent, eR as ErrorInformation, hN as EventMetadata, aV as ExtendedFields, cc as ExternalReceipt, ek as ExternalReceiptInfo, aC as FocalPoint, eP as FormIdentifier, eO as FormInfo, aO as FreeTrialPeriod, gd as FulfillerEmailSent, F as FulfillmentStatus, gF as FulfillmentStatusUpdated, i6 as FulfillmentStatusWithLiterals, co as FulfillmentStatusesAggregate, b5 as FullAddressContactDetails, eS as GetOrderRequest, eT as GetOrderResponse, dD as GetPaymentCollectabilityStatusRequest, dO as GetRefundabilityStatusRequest, dP as GetRefundabilityStatusResponse, g_ as GetShipmentsRequest, g$ as GetShipmentsResponse, eh as GiftCardPaymentDetails, bX as GiftCardPaymentRefund, hf as IdAndVersion, cQ as IdentificationData, cR as IdentificationDataIdOneOf, cC as ImportOrderRequest, cD as ImportOrderResponse, cB as ImportedOrderDeleted, f$ as InternalActivity, g0 as InternalActivityContentOneOf, eB as InternalDocument, eF as InternalDocumentUpdateByFilterOperation, eC as InternalDocumentUpdateOperation, eU as InternalQueryOrdersRequest, e_ as InternalQueryOrdersResponse, eG as InternalUpdateExistingOperation, al as InventoryAction, iG as InventoryActionWithLiterals, ft as InventoryUpdateDetails, gb as InvoiceAdded, hr as InvoiceDates, hI as InvoiceDynamicPriceTotals, hg as InvoiceFields, gc as InvoiceSent, he as InvoiceSentEvent, as as InvoiceStatus, iN as InvoiceStatusWithLiterals, hG as InvoicesPayment, fn as ItemChangedDetails, dL as ItemMetadata, aY as ItemModifier, aG as ItemTaxFullDetails, aE as ItemType, aF as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, h$ as ItemTypePresetWithLiterals, hA as ItemizedFee, J as JurisdictionType, i1 as JurisdictionTypeWithLiterals, ht as LineItem, bK as LineItemAmount, bB as LineItemChanges, fy as LineItemDelta, fz as LineItemDeltaDeltaOneOf, bF as LineItemDescriptionLineChange, bp as LineItemDiscount, bx as LineItemExchangeData, hx as LineItemMetaData, bG as LineItemModifiersChange, bD as LineItemPriceChange, bE as LineItemProductNameChange, bC as LineItemQuantityChange, R as LineItemQuantityChangeType, id as LineItemQuantityChangeTypeWithLiterals, df as LineItemRefund, eq as LineItemRefundSummary, hv as LineItemTax, aI as LineItemTaxBreakdown, aH as LineItemTaxInfo, gv as LineItemUpdate, hs as LineItems, hy as Locale, cr as Location, aS as LocationAndQuantity, bL as ManagedAdditionalFee, bI as ManagedDiscount, bH as ManagedLineItem, a7 as ManuallyRefundableReason, is as ManuallyRefundableReasonWithLiterals, gD as MarkAsFulfilledRequest, gE as MarkAsFulfilledResponse, gK as MarkAsUnfulfilledRequest, gL as MarkAsUnfulfilledResponse, dG as MarkOrderAsPaidRequest, dH as MarkOrderAsPaidResponse, gx as MarkOrderAsSeenByHumanRequest, gy as MarkOrderAsSeenByHumanResponse, fY as MaskedOrderLineItem, dW as MembershipChargeItem, dX as MembershipName, ei as MembershipPaymentDetails, bY as MembershipPaymentRefund, af as MembershipPaymentStatus, iA as MembershipPaymentStatusWithLiterals, bt as MerchantComment, bl as MerchantDiscount, bm as MerchantDiscountMerchantDiscountReasonOneOf, cP as MessageEnvelope, hH as MetaData, aW as ModifierGroup, bw as NewExchangeOrderCreated, a6 as NonRefundableReason, ir as NonRefundableReasonWithLiterals, $ as OrderActionType, ij as OrderActionTypeWithLiterals, Y as OrderActivityTypeEnumActivityType, ig as OrderActivityTypeEnumActivityTypeWithLiterals, aj as OrderApprovalStrategy, iE as OrderApprovalStrategyWithLiterals, cv as OrderApproved, g5 as OrderCanceled, gA as OrderCanceledEventOrderCanceled, bz as OrderChange, bA as OrderChangeValueOneOf, f9 as OrderCreateNotifications, bv as OrderCreatedFromExchange, f8 as OrderCreationSettings, fv as OrderDeltasCommitted, g3 as OrderFulfilled, cA as OrderImported, cy as OrderItemsRestocked, at as OrderLineItem, fm as OrderLineItemChangedDetails, g4 as OrderNotFulfilled, g2 as OrderPaid, gh as OrderPartiallyPaid, gi as OrderPending, g1 as OrderPlaced, bu as OrderRefunded, gj as OrderRejected, cx as OrderRejectedEventOrderRejected, hT as OrderSearchSpec, cs as OrderSettings, ct as OrderSettingsAllowedActionsOneOf, L as OrderStatus, ia as OrderStatusWithLiterals, bh as OrderTaxBreakdown, bg as OrderTaxInfo, e4 as OrderTransactions, cw as OrdersExperiments, e5 as Payment, c5 as PaymentCanceled, c6 as PaymentCanceledPaymentDetailsOneOf, a4 as PaymentCollectabilityStatus, ip as PaymentCollectabilityStatusWithLiterals, iQ as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, hQ as PaymentCollectionCreatePaymentGatewayOrderOptions, iP as PaymentCollectionMarkOrderAsPaidApplicationErrors, c7 as PaymentDeclined, c8 as PaymentDeclinedPaymentDetailsOneOf, x as PaymentOptionType, i0 as PaymentOptionTypeWithLiterals, e6 as PaymentPaymentDetailsOneOf, c0 as PaymentPending, c1 as PaymentPendingPaymentDetailsOneOf, e7 as PaymentReceiptInfoOneOf, d$ as PaymentRefund, b_ as PaymentRefundFailed, bZ as PaymentRefunded, E as PaymentStatus, gV as PaymentStatusUpdated, i5 as PaymentStatusWithLiterals, hF as Payments, hl as Phone, aD as PhysicalProperties, bb as PickupAddress, ba as PickupDetails, K as PickupMethod, i9 as PickupMethodWithLiterals, gg as PickupReadyEmailSent, am as Placement, iH as PlacementWithLiterals, aA as PlainTextValue, eY as PlatformPaging, e$ as PlatformPagingMetadata, eV as PlatformQuery, eW as PlatformQueryPagingMethodOneOf, dz as PreparePaymentCollectionRequest, dq as PreviewBuyerConfirmationEmailRequest, dr as PreviewBuyerConfirmationEmailResponse, dn as PreviewBuyerPaymentsReceivedEmailRequest, dp as PreviewBuyerPaymentsReceivedEmailResponse, ds as PreviewBuyerPickupConfirmationEmailRequest, dt as PreviewBuyerPickupConfirmationEmailResponse, dj as PreviewCancelEmailRequest, dk as PreviewCancelEmailResponse, dl as PreviewCancelRefundEmailRequest, dm as PreviewCancelRefundEmailResponse, da as PreviewEmailByTypeRequest, db as PreviewEmailByTypeResponse, a1 as PreviewEmailType, il as PreviewEmailTypeWithLiterals, dc as PreviewRefundEmailRequest, di as PreviewRefundEmailResponse, dw as PreviewResendDownloadLinksEmailRequest, dx as PreviewResendDownloadLinksEmailResponse, du as PreviewShippingConfirmationEmailRequest, dv as PreviewShippingConfirmationEmailResponse, aR as PriceDescription, b0 as PriceSummary, au as ProductName, gm as PublicActivity, gn as PublicActivityContentOneOf, f1 as QueryOrderRequest, f2 as QueryOrderResponse, hj as QuotesAddress, ac as Reason, ix as ReasonWithLiterals, c9 as ReceiptCreated, ca as ReceiptCreatedReceiptInfoOneOf, cd as ReceiptSent, ce as ReceiptSentReceiptInfoOneOf, iO as RecordManuallyCollectedPaymentApplicationErrors, dE as RecordManuallyCollectedPaymentRequest, dF as RecordManuallyCollectedPaymentResponse, dA as RedirectUrls, el as Refund, dd as RefundDetails, bT as RefundInitiated, de as RefundItem, ep as RefundItemsBreakdown, e0 as RefundSideEffects, ag as RefundStatus, en as RefundStatusInfo, iB as RefundStatusWithLiterals, em as RefundTransaction, dQ as Refundability, dR as RefundabilityAdditionalRefundabilityInfoOneOf, a5 as RefundableStatus, iq as RefundableStatusWithLiterals, b$ as RefundedAsStoreCredit, bU as RefundedPayment, bV as RefundedPaymentKindOneOf, c2 as RegularPayment, e8 as RegularPaymentDetails, e9 as RegularPaymentDetailsPaymentMethodDetailsOneOf, c3 as RegularPaymentPaymentMethodDetailsOneOf, bW as RegularPaymentRefund, hd as Reschedule, e1 as RestockInfo, e2 as RestockItem, a8 as RestockType, it as RestockTypeWithLiterals, cL as RestoreInfo, bP as SavedPaymentMethod, a2 as ScheduledAction, im as ScheduledActionWithLiterals, f3 as SearchOrdersRequest, cS as SendBuyerConfirmationEmailRequest, cT as SendBuyerConfirmationEmailResponse, cU as SendBuyerPaymentsReceivedEmailRequest, cV as SendBuyerPaymentsReceivedEmailResponse, cW as SendBuyerPickupConfirmationEmailRequest, cX as SendBuyerPickupConfirmationEmailResponse, c_ as SendBuyerShippingConfirmationEmailRequest, c$ as SendBuyerShippingConfirmationEmailResponse, d4 as SendCancelRefundEmailRequest, d5 as SendCancelRefundEmailResponse, d2 as SendMerchantOrderReceivedNotificationRequest, d3 as SendMerchantOrderReceivedNotificationResponse, d8 as SendMerchantOrderReceivedPushRequest, d9 as SendMerchantOrderReceivedPushResponse, d6 as SendRefundEmailRequest, d7 as SendRefundEmailResponse, dY as ServiceProperties, hO as SetOrderNumberCounterOptions, cE as SetOrderNumberCounterRequest, cF as SetOrderNumberCounterResponse, ge as ShippingAddressEdited, ga as ShippingConfirmationEmailSent, bO as ShippingInformation, bN as ShippingInformationChange, bd as ShippingPrice, dh as ShippingRefund, be as ShippingRegion, ai as SortOrder, iD as SortOrderWithLiterals, eX as Sorting, hw as Source, ao as SourceType, iJ as SourceTypeWithLiterals, hq as StandardDetails, b3 as StreetAddress, hp as Subdivision, an as SubdivisionType, iI as SubdivisionTypeWithLiterals, aM as SubscriptionDescription, y as SubscriptionFrequency, i2 as SubscriptionFrequencyWithLiterals, aK as SubscriptionInfo, aN as SubscriptionSettings, aL as SubscriptionTitle, cq as TagList, cp as Tags, h7 as Task, h9 as TaskAction, ha as TaskActionActionOneOf, h8 as TaskKey, bf as TaxSummary, aT as TaxableAddress, aU as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, i4 as TaxableAddressTypeWithLiterals, hz as TotalPrice, bM as TotalPriceChange, g9 as TrackingLinkAdded, g7 as TrackingNumberAdded, g8 as TrackingNumberEdited, a9 as TransactionStatus, iu as TransactionStatusWithLiterals, aX as TranslatableString, bJ as TranslatedValue, iR as TriggerRefundApplicationErrors, hS as TriggerRefundOptions, d_ as TriggerRefundRequest, e3 as TriggerRefundResponse, eN as TriggerReindexOrderRequest, eK as TriggerReindexRequest, eL as TriggerReindexResponse, fG as UnArchiveOrderRequest, fH as UnArchiveOrderResponse, hX as UpdateActivityIdentifiers, gq as UpdateActivityRequest, gr as UpdateActivityResponse, fT as UpdateBillingContactDetailsRequest, fU as UpdateBillingContactDetailsResponse, fP as UpdateBuyerEmailRequest, fQ as UpdateBuyerEmailResponse, fM as UpdateBuyerInfoRequest, fO as UpdateBuyerInfoResponse, ez as UpdateInternalDocumentsEvent, eA as UpdateInternalDocumentsEventOperationOneOf, gu as UpdateLineItemsDescriptionLinesRequest, gw as UpdateLineItemsDescriptionLinesResponse, hW as UpdateOrderLineItem, hV as UpdateOrderLineItemIdentifiers, fV as UpdateOrderLineItemRequest, fW as UpdateOrderLineItemResponse, fX as UpdateOrderLineItemsRequest, fZ as UpdateOrderLineItemsResponse, fb as UpdateOrderRequest, fc as UpdateOrderResponse, fR as UpdateOrderShippingAddressRequest, fS as UpdateOrderShippingAddressResponse, iT as UpdateOrderStatusApplicationErrors, gB as UpdateOrderStatusRequest, gC as UpdateOrderStatusResponse, gW as V1BulkMarkOrdersAsPaidRequest, gX as V1BulkMarkOrdersAsPaidResponse, gY as V1CreatePaymentGatewayOrderRequest, gZ as V1CreatePaymentGatewayOrderResponse, fk as V1LineItemDelta, fl as V1LineItemDeltaDeltaOneOf, gT as V1MarkOrderAsPaidRequest, gU as V1MarkOrderAsPaidResponse, cz as V1RestockItem, ef as V1ScheduledAction, b7 as V1ShippingInformation, hK as Value, aq as ValueType, iL as ValueTypeWithLiterals, b6 as VatId, H as VatType, i8 as VatTypeWithLiterals, eI as VersionedDeleteByIdsOperation, eJ as VersionedDocumentId, eH as VersionedDocumentUpdateOperation, ah as VersioningMode, iC as VersioningModeWithLiterals, ev as VoidAuthorizedPaymentsRequest, a0 as WebhookIdentityType, ik as WebhookIdentityTypeWithLiterals, W as WeightUnit, i7 as WeightUnitWithLiterals, cb as WixReceipt, ej as WixReceiptInfo } from './ecom-v1-order-orders.universal-C3ADe9Sb.mjs';
2
+ import { P as Price, a as PreparePaymentCollectionOptions, b as PreparePaymentCollectionResponse, c as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, V as VoidAuthorizedPaymentsResponse, d as VoidAuthorizedPaymentsApplicationErrors, e as PaymentCapture, C as CaptureAuthorizedPaymentsResponse, f as CaptureAuthorizedPaymentsApplicationErrors, O as Order, g as GetOrderApplicationErrors, h as OrderSearch, S as SearchOrdersResponse, i as CreateOrderOptions, j as CreateOrderApplicationErrors, U as UpdateOrder, k as UpdateOrderApplicationErrors, M as MaskedOrder, B as BulkUpdateOrdersOptions, l as BulkUpdateOrdersResponse, A as AddActivitiesOptions, m as AddActivitiesResponse, n as CancelOrderOptions, o as CancelOrderResponse, p as CancelOrderApplicationErrors, q as BulkUpdateOrderTagsOptions, r as BulkUpdateOrderTagsResponse, s as OrderApprovedEnvelope, t as OrderUpdatedEnvelope, u as OrderCanceledEnvelope, v as OrderCreatedEnvelope, w as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-E2sGTz4Q.mjs';
3
+ export { cQ as ActionEvent, ad as ActionType, ix as ActionTypeWithLiterals, bq as Activity, br as ActivityContentOneOf, X as ActivityType, id as ActivityTypeWithLiterals, gp as AddActivitiesRequest, gl as AddActivityRequest, go as AddActivityResponse, f_ as AddInternalActivityRequest, gk as AddInternalActivityResponse, cn as AdditionalFee, fq as AdditionalFeeDelta, fr as AdditionalFeeDeltaDeltaOneOf, di as AdditionalFeeRefund, b2 as Address, hk as AddressDescription, b4 as AddressLocation, b1 as AddressWithContact, z as AdjustmentType, i2 as AdjustmentTypeWithLiterals, hY as AggregateOrdersOptions, h0 as AggregateOrdersRequest, h1 as AggregateOrdersResponse, eq as AggregatedRefundSummary, dO as ApplicationError, bi as AppliedDiscount, fo as AppliedDiscountDelta, fp as AppliedDiscountDeltaDeltaOneOf, bj as AppliedDiscountDiscountSourceOneOf, fA as ArchiveOrderRequest, fB as ArchiveOrderResponse, Z as AttributionSource, ig as AttributionSourceWithLiterals, ef as AuthorizationActionFailureDetails, ee as AuthorizationCapture, aa as AuthorizationCaptureStatus, iu as AuthorizationCaptureStatusWithLiterals, ed as AuthorizationDetails, eg as AuthorizationVoid, ab as AuthorizationVoidStatus, iv as AuthorizationVoidStatusWithLiterals, bR as AuthorizedPaymentCaptured, bQ as AuthorizedPaymentCreated, bS as AuthorizedPaymentVoided, cm as Balance, cl as BalanceSummary, hM as BaseEventMetadata, eO as BatchOfTriggerReindexOrderRequest, hu as BigDecimalWrapper, aP as BillingAdjustment, aQ as BillingAdjustmentPriceSummary, dP as BulkActionMetadata, fE as BulkArchiveOrdersByFilterRequest, fF as BulkArchiveOrdersByFilterResponse, fC as BulkArchiveOrdersRequest, fD as BulkArchiveOrdersResponse, hP as BulkDeleteImportedOrdersOptions, cI as BulkDeleteImportedOrdersRequest, cJ as BulkDeleteImportedOrdersResponse, gI as BulkMarkAsFulfilledByFilterRequest, gJ as BulkMarkAsFulfilledByFilterResponse, gG as BulkMarkAsFulfilledRequest, gH as BulkMarkAsFulfilledResponse, gO as BulkMarkAsUnfulfilledByFilterRequest, gP as BulkMarkAsUnfulfilledByFilterResponse, gM as BulkMarkAsUnfulfilledRequest, gN as BulkMarkAsUnfulfilledResponse, dK as BulkMarkOrdersAsPaidRequest, dL as BulkMarkOrdersAsPaidResponse, dM as BulkOrderResult, c_ as BulkSendBuyerPickupConfirmationEmailsRequest, c$ as BulkSendBuyerPickupConfirmationEmailsResponse, d2 as BulkSendBuyerShippingConfirmationEmailsRequest, d3 as BulkSendBuyerShippingConfirmationEmailsResponse, gQ as BulkSetBusinessLocationRequest, gR as BulkSetBusinessLocationResponse, gS as BulkSetBusinessLocationResult, fK as BulkUnArchiveOrdersByFilterRequest, fL as BulkUnArchiveOrdersByFilterResponse, fI as BulkUnArchiveOrdersRequest, fJ as BulkUnArchiveOrdersResponse, h5 as BulkUpdateOrderTagsRequest, h6 as BulkUpdateOrderTagsResult, fd as BulkUpdateOrdersRequest, aZ as BuyerInfo, a_ as BuyerInfoIdOneOf, fN as BuyerInfoUpdate, eu as CalculateRefundItemRequest, ew as CalculateRefundItemResponse, et as CalculateRefundRequest, ev as CalculateRefundResponse, hE as CalculatedTax, hD as CalculatedTaxes, hc as Cancel, gz as CancelOrderRequest, ey as CaptureAuthorizedPaymentsRequest, av as CatalogReference, cj as ChannelInfo, _ as ChannelType, ih as ChannelTypeWithLiterals, hR as ChargeMembershipsOptions, dX as ChargeMembershipsRequest, d$ as ChargeMembershipsResponse, ez as ChargeSavedPaymentMethodRequest, eA as ChargeSavedPaymentMethodResponse, ei as Chargeback, cf as ChargebackCreated, cg as ChargebackReversed, ae as ChargebackStatus, iy as ChargebackStatusWithLiterals, dV as ChargedBy, aB as Color, fe as CommitDeltasRequest, fu as CommitDeltasResponse, fw as CommittedDiffs, fx as CommittedDiffsShippingUpdateInfoOneOf, hn as CommonAddress, ho as CommonAddressStreetOneOf, iS as CommonSearchWithEntityContext, hm as Company, hb as Complete, bk as Coupon, f7 as CreateOrderRequest, fa as CreateOrderResponse, dU as CreatePaymentGatewayOrderRequest, dW as CreatePaymentGatewayOrderResponse, ch as CreatedBy, ci as CreatedByStringOneOf, c4 as CreditCardDetails, ec as CreditCardPaymentMethodDetails, a$ as CurrencyConversionDetails, eZ as CursorPaging, f6 as CursorPagingMetadata, f4 as CursorSearch, f5 as CursorSearchPagingMethodOneOf, f0 as Cursors, bs as CustomActivity, cu as CustomAllowedActions, ck as CustomField, ap as CustomFieldGroup, iJ as CustomFieldGroupWithLiterals, hJ as CustomFieldValue, hh as Customer, h3 as DecrementData, h2 as DecrementItemsQuantityRequest, h4 as DecrementItemsQuantityResponse, dD as DelayedCaptureSettings, hX as DeleteActivityIdentifiers, gs as DeleteActivityRequest, gt as DeleteActivityResponse, eG as DeleteByFilterOperation, eF as DeleteByIdsOperation, b8 as DeliveryLogistics, b9 as DeliveryLogisticsAddressOneOf, bc as DeliveryTimeSlot, ak as DeltaPaymentOptionType, iE as DeltaPaymentOptionTypeWithLiterals, hL as Deposit, ar as DepositType, iL as DepositTypeWithLiterals, aw as DescriptionLine, ay as DescriptionLineDescriptionLineValueOneOf, az as DescriptionLineName, D as DescriptionLineType, hZ as DescriptionLineTypeWithLiterals, ax as DescriptionLineValueOneOf, eQ as DiffmatokyPayload, aJ as DigitalFile, hB as Discount, hC as DiscountOneDiscountTypeOneOf, Q as DiscountReason, ib as DiscountReasonWithLiterals, bn as DiscountRule, bo as DiscountRuleName, N as DiscountType, ia as DiscountTypeWithLiterals, cK as DomainEvent, cL as DomainEventBodyOneOf, g6 as DownloadLinkSent, by as DraftOrderChangesApplied, fs as DraftOrderCommitSettings, ff as DraftOrderDiffs, fi as DraftOrderDiffsBillingUpdateInfoOneOf, fh as DraftOrderDiffsBuyerUpdateInfoOneOf, fj as DraftOrderDiffsRecipientUpdateInfoOneOf, fg as DraftOrderDiffsShippingUpdateInfoOneOf, dE as Duration, a3 as DurationUnit, im as DurationUnitWithLiterals, hi as Email, gf as EmailEdited, dA as Empty, cM as EntityCreatedEvent, cP as EntityDeletedEvent, cO as EntityUpdatedEvent, eR as ErrorInformation, hN as EventMetadata, aV as ExtendedFields, cc as ExternalReceipt, em as ExternalReceiptInfo, aC as FocalPoint, cw as FormIdentifier, cv as FormInfo, aO as FreeTrialPeriod, gd as FulfillerEmailSent, F as FulfillmentStatus, gF as FulfillmentStatusUpdated, i5 as FulfillmentStatusWithLiterals, co as FulfillmentStatusesAggregate, b5 as FullAddressContactDetails, eS as GetOrderRequest, eT as GetOrderResponse, dF as GetPaymentCollectabilityStatusRequest, dQ as GetRefundabilityStatusRequest, dR as GetRefundabilityStatusResponse, g_ as GetShipmentsRequest, g$ as GetShipmentsResponse, ej as GiftCardPaymentDetails, bX as GiftCardPaymentRefund, hf as IdAndVersion, cS as IdentificationData, cT as IdentificationDataIdOneOf, cE as ImportOrderRequest, cF as ImportOrderResponse, cD as ImportedOrderDeleted, f$ as InternalActivity, g0 as InternalActivityContentOneOf, eD as InternalDocument, eH as InternalDocumentUpdateByFilterOperation, eE as InternalDocumentUpdateOperation, eU as InternalQueryOrdersRequest, e_ as InternalQueryOrdersResponse, eI as InternalUpdateExistingOperation, al as InventoryAction, iF as InventoryActionWithLiterals, ft as InventoryUpdateDetails, gb as InvoiceAdded, hr as InvoiceDates, hI as InvoiceDynamicPriceTotals, hg as InvoiceFields, gc as InvoiceSent, he as InvoiceSentEvent, as as InvoiceStatus, iM as InvoiceStatusWithLiterals, hG as InvoicesPayment, fn as ItemChangedDetails, dN as ItemMetadata, aY as ItemModifier, aG as ItemTaxFullDetails, aE as ItemType, aF as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, h_ as ItemTypePresetWithLiterals, hA as ItemizedFee, J as JurisdictionType, i0 as JurisdictionTypeWithLiterals, ht as LineItem, bK as LineItemAmount, bB as LineItemChanges, fy as LineItemDelta, fz as LineItemDeltaDeltaOneOf, bF as LineItemDescriptionLineChange, bp as LineItemDiscount, bx as LineItemExchangeData, hx as LineItemMetaData, bG as LineItemModifiersChange, bD as LineItemPriceChange, bE as LineItemProductNameChange, bC as LineItemQuantityChange, R as LineItemQuantityChangeType, ic as LineItemQuantityChangeTypeWithLiterals, dh as LineItemRefund, es as LineItemRefundSummary, hv as LineItemTax, aI as LineItemTaxBreakdown, aH as LineItemTaxInfo, gv as LineItemUpdate, hs as LineItems, hy as Locale, cr as Location, aS as LocationAndQuantity, bL as ManagedAdditionalFee, bI as ManagedDiscount, bH as ManagedLineItem, a7 as ManuallyRefundableReason, ir as ManuallyRefundableReasonWithLiterals, gD as MarkAsFulfilledRequest, gE as MarkAsFulfilledResponse, gK as MarkAsUnfulfilledRequest, gL as MarkAsUnfulfilledResponse, dI as MarkOrderAsPaidRequest, dJ as MarkOrderAsPaidResponse, gx as MarkOrderAsSeenByHumanRequest, gy as MarkOrderAsSeenByHumanResponse, fY as MaskedOrderLineItem, dY as MembershipChargeItem, dZ as MembershipName, ek as MembershipPaymentDetails, bY as MembershipPaymentRefund, af as MembershipPaymentStatus, iz as MembershipPaymentStatusWithLiterals, bt as MerchantComment, bl as MerchantDiscount, bm as MerchantDiscountMerchantDiscountReasonOneOf, cR as MessageEnvelope, hH as MetaData, aW as ModifierGroup, bw as NewExchangeOrderCreated, a6 as NonRefundableReason, iq as NonRefundableReasonWithLiterals, $ as OrderActionType, ii as OrderActionTypeWithLiterals, Y as OrderActivityTypeEnumActivityType, ie as OrderActivityTypeEnumActivityTypeWithLiterals, aj as OrderApprovalStrategy, iD as OrderApprovalStrategyWithLiterals, cx as OrderApproved, g5 as OrderCanceled, gA as OrderCanceledEventOrderCanceled, bz as OrderChange, bA as OrderChangeValueOneOf, f9 as OrderCreateNotifications, bv as OrderCreatedFromExchange, f8 as OrderCreationSettings, fv as OrderDeltasCommitted, g3 as OrderFulfilled, cC as OrderImported, cA as OrderItemsRestocked, at as OrderLineItem, fm as OrderLineItemChangedDetails, g4 as OrderNotFulfilled, g2 as OrderPaid, gh as OrderPartiallyPaid, gi as OrderPending, g1 as OrderPlaced, bu as OrderRefunded, gj as OrderRejected, cz as OrderRejectedEventOrderRejected, hT as OrderSearchSpec, cs as OrderSettings, ct as OrderSettingsAllowedActionsOneOf, L as OrderStatus, i9 as OrderStatusWithLiterals, bh as OrderTaxBreakdown, bg as OrderTaxInfo, e6 as OrderTransactions, cy as OrdersExperiments, e7 as Payment, c5 as PaymentCanceled, c6 as PaymentCanceledPaymentDetailsOneOf, a4 as PaymentCollectabilityStatus, io as PaymentCollectabilityStatusWithLiterals, iP as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, hQ as PaymentCollectionCreatePaymentGatewayOrderOptions, iO as PaymentCollectionMarkOrderAsPaidApplicationErrors, c7 as PaymentDeclined, c8 as PaymentDeclinedPaymentDetailsOneOf, x as PaymentOptionType, h$ as PaymentOptionTypeWithLiterals, e8 as PaymentPaymentDetailsOneOf, c0 as PaymentPending, c1 as PaymentPendingPaymentDetailsOneOf, e9 as PaymentReceiptInfoOneOf, e1 as PaymentRefund, b_ as PaymentRefundFailed, bZ as PaymentRefunded, E as PaymentStatus, gV as PaymentStatusUpdated, i4 as PaymentStatusWithLiterals, hF as Payments, hl as Phone, aD as PhysicalProperties, bb as PickupAddress, ba as PickupDetails, K as PickupMethod, i8 as PickupMethodWithLiterals, gg as PickupReadyEmailSent, am as Placement, iG as PlacementWithLiterals, aA as PlainTextValue, eY as PlatformPaging, e$ as PlatformPagingMetadata, eV as PlatformQuery, eW as PlatformQueryPagingMethodOneOf, dB as PreparePaymentCollectionRequest, ds as PreviewBuyerConfirmationEmailRequest, dt as PreviewBuyerConfirmationEmailResponse, dq as PreviewBuyerPaymentsReceivedEmailRequest, dr as PreviewBuyerPaymentsReceivedEmailResponse, du as PreviewBuyerPickupConfirmationEmailRequest, dv as PreviewBuyerPickupConfirmationEmailResponse, dl as PreviewCancelEmailRequest, dm as PreviewCancelEmailResponse, dn as PreviewCancelRefundEmailRequest, dp as PreviewCancelRefundEmailResponse, dc as PreviewEmailByTypeRequest, dd as PreviewEmailByTypeResponse, a1 as PreviewEmailType, ik as PreviewEmailTypeWithLiterals, de as PreviewRefundEmailRequest, dk as PreviewRefundEmailResponse, dy as PreviewResendDownloadLinksEmailRequest, dz as PreviewResendDownloadLinksEmailResponse, dw as PreviewShippingConfirmationEmailRequest, dx as PreviewShippingConfirmationEmailResponse, aR as PriceDescription, b0 as PriceSummary, au as ProductName, gm as PublicActivity, gn as PublicActivityContentOneOf, f1 as QueryOrderRequest, f2 as QueryOrderResponse, hj as QuotesAddress, ac as Reason, iw as ReasonWithLiterals, c9 as ReceiptCreated, ca as ReceiptCreatedReceiptInfoOneOf, cd as ReceiptSent, ce as ReceiptSentReceiptInfoOneOf, iN as RecordManuallyCollectedPaymentApplicationErrors, dG as RecordManuallyCollectedPaymentRequest, dH as RecordManuallyCollectedPaymentResponse, dC as RedirectUrls, en as Refund, df as RefundDetails, bT as RefundInitiated, dg as RefundItem, er as RefundItemsBreakdown, e2 as RefundSideEffects, ag as RefundStatus, ep as RefundStatusInfo, iA as RefundStatusWithLiterals, eo as RefundTransaction, dS as Refundability, dT as RefundabilityAdditionalRefundabilityInfoOneOf, a5 as RefundableStatus, ip as RefundableStatusWithLiterals, b$ as RefundedAsStoreCredit, bU as RefundedPayment, bV as RefundedPaymentKindOneOf, c2 as RegularPayment, ea as RegularPaymentDetails, eb as RegularPaymentDetailsPaymentMethodDetailsOneOf, c3 as RegularPaymentPaymentMethodDetailsOneOf, bW as RegularPaymentRefund, hd as Reschedule, e3 as RestockInfo, e4 as RestockItem, a8 as RestockType, is as RestockTypeWithLiterals, cN as RestoreInfo, bP as SavedPaymentMethod, a2 as ScheduledAction, il as ScheduledActionWithLiterals, f3 as SearchOrdersRequest, cU as SendBuyerConfirmationEmailRequest, cV as SendBuyerConfirmationEmailResponse, cW as SendBuyerPaymentsReceivedEmailRequest, cX as SendBuyerPaymentsReceivedEmailResponse, cY as SendBuyerPickupConfirmationEmailRequest, cZ as SendBuyerPickupConfirmationEmailResponse, d0 as SendBuyerShippingConfirmationEmailRequest, d1 as SendBuyerShippingConfirmationEmailResponse, d6 as SendCancelRefundEmailRequest, d7 as SendCancelRefundEmailResponse, d4 as SendMerchantOrderReceivedNotificationRequest, d5 as SendMerchantOrderReceivedNotificationResponse, da as SendMerchantOrderReceivedPushRequest, db as SendMerchantOrderReceivedPushResponse, d8 as SendRefundEmailRequest, d9 as SendRefundEmailResponse, d_ as ServiceProperties, hO as SetOrderNumberCounterOptions, cG as SetOrderNumberCounterRequest, cH as SetOrderNumberCounterResponse, ge as ShippingAddressEdited, ga as ShippingConfirmationEmailSent, bO as ShippingInformation, bN as ShippingInformationChange, bd as ShippingPrice, dj as ShippingRefund, be as ShippingRegion, ai as SortOrder, iC as SortOrderWithLiterals, eX as Sorting, hw as Source, ao as SourceType, iI as SourceTypeWithLiterals, hq as StandardDetails, b3 as StreetAddress, hp as Subdivision, an as SubdivisionType, iH as SubdivisionTypeWithLiterals, aM as SubscriptionDescription, y as SubscriptionFrequency, i1 as SubscriptionFrequencyWithLiterals, aK as SubscriptionInfo, aN as SubscriptionSettings, aL as SubscriptionTitle, cq as TagList, cp as Tags, h7 as Task, h9 as TaskAction, ha as TaskActionActionOneOf, h8 as TaskKey, bf as TaxSummary, aT as TaxableAddress, aU as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, i3 as TaxableAddressTypeWithLiterals, hz as TotalPrice, bM as TotalPriceChange, g9 as TrackingLinkAdded, g7 as TrackingNumberAdded, g8 as TrackingNumberEdited, a9 as TransactionStatus, it as TransactionStatusWithLiterals, aX as TranslatableString, bJ as TranslatedValue, iQ as TriggerRefundApplicationErrors, hS as TriggerRefundOptions, e0 as TriggerRefundRequest, e5 as TriggerRefundResponse, eP as TriggerReindexOrderRequest, eM as TriggerReindexRequest, eN as TriggerReindexResponse, fG as UnArchiveOrderRequest, fH as UnArchiveOrderResponse, hW as UpdateActivityIdentifiers, gq as UpdateActivityRequest, gr as UpdateActivityResponse, fT as UpdateBillingContactDetailsRequest, fU as UpdateBillingContactDetailsResponse, fP as UpdateBuyerEmailRequest, fQ as UpdateBuyerEmailResponse, fM as UpdateBuyerInfoRequest, fO as UpdateBuyerInfoResponse, eB as UpdateInternalDocumentsEvent, eC as UpdateInternalDocumentsEventOperationOneOf, gu as UpdateLineItemsDescriptionLinesRequest, gw as UpdateLineItemsDescriptionLinesResponse, hV as UpdateOrderLineItem, hU as UpdateOrderLineItemIdentifiers, fV as UpdateOrderLineItemRequest, fW as UpdateOrderLineItemResponse, fX as UpdateOrderLineItemsRequest, fZ as UpdateOrderLineItemsResponse, fb as UpdateOrderRequest, fc as UpdateOrderResponse, fR as UpdateOrderShippingAddressRequest, fS as UpdateOrderShippingAddressResponse, iR as UpdateOrderStatusApplicationErrors, gB as UpdateOrderStatusRequest, gC as UpdateOrderStatusResponse, gW as V1BulkMarkOrdersAsPaidRequest, gX as V1BulkMarkOrdersAsPaidResponse, gY as V1CreatePaymentGatewayOrderRequest, gZ as V1CreatePaymentGatewayOrderResponse, fk as V1LineItemDelta, fl as V1LineItemDeltaDeltaOneOf, gT as V1MarkOrderAsPaidRequest, gU as V1MarkOrderAsPaidResponse, cB as V1RestockItem, eh as V1ScheduledAction, b7 as V1ShippingInformation, hK as Value, aq as ValueType, iK as ValueTypeWithLiterals, b6 as VatId, H as VatType, i7 as VatTypeWithLiterals, eK as VersionedDeleteByIdsOperation, eL as VersionedDocumentId, eJ as VersionedDocumentUpdateOperation, ah as VersioningMode, iB as VersioningModeWithLiterals, ex as VoidAuthorizedPaymentsRequest, a0 as WebhookIdentityType, ij as WebhookIdentityTypeWithLiterals, W as WeightUnit, i6 as WeightUnitWithLiterals, cb as WixReceipt, el as WixReceiptInfo } from './ecom-v1-order-orders.universal-E2sGTz4Q.mjs';
4
4
 
5
5
  declare function preparePaymentCollection$1(httpClient: HttpClient): PreparePaymentCollectionSignature;
6
6
  interface PreparePaymentCollectionSignature {
@@ -1145,111 +1145,6 @@ function bulkUpdateOrders(payload) {
1145
1145
  }
1146
1146
  return __bulkUpdateOrders;
1147
1147
  }
1148
- function commitDeltas(payload) {
1149
- function __commitDeltas({ host }) {
1150
- const serializedData = transformPaths(payload, [
1151
- {
1152
- transformFn: transformSDKTimestampToRESTTimestamp,
1153
- paths: [
1154
- { path: "changes.changedShippingInfo.logistics.deliverByDate" },
1155
- {
1156
- path: "changes.changedShippingInfo.logistics.deliveryTimeSlot.from"
1157
- },
1158
- { path: "changes.changedShippingInfo.logistics.deliveryTimeSlot.to" },
1159
- { path: "changes.lineItems.lineItem.image.urlExpirationDate" },
1160
- { path: "changes.lineItems.lineItem.digitalFile.expirationDate" },
1161
- {
1162
- path: "changes.lineItems.lineItem.subscriptionInfo.subscriptionSettings.startDate"
1163
- }
1164
- ]
1165
- },
1166
- {
1167
- transformFn: transformSDKFloatToRESTFloat,
1168
- paths: [
1169
- {
1170
- path: "changes.changedShippingInfo.logistics.shippingDestination.address.geocode.latitude"
1171
- },
1172
- {
1173
- path: "changes.changedShippingInfo.logistics.shippingDestination.address.geocode.longitude"
1174
- },
1175
- {
1176
- path: "changes.changedShippingInfo.logistics.pickupDetails.address.geocode.latitude"
1177
- },
1178
- {
1179
- path: "changes.changedShippingInfo.logistics.pickupDetails.address.geocode.longitude"
1180
- },
1181
- { path: "changes.changedBillingInfo.address.geocode.latitude" },
1182
- { path: "changes.changedBillingInfo.address.geocode.longitude" },
1183
- { path: "changes.changedRecipientInfo.address.geocode.latitude" },
1184
- { path: "changes.changedRecipientInfo.address.geocode.longitude" },
1185
- { path: "changes.lineItems.lineItem.physicalProperties.weight" },
1186
- { path: "changes.lineItems.lineItem.image.focalPoint.x" },
1187
- { path: "changes.lineItems.lineItem.image.focalPoint.y" }
1188
- ]
1189
- }
1190
- ]);
1191
- const metadata = {
1192
- entityFqdn: "wix.ecom.v1.order",
1193
- method: "POST",
1194
- methodFqn: "com.wix.ecom.orders.v1.Orders.CommitDeltas",
1195
- packageName: PACKAGE_NAME,
1196
- migrationOptions: {
1197
- optInTransformResponse: true
1198
- },
1199
- url: resolveComWixEcomOrdersV1OrdersUrl({
1200
- protoPath: "/v1/orders/{id}/commit-deltas",
1201
- data: serializedData,
1202
- host
1203
- }),
1204
- data: serializedData,
1205
- transformResponse: (payload2) => transformPaths(payload2, [
1206
- {
1207
- transformFn: transformRESTTimestampToSDKTimestamp,
1208
- paths: [
1209
- { path: "order.createdDate" },
1210
- { path: "order.updatedDate" },
1211
- { path: "order.purchasedDate" },
1212
- { path: "order.lineItems.image.urlExpirationDate" },
1213
- { path: "order.lineItems.digitalFile.expirationDate" },
1214
- {
1215
- path: "order.lineItems.subscriptionInfo.subscriptionSettings.startDate"
1216
- },
1217
- { path: "order.shippingInfo.logistics.deliverByDate" },
1218
- { path: "order.shippingInfo.logistics.deliveryTimeSlot.from" },
1219
- { path: "order.shippingInfo.logistics.deliveryTimeSlot.to" },
1220
- { path: "order.activities.createdDate" }
1221
- ]
1222
- },
1223
- {
1224
- transformFn: transformRESTFloatToSDKFloat,
1225
- paths: [
1226
- { path: "order.lineItems.image.focalPoint.x" },
1227
- { path: "order.lineItems.image.focalPoint.y" },
1228
- { path: "order.lineItems.physicalProperties.weight" },
1229
- { path: "order.billingInfo.address.geocode.latitude" },
1230
- { path: "order.billingInfo.address.geocode.longitude" },
1231
- {
1232
- path: "order.shippingInfo.logistics.shippingDestination.address.geocode.latitude"
1233
- },
1234
- {
1235
- path: "order.shippingInfo.logistics.shippingDestination.address.geocode.longitude"
1236
- },
1237
- {
1238
- path: "order.shippingInfo.logistics.pickupDetails.address.geocode.latitude"
1239
- },
1240
- {
1241
- path: "order.shippingInfo.logistics.pickupDetails.address.geocode.longitude"
1242
- },
1243
- { path: "order.recipientInfo.address.geocode.latitude" },
1244
- { path: "order.recipientInfo.address.geocode.longitude" }
1245
- ]
1246
- }
1247
- ])
1248
- };
1249
- return metadata;
1250
- }
1251
- return __commitDeltas;
1252
- }
1253
1148
  function updateOrderLineItem(payload) {
1254
1149
  function __updateOrderLineItem({ host }) {
1255
1150
  const serializedData = transformPaths(payload, [
@@ -2973,80 +2868,6 @@ async function bulkUpdateOrders2(orders, options) {
2973
2868
  throw transformedError;
2974
2869
  }
2975
2870
  }
2976
- async function commitDeltas2(_id, options) {
2977
- const { httpClient, sideEffects } = arguments[2];
2978
- const payload = transformPaths2(
2979
- renameKeysFromSDKRequestToRESTRequest({
2980
- id: _id,
2981
- draftOrderId: options?.draftOrderId,
2982
- changes: options?.changes,
2983
- commitSettings: options?.commitSettings,
2984
- reason: options?.reason
2985
- }),
2986
- [
2987
- {
2988
- transformFn: transformSDKAddressToRESTAddress,
2989
- paths: [
2990
- {
2991
- path: "changes.changedShippingInfo.logistics.shippingDestination.address"
2992
- },
2993
- {
2994
- path: "changes.changedShippingInfo.logistics.pickupDetails.address"
2995
- },
2996
- { path: "changes.changedBillingInfo.address" },
2997
- { path: "changes.changedRecipientInfo.address" }
2998
- ]
2999
- },
3000
- {
3001
- transformFn: transformSDKImageToRESTImage,
3002
- paths: [{ path: "changes.lineItems.lineItem.image" }]
3003
- }
3004
- ]
3005
- );
3006
- const reqOpts = commitDeltas(payload);
3007
- sideEffects?.onSiteCall?.();
3008
- try {
3009
- const result = await httpClient.request(reqOpts);
3010
- sideEffects?.onSuccess?.(result);
3011
- return renameKeysFromRESTResponseToSDKResponse(
3012
- transformPaths2(result.data, [
3013
- {
3014
- transformFn: transformRESTImageToSDKImage,
3015
- paths: [{ path: "order.lineItems.image" }]
3016
- },
3017
- {
3018
- transformFn: transformRESTAddressToSDKAddress,
3019
- paths: [
3020
- { path: "order.billingInfo.address" },
3021
- {
3022
- path: "order.shippingInfo.logistics.shippingDestination.address"
3023
- },
3024
- { path: "order.shippingInfo.logistics.pickupDetails.address" },
3025
- { path: "order.recipientInfo.address" }
3026
- ]
3027
- }
3028
- ])
3029
- );
3030
- } catch (err) {
3031
- const transformedError = sdkTransformError(
3032
- err,
3033
- {
3034
- spreadPathsToArguments: {},
3035
- explicitPathsToArguments: {
3036
- id: "$[0]",
3037
- draftOrderId: "$[1].draftOrderId",
3038
- changes: "$[1].changes",
3039
- commitSettings: "$[1].commitSettings",
3040
- reason: "$[1].reason"
3041
- },
3042
- singleArgumentUnchanged: false
3043
- },
3044
- ["_id", "options"]
3045
- );
3046
- sideEffects?.onError?.(err);
3047
- throw transformedError;
3048
- }
3049
- }
3050
2871
  async function updateOrderLineItem2(identifiers, lineItem) {
3051
2872
  const { httpClient, sideEffects } = arguments[2];
3052
2873
  const payload = transformPaths2(
@@ -3595,14 +3416,6 @@ function bulkUpdateOrders3(httpClient) {
3595
3416
  { httpClient }
3596
3417
  );
3597
3418
  }
3598
- function commitDeltas3(httpClient) {
3599
- return (_id, options) => commitDeltas2(
3600
- _id,
3601
- options,
3602
- // @ts-ignore
3603
- { httpClient }
3604
- );
3605
- }
3606
3419
  function updateOrderLineItem3(httpClient) {
3607
3420
  return (identifiers, lineItem) => updateOrderLineItem2(
3608
3421
  identifiers,
@@ -3918,7 +3731,6 @@ var searchOrders4 = /* @__PURE__ */ createRESTModule(searchOrders3);
3918
3731
  var createOrder4 = /* @__PURE__ */ createRESTModule(createOrder3);
3919
3732
  var updateOrder4 = /* @__PURE__ */ createRESTModule(updateOrder3);
3920
3733
  var bulkUpdateOrders4 = /* @__PURE__ */ createRESTModule(bulkUpdateOrders3);
3921
- var commitDeltas4 = /* @__PURE__ */ createRESTModule(commitDeltas3);
3922
3734
  var updateOrderLineItem4 = /* @__PURE__ */ createRESTModule(updateOrderLineItem3);
3923
3735
  var addActivity4 = /* @__PURE__ */ createRESTModule(addActivity3);
3924
3736
  var addActivities4 = /* @__PURE__ */ createRESTModule(addActivities3);
@@ -3995,7 +3807,6 @@ export {
3995
3807
  cancelOrder4 as cancelOrder,
3996
3808
  captureAuthorizedPayments4 as captureAuthorizedPayments,
3997
3809
  chargeMemberships4 as chargeMemberships,
3998
- commitDeltas4 as commitDeltas,
3999
3810
  createOrder4 as createOrder,
4000
3811
  deleteActivity4 as deleteActivity,
4001
3812
  getOrder4 as getOrder,