@wix/auto_sdk_ecom_orders 1.0.214 → 1.0.216
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.
- package/build/cjs/{ecom-v1-order-orders.universal-CX4cZSmz.d.ts → ecom-v1-order-orders.universal-CF0kleOw.d.ts} +15 -1
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +16 -2
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-CX4cZSmz.d.mts → ecom-v1-order-orders.universal-CF0kleOw.d.mts} +15 -1
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +16 -2
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-CFyKGaZT.d.ts → ecom-v1-order-orders.universal-DjnuZ6SD.d.ts} +42 -1
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +16 -2
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{ecom-v1-order-orders.universal-CFyKGaZT.d.mts → ecom-v1-order-orders.universal-DjnuZ6SD.d.mts} +42 -1
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +16 -2
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -2884,6 +2884,14 @@ interface BalanceSummary {
|
|
|
2884
2884
|
* @readonly
|
|
2885
2885
|
*/
|
|
2886
2886
|
totalMinusPlatformFees?: Price;
|
|
2887
|
+
/**
|
|
2888
|
+
* The total adjustment applied to the cash payment due to rounding.
|
|
2889
|
+
*
|
|
2890
|
+
* Positive values indicate the total was rounded up; negative values indicate it was rounded down.
|
|
2891
|
+
* @internal
|
|
2892
|
+
* @readonly
|
|
2893
|
+
*/
|
|
2894
|
+
cashRoundingAdjustment?: CashRounding;
|
|
2887
2895
|
}
|
|
2888
2896
|
/**
|
|
2889
2897
|
* Order balance. Reflects amount left to be paid on order and is calculated dynamically. Can be negative per balance definition.
|
|
@@ -2907,6 +2915,18 @@ interface Balance {
|
|
|
2907
2915
|
*/
|
|
2908
2916
|
formattedAmount?: string;
|
|
2909
2917
|
}
|
|
2918
|
+
interface CashRounding {
|
|
2919
|
+
/**
|
|
2920
|
+
* Amount, can be negative or positive.
|
|
2921
|
+
* @decimalValue options { gte:-1000000000000000, lte:1000000000000000 }
|
|
2922
|
+
*/
|
|
2923
|
+
amount?: string;
|
|
2924
|
+
/**
|
|
2925
|
+
* Amount formatted with currency symbol.
|
|
2926
|
+
* @readonly
|
|
2927
|
+
*/
|
|
2928
|
+
formattedAmount?: string;
|
|
2929
|
+
}
|
|
2910
2930
|
interface AdditionalFee {
|
|
2911
2931
|
/**
|
|
2912
2932
|
* Additional fee's unique code for future processing.
|
|
@@ -5387,6 +5407,11 @@ interface Payment extends PaymentPaymentDetailsOneOf, PaymentReceiptInfoOneOf {
|
|
|
5387
5407
|
* @readonly
|
|
5388
5408
|
*/
|
|
5389
5409
|
supportReceiptGeneration?: boolean;
|
|
5410
|
+
/**
|
|
5411
|
+
* Details about cash rounding applied to this payment, when relevant.
|
|
5412
|
+
* @internal
|
|
5413
|
+
*/
|
|
5414
|
+
cashRoundingDetails?: CashRoundingDetails;
|
|
5390
5415
|
}
|
|
5391
5416
|
/** @oneof */
|
|
5392
5417
|
interface PaymentPaymentDetailsOneOf {
|
|
@@ -5782,6 +5807,22 @@ interface ExternalReceiptInfo {
|
|
|
5782
5807
|
*/
|
|
5783
5808
|
displayNumber?: string | null;
|
|
5784
5809
|
}
|
|
5810
|
+
interface CashRoundingDetails {
|
|
5811
|
+
/**
|
|
5812
|
+
* Payment amount before cash rounding was applied.
|
|
5813
|
+
* When provided, balance and status calculations use this value instead of `amount`
|
|
5814
|
+
* to prevent false overpayment or underpayment due to rounding.
|
|
5815
|
+
* @internal
|
|
5816
|
+
*/
|
|
5817
|
+
unroundedAmount?: Price;
|
|
5818
|
+
/**
|
|
5819
|
+
* The difference between 'amount' and 'unroundedAmount' (amount minus unroundedAmount).
|
|
5820
|
+
* A positive value indicates the price was rounded up; a negative value indicates a round-down.
|
|
5821
|
+
* @internal
|
|
5822
|
+
* @readonly
|
|
5823
|
+
*/
|
|
5824
|
+
roundingAdjustment?: CashRounding;
|
|
5825
|
+
}
|
|
5785
5826
|
interface Refund {
|
|
5786
5827
|
/**
|
|
5787
5828
|
* Refund ID.
|
|
@@ -9405,4 +9446,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
9405
9446
|
unassignTags?: TagsTags;
|
|
9406
9447
|
}
|
|
9407
9448
|
|
|
9408
|
-
export { type CancelOrderResponse as $, type MaskedOrder as A, type BulkDeleteImportedOrdersOptions as B, type CreatePaymentGatewayOrderResponse as C, type BulkUpdateOrdersOptions as D, type BulkUpdateOrdersResponse as E, type UpdateOrderLineItemIdentifiers as F, type GetPaymentCollectabilityStatusResponse as G, type UpdateOrderLineItem as H, type ImportOrderResponse as I, type UpdateOrderLineItemResponse as J, type PublicActivity as K, type AddActivityResponse as L, type MarkOrderAsPaidResponse as M, type AddActivitiesOptions as N, type Order as O, type Price as P, type AddActivitiesResponse as Q, type RecordManuallyCollectedPaymentOptions as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type UpdateActivityIdentifiers as W, type UpdateActivityResponse as X, type DeleteActivityIdentifiers as Y, type DeleteActivityResponse as Z, type CancelOrderOptions as _, type SetOrderNumberCounterResponse as a, MembershipPaymentStatus as a$, type CancelOrderApplicationErrors as a0, type OrderStatusWithLiterals as a1, type UpdateOrderStatusResponse as a2, type UpdateOrderStatusApplicationErrors as a3, type AggregateOrdersOptions as a4, type AggregateOrdersResponse as a5, type BulkUpdateOrderTagsOptions as a6, type BulkUpdateOrderTagsResponse as a7, type OrderApprovedEnvelope as a8, type OrderCanceledEnvelope as a9, AdditionalFeeSource as aA, OrderActionType as aB, SpecificItemsCouponBehavior as aC, ChargeType as aD, DeltaPaymentOptionType as aE, InventoryAction as aF, WebhookIdentityType as aG, VersioningMode as aH, PreviewEmailType as aI, State as aJ, SiteCreatedContext as aK, Namespace as aL, DeleteStatus as aM, ScheduledAction as aN, DurationUnit as aO, PaymentCollectabilityStatus as aP, PredefinedPaymentMethod as aQ, RefundableStatus as aR, NonRefundableReason as aS, ManuallyRefundableReason as aT, RestockType as aU, TransactionStatus as aV, AuthorizationCaptureStatus as aW, AuthorizationVoidStatus as aX, Reason as aY, ActionType as aZ, ChargebackStatus as a_, type OrderCommittedEnvelope as aa, type OrderCreatedEnvelope as ab, type OrderFulfilledEnvelope as ac, type OrderPaymentStatusUpdatedEnvelope as ad, type OrderUpdatedEnvelope as ae, DescriptionLineType as af, DimensionsUnit as ag, ItemTypePreset as ah, PaymentOptionType as ai, JurisdictionType as aj, SubscriptionFrequency as ak, AdjustmentType as al, TaxableAddressType as am, PaymentStatus as an, FulfillmentStatus as ao, WeightUnit as ap, VatType as aq, PickupMethod as ar, OrderStatus as as, DiscountType as at, DiscountReason as au, LineItemQuantityChangeType as av, ActivityType as aw, OrderActivityTypeEnumActivityType as ax, AttributionSource as ay, ChannelType as az, type BulkDeleteImportedOrdersResponse as b, type OrderTaxBreakdown as b$, RefundStatus as b0, SortOrder as b1, OrderApprovalStrategy as b2, Placement as b3, SubdivisionType as b4, SourceType as b5, CustomFieldGroup as b6, ValueType as b7, DepositType as b8, InvoiceStatus as b9, type LocationAndQuantity as bA, type TaxableAddress as bB, type TaxableAddressTaxableAddressDataOneOf as bC, type ExtendedFields as bD, type ModifierGroup as bE, type TranslatableString as bF, type ItemModifier as bG, type BuyerInfo as bH, type BuyerInfoIdOneOf as bI, type CurrencyConversionDetails as bJ, type PriceSummary as bK, type AddressWithContact as bL, type Address as bM, type StreetAddress as bN, type AddressLocation as bO, type FullAddressContactDetails as bP, type VatId as bQ, type V1ShippingInformation as bR, type DeliveryLogistics as bS, type DeliveryLogisticsAddressOneOf as bT, type PickupDetails as bU, type PickupAddress as bV, type DeliveryTimeSlot as bW, type ShippingPrice as bX, type ShippingRegion as bY, type TaxSummary as bZ, type OrderTaxInfo as b_, type OrderLineItem as ba, type ProductName as bb, type CatalogReference as bc, type DescriptionLine as bd, type DescriptionLineValueOneOf as be, type DescriptionLineDescriptionLineValueOneOf as bf, type DescriptionLineName as bg, type PlainTextValue as bh, type Color as bi, type FocalPoint as bj, type PhysicalProperties as bk, type Dimensions as bl, type ItemType as bm, type ItemTypeItemTypeDataOneOf as bn, type ItemTaxFullDetails as bo, type LineItemTaxInfo as bp, type LineItemTaxBreakdown as bq, type DigitalFile as br, type SubscriptionInfo as bs, type SubscriptionTitle as bt, type SubscriptionDescription as bu, type SubscriptionSettings as bv, type FreeTrialPeriod as bw, type BillingAdjustment as bx, type BillingAdjustmentPriceSummary as by, type PriceDescription as bz, type PreparePaymentCollectionOptions as c, type ChargebackCreated as c$, type AppliedDiscount as c0, type AppliedDiscountDiscountSourceOneOf as c1, type Coupon as c2, type MerchantDiscount as c3, type MerchantDiscountMerchantDiscountReasonOneOf as c4, type DiscountRule as c5, type DiscountRuleName as c6, type LineItemDiscount as c7, type ItemCombination as c8, type ItemCombinationLineItem as c9, type AuthorizedPaymentCreated as cA, type AuthorizedPaymentCaptured as cB, type AuthorizedPaymentVoided as cC, type RefundInitiated as cD, type RefundedPayment as cE, type RefundedPaymentKindOneOf as cF, type RegularPaymentRefund as cG, type GiftCardPaymentRefund as cH, type MembershipPaymentRefund as cI, type PaymentRefunded as cJ, type PaymentRefundFailed as cK, type RefundedAsStoreCredit as cL, type PaymentPending as cM, type PaymentPendingPaymentDetailsOneOf as cN, type RegularPayment as cO, type RegularPaymentPaymentMethodDetailsOneOf as cP, type CreditCardDetails as cQ, type PaymentCanceled as cR, type PaymentCanceledPaymentDetailsOneOf as cS, type PaymentDeclined as cT, type PaymentDeclinedPaymentDetailsOneOf as cU, type ReceiptCreated as cV, type ReceiptCreatedReceiptInfoOneOf as cW, type WixReceipt as cX, type ExternalReceipt as cY, type ReceiptSent as cZ, type ReceiptSentReceiptInfoOneOf as c_, type Activity as ca, type ActivityContentOneOf as cb, type CustomActivity as cc, type MerchantComment as cd, type OrderRefunded as ce, type OrderCreatedFromExchange as cf, type NewExchangeOrderCreated as cg, type LineItemExchangeData as ch, type DraftOrderChangesApplied as ci, type OrderChange as cj, type OrderChangeValueOneOf as ck, type LineItemChanges as cl, type LineItemQuantityChange as cm, type LineItemPriceChange as cn, type LineItemProductNameChange as co, type LineItemDescriptionLineChange as cp, type LineItemModifiersChange as cq, type ManagedLineItem as cr, type ManagedDiscount as cs, type TranslatedValue as ct, type LineItemAmount as cu, type ManagedAdditionalFee as cv, type TotalPriceChange as cw, type ShippingInformationChange as cx, type ShippingInformation as cy, type SavedPaymentMethod as cz, type PreparePaymentCollectionResponse as d, type DeleteByIdsOperation as d$, type ChargebackReversed as d0, type CreatedBy as d1, type CreatedByStringOneOf as d2, type ChannelInfo as d3, type CustomField as d4, type BalanceSummary as d5, type Balance as d6, type AdditionalFee as d7, type FulfillmentStatusesAggregate as d8, type Tags as d9, type OrderLineItemChangedDetails as dA, type LineItemDelta as dB, type LineItemDeltaDeltaOneOf as dC, type AppliedDiscountDelta as dD, type AppliedDiscountDeltaDeltaOneOf as dE, type AdditionalFeeDelta as dF, type AdditionalFeeDeltaDeltaOneOf as dG, type DraftOrderCommitSettings as dH, type InventoryUpdateDetails as dI, type ImportOrderRequest as dJ, type SetOrderNumberCounterRequest as dK, type BulkDeleteImportedOrdersRequest as dL, type DomainEvent as dM, type DomainEventBodyOneOf as dN, type EntityCreatedEvent as dO, type RestoreInfo as dP, type EntityUpdatedEvent as dQ, type EntityDeletedEvent as dR, type ActionEvent as dS, type MessageEnvelope as dT, type IdentificationData as dU, type IdentificationDataIdOneOf as dV, type AccountInfo as dW, type UpdateInternalDocumentsEvent as dX, type UpdateInternalDocumentsEventOperationOneOf as dY, type InternalDocument as dZ, type InternalDocumentUpdateOperation as d_, type TagList as da, type Location as db, type OrderSettings as dc, type OrderSettingsAllowedActionsOneOf as dd, type OrderSettingsEditableByOneOf as de, type CustomAllowedActions as df, type OwnerApps as dg, type FormInfo as dh, type FormIdentifier as di, type PlatformFeeSummary as dj, type PlatformFee as dk, type OrderApproved as dl, type OrdersExperiments as dm, type OrderRejectedEventOrderRejected as dn, type OrderItemsRestocked as dp, type V1RestockItem as dq, type OrderImported as dr, type ImportedOrderDeleted as ds, type PaymentStatusUpdated as dt, type FulfillmentStatusUpdated as du, type OrderCanceledEventOrderCanceled as dv, type OrderDeltasCommitted as dw, type CommittedDiffs as dx, type CommittedDiffsShippingUpdateInfoOneOf as dy, type ItemChangedDetails as dz, type PreparePaymentCollectionApplicationErrors as e, type SitePublished as e$, type DeleteByFilterOperation as e0, type InternalDocumentUpdateByFilterOperation as e1, type InternalUpdateExistingOperation as e2, type VersionedDocumentUpdateOperation as e3, type VersionedDeleteByIdsOperation as e4, type VersionedDocumentId as e5, type TriggerReindexRequest as e6, type TriggerReindexResponse as e7, type Empty as e8, type TriggerReindexOrderRequest as e9, type RefundItem as eA, type LineItemRefund as eB, type AdditionalFeeRefund as eC, type ShippingRefund as eD, type PreviewRefundEmailResponse as eE, type PreviewCancelEmailRequest as eF, type PreviewCancelEmailResponse as eG, type PreviewCancelRefundEmailRequest as eH, type PreviewCancelRefundEmailResponse as eI, type PreviewBuyerPaymentsReceivedEmailRequest as eJ, type PreviewBuyerPaymentsReceivedEmailResponse as eK, type PreviewBuyerConfirmationEmailRequest as eL, type PreviewBuyerConfirmationEmailResponse as eM, type PreviewBuyerPickupConfirmationEmailRequest as eN, type PreviewBuyerPickupConfirmationEmailResponse as eO, type PreviewShippingConfirmationEmailRequest as eP, type PreviewShippingConfirmationEmailResponse as eQ, type PreviewResendDownloadLinksEmailRequest as eR, type PreviewResendDownloadLinksEmailResponse as eS, type MetaSiteSpecialEvent as eT, type MetaSiteSpecialEventPayloadOneOf as eU, type Asset as eV, type SiteCreated as eW, type SiteTransferred as eX, type SiteDeleted as eY, type DeleteContext as eZ, type SiteUndeleted as e_, type SendBuyerConfirmationEmailRequest as ea, type SendBuyerConfirmationEmailResponse as eb, type SendBuyerPaymentsReceivedEmailRequest as ec, type SendBuyerPaymentsReceivedEmailResponse as ed, type SendBuyerPickupConfirmationEmailRequest as ee, type SendBuyerPickupConfirmationEmailResponse as ef, type BulkSendBuyerPickupConfirmationEmailsRequest as eg, type BulkSendBuyerPickupConfirmationEmailsResponse as eh, type SendBuyerShippingConfirmationEmailRequest as ei, type SendBuyerShippingConfirmationEmailResponse as ej, type BulkSendBuyerShippingConfirmationEmailsRequest as ek, type BulkSendBuyerShippingConfirmationEmailsResponse as el, type SendMerchantOrderReceivedNotificationRequest as em, type SendMerchantOrderReceivedNotificationResponse as en, type SendCancelRefundEmailRequest as eo, type SendCancelRefundEmailResponse as ep, type SendRefundEmailRequest as eq, type SendRefundEmailResponse as er, type SendFulfillmentEmailRequest as es, type SendFulfillmentEmailResponse as et, type SendMerchantOrderReceivedPushRequest as eu, type SendMerchantOrderReceivedPushResponse as ev, type PreviewEmailByTypeRequest as ew, type PreviewEmailByTypeResponse as ex, type PreviewRefundEmailRequest as ey, type RefundDetails as ez, type RecordManuallyCollectedPaymentApplicationErrors as f, type RegularPaymentDetails as f$, type SiteUnpublished as f0, type SiteMarkedAsTemplate as f1, type SiteMarkedAsWixSite as f2, type ServiceProvisioned as f3, type ServiceRemoved as f4, type SiteRenamed as f5, type SiteHardDeleted as f6, type NamespaceChanged as f7, type StudioAssigned as f8, type StudioUnassigned as f9, type UserDefinedPaymentMethodName as fA, type UserDefinedPaymentMethodNameKindOneOf as fB, type RecordManuallyCollectedPaymentResponse as fC, type MarkOrderAsPaidRequest as fD, type BulkMarkOrdersAsPaidRequest as fE, type BulkOrderResult as fF, type ItemMetadata as fG, type ApplicationError as fH, type BulkActionMetadata as fI, type GetRefundabilityStatusRequest as fJ, type Refundability as fK, type RefundabilityAdditionalRefundabilityInfoOneOf as fL, type CreatePaymentGatewayOrderRequest as fM, type ChargedBy as fN, type ChargeMembershipsRequest as fO, type MembershipChargeItem as fP, type MembershipName as fQ, type ServiceProperties as fR, type ChargeMembershipsResponse as fS, type TriggerRefundRequest as fT, type RefundSideEffects as fU, type RestockInfo as fV, type RestockItem as fW, type OrderTransactions as fX, type Payment as fY, type PaymentPaymentDetailsOneOf as fZ, type PaymentReceiptInfoOneOf as f_, type SiteUrlChanged as fa, type SitePurgedExternally as fb, type OdeditorAssigned as fc, type OdeditorUnassigned as fd, type PicassoAssigned as fe, type PicassoUnassigned as ff, type WixelAssigned as fg, type WixelUnassigned as fh, type StudioTwoAssigned as fi, type StudioTwoUnassigned as fj, type UserDomainMediaEnabled as fk, type UserDomainMediaDisabled as fl, type EditorlessAssigned as fm, type EditorlessUnassigned as fn, type HasCustomEmailConfigurationsRequest as fo, type HasCustomEmailConfigurationsResponse as fp, type AddToAutomationMigrationPopulationRequest as fq, type AddToAutomationMigrationPopulationResponse as fr, type IsInAutomationMigrationPopulationRequest as fs, type IsInAutomationMigrationPopulationResponse as ft, type PreparePaymentCollectionRequest as fu, type RedirectUrls as fv, type DelayedCaptureSettings as fw, type Duration as fx, type GetPaymentCollectabilityStatusRequest as fy, type RecordManuallyCollectedPaymentRequest as fz, type PaymentCollectionMarkOrderAsPaidOptions as g, type ArchiveOrderRequest as g$, type RegularPaymentDetailsPaymentMethodDetailsOneOf as g0, type CreditCardPaymentMethodDetails as g1, type AuthorizationDetails as g2, type AuthorizationCapture as g3, type AuthorizationActionFailureDetails as g4, type AuthorizationVoid as g5, type V1ScheduledAction as g6, type Chargeback as g7, type PaymentMethodName as g8, type GiftCardPaymentDetails as g9, type CursorPaging as gA, type InternalQueryOrdersResponse as gB, type PlatformPagingMetadata as gC, type Cursors as gD, type QueryOrderRequest as gE, type QueryOrderResponse as gF, type SearchOrdersRequest as gG, type CursorSearch as gH, type CursorSearchPagingMethodOneOf as gI, type CursorPagingMetadata as gJ, type CreateOrderRequest as gK, type OrderCreationSettings as gL, type OrderCreationSettingsEditableByOneOf as gM, type OrderCreateNotifications as gN, type CreateOrderResponse as gO, type UpdateOrderRequest as gP, type UpdateOrderResponse as gQ, type BulkUpdateOrdersRequest as gR, type CommitDeltasRequest as gS, type DraftOrderDiffs as gT, type DraftOrderDiffsShippingUpdateInfoOneOf as gU, type DraftOrderDiffsBuyerUpdateInfoOneOf as gV, type DraftOrderDiffsBillingUpdateInfoOneOf as gW, type DraftOrderDiffsRecipientUpdateInfoOneOf as gX, type V1LineItemDelta as gY, type V1LineItemDeltaDeltaOneOf as gZ, type CommitDeltasResponse as g_, type MembershipPaymentDetails as ga, type WixReceiptInfo as gb, type ExternalReceiptInfo as gc, type Refund as gd, type RefundTransaction as ge, type RefundStatusInfo as gf, type AggregatedRefundSummary as gg, type RefundItemsBreakdown as gh, type LineItemRefundSummary as gi, type CalculateRefundRequest as gj, type CalculateRefundItemRequest as gk, type CalculateRefundResponse as gl, type CalculateRefundItemResponse as gm, type VoidAuthorizedPaymentsRequest as gn, type CaptureAuthorizedPaymentsRequest as go, type ChargeSavedPaymentMethodRequest as gp, type ChargeSavedPaymentMethodResponse as gq, type DiffmatokyPayload as gr, type ErrorInformation as gs, type GetOrderRequest as gt, type GetOrderResponse as gu, type InternalQueryOrdersRequest as gv, type PlatformQuery as gw, type PlatformQueryPagingMethodOneOf as gx, type Sorting as gy, type PlatformPaging as gz, type PaymentCollectionMarkOrderAsPaidApplicationErrors as h, type BulkMarkAsFulfilledByFilterRequest as h$, type ArchiveOrderResponse as h0, type BulkArchiveOrdersRequest as h1, type BulkArchiveOrdersResponse as h2, type BulkArchiveOrdersByFilterRequest as h3, type BulkArchiveOrdersByFilterResponse as h4, type UnArchiveOrderRequest as h5, type UnArchiveOrderResponse as h6, type BulkUnArchiveOrdersRequest as h7, type BulkUnArchiveOrdersResponse as h8, type BulkUnArchiveOrdersByFilterRequest as h9, type ShippingConfirmationEmailSent as hA, type InvoiceAdded as hB, type InvoiceSent as hC, type FulfillerEmailSent as hD, type ShippingAddressEdited as hE, type EmailEdited as hF, type PickupReadyEmailSent as hG, type OrderPartiallyPaid as hH, type OrderPending as hI, type OrderRejected as hJ, type AddInternalActivityResponse as hK, type AddActivityRequest as hL, type PublicActivityContentOneOf as hM, type AddActivitiesRequest as hN, type UpdateActivityRequest as hO, type DeleteActivityRequest as hP, type UpdateLineItemsDescriptionLinesRequest as hQ, type LineItemUpdate as hR, type UpdateLineItemsDescriptionLinesResponse as hS, type MarkOrderAsSeenByHumanRequest as hT, type MarkOrderAsSeenByHumanResponse as hU, type CancelOrderRequest as hV, type UpdateOrderStatusRequest as hW, type MarkAsFulfilledRequest as hX, type MarkAsFulfilledResponse as hY, type BulkMarkAsFulfilledRequest as hZ, type BulkMarkAsFulfilledResponse as h_, type BulkUnArchiveOrdersByFilterResponse as ha, type UpdateBuyerInfoRequest as hb, type BuyerInfoUpdate as hc, type UpdateBuyerInfoResponse as hd, type UpdateBuyerEmailRequest as he, type UpdateBuyerEmailResponse as hf, type UpdateOrderShippingAddressRequest as hg, type UpdateOrderShippingAddressResponse as hh, type UpdateBillingContactDetailsRequest as hi, type UpdateBillingContactDetailsResponse as hj, type UpdateOrderLineItemRequest as hk, type UpdateOrderLineItemsRequest as hl, type MaskedOrderLineItem as hm, type UpdateOrderLineItemsResponse as hn, type AddInternalActivityRequest as ho, type InternalActivity as hp, type InternalActivityContentOneOf as hq, type OrderPlaced as hr, type OrderPaid as hs, type OrderFulfilled as ht, type OrderNotFulfilled as hu, type OrderCanceled as hv, type DownloadLinkSent as hw, type TrackingNumberAdded as hx, type TrackingNumberEdited as hy, type TrackingLinkAdded as hz, type BulkMarkOrdersAsPaidResponse as i, type CalculatedTax as i$, type BulkMarkAsFulfilledByFilterResponse as i0, type MarkAsUnfulfilledRequest as i1, type MarkAsUnfulfilledResponse as i2, type BulkMarkAsUnfulfilledRequest as i3, type BulkMarkAsUnfulfilledResponse as i4, type BulkMarkAsUnfulfilledByFilterRequest as i5, type BulkMarkAsUnfulfilledByFilterResponse as i6, type BulkSetBusinessLocationRequest as i7, type BulkSetBusinessLocationResponse as i8, type BulkSetBusinessLocationResult as i9, type Reschedule as iA, type InvoiceSentEvent as iB, type IdAndVersion as iC, type InvoiceFields as iD, type Customer as iE, type Email as iF, type QuotesAddress as iG, type AddressDescription as iH, type Phone as iI, type Company as iJ, type CommonAddress as iK, type CommonAddressStreetOneOf as iL, type Subdivision as iM, type StandardDetails as iN, type InvoiceDates as iO, type LineItems as iP, type LineItem as iQ, type BigDecimalWrapper as iR, type LineItemTax as iS, type Source as iT, type LineItemMetaData as iU, type Locale as iV, type TotalPrice as iW, type ItemizedFee as iX, type Discount as iY, type DiscountOneDiscountTypeOneOf as iZ, type CalculatedTaxes as i_, type V1MarkOrderAsPaidRequest as ia, type V1MarkOrderAsPaidResponse as ib, type V1BulkMarkOrdersAsPaidRequest as ic, type V1BulkMarkOrdersAsPaidResponse as id, type V1CreatePaymentGatewayOrderRequest as ie, type V1CreatePaymentGatewayOrderResponse as ig, type GetShipmentsRequest as ih, type GetShipmentsResponse as ii, type AggregateOrdersRequest as ij, type DecrementItemsQuantityRequest as ik, type DecrementData as il, type DecrementItemsQuantityResponse as im, type BulkUpdateOrderTagsRequest as io, type TagsTags as ip, type TagsTagList as iq, type BulkUpdateOrderTagsResult as ir, type SendOrderUpdatedDomainEventRequest as is, type SendOrderUpdatedDomainEventResponse as it, type Task as iu, type TaskKey as iv, type TaskAction as iw, type TaskActionActionOneOf as ix, type Complete as iy, type Cancel as iz, type GetRefundabilityStatusResponse as j, type PlacementWithLiterals as j$, type Payments as j0, type InvoicesPayment as j1, type MetaData as j2, type InvoiceDynamicPriceTotals as j3, type CustomFieldValue as j4, type Value as j5, type Deposit as j6, type BaseEventMetadata as j7, type EventMetadata as j8, type AccountInfoMetadata as j9, type DeltaPaymentOptionTypeWithLiterals as jA, type InventoryActionWithLiterals as jB, type WebhookIdentityTypeWithLiterals as jC, type VersioningModeWithLiterals as jD, type PreviewEmailTypeWithLiterals as jE, type StateWithLiterals as jF, type SiteCreatedContextWithLiterals as jG, type NamespaceWithLiterals as jH, type DeleteStatusWithLiterals as jI, type ScheduledActionWithLiterals as jJ, type DurationUnitWithLiterals as jK, type PaymentCollectabilityStatusWithLiterals as jL, type PredefinedPaymentMethodWithLiterals as jM, type RefundableStatusWithLiterals as jN, type NonRefundableReasonWithLiterals as jO, type ManuallyRefundableReasonWithLiterals as jP, type RestockTypeWithLiterals as jQ, type TransactionStatusWithLiterals as jR, type AuthorizationCaptureStatusWithLiterals as jS, type AuthorizationVoidStatusWithLiterals as jT, type ReasonWithLiterals as jU, type ActionTypeWithLiterals as jV, type ChargebackStatusWithLiterals as jW, type MembershipPaymentStatusWithLiterals as jX, type RefundStatusWithLiterals as jY, type SortOrderWithLiterals as jZ, type OrderApprovalStrategyWithLiterals as j_, type OrderSearchSpec as ja, utils as jb, type DescriptionLineTypeWithLiterals as jc, type DimensionsUnitWithLiterals as jd, type ItemTypePresetWithLiterals as je, type PaymentOptionTypeWithLiterals as jf, type JurisdictionTypeWithLiterals as jg, type SubscriptionFrequencyWithLiterals as jh, type AdjustmentTypeWithLiterals as ji, type TaxableAddressTypeWithLiterals as jj, type PaymentStatusWithLiterals as jk, type FulfillmentStatusWithLiterals as jl, type WeightUnitWithLiterals as jm, type VatTypeWithLiterals as jn, type PickupMethodWithLiterals as jo, type DiscountTypeWithLiterals as jp, type DiscountReasonWithLiterals as jq, type LineItemQuantityChangeTypeWithLiterals as jr, type ActivityTypeWithLiterals as js, type OrderActivityTypeEnumActivityTypeWithLiterals as jt, type AttributionSourceWithLiterals as ju, type ChannelTypeWithLiterals as jv, type AdditionalFeeSourceWithLiterals as jw, type OrderActionTypeWithLiterals as jx, type SpecificItemsCouponBehaviorWithLiterals as jy, type ChargeTypeWithLiterals as jz, type PaymentCollectionCreatePaymentGatewayOrderOptions as k, type SubdivisionTypeWithLiterals as k0, type SourceTypeWithLiterals as k1, type CustomFieldGroupWithLiterals as k2, type ValueTypeWithLiterals as k3, type DepositTypeWithLiterals as k4, type InvoiceStatusWithLiterals as k5, type CommonSearchWithEntityContext as k6, onOrderApproved as k7, onOrderCanceled as k8, onOrderCommitted as k9, deleteActivity as kA, cancelOrder as kB, updateOrderStatus as kC, aggregateOrders as kD, bulkUpdateOrderTags as kE, onOrderCreated as ka, onOrderFulfilled as kb, onOrderPaymentStatusUpdated as kc, onOrderUpdated as kd, importOrder as ke, setOrderNumberCounter as kf, bulkDeleteImportedOrders as kg, preparePaymentCollection as kh, getPaymentCollectabilityStatus as ki, recordManuallyCollectedPayment as kj, paymentCollectionMarkOrderAsPaid as kk, paymentCollectionBulkMarkOrdersAsPaid as kl, getRefundabilityStatus as km, paymentCollectionCreatePaymentGatewayOrder as kn, chargeMemberships as ko, triggerRefund as kp, voidAuthorizedPayments as kq, captureAuthorizedPayments as kr, getOrder as ks, createOrder as kt, updateOrder as ku, bulkUpdateOrders as kv, updateOrderLineItem as kw, addActivity as kx, addActivities as ky, updateActivity as kz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as l, type ChargeMembershipsOptions as m, type PaymentRefund as n, type TriggerRefundResponse as o, type TriggerRefundApplicationErrors as p, type VoidAuthorizedPaymentsApplicationErrors as q, type PaymentCapture as r, type CaptureAuthorizedPaymentsResponse as s, type CaptureAuthorizedPaymentsApplicationErrors as t, type GetOrderApplicationErrors as u, type OrderSearch as v, type SearchOrdersResponse as w, type CreateOrderOptions as x, type CreateOrderApplicationErrors as y, type UpdateOrderApplicationErrors as z };
|
|
9449
|
+
export { type CancelOrderResponse as $, type MaskedOrder as A, type BulkDeleteImportedOrdersOptions as B, type CreatePaymentGatewayOrderResponse as C, type BulkUpdateOrdersOptions as D, type BulkUpdateOrdersResponse as E, type UpdateOrderLineItemIdentifiers as F, type GetPaymentCollectabilityStatusResponse as G, type UpdateOrderLineItem as H, type ImportOrderResponse as I, type UpdateOrderLineItemResponse as J, type PublicActivity as K, type AddActivityResponse as L, type MarkOrderAsPaidResponse as M, type AddActivitiesOptions as N, type Order as O, type Price as P, type AddActivitiesResponse as Q, type RecordManuallyCollectedPaymentOptions as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type UpdateActivityIdentifiers as W, type UpdateActivityResponse as X, type DeleteActivityIdentifiers as Y, type DeleteActivityResponse as Z, type CancelOrderOptions as _, type SetOrderNumberCounterResponse as a, MembershipPaymentStatus as a$, type CancelOrderApplicationErrors as a0, type OrderStatusWithLiterals as a1, type UpdateOrderStatusResponse as a2, type UpdateOrderStatusApplicationErrors as a3, type AggregateOrdersOptions as a4, type AggregateOrdersResponse as a5, type BulkUpdateOrderTagsOptions as a6, type BulkUpdateOrderTagsResponse as a7, type OrderApprovedEnvelope as a8, type OrderCanceledEnvelope as a9, AdditionalFeeSource as aA, OrderActionType as aB, SpecificItemsCouponBehavior as aC, ChargeType as aD, DeltaPaymentOptionType as aE, InventoryAction as aF, WebhookIdentityType as aG, VersioningMode as aH, PreviewEmailType as aI, State as aJ, SiteCreatedContext as aK, Namespace as aL, DeleteStatus as aM, ScheduledAction as aN, DurationUnit as aO, PaymentCollectabilityStatus as aP, PredefinedPaymentMethod as aQ, RefundableStatus as aR, NonRefundableReason as aS, ManuallyRefundableReason as aT, RestockType as aU, TransactionStatus as aV, AuthorizationCaptureStatus as aW, AuthorizationVoidStatus as aX, Reason as aY, ActionType as aZ, ChargebackStatus as a_, type OrderCommittedEnvelope as aa, type OrderCreatedEnvelope as ab, type OrderFulfilledEnvelope as ac, type OrderPaymentStatusUpdatedEnvelope as ad, type OrderUpdatedEnvelope as ae, DescriptionLineType as af, DimensionsUnit as ag, ItemTypePreset as ah, PaymentOptionType as ai, JurisdictionType as aj, SubscriptionFrequency as ak, AdjustmentType as al, TaxableAddressType as am, PaymentStatus as an, FulfillmentStatus as ao, WeightUnit as ap, VatType as aq, PickupMethod as ar, OrderStatus as as, DiscountType as at, DiscountReason as au, LineItemQuantityChangeType as av, ActivityType as aw, OrderActivityTypeEnumActivityType as ax, AttributionSource as ay, ChannelType as az, type BulkDeleteImportedOrdersResponse as b, type OrderTaxBreakdown as b$, RefundStatus as b0, SortOrder as b1, OrderApprovalStrategy as b2, Placement as b3, SubdivisionType as b4, SourceType as b5, CustomFieldGroup as b6, ValueType as b7, DepositType as b8, InvoiceStatus as b9, type LocationAndQuantity as bA, type TaxableAddress as bB, type TaxableAddressTaxableAddressDataOneOf as bC, type ExtendedFields as bD, type ModifierGroup as bE, type TranslatableString as bF, type ItemModifier as bG, type BuyerInfo as bH, type BuyerInfoIdOneOf as bI, type CurrencyConversionDetails as bJ, type PriceSummary as bK, type AddressWithContact as bL, type Address as bM, type StreetAddress as bN, type AddressLocation as bO, type FullAddressContactDetails as bP, type VatId as bQ, type V1ShippingInformation as bR, type DeliveryLogistics as bS, type DeliveryLogisticsAddressOneOf as bT, type PickupDetails as bU, type PickupAddress as bV, type DeliveryTimeSlot as bW, type ShippingPrice as bX, type ShippingRegion as bY, type TaxSummary as bZ, type OrderTaxInfo as b_, type OrderLineItem as ba, type ProductName as bb, type CatalogReference as bc, type DescriptionLine as bd, type DescriptionLineValueOneOf as be, type DescriptionLineDescriptionLineValueOneOf as bf, type DescriptionLineName as bg, type PlainTextValue as bh, type Color as bi, type FocalPoint as bj, type PhysicalProperties as bk, type Dimensions as bl, type ItemType as bm, type ItemTypeItemTypeDataOneOf as bn, type ItemTaxFullDetails as bo, type LineItemTaxInfo as bp, type LineItemTaxBreakdown as bq, type DigitalFile as br, type SubscriptionInfo as bs, type SubscriptionTitle as bt, type SubscriptionDescription as bu, type SubscriptionSettings as bv, type FreeTrialPeriod as bw, type BillingAdjustment as bx, type BillingAdjustmentPriceSummary as by, type PriceDescription as bz, type PreparePaymentCollectionOptions as c, type ChargebackCreated as c$, type AppliedDiscount as c0, type AppliedDiscountDiscountSourceOneOf as c1, type Coupon as c2, type MerchantDiscount as c3, type MerchantDiscountMerchantDiscountReasonOneOf as c4, type DiscountRule as c5, type DiscountRuleName as c6, type LineItemDiscount as c7, type ItemCombination as c8, type ItemCombinationLineItem as c9, type AuthorizedPaymentCreated as cA, type AuthorizedPaymentCaptured as cB, type AuthorizedPaymentVoided as cC, type RefundInitiated as cD, type RefundedPayment as cE, type RefundedPaymentKindOneOf as cF, type RegularPaymentRefund as cG, type GiftCardPaymentRefund as cH, type MembershipPaymentRefund as cI, type PaymentRefunded as cJ, type PaymentRefundFailed as cK, type RefundedAsStoreCredit as cL, type PaymentPending as cM, type PaymentPendingPaymentDetailsOneOf as cN, type RegularPayment as cO, type RegularPaymentPaymentMethodDetailsOneOf as cP, type CreditCardDetails as cQ, type PaymentCanceled as cR, type PaymentCanceledPaymentDetailsOneOf as cS, type PaymentDeclined as cT, type PaymentDeclinedPaymentDetailsOneOf as cU, type ReceiptCreated as cV, type ReceiptCreatedReceiptInfoOneOf as cW, type WixReceipt as cX, type ExternalReceipt as cY, type ReceiptSent as cZ, type ReceiptSentReceiptInfoOneOf as c_, type Activity as ca, type ActivityContentOneOf as cb, type CustomActivity as cc, type MerchantComment as cd, type OrderRefunded as ce, type OrderCreatedFromExchange as cf, type NewExchangeOrderCreated as cg, type LineItemExchangeData as ch, type DraftOrderChangesApplied as ci, type OrderChange as cj, type OrderChangeValueOneOf as ck, type LineItemChanges as cl, type LineItemQuantityChange as cm, type LineItemPriceChange as cn, type LineItemProductNameChange as co, type LineItemDescriptionLineChange as cp, type LineItemModifiersChange as cq, type ManagedLineItem as cr, type ManagedDiscount as cs, type TranslatedValue as ct, type LineItemAmount as cu, type ManagedAdditionalFee as cv, type TotalPriceChange as cw, type ShippingInformationChange as cx, type ShippingInformation as cy, type SavedPaymentMethod as cz, type PreparePaymentCollectionResponse as d, type InternalDocumentUpdateOperation as d$, type ChargebackReversed as d0, type CreatedBy as d1, type CreatedByStringOneOf as d2, type ChannelInfo as d3, type CustomField as d4, type BalanceSummary as d5, type Balance as d6, type CashRounding as d7, type AdditionalFee as d8, type FulfillmentStatusesAggregate as d9, type ItemChangedDetails as dA, type OrderLineItemChangedDetails as dB, type LineItemDelta as dC, type LineItemDeltaDeltaOneOf as dD, type AppliedDiscountDelta as dE, type AppliedDiscountDeltaDeltaOneOf as dF, type AdditionalFeeDelta as dG, type AdditionalFeeDeltaDeltaOneOf as dH, type DraftOrderCommitSettings as dI, type InventoryUpdateDetails as dJ, type ImportOrderRequest as dK, type SetOrderNumberCounterRequest as dL, type BulkDeleteImportedOrdersRequest as dM, type DomainEvent as dN, type DomainEventBodyOneOf as dO, type EntityCreatedEvent as dP, type RestoreInfo as dQ, type EntityUpdatedEvent as dR, type EntityDeletedEvent as dS, type ActionEvent as dT, type MessageEnvelope as dU, type IdentificationData as dV, type IdentificationDataIdOneOf as dW, type AccountInfo as dX, type UpdateInternalDocumentsEvent as dY, type UpdateInternalDocumentsEventOperationOneOf as dZ, type InternalDocument as d_, type Tags as da, type TagList as db, type Location as dc, type OrderSettings as dd, type OrderSettingsAllowedActionsOneOf as de, type OrderSettingsEditableByOneOf as df, type CustomAllowedActions as dg, type OwnerApps as dh, type FormInfo as di, type FormIdentifier as dj, type PlatformFeeSummary as dk, type PlatformFee as dl, type OrderApproved as dm, type OrdersExperiments as dn, type OrderRejectedEventOrderRejected as dp, type OrderItemsRestocked as dq, type V1RestockItem as dr, type OrderImported as ds, type ImportedOrderDeleted as dt, type PaymentStatusUpdated as du, type FulfillmentStatusUpdated as dv, type OrderCanceledEventOrderCanceled as dw, type OrderDeltasCommitted as dx, type CommittedDiffs as dy, type CommittedDiffsShippingUpdateInfoOneOf as dz, type PreparePaymentCollectionApplicationErrors as e, type SiteUndeleted as e$, type DeleteByIdsOperation as e0, type DeleteByFilterOperation as e1, type InternalDocumentUpdateByFilterOperation as e2, type InternalUpdateExistingOperation as e3, type VersionedDocumentUpdateOperation as e4, type VersionedDeleteByIdsOperation as e5, type VersionedDocumentId as e6, type TriggerReindexRequest as e7, type TriggerReindexResponse as e8, type Empty as e9, type RefundDetails as eA, type RefundItem as eB, type LineItemRefund as eC, type AdditionalFeeRefund as eD, type ShippingRefund as eE, type PreviewRefundEmailResponse as eF, type PreviewCancelEmailRequest as eG, type PreviewCancelEmailResponse as eH, type PreviewCancelRefundEmailRequest as eI, type PreviewCancelRefundEmailResponse as eJ, type PreviewBuyerPaymentsReceivedEmailRequest as eK, type PreviewBuyerPaymentsReceivedEmailResponse as eL, type PreviewBuyerConfirmationEmailRequest as eM, type PreviewBuyerConfirmationEmailResponse as eN, type PreviewBuyerPickupConfirmationEmailRequest as eO, type PreviewBuyerPickupConfirmationEmailResponse as eP, type PreviewShippingConfirmationEmailRequest as eQ, type PreviewShippingConfirmationEmailResponse as eR, type PreviewResendDownloadLinksEmailRequest as eS, type PreviewResendDownloadLinksEmailResponse as eT, type MetaSiteSpecialEvent as eU, type MetaSiteSpecialEventPayloadOneOf as eV, type Asset as eW, type SiteCreated as eX, type SiteTransferred as eY, type SiteDeleted as eZ, type DeleteContext as e_, type TriggerReindexOrderRequest as ea, type SendBuyerConfirmationEmailRequest as eb, type SendBuyerConfirmationEmailResponse as ec, type SendBuyerPaymentsReceivedEmailRequest as ed, type SendBuyerPaymentsReceivedEmailResponse as ee, type SendBuyerPickupConfirmationEmailRequest as ef, type SendBuyerPickupConfirmationEmailResponse as eg, type BulkSendBuyerPickupConfirmationEmailsRequest as eh, type BulkSendBuyerPickupConfirmationEmailsResponse as ei, type SendBuyerShippingConfirmationEmailRequest as ej, type SendBuyerShippingConfirmationEmailResponse as ek, type BulkSendBuyerShippingConfirmationEmailsRequest as el, type BulkSendBuyerShippingConfirmationEmailsResponse as em, type SendMerchantOrderReceivedNotificationRequest as en, type SendMerchantOrderReceivedNotificationResponse as eo, type SendCancelRefundEmailRequest as ep, type SendCancelRefundEmailResponse as eq, type SendRefundEmailRequest as er, type SendRefundEmailResponse as es, type SendFulfillmentEmailRequest as et, type SendFulfillmentEmailResponse as eu, type SendMerchantOrderReceivedPushRequest as ev, type SendMerchantOrderReceivedPushResponse as ew, type PreviewEmailByTypeRequest as ex, type PreviewEmailByTypeResponse as ey, type PreviewRefundEmailRequest as ez, type RecordManuallyCollectedPaymentApplicationErrors as f, type PaymentReceiptInfoOneOf as f$, type SitePublished as f0, type SiteUnpublished as f1, type SiteMarkedAsTemplate as f2, type SiteMarkedAsWixSite as f3, type ServiceProvisioned as f4, type ServiceRemoved as f5, type SiteRenamed as f6, type SiteHardDeleted as f7, type NamespaceChanged as f8, type StudioAssigned as f9, type RecordManuallyCollectedPaymentRequest as fA, type UserDefinedPaymentMethodName as fB, type UserDefinedPaymentMethodNameKindOneOf as fC, type RecordManuallyCollectedPaymentResponse as fD, type MarkOrderAsPaidRequest as fE, type BulkMarkOrdersAsPaidRequest as fF, type BulkOrderResult as fG, type ItemMetadata as fH, type ApplicationError as fI, type BulkActionMetadata as fJ, type GetRefundabilityStatusRequest as fK, type Refundability as fL, type RefundabilityAdditionalRefundabilityInfoOneOf as fM, type CreatePaymentGatewayOrderRequest as fN, type ChargedBy as fO, type ChargeMembershipsRequest as fP, type MembershipChargeItem as fQ, type MembershipName as fR, type ServiceProperties as fS, type ChargeMembershipsResponse as fT, type TriggerRefundRequest as fU, type RefundSideEffects as fV, type RestockInfo as fW, type RestockItem as fX, type OrderTransactions as fY, type Payment as fZ, type PaymentPaymentDetailsOneOf as f_, type StudioUnassigned as fa, type SiteUrlChanged as fb, type SitePurgedExternally as fc, type OdeditorAssigned as fd, type OdeditorUnassigned as fe, type PicassoAssigned as ff, type PicassoUnassigned as fg, type WixelAssigned as fh, type WixelUnassigned as fi, type StudioTwoAssigned as fj, type StudioTwoUnassigned as fk, type UserDomainMediaEnabled as fl, type UserDomainMediaDisabled as fm, type EditorlessAssigned as fn, type EditorlessUnassigned as fo, type HasCustomEmailConfigurationsRequest as fp, type HasCustomEmailConfigurationsResponse as fq, type AddToAutomationMigrationPopulationRequest as fr, type AddToAutomationMigrationPopulationResponse as fs, type IsInAutomationMigrationPopulationRequest as ft, type IsInAutomationMigrationPopulationResponse as fu, type PreparePaymentCollectionRequest as fv, type RedirectUrls as fw, type DelayedCaptureSettings as fx, type Duration as fy, type GetPaymentCollectabilityStatusRequest as fz, type PaymentCollectionMarkOrderAsPaidOptions as g, type V1LineItemDeltaDeltaOneOf as g$, type RegularPaymentDetails as g0, type RegularPaymentDetailsPaymentMethodDetailsOneOf as g1, type CreditCardPaymentMethodDetails as g2, type AuthorizationDetails as g3, type AuthorizationCapture as g4, type AuthorizationActionFailureDetails as g5, type AuthorizationVoid as g6, type V1ScheduledAction as g7, type Chargeback as g8, type PaymentMethodName as g9, type Sorting as gA, type PlatformPaging as gB, type CursorPaging as gC, type InternalQueryOrdersResponse as gD, type PlatformPagingMetadata as gE, type Cursors as gF, type QueryOrderRequest as gG, type QueryOrderResponse as gH, type SearchOrdersRequest as gI, type CursorSearch as gJ, type CursorSearchPagingMethodOneOf as gK, type CursorPagingMetadata as gL, type CreateOrderRequest as gM, type OrderCreationSettings as gN, type OrderCreationSettingsEditableByOneOf as gO, type OrderCreateNotifications as gP, type CreateOrderResponse as gQ, type UpdateOrderRequest as gR, type UpdateOrderResponse as gS, type BulkUpdateOrdersRequest as gT, type CommitDeltasRequest as gU, type DraftOrderDiffs as gV, type DraftOrderDiffsShippingUpdateInfoOneOf as gW, type DraftOrderDiffsBuyerUpdateInfoOneOf as gX, type DraftOrderDiffsBillingUpdateInfoOneOf as gY, type DraftOrderDiffsRecipientUpdateInfoOneOf as gZ, type V1LineItemDelta as g_, type GiftCardPaymentDetails as ga, type MembershipPaymentDetails as gb, type WixReceiptInfo as gc, type ExternalReceiptInfo as gd, type CashRoundingDetails as ge, type Refund as gf, type RefundTransaction as gg, type RefundStatusInfo as gh, type AggregatedRefundSummary as gi, type RefundItemsBreakdown as gj, type LineItemRefundSummary as gk, type CalculateRefundRequest as gl, type CalculateRefundItemRequest as gm, type CalculateRefundResponse as gn, type CalculateRefundItemResponse as go, type VoidAuthorizedPaymentsRequest as gp, type CaptureAuthorizedPaymentsRequest as gq, type ChargeSavedPaymentMethodRequest as gr, type ChargeSavedPaymentMethodResponse as gs, type DiffmatokyPayload as gt, type ErrorInformation as gu, type GetOrderRequest as gv, type GetOrderResponse as gw, type InternalQueryOrdersRequest as gx, type PlatformQuery as gy, type PlatformQueryPagingMethodOneOf as gz, type PaymentCollectionMarkOrderAsPaidApplicationErrors as h, type BulkMarkAsFulfilledRequest as h$, type CommitDeltasResponse as h0, type ArchiveOrderRequest as h1, type ArchiveOrderResponse as h2, type BulkArchiveOrdersRequest as h3, type BulkArchiveOrdersResponse as h4, type BulkArchiveOrdersByFilterRequest as h5, type BulkArchiveOrdersByFilterResponse as h6, type UnArchiveOrderRequest as h7, type UnArchiveOrderResponse as h8, type BulkUnArchiveOrdersRequest as h9, type TrackingNumberEdited as hA, type TrackingLinkAdded as hB, type ShippingConfirmationEmailSent as hC, type InvoiceAdded as hD, type InvoiceSent as hE, type FulfillerEmailSent as hF, type ShippingAddressEdited as hG, type EmailEdited as hH, type PickupReadyEmailSent as hI, type OrderPartiallyPaid as hJ, type OrderPending as hK, type OrderRejected as hL, type AddInternalActivityResponse as hM, type AddActivityRequest as hN, type PublicActivityContentOneOf as hO, type AddActivitiesRequest as hP, type UpdateActivityRequest as hQ, type DeleteActivityRequest as hR, type UpdateLineItemsDescriptionLinesRequest as hS, type LineItemUpdate as hT, type UpdateLineItemsDescriptionLinesResponse as hU, type MarkOrderAsSeenByHumanRequest as hV, type MarkOrderAsSeenByHumanResponse as hW, type CancelOrderRequest as hX, type UpdateOrderStatusRequest as hY, type MarkAsFulfilledRequest as hZ, type MarkAsFulfilledResponse as h_, type BulkUnArchiveOrdersResponse as ha, type BulkUnArchiveOrdersByFilterRequest as hb, type BulkUnArchiveOrdersByFilterResponse as hc, type UpdateBuyerInfoRequest as hd, type BuyerInfoUpdate as he, type UpdateBuyerInfoResponse as hf, type UpdateBuyerEmailRequest as hg, type UpdateBuyerEmailResponse as hh, type UpdateOrderShippingAddressRequest as hi, type UpdateOrderShippingAddressResponse as hj, type UpdateBillingContactDetailsRequest as hk, type UpdateBillingContactDetailsResponse as hl, type UpdateOrderLineItemRequest as hm, type UpdateOrderLineItemsRequest as hn, type MaskedOrderLineItem as ho, type UpdateOrderLineItemsResponse as hp, type AddInternalActivityRequest as hq, type InternalActivity as hr, type InternalActivityContentOneOf as hs, type OrderPlaced as ht, type OrderPaid as hu, type OrderFulfilled as hv, type OrderNotFulfilled as hw, type OrderCanceled as hx, type DownloadLinkSent as hy, type TrackingNumberAdded as hz, type BulkMarkOrdersAsPaidResponse as i, type DiscountOneDiscountTypeOneOf as i$, type BulkMarkAsFulfilledResponse as i0, type BulkMarkAsFulfilledByFilterRequest as i1, type BulkMarkAsFulfilledByFilterResponse as i2, type MarkAsUnfulfilledRequest as i3, type MarkAsUnfulfilledResponse as i4, type BulkMarkAsUnfulfilledRequest as i5, type BulkMarkAsUnfulfilledResponse as i6, type BulkMarkAsUnfulfilledByFilterRequest as i7, type BulkMarkAsUnfulfilledByFilterResponse as i8, type BulkSetBusinessLocationRequest as i9, type Complete as iA, type Cancel as iB, type Reschedule as iC, type InvoiceSentEvent as iD, type IdAndVersion as iE, type InvoiceFields as iF, type Customer as iG, type Email as iH, type QuotesAddress as iI, type AddressDescription as iJ, type Phone as iK, type Company as iL, type CommonAddress as iM, type CommonAddressStreetOneOf as iN, type Subdivision as iO, type StandardDetails as iP, type InvoiceDates as iQ, type LineItems as iR, type LineItem as iS, type BigDecimalWrapper as iT, type LineItemTax as iU, type Source as iV, type LineItemMetaData as iW, type Locale as iX, type TotalPrice as iY, type ItemizedFee as iZ, type Discount as i_, type BulkSetBusinessLocationResponse as ia, type BulkSetBusinessLocationResult as ib, type V1MarkOrderAsPaidRequest as ic, type V1MarkOrderAsPaidResponse as id, type V1BulkMarkOrdersAsPaidRequest as ie, type V1BulkMarkOrdersAsPaidResponse as ig, type V1CreatePaymentGatewayOrderRequest as ih, type V1CreatePaymentGatewayOrderResponse as ii, type GetShipmentsRequest as ij, type GetShipmentsResponse as ik, type AggregateOrdersRequest as il, type DecrementItemsQuantityRequest as im, type DecrementData as io, type DecrementItemsQuantityResponse as ip, type BulkUpdateOrderTagsRequest as iq, type TagsTags as ir, type TagsTagList as is, type BulkUpdateOrderTagsResult as it, type SendOrderUpdatedDomainEventRequest as iu, type SendOrderUpdatedDomainEventResponse as iv, type Task as iw, type TaskKey as ix, type TaskAction as iy, type TaskActionActionOneOf as iz, type GetRefundabilityStatusResponse as j, type SortOrderWithLiterals as j$, type CalculatedTaxes as j0, type CalculatedTax as j1, type Payments as j2, type InvoicesPayment as j3, type MetaData as j4, type InvoiceDynamicPriceTotals as j5, type CustomFieldValue as j6, type Value as j7, type Deposit as j8, type BaseEventMetadata as j9, type SpecificItemsCouponBehaviorWithLiterals as jA, type ChargeTypeWithLiterals as jB, type DeltaPaymentOptionTypeWithLiterals as jC, type InventoryActionWithLiterals as jD, type WebhookIdentityTypeWithLiterals as jE, type VersioningModeWithLiterals as jF, type PreviewEmailTypeWithLiterals as jG, type StateWithLiterals as jH, type SiteCreatedContextWithLiterals as jI, type NamespaceWithLiterals as jJ, type DeleteStatusWithLiterals as jK, type ScheduledActionWithLiterals as jL, type DurationUnitWithLiterals as jM, type PaymentCollectabilityStatusWithLiterals as jN, type PredefinedPaymentMethodWithLiterals as jO, type RefundableStatusWithLiterals as jP, type NonRefundableReasonWithLiterals as jQ, type ManuallyRefundableReasonWithLiterals as jR, type RestockTypeWithLiterals as jS, type TransactionStatusWithLiterals as jT, type AuthorizationCaptureStatusWithLiterals as jU, type AuthorizationVoidStatusWithLiterals as jV, type ReasonWithLiterals as jW, type ActionTypeWithLiterals as jX, type ChargebackStatusWithLiterals as jY, type MembershipPaymentStatusWithLiterals as jZ, type RefundStatusWithLiterals as j_, type EventMetadata as ja, type AccountInfoMetadata as jb, type OrderSearchSpec as jc, utils as jd, type DescriptionLineTypeWithLiterals as je, type DimensionsUnitWithLiterals as jf, type ItemTypePresetWithLiterals as jg, type PaymentOptionTypeWithLiterals as jh, type JurisdictionTypeWithLiterals as ji, type SubscriptionFrequencyWithLiterals as jj, type AdjustmentTypeWithLiterals as jk, type TaxableAddressTypeWithLiterals as jl, type PaymentStatusWithLiterals as jm, type FulfillmentStatusWithLiterals as jn, type WeightUnitWithLiterals as jo, type VatTypeWithLiterals as jp, type PickupMethodWithLiterals as jq, type DiscountTypeWithLiterals as jr, type DiscountReasonWithLiterals as js, type LineItemQuantityChangeTypeWithLiterals as jt, type ActivityTypeWithLiterals as ju, type OrderActivityTypeEnumActivityTypeWithLiterals as jv, type AttributionSourceWithLiterals as jw, type ChannelTypeWithLiterals as jx, type AdditionalFeeSourceWithLiterals as jy, type OrderActionTypeWithLiterals as jz, type PaymentCollectionCreatePaymentGatewayOrderOptions as k, type OrderApprovalStrategyWithLiterals as k0, type PlacementWithLiterals as k1, type SubdivisionTypeWithLiterals as k2, type SourceTypeWithLiterals as k3, type CustomFieldGroupWithLiterals as k4, type ValueTypeWithLiterals as k5, type DepositTypeWithLiterals as k6, type InvoiceStatusWithLiterals as k7, type CommonSearchWithEntityContext as k8, onOrderApproved as k9, addActivities as kA, updateActivity as kB, deleteActivity as kC, cancelOrder as kD, updateOrderStatus as kE, aggregateOrders as kF, bulkUpdateOrderTags as kG, onOrderCanceled as ka, onOrderCommitted as kb, onOrderCreated as kc, onOrderFulfilled as kd, onOrderPaymentStatusUpdated as ke, onOrderUpdated as kf, importOrder as kg, setOrderNumberCounter as kh, bulkDeleteImportedOrders as ki, preparePaymentCollection as kj, getPaymentCollectabilityStatus as kk, recordManuallyCollectedPayment as kl, paymentCollectionMarkOrderAsPaid as km, paymentCollectionBulkMarkOrdersAsPaid as kn, getRefundabilityStatus as ko, paymentCollectionCreatePaymentGatewayOrder as kp, chargeMemberships as kq, triggerRefund as kr, voidAuthorizedPayments as ks, captureAuthorizedPayments as kt, getOrder as ku, createOrder as kv, updateOrder as kw, bulkUpdateOrders as kx, updateOrderLineItem as ky, addActivity as kz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as l, type ChargeMembershipsOptions as m, type PaymentRefund as n, type TriggerRefundResponse as o, type TriggerRefundApplicationErrors as p, type VoidAuthorizedPaymentsApplicationErrors as q, type PaymentCapture as r, type CaptureAuthorizedPaymentsResponse as s, type CaptureAuthorizedPaymentsApplicationErrors as t, type GetOrderApplicationErrors as u, type OrderSearch as v, type SearchOrdersResponse as w, type CreateOrderOptions as x, type CreateOrderApplicationErrors as y, type UpdateOrderApplicationErrors as z };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { O as Order, I as ImportOrderResponse, S as SetOrderNumberCounterOptions, a as SetOrderNumberCounterResponse, B as BulkDeleteImportedOrdersOptions, b as BulkDeleteImportedOrdersResponse, P as Price, c as PreparePaymentCollectionOptions, d as PreparePaymentCollectionResponse, e as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, R as RecordManuallyCollectedPaymentOptions, f as RecordManuallyCollectedPaymentApplicationErrors, g as PaymentCollectionMarkOrderAsPaidOptions, M as MarkOrderAsPaidResponse, h as PaymentCollectionMarkOrderAsPaidApplicationErrors, i as BulkMarkOrdersAsPaidResponse, j as GetRefundabilityStatusResponse, k as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, l as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, m as ChargeMembershipsOptions, n as PaymentRefund, T as TriggerRefundOptions, o as TriggerRefundResponse, p as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, q as VoidAuthorizedPaymentsApplicationErrors, r as PaymentCapture, s as CaptureAuthorizedPaymentsResponse, t as CaptureAuthorizedPaymentsApplicationErrors, u as GetOrderApplicationErrors, v as OrderSearch, w as SearchOrdersResponse, x as CreateOrderOptions, y as CreateOrderApplicationErrors, U as UpdateOrder, z as UpdateOrderApplicationErrors, A as MaskedOrder, D as BulkUpdateOrdersOptions, E as BulkUpdateOrdersResponse, F as UpdateOrderLineItemIdentifiers, H as UpdateOrderLineItem, J as UpdateOrderLineItemResponse, K as PublicActivity, L as AddActivityResponse, N as AddActivitiesOptions, Q as AddActivitiesResponse, W as UpdateActivityIdentifiers, X as UpdateActivityResponse, Y as DeleteActivityIdentifiers, Z as DeleteActivityResponse, _ as CancelOrderOptions, $ as CancelOrderResponse, a0 as CancelOrderApplicationErrors, a1 as OrderStatusWithLiterals, a2 as UpdateOrderStatusResponse, a3 as UpdateOrderStatusApplicationErrors, a4 as AggregateOrdersOptions, a5 as AggregateOrdersResponse, a6 as BulkUpdateOrderTagsOptions, a7 as BulkUpdateOrderTagsResponse, a8 as OrderApprovedEnvelope, a9 as OrderCanceledEnvelope, aa as OrderCommittedEnvelope, ab as OrderCreatedEnvelope, ac as OrderFulfilledEnvelope, ad as OrderPaymentStatusUpdatedEnvelope, ae as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-
|
|
3
|
-
export { dW as AccountInfo, j9 as AccountInfoMetadata, dS as ActionEvent, aZ as ActionType, jV as ActionTypeWithLiterals, ca as Activity, cb as ActivityContentOneOf, aw as ActivityType, js as ActivityTypeWithLiterals, hN as AddActivitiesRequest, hL as AddActivityRequest, ho as AddInternalActivityRequest, hK as AddInternalActivityResponse, fq as AddToAutomationMigrationPopulationRequest, fr as AddToAutomationMigrationPopulationResponse, d7 as AdditionalFee, dF as AdditionalFeeDelta, dG as AdditionalFeeDeltaDeltaOneOf, eC as AdditionalFeeRefund, aA as AdditionalFeeSource, jw as AdditionalFeeSourceWithLiterals, bM as Address, iH as AddressDescription, bO as AddressLocation, bL as AddressWithContact, al as AdjustmentType, ji as AdjustmentTypeWithLiterals, ij as AggregateOrdersRequest, gg as AggregatedRefundSummary, fH as ApplicationError, c0 as AppliedDiscount, dD as AppliedDiscountDelta, dE as AppliedDiscountDeltaDeltaOneOf, c1 as AppliedDiscountDiscountSourceOneOf, g$ as ArchiveOrderRequest, h0 as ArchiveOrderResponse, eV as Asset, ay as AttributionSource, ju as AttributionSourceWithLiterals, g4 as AuthorizationActionFailureDetails, g3 as AuthorizationCapture, aW as AuthorizationCaptureStatus, jS as AuthorizationCaptureStatusWithLiterals, g2 as AuthorizationDetails, g5 as AuthorizationVoid, aX as AuthorizationVoidStatus, jT as AuthorizationVoidStatusWithLiterals, cB as AuthorizedPaymentCaptured, cA as AuthorizedPaymentCreated, cC as AuthorizedPaymentVoided, d6 as Balance, d5 as BalanceSummary, j7 as BaseEventMetadata, iR as BigDecimalWrapper, bx as BillingAdjustment, by as BillingAdjustmentPriceSummary, fI as BulkActionMetadata, h3 as BulkArchiveOrdersByFilterRequest, h4 as BulkArchiveOrdersByFilterResponse, h1 as BulkArchiveOrdersRequest, h2 as BulkArchiveOrdersResponse, dL as BulkDeleteImportedOrdersRequest, h$ as BulkMarkAsFulfilledByFilterRequest, i0 as BulkMarkAsFulfilledByFilterResponse, hZ as BulkMarkAsFulfilledRequest, h_ as BulkMarkAsFulfilledResponse, i5 as BulkMarkAsUnfulfilledByFilterRequest, i6 as BulkMarkAsUnfulfilledByFilterResponse, i3 as BulkMarkAsUnfulfilledRequest, i4 as BulkMarkAsUnfulfilledResponse, fE as BulkMarkOrdersAsPaidRequest, fF as BulkOrderResult, eg as BulkSendBuyerPickupConfirmationEmailsRequest, eh as BulkSendBuyerPickupConfirmationEmailsResponse, ek as BulkSendBuyerShippingConfirmationEmailsRequest, el as BulkSendBuyerShippingConfirmationEmailsResponse, i7 as BulkSetBusinessLocationRequest, i8 as BulkSetBusinessLocationResponse, i9 as BulkSetBusinessLocationResult, h9 as BulkUnArchiveOrdersByFilterRequest, ha as BulkUnArchiveOrdersByFilterResponse, h7 as BulkUnArchiveOrdersRequest, h8 as BulkUnArchiveOrdersResponse, io as BulkUpdateOrderTagsRequest, ir as BulkUpdateOrderTagsResult, gR as BulkUpdateOrdersRequest, bH as BuyerInfo, bI as BuyerInfoIdOneOf, hc as BuyerInfoUpdate, gk as CalculateRefundItemRequest, gm as CalculateRefundItemResponse, gj as CalculateRefundRequest, gl as CalculateRefundResponse, i$ as CalculatedTax, i_ as CalculatedTaxes, iz as Cancel, hV as CancelOrderRequest, go as CaptureAuthorizedPaymentsRequest, bc as CatalogReference, d3 as ChannelInfo, az as ChannelType, jv as ChannelTypeWithLiterals, fO as ChargeMembershipsRequest, fS as ChargeMembershipsResponse, gp as ChargeSavedPaymentMethodRequest, gq as ChargeSavedPaymentMethodResponse, aD as ChargeType, jz as ChargeTypeWithLiterals, g7 as Chargeback, c$ as ChargebackCreated, d0 as ChargebackReversed, a_ as ChargebackStatus, jW as ChargebackStatusWithLiterals, fN as ChargedBy, bi as Color, gS as CommitDeltasRequest, g_ as CommitDeltasResponse, dx as CommittedDiffs, dy as CommittedDiffsShippingUpdateInfoOneOf, iK as CommonAddress, iL as CommonAddressStreetOneOf, k6 as CommonSearchWithEntityContext, iJ as Company, iy as Complete, c2 as Coupon, gK as CreateOrderRequest, gO as CreateOrderResponse, fM as CreatePaymentGatewayOrderRequest, d1 as CreatedBy, d2 as CreatedByStringOneOf, cQ as CreditCardDetails, g1 as CreditCardPaymentMethodDetails, bJ as CurrencyConversionDetails, gA as CursorPaging, gJ as CursorPagingMetadata, gH as CursorSearch, gI as CursorSearchPagingMethodOneOf, gD as Cursors, cc as CustomActivity, df as CustomAllowedActions, d4 as CustomField, b6 as CustomFieldGroup, k2 as CustomFieldGroupWithLiterals, j4 as CustomFieldValue, iE as Customer, il as DecrementData, ik as DecrementItemsQuantityRequest, im as DecrementItemsQuantityResponse, fw as DelayedCaptureSettings, hP as DeleteActivityRequest, e0 as DeleteByFilterOperation, d$ as DeleteByIdsOperation, eZ as DeleteContext, aM as DeleteStatus, jI as DeleteStatusWithLiterals, bS as DeliveryLogistics, bT as DeliveryLogisticsAddressOneOf, bW as DeliveryTimeSlot, aE as DeltaPaymentOptionType, jA as DeltaPaymentOptionTypeWithLiterals, j6 as Deposit, b8 as DepositType, k4 as DepositTypeWithLiterals, bd as DescriptionLine, bf as DescriptionLineDescriptionLineValueOneOf, bg as DescriptionLineName, af as DescriptionLineType, jc as DescriptionLineTypeWithLiterals, be as DescriptionLineValueOneOf, gr as DiffmatokyPayload, br as DigitalFile, bl as Dimensions, ag as DimensionsUnit, jd as DimensionsUnitWithLiterals, iY as Discount, iZ as DiscountOneDiscountTypeOneOf, au as DiscountReason, jq as DiscountReasonWithLiterals, c5 as DiscountRule, c6 as DiscountRuleName, at as DiscountType, jp as DiscountTypeWithLiterals, dM as DomainEvent, dN as DomainEventBodyOneOf, hw as DownloadLinkSent, ci as DraftOrderChangesApplied, dH as DraftOrderCommitSettings, gT as DraftOrderDiffs, gW as DraftOrderDiffsBillingUpdateInfoOneOf, gV as DraftOrderDiffsBuyerUpdateInfoOneOf, gX as DraftOrderDiffsRecipientUpdateInfoOneOf, gU as DraftOrderDiffsShippingUpdateInfoOneOf, fx as Duration, aO as DurationUnit, jK as DurationUnitWithLiterals, fm as EditorlessAssigned, fn as EditorlessUnassigned, iF as Email, hF as EmailEdited, e8 as Empty, dO as EntityCreatedEvent, dR as EntityDeletedEvent, dQ as EntityUpdatedEvent, gs as ErrorInformation, j8 as EventMetadata, bD as ExtendedFields, cY as ExternalReceipt, gc as ExternalReceiptInfo, bj as FocalPoint, di as FormIdentifier, dh as FormInfo, bw as FreeTrialPeriod, hD as FulfillerEmailSent, ao as FulfillmentStatus, du as FulfillmentStatusUpdated, jl as FulfillmentStatusWithLiterals, d8 as FulfillmentStatusesAggregate, bP as FullAddressContactDetails, gt as GetOrderRequest, gu as GetOrderResponse, fy as GetPaymentCollectabilityStatusRequest, fJ as GetRefundabilityStatusRequest, ih as GetShipmentsRequest, ii as GetShipmentsResponse, g9 as GiftCardPaymentDetails, cH as GiftCardPaymentRefund, fo as HasCustomEmailConfigurationsRequest, fp as HasCustomEmailConfigurationsResponse, iC as IdAndVersion, dU as IdentificationData, dV as IdentificationDataIdOneOf, dJ as ImportOrderRequest, ds as ImportedOrderDeleted, hp as InternalActivity, hq as InternalActivityContentOneOf, dZ as InternalDocument, e1 as InternalDocumentUpdateByFilterOperation, d_ as InternalDocumentUpdateOperation, gv as InternalQueryOrdersRequest, gB as InternalQueryOrdersResponse, e2 as InternalUpdateExistingOperation, aF as InventoryAction, jB as InventoryActionWithLiterals, dI as InventoryUpdateDetails, hB as InvoiceAdded, iO as InvoiceDates, j3 as InvoiceDynamicPriceTotals, iD as InvoiceFields, hC as InvoiceSent, iB as InvoiceSentEvent, b9 as InvoiceStatus, k5 as InvoiceStatusWithLiterals, j1 as InvoicesPayment, fs as IsInAutomationMigrationPopulationRequest, ft as IsInAutomationMigrationPopulationResponse, dz as ItemChangedDetails, c8 as ItemCombination, c9 as ItemCombinationLineItem, fG as ItemMetadata, bG as ItemModifier, bo as ItemTaxFullDetails, bm as ItemType, bn as ItemTypeItemTypeDataOneOf, ah as ItemTypePreset, je as ItemTypePresetWithLiterals, iX as ItemizedFee, aj as JurisdictionType, jg as JurisdictionTypeWithLiterals, iQ as LineItem, cu as LineItemAmount, cl as LineItemChanges, dB as LineItemDelta, dC as LineItemDeltaDeltaOneOf, cp as LineItemDescriptionLineChange, c7 as LineItemDiscount, ch as LineItemExchangeData, iU as LineItemMetaData, cq as LineItemModifiersChange, cn as LineItemPriceChange, co as LineItemProductNameChange, cm as LineItemQuantityChange, av as LineItemQuantityChangeType, jr as LineItemQuantityChangeTypeWithLiterals, eB as LineItemRefund, gi as LineItemRefundSummary, iS as LineItemTax, bq as LineItemTaxBreakdown, bp as LineItemTaxInfo, hR as LineItemUpdate, iP as LineItems, iV as Locale, db as Location, bA as LocationAndQuantity, cv as ManagedAdditionalFee, cs as ManagedDiscount, cr as ManagedLineItem, aT as ManuallyRefundableReason, jP as ManuallyRefundableReasonWithLiterals, hX as MarkAsFulfilledRequest, hY as MarkAsFulfilledResponse, i1 as MarkAsUnfulfilledRequest, i2 as MarkAsUnfulfilledResponse, fD as MarkOrderAsPaidRequest, hT as MarkOrderAsSeenByHumanRequest, hU as MarkOrderAsSeenByHumanResponse, hm as MaskedOrderLineItem, fP as MembershipChargeItem, fQ as MembershipName, ga as MembershipPaymentDetails, cI as MembershipPaymentRefund, a$ as MembershipPaymentStatus, jX as MembershipPaymentStatusWithLiterals, cd as MerchantComment, c3 as MerchantDiscount, c4 as MerchantDiscountMerchantDiscountReasonOneOf, dT as MessageEnvelope, j2 as MetaData, eT as MetaSiteSpecialEvent, eU as MetaSiteSpecialEventPayloadOneOf, bE as ModifierGroup, aL as Namespace, f7 as NamespaceChanged, jH as NamespaceWithLiterals, cg as NewExchangeOrderCreated, aS as NonRefundableReason, jO as NonRefundableReasonWithLiterals, fc as OdeditorAssigned, fd as OdeditorUnassigned, aB as OrderActionType, jx as OrderActionTypeWithLiterals, ax as OrderActivityTypeEnumActivityType, jt as OrderActivityTypeEnumActivityTypeWithLiterals, b2 as OrderApprovalStrategy, j_ as OrderApprovalStrategyWithLiterals, dl as OrderApproved, hv as OrderCanceled, dv as OrderCanceledEventOrderCanceled, cj as OrderChange, ck as OrderChangeValueOneOf, gN as OrderCreateNotifications, cf as OrderCreatedFromExchange, gL as OrderCreationSettings, gM as OrderCreationSettingsEditableByOneOf, dw as OrderDeltasCommitted, ht as OrderFulfilled, dr as OrderImported, dp as OrderItemsRestocked, ba as OrderLineItem, dA as OrderLineItemChangedDetails, hu as OrderNotFulfilled, hs as OrderPaid, hH as OrderPartiallyPaid, hI as OrderPending, hr as OrderPlaced, ce as OrderRefunded, hJ as OrderRejected, dn as OrderRejectedEventOrderRejected, ja as OrderSearchSpec, dc as OrderSettings, dd as OrderSettingsAllowedActionsOneOf, de as OrderSettingsEditableByOneOf, as as OrderStatus, b$ as OrderTaxBreakdown, b_ as OrderTaxInfo, fX as OrderTransactions, dm as OrdersExperiments, dg as OwnerApps, fY as Payment, cR as PaymentCanceled, cS as PaymentCanceledPaymentDetailsOneOf, aP as PaymentCollectabilityStatus, jL as PaymentCollectabilityStatusWithLiterals, cT as PaymentDeclined, cU as PaymentDeclinedPaymentDetailsOneOf, g8 as PaymentMethodName, ai as PaymentOptionType, jf as PaymentOptionTypeWithLiterals, fZ as PaymentPaymentDetailsOneOf, cM as PaymentPending, cN as PaymentPendingPaymentDetailsOneOf, f_ as PaymentReceiptInfoOneOf, cK as PaymentRefundFailed, cJ as PaymentRefunded, an as PaymentStatus, dt as PaymentStatusUpdated, jk as PaymentStatusWithLiterals, j0 as Payments, iI as Phone, bk as PhysicalProperties, fe as PicassoAssigned, ff as PicassoUnassigned, bV as PickupAddress, bU as PickupDetails, ar as PickupMethod, jo as PickupMethodWithLiterals, hG as PickupReadyEmailSent, b3 as Placement, j$ as PlacementWithLiterals, bh as PlainTextValue, dk as PlatformFee, dj as PlatformFeeSummary, gz as PlatformPaging, gC as PlatformPagingMetadata, gw as PlatformQuery, gx as PlatformQueryPagingMethodOneOf, aQ as PredefinedPaymentMethod, jM as PredefinedPaymentMethodWithLiterals, fu as PreparePaymentCollectionRequest, eL as PreviewBuyerConfirmationEmailRequest, eM as PreviewBuyerConfirmationEmailResponse, eJ as PreviewBuyerPaymentsReceivedEmailRequest, eK as PreviewBuyerPaymentsReceivedEmailResponse, eN as PreviewBuyerPickupConfirmationEmailRequest, eO as PreviewBuyerPickupConfirmationEmailResponse, eF as PreviewCancelEmailRequest, eG as PreviewCancelEmailResponse, eH as PreviewCancelRefundEmailRequest, eI as PreviewCancelRefundEmailResponse, ew as PreviewEmailByTypeRequest, ex as PreviewEmailByTypeResponse, aI as PreviewEmailType, jE as PreviewEmailTypeWithLiterals, ey as PreviewRefundEmailRequest, eE as PreviewRefundEmailResponse, eR as PreviewResendDownloadLinksEmailRequest, eS as PreviewResendDownloadLinksEmailResponse, eP as PreviewShippingConfirmationEmailRequest, eQ as PreviewShippingConfirmationEmailResponse, bz as PriceDescription, bK as PriceSummary, bb as ProductName, hM as PublicActivityContentOneOf, gE as QueryOrderRequest, gF as QueryOrderResponse, iG as QuotesAddress, aY as Reason, jU as ReasonWithLiterals, cV as ReceiptCreated, cW as ReceiptCreatedReceiptInfoOneOf, cZ as ReceiptSent, c_ as ReceiptSentReceiptInfoOneOf, fz as RecordManuallyCollectedPaymentRequest, fC as RecordManuallyCollectedPaymentResponse, fv as RedirectUrls, gd as Refund, ez as RefundDetails, cD as RefundInitiated, eA as RefundItem, gh as RefundItemsBreakdown, fU as RefundSideEffects, b0 as RefundStatus, gf as RefundStatusInfo, jY as RefundStatusWithLiterals, ge as RefundTransaction, fK as Refundability, fL as RefundabilityAdditionalRefundabilityInfoOneOf, aR as RefundableStatus, jN as RefundableStatusWithLiterals, cL as RefundedAsStoreCredit, cE as RefundedPayment, cF as RefundedPaymentKindOneOf, cO as RegularPayment, f$ as RegularPaymentDetails, g0 as RegularPaymentDetailsPaymentMethodDetailsOneOf, cP as RegularPaymentPaymentMethodDetailsOneOf, cG as RegularPaymentRefund, iA as Reschedule, fV as RestockInfo, fW as RestockItem, aU as RestockType, jQ as RestockTypeWithLiterals, dP as RestoreInfo, cz as SavedPaymentMethod, aN as ScheduledAction, jJ as ScheduledActionWithLiterals, gG as SearchOrdersRequest, ea as SendBuyerConfirmationEmailRequest, eb as SendBuyerConfirmationEmailResponse, ec as SendBuyerPaymentsReceivedEmailRequest, ed as SendBuyerPaymentsReceivedEmailResponse, ee as SendBuyerPickupConfirmationEmailRequest, ef as SendBuyerPickupConfirmationEmailResponse, ei as SendBuyerShippingConfirmationEmailRequest, ej as SendBuyerShippingConfirmationEmailResponse, eo as SendCancelRefundEmailRequest, ep as SendCancelRefundEmailResponse, es as SendFulfillmentEmailRequest, et as SendFulfillmentEmailResponse, em as SendMerchantOrderReceivedNotificationRequest, en as SendMerchantOrderReceivedNotificationResponse, eu as SendMerchantOrderReceivedPushRequest, ev as SendMerchantOrderReceivedPushResponse, is as SendOrderUpdatedDomainEventRequest, it as SendOrderUpdatedDomainEventResponse, eq as SendRefundEmailRequest, er as SendRefundEmailResponse, fR as ServiceProperties, f3 as ServiceProvisioned, f4 as ServiceRemoved, dK as SetOrderNumberCounterRequest, hE as ShippingAddressEdited, hA as ShippingConfirmationEmailSent, cy as ShippingInformation, cx as ShippingInformationChange, bX as ShippingPrice, eD as ShippingRefund, bY as ShippingRegion, eW as SiteCreated, aK as SiteCreatedContext, jG as SiteCreatedContextWithLiterals, eY as SiteDeleted, f6 as SiteHardDeleted, f1 as SiteMarkedAsTemplate, f2 as SiteMarkedAsWixSite, e$ as SitePublished, fb as SitePurgedExternally, f5 as SiteRenamed, eX as SiteTransferred, e_ as SiteUndeleted, f0 as SiteUnpublished, fa as SiteUrlChanged, b1 as SortOrder, jZ as SortOrderWithLiterals, gy as Sorting, iT as Source, b5 as SourceType, k1 as SourceTypeWithLiterals, aC as SpecificItemsCouponBehavior, jy as SpecificItemsCouponBehaviorWithLiterals, iN as StandardDetails, aJ as State, jF as StateWithLiterals, bN as StreetAddress, f8 as StudioAssigned, fi as StudioTwoAssigned, fj as StudioTwoUnassigned, f9 as StudioUnassigned, iM as Subdivision, b4 as SubdivisionType, k0 as SubdivisionTypeWithLiterals, bu as SubscriptionDescription, ak as SubscriptionFrequency, jh as SubscriptionFrequencyWithLiterals, bs as SubscriptionInfo, bv as SubscriptionSettings, bt as SubscriptionTitle, da as TagList, d9 as Tags, iq as TagsTagList, ip as TagsTags, iu as Task, iw as TaskAction, ix as TaskActionActionOneOf, iv as TaskKey, bZ as TaxSummary, bB as TaxableAddress, bC as TaxableAddressTaxableAddressDataOneOf, am as TaxableAddressType, jj as TaxableAddressTypeWithLiterals, iW as TotalPrice, cw as TotalPriceChange, hz as TrackingLinkAdded, hx as TrackingNumberAdded, hy as TrackingNumberEdited, aV as TransactionStatus, jR as TransactionStatusWithLiterals, bF as TranslatableString, ct as TranslatedValue, fT as TriggerRefundRequest, e9 as TriggerReindexOrderRequest, e6 as TriggerReindexRequest, e7 as TriggerReindexResponse, h5 as UnArchiveOrderRequest, h6 as UnArchiveOrderResponse, hO as UpdateActivityRequest, hi as UpdateBillingContactDetailsRequest, hj as UpdateBillingContactDetailsResponse, he as UpdateBuyerEmailRequest, hf as UpdateBuyerEmailResponse, hb as UpdateBuyerInfoRequest, hd as UpdateBuyerInfoResponse, dX as UpdateInternalDocumentsEvent, dY as UpdateInternalDocumentsEventOperationOneOf, hQ as UpdateLineItemsDescriptionLinesRequest, hS as UpdateLineItemsDescriptionLinesResponse, hk as UpdateOrderLineItemRequest, hl as UpdateOrderLineItemsRequest, hn as UpdateOrderLineItemsResponse, gP as UpdateOrderRequest, gQ as UpdateOrderResponse, hg as UpdateOrderShippingAddressRequest, hh as UpdateOrderShippingAddressResponse, hW as UpdateOrderStatusRequest, fA as UserDefinedPaymentMethodName, fB as UserDefinedPaymentMethodNameKindOneOf, fl as UserDomainMediaDisabled, fk as UserDomainMediaEnabled, ic as V1BulkMarkOrdersAsPaidRequest, id as V1BulkMarkOrdersAsPaidResponse, ie as V1CreatePaymentGatewayOrderRequest, ig as V1CreatePaymentGatewayOrderResponse, gY as V1LineItemDelta, gZ as V1LineItemDeltaDeltaOneOf, ia as V1MarkOrderAsPaidRequest, ib as V1MarkOrderAsPaidResponse, dq as V1RestockItem, g6 as V1ScheduledAction, bR as V1ShippingInformation, j5 as Value, b7 as ValueType, k3 as ValueTypeWithLiterals, bQ as VatId, aq as VatType, jn as VatTypeWithLiterals, e4 as VersionedDeleteByIdsOperation, e5 as VersionedDocumentId, e3 as VersionedDocumentUpdateOperation, aH as VersioningMode, jD as VersioningModeWithLiterals, gn as VoidAuthorizedPaymentsRequest, aG as WebhookIdentityType, jC as WebhookIdentityTypeWithLiterals, ap as WeightUnit, jm as WeightUnitWithLiterals, cX as WixReceipt, gb as WixReceiptInfo, fg as WixelAssigned, fh as WixelUnassigned, jb as utils } from './ecom-v1-order-orders.universal-CFyKGaZT.mjs';
|
|
2
|
+
import { O as Order, I as ImportOrderResponse, S as SetOrderNumberCounterOptions, a as SetOrderNumberCounterResponse, B as BulkDeleteImportedOrdersOptions, b as BulkDeleteImportedOrdersResponse, P as Price, c as PreparePaymentCollectionOptions, d as PreparePaymentCollectionResponse, e as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, R as RecordManuallyCollectedPaymentOptions, f as RecordManuallyCollectedPaymentApplicationErrors, g as PaymentCollectionMarkOrderAsPaidOptions, M as MarkOrderAsPaidResponse, h as PaymentCollectionMarkOrderAsPaidApplicationErrors, i as BulkMarkOrdersAsPaidResponse, j as GetRefundabilityStatusResponse, k as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, l as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, m as ChargeMembershipsOptions, n as PaymentRefund, T as TriggerRefundOptions, o as TriggerRefundResponse, p as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, q as VoidAuthorizedPaymentsApplicationErrors, r as PaymentCapture, s as CaptureAuthorizedPaymentsResponse, t as CaptureAuthorizedPaymentsApplicationErrors, u as GetOrderApplicationErrors, v as OrderSearch, w as SearchOrdersResponse, x as CreateOrderOptions, y as CreateOrderApplicationErrors, U as UpdateOrder, z as UpdateOrderApplicationErrors, A as MaskedOrder, D as BulkUpdateOrdersOptions, E as BulkUpdateOrdersResponse, F as UpdateOrderLineItemIdentifiers, H as UpdateOrderLineItem, J as UpdateOrderLineItemResponse, K as PublicActivity, L as AddActivityResponse, N as AddActivitiesOptions, Q as AddActivitiesResponse, W as UpdateActivityIdentifiers, X as UpdateActivityResponse, Y as DeleteActivityIdentifiers, Z as DeleteActivityResponse, _ as CancelOrderOptions, $ as CancelOrderResponse, a0 as CancelOrderApplicationErrors, a1 as OrderStatusWithLiterals, a2 as UpdateOrderStatusResponse, a3 as UpdateOrderStatusApplicationErrors, a4 as AggregateOrdersOptions, a5 as AggregateOrdersResponse, a6 as BulkUpdateOrderTagsOptions, a7 as BulkUpdateOrderTagsResponse, a8 as OrderApprovedEnvelope, a9 as OrderCanceledEnvelope, aa as OrderCommittedEnvelope, ab as OrderCreatedEnvelope, ac as OrderFulfilledEnvelope, ad as OrderPaymentStatusUpdatedEnvelope, ae as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-DjnuZ6SD.mjs';
|
|
3
|
+
export { dX as AccountInfo, jb as AccountInfoMetadata, dT as ActionEvent, aZ as ActionType, jX as ActionTypeWithLiterals, ca as Activity, cb as ActivityContentOneOf, aw as ActivityType, ju as ActivityTypeWithLiterals, hP as AddActivitiesRequest, hN as AddActivityRequest, hq as AddInternalActivityRequest, hM as AddInternalActivityResponse, fr as AddToAutomationMigrationPopulationRequest, fs as AddToAutomationMigrationPopulationResponse, d8 as AdditionalFee, dG as AdditionalFeeDelta, dH as AdditionalFeeDeltaDeltaOneOf, eD as AdditionalFeeRefund, aA as AdditionalFeeSource, jy as AdditionalFeeSourceWithLiterals, bM as Address, iJ as AddressDescription, bO as AddressLocation, bL as AddressWithContact, al as AdjustmentType, jk as AdjustmentTypeWithLiterals, il as AggregateOrdersRequest, gi as AggregatedRefundSummary, fI as ApplicationError, c0 as AppliedDiscount, dE as AppliedDiscountDelta, dF as AppliedDiscountDeltaDeltaOneOf, c1 as AppliedDiscountDiscountSourceOneOf, h1 as ArchiveOrderRequest, h2 as ArchiveOrderResponse, eW as Asset, ay as AttributionSource, jw as AttributionSourceWithLiterals, g5 as AuthorizationActionFailureDetails, g4 as AuthorizationCapture, aW as AuthorizationCaptureStatus, jU as AuthorizationCaptureStatusWithLiterals, g3 as AuthorizationDetails, g6 as AuthorizationVoid, aX as AuthorizationVoidStatus, jV as AuthorizationVoidStatusWithLiterals, cB as AuthorizedPaymentCaptured, cA as AuthorizedPaymentCreated, cC as AuthorizedPaymentVoided, d6 as Balance, d5 as BalanceSummary, j9 as BaseEventMetadata, iT as BigDecimalWrapper, bx as BillingAdjustment, by as BillingAdjustmentPriceSummary, fJ as BulkActionMetadata, h5 as BulkArchiveOrdersByFilterRequest, h6 as BulkArchiveOrdersByFilterResponse, h3 as BulkArchiveOrdersRequest, h4 as BulkArchiveOrdersResponse, dM as BulkDeleteImportedOrdersRequest, i1 as BulkMarkAsFulfilledByFilterRequest, i2 as BulkMarkAsFulfilledByFilterResponse, h$ as BulkMarkAsFulfilledRequest, i0 as BulkMarkAsFulfilledResponse, i7 as BulkMarkAsUnfulfilledByFilterRequest, i8 as BulkMarkAsUnfulfilledByFilterResponse, i5 as BulkMarkAsUnfulfilledRequest, i6 as BulkMarkAsUnfulfilledResponse, fF as BulkMarkOrdersAsPaidRequest, fG as BulkOrderResult, eh as BulkSendBuyerPickupConfirmationEmailsRequest, ei as BulkSendBuyerPickupConfirmationEmailsResponse, el as BulkSendBuyerShippingConfirmationEmailsRequest, em as BulkSendBuyerShippingConfirmationEmailsResponse, i9 as BulkSetBusinessLocationRequest, ia as BulkSetBusinessLocationResponse, ib as BulkSetBusinessLocationResult, hb as BulkUnArchiveOrdersByFilterRequest, hc as BulkUnArchiveOrdersByFilterResponse, h9 as BulkUnArchiveOrdersRequest, ha as BulkUnArchiveOrdersResponse, iq as BulkUpdateOrderTagsRequest, it as BulkUpdateOrderTagsResult, gT as BulkUpdateOrdersRequest, bH as BuyerInfo, bI as BuyerInfoIdOneOf, he as BuyerInfoUpdate, gm as CalculateRefundItemRequest, go as CalculateRefundItemResponse, gl as CalculateRefundRequest, gn as CalculateRefundResponse, j1 as CalculatedTax, j0 as CalculatedTaxes, iB as Cancel, hX as CancelOrderRequest, gq as CaptureAuthorizedPaymentsRequest, d7 as CashRounding, ge as CashRoundingDetails, bc as CatalogReference, d3 as ChannelInfo, az as ChannelType, jx as ChannelTypeWithLiterals, fP as ChargeMembershipsRequest, fT as ChargeMembershipsResponse, gr as ChargeSavedPaymentMethodRequest, gs as ChargeSavedPaymentMethodResponse, aD as ChargeType, jB as ChargeTypeWithLiterals, g8 as Chargeback, c$ as ChargebackCreated, d0 as ChargebackReversed, a_ as ChargebackStatus, jY as ChargebackStatusWithLiterals, fO as ChargedBy, bi as Color, gU as CommitDeltasRequest, h0 as CommitDeltasResponse, dy as CommittedDiffs, dz as CommittedDiffsShippingUpdateInfoOneOf, iM as CommonAddress, iN as CommonAddressStreetOneOf, k8 as CommonSearchWithEntityContext, iL as Company, iA as Complete, c2 as Coupon, gM as CreateOrderRequest, gQ as CreateOrderResponse, fN as CreatePaymentGatewayOrderRequest, d1 as CreatedBy, d2 as CreatedByStringOneOf, cQ as CreditCardDetails, g2 as CreditCardPaymentMethodDetails, bJ as CurrencyConversionDetails, gC as CursorPaging, gL as CursorPagingMetadata, gJ as CursorSearch, gK as CursorSearchPagingMethodOneOf, gF as Cursors, cc as CustomActivity, dg as CustomAllowedActions, d4 as CustomField, b6 as CustomFieldGroup, k4 as CustomFieldGroupWithLiterals, j6 as CustomFieldValue, iG as Customer, io as DecrementData, im as DecrementItemsQuantityRequest, ip as DecrementItemsQuantityResponse, fx as DelayedCaptureSettings, hR as DeleteActivityRequest, e1 as DeleteByFilterOperation, e0 as DeleteByIdsOperation, e_ as DeleteContext, aM as DeleteStatus, jK as DeleteStatusWithLiterals, bS as DeliveryLogistics, bT as DeliveryLogisticsAddressOneOf, bW as DeliveryTimeSlot, aE as DeltaPaymentOptionType, jC as DeltaPaymentOptionTypeWithLiterals, j8 as Deposit, b8 as DepositType, k6 as DepositTypeWithLiterals, bd as DescriptionLine, bf as DescriptionLineDescriptionLineValueOneOf, bg as DescriptionLineName, af as DescriptionLineType, je as DescriptionLineTypeWithLiterals, be as DescriptionLineValueOneOf, gt as DiffmatokyPayload, br as DigitalFile, bl as Dimensions, ag as DimensionsUnit, jf as DimensionsUnitWithLiterals, i_ as Discount, i$ as DiscountOneDiscountTypeOneOf, au as DiscountReason, js as DiscountReasonWithLiterals, c5 as DiscountRule, c6 as DiscountRuleName, at as DiscountType, jr as DiscountTypeWithLiterals, dN as DomainEvent, dO as DomainEventBodyOneOf, hy as DownloadLinkSent, ci as DraftOrderChangesApplied, dI as DraftOrderCommitSettings, gV as DraftOrderDiffs, gY as DraftOrderDiffsBillingUpdateInfoOneOf, gX as DraftOrderDiffsBuyerUpdateInfoOneOf, gZ as DraftOrderDiffsRecipientUpdateInfoOneOf, gW as DraftOrderDiffsShippingUpdateInfoOneOf, fy as Duration, aO as DurationUnit, jM as DurationUnitWithLiterals, fn as EditorlessAssigned, fo as EditorlessUnassigned, iH as Email, hH as EmailEdited, e9 as Empty, dP as EntityCreatedEvent, dS as EntityDeletedEvent, dR as EntityUpdatedEvent, gu as ErrorInformation, ja as EventMetadata, bD as ExtendedFields, cY as ExternalReceipt, gd as ExternalReceiptInfo, bj as FocalPoint, dj as FormIdentifier, di as FormInfo, bw as FreeTrialPeriod, hF as FulfillerEmailSent, ao as FulfillmentStatus, dv as FulfillmentStatusUpdated, jn as FulfillmentStatusWithLiterals, d9 as FulfillmentStatusesAggregate, bP as FullAddressContactDetails, gv as GetOrderRequest, gw as GetOrderResponse, fz as GetPaymentCollectabilityStatusRequest, fK as GetRefundabilityStatusRequest, ij as GetShipmentsRequest, ik as GetShipmentsResponse, ga as GiftCardPaymentDetails, cH as GiftCardPaymentRefund, fp as HasCustomEmailConfigurationsRequest, fq as HasCustomEmailConfigurationsResponse, iE as IdAndVersion, dV as IdentificationData, dW as IdentificationDataIdOneOf, dK as ImportOrderRequest, dt as ImportedOrderDeleted, hr as InternalActivity, hs as InternalActivityContentOneOf, d_ as InternalDocument, e2 as InternalDocumentUpdateByFilterOperation, d$ as InternalDocumentUpdateOperation, gx as InternalQueryOrdersRequest, gD as InternalQueryOrdersResponse, e3 as InternalUpdateExistingOperation, aF as InventoryAction, jD as InventoryActionWithLiterals, dJ as InventoryUpdateDetails, hD as InvoiceAdded, iQ as InvoiceDates, j5 as InvoiceDynamicPriceTotals, iF as InvoiceFields, hE as InvoiceSent, iD as InvoiceSentEvent, b9 as InvoiceStatus, k7 as InvoiceStatusWithLiterals, j3 as InvoicesPayment, ft as IsInAutomationMigrationPopulationRequest, fu as IsInAutomationMigrationPopulationResponse, dA as ItemChangedDetails, c8 as ItemCombination, c9 as ItemCombinationLineItem, fH as ItemMetadata, bG as ItemModifier, bo as ItemTaxFullDetails, bm as ItemType, bn as ItemTypeItemTypeDataOneOf, ah as ItemTypePreset, jg as ItemTypePresetWithLiterals, iZ as ItemizedFee, aj as JurisdictionType, ji as JurisdictionTypeWithLiterals, iS as LineItem, cu as LineItemAmount, cl as LineItemChanges, dC as LineItemDelta, dD as LineItemDeltaDeltaOneOf, cp as LineItemDescriptionLineChange, c7 as LineItemDiscount, ch as LineItemExchangeData, iW as LineItemMetaData, cq as LineItemModifiersChange, cn as LineItemPriceChange, co as LineItemProductNameChange, cm as LineItemQuantityChange, av as LineItemQuantityChangeType, jt as LineItemQuantityChangeTypeWithLiterals, eC as LineItemRefund, gk as LineItemRefundSummary, iU as LineItemTax, bq as LineItemTaxBreakdown, bp as LineItemTaxInfo, hT as LineItemUpdate, iR as LineItems, iX as Locale, dc as Location, bA as LocationAndQuantity, cv as ManagedAdditionalFee, cs as ManagedDiscount, cr as ManagedLineItem, aT as ManuallyRefundableReason, jR as ManuallyRefundableReasonWithLiterals, hZ as MarkAsFulfilledRequest, h_ as MarkAsFulfilledResponse, i3 as MarkAsUnfulfilledRequest, i4 as MarkAsUnfulfilledResponse, fE as MarkOrderAsPaidRequest, hV as MarkOrderAsSeenByHumanRequest, hW as MarkOrderAsSeenByHumanResponse, ho as MaskedOrderLineItem, fQ as MembershipChargeItem, fR as MembershipName, gb as MembershipPaymentDetails, cI as MembershipPaymentRefund, a$ as MembershipPaymentStatus, jZ as MembershipPaymentStatusWithLiterals, cd as MerchantComment, c3 as MerchantDiscount, c4 as MerchantDiscountMerchantDiscountReasonOneOf, dU as MessageEnvelope, j4 as MetaData, eU as MetaSiteSpecialEvent, eV as MetaSiteSpecialEventPayloadOneOf, bE as ModifierGroup, aL as Namespace, f8 as NamespaceChanged, jJ as NamespaceWithLiterals, cg as NewExchangeOrderCreated, aS as NonRefundableReason, jQ as NonRefundableReasonWithLiterals, fd as OdeditorAssigned, fe as OdeditorUnassigned, aB as OrderActionType, jz as OrderActionTypeWithLiterals, ax as OrderActivityTypeEnumActivityType, jv as OrderActivityTypeEnumActivityTypeWithLiterals, b2 as OrderApprovalStrategy, k0 as OrderApprovalStrategyWithLiterals, dm as OrderApproved, hx as OrderCanceled, dw as OrderCanceledEventOrderCanceled, cj as OrderChange, ck as OrderChangeValueOneOf, gP as OrderCreateNotifications, cf as OrderCreatedFromExchange, gN as OrderCreationSettings, gO as OrderCreationSettingsEditableByOneOf, dx as OrderDeltasCommitted, hv as OrderFulfilled, ds as OrderImported, dq as OrderItemsRestocked, ba as OrderLineItem, dB as OrderLineItemChangedDetails, hw as OrderNotFulfilled, hu as OrderPaid, hJ as OrderPartiallyPaid, hK as OrderPending, ht as OrderPlaced, ce as OrderRefunded, hL as OrderRejected, dp as OrderRejectedEventOrderRejected, jc as OrderSearchSpec, dd as OrderSettings, de as OrderSettingsAllowedActionsOneOf, df as OrderSettingsEditableByOneOf, as as OrderStatus, b$ as OrderTaxBreakdown, b_ as OrderTaxInfo, fY as OrderTransactions, dn as OrdersExperiments, dh as OwnerApps, fZ as Payment, cR as PaymentCanceled, cS as PaymentCanceledPaymentDetailsOneOf, aP as PaymentCollectabilityStatus, jN as PaymentCollectabilityStatusWithLiterals, cT as PaymentDeclined, cU as PaymentDeclinedPaymentDetailsOneOf, g9 as PaymentMethodName, ai as PaymentOptionType, jh as PaymentOptionTypeWithLiterals, f_ as PaymentPaymentDetailsOneOf, cM as PaymentPending, cN as PaymentPendingPaymentDetailsOneOf, f$ as PaymentReceiptInfoOneOf, cK as PaymentRefundFailed, cJ as PaymentRefunded, an as PaymentStatus, du as PaymentStatusUpdated, jm as PaymentStatusWithLiterals, j2 as Payments, iK as Phone, bk as PhysicalProperties, ff as PicassoAssigned, fg as PicassoUnassigned, bV as PickupAddress, bU as PickupDetails, ar as PickupMethod, jq as PickupMethodWithLiterals, hI as PickupReadyEmailSent, b3 as Placement, k1 as PlacementWithLiterals, bh as PlainTextValue, dl as PlatformFee, dk as PlatformFeeSummary, gB as PlatformPaging, gE as PlatformPagingMetadata, gy as PlatformQuery, gz as PlatformQueryPagingMethodOneOf, aQ as PredefinedPaymentMethod, jO as PredefinedPaymentMethodWithLiterals, fv as PreparePaymentCollectionRequest, eM as PreviewBuyerConfirmationEmailRequest, eN as PreviewBuyerConfirmationEmailResponse, eK as PreviewBuyerPaymentsReceivedEmailRequest, eL as PreviewBuyerPaymentsReceivedEmailResponse, eO as PreviewBuyerPickupConfirmationEmailRequest, eP as PreviewBuyerPickupConfirmationEmailResponse, eG as PreviewCancelEmailRequest, eH as PreviewCancelEmailResponse, eI as PreviewCancelRefundEmailRequest, eJ as PreviewCancelRefundEmailResponse, ex as PreviewEmailByTypeRequest, ey as PreviewEmailByTypeResponse, aI as PreviewEmailType, jG as PreviewEmailTypeWithLiterals, ez as PreviewRefundEmailRequest, eF as PreviewRefundEmailResponse, eS as PreviewResendDownloadLinksEmailRequest, eT as PreviewResendDownloadLinksEmailResponse, eQ as PreviewShippingConfirmationEmailRequest, eR as PreviewShippingConfirmationEmailResponse, bz as PriceDescription, bK as PriceSummary, bb as ProductName, hO as PublicActivityContentOneOf, gG as QueryOrderRequest, gH as QueryOrderResponse, iI as QuotesAddress, aY as Reason, jW as ReasonWithLiterals, cV as ReceiptCreated, cW as ReceiptCreatedReceiptInfoOneOf, cZ as ReceiptSent, c_ as ReceiptSentReceiptInfoOneOf, fA as RecordManuallyCollectedPaymentRequest, fD as RecordManuallyCollectedPaymentResponse, fw as RedirectUrls, gf as Refund, eA as RefundDetails, cD as RefundInitiated, eB as RefundItem, gj as RefundItemsBreakdown, fV as RefundSideEffects, b0 as RefundStatus, gh as RefundStatusInfo, j_ as RefundStatusWithLiterals, gg as RefundTransaction, fL as Refundability, fM as RefundabilityAdditionalRefundabilityInfoOneOf, aR as RefundableStatus, jP as RefundableStatusWithLiterals, cL as RefundedAsStoreCredit, cE as RefundedPayment, cF as RefundedPaymentKindOneOf, cO as RegularPayment, g0 as RegularPaymentDetails, g1 as RegularPaymentDetailsPaymentMethodDetailsOneOf, cP as RegularPaymentPaymentMethodDetailsOneOf, cG as RegularPaymentRefund, iC as Reschedule, fW as RestockInfo, fX as RestockItem, aU as RestockType, jS as RestockTypeWithLiterals, dQ as RestoreInfo, cz as SavedPaymentMethod, aN as ScheduledAction, jL as ScheduledActionWithLiterals, gI as SearchOrdersRequest, eb as SendBuyerConfirmationEmailRequest, ec as SendBuyerConfirmationEmailResponse, ed as SendBuyerPaymentsReceivedEmailRequest, ee as SendBuyerPaymentsReceivedEmailResponse, ef as SendBuyerPickupConfirmationEmailRequest, eg as SendBuyerPickupConfirmationEmailResponse, ej as SendBuyerShippingConfirmationEmailRequest, ek as SendBuyerShippingConfirmationEmailResponse, ep as SendCancelRefundEmailRequest, eq as SendCancelRefundEmailResponse, et as SendFulfillmentEmailRequest, eu as SendFulfillmentEmailResponse, en as SendMerchantOrderReceivedNotificationRequest, eo as SendMerchantOrderReceivedNotificationResponse, ev as SendMerchantOrderReceivedPushRequest, ew as SendMerchantOrderReceivedPushResponse, iu as SendOrderUpdatedDomainEventRequest, iv as SendOrderUpdatedDomainEventResponse, er as SendRefundEmailRequest, es as SendRefundEmailResponse, fS as ServiceProperties, f4 as ServiceProvisioned, f5 as ServiceRemoved, dL as SetOrderNumberCounterRequest, hG as ShippingAddressEdited, hC as ShippingConfirmationEmailSent, cy as ShippingInformation, cx as ShippingInformationChange, bX as ShippingPrice, eE as ShippingRefund, bY as ShippingRegion, eX as SiteCreated, aK as SiteCreatedContext, jI as SiteCreatedContextWithLiterals, eZ as SiteDeleted, f7 as SiteHardDeleted, f2 as SiteMarkedAsTemplate, f3 as SiteMarkedAsWixSite, f0 as SitePublished, fc as SitePurgedExternally, f6 as SiteRenamed, eY as SiteTransferred, e$ as SiteUndeleted, f1 as SiteUnpublished, fb as SiteUrlChanged, b1 as SortOrder, j$ as SortOrderWithLiterals, gA as Sorting, iV as Source, b5 as SourceType, k3 as SourceTypeWithLiterals, aC as SpecificItemsCouponBehavior, jA as SpecificItemsCouponBehaviorWithLiterals, iP as StandardDetails, aJ as State, jH as StateWithLiterals, bN as StreetAddress, f9 as StudioAssigned, fj as StudioTwoAssigned, fk as StudioTwoUnassigned, fa as StudioUnassigned, iO as Subdivision, b4 as SubdivisionType, k2 as SubdivisionTypeWithLiterals, bu as SubscriptionDescription, ak as SubscriptionFrequency, jj as SubscriptionFrequencyWithLiterals, bs as SubscriptionInfo, bv as SubscriptionSettings, bt as SubscriptionTitle, db as TagList, da as Tags, is as TagsTagList, ir as TagsTags, iw as Task, iy as TaskAction, iz as TaskActionActionOneOf, ix as TaskKey, bZ as TaxSummary, bB as TaxableAddress, bC as TaxableAddressTaxableAddressDataOneOf, am as TaxableAddressType, jl as TaxableAddressTypeWithLiterals, iY as TotalPrice, cw as TotalPriceChange, hB as TrackingLinkAdded, hz as TrackingNumberAdded, hA as TrackingNumberEdited, aV as TransactionStatus, jT as TransactionStatusWithLiterals, bF as TranslatableString, ct as TranslatedValue, fU as TriggerRefundRequest, ea as TriggerReindexOrderRequest, e7 as TriggerReindexRequest, e8 as TriggerReindexResponse, h7 as UnArchiveOrderRequest, h8 as UnArchiveOrderResponse, hQ as UpdateActivityRequest, hk as UpdateBillingContactDetailsRequest, hl as UpdateBillingContactDetailsResponse, hg as UpdateBuyerEmailRequest, hh as UpdateBuyerEmailResponse, hd as UpdateBuyerInfoRequest, hf as UpdateBuyerInfoResponse, dY as UpdateInternalDocumentsEvent, dZ as UpdateInternalDocumentsEventOperationOneOf, hS as UpdateLineItemsDescriptionLinesRequest, hU as UpdateLineItemsDescriptionLinesResponse, hm as UpdateOrderLineItemRequest, hn as UpdateOrderLineItemsRequest, hp as UpdateOrderLineItemsResponse, gR as UpdateOrderRequest, gS as UpdateOrderResponse, hi as UpdateOrderShippingAddressRequest, hj as UpdateOrderShippingAddressResponse, hY as UpdateOrderStatusRequest, fB as UserDefinedPaymentMethodName, fC as UserDefinedPaymentMethodNameKindOneOf, fm as UserDomainMediaDisabled, fl as UserDomainMediaEnabled, ie as V1BulkMarkOrdersAsPaidRequest, ig as V1BulkMarkOrdersAsPaidResponse, ih as V1CreatePaymentGatewayOrderRequest, ii as V1CreatePaymentGatewayOrderResponse, g_ as V1LineItemDelta, g$ as V1LineItemDeltaDeltaOneOf, ic as V1MarkOrderAsPaidRequest, id as V1MarkOrderAsPaidResponse, dr as V1RestockItem, g7 as V1ScheduledAction, bR as V1ShippingInformation, j7 as Value, b7 as ValueType, k5 as ValueTypeWithLiterals, bQ as VatId, aq as VatType, jp as VatTypeWithLiterals, e5 as VersionedDeleteByIdsOperation, e6 as VersionedDocumentId, e4 as VersionedDocumentUpdateOperation, aH as VersioningMode, jF as VersioningModeWithLiterals, gp as VoidAuthorizedPaymentsRequest, aG as WebhookIdentityType, jE as WebhookIdentityTypeWithLiterals, ap as WeightUnit, jo as WeightUnitWithLiterals, cX as WixReceipt, gc as WixReceiptInfo, fh as WixelAssigned, fi as WixelUnassigned, jd as utils } from './ecom-v1-order-orders.universal-DjnuZ6SD.mjs';
|
|
4
4
|
|
|
5
5
|
/** @internal */
|
|
6
6
|
declare function importOrder$1(httpClient: HttpClient): ImportOrderSignature;
|