@wix/auto_sdk_ecom_orders 1.0.61 → 1.0.63

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 (33) hide show
  1. package/build/cjs/{ecom-v1-order-orders.universal-edSkdncQ.d.ts → ecom-v1-order-orders.universal-CaDvypy_.d.ts} +88 -35
  2. package/build/cjs/index.d.ts +28 -21
  3. package/build/cjs/index.js +8 -0
  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 +8 -0
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +1 -1
  9. package/build/es/{ecom-v1-order-orders.universal-edSkdncQ.d.mts → ecom-v1-order-orders.universal-CaDvypy_.d.mts} +88 -35
  10. package/build/es/index.d.mts +28 -21
  11. package/build/es/index.mjs +7 -0
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +2 -2
  14. package/build/es/index.typings.mjs +7 -0
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +1 -1
  17. package/build/internal/cjs/{ecom-v1-order-orders.universal-DeNyUgsJ.d.ts → ecom-v1-order-orders.universal-EM8BrJdd.d.ts} +88 -35
  18. package/build/internal/cjs/index.d.ts +63 -40
  19. package/build/internal/cjs/index.js +8 -0
  20. package/build/internal/cjs/index.js.map +1 -1
  21. package/build/internal/cjs/index.typings.d.ts +2 -2
  22. package/build/internal/cjs/index.typings.js +8 -0
  23. package/build/internal/cjs/index.typings.js.map +1 -1
  24. package/build/internal/cjs/meta.d.ts +1 -1
  25. package/build/internal/es/{ecom-v1-order-orders.universal-DeNyUgsJ.d.mts → ecom-v1-order-orders.universal-EM8BrJdd.d.mts} +88 -35
  26. package/build/internal/es/index.d.mts +63 -40
  27. package/build/internal/es/index.mjs +7 -0
  28. package/build/internal/es/index.mjs.map +1 -1
  29. package/build/internal/es/index.typings.d.mts +2 -2
  30. package/build/internal/es/index.typings.mjs +7 -0
  31. package/build/internal/es/index.typings.mjs.map +1 -1
  32. package/build/internal/es/meta.d.mts +1 -1
  33. package/package.json +2 -2
@@ -2013,6 +2013,40 @@ interface ReceiptSentReceiptInfoOneOf {
2013
2013
  /** Receipt created by an external system. */
2014
2014
  externalReceipt?: ExternalReceipt;
2015
2015
  }
2016
+ interface ChargebackCreated {
2017
+ /**
2018
+ * ID of the payment that received a chargeback.
2019
+ * @format GUID
2020
+ */
2021
+ paymentId?: string;
2022
+ /**
2023
+ * Chargeback ID.
2024
+ * @format GUID
2025
+ */
2026
+ chargebackId?: string;
2027
+ /** Chargeback amount. */
2028
+ amount?: Price;
2029
+ /** Payment details. */
2030
+ paymentDetails?: RegularPayment;
2031
+ }
2032
+ interface ChargebackReversed {
2033
+ /**
2034
+ * ID of the payment involved with the chargeback.
2035
+ * @format GUID
2036
+ */
2037
+ paymentId?: string;
2038
+ /**
2039
+ * Chargeback ID.
2040
+ * @format GUID
2041
+ */
2042
+ chargebackId?: string;
2043
+ /** Chargeback amount. */
2044
+ amount?: Price;
2045
+ /** Chargeback reversal amount. */
2046
+ reversalAmount?: Price;
2047
+ /** Payment details. */
2048
+ paymentDetails?: RegularPayment;
2049
+ }
2016
2050
  declare enum ActivityType {
2017
2051
  ORDER_REFUNDED = "ORDER_REFUNDED",
2018
2052
  ORDER_PLACED = "ORDER_PLACED",
@@ -3098,6 +3132,59 @@ declare enum ActionType {
3098
3132
  }
3099
3133
  /** @enumType */
3100
3134
  type ActionTypeWithLiterals = ActionType | 'UNKNOWN_ACTION_TYPE' | 'VOID' | 'CAPTURE';
3135
+ interface Chargeback {
3136
+ /**
3137
+ * Chargeback ID.
3138
+ * @format GUID
3139
+ * @readonly
3140
+ * @immutable
3141
+ */
3142
+ _id?: string;
3143
+ /**
3144
+ * Date and time the chargeback was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided.
3145
+ * @readonly
3146
+ * @immutable
3147
+ */
3148
+ _createdDate?: Date | null;
3149
+ /**
3150
+ * Date and time the chargeback was updated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided.
3151
+ * @readonly
3152
+ */
3153
+ _updatedDate?: Date | null;
3154
+ /**
3155
+ * Amount.
3156
+ * @readonly
3157
+ * @immutable
3158
+ */
3159
+ amount?: Price;
3160
+ /**
3161
+ * Reversal amount. Present only when status is REVERSED.
3162
+ * @readonly
3163
+ */
3164
+ reversalAmount?: Price;
3165
+ /**
3166
+ * Status.
3167
+ *
3168
+ * Default: `"APPROVED"`.
3169
+ */
3170
+ status?: ChargebackStatusWithLiterals;
3171
+ /**
3172
+ * External chargeback ID.
3173
+ * @format GUID
3174
+ * @readonly
3175
+ * @immutable
3176
+ */
3177
+ externalId?: string | null;
3178
+ }
3179
+ declare enum ChargebackStatus {
3180
+ UNSPECIFIED = "UNSPECIFIED",
3181
+ /** Chargeback was approved. */
3182
+ APPROVED = "APPROVED",
3183
+ /** Chargeback was reversed. */
3184
+ REVERSED = "REVERSED"
3185
+ }
3186
+ /** @enumType */
3187
+ type ChargebackStatusWithLiterals = ChargebackStatus | 'UNSPECIFIED' | 'APPROVED' | 'REVERSED';
3101
3188
  interface GiftCardPaymentDetails {
3102
3189
  /**
3103
3190
  * Gift card payment ID.
@@ -4552,40 +4639,6 @@ interface BatchOfTriggerReindexOrderRequest {
4552
4639
  /** @maxSize 25 */
4553
4640
  requests?: TriggerReindexOrderRequest[];
4554
4641
  }
4555
- interface ChargebackCreated {
4556
- /**
4557
- * ID of the payment that received a chargeback.
4558
- * @format GUID
4559
- */
4560
- paymentId?: string;
4561
- /**
4562
- * Chargeback ID.
4563
- * @format GUID
4564
- */
4565
- chargebackId?: string;
4566
- /** Chargeback amount. */
4567
- amount?: Price;
4568
- /** Payment details. */
4569
- paymentDetails?: RegularPayment;
4570
- }
4571
- interface ChargebackReversed {
4572
- /**
4573
- * ID of the payment involved with the chargeback.
4574
- * @format GUID
4575
- */
4576
- paymentId?: string;
4577
- /**
4578
- * Chargeback ID.
4579
- * @format GUID
4580
- */
4581
- chargebackId?: string;
4582
- /** Chargeback amount. */
4583
- amount?: Price;
4584
- /** Chargeback reversal amount. */
4585
- reversalAmount?: Price;
4586
- /** Payment details. */
4587
- paymentDetails?: RegularPayment;
4588
- }
4589
4642
  interface DiffmatokyPayload {
4590
4643
  left?: string;
4591
4644
  right?: string;
@@ -7467,4 +7520,4 @@ interface BulkUpdateOrderTagsOptions {
7467
7520
  unassignTags?: Tags;
7468
7521
  }
7469
7522
 
7470
- export { NonRefundableReason as $, AdjustmentType as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, OrderStatus as E, FulfillmentStatus as F, type GetPaymentCollectabilityStatusResponse as G, DiscountType as H, ItemTypeItemType as I, JurisdictionType as J, DiscountReason as K, LineItemQuantityChangeType as L, type MaskedOrder as M, ActivityType as N, type Order as O, type Price as P, AttributionSource as Q, ChannelType as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, ScheduledAction as X, DurationUnit as Y, PaymentCollectabilityStatus as Z, RefundableStatus as _, type PreparePaymentCollectionOptions as a, type AddressWithContact as a$, ManuallyRefundableReason as a0, RestockType as a1, TransactionStatus as a2, AuthorizationCaptureStatus as a3, AuthorizationVoidStatus as a4, Reason as a5, ActionType as a6, MembershipPaymentStatus as a7, RefundStatus as a8, WebhookIdentityType as a9, type FocalPoint as aA, type PhysicalProperties as aB, type ItemType as aC, type ItemTypeItemTypeDataOneOf as aD, type ItemTaxFullDetails as aE, type LineItemTaxInfo as aF, type LineItemTaxBreakdown as aG, type DigitalFile as aH, type SubscriptionInfo as aI, type SubscriptionTitle as aJ, type SubscriptionDescription as aK, type SubscriptionSettings as aL, type FreeTrialPeriod as aM, type BillingAdjustment as aN, type BillingAdjustmentPriceSummary as aO, type PriceDescription as aP, type LocationAndQuantity as aQ, type TaxableAddress as aR, type TaxableAddressTaxableAddressDataOneOf as aS, type ExtendedFields as aT, type ModifierGroup as aU, type TranslatableString as aV, type ItemModifier as aW, type BuyerInfo as aX, type BuyerInfoIdOneOf as aY, type CurrencyConversionDetails as aZ, type PriceSummary as a_, TextDetection as aa, AnimationDetection as ab, PreviewEmailType as ac, State as ad, Namespace as ae, SortOrder as af, VersioningMode as ag, OrderApprovalStrategy as ah, DeltaPaymentOptionType as ai, InventoryAction as aj, Placement as ak, SubdivisionType as al, SourceType as am, CustomFieldGroup as an, ValueType as ao, DepositType as ap, InvoiceStatus as aq, type OrderLineItem as ar, type ProductName as as, type CatalogReference as at, type DescriptionLine as au, type DescriptionLineValueOneOf as av, type DescriptionLineDescriptionLineValueOneOf as aw, type DescriptionLineName as ax, type PlainTextValue as ay, type Color as az, type PreparePaymentCollectionResponse as b, type CreditCardDetails as b$, type Address as b0, type StreetAddress as b1, type AddressLocation as b2, type FullAddressContactDetails as b3, type VatId as b4, type V1ShippingInformation as b5, type DeliveryLogistics as b6, type DeliveryLogisticsAddressOneOf as b7, type PickupDetails as b8, type PickupAddress as b9, type LineItemQuantityChange as bA, type LineItemPriceChange as bB, type ManagedLineItem as bC, type ManagedDiscount as bD, type TranslatedValue as bE, type LineItemAmount as bF, type ManagedAdditionalFee as bG, type TotalPriceChange as bH, type ShippingInformationChange as bI, type ShippingInformation as bJ, type SavedPaymentMethod as bK, type AuthorizedPaymentCreated as bL, type AuthorizedPaymentCaptured as bM, type AuthorizedPaymentVoided as bN, type RefundInitiated as bO, type RefundedPayment as bP, type RefundedPaymentKindOneOf as bQ, type RegularPaymentRefund as bR, type GiftCardPaymentRefund as bS, type MembershipPaymentRefund as bT, type PaymentRefunded as bU, type PaymentRefundFailed as bV, type RefundedAsStoreCredit as bW, type PaymentPending as bX, type PaymentPendingPaymentDetailsOneOf as bY, type RegularPayment as bZ, type RegularPaymentPaymentMethodDetailsOneOf as b_, type DeliveryTimeSlot as ba, type ShippingPrice as bb, type ShippingRegion as bc, type TaxSummary as bd, type OrderTaxInfo as be, type OrderTaxBreakdown as bf, type AppliedDiscount as bg, type AppliedDiscountDiscountSourceOneOf as bh, type Coupon as bi, type MerchantDiscount as bj, type MerchantDiscountMerchantDiscountReasonOneOf as bk, type DiscountRule as bl, type DiscountRuleName as bm, type LineItemDiscount as bn, type Activity as bo, type ActivityContentOneOf as bp, type CustomActivity as bq, type MerchantComment as br, type OrderRefunded as bs, type OrderCreatedFromExchange as bt, type NewExchangeOrderCreated as bu, type LineItemExchangeData as bv, type DraftOrderChangesApplied as bw, type OrderChange as bx, type OrderChangeValueOneOf as by, type LineItemChanges as bz, type PreparePaymentCollectionApplicationErrors as c, type TriggerRefundResponse as c$, type PaymentCanceled as c0, type PaymentCanceledPaymentDetailsOneOf as c1, type PaymentDeclined as c2, type PaymentDeclinedPaymentDetailsOneOf as c3, type ReceiptCreated as c4, type ReceiptCreatedReceiptInfoOneOf as c5, type WixReceipt as c6, type ExternalReceipt as c7, type ReceiptSent as c8, type ReceiptSentReceiptInfoOneOf as c9, type BulkMarkOrdersAsPaidResponse as cA, type BulkOrderResult as cB, type ItemMetadata as cC, type ApplicationError as cD, type BulkActionMetadata as cE, type GetRefundabilityStatusRequest as cF, type GetRefundabilityStatusResponse as cG, type Refundability as cH, type RefundabilityAdditionalRefundabilityInfoOneOf as cI, type CreatePaymentGatewayOrderRequest as cJ, type ChargedBy as cK, type CreatePaymentGatewayOrderResponse as cL, type ChargeMembershipsRequest as cM, type MembershipChargeItem as cN, type MembershipName as cO, type ServiceProperties as cP, type ChargeMembershipsResponse as cQ, type TriggerRefundRequest as cR, type PaymentRefund as cS, type RefundDetails as cT, type RefundItem as cU, type LineItemRefund as cV, type AdditionalFeeRefund as cW, type ShippingRefund as cX, type RefundSideEffects as cY, type RestockInfo as cZ, type RestockItem as c_, type CreatedBy as ca, type CreatedByStringOneOf as cb, type ChannelInfo as cc, type CustomField as cd, type BalanceSummary as ce, type Balance as cf, type AdditionalFee as cg, type FulfillmentStatusesAggregate as ch, type Tags as ci, type TagList as cj, type Location as ck, type OrderApproved as cl, type OrdersExperiments as cm, type OrderRejectedEventOrderRejected as cn, type OrderItemsRestocked as co, type V1RestockItem as cp, type PreparePaymentCollectionRequest as cq, type RedirectUrls as cr, type DelayedCaptureSettings as cs, type Duration as ct, type GetPaymentCollectabilityStatusRequest as cu, type RecordManuallyCollectedPaymentRequest as cv, type RecordManuallyCollectedPaymentResponse as cw, type MarkOrderAsPaidRequest as cx, type MarkOrderAsPaidResponse as cy, type BulkMarkOrdersAsPaidRequest as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type PreviewEmailByTypeRequest as d$, type OrderTransactions as d0, type Payment as d1, type PaymentPaymentDetailsOneOf as d2, type PaymentReceiptInfoOneOf as d3, type RegularPaymentDetails as d4, type RegularPaymentDetailsPaymentMethodDetailsOneOf as d5, type CreditCardPaymentMethodDetails as d6, type AuthorizationDetails as d7, type AuthorizationCapture as d8, type AuthorizationActionFailureDetails as d9, type EntityDeletedEvent as dA, type ActionEvent as dB, type Empty as dC, type MessageEnvelope as dD, type IdentificationData as dE, type IdentificationDataIdOneOf as dF, type ImageContent as dG, type SendBuyerConfirmationEmailRequest as dH, type SendBuyerConfirmationEmailResponse as dI, type SendBuyerPaymentsReceivedEmailRequest as dJ, type SendBuyerPaymentsReceivedEmailResponse as dK, type SendBuyerPickupConfirmationEmailRequest as dL, type SendBuyerPickupConfirmationEmailResponse as dM, type BulkSendBuyerPickupConfirmationEmailsRequest as dN, type BulkSendBuyerPickupConfirmationEmailsResponse as dO, type SendBuyerShippingConfirmationEmailRequest as dP, type SendBuyerShippingConfirmationEmailResponse as dQ, type BulkSendBuyerShippingConfirmationEmailsRequest as dR, type BulkSendBuyerShippingConfirmationEmailsResponse as dS, type SendMerchantOrderReceivedNotificationRequest as dT, type SendMerchantOrderReceivedNotificationResponse as dU, type SendCancelRefundEmailRequest as dV, type SendCancelRefundEmailResponse as dW, type SendRefundEmailRequest as dX, type SendRefundEmailResponse as dY, type SendMerchantOrderReceivedPushRequest as dZ, type SendMerchantOrderReceivedPushResponse as d_, type AuthorizationVoid as da, type V1ScheduledAction as db, type GiftCardPaymentDetails as dc, type MembershipPaymentDetails as dd, type WixReceiptInfo as de, type ExternalReceiptInfo as df, type Refund as dg, type RefundTransaction as dh, type RefundStatusInfo as di, type AggregatedRefundSummary as dj, type RefundItemsBreakdown as dk, type LineItemRefundSummary as dl, type CalculateRefundRequest as dm, type CalculateRefundItemRequest as dn, type CalculateRefundResponse as dp, type CalculateRefundItemResponse as dq, type VoidAuthorizedPaymentsRequest as dr, type CaptureAuthorizedPaymentsRequest as ds, type ChargeSavedPaymentMethodRequest as dt, type ChargeSavedPaymentMethodResponse as du, type DomainEvent as dv, type DomainEventBodyOneOf as dw, type EntityCreatedEvent as dx, type RestoreInfo as dy, type EntityUpdatedEvent as dz, type PaymentCapture as e, type VersionedDocumentId as e$, type PreviewEmailByTypeResponse as e0, type PreviewRefundEmailRequest as e1, type PreviewRefundEmailResponse as e2, type PreviewCancelEmailRequest as e3, type PreviewCancelEmailResponse as e4, type PreviewCancelRefundEmailRequest as e5, type PreviewCancelRefundEmailResponse as e6, type PreviewBuyerPaymentsReceivedEmailRequest as e7, type PreviewBuyerPaymentsReceivedEmailResponse as e8, type PreviewBuyerConfirmationEmailRequest as e9, type QueryOrdersForMetasiteResponse as eA, type PlatformPagingMetadata as eB, type Cursors as eC, type GetOrderForMetasiteRequest as eD, type GetOrderForMetasiteResponse as eE, type ListOrderTransactionsForMetasiteRequest as eF, type ListOrderTransactionsForMetasiteResponse as eG, type UpsertRefundRequest as eH, type UpsertRefundResponse as eI, type GetOrderOutOfBoxRequest as eJ, type GetOrderOutOfBoxResponse as eK, type GetOrderAgcRequest as eL, type GetOrderAgcResponse as eM, type GetOrderWithFilterByLocationRequest as eN, type GetOrderWithFilterByLocationResponse as eO, type V1UpdateOrderRequest as eP, type V1UpdateOrderResponse as eQ, type UpdateInternalDocumentsEvent as eR, type UpdateInternalDocumentsEventOperationOneOf as eS, type InternalDocument as eT, type InternalDocumentUpdateOperation as eU, type DeleteByIdsOperation as eV, type DeleteByFilterOperation as eW, type InternalDocumentUpdateByFilterOperation as eX, type InternalUpdateExistingOperation as eY, type VersionedDocumentUpdateOperation as eZ, type VersionedDeleteByIdsOperation as e_, type PreviewBuyerConfirmationEmailResponse as ea, type PreviewBuyerPickupConfirmationEmailRequest as eb, type PreviewBuyerPickupConfirmationEmailResponse as ec, type PreviewShippingConfirmationEmailRequest as ed, type PreviewShippingConfirmationEmailResponse as ee, type PreviewResendDownloadLinksEmailRequest as ef, type PreviewResendDownloadLinksEmailResponse as eg, type TriggerReindexOrderRequest as eh, type SnapshotMessage as ei, type PaymentStatusUpdated as ej, type GetMetasiteDataRequest as ek, type GetMetasiteDataResponse as el, type MetaSite as em, type App as en, type SeoData as eo, type MetaTag as ep, type HtmlApplication as eq, type ExternalUriMapping as er, type UserDataResponse as es, type QueryOrdersForMetasiteRequest 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 CaptureAuthorizedPaymentsApplicationErrors as f, type UpdateBuyerEmailResponse as f$, type TriggerReindexRequest as f0, type TriggerReindexResponse as f1, type BatchOfTriggerReindexOrderRequest as f2, type ChargebackCreated as f3, type ChargebackReversed as f4, type DiffmatokyPayload as f5, type ErrorInformation as f6, type ContinueSideEffectsFlowInLegacyData as f7, type IndexingMessage as f8, type GetOrderRequest as f9, type AppliedDiscountDeltaDeltaOneOf as fA, type AdditionalFeeDelta as fB, type AdditionalFeeDeltaDeltaOneOf as fC, type DraftOrderCommitSettings as fD, type InventoryUpdateDetails as fE, type CommitDeltasResponse as fF, type OrderDeltasCommitted as fG, type CommittedDiffs as fH, type CommittedDiffsShippingUpdateInfoOneOf as fI, type LineItemDelta as fJ, type LineItemDeltaDeltaOneOf as fK, type ArchiveOrderRequest as fL, type ArchiveOrderResponse as fM, type BulkArchiveOrdersRequest as fN, type BulkArchiveOrdersResponse as fO, type BulkArchiveOrdersByFilterRequest as fP, type BulkArchiveOrdersByFilterResponse as fQ, type UnArchiveOrderRequest as fR, type UnArchiveOrderResponse as fS, type BulkUnArchiveOrdersRequest as fT, type BulkUnArchiveOrdersResponse as fU, type BulkUnArchiveOrdersByFilterRequest as fV, type BulkUnArchiveOrdersByFilterResponse as fW, type UpdateBuyerInfoRequest as fX, type BuyerInfoUpdate as fY, type UpdateBuyerInfoResponse as fZ, type UpdateBuyerEmailRequest as f_, type GetOrderResponse as fa, type InternalQueryOrdersResponse as fb, type QueryOrderRequest as fc, type QueryOrderResponse as fd, type SearchOrdersRequest as fe, type CursorSearch as ff, type CursorSearchPagingMethodOneOf as fg, type CursorPagingMetadata as fh, type CreateOrderRequest as fi, type OrderCreationSettings as fj, type OrderCreateNotifications as fk, type CreateOrderResponse as fl, type UpdateOrderRequest as fm, type UpdateOrderResponse as fn, type BulkUpdateOrdersRequest as fo, type CommitDeltasRequest as fp, type DraftOrderDiffs as fq, type DraftOrderDiffsShippingUpdateInfoOneOf as fr, type DraftOrderDiffsBuyerUpdateInfoOneOf as fs, type DraftOrderDiffsBillingUpdateInfoOneOf as ft, type DraftOrderDiffsRecipientUpdateInfoOneOf as fu, type V1LineItemDelta as fv, type V1LineItemDeltaDeltaOneOf as fw, type OrderLineItemChangedDetails as fx, type ItemChangedDetails as fy, type AppliedDiscountDelta as fz, type GetOrderApplicationErrors as g, type BulkMarkAsUnfulfilledByFilterResponse as g$, type UpdateOrderShippingAddressRequest as g0, type UpdateOrderShippingAddressResponse as g1, type UpdateBillingContactDetailsRequest as g2, type UpdateBillingContactDetailsResponse as g3, type UpdateOrderLineItemRequest as g4, type UpdateOrderLineItemResponse as g5, type UpdateOrderLineItemsRequest as g6, type MaskedOrderLineItem as g7, type UpdateOrderLineItemsResponse as g8, type AddInternalActivityRequest as g9, type AddActivitiesRequest as gA, type AddActivitiesResponse as gB, type UpdateActivityRequest as gC, type UpdateActivityResponse as gD, type DeleteActivityRequest as gE, type DeleteActivityResponse as gF, type UpdateLineItemsDescriptionLinesRequest as gG, type LineItemUpdate as gH, type UpdateLineItemsDescriptionLinesResponse as gI, type MarkOrderAsSeenByHumanRequest as gJ, type MarkOrderAsSeenByHumanResponse as gK, type CancelOrderRequest as gL, type OrderCanceledEventOrderCanceled as gM, type UpdateOrderStatusRequest as gN, type UpdateOrderStatusResponse as gO, type MarkAsFulfilledRequest as gP, type MarkAsFulfilledResponse as gQ, type FulfillmentStatusUpdated as gR, type BulkMarkAsFulfilledRequest as gS, type BulkMarkAsFulfilledResponse as gT, type BulkMarkAsFulfilledByFilterRequest as gU, type BulkMarkAsFulfilledByFilterResponse as gV, type MarkAsUnfulfilledRequest as gW, type MarkAsUnfulfilledResponse as gX, type BulkMarkAsUnfulfilledRequest as gY, type BulkMarkAsUnfulfilledResponse as gZ, type BulkMarkAsUnfulfilledByFilterRequest as g_, type InternalActivity as ga, type InternalActivityContentOneOf as gb, type OrderPlaced as gc, type OrderPaid as gd, type OrderFulfilled as ge, type OrderNotFulfilled as gf, type OrderCanceled as gg, type DownloadLinkSent as gh, type TrackingNumberAdded as gi, type TrackingNumberEdited as gj, type TrackingLinkAdded as gk, type ShippingConfirmationEmailSent as gl, type InvoiceAdded as gm, type InvoiceSent as gn, type FulfillerEmailSent as go, type ShippingAddressEdited as gp, type EmailEdited as gq, type PickupReadyEmailSent as gr, type OrderPartiallyPaid as gs, type OrderPending as gt, type OrderRejected as gu, type AddInternalActivityResponse as gv, type AddActivityRequest as gw, type PublicActivity as gx, type PublicActivityContentOneOf as gy, type AddActivityResponse as gz, type OrderSearch as h, type ChargeMembershipsOptions as h$, type BulkSetBusinessLocationRequest as h0, type BulkSetBusinessLocationResponse as h1, type BulkSetBusinessLocationResult as h2, type V1MarkOrderAsPaidRequest as h3, type V1MarkOrderAsPaidResponse as h4, type V1BulkMarkOrdersAsPaidRequest as h5, type V1BulkMarkOrdersAsPaidResponse as h6, type V1CreatePaymentGatewayOrderRequest as h7, type V1CreatePaymentGatewayOrderResponse as h8, type GetShipmentsRequest as h9, type Subdivision as hA, type StandardDetails as hB, type InvoiceDates as hC, type LineItems as hD, type LineItem as hE, type BigDecimalWrapper as hF, type LineItemTax as hG, type Source as hH, type LineItemMetaData as hI, type Locale as hJ, type TotalPrice as hK, type ItemizedFee as hL, type Discount as hM, type DiscountOneDiscountTypeOneOf as hN, type CalculatedTaxes as hO, type CalculatedTax as hP, type Payments as hQ, type InvoicesPayment as hR, type MetaData as hS, type InvoiceDynamicPriceTotals as hT, type CustomFieldValue as hU, type Value as hV, type Deposit as hW, type TriggerSideEffectsFromLegacyData as hX, type BaseEventMetadata as hY, type EventMetadata as hZ, type PaymentCollectionCreatePaymentGatewayOrderOptions as h_, type GetShipmentsResponse as ha, type AggregateOrdersRequest as hb, type AggregateOrdersResponse as hc, type DecrementItemsQuantityRequest as hd, type DecrementData as he, type DecrementItemsQuantityResponse as hf, type BulkUpdateOrderTagsRequest as hg, type BulkUpdateOrderTagsResult as hh, type Task as hi, type TaskKey as hj, type TaskAction as hk, type TaskActionActionOneOf as hl, type Complete as hm, type Cancel as hn, type Reschedule as ho, type InvoiceSentEvent as hp, type IdAndVersion as hq, type InvoiceFields as hr, type Customer as hs, type Email as ht, type QuotesAddress as hu, type AddressDescription as hv, type Phone as hw, type Company as hx, type CommonAddress as hy, type CommonAddressStreetOneOf as hz, type CreateOrderOptions as i, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as i$, type TriggerRefundOptions as i0, type OrderSearchSpec as i1, type CommitDeltasOptions as i2, type UpdateOrderLineItemIdentifiers as i3, type UpdateOrderLineItem as i4, type UpdateActivityIdentifiers as i5, type DeleteActivityIdentifiers as i6, type AggregateOrdersOptions as i7, type DescriptionLineTypeWithLiterals as i8, type ItemTypeItemTypeWithLiterals as i9, type TransactionStatusWithLiterals as iA, type AuthorizationCaptureStatusWithLiterals as iB, type AuthorizationVoidStatusWithLiterals as iC, type ReasonWithLiterals as iD, type ActionTypeWithLiterals as iE, type MembershipPaymentStatusWithLiterals as iF, type RefundStatusWithLiterals as iG, type WebhookIdentityTypeWithLiterals as iH, type TextDetectionWithLiterals as iI, type AnimationDetectionWithLiterals as iJ, type PreviewEmailTypeWithLiterals as iK, type StateWithLiterals as iL, type NamespaceWithLiterals as iM, type SortOrderWithLiterals as iN, type VersioningModeWithLiterals as iO, type OrderApprovalStrategyWithLiterals as iP, type DeltaPaymentOptionTypeWithLiterals as iQ, type InventoryActionWithLiterals as iR, type PlacementWithLiterals as iS, type SubdivisionTypeWithLiterals as iT, type SourceTypeWithLiterals as iU, type CustomFieldGroupWithLiterals as iV, type ValueTypeWithLiterals as iW, type DepositTypeWithLiterals as iX, type InvoiceStatusWithLiterals as iY, type RecordManuallyCollectedPaymentApplicationErrors as iZ, type PaymentCollectionMarkOrderAsPaidApplicationErrors as i_, type PaymentOptionTypeWithLiterals as ia, type JurisdictionTypeWithLiterals as ib, type SubscriptionFrequencyWithLiterals as ic, type AdjustmentTypeWithLiterals as id, type TaxableAddressTypeWithLiterals as ie, type PaymentStatusWithLiterals as ig, type FulfillmentStatusWithLiterals as ih, type WeightUnitWithLiterals as ii, type VatTypeWithLiterals as ij, type PickupMethodWithLiterals as ik, type OrderStatusWithLiterals as il, type DiscountTypeWithLiterals as im, type DiscountReasonWithLiterals as io, type LineItemQuantityChangeTypeWithLiterals as ip, type ActivityTypeWithLiterals as iq, type AttributionSourceWithLiterals as ir, type ChannelTypeWithLiterals as is, type ScheduledActionWithLiterals as it, type DurationUnitWithLiterals as iu, type PaymentCollectabilityStatusWithLiterals as iv, type RefundableStatusWithLiterals as iw, type NonRefundableReasonWithLiterals as ix, type ManuallyRefundableReasonWithLiterals as iy, type RestockTypeWithLiterals as iz, type CreateOrderApplicationErrors as j, type TriggerRefundApplicationErrors as j0, type CommitDeltasApplicationErrors as j1, type UpdateOrderStatusApplicationErrors as j2, onOrderApproved as j3, onOrderUpdated as j4, onOrderCanceled as j5, onOrderCreated as j6, preparePaymentCollection as j7, getPaymentCollectabilityStatus as j8, voidAuthorizedPayments as j9, captureAuthorizedPayments as ja, getOrder as jb, type CommonSearchWithEntityContext as jc, createOrder as jd, updateOrder as je, bulkUpdateOrders as jf, cancelOrder as jg, bulkUpdateOrderTags as jh, type UpdateOrderApplicationErrors as k, type BulkUpdateOrdersResponse as l, type CancelOrderOptions as m, type CancelOrderResponse as n, type CancelOrderApplicationErrors as o, type BulkUpdateOrderTagsOptions as p, type BulkUpdateOrderTagsResponse as q, type OrderApprovedEnvelope as r, type OrderUpdatedEnvelope as s, type OrderCanceledEnvelope as t, type OrderCreatedEnvelope as u, PaymentOptionType as v, SubscriptionFrequency as w, PaymentStatus as x, VatType as y, PickupMethod as z };
7523
+ export { NonRefundableReason as $, AdjustmentType as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, OrderStatus as E, FulfillmentStatus as F, type GetPaymentCollectabilityStatusResponse as G, DiscountType as H, ItemTypeItemType as I, JurisdictionType as J, DiscountReason as K, LineItemQuantityChangeType as L, type MaskedOrder as M, ActivityType as N, type Order as O, type Price as P, AttributionSource as Q, ChannelType as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, ScheduledAction as X, DurationUnit as Y, PaymentCollectabilityStatus as Z, RefundableStatus as _, type PreparePaymentCollectionOptions as a, type PriceSummary as a$, ManuallyRefundableReason as a0, RestockType as a1, TransactionStatus as a2, AuthorizationCaptureStatus as a3, AuthorizationVoidStatus as a4, Reason as a5, ActionType as a6, ChargebackStatus as a7, MembershipPaymentStatus as a8, RefundStatus as a9, type Color as aA, type FocalPoint as aB, type PhysicalProperties as aC, type ItemType as aD, type ItemTypeItemTypeDataOneOf as aE, type ItemTaxFullDetails as aF, type LineItemTaxInfo as aG, type LineItemTaxBreakdown as aH, type DigitalFile as aI, type SubscriptionInfo as aJ, type SubscriptionTitle as aK, type SubscriptionDescription as aL, type SubscriptionSettings as aM, type FreeTrialPeriod as aN, type BillingAdjustment as aO, type BillingAdjustmentPriceSummary as aP, type PriceDescription as aQ, type LocationAndQuantity as aR, type TaxableAddress as aS, type TaxableAddressTaxableAddressDataOneOf as aT, type ExtendedFields as aU, type ModifierGroup as aV, type TranslatableString as aW, type ItemModifier as aX, type BuyerInfo as aY, type BuyerInfoIdOneOf as aZ, type CurrencyConversionDetails as a_, WebhookIdentityType as aa, TextDetection as ab, AnimationDetection as ac, PreviewEmailType as ad, State as ae, Namespace as af, SortOrder as ag, VersioningMode as ah, OrderApprovalStrategy as ai, DeltaPaymentOptionType as aj, InventoryAction as ak, Placement as al, SubdivisionType as am, SourceType as an, CustomFieldGroup as ao, ValueType as ap, DepositType as aq, InvoiceStatus as ar, type OrderLineItem as as, type ProductName as at, type CatalogReference as au, type DescriptionLine as av, type DescriptionLineValueOneOf as aw, type DescriptionLineDescriptionLineValueOneOf as ax, type DescriptionLineName as ay, type PlainTextValue as az, type PreparePaymentCollectionResponse as b, type RegularPaymentPaymentMethodDetailsOneOf as b$, type AddressWithContact as b0, type Address as b1, type StreetAddress as b2, type AddressLocation as b3, type FullAddressContactDetails as b4, type VatId as b5, type V1ShippingInformation as b6, type DeliveryLogistics as b7, type DeliveryLogisticsAddressOneOf as b8, type PickupDetails as b9, type LineItemChanges as bA, type LineItemQuantityChange as bB, type LineItemPriceChange as bC, type ManagedLineItem as bD, type ManagedDiscount as bE, type TranslatedValue as bF, type LineItemAmount as bG, type ManagedAdditionalFee as bH, type TotalPriceChange as bI, type ShippingInformationChange as bJ, type ShippingInformation as bK, type SavedPaymentMethod as bL, type AuthorizedPaymentCreated as bM, type AuthorizedPaymentCaptured as bN, type AuthorizedPaymentVoided as bO, type RefundInitiated as bP, type RefundedPayment as bQ, type RefundedPaymentKindOneOf as bR, type RegularPaymentRefund as bS, type GiftCardPaymentRefund as bT, type MembershipPaymentRefund as bU, type PaymentRefunded as bV, type PaymentRefundFailed as bW, type RefundedAsStoreCredit as bX, type PaymentPending as bY, type PaymentPendingPaymentDetailsOneOf as bZ, type RegularPayment as b_, type PickupAddress as ba, type DeliveryTimeSlot as bb, type ShippingPrice as bc, type ShippingRegion as bd, type TaxSummary as be, type OrderTaxInfo as bf, type OrderTaxBreakdown as bg, type AppliedDiscount as bh, type AppliedDiscountDiscountSourceOneOf as bi, type Coupon as bj, type MerchantDiscount as bk, type MerchantDiscountMerchantDiscountReasonOneOf as bl, type DiscountRule as bm, type DiscountRuleName as bn, type LineItemDiscount as bo, type Activity as bp, type ActivityContentOneOf as bq, type CustomActivity as br, type MerchantComment as bs, type OrderRefunded as bt, type OrderCreatedFromExchange as bu, type NewExchangeOrderCreated as bv, type LineItemExchangeData as bw, type DraftOrderChangesApplied as bx, type OrderChange as by, type OrderChangeValueOneOf as bz, type PreparePaymentCollectionApplicationErrors as c, type RefundSideEffects as c$, type CreditCardDetails as c0, type PaymentCanceled as c1, type PaymentCanceledPaymentDetailsOneOf as c2, type PaymentDeclined as c3, type PaymentDeclinedPaymentDetailsOneOf as c4, type ReceiptCreated as c5, type ReceiptCreatedReceiptInfoOneOf as c6, type WixReceipt as c7, type ExternalReceipt as c8, type ReceiptSent as c9, type MarkOrderAsPaidRequest as cA, type MarkOrderAsPaidResponse as cB, type BulkMarkOrdersAsPaidRequest as cC, type BulkMarkOrdersAsPaidResponse as cD, type BulkOrderResult as cE, type ItemMetadata as cF, type ApplicationError as cG, type BulkActionMetadata as cH, type GetRefundabilityStatusRequest as cI, type GetRefundabilityStatusResponse as cJ, type Refundability as cK, type RefundabilityAdditionalRefundabilityInfoOneOf as cL, type CreatePaymentGatewayOrderRequest as cM, type ChargedBy as cN, type CreatePaymentGatewayOrderResponse as cO, type ChargeMembershipsRequest as cP, type MembershipChargeItem as cQ, type MembershipName as cR, type ServiceProperties as cS, type ChargeMembershipsResponse as cT, type TriggerRefundRequest as cU, type PaymentRefund as cV, type RefundDetails as cW, type RefundItem as cX, type LineItemRefund as cY, type AdditionalFeeRefund as cZ, type ShippingRefund as c_, type ReceiptSentReceiptInfoOneOf as ca, type ChargebackCreated as cb, type ChargebackReversed as cc, type CreatedBy as cd, type CreatedByStringOneOf as ce, type ChannelInfo as cf, type CustomField as cg, type BalanceSummary as ch, type Balance as ci, type AdditionalFee as cj, type FulfillmentStatusesAggregate as ck, type Tags as cl, type TagList as cm, type Location as cn, type OrderApproved as co, type OrdersExperiments as cp, type OrderRejectedEventOrderRejected as cq, type OrderItemsRestocked as cr, type V1RestockItem as cs, type PreparePaymentCollectionRequest as ct, type RedirectUrls as cu, type DelayedCaptureSettings as cv, type Duration as cw, type GetPaymentCollectabilityStatusRequest as cx, type RecordManuallyCollectedPaymentRequest as cy, type RecordManuallyCollectedPaymentResponse as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type SendRefundEmailRequest as d$, type RestockInfo as d0, type RestockItem as d1, type TriggerRefundResponse as d2, type OrderTransactions as d3, type Payment as d4, type PaymentPaymentDetailsOneOf as d5, type PaymentReceiptInfoOneOf as d6, type RegularPaymentDetails as d7, type RegularPaymentDetailsPaymentMethodDetailsOneOf as d8, type CreditCardPaymentMethodDetails as d9, type DomainEventBodyOneOf as dA, type EntityCreatedEvent as dB, type RestoreInfo as dC, type EntityUpdatedEvent as dD, type EntityDeletedEvent as dE, type ActionEvent as dF, type Empty as dG, type MessageEnvelope as dH, type IdentificationData as dI, type IdentificationDataIdOneOf as dJ, type ImageContent as dK, type SendBuyerConfirmationEmailRequest as dL, type SendBuyerConfirmationEmailResponse as dM, type SendBuyerPaymentsReceivedEmailRequest as dN, type SendBuyerPaymentsReceivedEmailResponse as dO, type SendBuyerPickupConfirmationEmailRequest as dP, type SendBuyerPickupConfirmationEmailResponse as dQ, type BulkSendBuyerPickupConfirmationEmailsRequest as dR, type BulkSendBuyerPickupConfirmationEmailsResponse as dS, type SendBuyerShippingConfirmationEmailRequest as dT, type SendBuyerShippingConfirmationEmailResponse as dU, type BulkSendBuyerShippingConfirmationEmailsRequest as dV, type BulkSendBuyerShippingConfirmationEmailsResponse as dW, type SendMerchantOrderReceivedNotificationRequest as dX, type SendMerchantOrderReceivedNotificationResponse as dY, type SendCancelRefundEmailRequest as dZ, type SendCancelRefundEmailResponse as d_, type AuthorizationDetails as da, type AuthorizationCapture as db, type AuthorizationActionFailureDetails as dc, type AuthorizationVoid as dd, type V1ScheduledAction as de, type Chargeback as df, type GiftCardPaymentDetails as dg, type MembershipPaymentDetails as dh, type WixReceiptInfo as di, type ExternalReceiptInfo as dj, type Refund as dk, type RefundTransaction as dl, type RefundStatusInfo as dm, type AggregatedRefundSummary as dn, type RefundItemsBreakdown as dp, type LineItemRefundSummary as dq, type CalculateRefundRequest as dr, type CalculateRefundItemRequest as ds, type CalculateRefundResponse as dt, type CalculateRefundItemResponse as du, type VoidAuthorizedPaymentsRequest as dv, type CaptureAuthorizedPaymentsRequest as dw, type ChargeSavedPaymentMethodRequest as dx, type ChargeSavedPaymentMethodResponse as dy, type DomainEvent as dz, type PaymentCapture as e, type InternalDocumentUpdateByFilterOperation as e$, type SendRefundEmailResponse as e0, type SendMerchantOrderReceivedPushRequest as e1, type SendMerchantOrderReceivedPushResponse as e2, type PreviewEmailByTypeRequest as e3, type PreviewEmailByTypeResponse as e4, type PreviewRefundEmailRequest as e5, type PreviewRefundEmailResponse as e6, type PreviewCancelEmailRequest as e7, type PreviewCancelEmailResponse as e8, type PreviewCancelRefundEmailRequest as e9, type PlatformQueryPagingMethodOneOf as eA, type Sorting as eB, type PlatformPaging as eC, type CursorPaging as eD, type QueryOrdersForMetasiteResponse as eE, type PlatformPagingMetadata as eF, type Cursors as eG, type GetOrderForMetasiteRequest as eH, type GetOrderForMetasiteResponse as eI, type ListOrderTransactionsForMetasiteRequest as eJ, type ListOrderTransactionsForMetasiteResponse as eK, type UpsertRefundRequest as eL, type UpsertRefundResponse as eM, type GetOrderOutOfBoxRequest as eN, type GetOrderOutOfBoxResponse as eO, type GetOrderAgcRequest as eP, type GetOrderAgcResponse as eQ, type GetOrderWithFilterByLocationRequest as eR, type GetOrderWithFilterByLocationResponse as eS, type V1UpdateOrderRequest as eT, type V1UpdateOrderResponse as eU, type UpdateInternalDocumentsEvent as eV, type UpdateInternalDocumentsEventOperationOneOf as eW, type InternalDocument as eX, type InternalDocumentUpdateOperation as eY, type DeleteByIdsOperation as eZ, type DeleteByFilterOperation as e_, type PreviewCancelRefundEmailResponse as ea, type PreviewBuyerPaymentsReceivedEmailRequest as eb, type PreviewBuyerPaymentsReceivedEmailResponse as ec, type PreviewBuyerConfirmationEmailRequest as ed, type PreviewBuyerConfirmationEmailResponse as ee, type PreviewBuyerPickupConfirmationEmailRequest as ef, type PreviewBuyerPickupConfirmationEmailResponse as eg, type PreviewShippingConfirmationEmailRequest as eh, type PreviewShippingConfirmationEmailResponse as ei, type PreviewResendDownloadLinksEmailRequest as ej, type PreviewResendDownloadLinksEmailResponse as ek, type TriggerReindexOrderRequest as el, type SnapshotMessage as em, type PaymentStatusUpdated as en, type GetMetasiteDataRequest as eo, type GetMetasiteDataResponse as ep, type MetaSite as eq, type App as er, type SeoData as es, type MetaTag as et, type HtmlApplication as eu, type ExternalUriMapping as ev, type UserDataResponse as ew, type QueryOrdersForMetasiteRequest as ex, type InternalQueryOrdersRequest as ey, type PlatformQuery as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type UpdateBuyerInfoResponse as f$, type InternalUpdateExistingOperation as f0, type VersionedDocumentUpdateOperation as f1, type VersionedDeleteByIdsOperation as f2, type VersionedDocumentId as f3, type TriggerReindexRequest as f4, type TriggerReindexResponse as f5, type BatchOfTriggerReindexOrderRequest as f6, type DiffmatokyPayload as f7, type ErrorInformation as f8, type ContinueSideEffectsFlowInLegacyData as f9, type ItemChangedDetails as fA, type AppliedDiscountDelta as fB, type AppliedDiscountDeltaDeltaOneOf as fC, type AdditionalFeeDelta as fD, type AdditionalFeeDeltaDeltaOneOf as fE, type DraftOrderCommitSettings as fF, type InventoryUpdateDetails as fG, type CommitDeltasResponse as fH, type OrderDeltasCommitted as fI, type CommittedDiffs as fJ, type CommittedDiffsShippingUpdateInfoOneOf as fK, type LineItemDelta as fL, type LineItemDeltaDeltaOneOf as fM, type ArchiveOrderRequest as fN, type ArchiveOrderResponse as fO, type BulkArchiveOrdersRequest as fP, type BulkArchiveOrdersResponse as fQ, type BulkArchiveOrdersByFilterRequest as fR, type BulkArchiveOrdersByFilterResponse as fS, type UnArchiveOrderRequest as fT, type UnArchiveOrderResponse as fU, type BulkUnArchiveOrdersRequest as fV, type BulkUnArchiveOrdersResponse as fW, type BulkUnArchiveOrdersByFilterRequest as fX, type BulkUnArchiveOrdersByFilterResponse as fY, type UpdateBuyerInfoRequest as fZ, type BuyerInfoUpdate as f_, type IndexingMessage as fa, type GetOrderRequest as fb, type GetOrderResponse as fc, type InternalQueryOrdersResponse as fd, type QueryOrderRequest as fe, type QueryOrderResponse as ff, type SearchOrdersRequest as fg, type CursorSearch as fh, type CursorSearchPagingMethodOneOf as fi, type CursorPagingMetadata as fj, type CreateOrderRequest as fk, type OrderCreationSettings as fl, type OrderCreateNotifications as fm, type CreateOrderResponse as fn, type UpdateOrderRequest as fo, type UpdateOrderResponse as fp, type BulkUpdateOrdersRequest as fq, type CommitDeltasRequest as fr, type DraftOrderDiffs as fs, type DraftOrderDiffsShippingUpdateInfoOneOf as ft, type DraftOrderDiffsBuyerUpdateInfoOneOf as fu, type DraftOrderDiffsBillingUpdateInfoOneOf as fv, type DraftOrderDiffsRecipientUpdateInfoOneOf as fw, type V1LineItemDelta as fx, type V1LineItemDeltaDeltaOneOf as fy, type OrderLineItemChangedDetails as fz, type GetOrderApplicationErrors as g, type BulkMarkAsUnfulfilledResponse as g$, type UpdateBuyerEmailRequest as g0, type UpdateBuyerEmailResponse as g1, type UpdateOrderShippingAddressRequest as g2, type UpdateOrderShippingAddressResponse as g3, type UpdateBillingContactDetailsRequest as g4, type UpdateBillingContactDetailsResponse as g5, type UpdateOrderLineItemRequest as g6, type UpdateOrderLineItemResponse as g7, type UpdateOrderLineItemsRequest as g8, type MaskedOrderLineItem as g9, type PublicActivityContentOneOf as gA, type AddActivityResponse as gB, type AddActivitiesRequest as gC, type AddActivitiesResponse as gD, type UpdateActivityRequest as gE, type UpdateActivityResponse as gF, type DeleteActivityRequest as gG, type DeleteActivityResponse as gH, type UpdateLineItemsDescriptionLinesRequest as gI, type LineItemUpdate as gJ, type UpdateLineItemsDescriptionLinesResponse as gK, type MarkOrderAsSeenByHumanRequest as gL, type MarkOrderAsSeenByHumanResponse as gM, type CancelOrderRequest as gN, type OrderCanceledEventOrderCanceled as gO, type UpdateOrderStatusRequest as gP, type UpdateOrderStatusResponse as gQ, type MarkAsFulfilledRequest as gR, type MarkAsFulfilledResponse as gS, type FulfillmentStatusUpdated as gT, type BulkMarkAsFulfilledRequest as gU, type BulkMarkAsFulfilledResponse as gV, type BulkMarkAsFulfilledByFilterRequest as gW, type BulkMarkAsFulfilledByFilterResponse as gX, type MarkAsUnfulfilledRequest as gY, type MarkAsUnfulfilledResponse as gZ, type BulkMarkAsUnfulfilledRequest as g_, type UpdateOrderLineItemsResponse as ga, type AddInternalActivityRequest as gb, type InternalActivity as gc, type InternalActivityContentOneOf as gd, type OrderPlaced as ge, type OrderPaid as gf, type OrderFulfilled as gg, type OrderNotFulfilled as gh, type OrderCanceled as gi, type DownloadLinkSent as gj, type TrackingNumberAdded as gk, type TrackingNumberEdited as gl, type TrackingLinkAdded as gm, type ShippingConfirmationEmailSent as gn, type InvoiceAdded as go, type InvoiceSent as gp, type FulfillerEmailSent as gq, type ShippingAddressEdited as gr, type EmailEdited as gs, type PickupReadyEmailSent as gt, type OrderPartiallyPaid as gu, type OrderPending as gv, type OrderRejected as gw, type AddInternalActivityResponse as gx, type AddActivityRequest as gy, type PublicActivity as gz, type OrderSearch as h, type EventMetadata as h$, type BulkMarkAsUnfulfilledByFilterRequest as h0, type BulkMarkAsUnfulfilledByFilterResponse as h1, type BulkSetBusinessLocationRequest as h2, type BulkSetBusinessLocationResponse as h3, type BulkSetBusinessLocationResult as h4, type V1MarkOrderAsPaidRequest as h5, type V1MarkOrderAsPaidResponse as h6, type V1BulkMarkOrdersAsPaidRequest as h7, type V1BulkMarkOrdersAsPaidResponse as h8, type V1CreatePaymentGatewayOrderRequest as h9, type CommonAddress as hA, type CommonAddressStreetOneOf as hB, type Subdivision as hC, type StandardDetails as hD, type InvoiceDates as hE, type LineItems as hF, type LineItem as hG, type BigDecimalWrapper as hH, type LineItemTax as hI, type Source as hJ, type LineItemMetaData as hK, type Locale as hL, type TotalPrice as hM, type ItemizedFee as hN, type Discount as hO, type DiscountOneDiscountTypeOneOf as hP, type CalculatedTaxes as hQ, type CalculatedTax as hR, type Payments as hS, type InvoicesPayment as hT, type MetaData as hU, type InvoiceDynamicPriceTotals as hV, type CustomFieldValue as hW, type Value as hX, type Deposit as hY, type TriggerSideEffectsFromLegacyData as hZ, type BaseEventMetadata as h_, type V1CreatePaymentGatewayOrderResponse as ha, type GetShipmentsRequest as hb, type GetShipmentsResponse as hc, type AggregateOrdersRequest as hd, type AggregateOrdersResponse as he, type DecrementItemsQuantityRequest as hf, type DecrementData as hg, type DecrementItemsQuantityResponse as hh, type BulkUpdateOrderTagsRequest as hi, type BulkUpdateOrderTagsResult as hj, type Task as hk, type TaskKey as hl, type TaskAction as hm, type TaskActionActionOneOf as hn, type Complete as ho, type Cancel as hp, type Reschedule as hq, type InvoiceSentEvent as hr, type IdAndVersion as hs, type InvoiceFields as ht, type Customer as hu, type Email as hv, type QuotesAddress as hw, type AddressDescription as hx, type Phone as hy, type Company as hz, type CreateOrderOptions as i, type InvoiceStatusWithLiterals as i$, type PaymentCollectionCreatePaymentGatewayOrderOptions as i0, type ChargeMembershipsOptions as i1, type TriggerRefundOptions as i2, type OrderSearchSpec as i3, type CommitDeltasOptions as i4, type UpdateOrderLineItemIdentifiers as i5, type UpdateOrderLineItem as i6, type UpdateActivityIdentifiers as i7, type DeleteActivityIdentifiers as i8, type AggregateOrdersOptions as i9, type ManuallyRefundableReasonWithLiterals as iA, type RestockTypeWithLiterals as iB, type TransactionStatusWithLiterals as iC, type AuthorizationCaptureStatusWithLiterals as iD, type AuthorizationVoidStatusWithLiterals as iE, type ReasonWithLiterals as iF, type ActionTypeWithLiterals as iG, type ChargebackStatusWithLiterals as iH, type MembershipPaymentStatusWithLiterals as iI, type RefundStatusWithLiterals as iJ, type WebhookIdentityTypeWithLiterals as iK, type TextDetectionWithLiterals as iL, type AnimationDetectionWithLiterals as iM, type PreviewEmailTypeWithLiterals as iN, type StateWithLiterals as iO, type NamespaceWithLiterals as iP, type SortOrderWithLiterals as iQ, type VersioningModeWithLiterals as iR, type OrderApprovalStrategyWithLiterals as iS, type DeltaPaymentOptionTypeWithLiterals as iT, type InventoryActionWithLiterals as iU, type PlacementWithLiterals as iV, type SubdivisionTypeWithLiterals as iW, type SourceTypeWithLiterals as iX, type CustomFieldGroupWithLiterals as iY, type ValueTypeWithLiterals as iZ, type DepositTypeWithLiterals as i_, type DescriptionLineTypeWithLiterals as ia, type ItemTypeItemTypeWithLiterals as ib, type PaymentOptionTypeWithLiterals as ic, type JurisdictionTypeWithLiterals as id, type SubscriptionFrequencyWithLiterals as ie, type AdjustmentTypeWithLiterals as ig, type TaxableAddressTypeWithLiterals as ih, type PaymentStatusWithLiterals as ii, type FulfillmentStatusWithLiterals as ij, type WeightUnitWithLiterals as ik, type VatTypeWithLiterals as il, type PickupMethodWithLiterals as im, type OrderStatusWithLiterals as io, type DiscountTypeWithLiterals as ip, type DiscountReasonWithLiterals as iq, type LineItemQuantityChangeTypeWithLiterals as ir, type ActivityTypeWithLiterals as is, type AttributionSourceWithLiterals as it, type ChannelTypeWithLiterals as iu, type ScheduledActionWithLiterals as iv, type DurationUnitWithLiterals as iw, type PaymentCollectabilityStatusWithLiterals as ix, type RefundableStatusWithLiterals as iy, type NonRefundableReasonWithLiterals as iz, type CreateOrderApplicationErrors as j, type RecordManuallyCollectedPaymentApplicationErrors as j0, type PaymentCollectionMarkOrderAsPaidApplicationErrors as j1, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as j2, type TriggerRefundApplicationErrors as j3, type CommitDeltasApplicationErrors as j4, type UpdateOrderStatusApplicationErrors as j5, onOrderApproved as j6, onOrderUpdated as j7, onOrderCanceled as j8, onOrderCreated as j9, preparePaymentCollection as ja, getPaymentCollectabilityStatus as jb, voidAuthorizedPayments as jc, captureAuthorizedPayments as jd, getOrder as je, type CommonSearchWithEntityContext as jf, createOrder as jg, updateOrder as jh, bulkUpdateOrders as ji, cancelOrder as jj, bulkUpdateOrderTags as jk, type UpdateOrderApplicationErrors as k, type BulkUpdateOrdersResponse as l, type CancelOrderOptions as m, type CancelOrderResponse as n, type CancelOrderApplicationErrors as o, type BulkUpdateOrderTagsOptions as p, type BulkUpdateOrderTagsResponse as q, type OrderApprovedEnvelope as r, type OrderUpdatedEnvelope as s, type OrderCanceledEnvelope as t, type OrderCreatedEnvelope as u, PaymentOptionType as v, SubscriptionFrequency as w, PaymentStatus as x, VatType as y, PickupMethod as z };
@@ -1,7 +1,8 @@
1
- import { HttpClient, 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, m as CancelOrderOptions, n as CancelOrderResponse, o as CancelOrderApplicationErrors, p as BulkUpdateOrderTagsOptions, q as BulkUpdateOrderTagsResponse, r as OrderApprovedEnvelope, s as OrderUpdatedEnvelope, t as OrderCanceledEnvelope, u as OrderCreatedEnvelope } from './ecom-v1-order-orders.universal-edSkdncQ.js';
3
- export { dB as ActionEvent, a6 as ActionType, bo as Activity, bp as ActivityContentOneOf, N as ActivityType, gA as AddActivitiesRequest, gB as AddActivitiesResponse, gw as AddActivityRequest, gz as AddActivityResponse, g9 as AddInternalActivityRequest, gv as AddInternalActivityResponse, cg as AdditionalFee, fB as AdditionalFeeDelta, fC as AdditionalFeeDeltaDeltaOneOf, cW as AdditionalFeeRefund, b0 as Address, hv as AddressDescription, b2 as AddressLocation, a$ as AddressWithContact, A as AdjustmentType, i7 as AggregateOrdersOptions, hb as AggregateOrdersRequest, hc as AggregateOrdersResponse, dj as AggregatedRefundSummary, ab as AnimationDetection, en as App, cD as ApplicationError, bg as AppliedDiscount, fz as AppliedDiscountDelta, fA as AppliedDiscountDeltaDeltaOneOf, bh as AppliedDiscountDiscountSourceOneOf, fL as ArchiveOrderRequest, fM as ArchiveOrderResponse, Q as AttributionSource, d9 as AuthorizationActionFailureDetails, d8 as AuthorizationCapture, a3 as AuthorizationCaptureStatus, d7 as AuthorizationDetails, da as AuthorizationVoid, a4 as AuthorizationVoidStatus, bM as AuthorizedPaymentCaptured, bL as AuthorizedPaymentCreated, bN as AuthorizedPaymentVoided, cf as Balance, ce as BalanceSummary, hY as BaseEventMetadata, f2 as BatchOfTriggerReindexOrderRequest, hF as BigDecimalWrapper, aN as BillingAdjustment, aO as BillingAdjustmentPriceSummary, cE as BulkActionMetadata, fP as BulkArchiveOrdersByFilterRequest, fQ as BulkArchiveOrdersByFilterResponse, fN as BulkArchiveOrdersRequest, fO as BulkArchiveOrdersResponse, gU as BulkMarkAsFulfilledByFilterRequest, gV as BulkMarkAsFulfilledByFilterResponse, gS as BulkMarkAsFulfilledRequest, gT as BulkMarkAsFulfilledResponse, g_ as BulkMarkAsUnfulfilledByFilterRequest, g$ as BulkMarkAsUnfulfilledByFilterResponse, gY as BulkMarkAsUnfulfilledRequest, gZ as BulkMarkAsUnfulfilledResponse, cz as BulkMarkOrdersAsPaidRequest, cA as BulkMarkOrdersAsPaidResponse, cB as BulkOrderResult, dN as BulkSendBuyerPickupConfirmationEmailsRequest, dO as BulkSendBuyerPickupConfirmationEmailsResponse, dR as BulkSendBuyerShippingConfirmationEmailsRequest, dS as BulkSendBuyerShippingConfirmationEmailsResponse, h0 as BulkSetBusinessLocationRequest, h1 as BulkSetBusinessLocationResponse, h2 as BulkSetBusinessLocationResult, fV as BulkUnArchiveOrdersByFilterRequest, fW as BulkUnArchiveOrdersByFilterResponse, fT as BulkUnArchiveOrdersRequest, fU as BulkUnArchiveOrdersResponse, hg as BulkUpdateOrderTagsRequest, hh as BulkUpdateOrderTagsResult, fo as BulkUpdateOrdersRequest, aX as BuyerInfo, aY as BuyerInfoIdOneOf, fY as BuyerInfoUpdate, dn as CalculateRefundItemRequest, dq as CalculateRefundItemResponse, dm as CalculateRefundRequest, dp as CalculateRefundResponse, hP as CalculatedTax, hO as CalculatedTaxes, hn as Cancel, gL as CancelOrderRequest, ds as CaptureAuthorizedPaymentsRequest, at as CatalogReference, cc as ChannelInfo, R as ChannelType, h$ as ChargeMembershipsOptions, cM as ChargeMembershipsRequest, cQ as ChargeMembershipsResponse, dt as ChargeSavedPaymentMethodRequest, du as ChargeSavedPaymentMethodResponse, f3 as ChargebackCreated, f4 as ChargebackReversed, cK as ChargedBy, az as Color, i2 as CommitDeltasOptions, fp as CommitDeltasRequest, fF as CommitDeltasResponse, fH as CommittedDiffs, fI as CommittedDiffsShippingUpdateInfoOneOf, hy as CommonAddress, hz as CommonAddressStreetOneOf, hx as Company, hm as Complete, f7 as ContinueSideEffectsFlowInLegacyData, bi as Coupon, fi as CreateOrderRequest, fl as CreateOrderResponse, cJ as CreatePaymentGatewayOrderRequest, cL as CreatePaymentGatewayOrderResponse, ca as CreatedBy, cb as CreatedByStringOneOf, b$ as CreditCardDetails, d6 as CreditCardPaymentMethodDetails, aZ as CurrencyConversionDetails, ez as CursorPaging, fh as CursorPagingMetadata, ff as CursorSearch, fg as CursorSearchPagingMethodOneOf, eC as Cursors, bq as CustomActivity, cd as CustomField, an as CustomFieldGroup, hU as CustomFieldValue, hs as Customer, he as DecrementData, hd as DecrementItemsQuantityRequest, hf as DecrementItemsQuantityResponse, cs as DelayedCaptureSettings, i6 as DeleteActivityIdentifiers, gE as DeleteActivityRequest, gF as DeleteActivityResponse, eW as DeleteByFilterOperation, eV as DeleteByIdsOperation, b6 as DeliveryLogistics, b7 as DeliveryLogisticsAddressOneOf, ba as DeliveryTimeSlot, ai as DeltaPaymentOptionType, hW as Deposit, ap as DepositType, au as DescriptionLine, aw as DescriptionLineDescriptionLineValueOneOf, ax as DescriptionLineName, D as DescriptionLineType, av as DescriptionLineValueOneOf, f5 as DiffmatokyPayload, aH as DigitalFile, hM as Discount, hN as DiscountOneDiscountTypeOneOf, K as DiscountReason, bl as DiscountRule, bm as DiscountRuleName, H as DiscountType, dv as DomainEvent, dw as DomainEventBodyOneOf, gh as DownloadLinkSent, bw as DraftOrderChangesApplied, fD as DraftOrderCommitSettings, fq as DraftOrderDiffs, ft as DraftOrderDiffsBillingUpdateInfoOneOf, fs as DraftOrderDiffsBuyerUpdateInfoOneOf, fu as DraftOrderDiffsRecipientUpdateInfoOneOf, fr as DraftOrderDiffsShippingUpdateInfoOneOf, ct as Duration, Y as DurationUnit, ht as Email, gq as EmailEdited, dC as Empty, dx as EntityCreatedEvent, dA as EntityDeletedEvent, dz as EntityUpdatedEvent, f6 as ErrorInformation, hZ as EventMetadata, aT as ExtendedFields, c7 as ExternalReceipt, df as ExternalReceiptInfo, er as ExternalUriMapping, aA as FocalPoint, aM as FreeTrialPeriod, go as FulfillerEmailSent, F as FulfillmentStatus, gR as FulfillmentStatusUpdated, ch as FulfillmentStatusesAggregate, b3 as FullAddressContactDetails, ek as GetMetasiteDataRequest, el as GetMetasiteDataResponse, eL as GetOrderAgcRequest, eM as GetOrderAgcResponse, eD as GetOrderForMetasiteRequest, eE as GetOrderForMetasiteResponse, eJ as GetOrderOutOfBoxRequest, eK as GetOrderOutOfBoxResponse, f9 as GetOrderRequest, fa as GetOrderResponse, eN as GetOrderWithFilterByLocationRequest, eO as GetOrderWithFilterByLocationResponse, cu as GetPaymentCollectabilityStatusRequest, cF as GetRefundabilityStatusRequest, cG as GetRefundabilityStatusResponse, h9 as GetShipmentsRequest, ha as GetShipmentsResponse, dc as GiftCardPaymentDetails, bS as GiftCardPaymentRefund, eq as HtmlApplication, hq as IdAndVersion, dE as IdentificationData, dF as IdentificationDataIdOneOf, dG as ImageContent, f8 as IndexingMessage, ga as InternalActivity, gb as InternalActivityContentOneOf, eT as InternalDocument, eX as InternalDocumentUpdateByFilterOperation, eU as InternalDocumentUpdateOperation, eu as InternalQueryOrdersRequest, fb as InternalQueryOrdersResponse, eY as InternalUpdateExistingOperation, aj as InventoryAction, fE as InventoryUpdateDetails, gm as InvoiceAdded, hC as InvoiceDates, hT as InvoiceDynamicPriceTotals, hr as InvoiceFields, gn as InvoiceSent, hp as InvoiceSentEvent, aq as InvoiceStatus, hR as InvoicesPayment, fy as ItemChangedDetails, cC as ItemMetadata, aW as ItemModifier, aE as ItemTaxFullDetails, aC as ItemType, I as ItemTypeItemType, aD as ItemTypeItemTypeDataOneOf, hL as ItemizedFee, J as JurisdictionType, hE as LineItem, bF as LineItemAmount, bz as LineItemChanges, fJ as LineItemDelta, fK as LineItemDeltaDeltaOneOf, bn as LineItemDiscount, bv as LineItemExchangeData, hI as LineItemMetaData, bB as LineItemPriceChange, bA as LineItemQuantityChange, L as LineItemQuantityChangeType, cV as LineItemRefund, dl as LineItemRefundSummary, hG as LineItemTax, aG as LineItemTaxBreakdown, aF as LineItemTaxInfo, gH as LineItemUpdate, hD as LineItems, eF as ListOrderTransactionsForMetasiteRequest, eG as ListOrderTransactionsForMetasiteResponse, hJ as Locale, ck as Location, aQ as LocationAndQuantity, bG as ManagedAdditionalFee, bD as ManagedDiscount, bC as ManagedLineItem, a0 as ManuallyRefundableReason, gP as MarkAsFulfilledRequest, gQ as MarkAsFulfilledResponse, gW as MarkAsUnfulfilledRequest, gX as MarkAsUnfulfilledResponse, cx as MarkOrderAsPaidRequest, cy as MarkOrderAsPaidResponse, gJ as MarkOrderAsSeenByHumanRequest, gK as MarkOrderAsSeenByHumanResponse, g7 as MaskedOrderLineItem, cN as MembershipChargeItem, cO as MembershipName, dd as MembershipPaymentDetails, bT as MembershipPaymentRefund, a7 as MembershipPaymentStatus, br as MerchantComment, bj as MerchantDiscount, bk as MerchantDiscountMerchantDiscountReasonOneOf, dD as MessageEnvelope, hS as MetaData, em as MetaSite, ep as MetaTag, aU as ModifierGroup, ae as Namespace, bu as NewExchangeOrderCreated, $ as NonRefundableReason, ah as OrderApprovalStrategy, cl as OrderApproved, gg as OrderCanceled, gM as OrderCanceledEventOrderCanceled, bx as OrderChange, by as OrderChangeValueOneOf, fk as OrderCreateNotifications, bt as OrderCreatedFromExchange, fj as OrderCreationSettings, fG as OrderDeltasCommitted, ge as OrderFulfilled, co as OrderItemsRestocked, ar as OrderLineItem, fx as OrderLineItemChangedDetails, gf as OrderNotFulfilled, gd as OrderPaid, gs as OrderPartiallyPaid, gt as OrderPending, gc as OrderPlaced, bs as OrderRefunded, gu as OrderRejected, cn as OrderRejectedEventOrderRejected, i1 as OrderSearchSpec, E as OrderStatus, bf as OrderTaxBreakdown, be as OrderTaxInfo, d0 as OrderTransactions, cm as OrdersExperiments, d1 as Payment, c0 as PaymentCanceled, c1 as PaymentCanceledPaymentDetailsOneOf, Z as PaymentCollectabilityStatus, h_ as PaymentCollectionCreatePaymentGatewayOrderOptions, c2 as PaymentDeclined, c3 as PaymentDeclinedPaymentDetailsOneOf, v as PaymentOptionType, d2 as PaymentPaymentDetailsOneOf, bX as PaymentPending, bY as PaymentPendingPaymentDetailsOneOf, d3 as PaymentReceiptInfoOneOf, cS as PaymentRefund, bV as PaymentRefundFailed, bU as PaymentRefunded, x as PaymentStatus, ej as PaymentStatusUpdated, hQ as Payments, hw as Phone, aB as PhysicalProperties, b9 as PickupAddress, b8 as PickupDetails, z as PickupMethod, gr as PickupReadyEmailSent, ak as Placement, ay as PlainTextValue, ey as PlatformPaging, eB as PlatformPagingMetadata, ev as PlatformQuery, ew as PlatformQueryPagingMethodOneOf, cq as PreparePaymentCollectionRequest, e9 as PreviewBuyerConfirmationEmailRequest, ea as PreviewBuyerConfirmationEmailResponse, e7 as PreviewBuyerPaymentsReceivedEmailRequest, e8 as PreviewBuyerPaymentsReceivedEmailResponse, eb as PreviewBuyerPickupConfirmationEmailRequest, ec as PreviewBuyerPickupConfirmationEmailResponse, e3 as PreviewCancelEmailRequest, e4 as PreviewCancelEmailResponse, e5 as PreviewCancelRefundEmailRequest, e6 as PreviewCancelRefundEmailResponse, d$ as PreviewEmailByTypeRequest, e0 as PreviewEmailByTypeResponse, ac as PreviewEmailType, e1 as PreviewRefundEmailRequest, e2 as PreviewRefundEmailResponse, ef as PreviewResendDownloadLinksEmailRequest, eg as PreviewResendDownloadLinksEmailResponse, ed as PreviewShippingConfirmationEmailRequest, ee as PreviewShippingConfirmationEmailResponse, aP as PriceDescription, a_ as PriceSummary, as as ProductName, gx as PublicActivity, gy as PublicActivityContentOneOf, fc as QueryOrderRequest, fd as QueryOrderResponse, et as QueryOrdersForMetasiteRequest, eA as QueryOrdersForMetasiteResponse, hu as QuotesAddress, a5 as Reason, c4 as ReceiptCreated, c5 as ReceiptCreatedReceiptInfoOneOf, c8 as ReceiptSent, c9 as ReceiptSentReceiptInfoOneOf, cv as RecordManuallyCollectedPaymentRequest, cw as RecordManuallyCollectedPaymentResponse, cr as RedirectUrls, dg as Refund, cT as RefundDetails, bO as RefundInitiated, cU as RefundItem, dk as RefundItemsBreakdown, cY as RefundSideEffects, a8 as RefundStatus, di as RefundStatusInfo, dh as RefundTransaction, cH as Refundability, cI as RefundabilityAdditionalRefundabilityInfoOneOf, _ as RefundableStatus, bW as RefundedAsStoreCredit, bP as RefundedPayment, bQ as RefundedPaymentKindOneOf, bZ as RegularPayment, d4 as RegularPaymentDetails, d5 as RegularPaymentDetailsPaymentMethodDetailsOneOf, b_ as RegularPaymentPaymentMethodDetailsOneOf, bR as RegularPaymentRefund, ho as Reschedule, cZ as RestockInfo, c_ as RestockItem, a1 as RestockType, dy as RestoreInfo, bK as SavedPaymentMethod, X as ScheduledAction, fe as SearchOrdersRequest, dH as SendBuyerConfirmationEmailRequest, dI as SendBuyerConfirmationEmailResponse, dJ as SendBuyerPaymentsReceivedEmailRequest, dK as SendBuyerPaymentsReceivedEmailResponse, dL as SendBuyerPickupConfirmationEmailRequest, dM as SendBuyerPickupConfirmationEmailResponse, dP as SendBuyerShippingConfirmationEmailRequest, dQ as SendBuyerShippingConfirmationEmailResponse, dV as SendCancelRefundEmailRequest, dW as SendCancelRefundEmailResponse, dT as SendMerchantOrderReceivedNotificationRequest, dU as SendMerchantOrderReceivedNotificationResponse, dZ as SendMerchantOrderReceivedPushRequest, d_ as SendMerchantOrderReceivedPushResponse, dX as SendRefundEmailRequest, dY as SendRefundEmailResponse, eo as SeoData, cP as ServiceProperties, gp as ShippingAddressEdited, gl as ShippingConfirmationEmailSent, bJ as ShippingInformation, bI as ShippingInformationChange, bb as ShippingPrice, cX as ShippingRefund, bc as ShippingRegion, ei as SnapshotMessage, af as SortOrder, ex as Sorting, hH as Source, am as SourceType, hB as StandardDetails, ad as State, b1 as StreetAddress, hA as Subdivision, al as SubdivisionType, aK as SubscriptionDescription, w as SubscriptionFrequency, aI as SubscriptionInfo, aL as SubscriptionSettings, aJ as SubscriptionTitle, cj as TagList, ci as Tags, hi as Task, hk as TaskAction, hl as TaskActionActionOneOf, hj as TaskKey, bd as TaxSummary, aR as TaxableAddress, aS as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, aa as TextDetection, hK as TotalPrice, bH as TotalPriceChange, gk as TrackingLinkAdded, gi as TrackingNumberAdded, gj as TrackingNumberEdited, a2 as TransactionStatus, aV as TranslatableString, bE as TranslatedValue, i0 as TriggerRefundOptions, cR as TriggerRefundRequest, c$ as TriggerRefundResponse, eh as TriggerReindexOrderRequest, f0 as TriggerReindexRequest, f1 as TriggerReindexResponse, hX as TriggerSideEffectsFromLegacyData, fR as UnArchiveOrderRequest, fS as UnArchiveOrderResponse, i5 as UpdateActivityIdentifiers, gC as UpdateActivityRequest, gD as UpdateActivityResponse, g2 as UpdateBillingContactDetailsRequest, g3 as UpdateBillingContactDetailsResponse, f_ as UpdateBuyerEmailRequest, f$ as UpdateBuyerEmailResponse, fX as UpdateBuyerInfoRequest, fZ as UpdateBuyerInfoResponse, eR as UpdateInternalDocumentsEvent, eS as UpdateInternalDocumentsEventOperationOneOf, gG as UpdateLineItemsDescriptionLinesRequest, gI as UpdateLineItemsDescriptionLinesResponse, i4 as UpdateOrderLineItem, i3 as UpdateOrderLineItemIdentifiers, g4 as UpdateOrderLineItemRequest, g5 as UpdateOrderLineItemResponse, g6 as UpdateOrderLineItemsRequest, g8 as UpdateOrderLineItemsResponse, fm as UpdateOrderRequest, fn as UpdateOrderResponse, g0 as UpdateOrderShippingAddressRequest, g1 as UpdateOrderShippingAddressResponse, gN as UpdateOrderStatusRequest, gO as UpdateOrderStatusResponse, eH as UpsertRefundRequest, eI as UpsertRefundResponse, es as UserDataResponse, h5 as V1BulkMarkOrdersAsPaidRequest, h6 as V1BulkMarkOrdersAsPaidResponse, h7 as V1CreatePaymentGatewayOrderRequest, h8 as V1CreatePaymentGatewayOrderResponse, fv as V1LineItemDelta, fw as V1LineItemDeltaDeltaOneOf, h3 as V1MarkOrderAsPaidRequest, h4 as V1MarkOrderAsPaidResponse, cp as V1RestockItem, db as V1ScheduledAction, b5 as V1ShippingInformation, eP as V1UpdateOrderRequest, eQ as V1UpdateOrderResponse, hV as Value, ao as ValueType, b4 as VatId, y as VatType, e_ as VersionedDeleteByIdsOperation, e$ as VersionedDocumentId, eZ as VersionedDocumentUpdateOperation, ag as VersioningMode, dr as VoidAuthorizedPaymentsRequest, a9 as WebhookIdentityType, W as WeightUnit, c6 as WixReceipt, de as WixReceiptInfo } from './ecom-v1-order-orders.universal-edSkdncQ.js';
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, m as CancelOrderOptions, n as CancelOrderResponse, o as CancelOrderApplicationErrors, p as BulkUpdateOrderTagsOptions, q as BulkUpdateOrderTagsResponse, r as OrderApprovedEnvelope, s as OrderUpdatedEnvelope, t as OrderCanceledEnvelope, u as OrderCreatedEnvelope } from './ecom-v1-order-orders.universal-CaDvypy_.js';
3
+ export { dF as ActionEvent, a6 as ActionType, bp as Activity, bq as ActivityContentOneOf, N as ActivityType, gC as AddActivitiesRequest, gD as AddActivitiesResponse, gy as AddActivityRequest, gB as AddActivityResponse, gb as AddInternalActivityRequest, gx as AddInternalActivityResponse, cj as AdditionalFee, fD as AdditionalFeeDelta, fE as AdditionalFeeDeltaDeltaOneOf, cZ as AdditionalFeeRefund, b1 as Address, hx as AddressDescription, b3 as AddressLocation, b0 as AddressWithContact, A as AdjustmentType, i9 as AggregateOrdersOptions, hd as AggregateOrdersRequest, he as AggregateOrdersResponse, dn as AggregatedRefundSummary, ac as AnimationDetection, er as App, cG as ApplicationError, bh as AppliedDiscount, fB as AppliedDiscountDelta, fC as AppliedDiscountDeltaDeltaOneOf, bi as AppliedDiscountDiscountSourceOneOf, fN as ArchiveOrderRequest, fO as ArchiveOrderResponse, Q as AttributionSource, dc as AuthorizationActionFailureDetails, db as AuthorizationCapture, a3 as AuthorizationCaptureStatus, da as AuthorizationDetails, dd as AuthorizationVoid, a4 as AuthorizationVoidStatus, bN as AuthorizedPaymentCaptured, bM as AuthorizedPaymentCreated, bO as AuthorizedPaymentVoided, ci as Balance, ch as BalanceSummary, h_ as BaseEventMetadata, f6 as BatchOfTriggerReindexOrderRequest, hH as BigDecimalWrapper, aO as BillingAdjustment, aP as BillingAdjustmentPriceSummary, cH as BulkActionMetadata, fR as BulkArchiveOrdersByFilterRequest, fS as BulkArchiveOrdersByFilterResponse, fP as BulkArchiveOrdersRequest, fQ as BulkArchiveOrdersResponse, gW as BulkMarkAsFulfilledByFilterRequest, gX as BulkMarkAsFulfilledByFilterResponse, gU as BulkMarkAsFulfilledRequest, gV as BulkMarkAsFulfilledResponse, h0 as BulkMarkAsUnfulfilledByFilterRequest, h1 as BulkMarkAsUnfulfilledByFilterResponse, g_ as BulkMarkAsUnfulfilledRequest, g$ as BulkMarkAsUnfulfilledResponse, cC as BulkMarkOrdersAsPaidRequest, cD as BulkMarkOrdersAsPaidResponse, cE as BulkOrderResult, dR as BulkSendBuyerPickupConfirmationEmailsRequest, dS as BulkSendBuyerPickupConfirmationEmailsResponse, dV as BulkSendBuyerShippingConfirmationEmailsRequest, dW as BulkSendBuyerShippingConfirmationEmailsResponse, h2 as BulkSetBusinessLocationRequest, h3 as BulkSetBusinessLocationResponse, h4 as BulkSetBusinessLocationResult, fX as BulkUnArchiveOrdersByFilterRequest, fY as BulkUnArchiveOrdersByFilterResponse, fV as BulkUnArchiveOrdersRequest, fW as BulkUnArchiveOrdersResponse, hi as BulkUpdateOrderTagsRequest, hj as BulkUpdateOrderTagsResult, fq as BulkUpdateOrdersRequest, aY as BuyerInfo, aZ as BuyerInfoIdOneOf, f_ as BuyerInfoUpdate, ds as CalculateRefundItemRequest, du as CalculateRefundItemResponse, dr as CalculateRefundRequest, dt as CalculateRefundResponse, hR as CalculatedTax, hQ as CalculatedTaxes, hp as Cancel, gN as CancelOrderRequest, dw as CaptureAuthorizedPaymentsRequest, au as CatalogReference, cf as ChannelInfo, R as ChannelType, i1 as ChargeMembershipsOptions, cP as ChargeMembershipsRequest, cT as ChargeMembershipsResponse, dx as ChargeSavedPaymentMethodRequest, dy as ChargeSavedPaymentMethodResponse, df as Chargeback, cb as ChargebackCreated, cc as ChargebackReversed, a7 as ChargebackStatus, cN as ChargedBy, aA as Color, i4 as CommitDeltasOptions, fr as CommitDeltasRequest, fH as CommitDeltasResponse, fJ as CommittedDiffs, fK as CommittedDiffsShippingUpdateInfoOneOf, hA as CommonAddress, hB as CommonAddressStreetOneOf, hz as Company, ho as Complete, f9 as ContinueSideEffectsFlowInLegacyData, bj as Coupon, fk as CreateOrderRequest, fn as CreateOrderResponse, cM as CreatePaymentGatewayOrderRequest, cO as CreatePaymentGatewayOrderResponse, cd as CreatedBy, ce as CreatedByStringOneOf, c0 as CreditCardDetails, d9 as CreditCardPaymentMethodDetails, a_ as CurrencyConversionDetails, eD as CursorPaging, fj as CursorPagingMetadata, fh as CursorSearch, fi as CursorSearchPagingMethodOneOf, eG as Cursors, br as CustomActivity, cg as CustomField, ao as CustomFieldGroup, hW as CustomFieldValue, hu as Customer, hg as DecrementData, hf as DecrementItemsQuantityRequest, hh as DecrementItemsQuantityResponse, cv as DelayedCaptureSettings, i8 as DeleteActivityIdentifiers, gG as DeleteActivityRequest, gH as DeleteActivityResponse, e_ as DeleteByFilterOperation, eZ as DeleteByIdsOperation, b7 as DeliveryLogistics, b8 as DeliveryLogisticsAddressOneOf, bb as DeliveryTimeSlot, aj as DeltaPaymentOptionType, hY as Deposit, aq as DepositType, av as DescriptionLine, ax as DescriptionLineDescriptionLineValueOneOf, ay as DescriptionLineName, D as DescriptionLineType, aw as DescriptionLineValueOneOf, f7 as DiffmatokyPayload, aI as DigitalFile, hO as Discount, hP as DiscountOneDiscountTypeOneOf, K as DiscountReason, bm as DiscountRule, bn as DiscountRuleName, H as DiscountType, dz as DomainEvent, dA as DomainEventBodyOneOf, gj as DownloadLinkSent, bx as DraftOrderChangesApplied, fF as DraftOrderCommitSettings, fs as DraftOrderDiffs, fv as DraftOrderDiffsBillingUpdateInfoOneOf, fu as DraftOrderDiffsBuyerUpdateInfoOneOf, fw as DraftOrderDiffsRecipientUpdateInfoOneOf, ft as DraftOrderDiffsShippingUpdateInfoOneOf, cw as Duration, Y as DurationUnit, hv as Email, gs as EmailEdited, dG as Empty, dB as EntityCreatedEvent, dE as EntityDeletedEvent, dD as EntityUpdatedEvent, f8 as ErrorInformation, h$ as EventMetadata, aU as ExtendedFields, c8 as ExternalReceipt, dj as ExternalReceiptInfo, ev as ExternalUriMapping, aB as FocalPoint, aN as FreeTrialPeriod, gq as FulfillerEmailSent, F as FulfillmentStatus, gT as FulfillmentStatusUpdated, ck as FulfillmentStatusesAggregate, b4 as FullAddressContactDetails, eo as GetMetasiteDataRequest, ep as GetMetasiteDataResponse, eP as GetOrderAgcRequest, eQ as GetOrderAgcResponse, eH as GetOrderForMetasiteRequest, eI as GetOrderForMetasiteResponse, eN as GetOrderOutOfBoxRequest, eO as GetOrderOutOfBoxResponse, fb as GetOrderRequest, fc as GetOrderResponse, eR as GetOrderWithFilterByLocationRequest, eS as GetOrderWithFilterByLocationResponse, cx as GetPaymentCollectabilityStatusRequest, cI as GetRefundabilityStatusRequest, cJ as GetRefundabilityStatusResponse, hb as GetShipmentsRequest, hc as GetShipmentsResponse, dg as GiftCardPaymentDetails, bT as GiftCardPaymentRefund, eu as HtmlApplication, hs as IdAndVersion, dI as IdentificationData, dJ as IdentificationDataIdOneOf, dK as ImageContent, fa as IndexingMessage, gc as InternalActivity, gd as InternalActivityContentOneOf, eX as InternalDocument, e$ as InternalDocumentUpdateByFilterOperation, eY as InternalDocumentUpdateOperation, ey as InternalQueryOrdersRequest, fd as InternalQueryOrdersResponse, f0 as InternalUpdateExistingOperation, ak as InventoryAction, fG as InventoryUpdateDetails, go as InvoiceAdded, hE as InvoiceDates, hV as InvoiceDynamicPriceTotals, ht as InvoiceFields, gp as InvoiceSent, hr as InvoiceSentEvent, ar as InvoiceStatus, hT as InvoicesPayment, fA as ItemChangedDetails, cF as ItemMetadata, aX as ItemModifier, aF as ItemTaxFullDetails, aD as ItemType, I as ItemTypeItemType, aE as ItemTypeItemTypeDataOneOf, hN as ItemizedFee, J as JurisdictionType, hG as LineItem, bG as LineItemAmount, bA as LineItemChanges, fL as LineItemDelta, fM as LineItemDeltaDeltaOneOf, bo as LineItemDiscount, bw as LineItemExchangeData, hK as LineItemMetaData, bC as LineItemPriceChange, bB as LineItemQuantityChange, L as LineItemQuantityChangeType, cY as LineItemRefund, dq as LineItemRefundSummary, hI as LineItemTax, aH as LineItemTaxBreakdown, aG as LineItemTaxInfo, gJ as LineItemUpdate, hF as LineItems, eJ as ListOrderTransactionsForMetasiteRequest, eK as ListOrderTransactionsForMetasiteResponse, hL as Locale, cn as Location, aR as LocationAndQuantity, bH as ManagedAdditionalFee, bE as ManagedDiscount, bD as ManagedLineItem, a0 as ManuallyRefundableReason, gR as MarkAsFulfilledRequest, gS as MarkAsFulfilledResponse, gY as MarkAsUnfulfilledRequest, gZ as MarkAsUnfulfilledResponse, cA as MarkOrderAsPaidRequest, cB as MarkOrderAsPaidResponse, gL as MarkOrderAsSeenByHumanRequest, gM as MarkOrderAsSeenByHumanResponse, g9 as MaskedOrderLineItem, cQ as MembershipChargeItem, cR as MembershipName, dh as MembershipPaymentDetails, bU as MembershipPaymentRefund, a8 as MembershipPaymentStatus, bs as MerchantComment, bk as MerchantDiscount, bl as MerchantDiscountMerchantDiscountReasonOneOf, dH as MessageEnvelope, hU as MetaData, eq as MetaSite, et as MetaTag, aV as ModifierGroup, af as Namespace, bv as NewExchangeOrderCreated, $ as NonRefundableReason, ai as OrderApprovalStrategy, co as OrderApproved, gi as OrderCanceled, gO as OrderCanceledEventOrderCanceled, by as OrderChange, bz as OrderChangeValueOneOf, fm as OrderCreateNotifications, bu as OrderCreatedFromExchange, fl as OrderCreationSettings, fI as OrderDeltasCommitted, gg as OrderFulfilled, cr as OrderItemsRestocked, as as OrderLineItem, fz as OrderLineItemChangedDetails, gh as OrderNotFulfilled, gf as OrderPaid, gu as OrderPartiallyPaid, gv as OrderPending, ge as OrderPlaced, bt as OrderRefunded, gw as OrderRejected, cq as OrderRejectedEventOrderRejected, i3 as OrderSearchSpec, E as OrderStatus, bg as OrderTaxBreakdown, bf as OrderTaxInfo, d3 as OrderTransactions, cp as OrdersExperiments, d4 as Payment, c1 as PaymentCanceled, c2 as PaymentCanceledPaymentDetailsOneOf, Z as PaymentCollectabilityStatus, i0 as PaymentCollectionCreatePaymentGatewayOrderOptions, c3 as PaymentDeclined, c4 as PaymentDeclinedPaymentDetailsOneOf, v as PaymentOptionType, d5 as PaymentPaymentDetailsOneOf, bY as PaymentPending, bZ as PaymentPendingPaymentDetailsOneOf, d6 as PaymentReceiptInfoOneOf, cV as PaymentRefund, bW as PaymentRefundFailed, bV as PaymentRefunded, x as PaymentStatus, en as PaymentStatusUpdated, hS as Payments, hy as Phone, aC as PhysicalProperties, ba as PickupAddress, b9 as PickupDetails, z as PickupMethod, gt as PickupReadyEmailSent, al as Placement, az as PlainTextValue, eC as PlatformPaging, eF as PlatformPagingMetadata, ez as PlatformQuery, eA as PlatformQueryPagingMethodOneOf, ct as PreparePaymentCollectionRequest, ed as PreviewBuyerConfirmationEmailRequest, ee as PreviewBuyerConfirmationEmailResponse, eb as PreviewBuyerPaymentsReceivedEmailRequest, ec as PreviewBuyerPaymentsReceivedEmailResponse, ef as PreviewBuyerPickupConfirmationEmailRequest, eg as PreviewBuyerPickupConfirmationEmailResponse, e7 as PreviewCancelEmailRequest, e8 as PreviewCancelEmailResponse, e9 as PreviewCancelRefundEmailRequest, ea as PreviewCancelRefundEmailResponse, e3 as PreviewEmailByTypeRequest, e4 as PreviewEmailByTypeResponse, ad as PreviewEmailType, e5 as PreviewRefundEmailRequest, e6 as PreviewRefundEmailResponse, ej as PreviewResendDownloadLinksEmailRequest, ek as PreviewResendDownloadLinksEmailResponse, eh as PreviewShippingConfirmationEmailRequest, ei as PreviewShippingConfirmationEmailResponse, aQ as PriceDescription, a$ as PriceSummary, at as ProductName, gz as PublicActivity, gA as PublicActivityContentOneOf, fe as QueryOrderRequest, ff as QueryOrderResponse, ex as QueryOrdersForMetasiteRequest, eE as QueryOrdersForMetasiteResponse, hw as QuotesAddress, a5 as Reason, c5 as ReceiptCreated, c6 as ReceiptCreatedReceiptInfoOneOf, c9 as ReceiptSent, ca as ReceiptSentReceiptInfoOneOf, cy as RecordManuallyCollectedPaymentRequest, cz as RecordManuallyCollectedPaymentResponse, cu as RedirectUrls, dk as Refund, cW as RefundDetails, bP as RefundInitiated, cX as RefundItem, dp as RefundItemsBreakdown, c$ as RefundSideEffects, a9 as RefundStatus, dm as RefundStatusInfo, dl as RefundTransaction, cK as Refundability, cL as RefundabilityAdditionalRefundabilityInfoOneOf, _ as RefundableStatus, bX as RefundedAsStoreCredit, bQ as RefundedPayment, bR as RefundedPaymentKindOneOf, b_ as RegularPayment, d7 as RegularPaymentDetails, d8 as RegularPaymentDetailsPaymentMethodDetailsOneOf, b$ as RegularPaymentPaymentMethodDetailsOneOf, bS as RegularPaymentRefund, hq as Reschedule, d0 as RestockInfo, d1 as RestockItem, a1 as RestockType, dC as RestoreInfo, bL as SavedPaymentMethod, X as ScheduledAction, fg as SearchOrdersRequest, dL as SendBuyerConfirmationEmailRequest, dM as SendBuyerConfirmationEmailResponse, dN as SendBuyerPaymentsReceivedEmailRequest, dO as SendBuyerPaymentsReceivedEmailResponse, dP as SendBuyerPickupConfirmationEmailRequest, dQ as SendBuyerPickupConfirmationEmailResponse, dT as SendBuyerShippingConfirmationEmailRequest, dU as SendBuyerShippingConfirmationEmailResponse, dZ as SendCancelRefundEmailRequest, d_ as SendCancelRefundEmailResponse, dX as SendMerchantOrderReceivedNotificationRequest, dY as SendMerchantOrderReceivedNotificationResponse, e1 as SendMerchantOrderReceivedPushRequest, e2 as SendMerchantOrderReceivedPushResponse, d$ as SendRefundEmailRequest, e0 as SendRefundEmailResponse, es as SeoData, cS as ServiceProperties, gr as ShippingAddressEdited, gn as ShippingConfirmationEmailSent, bK as ShippingInformation, bJ as ShippingInformationChange, bc as ShippingPrice, c_ as ShippingRefund, bd as ShippingRegion, em as SnapshotMessage, ag as SortOrder, eB as Sorting, hJ as Source, an as SourceType, hD as StandardDetails, ae as State, b2 as StreetAddress, hC as Subdivision, am as SubdivisionType, aL as SubscriptionDescription, w as SubscriptionFrequency, aJ as SubscriptionInfo, aM as SubscriptionSettings, aK as SubscriptionTitle, cm as TagList, cl as Tags, hk as Task, hm as TaskAction, hn as TaskActionActionOneOf, hl as TaskKey, be as TaxSummary, aS as TaxableAddress, aT as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, ab as TextDetection, hM as TotalPrice, bI as TotalPriceChange, gm as TrackingLinkAdded, gk as TrackingNumberAdded, gl as TrackingNumberEdited, a2 as TransactionStatus, aW as TranslatableString, bF as TranslatedValue, i2 as TriggerRefundOptions, cU as TriggerRefundRequest, d2 as TriggerRefundResponse, el as TriggerReindexOrderRequest, f4 as TriggerReindexRequest, f5 as TriggerReindexResponse, hZ as TriggerSideEffectsFromLegacyData, fT as UnArchiveOrderRequest, fU as UnArchiveOrderResponse, i7 as UpdateActivityIdentifiers, gE as UpdateActivityRequest, gF as UpdateActivityResponse, g4 as UpdateBillingContactDetailsRequest, g5 as UpdateBillingContactDetailsResponse, g0 as UpdateBuyerEmailRequest, g1 as UpdateBuyerEmailResponse, fZ as UpdateBuyerInfoRequest, f$ as UpdateBuyerInfoResponse, eV as UpdateInternalDocumentsEvent, eW as UpdateInternalDocumentsEventOperationOneOf, gI as UpdateLineItemsDescriptionLinesRequest, gK as UpdateLineItemsDescriptionLinesResponse, i6 as UpdateOrderLineItem, i5 as UpdateOrderLineItemIdentifiers, g6 as UpdateOrderLineItemRequest, g7 as UpdateOrderLineItemResponse, g8 as UpdateOrderLineItemsRequest, ga as UpdateOrderLineItemsResponse, fo as UpdateOrderRequest, fp as UpdateOrderResponse, g2 as UpdateOrderShippingAddressRequest, g3 as UpdateOrderShippingAddressResponse, gP as UpdateOrderStatusRequest, gQ as UpdateOrderStatusResponse, eL as UpsertRefundRequest, eM as UpsertRefundResponse, ew as UserDataResponse, h7 as V1BulkMarkOrdersAsPaidRequest, h8 as V1BulkMarkOrdersAsPaidResponse, h9 as V1CreatePaymentGatewayOrderRequest, ha as V1CreatePaymentGatewayOrderResponse, fx as V1LineItemDelta, fy as V1LineItemDeltaDeltaOneOf, h5 as V1MarkOrderAsPaidRequest, h6 as V1MarkOrderAsPaidResponse, cs as V1RestockItem, de as V1ScheduledAction, b6 as V1ShippingInformation, eT as V1UpdateOrderRequest, eU as V1UpdateOrderResponse, hX as Value, ap as ValueType, b5 as VatId, y as VatType, f2 as VersionedDeleteByIdsOperation, f3 as VersionedDocumentId, f1 as VersionedDocumentUpdateOperation, ah as VersioningMode, dv as VoidAuthorizedPaymentsRequest, aa as WebhookIdentityType, W as WeightUnit, c7 as WixReceipt, di as WixReceiptInfo } from './ecom-v1-order-orders.universal-CaDvypy_.js';
4
4
 
5
+ type OrderNonNullablePaths = `number` | `lineItems` | `lineItems.${number}._id` | `lineItems.${number}.productName.original` | `lineItems.${number}.catalogReference.catalogItemId` | `lineItems.${number}.catalogReference.appId` | `lineItems.${number}.quantity` | `lineItems.${number}.totalDiscount.amount` | `lineItems.${number}.totalDiscount.formattedAmount` | `lineItems.${number}.physicalProperties.shippable` | `lineItems.${number}.itemType.preset` | `lineItems.${number}.itemType.custom` | `lineItems.${number}.paymentOption` | `lineItems.${number}.taxDetails.taxRate` | `lineItems.${number}.taxInfo.taxIncludedInPrice` | `lineItems.${number}.digitalFile.fileId` | `lineItems.${number}.subscriptionInfo.cycleNumber` | `lineItems.${number}.subscriptionInfo.subscriptionOptionTitle` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.frequency` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.autoRenewal` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.enableCustomerCancellation` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.freeTrialPeriod.frequency` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.freeTrialPeriod.interval` | `lineItems.${number}.priceDescription.original` | `lineItems.${number}.taxableAddress.addressType` | `buyerInfo.visitorId` | `buyerInfo.memberId` | `paymentStatus` | `fulfillmentStatus` | `weightUnit` | `taxIncludedInPrices` | `priceSummary.subtotal.amount` | `priceSummary.subtotal.formattedAmount` | `billingInfo.address.streetAddress.number` | `billingInfo.address.streetAddress.name` | `billingInfo.contactDetails.vatId._id` | `billingInfo.contactDetails.vatId.type` | `shippingInfo.title` | `shippingInfo.logistics.shippingDestination.address.streetAddress.number` | `shippingInfo.logistics.shippingDestination.address.streetAddress.name` | `shippingInfo.logistics.shippingDestination.contactDetails.vatId._id` | `shippingInfo.logistics.shippingDestination.contactDetails.vatId.type` | `shippingInfo.logistics.pickupDetails.pickupMethod` | `shippingInfo.cost.price.amount` | `shippingInfo.cost.price.formattedAmount` | `shippingInfo.cost.taxDetails.taxRate` | `status` | `taxSummary.totalTax.amount` | `taxSummary.totalTax.formattedAmount` | `taxInfo.totalTax.amount` | `taxInfo.totalTax.formattedAmount` | `taxInfo.taxBreakdown` | `taxInfo.taxBreakdown.${number}.taxName` | `taxInfo.taxBreakdown.${number}.taxType` | `taxInfo.taxBreakdown.${number}.jurisdiction` | `taxInfo.taxBreakdown.${number}.jurisdictionType` | `taxInfo.taxBreakdown.${number}.rate` | `appliedDiscounts` | `appliedDiscounts.${number}.coupon._id` | `appliedDiscounts.${number}.coupon.code` | `appliedDiscounts.${number}.coupon.name` | `appliedDiscounts.${number}.coupon.amount.amount` | `appliedDiscounts.${number}.coupon.amount.formattedAmount` | `appliedDiscounts.${number}.merchantDiscount.discountReason` | `appliedDiscounts.${number}.discountRule._id` | `appliedDiscounts.${number}.discountRule.name.original` | `appliedDiscounts.${number}.discountType` | `activities` | `activities.${number}.customActivity.appId` | `activities.${number}.customActivity.type` | `activities.${number}.merchantComment.message` | `activities.${number}.orderRefunded.manual` | `activities.${number}.orderRefunded.amount.amount` | `activities.${number}.orderRefunded.amount.formattedAmount` | `activities.${number}.orderRefunded.reason` | `activities.${number}.type` | `attributionSource` | `createdBy.userId` | `createdBy.memberId` | `createdBy.visitorId` | `createdBy.appId` | `channelInfo.type` | `customFields` | `customFields.${number}.title` | `balanceSummary.balance.amount` | `balanceSummary.balance.formattedAmount` | `balanceSummary.paid.amount` | `balanceSummary.paid.formattedAmount` | `additionalFees` | `additionalFees.${number}.name` | `additionalFees.${number}.price.amount` | `additionalFees.${number}.price.formattedAmount` | `additionalFees.${number}.taxDetails.taxRate` | `additionalFees.${number}._id` | `recipientInfo.address.streetAddress.number` | `recipientInfo.address.streetAddress.name` | `recipientInfo.contactDetails.vatId._id` | `recipientInfo.contactDetails.vatId.type` | `tags.privateTags.tagIds` | `businessLocation._id` | `businessLocation.name` | `payAfterFreeTrial.subtotal.amount` | `payAfterFreeTrial.subtotal.formattedAmount`;
5
6
  declare function preparePaymentCollection$1(httpClient: HttpClient): PreparePaymentCollectionSignature;
6
7
  interface PreparePaymentCollectionSignature {
7
8
  /**
@@ -13,8 +14,8 @@ interface PreparePaymentCollectionSignature {
13
14
  * @param - Ecom order ID.
14
15
  * @param - Amount to collect
15
16
  */
16
- (ecomOrderId: string, amount: Price, options?: PreparePaymentCollectionOptions | undefined): Promise<PreparePaymentCollectionResponse & {
17
- __applicationErrorsType?: PreparePaymentCollectionApplicationErrors | undefined;
17
+ (ecomOrderId: string, amount: Price, options?: PreparePaymentCollectionOptions): Promise<NonNullablePaths<PreparePaymentCollectionResponse, `paymentGatewayOrderId`> & {
18
+ __applicationErrorsType?: PreparePaymentCollectionApplicationErrors;
18
19
  }>;
19
20
  }
20
21
  declare function getPaymentCollectabilityStatus$1(httpClient: HttpClient): GetPaymentCollectabilityStatusSignature;
@@ -25,7 +26,7 @@ interface GetPaymentCollectabilityStatusSignature {
25
26
  * reason why payment collection is not possible.
26
27
  * @param - Ecom order ID.
27
28
  */
28
- (ecomOrderId: string): Promise<GetPaymentCollectabilityStatusResponse>;
29
+ (ecomOrderId: string): Promise<NonNullablePaths<GetPaymentCollectabilityStatusResponse, `status` | `amount.amount` | `amount.formattedAmount`>>;
29
30
  }
30
31
  declare function voidAuthorizedPayments$1(httpClient: HttpClient): VoidAuthorizedPaymentsSignature;
31
32
  interface VoidAuthorizedPaymentsSignature {
@@ -35,8 +36,8 @@ interface VoidAuthorizedPaymentsSignature {
35
36
  * @param - Wix eCommerce order ID
36
37
  * @param - Payment IDs
37
38
  */
38
- (ecomOrderId: string, paymentIds: string[]): Promise<VoidAuthorizedPaymentsResponse & {
39
- __applicationErrorsType?: VoidAuthorizedPaymentsApplicationErrors | undefined;
39
+ (ecomOrderId: string, paymentIds: string[]): Promise<NonNullablePaths<VoidAuthorizedPaymentsResponse, `orderTransactions.orderId` | `orderTransactions.payments` | `orderTransactions.payments.${number}.regularPaymentDetails.offlinePayment` | `orderTransactions.payments.${number}.regularPaymentDetails.status` | `orderTransactions.payments.${number}.regularPaymentDetails.savedPaymentMethod` | `orderTransactions.payments.${number}.regularPaymentDetails.authorizationDetails.delayedCapture` | `orderTransactions.payments.${number}.regularPaymentDetails.authorizationDetails.void.status` | `orderTransactions.payments.${number}.regularPaymentDetails.authorizationDetails.void.reason` | `orderTransactions.payments.${number}.regularPaymentDetails.authorizationDetails.scheduledAction.actionType` | `orderTransactions.payments.${number}.giftcardPaymentDetails.giftCardPaymentId` | `orderTransactions.payments.${number}.giftcardPaymentDetails.appId` | `orderTransactions.payments.${number}.giftcardPaymentDetails.voided` | `orderTransactions.payments.${number}.refundDisabled` | `orderTransactions.refunds` | `orderTransactions.refunds.${number}._id` | `orderTransactions.refunds.${number}.details.shippingIncluded` | `orderTransactions.refunds.${number}.summary.pending`> & {
40
+ __applicationErrorsType?: VoidAuthorizedPaymentsApplicationErrors;
40
41
  }>;
41
42
  }
42
43
  declare function captureAuthorizedPayments$1(httpClient: HttpClient): CaptureAuthorizedPaymentsSignature;
@@ -47,8 +48,8 @@ interface CaptureAuthorizedPaymentsSignature {
47
48
  * @param - Wix eCommerce order ID
48
49
  * @param - Capture payments information
49
50
  */
50
- (ecomOrderId: string, payments: PaymentCapture[]): Promise<CaptureAuthorizedPaymentsResponse & {
51
- __applicationErrorsType?: CaptureAuthorizedPaymentsApplicationErrors | undefined;
51
+ (ecomOrderId: string, payments: NonNullablePaths<PaymentCapture, `paymentId`>[]): Promise<NonNullablePaths<CaptureAuthorizedPaymentsResponse, `orderTransactions.orderId` | `orderTransactions.payments` | `orderTransactions.payments.${number}.regularPaymentDetails.offlinePayment` | `orderTransactions.payments.${number}.regularPaymentDetails.status` | `orderTransactions.payments.${number}.regularPaymentDetails.savedPaymentMethod` | `orderTransactions.payments.${number}.regularPaymentDetails.authorizationDetails.delayedCapture` | `orderTransactions.payments.${number}.regularPaymentDetails.authorizationDetails.void.status` | `orderTransactions.payments.${number}.regularPaymentDetails.authorizationDetails.void.reason` | `orderTransactions.payments.${number}.regularPaymentDetails.authorizationDetails.scheduledAction.actionType` | `orderTransactions.payments.${number}.giftcardPaymentDetails.giftCardPaymentId` | `orderTransactions.payments.${number}.giftcardPaymentDetails.appId` | `orderTransactions.payments.${number}.giftcardPaymentDetails.voided` | `orderTransactions.payments.${number}.refundDisabled` | `orderTransactions.refunds` | `orderTransactions.refunds.${number}._id` | `orderTransactions.refunds.${number}.details.shippingIncluded` | `orderTransactions.refunds.${number}.summary.pending`> & {
52
+ __applicationErrorsType?: CaptureAuthorizedPaymentsApplicationErrors;
52
53
  }>;
53
54
  }
54
55
  declare function getOrder$1(httpClient: HttpClient): GetOrderSignature;
@@ -63,8 +64,8 @@ interface GetOrderSignature {
63
64
  * @param - ID of the order to retrieve.
64
65
  * @returns Fulfilled - The requested order.
65
66
  */
66
- (_id: string): Promise<Order & {
67
- __applicationErrorsType?: GetOrderApplicationErrors | undefined;
67
+ (_id: string): Promise<NonNullablePaths<Order, OrderNonNullablePaths> & {
68
+ __applicationErrorsType?: GetOrderApplicationErrors;
68
69
  }>;
69
70
  }
70
71
  declare function searchOrders$1(httpClient: HttpClient): SearchOrdersSignature;
@@ -86,7 +87,9 @@ interface SearchOrdersSignature {
86
87
  * [Sorting and Paging](https://dev.wix.com/docs/rest/articles/getting-started/sorting-and-paging).
87
88
  * @param - Search options.
88
89
  */
89
- (search: OrderSearch): Promise<SearchOrdersResponse>;
90
+ (search: OrderSearch): Promise<NonNullablePaths<SearchOrdersResponse, {
91
+ [P in OrderNonNullablePaths]: `orders.${number}.${P}`;
92
+ }[OrderNonNullablePaths]>>;
90
93
  }
91
94
  declare function createOrder$1(httpClient: HttpClient): CreateOrderSignature;
92
95
  interface CreateOrderSignature {
@@ -102,8 +105,8 @@ interface CreateOrderSignature {
102
105
  * @param - Order info.
103
106
  * @returns Newly created order.
104
107
  */
105
- (order: Order, options?: CreateOrderOptions | undefined): Promise<Order & {
106
- __applicationErrorsType?: CreateOrderApplicationErrors | undefined;
108
+ (order: NonNullablePaths<Order, `billingInfo.contactDetails` | `channelInfo` | `currencyConversionDetails.conversionRate` | `currencyConversionDetails.originalCurrency` | `lineItems` | `lineItems.${number}.catalogReference.appId` | `lineItems.${number}.catalogReference.catalogItemId` | `lineItems.${number}.itemType` | `lineItems.${number}.price` | `lineItems.${number}.productName` | `lineItems.${number}.productName.original` | `lineItems.${number}.quantity` | `priceSummary`>, options?: CreateOrderOptions): Promise<NonNullablePaths<Order, OrderNonNullablePaths> & {
109
+ __applicationErrorsType?: CreateOrderApplicationErrors;
107
110
  }>;
108
111
  }
109
112
  declare function updateOrder$1(httpClient: HttpClient): UpdateOrderSignature;
@@ -137,8 +140,8 @@ interface UpdateOrderSignature {
137
140
  * @param - Order ID.
138
141
  * @returns Newly created order.
139
142
  */
140
- (_id: string, order: UpdateOrder): Promise<Order & {
141
- __applicationErrorsType?: UpdateOrderApplicationErrors | undefined;
143
+ (_id: string, order: UpdateOrder): Promise<NonNullablePaths<Order, OrderNonNullablePaths> & {
144
+ __applicationErrorsType?: UpdateOrderApplicationErrors;
142
145
  }>;
143
146
  }
144
147
  declare function bulkUpdateOrders$1(httpClient: HttpClient): BulkUpdateOrdersSignature;
@@ -171,7 +174,9 @@ interface BulkUpdateOrdersSignature {
171
174
  * To update an order's payment status, use [`updatePaymentStatus( )`](https://www.wix.com/velo/reference/wix-ecom-backend/ordertransactions/updatepaymentstatus).
172
175
  * @param - Orders to update.
173
176
  */
174
- (orders: MaskedOrder[], options?: BulkUpdateOrdersOptions | undefined): Promise<BulkUpdateOrdersResponse>;
177
+ (orders: NonNullablePaths<MaskedOrder, `order` | `order._id`>[], options?: BulkUpdateOrdersOptions): Promise<NonNullablePaths<BulkUpdateOrdersResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | {
178
+ [P in OrderNonNullablePaths]: `results.${number}.item.${P}`;
179
+ }[OrderNonNullablePaths] | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`>>;
175
180
  }
176
181
  declare function cancelOrder$1(httpClient: HttpClient): CancelOrderSignature;
177
182
  interface CancelOrderSignature {
@@ -182,8 +187,10 @@ interface CancelOrderSignature {
182
187
  * The `cancelOrder()` function returns a Promise that resolves when the specified order is canceled and the `order.status` field changes to `CANCELED`.
183
188
  * @param - Order ID.
184
189
  */
185
- (_id: string, options?: CancelOrderOptions | undefined): Promise<CancelOrderResponse & {
186
- __applicationErrorsType?: CancelOrderApplicationErrors | undefined;
190
+ (_id: string, options?: CancelOrderOptions): Promise<NonNullablePaths<CancelOrderResponse, {
191
+ [P in OrderNonNullablePaths]: `order.${P}`;
192
+ }[OrderNonNullablePaths]> & {
193
+ __applicationErrorsType?: CancelOrderApplicationErrors;
187
194
  }>;
188
195
  }
189
196
  declare function bulkUpdateOrderTags$1(httpClient: HttpClient): BulkUpdateOrderTagsSignature;
@@ -194,7 +201,7 @@ interface BulkUpdateOrderTagsSignature {
194
201
  * > **Note:** If the same tag is passed to both the `assignTags` and `unassignTags` fields, it will be assigned.
195
202
  * @param - IDs of orders to update tags for.
196
203
  */
197
- (orderIds: string[], options?: BulkUpdateOrderTagsOptions | undefined): Promise<BulkUpdateOrderTagsResponse>;
204
+ (orderIds: string[], options?: BulkUpdateOrderTagsOptions): Promise<NonNullablePaths<BulkUpdateOrderTagsResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`>>;
198
205
  }
199
206
  declare const onOrderApproved$1: EventDefinition<OrderApprovedEnvelope, "wix.ecom.v1.order_approved">;
200
207
  declare const onOrderUpdated$1: EventDefinition<OrderUpdatedEnvelope, "wix.ecom.v1.order_updated">;
@@ -28,6 +28,7 @@ __export(index_exports, {
28
28
  AuthorizationCaptureStatus: () => AuthorizationCaptureStatus,
29
29
  AuthorizationVoidStatus: () => AuthorizationVoidStatus,
30
30
  ChannelType: () => ChannelType,
31
+ ChargebackStatus: () => ChargebackStatus,
31
32
  CustomFieldGroup: () => CustomFieldGroup,
32
33
  DeltaPaymentOptionType: () => DeltaPaymentOptionType,
33
34
  DepositType: () => DepositType,
@@ -1800,6 +1801,12 @@ var ActionType = /* @__PURE__ */ ((ActionType2) => {
1800
1801
  ActionType2["CAPTURE"] = "CAPTURE";
1801
1802
  return ActionType2;
1802
1803
  })(ActionType || {});
1804
+ var ChargebackStatus = /* @__PURE__ */ ((ChargebackStatus2) => {
1805
+ ChargebackStatus2["UNSPECIFIED"] = "UNSPECIFIED";
1806
+ ChargebackStatus2["APPROVED"] = "APPROVED";
1807
+ ChargebackStatus2["REVERSED"] = "REVERSED";
1808
+ return ChargebackStatus2;
1809
+ })(ChargebackStatus || {});
1803
1810
  var MembershipPaymentStatus = /* @__PURE__ */ ((MembershipPaymentStatus2) => {
1804
1811
  MembershipPaymentStatus2["CHARGED"] = "CHARGED";
1805
1812
  MembershipPaymentStatus2["CHARGE_FAILED"] = "CHARGE_FAILED";
@@ -3427,6 +3434,7 @@ var onOrderCreated2 = (0, import_event_definition_modules.createEventModule)(onO
3427
3434
  AuthorizationCaptureStatus,
3428
3435
  AuthorizationVoidStatus,
3429
3436
  ChannelType,
3437
+ ChargebackStatus,
3430
3438
  CustomFieldGroup,
3431
3439
  DeltaPaymentOptionType,
3432
3440
  DepositType,