@wix/auto_sdk_ecom_orders 1.0.115 → 1.0.117
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-Ddm4dxmW.d.ts} +12 -3
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +10 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +10 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +14 -5
- package/build/cjs/meta.js +10 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-CzvHFP5d.d.mts → ecom-v1-order-orders.universal-Ddm4dxmW.d.mts} +12 -3
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +9 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +9 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +14 -5
- package/build/es/meta.mjs +9 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-BDp0QNCM.d.ts → ecom-v1-order-orders.universal-Cuz_H2fQ.d.ts} +18 -3
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +10 -0
- 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 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +14 -5
- package/build/internal/cjs/meta.js +10 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{ecom-v1-order-orders.universal-BDp0QNCM.d.mts → ecom-v1-order-orders.universal-Cuz_H2fQ.d.mts} +18 -3
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +9 -0
- 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 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +14 -5
- package/build/internal/es/meta.mjs +9 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -488,14 +488,14 @@ 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
|
}
|
|
@@ -4595,6 +4595,15 @@ interface TriggerReindexOrderRequest {
|
|
|
4595
4595
|
*/
|
|
4596
4596
|
orderId?: string;
|
|
4597
4597
|
}
|
|
4598
|
+
declare enum ItemTypePreset {
|
|
4599
|
+
UNRECOGNISED = "UNRECOGNISED",
|
|
4600
|
+
PHYSICAL = "PHYSICAL",
|
|
4601
|
+
DIGITAL = "DIGITAL",
|
|
4602
|
+
GIFT_CARD = "GIFT_CARD",
|
|
4603
|
+
SERVICE = "SERVICE"
|
|
4604
|
+
}
|
|
4605
|
+
/** @enumType */
|
|
4606
|
+
type ItemTypePresetWithLiterals = ItemTypePreset | 'UNRECOGNISED' | 'PHYSICAL' | 'DIGITAL' | 'GIFT_CARD' | 'SERVICE';
|
|
4598
4607
|
interface DiffmatokyPayload {
|
|
4599
4608
|
left?: string;
|
|
4600
4609
|
right?: string;
|
|
@@ -5099,6 +5108,12 @@ interface OrderLineItemChangedDetails {
|
|
|
5099
5108
|
* @maxLength 64
|
|
5100
5109
|
*/
|
|
5101
5110
|
externalLineItemId?: string | null;
|
|
5111
|
+
/**
|
|
5112
|
+
* Item's price amount to be charged during checkout. Relevant for items with a `paymentOption` value of `"DEPOSIT_ONLINE"`.
|
|
5113
|
+
* @internal
|
|
5114
|
+
* @readonly
|
|
5115
|
+
*/
|
|
5116
|
+
depositAmount?: Price;
|
|
5102
5117
|
}
|
|
5103
5118
|
/** Type of selected payment option for catalog item */
|
|
5104
5119
|
declare enum DeltaPaymentOptionType {
|
|
@@ -8093,4 +8108,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
8093
8108
|
unassignTags?: Tags;
|
|
8094
8109
|
}
|
|
8095
8110
|
|
|
8096
|
-
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 };
|
|
8111
|
+
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 ProductName 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, ItemTypePreset as aO, SortOrder as aP, OrderApprovalStrategy as aQ, DeltaPaymentOptionType as aR, InventoryAction as aS, Placement as aT, SubdivisionType as aU, SourceType as aV, CustomFieldGroup as aW, ValueType as aX, DepositType as aY, InvoiceStatus as aZ, type OrderLineItem 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 OrderRefunded as b$, type CatalogReference as b0, type DescriptionLine as b1, type DescriptionLineValueOneOf as b2, type DescriptionLineDescriptionLineValueOneOf as b3, type DescriptionLineName as b4, type PlainTextValue as b5, type Color as b6, type FocalPoint as b7, type PhysicalProperties as b8, type ItemType as b9, type StreetAddress as bA, type AddressLocation as bB, type FullAddressContactDetails as bC, type VatId as bD, type V1ShippingInformation as bE, type DeliveryLogistics as bF, type DeliveryLogisticsAddressOneOf as bG, type PickupDetails as bH, type PickupAddress as bI, type DeliveryTimeSlot as bJ, type ShippingPrice as bK, type ShippingRegion as bL, type TaxSummary as bM, type OrderTaxInfo as bN, type OrderTaxBreakdown as bO, type AppliedDiscount as bP, type AppliedDiscountDiscountSourceOneOf as bQ, type Coupon as bR, type MerchantDiscount as bS, type MerchantDiscountMerchantDiscountReasonOneOf as bT, type DiscountRule as bU, type DiscountRuleName as bV, type LineItemDiscount as bW, type Activity as bX, type ActivityContentOneOf as bY, type CustomActivity as bZ, type MerchantComment as b_, type ItemTypeItemTypeDataOneOf as ba, type ItemTaxFullDetails as bb, type LineItemTaxInfo as bc, type LineItemTaxBreakdown as bd, type DigitalFile as be, type SubscriptionInfo as bf, type SubscriptionTitle as bg, type SubscriptionDescription as bh, type SubscriptionSettings as bi, type FreeTrialPeriod as bj, type BillingAdjustment as bk, type BillingAdjustmentPriceSummary as bl, type PriceDescription as bm, type LocationAndQuantity as bn, type TaxableAddress as bo, type TaxableAddressTaxableAddressDataOneOf as bp, type ExtendedFields as bq, type ModifierGroup as br, type TranslatableString as bs, type ItemModifier as bt, type BuyerInfo as bu, type BuyerInfoIdOneOf as bv, type CurrencyConversionDetails as bw, type PriceSummary as bx, type AddressWithContact as by, type Address as bz, type PreparePaymentCollectionOptions as c, type CustomAllowedActions as c$, type OrderCreatedFromExchange as c0, type NewExchangeOrderCreated as c1, type LineItemExchangeData as c2, type DraftOrderChangesApplied as c3, type OrderChange as c4, type OrderChangeValueOneOf as c5, type LineItemChanges as c6, type LineItemQuantityChange as c7, type LineItemPriceChange as c8, type LineItemProductNameChange as c9, type RegularPaymentPaymentMethodDetailsOneOf as cA, type CreditCardDetails as cB, type PaymentCanceled as cC, type PaymentCanceledPaymentDetailsOneOf as cD, type PaymentDeclined as cE, type PaymentDeclinedPaymentDetailsOneOf as cF, type ReceiptCreated as cG, type ReceiptCreatedReceiptInfoOneOf as cH, type WixReceipt as cI, type ExternalReceipt as cJ, type ReceiptSent as cK, type ReceiptSentReceiptInfoOneOf as cL, type ChargebackCreated as cM, type ChargebackReversed as cN, type CreatedBy as cO, type CreatedByStringOneOf as cP, type ChannelInfo as cQ, type CustomField as cR, type BalanceSummary as cS, type Balance as cT, type AdditionalFee as cU, type FulfillmentStatusesAggregate as cV, type Tags as cW, type TagList as cX, type Location as cY, type OrderSettings as cZ, type OrderSettingsAllowedActionsOneOf as c_, type LineItemDescriptionLineChange as ca, type LineItemModifiersChange as cb, type ManagedLineItem as cc, type ManagedDiscount as cd, type TranslatedValue as ce, type LineItemAmount as cf, type ManagedAdditionalFee as cg, type TotalPriceChange as ch, type ShippingInformationChange as ci, type ShippingInformation as cj, type SavedPaymentMethod as ck, type AuthorizedPaymentCreated as cl, type AuthorizedPaymentCaptured as cm, type AuthorizedPaymentVoided as cn, type RefundInitiated as co, type RefundedPayment as cp, type RefundedPaymentKindOneOf as cq, type RegularPaymentRefund as cr, type GiftCardPaymentRefund as cs, type MembershipPaymentRefund as ct, type PaymentRefunded as cu, type PaymentRefundFailed as cv, type RefundedAsStoreCredit as cw, type PaymentPending as cx, type PaymentPendingPaymentDetailsOneOf as cy, type RegularPayment as cz, type PreparePaymentCollectionResponse as d, type PreviewResendDownloadLinksEmailResponse as d$, type OrderApproved as d0, type OrdersExperiments as d1, type OrderRejectedEventOrderRejected as d2, type OrderItemsRestocked as d3, type V1RestockItem as d4, type OrderImported as d5, type ImportedOrderDeleted as d6, type ImportOrderRequest as d7, type SetOrderNumberCounterRequest as d8, type BulkDeleteImportedOrdersRequest as d9, type SendCancelRefundEmailResponse as dA, type SendRefundEmailRequest as dB, type SendRefundEmailResponse as dC, type SendMerchantOrderReceivedPushRequest as dD, type SendMerchantOrderReceivedPushResponse as dE, type PreviewEmailByTypeRequest as dF, type PreviewEmailByTypeResponse as dG, type PreviewRefundEmailRequest as dH, type RefundDetails as dI, type RefundItem as dJ, type LineItemRefund as dK, type AdditionalFeeRefund as dL, type ShippingRefund as dM, type PreviewRefundEmailResponse as dN, type PreviewCancelEmailRequest as dO, type PreviewCancelEmailResponse as dP, type PreviewCancelRefundEmailRequest as dQ, type PreviewCancelRefundEmailResponse as dR, type PreviewBuyerPaymentsReceivedEmailRequest as dS, type PreviewBuyerPaymentsReceivedEmailResponse as dT, type PreviewBuyerConfirmationEmailRequest as dU, type PreviewBuyerConfirmationEmailResponse as dV, type PreviewBuyerPickupConfirmationEmailRequest as dW, type PreviewBuyerPickupConfirmationEmailResponse as dX, type PreviewShippingConfirmationEmailRequest as dY, type PreviewShippingConfirmationEmailResponse as dZ, type PreviewResendDownloadLinksEmailRequest as d_, type DomainEvent as da, type DomainEventBodyOneOf as db, type EntityCreatedEvent as dc, type RestoreInfo as dd, type EntityUpdatedEvent as de, type EntityDeletedEvent as df, type ActionEvent as dg, type MessageEnvelope as dh, type IdentificationData as di, type IdentificationDataIdOneOf as dj, type SendBuyerConfirmationEmailRequest as dk, type SendBuyerConfirmationEmailResponse as dl, type SendBuyerPaymentsReceivedEmailRequest as dm, type SendBuyerPaymentsReceivedEmailResponse as dn, type SendBuyerPickupConfirmationEmailRequest as dp, type SendBuyerPickupConfirmationEmailResponse as dq, type BulkSendBuyerPickupConfirmationEmailsRequest as dr, type BulkSendBuyerPickupConfirmationEmailsResponse as ds, type SendBuyerShippingConfirmationEmailRequest as dt, type SendBuyerShippingConfirmationEmailResponse as du, type BulkSendBuyerShippingConfirmationEmailsRequest as dv, type BulkSendBuyerShippingConfirmationEmailsResponse as dw, type SendMerchantOrderReceivedNotificationRequest as dx, type SendMerchantOrderReceivedNotificationResponse as dy, type SendCancelRefundEmailRequest as dz, type PreparePaymentCollectionApplicationErrors as e, type DeleteByIdsOperation as e$, type Empty as e0, type PreparePaymentCollectionRequest as e1, type RedirectUrls as e2, type DelayedCaptureSettings as e3, type Duration as e4, type GetPaymentCollectabilityStatusRequest as e5, type RecordManuallyCollectedPaymentRequest as e6, type RecordManuallyCollectedPaymentResponse as e7, type MarkOrderAsPaidRequest as e8, type BulkMarkOrdersAsPaidRequest as e9, type AuthorizationCapture as eA, type AuthorizationActionFailureDetails as eB, type AuthorizationVoid as eC, type V1ScheduledAction as eD, type Chargeback as eE, type GiftCardPaymentDetails as eF, type MembershipPaymentDetails as eG, type WixReceiptInfo as eH, type ExternalReceiptInfo as eI, type Refund as eJ, type RefundTransaction as eK, type RefundStatusInfo as eL, type AggregatedRefundSummary as eM, type RefundItemsBreakdown as eN, type LineItemRefundSummary as eO, type CalculateRefundRequest as eP, type CalculateRefundItemRequest as eQ, type CalculateRefundResponse as eR, type CalculateRefundItemResponse as eS, type VoidAuthorizedPaymentsRequest as eT, type CaptureAuthorizedPaymentsRequest as eU, type ChargeSavedPaymentMethodRequest as eV, type ChargeSavedPaymentMethodResponse as eW, type UpdateInternalDocumentsEvent as eX, type UpdateInternalDocumentsEventOperationOneOf as eY, type InternalDocument as eZ, type InternalDocumentUpdateOperation as e_, type BulkOrderResult as ea, type ItemMetadata as eb, type ApplicationError as ec, type BulkActionMetadata as ed, type GetRefundabilityStatusRequest as ee, type Refundability as ef, type RefundabilityAdditionalRefundabilityInfoOneOf as eg, type CreatePaymentGatewayOrderRequest as eh, type ChargedBy as ei, type ChargeMembershipsRequest as ej, type MembershipChargeItem as ek, type MembershipName as el, type ServiceProperties as em, type ChargeMembershipsResponse as en, type TriggerRefundRequest as eo, type RefundSideEffects as ep, type RestockInfo as eq, type RestockItem as er, type OrderTransactions as es, type Payment as et, type PaymentPaymentDetailsOneOf as eu, type PaymentReceiptInfoOneOf as ev, type RegularPaymentDetails as ew, type RegularPaymentDetailsPaymentMethodDetailsOneOf as ex, type CreditCardPaymentMethodDetails as ey, type AuthorizationDetails as ez, type PaymentCollectionMarkOrderAsPaidApplicationErrors as f, type UnArchiveOrderRequest as f$, type DeleteByFilterOperation as f0, type InternalDocumentUpdateByFilterOperation as f1, type InternalUpdateExistingOperation as f2, type VersionedDocumentUpdateOperation as f3, type VersionedDeleteByIdsOperation as f4, type VersionedDocumentId as f5, type TriggerReindexRequest as f6, type TriggerReindexResponse as f7, type BatchOfTriggerReindexOrderRequest as f8, type TriggerReindexOrderRequest as f9, type CommitDeltasRequest as fA, type DraftOrderDiffs as fB, type DraftOrderDiffsShippingUpdateInfoOneOf as fC, type DraftOrderDiffsBuyerUpdateInfoOneOf as fD, type DraftOrderDiffsBillingUpdateInfoOneOf as fE, type DraftOrderDiffsRecipientUpdateInfoOneOf as fF, type V1LineItemDelta as fG, type V1LineItemDeltaDeltaOneOf as fH, type OrderLineItemChangedDetails as fI, type ItemChangedDetails as fJ, type AppliedDiscountDelta as fK, type AppliedDiscountDeltaDeltaOneOf as fL, type AdditionalFeeDelta as fM, type AdditionalFeeDeltaDeltaOneOf as fN, type DraftOrderCommitSettings as fO, type InventoryUpdateDetails as fP, type OrderDeltasCommitted as fQ, type CommittedDiffs as fR, type CommittedDiffsShippingUpdateInfoOneOf as fS, type LineItemDelta as fT, type LineItemDeltaDeltaOneOf as fU, type ArchiveOrderRequest as fV, type ArchiveOrderResponse as fW, type BulkArchiveOrdersRequest as fX, type BulkArchiveOrdersResponse as fY, type BulkArchiveOrdersByFilterRequest as fZ, type BulkArchiveOrdersByFilterResponse as f_, type DiffmatokyPayload as fa, type ErrorInformation as fb, type GetOrderRequest as fc, type GetOrderResponse as fd, type InternalQueryOrdersRequest as fe, type PlatformQuery as ff, type PlatformQueryPagingMethodOneOf as fg, type Sorting as fh, type PlatformPaging as fi, type CursorPaging as fj, type InternalQueryOrdersResponse as fk, type PlatformPagingMetadata as fl, type Cursors as fm, type QueryOrderRequest as fn, type QueryOrderResponse as fo, type SearchOrdersRequest as fp, type CursorSearch as fq, type CursorSearchPagingMethodOneOf as fr, type CursorPagingMetadata as fs, type CreateOrderRequest as ft, type OrderCreationSettings as fu, type OrderCreateNotifications as fv, type CreateOrderResponse as fw, type UpdateOrderRequest as fx, type UpdateOrderResponse as fy, type BulkUpdateOrdersRequest as fz, type BulkMarkOrdersAsPaidResponse as g, type MarkAsUnfulfilledResponse as g$, type UnArchiveOrderResponse as g0, type BulkUnArchiveOrdersRequest as g1, type BulkUnArchiveOrdersResponse as g2, type BulkUnArchiveOrdersByFilterRequest as g3, type BulkUnArchiveOrdersByFilterResponse as g4, type UpdateBuyerInfoRequest as g5, type BuyerInfoUpdate as g6, type UpdateBuyerInfoResponse as g7, type UpdateBuyerEmailRequest as g8, type UpdateBuyerEmailResponse as g9, type PickupReadyEmailSent as gA, type OrderPartiallyPaid as gB, type OrderPending as gC, type OrderRejected as gD, type AddInternalActivityResponse as gE, type AddActivityRequest as gF, type PublicActivityContentOneOf as gG, type AddActivitiesRequest as gH, type AddActivitiesResponse as gI, type UpdateActivityRequest as gJ, type DeleteActivityRequest as gK, type UpdateLineItemsDescriptionLinesRequest as gL, type LineItemUpdate as gM, type UpdateLineItemsDescriptionLinesResponse as gN, type MarkOrderAsSeenByHumanRequest as gO, type MarkOrderAsSeenByHumanResponse as gP, type CancelOrderRequest as gQ, type OrderCanceledEventOrderCanceled as gR, type UpdateOrderStatusRequest as gS, type MarkAsFulfilledRequest as gT, type MarkAsFulfilledResponse as gU, type FulfillmentStatusUpdated as gV, type BulkMarkAsFulfilledRequest as gW, type BulkMarkAsFulfilledResponse as gX, type BulkMarkAsFulfilledByFilterRequest as gY, type BulkMarkAsFulfilledByFilterResponse as gZ, type MarkAsUnfulfilledRequest as g_, type UpdateOrderShippingAddressRequest as ga, type UpdateOrderShippingAddressResponse as gb, type UpdateBillingContactDetailsRequest as gc, type UpdateBillingContactDetailsResponse as gd, type UpdateOrderLineItemRequest as ge, type UpdateOrderLineItemsRequest as gf, type MaskedOrderLineItem as gg, type UpdateOrderLineItemsResponse as gh, type AddInternalActivityRequest as gi, type InternalActivity as gj, type InternalActivityContentOneOf as gk, type OrderPlaced as gl, type OrderPaid as gm, type OrderFulfilled as gn, type OrderNotFulfilled as go, type OrderCanceled as gp, type DownloadLinkSent as gq, type TrackingNumberAdded as gr, type TrackingNumberEdited as gs, type TrackingLinkAdded as gt, type ShippingConfirmationEmailSent as gu, type InvoiceAdded as gv, type InvoiceSent as gw, type FulfillerEmailSent as gx, type ShippingAddressEdited as gy, type EmailEdited as gz, type GetRefundabilityStatusResponse as h, type BaseEventMetadata as h$, type BulkMarkAsUnfulfilledRequest as h0, type BulkMarkAsUnfulfilledResponse as h1, type BulkMarkAsUnfulfilledByFilterRequest as h2, type BulkMarkAsUnfulfilledByFilterResponse as h3, type BulkSetBusinessLocationRequest as h4, type BulkSetBusinessLocationResponse as h5, type BulkSetBusinessLocationResult as h6, type V1MarkOrderAsPaidRequest as h7, type V1MarkOrderAsPaidResponse as h8, type PaymentStatusUpdated as h9, type Phone as hA, type Company as hB, type CommonAddress as hC, type CommonAddressStreetOneOf as hD, type Subdivision as hE, type StandardDetails as hF, type InvoiceDates as hG, type LineItems as hH, type LineItem as hI, type BigDecimalWrapper as hJ, type LineItemTax as hK, type Source as hL, type LineItemMetaData as hM, type Locale as hN, type TotalPrice as hO, type ItemizedFee as hP, type Discount as hQ, type DiscountOneDiscountTypeOneOf as hR, type CalculatedTaxes as hS, type CalculatedTax as hT, type Payments as hU, type InvoicesPayment as hV, type MetaData as hW, type InvoiceDynamicPriceTotals as hX, type CustomFieldValue as hY, type Value as hZ, type Deposit as h_, type V1BulkMarkOrdersAsPaidRequest as ha, type V1BulkMarkOrdersAsPaidResponse as hb, type V1CreatePaymentGatewayOrderRequest as hc, type V1CreatePaymentGatewayOrderResponse as hd, type GetShipmentsRequest as he, type GetShipmentsResponse as hf, type AggregateOrdersRequest as hg, type DecrementItemsQuantityRequest as hh, type DecrementData as hi, type DecrementItemsQuantityResponse as hj, type BulkUpdateOrderTagsRequest as hk, type BulkUpdateOrderTagsResult as hl, type Task as hm, type TaskKey as hn, type TaskAction as ho, type TaskActionActionOneOf as hp, type Complete as hq, type Cancel as hr, type Reschedule as hs, type InvoiceSentEvent as ht, type IdAndVersion as hu, type InvoiceFields as hv, type Customer as hw, type Email as hx, type QuotesAddress as hy, type AddressDescription as hz, type PaymentCollectionCreatePaymentGatewayOrderOptions as i, getPaymentCollectabilityStatus as i$, type EventMetadata as i0, type OrderSearchSpec as i1, type DescriptionLineTypeWithLiterals as i2, type ItemTypeItemTypeWithLiterals as i3, type PaymentOptionTypeWithLiterals as i4, type JurisdictionTypeWithLiterals as i5, type SubscriptionFrequencyWithLiterals as i6, type AdjustmentTypeWithLiterals as i7, type TaxableAddressTypeWithLiterals as i8, type PaymentStatusWithLiterals as i9, type ActionTypeWithLiterals as iA, type ChargebackStatusWithLiterals as iB, type MembershipPaymentStatusWithLiterals as iC, type RefundStatusWithLiterals as iD, type VersioningModeWithLiterals as iE, type ItemTypePresetWithLiterals as iF, type SortOrderWithLiterals as iG, type OrderApprovalStrategyWithLiterals as iH, type DeltaPaymentOptionTypeWithLiterals as iI, type InventoryActionWithLiterals as iJ, type PlacementWithLiterals as iK, type SubdivisionTypeWithLiterals as iL, type SourceTypeWithLiterals as iM, type CustomFieldGroupWithLiterals as iN, type ValueTypeWithLiterals as iO, type DepositTypeWithLiterals as iP, type InvoiceStatusWithLiterals as iQ, type CommonSearchWithEntityContext as iR, onOrderApproved as iS, onOrderUpdated as iT, onOrderCanceled as iU, onOrderCreated as iV, onOrderPaymentStatusUpdated as iW, importOrder as iX, setOrderNumberCounter as iY, bulkDeleteImportedOrders as iZ, preparePaymentCollection as i_, type FulfillmentStatusWithLiterals as ia, type WeightUnitWithLiterals as ib, type VatTypeWithLiterals as ic, type PickupMethodWithLiterals as id, type DiscountTypeWithLiterals as ie, type DiscountReasonWithLiterals as ig, type LineItemQuantityChangeTypeWithLiterals as ih, type ActivityTypeWithLiterals as ii, type AttributionSourceWithLiterals as ij, type ChannelTypeWithLiterals as ik, type OrderActionTypeWithLiterals as il, type WebhookIdentityTypeWithLiterals as im, type PreviewEmailTypeWithLiterals as io, type ScheduledActionWithLiterals as ip, type DurationUnitWithLiterals as iq, type PaymentCollectabilityStatusWithLiterals as ir, type RefundableStatusWithLiterals as is, type NonRefundableReasonWithLiterals as it, type ManuallyRefundableReasonWithLiterals as iu, type RestockTypeWithLiterals as iv, type TransactionStatusWithLiterals as iw, type AuthorizationCaptureStatusWithLiterals as ix, type AuthorizationVoidStatusWithLiterals as iy, type ReasonWithLiterals as iz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as j, recordManuallyCollectedPayment as j0, paymentCollectionMarkOrderAsPaid as j1, paymentCollectionBulkMarkOrdersAsPaid as j2, getRefundabilityStatus as j3, paymentCollectionCreatePaymentGatewayOrder as j4, chargeMemberships as j5, triggerRefund as j6, voidAuthorizedPayments as j7, captureAuthorizedPayments as j8, getOrder as j9, createOrder as ja, updateOrder as jb, bulkUpdateOrders as jc, commitDeltas as jd, updateOrderLineItem as je, addActivity as jf, updateActivity as jg, deleteActivity as jh, cancelOrder as ji, updateOrderStatus as jj, aggregateOrders as jk, bulkUpdateOrderTags as jl, 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-BDp0QNCM.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 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-Cuz_H2fQ.mjs';
|
|
3
|
+
export { dg as ActionEvent, aJ as ActionType, iA as ActionTypeWithLiterals, bX as Activity, bY as ActivityContentOneOf, as as ActivityType, ii as ActivityTypeWithLiterals, gH as AddActivitiesRequest, gI as AddActivitiesResponse, gF as AddActivityRequest, gi as AddInternalActivityRequest, gE as AddInternalActivityResponse, cU as AdditionalFee, fM as AdditionalFeeDelta, fN as AdditionalFeeDeltaDeltaOneOf, dL as AdditionalFeeRefund, bz as Address, hz as AddressDescription, bB as AddressLocation, by as AddressWithContact, ah as AdjustmentType, i7 as AdjustmentTypeWithLiterals, hg as AggregateOrdersRequest, eM as AggregatedRefundSummary, ec as ApplicationError, bP as AppliedDiscount, fK as AppliedDiscountDelta, fL as AppliedDiscountDeltaDeltaOneOf, bQ as AppliedDiscountDiscountSourceOneOf, fV as ArchiveOrderRequest, fW as ArchiveOrderResponse, at as AttributionSource, ij as AttributionSourceWithLiterals, eB as AuthorizationActionFailureDetails, eA as AuthorizationCapture, aG as AuthorizationCaptureStatus, ix as AuthorizationCaptureStatusWithLiterals, ez as AuthorizationDetails, eC as AuthorizationVoid, aH as AuthorizationVoidStatus, iy as AuthorizationVoidStatusWithLiterals, cm as AuthorizedPaymentCaptured, cl as AuthorizedPaymentCreated, cn as AuthorizedPaymentVoided, cT as Balance, cS as BalanceSummary, h$ as BaseEventMetadata, f8 as BatchOfTriggerReindexOrderRequest, hJ as BigDecimalWrapper, bk as BillingAdjustment, bl as BillingAdjustmentPriceSummary, ed as BulkActionMetadata, fZ as BulkArchiveOrdersByFilterRequest, f_ as BulkArchiveOrdersByFilterResponse, fX as BulkArchiveOrdersRequest, fY as BulkArchiveOrdersResponse, d9 as BulkDeleteImportedOrdersRequest, gY as BulkMarkAsFulfilledByFilterRequest, gZ as BulkMarkAsFulfilledByFilterResponse, gW as BulkMarkAsFulfilledRequest, gX as BulkMarkAsFulfilledResponse, h2 as BulkMarkAsUnfulfilledByFilterRequest, h3 as BulkMarkAsUnfulfilledByFilterResponse, h0 as BulkMarkAsUnfulfilledRequest, h1 as BulkMarkAsUnfulfilledResponse, e9 as BulkMarkOrdersAsPaidRequest, ea as BulkOrderResult, dr as BulkSendBuyerPickupConfirmationEmailsRequest, ds as BulkSendBuyerPickupConfirmationEmailsResponse, dv as BulkSendBuyerShippingConfirmationEmailsRequest, dw as BulkSendBuyerShippingConfirmationEmailsResponse, h4 as BulkSetBusinessLocationRequest, h5 as BulkSetBusinessLocationResponse, h6 as BulkSetBusinessLocationResult, g3 as BulkUnArchiveOrdersByFilterRequest, g4 as BulkUnArchiveOrdersByFilterResponse, g1 as BulkUnArchiveOrdersRequest, g2 as BulkUnArchiveOrdersResponse, hk as BulkUpdateOrderTagsRequest, hl as BulkUpdateOrderTagsResult, fz as BulkUpdateOrdersRequest, bu as BuyerInfo, bv as BuyerInfoIdOneOf, g6 as BuyerInfoUpdate, eQ as CalculateRefundItemRequest, eS as CalculateRefundItemResponse, eP as CalculateRefundRequest, eR as CalculateRefundResponse, hT as CalculatedTax, hS as CalculatedTaxes, hr as Cancel, gQ as CancelOrderRequest, eU as CaptureAuthorizedPaymentsRequest, b0 as CatalogReference, cQ as ChannelInfo, au as ChannelType, ik as ChannelTypeWithLiterals, ej as ChargeMembershipsRequest, en as ChargeMembershipsResponse, eV as ChargeSavedPaymentMethodRequest, eW as ChargeSavedPaymentMethodResponse, eE as Chargeback, cM as ChargebackCreated, cN as ChargebackReversed, aK as ChargebackStatus, iB as ChargebackStatusWithLiterals, ei as ChargedBy, b6 as Color, fA as CommitDeltasRequest, fR as CommittedDiffs, fS as CommittedDiffsShippingUpdateInfoOneOf, hC as CommonAddress, hD as CommonAddressStreetOneOf, iR as CommonSearchWithEntityContext, hB as Company, hq as Complete, bR as Coupon, ft as CreateOrderRequest, fw as CreateOrderResponse, eh as CreatePaymentGatewayOrderRequest, cO as CreatedBy, cP as CreatedByStringOneOf, cB as CreditCardDetails, ey as CreditCardPaymentMethodDetails, bw as CurrencyConversionDetails, fj as CursorPaging, fs as CursorPagingMetadata, fq as CursorSearch, fr as CursorSearchPagingMethodOneOf, fm as Cursors, bZ as CustomActivity, c$ as CustomAllowedActions, cR as CustomField, aW as CustomFieldGroup, iN as CustomFieldGroupWithLiterals, hY as CustomFieldValue, hw as Customer, hi as DecrementData, hh as DecrementItemsQuantityRequest, hj as DecrementItemsQuantityResponse, e3 as DelayedCaptureSettings, gK as DeleteActivityRequest, f0 as DeleteByFilterOperation, e$ as DeleteByIdsOperation, bF as DeliveryLogistics, bG as DeliveryLogisticsAddressOneOf, bJ as DeliveryTimeSlot, aR as DeltaPaymentOptionType, iI as DeltaPaymentOptionTypeWithLiterals, h_ as Deposit, aY as DepositType, iP as DepositTypeWithLiterals, b1 as DescriptionLine, b3 as DescriptionLineDescriptionLineValueOneOf, b4 as DescriptionLineName, ac as DescriptionLineType, i2 as DescriptionLineTypeWithLiterals, b2 as DescriptionLineValueOneOf, fa as DiffmatokyPayload, be as DigitalFile, hQ as Discount, hR as DiscountOneDiscountTypeOneOf, aq as DiscountReason, ig as DiscountReasonWithLiterals, bU as DiscountRule, bV as DiscountRuleName, ap as DiscountType, ie as DiscountTypeWithLiterals, da as DomainEvent, db as DomainEventBodyOneOf, gq as DownloadLinkSent, c3 as DraftOrderChangesApplied, fO as DraftOrderCommitSettings, fB as DraftOrderDiffs, fE as DraftOrderDiffsBillingUpdateInfoOneOf, fD as DraftOrderDiffsBuyerUpdateInfoOneOf, fF as DraftOrderDiffsRecipientUpdateInfoOneOf, fC as DraftOrderDiffsShippingUpdateInfoOneOf, e4 as Duration, az as DurationUnit, iq as DurationUnitWithLiterals, hx as Email, gz as EmailEdited, e0 as Empty, dc as EntityCreatedEvent, df as EntityDeletedEvent, de as EntityUpdatedEvent, fb as ErrorInformation, i0 as EventMetadata, bq as ExtendedFields, cJ as ExternalReceipt, eI as ExternalReceiptInfo, b7 as FocalPoint, bj as FreeTrialPeriod, gx as FulfillerEmailSent, ak as FulfillmentStatus, gV as FulfillmentStatusUpdated, ia as FulfillmentStatusWithLiterals, cV as FulfillmentStatusesAggregate, bC as FullAddressContactDetails, fc as GetOrderRequest, fd as GetOrderResponse, e5 as GetPaymentCollectabilityStatusRequest, ee as GetRefundabilityStatusRequest, he as GetShipmentsRequest, hf as GetShipmentsResponse, eF as GiftCardPaymentDetails, cs as GiftCardPaymentRefund, hu as IdAndVersion, di as IdentificationData, dj as IdentificationDataIdOneOf, d7 as ImportOrderRequest, d6 as ImportedOrderDeleted, gj as InternalActivity, gk as InternalActivityContentOneOf, eZ as InternalDocument, f1 as InternalDocumentUpdateByFilterOperation, e_ as InternalDocumentUpdateOperation, fe as InternalQueryOrdersRequest, fk as InternalQueryOrdersResponse, f2 as InternalUpdateExistingOperation, aS as InventoryAction, iJ as InventoryActionWithLiterals, fP as InventoryUpdateDetails, gv as InvoiceAdded, hG as InvoiceDates, hX as InvoiceDynamicPriceTotals, hv as InvoiceFields, gw as InvoiceSent, ht as InvoiceSentEvent, aZ as InvoiceStatus, iQ as InvoiceStatusWithLiterals, hV as InvoicesPayment, fJ as ItemChangedDetails, eb as ItemMetadata, bt as ItemModifier, bb as ItemTaxFullDetails, b9 as ItemType, ad as ItemTypeItemType, ba as ItemTypeItemTypeDataOneOf, i3 as ItemTypeItemTypeWithLiterals, aO as ItemTypePreset, iF as ItemTypePresetWithLiterals, hP as ItemizedFee, af as JurisdictionType, i5 as JurisdictionTypeWithLiterals, hI as LineItem, cf as LineItemAmount, c6 as LineItemChanges, fT as LineItemDelta, fU as LineItemDeltaDeltaOneOf, ca as LineItemDescriptionLineChange, bW as LineItemDiscount, c2 as LineItemExchangeData, hM as LineItemMetaData, cb as LineItemModifiersChange, c8 as LineItemPriceChange, c9 as LineItemProductNameChange, c7 as LineItemQuantityChange, ar as LineItemQuantityChangeType, ih as LineItemQuantityChangeTypeWithLiterals, dK as LineItemRefund, eO as LineItemRefundSummary, hK as LineItemTax, bd as LineItemTaxBreakdown, bc as LineItemTaxInfo, gM as LineItemUpdate, hH as LineItems, hN as Locale, cY as Location, bn as LocationAndQuantity, cg as ManagedAdditionalFee, cd as ManagedDiscount, cc as ManagedLineItem, aD as ManuallyRefundableReason, iu as ManuallyRefundableReasonWithLiterals, gT as MarkAsFulfilledRequest, gU as MarkAsFulfilledResponse, g_ as MarkAsUnfulfilledRequest, g$ as MarkAsUnfulfilledResponse, e8 as MarkOrderAsPaidRequest, gO as MarkOrderAsSeenByHumanRequest, gP as MarkOrderAsSeenByHumanResponse, gg as MaskedOrderLineItem, ek as MembershipChargeItem, el as MembershipName, eG as MembershipPaymentDetails, ct as MembershipPaymentRefund, aL as MembershipPaymentStatus, iC as MembershipPaymentStatusWithLiterals, b_ as MerchantComment, bS as MerchantDiscount, bT as MerchantDiscountMerchantDiscountReasonOneOf, dh as MessageEnvelope, hW as MetaData, br as ModifierGroup, c1 as NewExchangeOrderCreated, aC as NonRefundableReason, it as NonRefundableReasonWithLiterals, av as OrderActionType, il as OrderActionTypeWithLiterals, aQ as OrderApprovalStrategy, iH as OrderApprovalStrategyWithLiterals, d0 as OrderApproved, gp as OrderCanceled, gR as OrderCanceledEventOrderCanceled, c4 as OrderChange, c5 as OrderChangeValueOneOf, fv as OrderCreateNotifications, c0 as OrderCreatedFromExchange, fu as OrderCreationSettings, fQ as OrderDeltasCommitted, gn as OrderFulfilled, d5 as OrderImported, d3 as OrderItemsRestocked, a_ as OrderLineItem, fI as OrderLineItemChangedDetails, go as OrderNotFulfilled, gm as OrderPaid, gB as OrderPartiallyPaid, gC as OrderPending, gl as OrderPlaced, b$ as OrderRefunded, gD as OrderRejected, d2 as OrderRejectedEventOrderRejected, i1 as OrderSearchSpec, cZ as OrderSettings, c_ as OrderSettingsAllowedActionsOneOf, ao as OrderStatus, bO as OrderTaxBreakdown, bN as OrderTaxInfo, es as OrderTransactions, d1 as OrdersExperiments, et as Payment, cC as PaymentCanceled, cD as PaymentCanceledPaymentDetailsOneOf, aA as PaymentCollectabilityStatus, ir as PaymentCollectabilityStatusWithLiterals, cE as PaymentDeclined, cF as PaymentDeclinedPaymentDetailsOneOf, ae as PaymentOptionType, i4 as PaymentOptionTypeWithLiterals, eu as PaymentPaymentDetailsOneOf, cx as PaymentPending, cy as PaymentPendingPaymentDetailsOneOf, ev as PaymentReceiptInfoOneOf, cv as PaymentRefundFailed, cu as PaymentRefunded, aj as PaymentStatus, h9 as PaymentStatusUpdated, i9 as PaymentStatusWithLiterals, hU as Payments, hA as Phone, b8 as PhysicalProperties, bI as PickupAddress, bH as PickupDetails, an as PickupMethod, id as PickupMethodWithLiterals, gA as PickupReadyEmailSent, aT as Placement, iK as PlacementWithLiterals, b5 as PlainTextValue, fi as PlatformPaging, fl as PlatformPagingMetadata, ff as PlatformQuery, fg as PlatformQueryPagingMethodOneOf, e1 as PreparePaymentCollectionRequest, dU as PreviewBuyerConfirmationEmailRequest, dV as PreviewBuyerConfirmationEmailResponse, dS as PreviewBuyerPaymentsReceivedEmailRequest, dT as PreviewBuyerPaymentsReceivedEmailResponse, dW as PreviewBuyerPickupConfirmationEmailRequest, dX as PreviewBuyerPickupConfirmationEmailResponse, dO as PreviewCancelEmailRequest, dP as PreviewCancelEmailResponse, dQ as PreviewCancelRefundEmailRequest, dR as PreviewCancelRefundEmailResponse, dF as PreviewEmailByTypeRequest, dG as PreviewEmailByTypeResponse, ax as PreviewEmailType, io as PreviewEmailTypeWithLiterals, dH as PreviewRefundEmailRequest, dN as PreviewRefundEmailResponse, d_ as PreviewResendDownloadLinksEmailRequest, d$ as PreviewResendDownloadLinksEmailResponse, dY as PreviewShippingConfirmationEmailRequest, dZ as PreviewShippingConfirmationEmailResponse, bm as PriceDescription, bx as PriceSummary, a$ as ProductName, gG as PublicActivityContentOneOf, fn as QueryOrderRequest, fo as QueryOrderResponse, hy as QuotesAddress, aI as Reason, iz as ReasonWithLiterals, cG as ReceiptCreated, cH as ReceiptCreatedReceiptInfoOneOf, cK as ReceiptSent, cL as ReceiptSentReceiptInfoOneOf, e6 as RecordManuallyCollectedPaymentRequest, e7 as RecordManuallyCollectedPaymentResponse, e2 as RedirectUrls, eJ as Refund, dI as RefundDetails, co as RefundInitiated, dJ as RefundItem, eN as RefundItemsBreakdown, ep as RefundSideEffects, aM as RefundStatus, eL as RefundStatusInfo, iD as RefundStatusWithLiterals, eK as RefundTransaction, ef as Refundability, eg as RefundabilityAdditionalRefundabilityInfoOneOf, aB as RefundableStatus, is as RefundableStatusWithLiterals, cw as RefundedAsStoreCredit, cp as RefundedPayment, cq as RefundedPaymentKindOneOf, cz as RegularPayment, ew as RegularPaymentDetails, ex as RegularPaymentDetailsPaymentMethodDetailsOneOf, cA as RegularPaymentPaymentMethodDetailsOneOf, cr as RegularPaymentRefund, hs as Reschedule, eq as RestockInfo, er as RestockItem, aE as RestockType, iv as RestockTypeWithLiterals, dd as RestoreInfo, ck as SavedPaymentMethod, ay as ScheduledAction, ip as ScheduledActionWithLiterals, fp as SearchOrdersRequest, dk as SendBuyerConfirmationEmailRequest, dl as SendBuyerConfirmationEmailResponse, dm as SendBuyerPaymentsReceivedEmailRequest, dn as SendBuyerPaymentsReceivedEmailResponse, dp as SendBuyerPickupConfirmationEmailRequest, dq as SendBuyerPickupConfirmationEmailResponse, dt as SendBuyerShippingConfirmationEmailRequest, du as SendBuyerShippingConfirmationEmailResponse, dz as SendCancelRefundEmailRequest, dA as SendCancelRefundEmailResponse, dx as SendMerchantOrderReceivedNotificationRequest, dy as SendMerchantOrderReceivedNotificationResponse, dD as SendMerchantOrderReceivedPushRequest, dE as SendMerchantOrderReceivedPushResponse, dB as SendRefundEmailRequest, dC as SendRefundEmailResponse, em as ServiceProperties, d8 as SetOrderNumberCounterRequest, gy as ShippingAddressEdited, gu as ShippingConfirmationEmailSent, cj as ShippingInformation, ci as ShippingInformationChange, bK as ShippingPrice, dM as ShippingRefund, bL as ShippingRegion, aP as SortOrder, iG as SortOrderWithLiterals, fh as Sorting, hL as Source, aV as SourceType, iM as SourceTypeWithLiterals, hF as StandardDetails, bA as StreetAddress, hE as Subdivision, aU as SubdivisionType, iL as SubdivisionTypeWithLiterals, bh as SubscriptionDescription, ag as SubscriptionFrequency, i6 as SubscriptionFrequencyWithLiterals, bf as SubscriptionInfo, bi as SubscriptionSettings, bg as SubscriptionTitle, cX as TagList, cW as Tags, hm as Task, ho as TaskAction, hp as TaskActionActionOneOf, hn as TaskKey, bM as TaxSummary, bo as TaxableAddress, bp as TaxableAddressTaxableAddressDataOneOf, ai as TaxableAddressType, i8 as TaxableAddressTypeWithLiterals, hO as TotalPrice, ch as TotalPriceChange, gt as TrackingLinkAdded, gr as TrackingNumberAdded, gs as TrackingNumberEdited, aF as TransactionStatus, iw as TransactionStatusWithLiterals, bs as TranslatableString, ce as TranslatedValue, eo as TriggerRefundRequest, f9 as TriggerReindexOrderRequest, f6 as TriggerReindexRequest, f7 as TriggerReindexResponse, f$ as UnArchiveOrderRequest, g0 as UnArchiveOrderResponse, gJ as UpdateActivityRequest, gc as UpdateBillingContactDetailsRequest, gd as UpdateBillingContactDetailsResponse, g8 as UpdateBuyerEmailRequest, g9 as UpdateBuyerEmailResponse, g5 as UpdateBuyerInfoRequest, g7 as UpdateBuyerInfoResponse, eX as UpdateInternalDocumentsEvent, eY as UpdateInternalDocumentsEventOperationOneOf, gL as UpdateLineItemsDescriptionLinesRequest, gN as UpdateLineItemsDescriptionLinesResponse, ge as UpdateOrderLineItemRequest, gf as UpdateOrderLineItemsRequest, gh as UpdateOrderLineItemsResponse, fx as UpdateOrderRequest, fy as UpdateOrderResponse, ga as UpdateOrderShippingAddressRequest, gb as UpdateOrderShippingAddressResponse, gS as UpdateOrderStatusRequest, ha as V1BulkMarkOrdersAsPaidRequest, hb as V1BulkMarkOrdersAsPaidResponse, hc as V1CreatePaymentGatewayOrderRequest, hd as V1CreatePaymentGatewayOrderResponse, fG as V1LineItemDelta, fH as V1LineItemDeltaDeltaOneOf, h7 as V1MarkOrderAsPaidRequest, h8 as V1MarkOrderAsPaidResponse, d4 as V1RestockItem, eD as V1ScheduledAction, bE as V1ShippingInformation, hZ as Value, aX as ValueType, iO as ValueTypeWithLiterals, bD as VatId, am as VatType, ic as VatTypeWithLiterals, f4 as VersionedDeleteByIdsOperation, f5 as VersionedDocumentId, f3 as VersionedDocumentUpdateOperation, aN as VersioningMode, iE as VersioningModeWithLiterals, eT as VoidAuthorizedPaymentsRequest, aw as WebhookIdentityType, im as WebhookIdentityTypeWithLiterals, al as WeightUnit, ib as WeightUnitWithLiterals, cI as WixReceipt, eH as WixReceiptInfo } from './ecom-v1-order-orders.universal-Cuz_H2fQ.mjs';
|
|
4
4
|
|
|
5
5
|
/** @internal */
|
|
6
6
|
declare function importOrder$1(httpClient: HttpClient): ImportOrderSignature;
|
|
@@ -2046,6 +2046,14 @@ var VersioningMode = /* @__PURE__ */ ((VersioningMode2) => {
|
|
|
2046
2046
|
VersioningMode2["GREATER_OR_EQUAL"] = "GREATER_OR_EQUAL";
|
|
2047
2047
|
return VersioningMode2;
|
|
2048
2048
|
})(VersioningMode || {});
|
|
2049
|
+
var ItemTypePreset = /* @__PURE__ */ ((ItemTypePreset2) => {
|
|
2050
|
+
ItemTypePreset2["UNRECOGNISED"] = "UNRECOGNISED";
|
|
2051
|
+
ItemTypePreset2["PHYSICAL"] = "PHYSICAL";
|
|
2052
|
+
ItemTypePreset2["DIGITAL"] = "DIGITAL";
|
|
2053
|
+
ItemTypePreset2["GIFT_CARD"] = "GIFT_CARD";
|
|
2054
|
+
ItemTypePreset2["SERVICE"] = "SERVICE";
|
|
2055
|
+
return ItemTypePreset2;
|
|
2056
|
+
})(ItemTypePreset || {});
|
|
2049
2057
|
var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
|
|
2050
2058
|
SortOrder2["ASC"] = "ASC";
|
|
2051
2059
|
SortOrder2["DESC"] = "DESC";
|
|
@@ -3784,6 +3792,7 @@ export {
|
|
|
3784
3792
|
InventoryAction,
|
|
3785
3793
|
InvoiceStatus,
|
|
3786
3794
|
ItemTypeItemType,
|
|
3795
|
+
ItemTypePreset,
|
|
3787
3796
|
JurisdictionType,
|
|
3788
3797
|
LineItemQuantityChangeType,
|
|
3789
3798
|
ManuallyRefundableReason,
|