@wix/auto_sdk_ecom_orders 1.0.118 → 1.0.119
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-CzvHFP5d.d.ts → ecom-v1-order-orders.universal-dYs5mWPr.d.ts} +5 -5
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +10 -10
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +10 -10
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +6 -6
- package/build/cjs/meta.js +10 -10
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-CzvHFP5d.d.mts → ecom-v1-order-orders.universal-dYs5mWPr.d.mts} +5 -5
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +9 -9
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +9 -9
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +6 -6
- package/build/es/meta.mjs +9 -9
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-DoCuzcd7.d.ts → ecom-v1-order-orders.universal-DPJL0zrw.d.ts} +11 -5
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +10 -10
- 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 +10 -10
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +6 -6
- package/build/internal/cjs/meta.js +10 -10
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{ecom-v1-order-orders.universal-DoCuzcd7.d.mts → ecom-v1-order-orders.universal-DPJL0zrw.d.mts} +11 -5
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +9 -9
- 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 +9 -9
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +6 -6
- package/build/internal/es/meta.mjs +9 -9
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -488,18 +488,18 @@ interface PhysicalProperties {
|
|
|
488
488
|
}
|
|
489
489
|
interface ItemType extends ItemTypeItemTypeDataOneOf {
|
|
490
490
|
/** Preset item type. */
|
|
491
|
-
preset?:
|
|
491
|
+
preset?: ItemTypePresetWithLiterals;
|
|
492
492
|
/** Custom item type. When none of the preset types are suitable, specifies the custom type. */
|
|
493
493
|
custom?: string;
|
|
494
494
|
}
|
|
495
495
|
/** @oneof */
|
|
496
496
|
interface ItemTypeItemTypeDataOneOf {
|
|
497
497
|
/** Preset item type. */
|
|
498
|
-
preset?:
|
|
498
|
+
preset?: ItemTypePresetWithLiterals;
|
|
499
499
|
/** Custom item type. When none of the preset types are suitable, specifies the custom type. */
|
|
500
500
|
custom?: string;
|
|
501
501
|
}
|
|
502
|
-
declare enum
|
|
502
|
+
declare enum ItemTypePreset {
|
|
503
503
|
UNRECOGNISED = "UNRECOGNISED",
|
|
504
504
|
PHYSICAL = "PHYSICAL",
|
|
505
505
|
DIGITAL = "DIGITAL",
|
|
@@ -507,7 +507,7 @@ declare enum ItemTypeItemType {
|
|
|
507
507
|
SERVICE = "SERVICE"
|
|
508
508
|
}
|
|
509
509
|
/** @enumType */
|
|
510
|
-
type
|
|
510
|
+
type ItemTypePresetWithLiterals = ItemTypePreset | 'UNRECOGNISED' | 'PHYSICAL' | 'DIGITAL' | 'GIFT_CARD' | 'SERVICE';
|
|
511
511
|
/** Type of selected payment option for catalog item */
|
|
512
512
|
declare enum PaymentOptionType {
|
|
513
513
|
/** The entire payment for this item happens as part of the checkout. */
|
|
@@ -3912,6 +3912,12 @@ interface RegularPaymentDetails extends RegularPaymentDetailsPaymentMethodDetail
|
|
|
3912
3912
|
* @maxSize 6
|
|
3913
3913
|
*/
|
|
3914
3914
|
chargebacks?: Chargeback[];
|
|
3915
|
+
/**
|
|
3916
|
+
* Payment method ID
|
|
3917
|
+
* @internal
|
|
3918
|
+
* @format GUID
|
|
3919
|
+
*/
|
|
3920
|
+
paymentMethodId?: string | null;
|
|
3915
3921
|
}
|
|
3916
3922
|
/** @oneof */
|
|
3917
3923
|
interface RegularPaymentDetailsPaymentMethodDetailsOneOf {
|
|
@@ -8099,4 +8105,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
8099
8105
|
unassignTags?: Tags;
|
|
8100
8106
|
}
|
|
8101
8107
|
|
|
8102
|
-
export { type CancelOrderApplicationErrors as $, type BulkUpdateOrdersResponse as A, type BulkDeleteImportedOrdersOptions as B, type CreatePaymentGatewayOrderResponse as C, type CommitDeltasOptions as D, type CommitDeltasResponse as E, type CommitDeltasApplicationErrors as F, type GetPaymentCollectabilityStatusResponse as G, type UpdateOrderLineItemIdentifiers as H, type ImportOrderResponse as I, type UpdateOrderLineItem as J, type UpdateOrderLineItemResponse as K, type PublicActivity as L, type MarkOrderAsPaidResponse as M, type AddActivityResponse as N, type Order as O, type Price as P, type UpdateActivityIdentifiers as Q, type RecordManuallyCollectedPaymentApplicationErrors as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type UpdateActivityResponse as W, type DeleteActivityIdentifiers as X, type DeleteActivityResponse as Y, type CancelOrderOptions as Z, type CancelOrderResponse as _, type SetOrderNumberCounterResponse as a, type CatalogReference as a$, type OrderStatusWithLiterals as a0, type UpdateOrderStatusResponse as a1, type UpdateOrderStatusApplicationErrors as a2, type AggregateOrdersOptions as a3, type AggregateOrdersResponse as a4, type BulkUpdateOrderTagsOptions as a5, type BulkUpdateOrderTagsResponse as a6, type OrderApprovedEnvelope as a7, type OrderUpdatedEnvelope as a8, type OrderCanceledEnvelope as a9, PaymentCollectabilityStatus as aA, RefundableStatus as aB, NonRefundableReason as aC, ManuallyRefundableReason as aD, RestockType as aE, TransactionStatus as aF, AuthorizationCaptureStatus as aG, AuthorizationVoidStatus as aH, Reason as aI, ActionType as aJ, ChargebackStatus as aK, MembershipPaymentStatus as aL, RefundStatus as aM, VersioningMode as aN, SortOrder as aO, OrderApprovalStrategy as aP, DeltaPaymentOptionType as aQ, InventoryAction as aR, Placement as aS, SubdivisionType as aT, SourceType as aU, CustomFieldGroup as aV, ValueType as aW, DepositType as aX, InvoiceStatus as aY, type OrderLineItem as aZ, type ProductName as a_, type OrderCreatedEnvelope as aa, type OrderPaymentStatusUpdatedEnvelope as ab, DescriptionLineType as ac, ItemTypeItemType as ad, PaymentOptionType as ae, JurisdictionType as af, SubscriptionFrequency as ag, AdjustmentType as ah, TaxableAddressType as ai, PaymentStatus as aj, FulfillmentStatus as ak, WeightUnit as al, VatType as am, PickupMethod as an, OrderStatus as ao, DiscountType as ap, DiscountReason as aq, LineItemQuantityChangeType as ar, ActivityType as as, AttributionSource as at, ChannelType as au, OrderActionType as av, WebhookIdentityType as aw, PreviewEmailType as ax, ScheduledAction as ay, DurationUnit as az, type BulkDeleteImportedOrdersResponse as b, type OrderCreatedFromExchange as b$, type DescriptionLine as b0, type DescriptionLineValueOneOf as b1, type DescriptionLineDescriptionLineValueOneOf as b2, type DescriptionLineName as b3, type PlainTextValue as b4, type Color as b5, type FocalPoint as b6, type PhysicalProperties as b7, type ItemType as b8, type ItemTypeItemTypeDataOneOf as b9, type AddressLocation as bA, type FullAddressContactDetails as bB, type VatId as bC, type V1ShippingInformation as bD, type DeliveryLogistics as bE, type DeliveryLogisticsAddressOneOf as bF, type PickupDetails as bG, type PickupAddress as bH, type DeliveryTimeSlot as bI, type ShippingPrice as bJ, type ShippingRegion as bK, type TaxSummary as bL, type OrderTaxInfo as bM, type OrderTaxBreakdown as bN, type AppliedDiscount as bO, type AppliedDiscountDiscountSourceOneOf as bP, type Coupon as bQ, type MerchantDiscount as bR, type MerchantDiscountMerchantDiscountReasonOneOf as bS, type DiscountRule as bT, type DiscountRuleName as bU, type LineItemDiscount as bV, type Activity as bW, type ActivityContentOneOf as bX, type CustomActivity as bY, type MerchantComment as bZ, type OrderRefunded as b_, type ItemTaxFullDetails as ba, type LineItemTaxInfo as bb, type LineItemTaxBreakdown as bc, type DigitalFile as bd, type SubscriptionInfo as be, type SubscriptionTitle as bf, type SubscriptionDescription as bg, type SubscriptionSettings as bh, type FreeTrialPeriod as bi, type BillingAdjustment as bj, type BillingAdjustmentPriceSummary as bk, type PriceDescription as bl, type LocationAndQuantity as bm, type TaxableAddress as bn, type TaxableAddressTaxableAddressDataOneOf as bo, type ExtendedFields as bp, type ModifierGroup as bq, type TranslatableString as br, type ItemModifier as bs, type BuyerInfo as bt, type BuyerInfoIdOneOf as bu, type CurrencyConversionDetails as bv, type PriceSummary as bw, type AddressWithContact as bx, type Address as by, type StreetAddress as bz, type PreparePaymentCollectionOptions as c, type OrderApproved as c$, type NewExchangeOrderCreated as c0, type LineItemExchangeData as c1, type DraftOrderChangesApplied as c2, type OrderChange as c3, type OrderChangeValueOneOf as c4, type LineItemChanges as c5, type LineItemQuantityChange as c6, type LineItemPriceChange as c7, type LineItemProductNameChange as c8, type LineItemDescriptionLineChange as c9, type CreditCardDetails as cA, type PaymentCanceled as cB, type PaymentCanceledPaymentDetailsOneOf as cC, type PaymentDeclined as cD, type PaymentDeclinedPaymentDetailsOneOf as cE, type ReceiptCreated as cF, type ReceiptCreatedReceiptInfoOneOf as cG, type WixReceipt as cH, type ExternalReceipt as cI, type ReceiptSent as cJ, type ReceiptSentReceiptInfoOneOf as cK, type ChargebackCreated as cL, type ChargebackReversed as cM, type CreatedBy as cN, type CreatedByStringOneOf as cO, type ChannelInfo as cP, type CustomField as cQ, type BalanceSummary as cR, type Balance as cS, type AdditionalFee as cT, type FulfillmentStatusesAggregate as cU, type Tags as cV, type TagList as cW, type Location as cX, type OrderSettings as cY, type OrderSettingsAllowedActionsOneOf as cZ, type CustomAllowedActions as c_, type LineItemModifiersChange as ca, type ManagedLineItem as cb, type ManagedDiscount as cc, type TranslatedValue as cd, type LineItemAmount as ce, type ManagedAdditionalFee as cf, type TotalPriceChange as cg, type ShippingInformationChange as ch, type ShippingInformation as ci, type SavedPaymentMethod as cj, type AuthorizedPaymentCreated as ck, type AuthorizedPaymentCaptured as cl, type AuthorizedPaymentVoided as cm, type RefundInitiated as cn, type RefundedPayment as co, type RefundedPaymentKindOneOf as cp, type RegularPaymentRefund as cq, type GiftCardPaymentRefund as cr, type MembershipPaymentRefund as cs, type PaymentRefunded as ct, type PaymentRefundFailed as cu, type RefundedAsStoreCredit as cv, type PaymentPending as cw, type PaymentPendingPaymentDetailsOneOf as cx, type RegularPayment as cy, type RegularPaymentPaymentMethodDetailsOneOf as cz, type PreparePaymentCollectionResponse as d, type Empty as d$, type OrdersExperiments as d0, type OrderRejectedEventOrderRejected as d1, type OrderItemsRestocked as d2, type V1RestockItem as d3, type OrderImported as d4, type ImportedOrderDeleted as d5, type ImportOrderRequest as d6, type SetOrderNumberCounterRequest as d7, type BulkDeleteImportedOrdersRequest as d8, type DomainEvent as d9, type SendRefundEmailRequest as dA, type SendRefundEmailResponse as dB, type SendMerchantOrderReceivedPushRequest as dC, type SendMerchantOrderReceivedPushResponse as dD, type PreviewEmailByTypeRequest as dE, type PreviewEmailByTypeResponse as dF, type PreviewRefundEmailRequest as dG, type RefundDetails as dH, type RefundItem as dI, type LineItemRefund as dJ, type AdditionalFeeRefund as dK, type ShippingRefund as dL, type PreviewRefundEmailResponse as dM, type PreviewCancelEmailRequest as dN, type PreviewCancelEmailResponse as dO, type PreviewCancelRefundEmailRequest as dP, type PreviewCancelRefundEmailResponse as dQ, type PreviewBuyerPaymentsReceivedEmailRequest as dR, type PreviewBuyerPaymentsReceivedEmailResponse as dS, type PreviewBuyerConfirmationEmailRequest as dT, type PreviewBuyerConfirmationEmailResponse as dU, type PreviewBuyerPickupConfirmationEmailRequest as dV, type PreviewBuyerPickupConfirmationEmailResponse as dW, type PreviewShippingConfirmationEmailRequest as dX, type PreviewShippingConfirmationEmailResponse as dY, type PreviewResendDownloadLinksEmailRequest as dZ, type PreviewResendDownloadLinksEmailResponse as d_, type DomainEventBodyOneOf as da, type EntityCreatedEvent as db, type RestoreInfo as dc, type EntityUpdatedEvent as dd, type EntityDeletedEvent as de, type ActionEvent as df, type MessageEnvelope as dg, type IdentificationData as dh, type IdentificationDataIdOneOf as di, type SendBuyerConfirmationEmailRequest as dj, type SendBuyerConfirmationEmailResponse as dk, type SendBuyerPaymentsReceivedEmailRequest as dl, type SendBuyerPaymentsReceivedEmailResponse as dm, type SendBuyerPickupConfirmationEmailRequest as dn, type SendBuyerPickupConfirmationEmailResponse as dp, type BulkSendBuyerPickupConfirmationEmailsRequest as dq, type BulkSendBuyerPickupConfirmationEmailsResponse as dr, type SendBuyerShippingConfirmationEmailRequest as ds, type SendBuyerShippingConfirmationEmailResponse as dt, type BulkSendBuyerShippingConfirmationEmailsRequest as du, type BulkSendBuyerShippingConfirmationEmailsResponse as dv, type SendMerchantOrderReceivedNotificationRequest as dw, type SendMerchantOrderReceivedNotificationResponse as dx, type SendCancelRefundEmailRequest as dy, type SendCancelRefundEmailResponse as dz, type PreparePaymentCollectionApplicationErrors as e, type DeleteByFilterOperation as e$, type PreparePaymentCollectionRequest as e0, type RedirectUrls as e1, type DelayedCaptureSettings as e2, type Duration as e3, type GetPaymentCollectabilityStatusRequest as e4, type RecordManuallyCollectedPaymentRequest as e5, type RecordManuallyCollectedPaymentResponse as e6, type MarkOrderAsPaidRequest as e7, type BulkMarkOrdersAsPaidRequest as e8, type BulkOrderResult as e9, type AuthorizationActionFailureDetails as eA, type AuthorizationVoid as eB, type V1ScheduledAction as eC, type Chargeback as eD, type GiftCardPaymentDetails as eE, type MembershipPaymentDetails as eF, type WixReceiptInfo as eG, type ExternalReceiptInfo as eH, type Refund as eI, type RefundTransaction as eJ, type RefundStatusInfo as eK, type AggregatedRefundSummary as eL, type RefundItemsBreakdown as eM, type LineItemRefundSummary as eN, type CalculateRefundRequest as eO, type CalculateRefundItemRequest as eP, type CalculateRefundResponse as eQ, type CalculateRefundItemResponse as eR, type VoidAuthorizedPaymentsRequest as eS, type CaptureAuthorizedPaymentsRequest as eT, type ChargeSavedPaymentMethodRequest as eU, type ChargeSavedPaymentMethodResponse as eV, type UpdateInternalDocumentsEvent as eW, type UpdateInternalDocumentsEventOperationOneOf as eX, type InternalDocument as eY, type InternalDocumentUpdateOperation as eZ, type DeleteByIdsOperation as e_, type ItemMetadata as ea, type ApplicationError as eb, type BulkActionMetadata as ec, type GetRefundabilityStatusRequest as ed, type Refundability as ee, type RefundabilityAdditionalRefundabilityInfoOneOf as ef, type CreatePaymentGatewayOrderRequest as eg, type ChargedBy as eh, type ChargeMembershipsRequest as ei, type MembershipChargeItem as ej, type MembershipName as ek, type ServiceProperties as el, type ChargeMembershipsResponse as em, type TriggerRefundRequest as en, type RefundSideEffects as eo, type RestockInfo as ep, type RestockItem as eq, type OrderTransactions as er, type Payment as es, type PaymentPaymentDetailsOneOf as et, type PaymentReceiptInfoOneOf as eu, type RegularPaymentDetails as ev, type RegularPaymentDetailsPaymentMethodDetailsOneOf as ew, type CreditCardPaymentMethodDetails as ex, type AuthorizationDetails as ey, type AuthorizationCapture as ez, type PaymentCollectionMarkOrderAsPaidApplicationErrors as f, type UnArchiveOrderResponse as f$, type InternalDocumentUpdateByFilterOperation as f0, type InternalUpdateExistingOperation as f1, type VersionedDocumentUpdateOperation as f2, type VersionedDeleteByIdsOperation as f3, type VersionedDocumentId as f4, type TriggerReindexRequest as f5, type TriggerReindexResponse as f6, type BatchOfTriggerReindexOrderRequest as f7, type TriggerReindexOrderRequest as f8, type DiffmatokyPayload as f9, type DraftOrderDiffs as fA, type DraftOrderDiffsShippingUpdateInfoOneOf as fB, type DraftOrderDiffsBuyerUpdateInfoOneOf as fC, type DraftOrderDiffsBillingUpdateInfoOneOf as fD, type DraftOrderDiffsRecipientUpdateInfoOneOf as fE, type V1LineItemDelta as fF, type V1LineItemDeltaDeltaOneOf as fG, type OrderLineItemChangedDetails as fH, type ItemChangedDetails as fI, type AppliedDiscountDelta as fJ, type AppliedDiscountDeltaDeltaOneOf as fK, type AdditionalFeeDelta as fL, type AdditionalFeeDeltaDeltaOneOf as fM, type DraftOrderCommitSettings as fN, type InventoryUpdateDetails as fO, type OrderDeltasCommitted as fP, type CommittedDiffs as fQ, type CommittedDiffsShippingUpdateInfoOneOf as fR, type LineItemDelta as fS, type LineItemDeltaDeltaOneOf as fT, type ArchiveOrderRequest as fU, type ArchiveOrderResponse as fV, type BulkArchiveOrdersRequest as fW, type BulkArchiveOrdersResponse as fX, type BulkArchiveOrdersByFilterRequest as fY, type BulkArchiveOrdersByFilterResponse as fZ, type UnArchiveOrderRequest as f_, type ErrorInformation as fa, type GetOrderRequest as fb, type GetOrderResponse as fc, type InternalQueryOrdersRequest as fd, type PlatformQuery as fe, type PlatformQueryPagingMethodOneOf as ff, type Sorting as fg, type PlatformPaging as fh, type CursorPaging as fi, type InternalQueryOrdersResponse as fj, type PlatformPagingMetadata as fk, type Cursors as fl, type QueryOrderRequest as fm, type QueryOrderResponse as fn, type SearchOrdersRequest as fo, type CursorSearch as fp, type CursorSearchPagingMethodOneOf as fq, type CursorPagingMetadata as fr, type CreateOrderRequest as fs, type OrderCreationSettings as ft, type OrderCreateNotifications as fu, type CreateOrderResponse as fv, type UpdateOrderRequest as fw, type UpdateOrderResponse as fx, type BulkUpdateOrdersRequest as fy, type CommitDeltasRequest as fz, type BulkMarkOrdersAsPaidResponse as g, type BulkMarkAsUnfulfilledRequest as g$, type BulkUnArchiveOrdersRequest as g0, type BulkUnArchiveOrdersResponse as g1, type BulkUnArchiveOrdersByFilterRequest as g2, type BulkUnArchiveOrdersByFilterResponse as g3, type UpdateBuyerInfoRequest as g4, type BuyerInfoUpdate as g5, type UpdateBuyerInfoResponse as g6, type UpdateBuyerEmailRequest as g7, type UpdateBuyerEmailResponse as g8, type UpdateOrderShippingAddressRequest as g9, type OrderPartiallyPaid as gA, type OrderPending as gB, type OrderRejected as gC, type AddInternalActivityResponse as gD, type AddActivityRequest as gE, type PublicActivityContentOneOf as gF, type AddActivitiesRequest as gG, type AddActivitiesResponse as gH, type UpdateActivityRequest as gI, type DeleteActivityRequest as gJ, type UpdateLineItemsDescriptionLinesRequest as gK, type LineItemUpdate as gL, type UpdateLineItemsDescriptionLinesResponse as gM, type MarkOrderAsSeenByHumanRequest as gN, type MarkOrderAsSeenByHumanResponse as gO, type CancelOrderRequest as gP, type OrderCanceledEventOrderCanceled as gQ, type UpdateOrderStatusRequest as gR, type MarkAsFulfilledRequest as gS, type MarkAsFulfilledResponse as gT, type FulfillmentStatusUpdated as gU, type BulkMarkAsFulfilledRequest as gV, type BulkMarkAsFulfilledResponse as gW, type BulkMarkAsFulfilledByFilterRequest as gX, type BulkMarkAsFulfilledByFilterResponse as gY, type MarkAsUnfulfilledRequest as gZ, type MarkAsUnfulfilledResponse as g_, type UpdateOrderShippingAddressResponse as ga, type UpdateBillingContactDetailsRequest as gb, type UpdateBillingContactDetailsResponse as gc, type UpdateOrderLineItemRequest as gd, type UpdateOrderLineItemsRequest as ge, type MaskedOrderLineItem as gf, type UpdateOrderLineItemsResponse as gg, type AddInternalActivityRequest as gh, type InternalActivity as gi, type InternalActivityContentOneOf as gj, type OrderPlaced as gk, type OrderPaid as gl, type OrderFulfilled as gm, type OrderNotFulfilled as gn, type OrderCanceled as go, type DownloadLinkSent as gp, type TrackingNumberAdded as gq, type TrackingNumberEdited as gr, type TrackingLinkAdded as gs, type ShippingConfirmationEmailSent as gt, type InvoiceAdded as gu, type InvoiceSent as gv, type FulfillerEmailSent as gw, type ShippingAddressEdited as gx, type EmailEdited as gy, type PickupReadyEmailSent as gz, type GetRefundabilityStatusResponse as h, type EventMetadata as h$, type BulkMarkAsUnfulfilledResponse as h0, type BulkMarkAsUnfulfilledByFilterRequest as h1, type BulkMarkAsUnfulfilledByFilterResponse as h2, type BulkSetBusinessLocationRequest as h3, type BulkSetBusinessLocationResponse as h4, type BulkSetBusinessLocationResult as h5, type V1MarkOrderAsPaidRequest as h6, type V1MarkOrderAsPaidResponse as h7, type PaymentStatusUpdated as h8, type V1BulkMarkOrdersAsPaidRequest as h9, type Company as hA, type CommonAddress as hB, type CommonAddressStreetOneOf as hC, type Subdivision as hD, type StandardDetails as hE, type InvoiceDates as hF, type LineItems as hG, type LineItem as hH, type BigDecimalWrapper as hI, type LineItemTax as hJ, type Source as hK, type LineItemMetaData as hL, type Locale as hM, type TotalPrice as hN, type ItemizedFee as hO, type Discount as hP, type DiscountOneDiscountTypeOneOf as hQ, type CalculatedTaxes as hR, type CalculatedTax as hS, type Payments as hT, type InvoicesPayment as hU, type MetaData as hV, type InvoiceDynamicPriceTotals as hW, type CustomFieldValue as hX, type Value as hY, type Deposit as hZ, type BaseEventMetadata as h_, type V1BulkMarkOrdersAsPaidResponse as ha, type V1CreatePaymentGatewayOrderRequest as hb, type V1CreatePaymentGatewayOrderResponse as hc, type GetShipmentsRequest as hd, type GetShipmentsResponse as he, type AggregateOrdersRequest as hf, type DecrementItemsQuantityRequest as hg, type DecrementData as hh, type DecrementItemsQuantityResponse as hi, type BulkUpdateOrderTagsRequest as hj, type BulkUpdateOrderTagsResult as hk, type Task as hl, type TaskKey as hm, type TaskAction as hn, type TaskActionActionOneOf as ho, type Complete as hp, type Cancel as hq, type Reschedule as hr, type InvoiceSentEvent as hs, type IdAndVersion as ht, type InvoiceFields as hu, type Customer as hv, type Email as hw, type QuotesAddress as hx, type AddressDescription as hy, type Phone as hz, type PaymentCollectionCreatePaymentGatewayOrderOptions as i, paymentCollectionMarkOrderAsPaid as i$, type OrderSearchSpec as i0, type DescriptionLineTypeWithLiterals as i1, type ItemTypeItemTypeWithLiterals as i2, type PaymentOptionTypeWithLiterals as i3, type JurisdictionTypeWithLiterals as i4, type SubscriptionFrequencyWithLiterals as i5, type AdjustmentTypeWithLiterals as i6, type TaxableAddressTypeWithLiterals as i7, type PaymentStatusWithLiterals as i8, type FulfillmentStatusWithLiterals as i9, type ChargebackStatusWithLiterals as iA, type MembershipPaymentStatusWithLiterals as iB, type RefundStatusWithLiterals as iC, type VersioningModeWithLiterals as iD, type SortOrderWithLiterals as iE, type OrderApprovalStrategyWithLiterals as iF, type DeltaPaymentOptionTypeWithLiterals as iG, type InventoryActionWithLiterals as iH, type PlacementWithLiterals as iI, type SubdivisionTypeWithLiterals as iJ, type SourceTypeWithLiterals as iK, type CustomFieldGroupWithLiterals as iL, type ValueTypeWithLiterals as iM, type DepositTypeWithLiterals as iN, type InvoiceStatusWithLiterals as iO, type CommonSearchWithEntityContext as iP, onOrderApproved as iQ, onOrderUpdated as iR, onOrderCanceled as iS, onOrderCreated as iT, onOrderPaymentStatusUpdated as iU, importOrder as iV, setOrderNumberCounter as iW, bulkDeleteImportedOrders as iX, preparePaymentCollection as iY, getPaymentCollectabilityStatus as iZ, recordManuallyCollectedPayment as i_, type WeightUnitWithLiterals as ia, type VatTypeWithLiterals as ib, type PickupMethodWithLiterals as ic, type DiscountTypeWithLiterals as id, type DiscountReasonWithLiterals as ie, type LineItemQuantityChangeTypeWithLiterals as ig, type ActivityTypeWithLiterals as ih, type AttributionSourceWithLiterals as ii, type ChannelTypeWithLiterals as ij, type OrderActionTypeWithLiterals as ik, type WebhookIdentityTypeWithLiterals as il, type PreviewEmailTypeWithLiterals as im, type ScheduledActionWithLiterals as io, type DurationUnitWithLiterals as ip, type PaymentCollectabilityStatusWithLiterals as iq, type RefundableStatusWithLiterals as ir, type NonRefundableReasonWithLiterals as is, type ManuallyRefundableReasonWithLiterals as it, type RestockTypeWithLiterals as iu, type TransactionStatusWithLiterals as iv, type AuthorizationCaptureStatusWithLiterals as iw, type AuthorizationVoidStatusWithLiterals as ix, type ReasonWithLiterals as iy, type ActionTypeWithLiterals as iz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as j, paymentCollectionBulkMarkOrdersAsPaid as j0, getRefundabilityStatus as j1, paymentCollectionCreatePaymentGatewayOrder as j2, chargeMemberships as j3, triggerRefund as j4, voidAuthorizedPayments as j5, captureAuthorizedPayments as j6, getOrder as j7, createOrder as j8, updateOrder as j9, bulkUpdateOrders as ja, commitDeltas as jb, updateOrderLineItem as jc, addActivity as jd, updateActivity as je, deleteActivity as jf, cancelOrder as jg, updateOrderStatus as jh, aggregateOrders as ji, bulkUpdateOrderTags as jj, type ChargeMembershipsOptions as k, type PaymentRefund as l, type TriggerRefundResponse as m, type TriggerRefundApplicationErrors as n, type VoidAuthorizedPaymentsApplicationErrors as o, type PaymentCapture as p, type CaptureAuthorizedPaymentsResponse as q, type CaptureAuthorizedPaymentsApplicationErrors as r, type GetOrderApplicationErrors as s, type OrderSearch as t, type SearchOrdersResponse as u, type CreateOrderOptions as v, type CreateOrderApplicationErrors as w, type UpdateOrderApplicationErrors as x, type MaskedOrder as y, type BulkUpdateOrdersOptions as z };
|
|
8108
|
+
export { type CancelOrderApplicationErrors as $, type BulkUpdateOrdersResponse as A, type BulkDeleteImportedOrdersOptions as B, type CreatePaymentGatewayOrderResponse as C, type CommitDeltasOptions as D, type CommitDeltasResponse as E, type CommitDeltasApplicationErrors as F, type GetPaymentCollectabilityStatusResponse as G, type UpdateOrderLineItemIdentifiers as H, type ImportOrderResponse as I, type UpdateOrderLineItem as J, type UpdateOrderLineItemResponse as K, type PublicActivity as L, type MarkOrderAsPaidResponse as M, type AddActivityResponse as N, type Order as O, type Price as P, type UpdateActivityIdentifiers as Q, type RecordManuallyCollectedPaymentApplicationErrors as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type UpdateActivityResponse as W, type DeleteActivityIdentifiers as X, type DeleteActivityResponse as Y, type CancelOrderOptions as Z, type CancelOrderResponse as _, type SetOrderNumberCounterResponse as a, type CatalogReference as a$, type OrderStatusWithLiterals as a0, type UpdateOrderStatusResponse as a1, type UpdateOrderStatusApplicationErrors as a2, type AggregateOrdersOptions as a3, type AggregateOrdersResponse as a4, type BulkUpdateOrderTagsOptions as a5, type BulkUpdateOrderTagsResponse as a6, type OrderApprovedEnvelope as a7, type OrderUpdatedEnvelope as a8, type OrderCanceledEnvelope as a9, PaymentCollectabilityStatus as aA, RefundableStatus as aB, NonRefundableReason as aC, ManuallyRefundableReason as aD, RestockType as aE, TransactionStatus as aF, AuthorizationCaptureStatus as aG, AuthorizationVoidStatus as aH, Reason as aI, ActionType as aJ, ChargebackStatus as aK, MembershipPaymentStatus as aL, RefundStatus as aM, VersioningMode as aN, SortOrder as aO, OrderApprovalStrategy as aP, DeltaPaymentOptionType as aQ, InventoryAction as aR, Placement as aS, SubdivisionType as aT, SourceType as aU, CustomFieldGroup as aV, ValueType as aW, DepositType as aX, InvoiceStatus as aY, type OrderLineItem as aZ, type ProductName as a_, type OrderCreatedEnvelope as aa, type OrderPaymentStatusUpdatedEnvelope as ab, DescriptionLineType as ac, ItemTypePreset as ad, PaymentOptionType as ae, JurisdictionType as af, SubscriptionFrequency as ag, AdjustmentType as ah, TaxableAddressType as ai, PaymentStatus as aj, FulfillmentStatus as ak, WeightUnit as al, VatType as am, PickupMethod as an, OrderStatus as ao, DiscountType as ap, DiscountReason as aq, LineItemQuantityChangeType as ar, ActivityType as as, AttributionSource as at, ChannelType as au, OrderActionType as av, WebhookIdentityType as aw, PreviewEmailType as ax, ScheduledAction as ay, DurationUnit as az, type BulkDeleteImportedOrdersResponse as b, type OrderCreatedFromExchange as b$, type DescriptionLine as b0, type DescriptionLineValueOneOf as b1, type DescriptionLineDescriptionLineValueOneOf as b2, type DescriptionLineName as b3, type PlainTextValue as b4, type Color as b5, type FocalPoint as b6, type PhysicalProperties as b7, type ItemType as b8, type ItemTypeItemTypeDataOneOf as b9, type AddressLocation as bA, type FullAddressContactDetails as bB, type VatId as bC, type V1ShippingInformation as bD, type DeliveryLogistics as bE, type DeliveryLogisticsAddressOneOf as bF, type PickupDetails as bG, type PickupAddress as bH, type DeliveryTimeSlot as bI, type ShippingPrice as bJ, type ShippingRegion as bK, type TaxSummary as bL, type OrderTaxInfo as bM, type OrderTaxBreakdown as bN, type AppliedDiscount as bO, type AppliedDiscountDiscountSourceOneOf as bP, type Coupon as bQ, type MerchantDiscount as bR, type MerchantDiscountMerchantDiscountReasonOneOf as bS, type DiscountRule as bT, type DiscountRuleName as bU, type LineItemDiscount as bV, type Activity as bW, type ActivityContentOneOf as bX, type CustomActivity as bY, type MerchantComment as bZ, type OrderRefunded as b_, type ItemTaxFullDetails as ba, type LineItemTaxInfo as bb, type LineItemTaxBreakdown as bc, type DigitalFile as bd, type SubscriptionInfo as be, type SubscriptionTitle as bf, type SubscriptionDescription as bg, type SubscriptionSettings as bh, type FreeTrialPeriod as bi, type BillingAdjustment as bj, type BillingAdjustmentPriceSummary as bk, type PriceDescription as bl, type LocationAndQuantity as bm, type TaxableAddress as bn, type TaxableAddressTaxableAddressDataOneOf as bo, type ExtendedFields as bp, type ModifierGroup as bq, type TranslatableString as br, type ItemModifier as bs, type BuyerInfo as bt, type BuyerInfoIdOneOf as bu, type CurrencyConversionDetails as bv, type PriceSummary as bw, type AddressWithContact as bx, type Address as by, type StreetAddress as bz, type PreparePaymentCollectionOptions as c, type OrderApproved as c$, type NewExchangeOrderCreated as c0, type LineItemExchangeData as c1, type DraftOrderChangesApplied as c2, type OrderChange as c3, type OrderChangeValueOneOf as c4, type LineItemChanges as c5, type LineItemQuantityChange as c6, type LineItemPriceChange as c7, type LineItemProductNameChange as c8, type LineItemDescriptionLineChange as c9, type CreditCardDetails as cA, type PaymentCanceled as cB, type PaymentCanceledPaymentDetailsOneOf as cC, type PaymentDeclined as cD, type PaymentDeclinedPaymentDetailsOneOf as cE, type ReceiptCreated as cF, type ReceiptCreatedReceiptInfoOneOf as cG, type WixReceipt as cH, type ExternalReceipt as cI, type ReceiptSent as cJ, type ReceiptSentReceiptInfoOneOf as cK, type ChargebackCreated as cL, type ChargebackReversed as cM, type CreatedBy as cN, type CreatedByStringOneOf as cO, type ChannelInfo as cP, type CustomField as cQ, type BalanceSummary as cR, type Balance as cS, type AdditionalFee as cT, type FulfillmentStatusesAggregate as cU, type Tags as cV, type TagList as cW, type Location as cX, type OrderSettings as cY, type OrderSettingsAllowedActionsOneOf as cZ, type CustomAllowedActions as c_, type LineItemModifiersChange as ca, type ManagedLineItem as cb, type ManagedDiscount as cc, type TranslatedValue as cd, type LineItemAmount as ce, type ManagedAdditionalFee as cf, type TotalPriceChange as cg, type ShippingInformationChange as ch, type ShippingInformation as ci, type SavedPaymentMethod as cj, type AuthorizedPaymentCreated as ck, type AuthorizedPaymentCaptured as cl, type AuthorizedPaymentVoided as cm, type RefundInitiated as cn, type RefundedPayment as co, type RefundedPaymentKindOneOf as cp, type RegularPaymentRefund as cq, type GiftCardPaymentRefund as cr, type MembershipPaymentRefund as cs, type PaymentRefunded as ct, type PaymentRefundFailed as cu, type RefundedAsStoreCredit as cv, type PaymentPending as cw, type PaymentPendingPaymentDetailsOneOf as cx, type RegularPayment as cy, type RegularPaymentPaymentMethodDetailsOneOf as cz, type PreparePaymentCollectionResponse as d, type Empty as d$, type OrdersExperiments as d0, type OrderRejectedEventOrderRejected as d1, type OrderItemsRestocked as d2, type V1RestockItem as d3, type OrderImported as d4, type ImportedOrderDeleted as d5, type ImportOrderRequest as d6, type SetOrderNumberCounterRequest as d7, type BulkDeleteImportedOrdersRequest as d8, type DomainEvent as d9, type SendRefundEmailRequest as dA, type SendRefundEmailResponse as dB, type SendMerchantOrderReceivedPushRequest as dC, type SendMerchantOrderReceivedPushResponse as dD, type PreviewEmailByTypeRequest as dE, type PreviewEmailByTypeResponse as dF, type PreviewRefundEmailRequest as dG, type RefundDetails as dH, type RefundItem as dI, type LineItemRefund as dJ, type AdditionalFeeRefund as dK, type ShippingRefund as dL, type PreviewRefundEmailResponse as dM, type PreviewCancelEmailRequest as dN, type PreviewCancelEmailResponse as dO, type PreviewCancelRefundEmailRequest as dP, type PreviewCancelRefundEmailResponse as dQ, type PreviewBuyerPaymentsReceivedEmailRequest as dR, type PreviewBuyerPaymentsReceivedEmailResponse as dS, type PreviewBuyerConfirmationEmailRequest as dT, type PreviewBuyerConfirmationEmailResponse as dU, type PreviewBuyerPickupConfirmationEmailRequest as dV, type PreviewBuyerPickupConfirmationEmailResponse as dW, type PreviewShippingConfirmationEmailRequest as dX, type PreviewShippingConfirmationEmailResponse as dY, type PreviewResendDownloadLinksEmailRequest as dZ, type PreviewResendDownloadLinksEmailResponse as d_, type DomainEventBodyOneOf as da, type EntityCreatedEvent as db, type RestoreInfo as dc, type EntityUpdatedEvent as dd, type EntityDeletedEvent as de, type ActionEvent as df, type MessageEnvelope as dg, type IdentificationData as dh, type IdentificationDataIdOneOf as di, type SendBuyerConfirmationEmailRequest as dj, type SendBuyerConfirmationEmailResponse as dk, type SendBuyerPaymentsReceivedEmailRequest as dl, type SendBuyerPaymentsReceivedEmailResponse as dm, type SendBuyerPickupConfirmationEmailRequest as dn, type SendBuyerPickupConfirmationEmailResponse as dp, type BulkSendBuyerPickupConfirmationEmailsRequest as dq, type BulkSendBuyerPickupConfirmationEmailsResponse as dr, type SendBuyerShippingConfirmationEmailRequest as ds, type SendBuyerShippingConfirmationEmailResponse as dt, type BulkSendBuyerShippingConfirmationEmailsRequest as du, type BulkSendBuyerShippingConfirmationEmailsResponse as dv, type SendMerchantOrderReceivedNotificationRequest as dw, type SendMerchantOrderReceivedNotificationResponse as dx, type SendCancelRefundEmailRequest as dy, type SendCancelRefundEmailResponse as dz, type PreparePaymentCollectionApplicationErrors as e, type DeleteByFilterOperation as e$, type PreparePaymentCollectionRequest as e0, type RedirectUrls as e1, type DelayedCaptureSettings as e2, type Duration as e3, type GetPaymentCollectabilityStatusRequest as e4, type RecordManuallyCollectedPaymentRequest as e5, type RecordManuallyCollectedPaymentResponse as e6, type MarkOrderAsPaidRequest as e7, type BulkMarkOrdersAsPaidRequest as e8, type BulkOrderResult as e9, type AuthorizationActionFailureDetails as eA, type AuthorizationVoid as eB, type V1ScheduledAction as eC, type Chargeback as eD, type GiftCardPaymentDetails as eE, type MembershipPaymentDetails as eF, type WixReceiptInfo as eG, type ExternalReceiptInfo as eH, type Refund as eI, type RefundTransaction as eJ, type RefundStatusInfo as eK, type AggregatedRefundSummary as eL, type RefundItemsBreakdown as eM, type LineItemRefundSummary as eN, type CalculateRefundRequest as eO, type CalculateRefundItemRequest as eP, type CalculateRefundResponse as eQ, type CalculateRefundItemResponse as eR, type VoidAuthorizedPaymentsRequest as eS, type CaptureAuthorizedPaymentsRequest as eT, type ChargeSavedPaymentMethodRequest as eU, type ChargeSavedPaymentMethodResponse as eV, type UpdateInternalDocumentsEvent as eW, type UpdateInternalDocumentsEventOperationOneOf as eX, type InternalDocument as eY, type InternalDocumentUpdateOperation as eZ, type DeleteByIdsOperation as e_, type ItemMetadata as ea, type ApplicationError as eb, type BulkActionMetadata as ec, type GetRefundabilityStatusRequest as ed, type Refundability as ee, type RefundabilityAdditionalRefundabilityInfoOneOf as ef, type CreatePaymentGatewayOrderRequest as eg, type ChargedBy as eh, type ChargeMembershipsRequest as ei, type MembershipChargeItem as ej, type MembershipName as ek, type ServiceProperties as el, type ChargeMembershipsResponse as em, type TriggerRefundRequest as en, type RefundSideEffects as eo, type RestockInfo as ep, type RestockItem as eq, type OrderTransactions as er, type Payment as es, type PaymentPaymentDetailsOneOf as et, type PaymentReceiptInfoOneOf as eu, type RegularPaymentDetails as ev, type RegularPaymentDetailsPaymentMethodDetailsOneOf as ew, type CreditCardPaymentMethodDetails as ex, type AuthorizationDetails as ey, type AuthorizationCapture as ez, type PaymentCollectionMarkOrderAsPaidApplicationErrors as f, type UnArchiveOrderResponse as f$, type InternalDocumentUpdateByFilterOperation as f0, type InternalUpdateExistingOperation as f1, type VersionedDocumentUpdateOperation as f2, type VersionedDeleteByIdsOperation as f3, type VersionedDocumentId as f4, type TriggerReindexRequest as f5, type TriggerReindexResponse as f6, type BatchOfTriggerReindexOrderRequest as f7, type TriggerReindexOrderRequest as f8, type DiffmatokyPayload as f9, type DraftOrderDiffs as fA, type DraftOrderDiffsShippingUpdateInfoOneOf as fB, type DraftOrderDiffsBuyerUpdateInfoOneOf as fC, type DraftOrderDiffsBillingUpdateInfoOneOf as fD, type DraftOrderDiffsRecipientUpdateInfoOneOf as fE, type V1LineItemDelta as fF, type V1LineItemDeltaDeltaOneOf as fG, type OrderLineItemChangedDetails as fH, type ItemChangedDetails as fI, type AppliedDiscountDelta as fJ, type AppliedDiscountDeltaDeltaOneOf as fK, type AdditionalFeeDelta as fL, type AdditionalFeeDeltaDeltaOneOf as fM, type DraftOrderCommitSettings as fN, type InventoryUpdateDetails as fO, type OrderDeltasCommitted as fP, type CommittedDiffs as fQ, type CommittedDiffsShippingUpdateInfoOneOf as fR, type LineItemDelta as fS, type LineItemDeltaDeltaOneOf as fT, type ArchiveOrderRequest as fU, type ArchiveOrderResponse as fV, type BulkArchiveOrdersRequest as fW, type BulkArchiveOrdersResponse as fX, type BulkArchiveOrdersByFilterRequest as fY, type BulkArchiveOrdersByFilterResponse as fZ, type UnArchiveOrderRequest as f_, type ErrorInformation as fa, type GetOrderRequest as fb, type GetOrderResponse as fc, type InternalQueryOrdersRequest as fd, type PlatformQuery as fe, type PlatformQueryPagingMethodOneOf as ff, type Sorting as fg, type PlatformPaging as fh, type CursorPaging as fi, type InternalQueryOrdersResponse as fj, type PlatformPagingMetadata as fk, type Cursors as fl, type QueryOrderRequest as fm, type QueryOrderResponse as fn, type SearchOrdersRequest as fo, type CursorSearch as fp, type CursorSearchPagingMethodOneOf as fq, type CursorPagingMetadata as fr, type CreateOrderRequest as fs, type OrderCreationSettings as ft, type OrderCreateNotifications as fu, type CreateOrderResponse as fv, type UpdateOrderRequest as fw, type UpdateOrderResponse as fx, type BulkUpdateOrdersRequest as fy, type CommitDeltasRequest as fz, type BulkMarkOrdersAsPaidResponse as g, type BulkMarkAsUnfulfilledRequest as g$, type BulkUnArchiveOrdersRequest as g0, type BulkUnArchiveOrdersResponse as g1, type BulkUnArchiveOrdersByFilterRequest as g2, type BulkUnArchiveOrdersByFilterResponse as g3, type UpdateBuyerInfoRequest as g4, type BuyerInfoUpdate as g5, type UpdateBuyerInfoResponse as g6, type UpdateBuyerEmailRequest as g7, type UpdateBuyerEmailResponse as g8, type UpdateOrderShippingAddressRequest as g9, type OrderPartiallyPaid as gA, type OrderPending as gB, type OrderRejected as gC, type AddInternalActivityResponse as gD, type AddActivityRequest as gE, type PublicActivityContentOneOf as gF, type AddActivitiesRequest as gG, type AddActivitiesResponse as gH, type UpdateActivityRequest as gI, type DeleteActivityRequest as gJ, type UpdateLineItemsDescriptionLinesRequest as gK, type LineItemUpdate as gL, type UpdateLineItemsDescriptionLinesResponse as gM, type MarkOrderAsSeenByHumanRequest as gN, type MarkOrderAsSeenByHumanResponse as gO, type CancelOrderRequest as gP, type OrderCanceledEventOrderCanceled as gQ, type UpdateOrderStatusRequest as gR, type MarkAsFulfilledRequest as gS, type MarkAsFulfilledResponse as gT, type FulfillmentStatusUpdated as gU, type BulkMarkAsFulfilledRequest as gV, type BulkMarkAsFulfilledResponse as gW, type BulkMarkAsFulfilledByFilterRequest as gX, type BulkMarkAsFulfilledByFilterResponse as gY, type MarkAsUnfulfilledRequest as gZ, type MarkAsUnfulfilledResponse as g_, type UpdateOrderShippingAddressResponse as ga, type UpdateBillingContactDetailsRequest as gb, type UpdateBillingContactDetailsResponse as gc, type UpdateOrderLineItemRequest as gd, type UpdateOrderLineItemsRequest as ge, type MaskedOrderLineItem as gf, type UpdateOrderLineItemsResponse as gg, type AddInternalActivityRequest as gh, type InternalActivity as gi, type InternalActivityContentOneOf as gj, type OrderPlaced as gk, type OrderPaid as gl, type OrderFulfilled as gm, type OrderNotFulfilled as gn, type OrderCanceled as go, type DownloadLinkSent as gp, type TrackingNumberAdded as gq, type TrackingNumberEdited as gr, type TrackingLinkAdded as gs, type ShippingConfirmationEmailSent as gt, type InvoiceAdded as gu, type InvoiceSent as gv, type FulfillerEmailSent as gw, type ShippingAddressEdited as gx, type EmailEdited as gy, type PickupReadyEmailSent as gz, type GetRefundabilityStatusResponse as h, type EventMetadata as h$, type BulkMarkAsUnfulfilledResponse as h0, type BulkMarkAsUnfulfilledByFilterRequest as h1, type BulkMarkAsUnfulfilledByFilterResponse as h2, type BulkSetBusinessLocationRequest as h3, type BulkSetBusinessLocationResponse as h4, type BulkSetBusinessLocationResult as h5, type V1MarkOrderAsPaidRequest as h6, type V1MarkOrderAsPaidResponse as h7, type PaymentStatusUpdated as h8, type V1BulkMarkOrdersAsPaidRequest as h9, type Company as hA, type CommonAddress as hB, type CommonAddressStreetOneOf as hC, type Subdivision as hD, type StandardDetails as hE, type InvoiceDates as hF, type LineItems as hG, type LineItem as hH, type BigDecimalWrapper as hI, type LineItemTax as hJ, type Source as hK, type LineItemMetaData as hL, type Locale as hM, type TotalPrice as hN, type ItemizedFee as hO, type Discount as hP, type DiscountOneDiscountTypeOneOf as hQ, type CalculatedTaxes as hR, type CalculatedTax as hS, type Payments as hT, type InvoicesPayment as hU, type MetaData as hV, type InvoiceDynamicPriceTotals as hW, type CustomFieldValue as hX, type Value as hY, type Deposit as hZ, type BaseEventMetadata as h_, type V1BulkMarkOrdersAsPaidResponse as ha, type V1CreatePaymentGatewayOrderRequest as hb, type V1CreatePaymentGatewayOrderResponse as hc, type GetShipmentsRequest as hd, type GetShipmentsResponse as he, type AggregateOrdersRequest as hf, type DecrementItemsQuantityRequest as hg, type DecrementData as hh, type DecrementItemsQuantityResponse as hi, type BulkUpdateOrderTagsRequest as hj, type BulkUpdateOrderTagsResult as hk, type Task as hl, type TaskKey as hm, type TaskAction as hn, type TaskActionActionOneOf as ho, type Complete as hp, type Cancel as hq, type Reschedule as hr, type InvoiceSentEvent as hs, type IdAndVersion as ht, type InvoiceFields as hu, type Customer as hv, type Email as hw, type QuotesAddress as hx, type AddressDescription as hy, type Phone as hz, type PaymentCollectionCreatePaymentGatewayOrderOptions as i, paymentCollectionMarkOrderAsPaid as i$, type OrderSearchSpec as i0, type DescriptionLineTypeWithLiterals as i1, type ItemTypePresetWithLiterals as i2, type PaymentOptionTypeWithLiterals as i3, type JurisdictionTypeWithLiterals as i4, type SubscriptionFrequencyWithLiterals as i5, type AdjustmentTypeWithLiterals as i6, type TaxableAddressTypeWithLiterals as i7, type PaymentStatusWithLiterals as i8, type FulfillmentStatusWithLiterals as i9, type ChargebackStatusWithLiterals as iA, type MembershipPaymentStatusWithLiterals as iB, type RefundStatusWithLiterals as iC, type VersioningModeWithLiterals as iD, type SortOrderWithLiterals as iE, type OrderApprovalStrategyWithLiterals as iF, type DeltaPaymentOptionTypeWithLiterals as iG, type InventoryActionWithLiterals as iH, type PlacementWithLiterals as iI, type SubdivisionTypeWithLiterals as iJ, type SourceTypeWithLiterals as iK, type CustomFieldGroupWithLiterals as iL, type ValueTypeWithLiterals as iM, type DepositTypeWithLiterals as iN, type InvoiceStatusWithLiterals as iO, type CommonSearchWithEntityContext as iP, onOrderApproved as iQ, onOrderUpdated as iR, onOrderCanceled as iS, onOrderCreated as iT, onOrderPaymentStatusUpdated as iU, importOrder as iV, setOrderNumberCounter as iW, bulkDeleteImportedOrders as iX, preparePaymentCollection as iY, getPaymentCollectabilityStatus as iZ, recordManuallyCollectedPayment as i_, type WeightUnitWithLiterals as ia, type VatTypeWithLiterals as ib, type PickupMethodWithLiterals as ic, type DiscountTypeWithLiterals as id, type DiscountReasonWithLiterals as ie, type LineItemQuantityChangeTypeWithLiterals as ig, type ActivityTypeWithLiterals as ih, type AttributionSourceWithLiterals as ii, type ChannelTypeWithLiterals as ij, type OrderActionTypeWithLiterals as ik, type WebhookIdentityTypeWithLiterals as il, type PreviewEmailTypeWithLiterals as im, type ScheduledActionWithLiterals as io, type DurationUnitWithLiterals as ip, type PaymentCollectabilityStatusWithLiterals as iq, type RefundableStatusWithLiterals as ir, type NonRefundableReasonWithLiterals as is, type ManuallyRefundableReasonWithLiterals as it, type RestockTypeWithLiterals as iu, type TransactionStatusWithLiterals as iv, type AuthorizationCaptureStatusWithLiterals as iw, type AuthorizationVoidStatusWithLiterals as ix, type ReasonWithLiterals as iy, type ActionTypeWithLiterals as iz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as j, paymentCollectionBulkMarkOrdersAsPaid as j0, getRefundabilityStatus as j1, paymentCollectionCreatePaymentGatewayOrder as j2, chargeMemberships as j3, triggerRefund as j4, voidAuthorizedPayments as j5, captureAuthorizedPayments as j6, getOrder as j7, createOrder as j8, updateOrder as j9, bulkUpdateOrders as ja, commitDeltas as jb, updateOrderLineItem as jc, addActivity as jd, updateActivity as je, deleteActivity as jf, cancelOrder as jg, updateOrderStatus as jh, aggregateOrders as ji, bulkUpdateOrderTags as jj, type ChargeMembershipsOptions as k, type PaymentRefund as l, type TriggerRefundResponse as m, type TriggerRefundApplicationErrors as n, type VoidAuthorizedPaymentsApplicationErrors as o, type PaymentCapture as p, type CaptureAuthorizedPaymentsResponse as q, type CaptureAuthorizedPaymentsApplicationErrors as r, type GetOrderApplicationErrors as s, type OrderSearch as t, type SearchOrdersResponse as u, type CreateOrderOptions as v, type CreateOrderApplicationErrors as w, type UpdateOrderApplicationErrors as x, type MaskedOrder as y, type BulkUpdateOrdersOptions 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 RecordManuallyCollectedPaymentApplicationErrors, M as MarkOrderAsPaidResponse, f as PaymentCollectionMarkOrderAsPaidApplicationErrors, g as BulkMarkOrdersAsPaidResponse, h as GetRefundabilityStatusResponse, i as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, j as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, k as ChargeMembershipsOptions, l as PaymentRefund, T as TriggerRefundOptions, m as TriggerRefundResponse, n as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, o as VoidAuthorizedPaymentsApplicationErrors, p as PaymentCapture, q as CaptureAuthorizedPaymentsResponse, r as CaptureAuthorizedPaymentsApplicationErrors, s as GetOrderApplicationErrors, t as OrderSearch, u as SearchOrdersResponse, v as CreateOrderOptions, w as CreateOrderApplicationErrors, U as UpdateOrder, x as UpdateOrderApplicationErrors, y as MaskedOrder, z as BulkUpdateOrdersOptions, A as BulkUpdateOrdersResponse, D as CommitDeltasOptions, E as CommitDeltasResponse, F as CommitDeltasApplicationErrors, H as UpdateOrderLineItemIdentifiers, J as UpdateOrderLineItem, K as UpdateOrderLineItemResponse, L as PublicActivity, N as AddActivityResponse, Q as UpdateActivityIdentifiers, W as UpdateActivityResponse, X as DeleteActivityIdentifiers, Y as DeleteActivityResponse, Z as CancelOrderOptions, _ as CancelOrderResponse, $ as CancelOrderApplicationErrors, a0 as OrderStatusWithLiterals, a1 as UpdateOrderStatusResponse, a2 as UpdateOrderStatusApplicationErrors, a3 as AggregateOrdersOptions, a4 as AggregateOrdersResponse, a5 as BulkUpdateOrderTagsOptions, a6 as BulkUpdateOrderTagsResponse, a7 as OrderApprovedEnvelope, a8 as OrderUpdatedEnvelope, a9 as OrderCanceledEnvelope, aa as OrderCreatedEnvelope, ab as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-
|
|
3
|
-
export { df as ActionEvent, aJ as ActionType, iz as ActionTypeWithLiterals, bW as Activity, bX as ActivityContentOneOf, as as ActivityType, ih as ActivityTypeWithLiterals, gG as AddActivitiesRequest, gH as AddActivitiesResponse, gE as AddActivityRequest, gh as AddInternalActivityRequest, gD as AddInternalActivityResponse, cT as AdditionalFee, fL as AdditionalFeeDelta, fM as AdditionalFeeDeltaDeltaOneOf, dK as AdditionalFeeRefund, by as Address, hy as AddressDescription, bA as AddressLocation, bx as AddressWithContact, ah as AdjustmentType, i6 as AdjustmentTypeWithLiterals, hf as AggregateOrdersRequest, eL as AggregatedRefundSummary, eb as ApplicationError, bO as AppliedDiscount, fJ as AppliedDiscountDelta, fK as AppliedDiscountDeltaDeltaOneOf, bP as AppliedDiscountDiscountSourceOneOf, fU as ArchiveOrderRequest, fV as ArchiveOrderResponse, at as AttributionSource, ii as AttributionSourceWithLiterals, eA as AuthorizationActionFailureDetails, ez as AuthorizationCapture, aG as AuthorizationCaptureStatus, iw as AuthorizationCaptureStatusWithLiterals, ey as AuthorizationDetails, eB as AuthorizationVoid, aH as AuthorizationVoidStatus, ix as AuthorizationVoidStatusWithLiterals, cl as AuthorizedPaymentCaptured, ck as AuthorizedPaymentCreated, cm as AuthorizedPaymentVoided, cS as Balance, cR as BalanceSummary, h_ as BaseEventMetadata, f7 as BatchOfTriggerReindexOrderRequest, hI as BigDecimalWrapper, bj as BillingAdjustment, bk as BillingAdjustmentPriceSummary, ec as BulkActionMetadata, fY as BulkArchiveOrdersByFilterRequest, fZ as BulkArchiveOrdersByFilterResponse, fW as BulkArchiveOrdersRequest, fX as BulkArchiveOrdersResponse, d8 as BulkDeleteImportedOrdersRequest, gX as BulkMarkAsFulfilledByFilterRequest, gY as BulkMarkAsFulfilledByFilterResponse, gV as BulkMarkAsFulfilledRequest, gW as BulkMarkAsFulfilledResponse, h1 as BulkMarkAsUnfulfilledByFilterRequest, h2 as BulkMarkAsUnfulfilledByFilterResponse, g$ as BulkMarkAsUnfulfilledRequest, h0 as BulkMarkAsUnfulfilledResponse, e8 as BulkMarkOrdersAsPaidRequest, e9 as BulkOrderResult, dq as BulkSendBuyerPickupConfirmationEmailsRequest, dr as BulkSendBuyerPickupConfirmationEmailsResponse, du as BulkSendBuyerShippingConfirmationEmailsRequest, dv as BulkSendBuyerShippingConfirmationEmailsResponse, h3 as BulkSetBusinessLocationRequest, h4 as BulkSetBusinessLocationResponse, h5 as BulkSetBusinessLocationResult, g2 as BulkUnArchiveOrdersByFilterRequest, g3 as BulkUnArchiveOrdersByFilterResponse, g0 as BulkUnArchiveOrdersRequest, g1 as BulkUnArchiveOrdersResponse, hj as BulkUpdateOrderTagsRequest, hk as BulkUpdateOrderTagsResult, fy as BulkUpdateOrdersRequest, bt as BuyerInfo, bu as BuyerInfoIdOneOf, g5 as BuyerInfoUpdate, eP as CalculateRefundItemRequest, eR as CalculateRefundItemResponse, eO as CalculateRefundRequest, eQ as CalculateRefundResponse, hS as CalculatedTax, hR as CalculatedTaxes, hq as Cancel, gP as CancelOrderRequest, eT as CaptureAuthorizedPaymentsRequest, a$ as CatalogReference, cP as ChannelInfo, au as ChannelType, ij as ChannelTypeWithLiterals, ei as ChargeMembershipsRequest, em as ChargeMembershipsResponse, eU as ChargeSavedPaymentMethodRequest, eV as ChargeSavedPaymentMethodResponse, eD as Chargeback, cL as ChargebackCreated, cM as ChargebackReversed, aK as ChargebackStatus, iA as ChargebackStatusWithLiterals, eh as ChargedBy, b5 as Color, fz as CommitDeltasRequest, fQ as CommittedDiffs, fR as CommittedDiffsShippingUpdateInfoOneOf, hB as CommonAddress, hC as CommonAddressStreetOneOf, iP as CommonSearchWithEntityContext, hA as Company, hp as Complete, bQ as Coupon, fs as CreateOrderRequest, fv as CreateOrderResponse, eg as CreatePaymentGatewayOrderRequest, cN as CreatedBy, cO as CreatedByStringOneOf, cA as CreditCardDetails, ex as CreditCardPaymentMethodDetails, bv as CurrencyConversionDetails, fi as CursorPaging, fr as CursorPagingMetadata, fp as CursorSearch, fq as CursorSearchPagingMethodOneOf, fl as Cursors, bY as CustomActivity, c_ as CustomAllowedActions, cQ as CustomField, aV as CustomFieldGroup, iL as CustomFieldGroupWithLiterals, hX as CustomFieldValue, hv as Customer, hh as DecrementData, hg as DecrementItemsQuantityRequest, hi as DecrementItemsQuantityResponse, e2 as DelayedCaptureSettings, gJ as DeleteActivityRequest, e$ as DeleteByFilterOperation, e_ as DeleteByIdsOperation, bE as DeliveryLogistics, bF as DeliveryLogisticsAddressOneOf, bI as DeliveryTimeSlot, aQ as DeltaPaymentOptionType, iG as DeltaPaymentOptionTypeWithLiterals, hZ as Deposit, aX as DepositType, iN as DepositTypeWithLiterals, b0 as DescriptionLine, b2 as DescriptionLineDescriptionLineValueOneOf, b3 as DescriptionLineName, ac as DescriptionLineType, i1 as DescriptionLineTypeWithLiterals, b1 as DescriptionLineValueOneOf, f9 as DiffmatokyPayload, bd as DigitalFile, hP as Discount, hQ as DiscountOneDiscountTypeOneOf, aq as DiscountReason, ie as DiscountReasonWithLiterals, bT as DiscountRule, bU as DiscountRuleName, ap as DiscountType, id as DiscountTypeWithLiterals, d9 as DomainEvent, da as DomainEventBodyOneOf, gp as DownloadLinkSent, c2 as DraftOrderChangesApplied, fN as DraftOrderCommitSettings, fA as DraftOrderDiffs, fD as DraftOrderDiffsBillingUpdateInfoOneOf, fC as DraftOrderDiffsBuyerUpdateInfoOneOf, fE as DraftOrderDiffsRecipientUpdateInfoOneOf, fB as DraftOrderDiffsShippingUpdateInfoOneOf, e3 as Duration, az as DurationUnit, ip as DurationUnitWithLiterals, hw as Email, gy as EmailEdited, d$ as Empty, db as EntityCreatedEvent, de as EntityDeletedEvent, dd as EntityUpdatedEvent, fa as ErrorInformation, h$ as EventMetadata, bp as ExtendedFields, cI as ExternalReceipt, eH as ExternalReceiptInfo, b6 as FocalPoint, bi as FreeTrialPeriod, gw as FulfillerEmailSent, ak as FulfillmentStatus, gU as FulfillmentStatusUpdated, i9 as FulfillmentStatusWithLiterals, cU as FulfillmentStatusesAggregate, bB as FullAddressContactDetails, fb as GetOrderRequest, fc as GetOrderResponse, e4 as GetPaymentCollectabilityStatusRequest, ed as GetRefundabilityStatusRequest, hd as GetShipmentsRequest, he as GetShipmentsResponse, eE as GiftCardPaymentDetails, cr as GiftCardPaymentRefund, ht as IdAndVersion, dh as IdentificationData, di as IdentificationDataIdOneOf, d6 as ImportOrderRequest, d5 as ImportedOrderDeleted, gi as InternalActivity, gj as InternalActivityContentOneOf, eY as InternalDocument, f0 as InternalDocumentUpdateByFilterOperation, eZ as InternalDocumentUpdateOperation, fd as InternalQueryOrdersRequest, fj as InternalQueryOrdersResponse, f1 as InternalUpdateExistingOperation, aR as InventoryAction, iH as InventoryActionWithLiterals, fO as InventoryUpdateDetails, gu as InvoiceAdded, hF as InvoiceDates, hW as InvoiceDynamicPriceTotals, hu as InvoiceFields, gv as InvoiceSent, hs as InvoiceSentEvent, aY as InvoiceStatus, iO as InvoiceStatusWithLiterals, hU as InvoicesPayment, fI as ItemChangedDetails, ea as ItemMetadata, bs as ItemModifier, ba as ItemTaxFullDetails, b8 as ItemType, ad as ItemTypeItemType, b9 as ItemTypeItemTypeDataOneOf, i2 as ItemTypeItemTypeWithLiterals, hO as ItemizedFee, af as JurisdictionType, i4 as JurisdictionTypeWithLiterals, hH as LineItem, ce as LineItemAmount, c5 as LineItemChanges, fS as LineItemDelta, fT as LineItemDeltaDeltaOneOf, c9 as LineItemDescriptionLineChange, bV as LineItemDiscount, c1 as LineItemExchangeData, hL as LineItemMetaData, ca as LineItemModifiersChange, c7 as LineItemPriceChange, c8 as LineItemProductNameChange, c6 as LineItemQuantityChange, ar as LineItemQuantityChangeType, ig as LineItemQuantityChangeTypeWithLiterals, dJ as LineItemRefund, eN as LineItemRefundSummary, hJ as LineItemTax, bc as LineItemTaxBreakdown, bb as LineItemTaxInfo, gL as LineItemUpdate, hG as LineItems, hM as Locale, cX as Location, bm as LocationAndQuantity, cf as ManagedAdditionalFee, cc as ManagedDiscount, cb as ManagedLineItem, aD as ManuallyRefundableReason, it as ManuallyRefundableReasonWithLiterals, gS as MarkAsFulfilledRequest, gT as MarkAsFulfilledResponse, gZ as MarkAsUnfulfilledRequest, g_ as MarkAsUnfulfilledResponse, e7 as MarkOrderAsPaidRequest, gN as MarkOrderAsSeenByHumanRequest, gO as MarkOrderAsSeenByHumanResponse, gf as MaskedOrderLineItem, ej as MembershipChargeItem, ek as MembershipName, eF as MembershipPaymentDetails, cs as MembershipPaymentRefund, aL as MembershipPaymentStatus, iB as MembershipPaymentStatusWithLiterals, bZ as MerchantComment, bR as MerchantDiscount, bS as MerchantDiscountMerchantDiscountReasonOneOf, dg as MessageEnvelope, hV as MetaData, bq as ModifierGroup, c0 as NewExchangeOrderCreated, aC as NonRefundableReason, is as NonRefundableReasonWithLiterals, av as OrderActionType, ik as OrderActionTypeWithLiterals, aP as OrderApprovalStrategy, iF as OrderApprovalStrategyWithLiterals, c$ as OrderApproved, go as OrderCanceled, gQ as OrderCanceledEventOrderCanceled, c3 as OrderChange, c4 as OrderChangeValueOneOf, fu as OrderCreateNotifications, b$ as OrderCreatedFromExchange, ft as OrderCreationSettings, fP as OrderDeltasCommitted, gm as OrderFulfilled, d4 as OrderImported, d2 as OrderItemsRestocked, aZ as OrderLineItem, fH as OrderLineItemChangedDetails, gn as OrderNotFulfilled, gl as OrderPaid, gA as OrderPartiallyPaid, gB as OrderPending, gk as OrderPlaced, b_ as OrderRefunded, gC as OrderRejected, d1 as OrderRejectedEventOrderRejected, i0 as OrderSearchSpec, cY as OrderSettings, cZ as OrderSettingsAllowedActionsOneOf, ao as OrderStatus, bN as OrderTaxBreakdown, bM as OrderTaxInfo, er as OrderTransactions, d0 as OrdersExperiments, es as Payment, cB as PaymentCanceled, cC as PaymentCanceledPaymentDetailsOneOf, aA as PaymentCollectabilityStatus, iq as PaymentCollectabilityStatusWithLiterals, cD as PaymentDeclined, cE as PaymentDeclinedPaymentDetailsOneOf, ae as PaymentOptionType, i3 as PaymentOptionTypeWithLiterals, et as PaymentPaymentDetailsOneOf, cw as PaymentPending, cx as PaymentPendingPaymentDetailsOneOf, eu as PaymentReceiptInfoOneOf, cu as PaymentRefundFailed, ct as PaymentRefunded, aj as PaymentStatus, h8 as PaymentStatusUpdated, i8 as PaymentStatusWithLiterals, hT as Payments, hz as Phone, b7 as PhysicalProperties, bH as PickupAddress, bG as PickupDetails, an as PickupMethod, ic as PickupMethodWithLiterals, gz as PickupReadyEmailSent, aS as Placement, iI as PlacementWithLiterals, b4 as PlainTextValue, fh as PlatformPaging, fk as PlatformPagingMetadata, fe as PlatformQuery, ff as PlatformQueryPagingMethodOneOf, e0 as PreparePaymentCollectionRequest, dT as PreviewBuyerConfirmationEmailRequest, dU as PreviewBuyerConfirmationEmailResponse, dR as PreviewBuyerPaymentsReceivedEmailRequest, dS as PreviewBuyerPaymentsReceivedEmailResponse, dV as PreviewBuyerPickupConfirmationEmailRequest, dW as PreviewBuyerPickupConfirmationEmailResponse, dN as PreviewCancelEmailRequest, dO as PreviewCancelEmailResponse, dP as PreviewCancelRefundEmailRequest, dQ as PreviewCancelRefundEmailResponse, dE as PreviewEmailByTypeRequest, dF as PreviewEmailByTypeResponse, ax as PreviewEmailType, im as PreviewEmailTypeWithLiterals, dG as PreviewRefundEmailRequest, dM as PreviewRefundEmailResponse, dZ as PreviewResendDownloadLinksEmailRequest, d_ as PreviewResendDownloadLinksEmailResponse, dX as PreviewShippingConfirmationEmailRequest, dY as PreviewShippingConfirmationEmailResponse, bl as PriceDescription, bw as PriceSummary, a_ as ProductName, gF as PublicActivityContentOneOf, fm as QueryOrderRequest, fn as QueryOrderResponse, hx as QuotesAddress, aI as Reason, iy as ReasonWithLiterals, cF as ReceiptCreated, cG as ReceiptCreatedReceiptInfoOneOf, cJ as ReceiptSent, cK as ReceiptSentReceiptInfoOneOf, e5 as RecordManuallyCollectedPaymentRequest, e6 as RecordManuallyCollectedPaymentResponse, e1 as RedirectUrls, eI as Refund, dH as RefundDetails, cn as RefundInitiated, dI as RefundItem, eM as RefundItemsBreakdown, eo as RefundSideEffects, aM as RefundStatus, eK as RefundStatusInfo, iC as RefundStatusWithLiterals, eJ as RefundTransaction, ee as Refundability, ef as RefundabilityAdditionalRefundabilityInfoOneOf, aB as RefundableStatus, ir as RefundableStatusWithLiterals, cv as RefundedAsStoreCredit, co as RefundedPayment, cp as RefundedPaymentKindOneOf, cy as RegularPayment, ev as RegularPaymentDetails, ew as RegularPaymentDetailsPaymentMethodDetailsOneOf, cz as RegularPaymentPaymentMethodDetailsOneOf, cq as RegularPaymentRefund, hr as Reschedule, ep as RestockInfo, eq as RestockItem, aE as RestockType, iu as RestockTypeWithLiterals, dc as RestoreInfo, cj as SavedPaymentMethod, ay as ScheduledAction, io as ScheduledActionWithLiterals, fo as SearchOrdersRequest, dj as SendBuyerConfirmationEmailRequest, dk as SendBuyerConfirmationEmailResponse, dl as SendBuyerPaymentsReceivedEmailRequest, dm as SendBuyerPaymentsReceivedEmailResponse, dn as SendBuyerPickupConfirmationEmailRequest, dp as SendBuyerPickupConfirmationEmailResponse, ds as SendBuyerShippingConfirmationEmailRequest, dt as SendBuyerShippingConfirmationEmailResponse, dy as SendCancelRefundEmailRequest, dz as SendCancelRefundEmailResponse, dw as SendMerchantOrderReceivedNotificationRequest, dx as SendMerchantOrderReceivedNotificationResponse, dC as SendMerchantOrderReceivedPushRequest, dD as SendMerchantOrderReceivedPushResponse, dA as SendRefundEmailRequest, dB as SendRefundEmailResponse, el as ServiceProperties, d7 as SetOrderNumberCounterRequest, gx as ShippingAddressEdited, gt as ShippingConfirmationEmailSent, ci as ShippingInformation, ch as ShippingInformationChange, bJ as ShippingPrice, dL as ShippingRefund, bK as ShippingRegion, aO as SortOrder, iE as SortOrderWithLiterals, fg as Sorting, hK as Source, aU as SourceType, iK as SourceTypeWithLiterals, hE as StandardDetails, bz as StreetAddress, hD as Subdivision, aT as SubdivisionType, iJ as SubdivisionTypeWithLiterals, bg as SubscriptionDescription, ag as SubscriptionFrequency, i5 as SubscriptionFrequencyWithLiterals, be as SubscriptionInfo, bh as SubscriptionSettings, bf as SubscriptionTitle, cW as TagList, cV as Tags, hl as Task, hn as TaskAction, ho as TaskActionActionOneOf, hm as TaskKey, bL as TaxSummary, bn as TaxableAddress, bo as TaxableAddressTaxableAddressDataOneOf, ai as TaxableAddressType, i7 as TaxableAddressTypeWithLiterals, hN as TotalPrice, cg as TotalPriceChange, gs as TrackingLinkAdded, gq as TrackingNumberAdded, gr as TrackingNumberEdited, aF as TransactionStatus, iv as TransactionStatusWithLiterals, br as TranslatableString, cd as TranslatedValue, en as TriggerRefundRequest, f8 as TriggerReindexOrderRequest, f5 as TriggerReindexRequest, f6 as TriggerReindexResponse, f_ as UnArchiveOrderRequest, f$ as UnArchiveOrderResponse, gI as UpdateActivityRequest, gb as UpdateBillingContactDetailsRequest, gc as UpdateBillingContactDetailsResponse, g7 as UpdateBuyerEmailRequest, g8 as UpdateBuyerEmailResponse, g4 as UpdateBuyerInfoRequest, g6 as UpdateBuyerInfoResponse, eW as UpdateInternalDocumentsEvent, eX as UpdateInternalDocumentsEventOperationOneOf, gK as UpdateLineItemsDescriptionLinesRequest, gM as UpdateLineItemsDescriptionLinesResponse, gd as UpdateOrderLineItemRequest, ge as UpdateOrderLineItemsRequest, gg as UpdateOrderLineItemsResponse, fw as UpdateOrderRequest, fx as UpdateOrderResponse, g9 as UpdateOrderShippingAddressRequest, ga as UpdateOrderShippingAddressResponse, gR as UpdateOrderStatusRequest, h9 as V1BulkMarkOrdersAsPaidRequest, ha as V1BulkMarkOrdersAsPaidResponse, hb as V1CreatePaymentGatewayOrderRequest, hc as V1CreatePaymentGatewayOrderResponse, fF as V1LineItemDelta, fG as V1LineItemDeltaDeltaOneOf, h6 as V1MarkOrderAsPaidRequest, h7 as V1MarkOrderAsPaidResponse, d3 as V1RestockItem, eC as V1ScheduledAction, bD as V1ShippingInformation, hY as Value, aW as ValueType, iM as ValueTypeWithLiterals, bC as VatId, am as VatType, ib as VatTypeWithLiterals, f3 as VersionedDeleteByIdsOperation, f4 as VersionedDocumentId, f2 as VersionedDocumentUpdateOperation, aN as VersioningMode, iD as VersioningModeWithLiterals, eS as VoidAuthorizedPaymentsRequest, aw as WebhookIdentityType, il as WebhookIdentityTypeWithLiterals, al as WeightUnit, ia as WeightUnitWithLiterals, cH as WixReceipt, eG as WixReceiptInfo } from './ecom-v1-order-orders.universal-DoCuzcd7.js';
|
|
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 RecordManuallyCollectedPaymentApplicationErrors, M as MarkOrderAsPaidResponse, f as PaymentCollectionMarkOrderAsPaidApplicationErrors, g as BulkMarkOrdersAsPaidResponse, h as GetRefundabilityStatusResponse, i as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, j as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, k as ChargeMembershipsOptions, l as PaymentRefund, T as TriggerRefundOptions, m as TriggerRefundResponse, n as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, o as VoidAuthorizedPaymentsApplicationErrors, p as PaymentCapture, q as CaptureAuthorizedPaymentsResponse, r as CaptureAuthorizedPaymentsApplicationErrors, s as GetOrderApplicationErrors, t as OrderSearch, u as SearchOrdersResponse, v as CreateOrderOptions, w as CreateOrderApplicationErrors, U as UpdateOrder, x as UpdateOrderApplicationErrors, y as MaskedOrder, z as BulkUpdateOrdersOptions, A as BulkUpdateOrdersResponse, D as CommitDeltasOptions, E as CommitDeltasResponse, F as CommitDeltasApplicationErrors, H as UpdateOrderLineItemIdentifiers, J as UpdateOrderLineItem, K as UpdateOrderLineItemResponse, L as PublicActivity, N as AddActivityResponse, Q as UpdateActivityIdentifiers, W as UpdateActivityResponse, X as DeleteActivityIdentifiers, Y as DeleteActivityResponse, Z as CancelOrderOptions, _ as CancelOrderResponse, $ as CancelOrderApplicationErrors, a0 as OrderStatusWithLiterals, a1 as UpdateOrderStatusResponse, a2 as UpdateOrderStatusApplicationErrors, a3 as AggregateOrdersOptions, a4 as AggregateOrdersResponse, a5 as BulkUpdateOrderTagsOptions, a6 as BulkUpdateOrderTagsResponse, a7 as OrderApprovedEnvelope, a8 as OrderUpdatedEnvelope, a9 as OrderCanceledEnvelope, aa as OrderCreatedEnvelope, ab as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-DPJL0zrw.js';
|
|
3
|
+
export { df as ActionEvent, aJ as ActionType, iz as ActionTypeWithLiterals, bW as Activity, bX as ActivityContentOneOf, as as ActivityType, ih as ActivityTypeWithLiterals, gG as AddActivitiesRequest, gH as AddActivitiesResponse, gE as AddActivityRequest, gh as AddInternalActivityRequest, gD as AddInternalActivityResponse, cT as AdditionalFee, fL as AdditionalFeeDelta, fM as AdditionalFeeDeltaDeltaOneOf, dK as AdditionalFeeRefund, by as Address, hy as AddressDescription, bA as AddressLocation, bx as AddressWithContact, ah as AdjustmentType, i6 as AdjustmentTypeWithLiterals, hf as AggregateOrdersRequest, eL as AggregatedRefundSummary, eb as ApplicationError, bO as AppliedDiscount, fJ as AppliedDiscountDelta, fK as AppliedDiscountDeltaDeltaOneOf, bP as AppliedDiscountDiscountSourceOneOf, fU as ArchiveOrderRequest, fV as ArchiveOrderResponse, at as AttributionSource, ii as AttributionSourceWithLiterals, eA as AuthorizationActionFailureDetails, ez as AuthorizationCapture, aG as AuthorizationCaptureStatus, iw as AuthorizationCaptureStatusWithLiterals, ey as AuthorizationDetails, eB as AuthorizationVoid, aH as AuthorizationVoidStatus, ix as AuthorizationVoidStatusWithLiterals, cl as AuthorizedPaymentCaptured, ck as AuthorizedPaymentCreated, cm as AuthorizedPaymentVoided, cS as Balance, cR as BalanceSummary, h_ as BaseEventMetadata, f7 as BatchOfTriggerReindexOrderRequest, hI as BigDecimalWrapper, bj as BillingAdjustment, bk as BillingAdjustmentPriceSummary, ec as BulkActionMetadata, fY as BulkArchiveOrdersByFilterRequest, fZ as BulkArchiveOrdersByFilterResponse, fW as BulkArchiveOrdersRequest, fX as BulkArchiveOrdersResponse, d8 as BulkDeleteImportedOrdersRequest, gX as BulkMarkAsFulfilledByFilterRequest, gY as BulkMarkAsFulfilledByFilterResponse, gV as BulkMarkAsFulfilledRequest, gW as BulkMarkAsFulfilledResponse, h1 as BulkMarkAsUnfulfilledByFilterRequest, h2 as BulkMarkAsUnfulfilledByFilterResponse, g$ as BulkMarkAsUnfulfilledRequest, h0 as BulkMarkAsUnfulfilledResponse, e8 as BulkMarkOrdersAsPaidRequest, e9 as BulkOrderResult, dq as BulkSendBuyerPickupConfirmationEmailsRequest, dr as BulkSendBuyerPickupConfirmationEmailsResponse, du as BulkSendBuyerShippingConfirmationEmailsRequest, dv as BulkSendBuyerShippingConfirmationEmailsResponse, h3 as BulkSetBusinessLocationRequest, h4 as BulkSetBusinessLocationResponse, h5 as BulkSetBusinessLocationResult, g2 as BulkUnArchiveOrdersByFilterRequest, g3 as BulkUnArchiveOrdersByFilterResponse, g0 as BulkUnArchiveOrdersRequest, g1 as BulkUnArchiveOrdersResponse, hj as BulkUpdateOrderTagsRequest, hk as BulkUpdateOrderTagsResult, fy as BulkUpdateOrdersRequest, bt as BuyerInfo, bu as BuyerInfoIdOneOf, g5 as BuyerInfoUpdate, eP as CalculateRefundItemRequest, eR as CalculateRefundItemResponse, eO as CalculateRefundRequest, eQ as CalculateRefundResponse, hS as CalculatedTax, hR as CalculatedTaxes, hq as Cancel, gP as CancelOrderRequest, eT as CaptureAuthorizedPaymentsRequest, a$ as CatalogReference, cP as ChannelInfo, au as ChannelType, ij as ChannelTypeWithLiterals, ei as ChargeMembershipsRequest, em as ChargeMembershipsResponse, eU as ChargeSavedPaymentMethodRequest, eV as ChargeSavedPaymentMethodResponse, eD as Chargeback, cL as ChargebackCreated, cM as ChargebackReversed, aK as ChargebackStatus, iA as ChargebackStatusWithLiterals, eh as ChargedBy, b5 as Color, fz as CommitDeltasRequest, fQ as CommittedDiffs, fR as CommittedDiffsShippingUpdateInfoOneOf, hB as CommonAddress, hC as CommonAddressStreetOneOf, iP as CommonSearchWithEntityContext, hA as Company, hp as Complete, bQ as Coupon, fs as CreateOrderRequest, fv as CreateOrderResponse, eg as CreatePaymentGatewayOrderRequest, cN as CreatedBy, cO as CreatedByStringOneOf, cA as CreditCardDetails, ex as CreditCardPaymentMethodDetails, bv as CurrencyConversionDetails, fi as CursorPaging, fr as CursorPagingMetadata, fp as CursorSearch, fq as CursorSearchPagingMethodOneOf, fl as Cursors, bY as CustomActivity, c_ as CustomAllowedActions, cQ as CustomField, aV as CustomFieldGroup, iL as CustomFieldGroupWithLiterals, hX as CustomFieldValue, hv as Customer, hh as DecrementData, hg as DecrementItemsQuantityRequest, hi as DecrementItemsQuantityResponse, e2 as DelayedCaptureSettings, gJ as DeleteActivityRequest, e$ as DeleteByFilterOperation, e_ as DeleteByIdsOperation, bE as DeliveryLogistics, bF as DeliveryLogisticsAddressOneOf, bI as DeliveryTimeSlot, aQ as DeltaPaymentOptionType, iG as DeltaPaymentOptionTypeWithLiterals, hZ as Deposit, aX as DepositType, iN as DepositTypeWithLiterals, b0 as DescriptionLine, b2 as DescriptionLineDescriptionLineValueOneOf, b3 as DescriptionLineName, ac as DescriptionLineType, i1 as DescriptionLineTypeWithLiterals, b1 as DescriptionLineValueOneOf, f9 as DiffmatokyPayload, bd as DigitalFile, hP as Discount, hQ as DiscountOneDiscountTypeOneOf, aq as DiscountReason, ie as DiscountReasonWithLiterals, bT as DiscountRule, bU as DiscountRuleName, ap as DiscountType, id as DiscountTypeWithLiterals, d9 as DomainEvent, da as DomainEventBodyOneOf, gp as DownloadLinkSent, c2 as DraftOrderChangesApplied, fN as DraftOrderCommitSettings, fA as DraftOrderDiffs, fD as DraftOrderDiffsBillingUpdateInfoOneOf, fC as DraftOrderDiffsBuyerUpdateInfoOneOf, fE as DraftOrderDiffsRecipientUpdateInfoOneOf, fB as DraftOrderDiffsShippingUpdateInfoOneOf, e3 as Duration, az as DurationUnit, ip as DurationUnitWithLiterals, hw as Email, gy as EmailEdited, d$ as Empty, db as EntityCreatedEvent, de as EntityDeletedEvent, dd as EntityUpdatedEvent, fa as ErrorInformation, h$ as EventMetadata, bp as ExtendedFields, cI as ExternalReceipt, eH as ExternalReceiptInfo, b6 as FocalPoint, bi as FreeTrialPeriod, gw as FulfillerEmailSent, ak as FulfillmentStatus, gU as FulfillmentStatusUpdated, i9 as FulfillmentStatusWithLiterals, cU as FulfillmentStatusesAggregate, bB as FullAddressContactDetails, fb as GetOrderRequest, fc as GetOrderResponse, e4 as GetPaymentCollectabilityStatusRequest, ed as GetRefundabilityStatusRequest, hd as GetShipmentsRequest, he as GetShipmentsResponse, eE as GiftCardPaymentDetails, cr as GiftCardPaymentRefund, ht as IdAndVersion, dh as IdentificationData, di as IdentificationDataIdOneOf, d6 as ImportOrderRequest, d5 as ImportedOrderDeleted, gi as InternalActivity, gj as InternalActivityContentOneOf, eY as InternalDocument, f0 as InternalDocumentUpdateByFilterOperation, eZ as InternalDocumentUpdateOperation, fd as InternalQueryOrdersRequest, fj as InternalQueryOrdersResponse, f1 as InternalUpdateExistingOperation, aR as InventoryAction, iH as InventoryActionWithLiterals, fO as InventoryUpdateDetails, gu as InvoiceAdded, hF as InvoiceDates, hW as InvoiceDynamicPriceTotals, hu as InvoiceFields, gv as InvoiceSent, hs as InvoiceSentEvent, aY as InvoiceStatus, iO as InvoiceStatusWithLiterals, hU as InvoicesPayment, fI as ItemChangedDetails, ea as ItemMetadata, bs as ItemModifier, ba as ItemTaxFullDetails, b8 as ItemType, b9 as ItemTypeItemTypeDataOneOf, ad as ItemTypePreset, i2 as ItemTypePresetWithLiterals, hO as ItemizedFee, af as JurisdictionType, i4 as JurisdictionTypeWithLiterals, hH as LineItem, ce as LineItemAmount, c5 as LineItemChanges, fS as LineItemDelta, fT as LineItemDeltaDeltaOneOf, c9 as LineItemDescriptionLineChange, bV as LineItemDiscount, c1 as LineItemExchangeData, hL as LineItemMetaData, ca as LineItemModifiersChange, c7 as LineItemPriceChange, c8 as LineItemProductNameChange, c6 as LineItemQuantityChange, ar as LineItemQuantityChangeType, ig as LineItemQuantityChangeTypeWithLiterals, dJ as LineItemRefund, eN as LineItemRefundSummary, hJ as LineItemTax, bc as LineItemTaxBreakdown, bb as LineItemTaxInfo, gL as LineItemUpdate, hG as LineItems, hM as Locale, cX as Location, bm as LocationAndQuantity, cf as ManagedAdditionalFee, cc as ManagedDiscount, cb as ManagedLineItem, aD as ManuallyRefundableReason, it as ManuallyRefundableReasonWithLiterals, gS as MarkAsFulfilledRequest, gT as MarkAsFulfilledResponse, gZ as MarkAsUnfulfilledRequest, g_ as MarkAsUnfulfilledResponse, e7 as MarkOrderAsPaidRequest, gN as MarkOrderAsSeenByHumanRequest, gO as MarkOrderAsSeenByHumanResponse, gf as MaskedOrderLineItem, ej as MembershipChargeItem, ek as MembershipName, eF as MembershipPaymentDetails, cs as MembershipPaymentRefund, aL as MembershipPaymentStatus, iB as MembershipPaymentStatusWithLiterals, bZ as MerchantComment, bR as MerchantDiscount, bS as MerchantDiscountMerchantDiscountReasonOneOf, dg as MessageEnvelope, hV as MetaData, bq as ModifierGroup, c0 as NewExchangeOrderCreated, aC as NonRefundableReason, is as NonRefundableReasonWithLiterals, av as OrderActionType, ik as OrderActionTypeWithLiterals, aP as OrderApprovalStrategy, iF as OrderApprovalStrategyWithLiterals, c$ as OrderApproved, go as OrderCanceled, gQ as OrderCanceledEventOrderCanceled, c3 as OrderChange, c4 as OrderChangeValueOneOf, fu as OrderCreateNotifications, b$ as OrderCreatedFromExchange, ft as OrderCreationSettings, fP as OrderDeltasCommitted, gm as OrderFulfilled, d4 as OrderImported, d2 as OrderItemsRestocked, aZ as OrderLineItem, fH as OrderLineItemChangedDetails, gn as OrderNotFulfilled, gl as OrderPaid, gA as OrderPartiallyPaid, gB as OrderPending, gk as OrderPlaced, b_ as OrderRefunded, gC as OrderRejected, d1 as OrderRejectedEventOrderRejected, i0 as OrderSearchSpec, cY as OrderSettings, cZ as OrderSettingsAllowedActionsOneOf, ao as OrderStatus, bN as OrderTaxBreakdown, bM as OrderTaxInfo, er as OrderTransactions, d0 as OrdersExperiments, es as Payment, cB as PaymentCanceled, cC as PaymentCanceledPaymentDetailsOneOf, aA as PaymentCollectabilityStatus, iq as PaymentCollectabilityStatusWithLiterals, cD as PaymentDeclined, cE as PaymentDeclinedPaymentDetailsOneOf, ae as PaymentOptionType, i3 as PaymentOptionTypeWithLiterals, et as PaymentPaymentDetailsOneOf, cw as PaymentPending, cx as PaymentPendingPaymentDetailsOneOf, eu as PaymentReceiptInfoOneOf, cu as PaymentRefundFailed, ct as PaymentRefunded, aj as PaymentStatus, h8 as PaymentStatusUpdated, i8 as PaymentStatusWithLiterals, hT as Payments, hz as Phone, b7 as PhysicalProperties, bH as PickupAddress, bG as PickupDetails, an as PickupMethod, ic as PickupMethodWithLiterals, gz as PickupReadyEmailSent, aS as Placement, iI as PlacementWithLiterals, b4 as PlainTextValue, fh as PlatformPaging, fk as PlatformPagingMetadata, fe as PlatformQuery, ff as PlatformQueryPagingMethodOneOf, e0 as PreparePaymentCollectionRequest, dT as PreviewBuyerConfirmationEmailRequest, dU as PreviewBuyerConfirmationEmailResponse, dR as PreviewBuyerPaymentsReceivedEmailRequest, dS as PreviewBuyerPaymentsReceivedEmailResponse, dV as PreviewBuyerPickupConfirmationEmailRequest, dW as PreviewBuyerPickupConfirmationEmailResponse, dN as PreviewCancelEmailRequest, dO as PreviewCancelEmailResponse, dP as PreviewCancelRefundEmailRequest, dQ as PreviewCancelRefundEmailResponse, dE as PreviewEmailByTypeRequest, dF as PreviewEmailByTypeResponse, ax as PreviewEmailType, im as PreviewEmailTypeWithLiterals, dG as PreviewRefundEmailRequest, dM as PreviewRefundEmailResponse, dZ as PreviewResendDownloadLinksEmailRequest, d_ as PreviewResendDownloadLinksEmailResponse, dX as PreviewShippingConfirmationEmailRequest, dY as PreviewShippingConfirmationEmailResponse, bl as PriceDescription, bw as PriceSummary, a_ as ProductName, gF as PublicActivityContentOneOf, fm as QueryOrderRequest, fn as QueryOrderResponse, hx as QuotesAddress, aI as Reason, iy as ReasonWithLiterals, cF as ReceiptCreated, cG as ReceiptCreatedReceiptInfoOneOf, cJ as ReceiptSent, cK as ReceiptSentReceiptInfoOneOf, e5 as RecordManuallyCollectedPaymentRequest, e6 as RecordManuallyCollectedPaymentResponse, e1 as RedirectUrls, eI as Refund, dH as RefundDetails, cn as RefundInitiated, dI as RefundItem, eM as RefundItemsBreakdown, eo as RefundSideEffects, aM as RefundStatus, eK as RefundStatusInfo, iC as RefundStatusWithLiterals, eJ as RefundTransaction, ee as Refundability, ef as RefundabilityAdditionalRefundabilityInfoOneOf, aB as RefundableStatus, ir as RefundableStatusWithLiterals, cv as RefundedAsStoreCredit, co as RefundedPayment, cp as RefundedPaymentKindOneOf, cy as RegularPayment, ev as RegularPaymentDetails, ew as RegularPaymentDetailsPaymentMethodDetailsOneOf, cz as RegularPaymentPaymentMethodDetailsOneOf, cq as RegularPaymentRefund, hr as Reschedule, ep as RestockInfo, eq as RestockItem, aE as RestockType, iu as RestockTypeWithLiterals, dc as RestoreInfo, cj as SavedPaymentMethod, ay as ScheduledAction, io as ScheduledActionWithLiterals, fo as SearchOrdersRequest, dj as SendBuyerConfirmationEmailRequest, dk as SendBuyerConfirmationEmailResponse, dl as SendBuyerPaymentsReceivedEmailRequest, dm as SendBuyerPaymentsReceivedEmailResponse, dn as SendBuyerPickupConfirmationEmailRequest, dp as SendBuyerPickupConfirmationEmailResponse, ds as SendBuyerShippingConfirmationEmailRequest, dt as SendBuyerShippingConfirmationEmailResponse, dy as SendCancelRefundEmailRequest, dz as SendCancelRefundEmailResponse, dw as SendMerchantOrderReceivedNotificationRequest, dx as SendMerchantOrderReceivedNotificationResponse, dC as SendMerchantOrderReceivedPushRequest, dD as SendMerchantOrderReceivedPushResponse, dA as SendRefundEmailRequest, dB as SendRefundEmailResponse, el as ServiceProperties, d7 as SetOrderNumberCounterRequest, gx as ShippingAddressEdited, gt as ShippingConfirmationEmailSent, ci as ShippingInformation, ch as ShippingInformationChange, bJ as ShippingPrice, dL as ShippingRefund, bK as ShippingRegion, aO as SortOrder, iE as SortOrderWithLiterals, fg as Sorting, hK as Source, aU as SourceType, iK as SourceTypeWithLiterals, hE as StandardDetails, bz as StreetAddress, hD as Subdivision, aT as SubdivisionType, iJ as SubdivisionTypeWithLiterals, bg as SubscriptionDescription, ag as SubscriptionFrequency, i5 as SubscriptionFrequencyWithLiterals, be as SubscriptionInfo, bh as SubscriptionSettings, bf as SubscriptionTitle, cW as TagList, cV as Tags, hl as Task, hn as TaskAction, ho as TaskActionActionOneOf, hm as TaskKey, bL as TaxSummary, bn as TaxableAddress, bo as TaxableAddressTaxableAddressDataOneOf, ai as TaxableAddressType, i7 as TaxableAddressTypeWithLiterals, hN as TotalPrice, cg as TotalPriceChange, gs as TrackingLinkAdded, gq as TrackingNumberAdded, gr as TrackingNumberEdited, aF as TransactionStatus, iv as TransactionStatusWithLiterals, br as TranslatableString, cd as TranslatedValue, en as TriggerRefundRequest, f8 as TriggerReindexOrderRequest, f5 as TriggerReindexRequest, f6 as TriggerReindexResponse, f_ as UnArchiveOrderRequest, f$ as UnArchiveOrderResponse, gI as UpdateActivityRequest, gb as UpdateBillingContactDetailsRequest, gc as UpdateBillingContactDetailsResponse, g7 as UpdateBuyerEmailRequest, g8 as UpdateBuyerEmailResponse, g4 as UpdateBuyerInfoRequest, g6 as UpdateBuyerInfoResponse, eW as UpdateInternalDocumentsEvent, eX as UpdateInternalDocumentsEventOperationOneOf, gK as UpdateLineItemsDescriptionLinesRequest, gM as UpdateLineItemsDescriptionLinesResponse, gd as UpdateOrderLineItemRequest, ge as UpdateOrderLineItemsRequest, gg as UpdateOrderLineItemsResponse, fw as UpdateOrderRequest, fx as UpdateOrderResponse, g9 as UpdateOrderShippingAddressRequest, ga as UpdateOrderShippingAddressResponse, gR as UpdateOrderStatusRequest, h9 as V1BulkMarkOrdersAsPaidRequest, ha as V1BulkMarkOrdersAsPaidResponse, hb as V1CreatePaymentGatewayOrderRequest, hc as V1CreatePaymentGatewayOrderResponse, fF as V1LineItemDelta, fG as V1LineItemDeltaDeltaOneOf, h6 as V1MarkOrderAsPaidRequest, h7 as V1MarkOrderAsPaidResponse, d3 as V1RestockItem, eC as V1ScheduledAction, bD as V1ShippingInformation, hY as Value, aW as ValueType, iM as ValueTypeWithLiterals, bC as VatId, am as VatType, ib as VatTypeWithLiterals, f3 as VersionedDeleteByIdsOperation, f4 as VersionedDocumentId, f2 as VersionedDocumentUpdateOperation, aN as VersioningMode, iD as VersioningModeWithLiterals, eS as VoidAuthorizedPaymentsRequest, aw as WebhookIdentityType, il as WebhookIdentityTypeWithLiterals, al as WeightUnit, ia as WeightUnitWithLiterals, cH as WixReceipt, eG as WixReceiptInfo } from './ecom-v1-order-orders.universal-DPJL0zrw.js';
|
|
4
4
|
|
|
5
5
|
/** @internal */
|
|
6
6
|
declare function importOrder$1(httpClient: HttpClient): ImportOrderSignature;
|
|
@@ -38,7 +38,7 @@ __export(index_exports, {
|
|
|
38
38
|
FulfillmentStatus: () => FulfillmentStatus,
|
|
39
39
|
InventoryAction: () => InventoryAction,
|
|
40
40
|
InvoiceStatus: () => InvoiceStatus,
|
|
41
|
-
|
|
41
|
+
ItemTypePreset: () => ItemTypePreset,
|
|
42
42
|
JurisdictionType: () => JurisdictionType,
|
|
43
43
|
LineItemQuantityChangeType: () => LineItemQuantityChangeType,
|
|
44
44
|
ManuallyRefundableReason: () => ManuallyRefundableReason,
|
|
@@ -1815,14 +1815,14 @@ var DescriptionLineType = /* @__PURE__ */ ((DescriptionLineType2) => {
|
|
|
1815
1815
|
DescriptionLineType2["COLOR"] = "COLOR";
|
|
1816
1816
|
return DescriptionLineType2;
|
|
1817
1817
|
})(DescriptionLineType || {});
|
|
1818
|
-
var
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
return
|
|
1825
|
-
})(
|
|
1818
|
+
var ItemTypePreset = /* @__PURE__ */ ((ItemTypePreset2) => {
|
|
1819
|
+
ItemTypePreset2["UNRECOGNISED"] = "UNRECOGNISED";
|
|
1820
|
+
ItemTypePreset2["PHYSICAL"] = "PHYSICAL";
|
|
1821
|
+
ItemTypePreset2["DIGITAL"] = "DIGITAL";
|
|
1822
|
+
ItemTypePreset2["GIFT_CARD"] = "GIFT_CARD";
|
|
1823
|
+
ItemTypePreset2["SERVICE"] = "SERVICE";
|
|
1824
|
+
return ItemTypePreset2;
|
|
1825
|
+
})(ItemTypePreset || {});
|
|
1826
1826
|
var PaymentOptionType = /* @__PURE__ */ ((PaymentOptionType2) => {
|
|
1827
1827
|
PaymentOptionType2["FULL_PAYMENT_ONLINE"] = "FULL_PAYMENT_ONLINE";
|
|
1828
1828
|
PaymentOptionType2["FULL_PAYMENT_OFFLINE"] = "FULL_PAYMENT_OFFLINE";
|
|
@@ -3888,7 +3888,7 @@ var onOrderPaymentStatusUpdated2 = (0, import_event_definition_modules.createEve
|
|
|
3888
3888
|
FulfillmentStatus,
|
|
3889
3889
|
InventoryAction,
|
|
3890
3890
|
InvoiceStatus,
|
|
3891
|
-
|
|
3891
|
+
ItemTypePreset,
|
|
3892
3892
|
JurisdictionType,
|
|
3893
3893
|
LineItemQuantityChangeType,
|
|
3894
3894
|
ManuallyRefundableReason,
|