@wix/auto_sdk_ecom_orders 1.0.229 → 1.0.231
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-CEuPzBjg.d.ts → ecom-v1-order-orders.universal-D6FY2-Jb.d.ts} +2 -12
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +6 -8
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +4 -6
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +2 -2
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-CEuPzBjg.d.mts → ecom-v1-order-orders.universal-D6FY2-Jb.d.mts} +2 -12
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +6 -8
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +4 -6
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +2 -2
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-CeXWha4g.d.ts → ecom-v1-order-orders.universal-QJ_VV3kp.d.ts} +6 -21
- package/build/internal/cjs/index.d.ts +6 -4
- package/build/internal/cjs/index.js +6 -8
- 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 +4 -6
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +2 -2
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{ecom-v1-order-orders.universal-CeXWha4g.d.mts → ecom-v1-order-orders.universal-QJ_VV3kp.d.mts} +6 -21
- package/build/internal/es/index.d.mts +6 -4
- package/build/internal/es/index.mjs +6 -8
- 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 +4 -6
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +2 -2
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -3679,7 +3679,7 @@ interface BulkDeleteImportedOrdersRequest {
|
|
|
3679
3679
|
* @minSize 1
|
|
3680
3680
|
* @maxSize 1000
|
|
3681
3681
|
*/
|
|
3682
|
-
orderIds
|
|
3682
|
+
orderIds: string[];
|
|
3683
3683
|
}
|
|
3684
3684
|
interface BulkDeleteImportedOrdersResponse {
|
|
3685
3685
|
/**
|
|
@@ -6306,14 +6306,6 @@ interface OrderCreationSettings extends OrderCreationSettingsEditableByOneOf {
|
|
|
6306
6306
|
orderApprovalStrategy?: OrderApprovalStrategyWithLiterals;
|
|
6307
6307
|
/** Notification settings to be applied on order creation */
|
|
6308
6308
|
notifications?: OrderCreateNotifications;
|
|
6309
|
-
/**
|
|
6310
|
-
* Whether to automatically generate an invoice when this order will be PAID.
|
|
6311
|
-
* If `false`, no invoice is auto-generated for this order.
|
|
6312
|
-
*
|
|
6313
|
-
* Default: `true`
|
|
6314
|
-
* @internal
|
|
6315
|
-
*/
|
|
6316
|
-
createInvoice?: boolean | null;
|
|
6317
6309
|
}
|
|
6318
6310
|
/** @oneof */
|
|
6319
6311
|
interface OrderCreationSettingsEditableByOneOf {
|
|
@@ -8404,22 +8396,15 @@ interface SetOrderNumberCounterOptions {
|
|
|
8404
8396
|
/**
|
|
8405
8397
|
* Bulk deletes previously imported orders. Only works on orders
|
|
8406
8398
|
* that were created through the import process.
|
|
8399
|
+
* @param orderIds - List of order ids to be deleted.
|
|
8400
|
+
* Only orders imported via ImportOrders API can be deleted.
|
|
8407
8401
|
* @internal
|
|
8408
8402
|
* @documentationMaturity preview
|
|
8403
|
+
* @requiredField orderIds
|
|
8409
8404
|
* @permissionId ecom:v1:order:imports:bulk_delete_imported_orders
|
|
8410
8405
|
* @fqn com.wix.ecom.orders.importer.v1.OrderImports.BulkDeleteImportedOrders
|
|
8411
8406
|
*/
|
|
8412
|
-
declare function bulkDeleteImportedOrders(
|
|
8413
|
-
interface BulkDeleteImportedOrdersOptions {
|
|
8414
|
-
/**
|
|
8415
|
-
* List of order ids to be deleted.
|
|
8416
|
-
* Only orders imported via ImportOrders API can be deleted.
|
|
8417
|
-
* @format GUID
|
|
8418
|
-
* @minSize 1
|
|
8419
|
-
* @maxSize 1000
|
|
8420
|
-
*/
|
|
8421
|
-
orderIds?: string[];
|
|
8422
|
-
}
|
|
8407
|
+
declare function bulkDeleteImportedOrders(orderIds: string[]): Promise<NonNullablePaths<BulkDeleteImportedOrdersResponse, `jobId`, 2>>;
|
|
8423
8408
|
/**
|
|
8424
8409
|
* Prepares payment collection for given ecom order. This is the first of 2-step process of payment collection.
|
|
8425
8410
|
* Here we ensure that payment collection is possible for given order and store and prepare payment gateway order for future charge.
|
|
@@ -9507,4 +9492,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
9507
9492
|
unassignTags?: TagsTags;
|
|
9508
9493
|
}
|
|
9509
9494
|
|
|
9510
|
-
export { type CancelOrderResponse as $, type MaskedOrder as A, type BulkDeleteImportedOrdersOptions as B, type CreatePaymentGatewayOrderResponse as C, type BulkUpdateOrdersOptions as D, type BulkUpdateOrdersResponse as E, type UpdateOrderLineItemIdentifiers as F, type GetPaymentCollectabilityStatusResponse as G, type UpdateOrderLineItem as H, type ImportOrderResponse as I, type UpdateOrderLineItemResponse as J, type PublicActivity as K, type AddActivityResponse as L, type MarkOrderAsPaidResponse as M, type AddActivitiesOptions as N, type Order as O, type Price as P, type AddActivitiesResponse as Q, type RecordManuallyCollectedPaymentOptions as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type UpdateActivityIdentifiers as W, type UpdateActivityResponse as X, type DeleteActivityIdentifiers as Y, type DeleteActivityResponse as Z, type CancelOrderOptions as _, type SetOrderNumberCounterResponse as a, ChargebackStatus as a$, type CancelOrderApplicationErrors as a0, type OrderStatusWithLiterals as a1, type UpdateOrderStatusResponse as a2, type UpdateOrderStatusApplicationErrors as a3, type AggregateOrdersOptions as a4, type AggregateOrdersResponse as a5, type BulkUpdateOrderTagsOptions as a6, type BulkUpdateOrderTagsResponse as a7, type OrderApprovedEnvelope as a8, type OrderCanceledEnvelope as a9, AdditionalFeeSource as aA, OrderActionType as aB, SpecificItemsCouponBehavior as aC, ChargeType as aD, DeltaPaymentOptionType as aE, InventoryAction as aF, WebhookIdentityType as aG, VersioningMode as aH, PreviewEmailType as aI, State as aJ, SiteCreatedContext as aK, Namespace as aL, DeleteStatus as aM, Origin as aN, ScheduledAction as aO, DurationUnit as aP, PaymentCollectabilityStatus as aQ, PredefinedPaymentMethod as aR, RefundableStatus as aS, NonRefundableReason as aT, ManuallyRefundableReason as aU, RestockType as aV, TransactionStatus as aW, AuthorizationCaptureStatus as aX, AuthorizationVoidStatus as aY, Reason as aZ, ActionType as a_, type OrderCommittedEnvelope as aa, type OrderCreatedEnvelope as ab, type OrderFulfilledEnvelope as ac, type OrderPaymentStatusUpdatedEnvelope as ad, type OrderUpdatedEnvelope as ae, DescriptionLineType as af, DimensionsUnit as ag, ItemTypePreset as ah, PaymentOptionType as ai, JurisdictionType as aj, SubscriptionFrequency as ak, AdjustmentType as al, TaxableAddressType as am, PaymentStatusEnumPaymentStatus as an, FulfillmentStatus as ao, WeightUnit as ap, VatType as aq, PickupMethod as ar, OrderStatus as as, DiscountType as at, DiscountReason as au, LineItemQuantityChangeType as av, ActivityType as aw, OrderActivityTypeEnumActivityType as ax, AttributionSource as ay, ChannelType as az, type BulkDeleteImportedOrdersResponse as b, type ShippingRegion as b$, MembershipPaymentStatus as b0, PaymentStatus as b1, RefundStatus as b2, SortOrder as b3, OrderApprovalStrategy as b4, Placement as b5, SubdivisionType as b6, SourceType as b7, CustomFieldGroup as b8, ValueType as b9, type BillingAdjustment as bA, type BillingAdjustmentPriceSummary as bB, type PriceDescription as bC, type LocationAndQuantity as bD, type TaxableAddress as bE, type TaxableAddressTaxableAddressDataOneOf as bF, type ExtendedFields as bG, type ModifierGroup as bH, type TranslatableString as bI, type ItemModifier as bJ, type BuyerInfo as bK, type BuyerInfoIdOneOf as bL, type CurrencyConversionDetails as bM, type PriceSummary as bN, type AddressWithContact as bO, type Address as bP, type StreetAddress as bQ, type AddressLocation as bR, type FullAddressContactDetails as bS, type VatId as bT, type V1ShippingInformation as bU, type DeliveryLogistics as bV, type DeliveryLogisticsAddressOneOf as bW, type PickupDetails as bX, type PickupAddress as bY, type DeliveryTimeSlot as bZ, type ShippingPrice as b_, DepositType as ba, InvoiceStatus as bb, type OrderLineItem as bc, type ProductName as bd, type CatalogReference as be, type DescriptionLine as bf, type DescriptionLineValueOneOf as bg, type DescriptionLineDescriptionLineValueOneOf as bh, type DescriptionLineName as bi, type PlainTextValue as bj, type Color as bk, type FocalPoint as bl, type PhysicalProperties as bm, type Dimensions as bn, type ItemType as bo, type ItemTypeItemTypeDataOneOf as bp, type RestockLocation as bq, type ItemTaxFullDetails as br, type LineItemTaxInfo as bs, type LineItemTaxBreakdown as bt, type DigitalFile as bu, type SubscriptionInfo as bv, type SubscriptionTitle as bw, type SubscriptionDescription as bx, type SubscriptionSettings as by, type FreeTrialPeriod as bz, type PreparePaymentCollectionOptions as c, type ExternalReceipt as c$, type TaxSummary as c0, type OrderTaxInfo as c1, type OrderTaxBreakdown as c2, type AppliedDiscount as c3, type AppliedDiscountDiscountSourceOneOf as c4, type Coupon as c5, type MerchantDiscount as c6, type MerchantDiscountMerchantDiscountReasonOneOf as c7, type DiscountRule as c8, type DiscountRuleName as c9, type ShippingInformationChange as cA, type ShippingInformation as cB, type SavedPaymentMethod as cC, type AuthorizedPaymentCreated as cD, type AuthorizedPaymentCaptured as cE, type AuthorizedPaymentVoided as cF, type RefundInitiated as cG, type RefundedPayment as cH, type RefundedPaymentKindOneOf as cI, type RegularPaymentRefund as cJ, type GiftCardPaymentRefund as cK, type MembershipPaymentRefund as cL, type PaymentRefunded as cM, type PaymentRefundFailed as cN, type RefundedAsStoreCredit as cO, type PaymentPending as cP, type PaymentPendingPaymentDetailsOneOf as cQ, type RegularPayment as cR, type RegularPaymentPaymentMethodDetailsOneOf as cS, type CreditCardDetails as cT, type PaymentCanceled as cU, type PaymentCanceledPaymentDetailsOneOf as cV, type PaymentDeclined as cW, type PaymentDeclinedPaymentDetailsOneOf as cX, type ReceiptCreated as cY, type ReceiptCreatedReceiptInfoOneOf as cZ, type WixReceipt as c_, type LineItemDiscount as ca, type ItemCombination as cb, type ItemCombinationLineItem as cc, type Activity as cd, type ActivityContentOneOf as ce, type CustomActivity as cf, type MerchantComment as cg, type OrderRefunded as ch, type OrderCreatedFromExchange as ci, type NewExchangeOrderCreated as cj, type LineItemExchangeData as ck, type DraftOrderChangesApplied as cl, type OrderChange as cm, type OrderChangeValueOneOf as cn, type LineItemChanges as co, type LineItemQuantityChange as cp, type LineItemPriceChange as cq, type LineItemProductNameChange as cr, type LineItemDescriptionLineChange as cs, type LineItemModifiersChange as ct, type ManagedLineItem as cu, type ManagedDiscount as cv, type TranslatedValue as cw, type LineItemAmount as cx, type ManagedAdditionalFee as cy, type TotalPriceChange as cz, type PreparePaymentCollectionResponse as d, type UpdateInternalDocumentsEvent as d$, type ReceiptSent as d0, type ReceiptSentReceiptInfoOneOf as d1, type ChargebackCreated as d2, type ChargebackReversed as d3, type CreatedBy as d4, type CreatedByStringOneOf as d5, type ChannelInfo as d6, type CustomField as d7, type BalanceSummary as d8, type Balance as d9, type OrderDeltasCommitted as dA, type CommittedDiffs as dB, type CommittedDiffsShippingUpdateInfoOneOf as dC, type ItemChangedDetails as dD, type OrderLineItemChangedDetails as dE, type LineItemDelta as dF, type LineItemDeltaDeltaOneOf as dG, type AppliedDiscountDelta as dH, type AppliedDiscountDeltaDeltaOneOf as dI, type AdditionalFeeDelta as dJ, type AdditionalFeeDeltaDeltaOneOf as dK, type DraftOrderCommitSettings as dL, type InventoryUpdateDetails as dM, type ImportOrderRequest as dN, type SetOrderNumberCounterRequest as dO, type BulkDeleteImportedOrdersRequest as dP, type DomainEvent as dQ, type DomainEventBodyOneOf as dR, type EntityCreatedEvent as dS, type RestoreInfo as dT, type EntityUpdatedEvent as dU, type EntityDeletedEvent as dV, type ActionEvent as dW, type MessageEnvelope as dX, type IdentificationData as dY, type IdentificationDataIdOneOf as dZ, type AccountInfo as d_, type CashRounding as da, type AdditionalFee as db, type FulfillmentStatusesAggregate as dc, type Tags as dd, type TagList as de, type Location as df, type OrderSettings as dg, type OrderSettingsAllowedActionsOneOf as dh, type OrderSettingsEditableByOneOf as di, type CustomAllowedActions as dj, type OwnerApps as dk, type FormInfo as dl, type FormIdentifier as dm, type PlatformFeeSummary as dn, type PlatformFee as dp, type OrderApproved as dq, type OrdersExperiments as dr, type OrderRejectedEventOrderRejected as ds, type OrderItemsRestocked as dt, type V1RestockItem as du, type OrderImported as dv, type ImportedOrderDeleted as dw, type PaymentStatusUpdated as dx, type FulfillmentStatusUpdated as dy, type OrderCanceledEventOrderCanceled as dz, type PreparePaymentCollectionApplicationErrors as e, type SiteTransferred as e$, type UpdateInternalDocumentsEventOperationOneOf as e0, type InternalDocument as e1, type InternalDocumentUpdateOperation as e2, type DeleteByIdsOperation as e3, type DeleteByFilterOperation as e4, type InternalDocumentUpdateByFilterOperation as e5, type InternalUpdateExistingOperation as e6, type VersionedDocumentUpdateOperation as e7, type VersionedDeleteByIdsOperation as e8, type VersionedDocumentId as e9, type PreviewEmailByTypeRequest as eA, type PreviewEmailByTypeResponse as eB, type PreviewRefundEmailRequest as eC, type RefundDetails as eD, type RefundItem as eE, type LineItemRefund as eF, type AdditionalFeeRefund as eG, type ShippingRefund as eH, type PreviewRefundEmailResponse as eI, type PreviewCancelEmailRequest as eJ, type PreviewCancelEmailResponse as eK, type PreviewCancelRefundEmailRequest as eL, type PreviewCancelRefundEmailResponse as eM, type PreviewBuyerPaymentsReceivedEmailRequest as eN, type PreviewBuyerPaymentsReceivedEmailResponse as eO, type PreviewBuyerConfirmationEmailRequest as eP, type PreviewBuyerConfirmationEmailResponse as eQ, type PreviewBuyerPickupConfirmationEmailRequest as eR, type PreviewBuyerPickupConfirmationEmailResponse as eS, type PreviewShippingConfirmationEmailRequest as eT, type PreviewShippingConfirmationEmailResponse as eU, type PreviewResendDownloadLinksEmailRequest as eV, type PreviewResendDownloadLinksEmailResponse as eW, type MetaSiteSpecialEvent as eX, type MetaSiteSpecialEventPayloadOneOf as eY, type Asset as eZ, type SiteCreated as e_, type TriggerReindexRequest as ea, type TriggerReindexResponse as eb, type Empty as ec, type TriggerReindexOrderRequest as ed, type SendBuyerConfirmationEmailRequest as ee, type SendBuyerConfirmationEmailResponse as ef, type SendBuyerPaymentsReceivedEmailRequest as eg, type SendBuyerPaymentsReceivedEmailResponse as eh, type SendBuyerPickupConfirmationEmailRequest as ei, type SendBuyerPickupConfirmationEmailResponse as ej, type BulkSendBuyerPickupConfirmationEmailsRequest as ek, type BulkSendBuyerPickupConfirmationEmailsResponse as el, type SendBuyerShippingConfirmationEmailRequest as em, type SendBuyerShippingConfirmationEmailResponse as en, type BulkSendBuyerShippingConfirmationEmailsRequest as eo, type BulkSendBuyerShippingConfirmationEmailsResponse as ep, type SendMerchantOrderReceivedNotificationRequest as eq, type SendMerchantOrderReceivedNotificationResponse as er, type SendCancelRefundEmailRequest as es, type SendCancelRefundEmailResponse as et, type SendRefundEmailRequest as eu, type SendRefundEmailResponse as ev, type SendFulfillmentEmailRequest as ew, type SendFulfillmentEmailResponse as ex, type SendMerchantOrderReceivedPushRequest as ey, type SendMerchantOrderReceivedPushResponse as ez, type RecordManuallyCollectedPaymentApplicationErrors as f, type OrderTransactions as f$, type SiteDeleted as f0, type DeleteContext as f1, type SiteUndeleted as f2, type SitePublished as f3, type SiteUnpublished as f4, type SiteMarkedAsTemplate as f5, type SiteMarkedAsWixSite as f6, type ServiceProvisioned as f7, type ServiceRemoved as f8, type SiteRenamed as f9, type DelayedCaptureSettings as fA, type Duration as fB, type GetPaymentCollectabilityStatusRequest as fC, type RecordManuallyCollectedPaymentRequest as fD, type UserDefinedPaymentMethodName as fE, type UserDefinedPaymentMethodNameKindOneOf as fF, type RecordManuallyCollectedPaymentResponse as fG, type MarkOrderAsPaidRequest as fH, type BulkMarkOrdersAsPaidRequest as fI, type BulkOrderResult as fJ, type ItemMetadata as fK, type ApplicationError as fL, type BulkActionMetadata as fM, type GetRefundabilityStatusRequest as fN, type Refundability as fO, type RefundabilityAdditionalRefundabilityInfoOneOf as fP, type CreatePaymentGatewayOrderRequest as fQ, type ChargedBy as fR, type ChargeMembershipsRequest as fS, type MembershipChargeItem as fT, type MembershipName as fU, type ServiceProperties as fV, type ChargeMembershipsResponse as fW, type TriggerRefundRequest as fX, type RefundSideEffects as fY, type RestockInfo as fZ, type RestockItem as f_, type SiteHardDeleted as fa, type NamespaceChanged as fb, type StudioAssigned as fc, type StudioUnassigned as fd, type SiteUrlChanged as fe, type SitePurgedExternally as ff, type OdeditorAssigned as fg, type OdeditorUnassigned as fh, type PicassoAssigned as fi, type PicassoUnassigned as fj, type WixelAssigned as fk, type WixelUnassigned as fl, type StudioTwoAssigned as fm, type StudioTwoUnassigned as fn, type UserDomainMediaEnabled as fo, type UserDomainMediaDisabled as fp, type EditorlessAssigned as fq, type EditorlessUnassigned as fr, type HasCustomEmailConfigurationsRequest as fs, type HasCustomEmailConfigurationsResponse as ft, type AddToAutomationMigrationPopulationRequest as fu, type AddToAutomationMigrationPopulationResponse as fv, type IsInAutomationMigrationPopulationRequest as fw, type IsInAutomationMigrationPopulationResponse as fx, type PreparePaymentCollectionRequest as fy, type RedirectUrls as fz, type PaymentCollectionMarkOrderAsPaidOptions as g, type DraftOrderDiffsBillingUpdateInfoOneOf as g$, type Payment as g0, type PaymentPaymentDetailsOneOf as g1, type PaymentReceiptInfoOneOf as g2, type RegularPaymentDetails as g3, type RegularPaymentDetailsPaymentMethodDetailsOneOf as g4, type CreditCardPaymentMethodDetails as g5, type AuthorizationDetails as g6, type AuthorizationCapture as g7, type AuthorizationActionFailureDetails as g8, type AuthorizationVoid as g9, type InternalQueryOrdersRequest as gA, type PlatformQuery as gB, type PlatformQueryPagingMethodOneOf as gC, type Sorting as gD, type PlatformPaging as gE, type CursorPaging as gF, type InternalQueryOrdersResponse as gG, type PlatformPagingMetadata as gH, type Cursors as gI, type QueryOrderRequest as gJ, type QueryOrderResponse as gK, type SearchOrdersRequest as gL, type CursorSearch as gM, type CursorSearchPagingMethodOneOf as gN, type CursorPagingMetadata as gO, type CreateOrderRequest as gP, type OrderCreationSettings as gQ, type OrderCreationSettingsEditableByOneOf as gR, type OrderCreateNotifications as gS, type CreateOrderResponse as gT, type UpdateOrderRequest as gU, type UpdateOrderResponse as gV, type BulkUpdateOrdersRequest as gW, type CommitDeltasRequest as gX, type DraftOrderDiffs as gY, type DraftOrderDiffsShippingUpdateInfoOneOf as gZ, type DraftOrderDiffsBuyerUpdateInfoOneOf as g_, type V1ScheduledAction as ga, type Chargeback as gb, type PaymentMethodName as gc, type GiftCardPaymentDetails as gd, type MembershipPaymentDetails as ge, type WixReceiptInfo as gf, type ExternalReceiptInfo as gg, type CashRoundingDetails as gh, type Refund as gi, type RefundTransaction as gj, type RefundStatusInfo as gk, type AggregatedRefundSummary as gl, type RefundItemsBreakdown as gm, type LineItemRefundSummary as gn, type CalculateRefundRequest as go, type CalculateRefundItemRequest as gp, type CalculateRefundResponse as gq, type CalculateRefundItemResponse as gr, type VoidAuthorizedPaymentsRequest as gs, type CaptureAuthorizedPaymentsRequest as gt, type ChargeSavedPaymentMethodRequest as gu, type ChargeSavedPaymentMethodResponse as gv, type DiffmatokyPayload as gw, type ErrorInformation as gx, type GetOrderRequest as gy, type GetOrderResponse as gz, type PaymentCollectionMarkOrderAsPaidApplicationErrors as h, type UpdateOrderStatusRequest as h$, type DraftOrderDiffsRecipientUpdateInfoOneOf as h0, type V1LineItemDelta as h1, type V1LineItemDeltaDeltaOneOf as h2, type CommitDeltasResponse as h3, type ArchiveOrderRequest as h4, type ArchiveOrderResponse as h5, type BulkArchiveOrdersRequest as h6, type BulkArchiveOrdersResponse as h7, type BulkArchiveOrdersByFilterRequest as h8, type BulkArchiveOrdersByFilterResponse as h9, type OrderCanceled as hA, type DownloadLinkSent as hB, type TrackingNumberAdded as hC, type TrackingNumberEdited as hD, type TrackingLinkAdded as hE, type ShippingConfirmationEmailSent as hF, type InvoiceAdded as hG, type InvoiceSent as hH, type FulfillerEmailSent as hI, type ShippingAddressEdited as hJ, type EmailEdited as hK, type PickupReadyEmailSent as hL, type OrderPartiallyPaid as hM, type OrderPending as hN, type OrderRejected as hO, type AddInternalActivityResponse as hP, type AddActivityRequest as hQ, type PublicActivityContentOneOf as hR, type AddActivitiesRequest as hS, type UpdateActivityRequest as hT, type DeleteActivityRequest as hU, type UpdateLineItemsDescriptionLinesRequest as hV, type LineItemUpdate as hW, type UpdateLineItemsDescriptionLinesResponse as hX, type MarkOrderAsSeenByHumanRequest as hY, type MarkOrderAsSeenByHumanResponse as hZ, type CancelOrderRequest as h_, type UnArchiveOrderRequest as ha, type UnArchiveOrderResponse as hb, type BulkUnArchiveOrdersRequest as hc, type BulkUnArchiveOrdersResponse as hd, type BulkUnArchiveOrdersByFilterRequest as he, type BulkUnArchiveOrdersByFilterResponse as hf, type UpdateBuyerInfoRequest as hg, type BuyerInfoUpdate as hh, type UpdateBuyerInfoResponse as hi, type UpdateBuyerEmailRequest as hj, type UpdateBuyerEmailResponse as hk, type UpdateOrderShippingAddressRequest as hl, type UpdateOrderShippingAddressResponse as hm, type UpdateBillingContactDetailsRequest as hn, type UpdateBillingContactDetailsResponse as ho, type UpdateOrderLineItemRequest as hp, type UpdateOrderLineItemsRequest as hq, type MaskedOrderLineItem as hr, type UpdateOrderLineItemsResponse as hs, type AddInternalActivityRequest as ht, type InternalActivity as hu, type InternalActivityContentOneOf as hv, type OrderPlaced as hw, type OrderPaid as hx, type OrderFulfilled as hy, type OrderNotFulfilled as hz, type BulkMarkOrdersAsPaidResponse as i, type TotalPrice as i$, type MarkAsFulfilledRequest as i0, type MarkAsFulfilledResponse as i1, type BulkMarkAsFulfilledRequest as i2, type BulkMarkAsFulfilledResponse as i3, type BulkMarkAsFulfilledByFilterRequest as i4, type BulkMarkAsFulfilledByFilterResponse as i5, type MarkAsUnfulfilledRequest as i6, type MarkAsUnfulfilledResponse as i7, type BulkMarkAsUnfulfilledRequest as i8, type BulkMarkAsUnfulfilledResponse as i9, type TaskKey as iA, type TaskAction as iB, type TaskActionActionOneOf as iC, type Complete as iD, type Cancel as iE, type Reschedule as iF, type InvoiceSentEvent as iG, type IdAndVersion as iH, type InvoiceFields as iI, type Customer as iJ, type Email as iK, type QuotesAddress as iL, type AddressDescription as iM, type Phone as iN, type Company as iO, type CommonAddress as iP, type CommonAddressStreetOneOf as iQ, type Subdivision as iR, type StandardDetails as iS, type InvoiceDates as iT, type LineItems as iU, type LineItem as iV, type BigDecimalWrapper as iW, type LineItemTax as iX, type Source as iY, type LineItemMetaData as iZ, type Locale as i_, type BulkMarkAsUnfulfilledByFilterRequest as ia, type BulkMarkAsUnfulfilledByFilterResponse as ib, type BulkSetBusinessLocationRequest as ic, type BulkSetBusinessLocationResponse as id, type BulkSetBusinessLocationResult as ie, type V1MarkOrderAsPaidRequest as ig, type V1MarkOrderAsPaidResponse as ih, type V1BulkMarkOrdersAsPaidRequest as ii, type V1BulkMarkOrdersAsPaidResponse as ij, type V1CreatePaymentGatewayOrderRequest as ik, type V1CreatePaymentGatewayOrderResponse as il, type GetShipmentsRequest as im, type GetShipmentsResponse as io, type AggregateOrdersRequest as ip, type DecrementItemsQuantityRequest as iq, type DecrementData as ir, type DecrementItemsQuantityResponse as is, type BulkUpdateOrderTagsRequest as it, type TagsTags as iu, type TagsTagList as iv, type BulkUpdateOrderTagsResult as iw, type SendOrderUpdatedDomainEventRequest as ix, type SendOrderUpdatedDomainEventResponse as iy, type Task as iz, type GetRefundabilityStatusResponse as j, type ActionTypeWithLiterals as j$, type ItemizedFee as j0, type Discount as j1, type DiscountOneDiscountTypeOneOf as j2, type CalculatedTaxes as j3, type CalculatedTax as j4, type Payments as j5, type InvoicesPayment as j6, type MetaData as j7, type InvoiceDynamicPriceTotals as j8, type CustomFieldValue as j9, type ChannelTypeWithLiterals as jA, type AdditionalFeeSourceWithLiterals as jB, type OrderActionTypeWithLiterals as jC, type SpecificItemsCouponBehaviorWithLiterals as jD, type ChargeTypeWithLiterals as jE, type DeltaPaymentOptionTypeWithLiterals as jF, type InventoryActionWithLiterals as jG, type WebhookIdentityTypeWithLiterals as jH, type VersioningModeWithLiterals as jI, type PreviewEmailTypeWithLiterals as jJ, type StateWithLiterals as jK, type SiteCreatedContextWithLiterals as jL, type NamespaceWithLiterals as jM, type DeleteStatusWithLiterals as jN, type OriginWithLiterals as jO, type ScheduledActionWithLiterals as jP, type DurationUnitWithLiterals as jQ, type PaymentCollectabilityStatusWithLiterals as jR, type PredefinedPaymentMethodWithLiterals as jS, type RefundableStatusWithLiterals as jT, type NonRefundableReasonWithLiterals as jU, type ManuallyRefundableReasonWithLiterals as jV, type RestockTypeWithLiterals as jW, type TransactionStatusWithLiterals as jX, type AuthorizationCaptureStatusWithLiterals as jY, type AuthorizationVoidStatusWithLiterals as jZ, type ReasonWithLiterals as j_, type Value as ja, type Deposit as jb, type BaseEventMetadata as jc, type EventMetadata as jd, type AccountInfoMetadata as je, type OrderSearchSpec as jf, utils as jg, type DescriptionLineTypeWithLiterals as jh, type DimensionsUnitWithLiterals as ji, type ItemTypePresetWithLiterals as jj, type PaymentOptionTypeWithLiterals as jk, type JurisdictionTypeWithLiterals as jl, type SubscriptionFrequencyWithLiterals as jm, type AdjustmentTypeWithLiterals as jn, type TaxableAddressTypeWithLiterals as jo, type PaymentStatusEnumPaymentStatusWithLiterals as jp, type FulfillmentStatusWithLiterals as jq, type WeightUnitWithLiterals as jr, type VatTypeWithLiterals as js, type PickupMethodWithLiterals as jt, type DiscountTypeWithLiterals as ju, type DiscountReasonWithLiterals as jv, type LineItemQuantityChangeTypeWithLiterals as jw, type ActivityTypeWithLiterals as jx, type OrderActivityTypeEnumActivityTypeWithLiterals as jy, type AttributionSourceWithLiterals as jz, type PaymentCollectionCreatePaymentGatewayOrderOptions as k, type ChargebackStatusWithLiterals as k0, type MembershipPaymentStatusWithLiterals as k1, type PaymentStatusWithLiterals as k2, type RefundStatusWithLiterals as k3, type SortOrderWithLiterals as k4, type OrderApprovalStrategyWithLiterals as k5, type PlacementWithLiterals as k6, type SubdivisionTypeWithLiterals as k7, type SourceTypeWithLiterals as k8, type CustomFieldGroupWithLiterals as k9, createOrder as kA, updateOrder as kB, bulkUpdateOrders as kC, updateOrderLineItem as kD, addActivity as kE, addActivities as kF, updateActivity as kG, deleteActivity as kH, cancelOrder as kI, updateOrderStatus as kJ, aggregateOrders as kK, bulkUpdateOrderTags as kL, type ValueTypeWithLiterals as ka, type DepositTypeWithLiterals as kb, type InvoiceStatusWithLiterals as kc, type CommonSearchWithEntityContext as kd, onOrderApproved as ke, onOrderCanceled as kf, onOrderCommitted as kg, onOrderCreated as kh, onOrderFulfilled as ki, onOrderPaymentStatusUpdated as kj, onOrderUpdated as kk, importOrder as kl, setOrderNumberCounter as km, bulkDeleteImportedOrders as kn, preparePaymentCollection as ko, getPaymentCollectabilityStatus as kp, recordManuallyCollectedPayment as kq, paymentCollectionMarkOrderAsPaid as kr, paymentCollectionBulkMarkOrdersAsPaid as ks, getRefundabilityStatus as kt, paymentCollectionCreatePaymentGatewayOrder as ku, chargeMemberships as kv, triggerRefund as kw, voidAuthorizedPayments as kx, captureAuthorizedPayments as ky, getOrder as kz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as l, type ChargeMembershipsOptions as m, type PaymentRefund as n, type TriggerRefundResponse as o, type TriggerRefundApplicationErrors as p, type VoidAuthorizedPaymentsApplicationErrors as q, type PaymentCapture as r, type CaptureAuthorizedPaymentsResponse as s, type CaptureAuthorizedPaymentsApplicationErrors as t, type GetOrderApplicationErrors as u, type OrderSearch as v, type SearchOrdersResponse as w, type CreateOrderOptions as x, type CreateOrderApplicationErrors as y, type UpdateOrderApplicationErrors as z };
|
|
9495
|
+
export { type CancelOrderApplicationErrors as $, type BulkUpdateOrdersOptions as A, type BulkDeleteImportedOrdersResponse as B, type CreatePaymentGatewayOrderResponse as C, type BulkUpdateOrdersResponse as D, type UpdateOrderLineItemIdentifiers as E, type UpdateOrderLineItem as F, type GetPaymentCollectabilityStatusResponse as G, type UpdateOrderLineItemResponse as H, type ImportOrderResponse as I, type PublicActivity as J, type AddActivityResponse as K, type AddActivitiesOptions as L, type MarkOrderAsPaidResponse as M, type AddActivitiesResponse as N, type Order as O, type Price as P, type UpdateActivityIdentifiers as Q, type RecordManuallyCollectedPaymentOptions 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, MembershipPaymentStatus 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 OrderCanceledEnvelope as a8, type OrderCommittedEnvelope as a9, OrderActionType as aA, SpecificItemsCouponBehavior as aB, ChargeType as aC, DeltaPaymentOptionType as aD, InventoryAction as aE, WebhookIdentityType as aF, VersioningMode as aG, PreviewEmailType as aH, State as aI, SiteCreatedContext as aJ, Namespace as aK, DeleteStatus as aL, Origin as aM, ScheduledAction as aN, DurationUnit as aO, PaymentCollectabilityStatus as aP, PredefinedPaymentMethod as aQ, RefundableStatus as aR, NonRefundableReason as aS, ManuallyRefundableReason as aT, RestockType as aU, TransactionStatus as aV, AuthorizationCaptureStatus as aW, AuthorizationVoidStatus as aX, Reason as aY, ActionType as aZ, ChargebackStatus as a_, type OrderCreatedEnvelope as aa, type OrderFulfilledEnvelope as ab, type OrderPaymentStatusUpdatedEnvelope as ac, type OrderUpdatedEnvelope as ad, DescriptionLineType as ae, DimensionsUnit as af, ItemTypePreset as ag, PaymentOptionType as ah, JurisdictionType as ai, SubscriptionFrequency as aj, AdjustmentType as ak, TaxableAddressType as al, PaymentStatusEnumPaymentStatus as am, FulfillmentStatus as an, WeightUnit as ao, VatType as ap, PickupMethod as aq, OrderStatus as ar, DiscountType as as, DiscountReason as at, LineItemQuantityChangeType as au, ActivityType as av, OrderActivityTypeEnumActivityType as aw, AttributionSource as ax, ChannelType as ay, AdditionalFeeSource as az, type PreparePaymentCollectionOptions as b, type TaxSummary as b$, PaymentStatus as b0, RefundStatus as b1, SortOrder as b2, OrderApprovalStrategy as b3, Placement as b4, SubdivisionType as b5, SourceType as b6, CustomFieldGroup as b7, ValueType as b8, DepositType as b9, type BillingAdjustmentPriceSummary as bA, type PriceDescription as bB, type LocationAndQuantity as bC, type TaxableAddress as bD, type TaxableAddressTaxableAddressDataOneOf as bE, type ExtendedFields as bF, type ModifierGroup as bG, type TranslatableString as bH, type ItemModifier as bI, type BuyerInfo as bJ, type BuyerInfoIdOneOf as bK, type CurrencyConversionDetails as bL, type PriceSummary as bM, type AddressWithContact as bN, type Address as bO, type StreetAddress as bP, type AddressLocation as bQ, type FullAddressContactDetails as bR, type VatId as bS, type V1ShippingInformation as bT, type DeliveryLogistics as bU, type DeliveryLogisticsAddressOneOf as bV, type PickupDetails as bW, type PickupAddress as bX, type DeliveryTimeSlot as bY, type ShippingPrice as bZ, type ShippingRegion as b_, InvoiceStatus as ba, type OrderLineItem as bb, type ProductName as bc, type CatalogReference as bd, type DescriptionLine as be, type DescriptionLineValueOneOf as bf, type DescriptionLineDescriptionLineValueOneOf as bg, type DescriptionLineName as bh, type PlainTextValue as bi, type Color as bj, type FocalPoint as bk, type PhysicalProperties as bl, type Dimensions as bm, type ItemType as bn, type ItemTypeItemTypeDataOneOf as bo, type RestockLocation as bp, type ItemTaxFullDetails as bq, type LineItemTaxInfo as br, type LineItemTaxBreakdown as bs, type DigitalFile as bt, type SubscriptionInfo as bu, type SubscriptionTitle as bv, type SubscriptionDescription as bw, type SubscriptionSettings as bx, type FreeTrialPeriod as by, type BillingAdjustment as bz, type PreparePaymentCollectionResponse as c, type ReceiptSent as c$, type OrderTaxInfo as c0, type OrderTaxBreakdown as c1, type AppliedDiscount as c2, type AppliedDiscountDiscountSourceOneOf as c3, type Coupon as c4, type MerchantDiscount as c5, type MerchantDiscountMerchantDiscountReasonOneOf as c6, type DiscountRule as c7, type DiscountRuleName as c8, type LineItemDiscount as c9, type ShippingInformation as cA, type SavedPaymentMethod as cB, type AuthorizedPaymentCreated as cC, type AuthorizedPaymentCaptured as cD, type AuthorizedPaymentVoided as cE, type RefundInitiated as cF, type RefundedPayment as cG, type RefundedPaymentKindOneOf as cH, type RegularPaymentRefund as cI, type GiftCardPaymentRefund as cJ, type MembershipPaymentRefund as cK, type PaymentRefunded as cL, type PaymentRefundFailed as cM, type RefundedAsStoreCredit as cN, type PaymentPending as cO, type PaymentPendingPaymentDetailsOneOf as cP, type RegularPayment as cQ, type RegularPaymentPaymentMethodDetailsOneOf as cR, type CreditCardDetails as cS, type PaymentCanceled as cT, type PaymentCanceledPaymentDetailsOneOf as cU, type PaymentDeclined as cV, type PaymentDeclinedPaymentDetailsOneOf as cW, type ReceiptCreated as cX, type ReceiptCreatedReceiptInfoOneOf as cY, type WixReceipt as cZ, type ExternalReceipt as c_, type ItemCombination as ca, type ItemCombinationLineItem as cb, type Activity as cc, type ActivityContentOneOf as cd, type CustomActivity as ce, type MerchantComment as cf, type OrderRefunded as cg, type OrderCreatedFromExchange as ch, type NewExchangeOrderCreated as ci, type LineItemExchangeData as cj, type DraftOrderChangesApplied as ck, type OrderChange as cl, type OrderChangeValueOneOf as cm, type LineItemChanges as cn, type LineItemQuantityChange as co, type LineItemPriceChange as cp, type LineItemProductNameChange as cq, type LineItemDescriptionLineChange as cr, type LineItemModifiersChange as cs, type ManagedLineItem as ct, type ManagedDiscount as cu, type TranslatedValue as cv, type LineItemAmount as cw, type ManagedAdditionalFee as cx, type TotalPriceChange as cy, type ShippingInformationChange as cz, type PreparePaymentCollectionApplicationErrors as d, type UpdateInternalDocumentsEventOperationOneOf as d$, type ReceiptSentReceiptInfoOneOf as d0, type ChargebackCreated as d1, type ChargebackReversed as d2, type CreatedBy as d3, type CreatedByStringOneOf as d4, type ChannelInfo as d5, type CustomField as d6, type BalanceSummary as d7, type Balance as d8, type CashRounding as d9, type CommittedDiffs as dA, type CommittedDiffsShippingUpdateInfoOneOf as dB, type ItemChangedDetails as dC, type OrderLineItemChangedDetails as dD, type LineItemDelta as dE, type LineItemDeltaDeltaOneOf as dF, type AppliedDiscountDelta as dG, type AppliedDiscountDeltaDeltaOneOf as dH, type AdditionalFeeDelta as dI, type AdditionalFeeDeltaDeltaOneOf as dJ, type DraftOrderCommitSettings as dK, type InventoryUpdateDetails as dL, type ImportOrderRequest as dM, type SetOrderNumberCounterRequest as dN, type BulkDeleteImportedOrdersRequest as dO, type DomainEvent as dP, type DomainEventBodyOneOf as dQ, type EntityCreatedEvent as dR, type RestoreInfo as dS, type EntityUpdatedEvent as dT, type EntityDeletedEvent as dU, type ActionEvent as dV, type MessageEnvelope as dW, type IdentificationData as dX, type IdentificationDataIdOneOf as dY, type AccountInfo as dZ, type UpdateInternalDocumentsEvent as d_, type AdditionalFee as da, type FulfillmentStatusesAggregate as db, type Tags as dc, type TagList as dd, type Location as de, type OrderSettings as df, type OrderSettingsAllowedActionsOneOf as dg, type OrderSettingsEditableByOneOf as dh, type CustomAllowedActions as di, type OwnerApps as dj, type FormInfo as dk, type FormIdentifier as dl, type PlatformFeeSummary as dm, type PlatformFee as dn, type OrderApproved as dp, type OrdersExperiments as dq, type OrderRejectedEventOrderRejected as dr, type OrderItemsRestocked as ds, type V1RestockItem as dt, type OrderImported as du, type ImportedOrderDeleted as dv, type PaymentStatusUpdated as dw, type FulfillmentStatusUpdated as dx, type OrderCanceledEventOrderCanceled as dy, type OrderDeltasCommitted as dz, type RecordManuallyCollectedPaymentApplicationErrors as e, type SiteDeleted as e$, type InternalDocument as e0, type InternalDocumentUpdateOperation as e1, type DeleteByIdsOperation as e2, type DeleteByFilterOperation as e3, type InternalDocumentUpdateByFilterOperation as e4, type InternalUpdateExistingOperation as e5, type VersionedDocumentUpdateOperation as e6, type VersionedDeleteByIdsOperation as e7, type VersionedDocumentId as e8, type TriggerReindexRequest as e9, type PreviewEmailByTypeResponse as eA, type PreviewRefundEmailRequest as eB, type RefundDetails as eC, type RefundItem as eD, type LineItemRefund as eE, type AdditionalFeeRefund as eF, type ShippingRefund as eG, type PreviewRefundEmailResponse as eH, type PreviewCancelEmailRequest as eI, type PreviewCancelEmailResponse as eJ, type PreviewCancelRefundEmailRequest as eK, type PreviewCancelRefundEmailResponse as eL, type PreviewBuyerPaymentsReceivedEmailRequest as eM, type PreviewBuyerPaymentsReceivedEmailResponse as eN, type PreviewBuyerConfirmationEmailRequest as eO, type PreviewBuyerConfirmationEmailResponse as eP, type PreviewBuyerPickupConfirmationEmailRequest as eQ, type PreviewBuyerPickupConfirmationEmailResponse as eR, type PreviewShippingConfirmationEmailRequest as eS, type PreviewShippingConfirmationEmailResponse as eT, type PreviewResendDownloadLinksEmailRequest as eU, type PreviewResendDownloadLinksEmailResponse as eV, type MetaSiteSpecialEvent as eW, type MetaSiteSpecialEventPayloadOneOf as eX, type Asset as eY, type SiteCreated as eZ, type SiteTransferred as e_, type TriggerReindexResponse as ea, type Empty as eb, type TriggerReindexOrderRequest as ec, type SendBuyerConfirmationEmailRequest as ed, type SendBuyerConfirmationEmailResponse as ee, type SendBuyerPaymentsReceivedEmailRequest as ef, type SendBuyerPaymentsReceivedEmailResponse as eg, type SendBuyerPickupConfirmationEmailRequest as eh, type SendBuyerPickupConfirmationEmailResponse as ei, type BulkSendBuyerPickupConfirmationEmailsRequest as ej, type BulkSendBuyerPickupConfirmationEmailsResponse as ek, type SendBuyerShippingConfirmationEmailRequest as el, type SendBuyerShippingConfirmationEmailResponse as em, type BulkSendBuyerShippingConfirmationEmailsRequest as en, type BulkSendBuyerShippingConfirmationEmailsResponse as eo, type SendMerchantOrderReceivedNotificationRequest as ep, type SendMerchantOrderReceivedNotificationResponse as eq, type SendCancelRefundEmailRequest as er, type SendCancelRefundEmailResponse as es, type SendRefundEmailRequest as et, type SendRefundEmailResponse as eu, type SendFulfillmentEmailRequest as ev, type SendFulfillmentEmailResponse as ew, type SendMerchantOrderReceivedPushRequest as ex, type SendMerchantOrderReceivedPushResponse as ey, type PreviewEmailByTypeRequest as ez, type PaymentCollectionMarkOrderAsPaidOptions as f, type Payment as f$, type DeleteContext as f0, type SiteUndeleted as f1, type SitePublished as f2, type SiteUnpublished as f3, type SiteMarkedAsTemplate as f4, type SiteMarkedAsWixSite as f5, type ServiceProvisioned as f6, type ServiceRemoved as f7, type SiteRenamed as f8, type SiteHardDeleted as f9, type Duration as fA, type GetPaymentCollectabilityStatusRequest as fB, type RecordManuallyCollectedPaymentRequest as fC, type UserDefinedPaymentMethodName as fD, type UserDefinedPaymentMethodNameKindOneOf as fE, type RecordManuallyCollectedPaymentResponse as fF, type MarkOrderAsPaidRequest as fG, type BulkMarkOrdersAsPaidRequest as fH, type BulkOrderResult as fI, type ItemMetadata as fJ, type ApplicationError as fK, type BulkActionMetadata as fL, type GetRefundabilityStatusRequest as fM, type Refundability as fN, type RefundabilityAdditionalRefundabilityInfoOneOf as fO, type CreatePaymentGatewayOrderRequest as fP, type ChargedBy as fQ, type ChargeMembershipsRequest as fR, type MembershipChargeItem as fS, type MembershipName as fT, type ServiceProperties as fU, type ChargeMembershipsResponse as fV, type TriggerRefundRequest as fW, type RefundSideEffects as fX, type RestockInfo as fY, type RestockItem as fZ, type OrderTransactions as f_, type NamespaceChanged as fa, type StudioAssigned as fb, type StudioUnassigned as fc, type SiteUrlChanged as fd, type SitePurgedExternally as fe, type OdeditorAssigned as ff, type OdeditorUnassigned as fg, type PicassoAssigned as fh, type PicassoUnassigned as fi, type WixelAssigned as fj, type WixelUnassigned as fk, type StudioTwoAssigned as fl, type StudioTwoUnassigned as fm, type UserDomainMediaEnabled as fn, type UserDomainMediaDisabled as fo, type EditorlessAssigned as fp, type EditorlessUnassigned as fq, type HasCustomEmailConfigurationsRequest as fr, type HasCustomEmailConfigurationsResponse as fs, type AddToAutomationMigrationPopulationRequest as ft, type AddToAutomationMigrationPopulationResponse as fu, type IsInAutomationMigrationPopulationRequest as fv, type IsInAutomationMigrationPopulationResponse as fw, type PreparePaymentCollectionRequest as fx, type RedirectUrls as fy, type DelayedCaptureSettings as fz, type PaymentCollectionMarkOrderAsPaidApplicationErrors as g, type DraftOrderDiffsRecipientUpdateInfoOneOf as g$, type PaymentPaymentDetailsOneOf as g0, type PaymentReceiptInfoOneOf as g1, type RegularPaymentDetails as g2, type RegularPaymentDetailsPaymentMethodDetailsOneOf as g3, type CreditCardPaymentMethodDetails as g4, type AuthorizationDetails as g5, type AuthorizationCapture as g6, type AuthorizationActionFailureDetails as g7, type AuthorizationVoid as g8, type V1ScheduledAction as g9, type PlatformQuery as gA, type PlatformQueryPagingMethodOneOf as gB, type Sorting as gC, type PlatformPaging as gD, type CursorPaging as gE, type InternalQueryOrdersResponse as gF, type PlatformPagingMetadata as gG, type Cursors as gH, type QueryOrderRequest as gI, type QueryOrderResponse as gJ, type SearchOrdersRequest as gK, type CursorSearch as gL, type CursorSearchPagingMethodOneOf as gM, type CursorPagingMetadata as gN, type CreateOrderRequest as gO, type OrderCreationSettings as gP, type OrderCreationSettingsEditableByOneOf as gQ, type OrderCreateNotifications as gR, type CreateOrderResponse as gS, type UpdateOrderRequest as gT, type UpdateOrderResponse as gU, type BulkUpdateOrdersRequest as gV, type CommitDeltasRequest as gW, type DraftOrderDiffs as gX, type DraftOrderDiffsShippingUpdateInfoOneOf as gY, type DraftOrderDiffsBuyerUpdateInfoOneOf as gZ, type DraftOrderDiffsBillingUpdateInfoOneOf as g_, type Chargeback as ga, type PaymentMethodName as gb, type GiftCardPaymentDetails as gc, type MembershipPaymentDetails as gd, type WixReceiptInfo as ge, type ExternalReceiptInfo as gf, type CashRoundingDetails as gg, type Refund as gh, type RefundTransaction as gi, type RefundStatusInfo as gj, type AggregatedRefundSummary as gk, type RefundItemsBreakdown as gl, type LineItemRefundSummary as gm, type CalculateRefundRequest as gn, type CalculateRefundItemRequest as go, type CalculateRefundResponse as gp, type CalculateRefundItemResponse as gq, type VoidAuthorizedPaymentsRequest as gr, type CaptureAuthorizedPaymentsRequest as gs, type ChargeSavedPaymentMethodRequest as gt, type ChargeSavedPaymentMethodResponse as gu, type DiffmatokyPayload as gv, type ErrorInformation as gw, type GetOrderRequest as gx, type GetOrderResponse as gy, type InternalQueryOrdersRequest as gz, type BulkMarkOrdersAsPaidResponse as h, type MarkAsFulfilledRequest as h$, type V1LineItemDelta as h0, type V1LineItemDeltaDeltaOneOf as h1, type CommitDeltasResponse as h2, type ArchiveOrderRequest as h3, type ArchiveOrderResponse as h4, type BulkArchiveOrdersRequest as h5, type BulkArchiveOrdersResponse as h6, type BulkArchiveOrdersByFilterRequest as h7, type BulkArchiveOrdersByFilterResponse as h8, type UnArchiveOrderRequest as h9, type DownloadLinkSent as hA, type TrackingNumberAdded as hB, type TrackingNumberEdited as hC, type TrackingLinkAdded as hD, type ShippingConfirmationEmailSent as hE, type InvoiceAdded as hF, type InvoiceSent as hG, type FulfillerEmailSent as hH, type ShippingAddressEdited as hI, type EmailEdited as hJ, type PickupReadyEmailSent as hK, type OrderPartiallyPaid as hL, type OrderPending as hM, type OrderRejected as hN, type AddInternalActivityResponse as hO, type AddActivityRequest as hP, type PublicActivityContentOneOf as hQ, type AddActivitiesRequest as hR, type UpdateActivityRequest as hS, type DeleteActivityRequest as hT, type UpdateLineItemsDescriptionLinesRequest as hU, type LineItemUpdate as hV, type UpdateLineItemsDescriptionLinesResponse as hW, type MarkOrderAsSeenByHumanRequest as hX, type MarkOrderAsSeenByHumanResponse as hY, type CancelOrderRequest as hZ, type UpdateOrderStatusRequest as h_, type UnArchiveOrderResponse as ha, type BulkUnArchiveOrdersRequest as hb, type BulkUnArchiveOrdersResponse as hc, type BulkUnArchiveOrdersByFilterRequest as hd, type BulkUnArchiveOrdersByFilterResponse as he, type UpdateBuyerInfoRequest as hf, type BuyerInfoUpdate as hg, type UpdateBuyerInfoResponse as hh, type UpdateBuyerEmailRequest as hi, type UpdateBuyerEmailResponse as hj, type UpdateOrderShippingAddressRequest as hk, type UpdateOrderShippingAddressResponse as hl, type UpdateBillingContactDetailsRequest as hm, type UpdateBillingContactDetailsResponse as hn, type UpdateOrderLineItemRequest as ho, type UpdateOrderLineItemsRequest as hp, type MaskedOrderLineItem as hq, type UpdateOrderLineItemsResponse as hr, type AddInternalActivityRequest as hs, type InternalActivity as ht, type InternalActivityContentOneOf as hu, type OrderPlaced as hv, type OrderPaid as hw, type OrderFulfilled as hx, type OrderNotFulfilled as hy, type OrderCanceled as hz, type GetRefundabilityStatusResponse as i, type ItemizedFee as i$, type MarkAsFulfilledResponse as i0, type BulkMarkAsFulfilledRequest as i1, type BulkMarkAsFulfilledResponse as i2, type BulkMarkAsFulfilledByFilterRequest as i3, type BulkMarkAsFulfilledByFilterResponse as i4, type MarkAsUnfulfilledRequest as i5, type MarkAsUnfulfilledResponse as i6, type BulkMarkAsUnfulfilledRequest as i7, type BulkMarkAsUnfulfilledResponse as i8, type BulkMarkAsUnfulfilledByFilterRequest as i9, type TaskAction as iA, type TaskActionActionOneOf as iB, type Complete as iC, type Cancel as iD, type Reschedule as iE, type InvoiceSentEvent as iF, type IdAndVersion as iG, type InvoiceFields as iH, type Customer as iI, type Email as iJ, type QuotesAddress as iK, type AddressDescription as iL, type Phone as iM, type Company as iN, type CommonAddress as iO, type CommonAddressStreetOneOf as iP, type Subdivision as iQ, type StandardDetails as iR, type InvoiceDates as iS, type LineItems as iT, type LineItem as iU, type BigDecimalWrapper as iV, type LineItemTax as iW, type Source as iX, type LineItemMetaData as iY, type Locale as iZ, type TotalPrice as i_, type BulkMarkAsUnfulfilledByFilterResponse as ia, type BulkSetBusinessLocationRequest as ib, type BulkSetBusinessLocationResponse as ic, type BulkSetBusinessLocationResult as id, type V1MarkOrderAsPaidRequest as ie, type V1MarkOrderAsPaidResponse as ig, type V1BulkMarkOrdersAsPaidRequest as ih, type V1BulkMarkOrdersAsPaidResponse as ii, type V1CreatePaymentGatewayOrderRequest as ij, type V1CreatePaymentGatewayOrderResponse as ik, type GetShipmentsRequest as il, type GetShipmentsResponse as im, type AggregateOrdersRequest as io, type DecrementItemsQuantityRequest as ip, type DecrementData as iq, type DecrementItemsQuantityResponse as ir, type BulkUpdateOrderTagsRequest as is, type TagsTags as it, type TagsTagList as iu, type BulkUpdateOrderTagsResult as iv, type SendOrderUpdatedDomainEventRequest as iw, type SendOrderUpdatedDomainEventResponse as ix, type Task as iy, type TaskKey as iz, type PaymentCollectionCreatePaymentGatewayOrderOptions as j, type ChargebackStatusWithLiterals as j$, type Discount as j0, type DiscountOneDiscountTypeOneOf as j1, type CalculatedTaxes as j2, type CalculatedTax as j3, type Payments as j4, type InvoicesPayment as j5, type MetaData as j6, type InvoiceDynamicPriceTotals as j7, type CustomFieldValue as j8, type Value as j9, type AdditionalFeeSourceWithLiterals as jA, type OrderActionTypeWithLiterals as jB, type SpecificItemsCouponBehaviorWithLiterals as jC, type ChargeTypeWithLiterals as jD, type DeltaPaymentOptionTypeWithLiterals as jE, type InventoryActionWithLiterals as jF, type WebhookIdentityTypeWithLiterals as jG, type VersioningModeWithLiterals as jH, type PreviewEmailTypeWithLiterals as jI, type StateWithLiterals as jJ, type SiteCreatedContextWithLiterals as jK, type NamespaceWithLiterals as jL, type DeleteStatusWithLiterals as jM, type OriginWithLiterals as jN, type ScheduledActionWithLiterals as jO, type DurationUnitWithLiterals as jP, type PaymentCollectabilityStatusWithLiterals as jQ, type PredefinedPaymentMethodWithLiterals as jR, type RefundableStatusWithLiterals as jS, type NonRefundableReasonWithLiterals as jT, type ManuallyRefundableReasonWithLiterals as jU, type RestockTypeWithLiterals as jV, type TransactionStatusWithLiterals as jW, type AuthorizationCaptureStatusWithLiterals as jX, type AuthorizationVoidStatusWithLiterals as jY, type ReasonWithLiterals as jZ, type ActionTypeWithLiterals as j_, type Deposit as ja, type BaseEventMetadata as jb, type EventMetadata as jc, type AccountInfoMetadata as jd, type OrderSearchSpec as je, utils as jf, type DescriptionLineTypeWithLiterals as jg, type DimensionsUnitWithLiterals as jh, type ItemTypePresetWithLiterals as ji, type PaymentOptionTypeWithLiterals as jj, type JurisdictionTypeWithLiterals as jk, type SubscriptionFrequencyWithLiterals as jl, type AdjustmentTypeWithLiterals as jm, type TaxableAddressTypeWithLiterals as jn, type PaymentStatusEnumPaymentStatusWithLiterals as jo, type FulfillmentStatusWithLiterals as jp, type WeightUnitWithLiterals as jq, type VatTypeWithLiterals as jr, type PickupMethodWithLiterals as js, type DiscountTypeWithLiterals as jt, type DiscountReasonWithLiterals as ju, type LineItemQuantityChangeTypeWithLiterals as jv, type ActivityTypeWithLiterals as jw, type OrderActivityTypeEnumActivityTypeWithLiterals as jx, type AttributionSourceWithLiterals as jy, type ChannelTypeWithLiterals as jz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as k, type MembershipPaymentStatusWithLiterals as k0, type PaymentStatusWithLiterals as k1, type RefundStatusWithLiterals as k2, type SortOrderWithLiterals as k3, type OrderApprovalStrategyWithLiterals as k4, type PlacementWithLiterals as k5, type SubdivisionTypeWithLiterals as k6, type SourceTypeWithLiterals as k7, type CustomFieldGroupWithLiterals as k8, type ValueTypeWithLiterals as k9, updateOrder as kA, bulkUpdateOrders as kB, updateOrderLineItem as kC, addActivity as kD, addActivities as kE, updateActivity as kF, deleteActivity as kG, cancelOrder as kH, updateOrderStatus as kI, aggregateOrders as kJ, bulkUpdateOrderTags as kK, type DepositTypeWithLiterals as ka, type InvoiceStatusWithLiterals as kb, type CommonSearchWithEntityContext as kc, onOrderApproved as kd, onOrderCanceled as ke, onOrderCommitted as kf, onOrderCreated as kg, onOrderFulfilled as kh, onOrderPaymentStatusUpdated as ki, onOrderUpdated as kj, importOrder as kk, setOrderNumberCounter as kl, bulkDeleteImportedOrders as km, preparePaymentCollection as kn, getPaymentCollectabilityStatus as ko, recordManuallyCollectedPayment as kp, paymentCollectionMarkOrderAsPaid as kq, paymentCollectionBulkMarkOrdersAsPaid as kr, getRefundabilityStatus as ks, paymentCollectionCreatePaymentGatewayOrder as kt, chargeMemberships as ku, triggerRefund as kv, voidAuthorizedPayments as kw, captureAuthorizedPayments as kx, getOrder as ky, createOrder as kz, type ChargeMembershipsOptions as l, type PaymentRefund as m, type TriggerRefundResponse as n, type TriggerRefundApplicationErrors as o, type VoidAuthorizedPaymentsApplicationErrors as p, type PaymentCapture as q, type CaptureAuthorizedPaymentsResponse as r, type CaptureAuthorizedPaymentsApplicationErrors as s, type GetOrderApplicationErrors as t, type OrderSearch as u, type SearchOrdersResponse as v, type CreateOrderOptions as w, type CreateOrderApplicationErrors as x, type UpdateOrderApplicationErrors as y, type MaskedOrder 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
|
|
3
|
-
export { d_ as AccountInfo, je as AccountInfoMetadata, dW as ActionEvent, a_ as ActionType, j$ as ActionTypeWithLiterals, cd as Activity, ce as ActivityContentOneOf, aw as ActivityType, jx as ActivityTypeWithLiterals, hS as AddActivitiesRequest, hQ as AddActivityRequest, ht as AddInternalActivityRequest, hP as AddInternalActivityResponse, fu as AddToAutomationMigrationPopulationRequest, fv as AddToAutomationMigrationPopulationResponse, db as AdditionalFee, dJ as AdditionalFeeDelta, dK as AdditionalFeeDeltaDeltaOneOf, eG as AdditionalFeeRefund, aA as AdditionalFeeSource, jB as AdditionalFeeSourceWithLiterals, bP as Address, iM as AddressDescription, bR as AddressLocation, bO as AddressWithContact, al as AdjustmentType, jn as AdjustmentTypeWithLiterals, ip as AggregateOrdersRequest, gl as AggregatedRefundSummary, fL as ApplicationError, c3 as AppliedDiscount, dH as AppliedDiscountDelta, dI as AppliedDiscountDeltaDeltaOneOf, c4 as AppliedDiscountDiscountSourceOneOf, h4 as ArchiveOrderRequest, h5 as ArchiveOrderResponse, eZ as Asset, ay as AttributionSource, jz as AttributionSourceWithLiterals, g8 as AuthorizationActionFailureDetails, g7 as AuthorizationCapture, aX as AuthorizationCaptureStatus, jY as AuthorizationCaptureStatusWithLiterals, g6 as AuthorizationDetails, g9 as AuthorizationVoid, aY as AuthorizationVoidStatus, jZ as AuthorizationVoidStatusWithLiterals, cE as AuthorizedPaymentCaptured, cD as AuthorizedPaymentCreated, cF as AuthorizedPaymentVoided, d9 as Balance, d8 as BalanceSummary, jc as BaseEventMetadata, iW as BigDecimalWrapper, bA as BillingAdjustment, bB as BillingAdjustmentPriceSummary, fM as BulkActionMetadata, h8 as BulkArchiveOrdersByFilterRequest, h9 as BulkArchiveOrdersByFilterResponse, h6 as BulkArchiveOrdersRequest, h7 as BulkArchiveOrdersResponse, dP as BulkDeleteImportedOrdersRequest, i4 as BulkMarkAsFulfilledByFilterRequest, i5 as BulkMarkAsFulfilledByFilterResponse, i2 as BulkMarkAsFulfilledRequest, i3 as BulkMarkAsFulfilledResponse, ia as BulkMarkAsUnfulfilledByFilterRequest, ib as BulkMarkAsUnfulfilledByFilterResponse, i8 as BulkMarkAsUnfulfilledRequest, i9 as BulkMarkAsUnfulfilledResponse, fI as BulkMarkOrdersAsPaidRequest, fJ as BulkOrderResult, ek as BulkSendBuyerPickupConfirmationEmailsRequest, el as BulkSendBuyerPickupConfirmationEmailsResponse, eo as BulkSendBuyerShippingConfirmationEmailsRequest, ep as BulkSendBuyerShippingConfirmationEmailsResponse, ic as BulkSetBusinessLocationRequest, id as BulkSetBusinessLocationResponse, ie as BulkSetBusinessLocationResult, he as BulkUnArchiveOrdersByFilterRequest, hf as BulkUnArchiveOrdersByFilterResponse, hc as BulkUnArchiveOrdersRequest, hd as BulkUnArchiveOrdersResponse, it as BulkUpdateOrderTagsRequest, iw as BulkUpdateOrderTagsResult, gW as BulkUpdateOrdersRequest, bK as BuyerInfo, bL as BuyerInfoIdOneOf, hh as BuyerInfoUpdate, gp as CalculateRefundItemRequest, gr as CalculateRefundItemResponse, go as CalculateRefundRequest, gq as CalculateRefundResponse, j4 as CalculatedTax, j3 as CalculatedTaxes, iE as Cancel, h_ as CancelOrderRequest, gt as CaptureAuthorizedPaymentsRequest, da as CashRounding, gh as CashRoundingDetails, be as CatalogReference, d6 as ChannelInfo, az as ChannelType, jA as ChannelTypeWithLiterals, fS as ChargeMembershipsRequest, fW as ChargeMembershipsResponse, gu as ChargeSavedPaymentMethodRequest, gv as ChargeSavedPaymentMethodResponse, aD as ChargeType, jE as ChargeTypeWithLiterals, gb as Chargeback, d2 as ChargebackCreated, d3 as ChargebackReversed, a$ as ChargebackStatus, k0 as ChargebackStatusWithLiterals, fR as ChargedBy, bk as Color, gX as CommitDeltasRequest, h3 as CommitDeltasResponse, dB as CommittedDiffs, dC as CommittedDiffsShippingUpdateInfoOneOf, iP as CommonAddress, iQ as CommonAddressStreetOneOf, kd as CommonSearchWithEntityContext, iO as Company, iD as Complete, c5 as Coupon, gP as CreateOrderRequest, gT as CreateOrderResponse, fQ as CreatePaymentGatewayOrderRequest, d4 as CreatedBy, d5 as CreatedByStringOneOf, cT as CreditCardDetails, g5 as CreditCardPaymentMethodDetails, bM as CurrencyConversionDetails, gF as CursorPaging, gO as CursorPagingMetadata, gM as CursorSearch, gN as CursorSearchPagingMethodOneOf, gI as Cursors, cf as CustomActivity, dj as CustomAllowedActions, d7 as CustomField, b8 as CustomFieldGroup, k9 as CustomFieldGroupWithLiterals, j9 as CustomFieldValue, iJ as Customer, ir as DecrementData, iq as DecrementItemsQuantityRequest, is as DecrementItemsQuantityResponse, fA as DelayedCaptureSettings, hU as DeleteActivityRequest, e4 as DeleteByFilterOperation, e3 as DeleteByIdsOperation, f1 as DeleteContext, aM as DeleteStatus, jN as DeleteStatusWithLiterals, bV as DeliveryLogistics, bW as DeliveryLogisticsAddressOneOf, bZ as DeliveryTimeSlot, aE as DeltaPaymentOptionType, jF as DeltaPaymentOptionTypeWithLiterals, jb as Deposit, ba as DepositType, kb as DepositTypeWithLiterals, bf as DescriptionLine, bh as DescriptionLineDescriptionLineValueOneOf, bi as DescriptionLineName, af as DescriptionLineType, jh as DescriptionLineTypeWithLiterals, bg as DescriptionLineValueOneOf, gw as DiffmatokyPayload, bu as DigitalFile, bn as Dimensions, ag as DimensionsUnit, ji as DimensionsUnitWithLiterals, j1 as Discount, j2 as DiscountOneDiscountTypeOneOf, au as DiscountReason, jv as DiscountReasonWithLiterals, c8 as DiscountRule, c9 as DiscountRuleName, at as DiscountType, ju as DiscountTypeWithLiterals, dQ as DomainEvent, dR as DomainEventBodyOneOf, hB as DownloadLinkSent, cl as DraftOrderChangesApplied, dL as DraftOrderCommitSettings, gY as DraftOrderDiffs, g$ as DraftOrderDiffsBillingUpdateInfoOneOf, g_ as DraftOrderDiffsBuyerUpdateInfoOneOf, h0 as DraftOrderDiffsRecipientUpdateInfoOneOf, gZ as DraftOrderDiffsShippingUpdateInfoOneOf, fB as Duration, aP as DurationUnit, jQ as DurationUnitWithLiterals, fq as EditorlessAssigned, fr as EditorlessUnassigned, iK as Email, hK as EmailEdited, ec as Empty, dS as EntityCreatedEvent, dV as EntityDeletedEvent, dU as EntityUpdatedEvent, gx as ErrorInformation, jd as EventMetadata, bG as ExtendedFields, c$ as ExternalReceipt, gg as ExternalReceiptInfo, bl as FocalPoint, dm as FormIdentifier, dl as FormInfo, bz as FreeTrialPeriod, hI as FulfillerEmailSent, ao as FulfillmentStatus, dy as FulfillmentStatusUpdated, jq as FulfillmentStatusWithLiterals, dc as FulfillmentStatusesAggregate, bS as FullAddressContactDetails, gy as GetOrderRequest, gz as GetOrderResponse, fC as GetPaymentCollectabilityStatusRequest, fN as GetRefundabilityStatusRequest, im as GetShipmentsRequest, io as GetShipmentsResponse, gd as GiftCardPaymentDetails, cK as GiftCardPaymentRefund, fs as HasCustomEmailConfigurationsRequest, ft as HasCustomEmailConfigurationsResponse, iH as IdAndVersion, dY as IdentificationData, dZ as IdentificationDataIdOneOf, dN as ImportOrderRequest, dw as ImportedOrderDeleted, hu as InternalActivity, hv as InternalActivityContentOneOf, e1 as InternalDocument, e5 as InternalDocumentUpdateByFilterOperation, e2 as InternalDocumentUpdateOperation, gA as InternalQueryOrdersRequest, gG as InternalQueryOrdersResponse, e6 as InternalUpdateExistingOperation, aF as InventoryAction, jG as InventoryActionWithLiterals, dM as InventoryUpdateDetails, hG as InvoiceAdded, iT as InvoiceDates, j8 as InvoiceDynamicPriceTotals, iI as InvoiceFields, hH as InvoiceSent, iG as InvoiceSentEvent, bb as InvoiceStatus, kc as InvoiceStatusWithLiterals, j6 as InvoicesPayment, fw as IsInAutomationMigrationPopulationRequest, fx as IsInAutomationMigrationPopulationResponse, dD as ItemChangedDetails, cb as ItemCombination, cc as ItemCombinationLineItem, fK as ItemMetadata, bJ as ItemModifier, br as ItemTaxFullDetails, bo as ItemType, bp as ItemTypeItemTypeDataOneOf, ah as ItemTypePreset, jj as ItemTypePresetWithLiterals, j0 as ItemizedFee, aj as JurisdictionType, jl as JurisdictionTypeWithLiterals, iV as LineItem, cx as LineItemAmount, co as LineItemChanges, dF as LineItemDelta, dG as LineItemDeltaDeltaOneOf, cs as LineItemDescriptionLineChange, ca as LineItemDiscount, ck as LineItemExchangeData, iZ as LineItemMetaData, ct as LineItemModifiersChange, cq as LineItemPriceChange, cr as LineItemProductNameChange, cp as LineItemQuantityChange, av as LineItemQuantityChangeType, jw as LineItemQuantityChangeTypeWithLiterals, eF as LineItemRefund, gn as LineItemRefundSummary, iX as LineItemTax, bt as LineItemTaxBreakdown, bs as LineItemTaxInfo, hW as LineItemUpdate, iU as LineItems, i_ as Locale, df as Location, bD as LocationAndQuantity, cy as ManagedAdditionalFee, cv as ManagedDiscount, cu as ManagedLineItem, aU as ManuallyRefundableReason, jV as ManuallyRefundableReasonWithLiterals, i0 as MarkAsFulfilledRequest, i1 as MarkAsFulfilledResponse, i6 as MarkAsUnfulfilledRequest, i7 as MarkAsUnfulfilledResponse, fH as MarkOrderAsPaidRequest, hY as MarkOrderAsSeenByHumanRequest, hZ as MarkOrderAsSeenByHumanResponse, hr as MaskedOrderLineItem, fT as MembershipChargeItem, fU as MembershipName, ge as MembershipPaymentDetails, cL as MembershipPaymentRefund, b0 as MembershipPaymentStatus, k1 as MembershipPaymentStatusWithLiterals, cg as MerchantComment, c6 as MerchantDiscount, c7 as MerchantDiscountMerchantDiscountReasonOneOf, dX as MessageEnvelope, j7 as MetaData, eX as MetaSiteSpecialEvent, eY as MetaSiteSpecialEventPayloadOneOf, bH as ModifierGroup, aL as Namespace, fb as NamespaceChanged, jM as NamespaceWithLiterals, cj as NewExchangeOrderCreated, aT as NonRefundableReason, jU as NonRefundableReasonWithLiterals, fg as OdeditorAssigned, fh as OdeditorUnassigned, aB as OrderActionType, jC as OrderActionTypeWithLiterals, ax as OrderActivityTypeEnumActivityType, jy as OrderActivityTypeEnumActivityTypeWithLiterals, b4 as OrderApprovalStrategy, k5 as OrderApprovalStrategyWithLiterals, dq as OrderApproved, hA as OrderCanceled, dz as OrderCanceledEventOrderCanceled, cm as OrderChange, cn as OrderChangeValueOneOf, gS as OrderCreateNotifications, ci as OrderCreatedFromExchange, gQ as OrderCreationSettings, gR as OrderCreationSettingsEditableByOneOf, dA as OrderDeltasCommitted, hy as OrderFulfilled, dv as OrderImported, dt as OrderItemsRestocked, bc as OrderLineItem, dE as OrderLineItemChangedDetails, hz as OrderNotFulfilled, hx as OrderPaid, hM as OrderPartiallyPaid, hN as OrderPending, hw as OrderPlaced, ch as OrderRefunded, hO as OrderRejected, ds as OrderRejectedEventOrderRejected, jf as OrderSearchSpec, dg as OrderSettings, dh as OrderSettingsAllowedActionsOneOf, di as OrderSettingsEditableByOneOf, as as OrderStatus, c2 as OrderTaxBreakdown, c1 as OrderTaxInfo, f$ as OrderTransactions, dr as OrdersExperiments, aN as Origin, jO as OriginWithLiterals, dk as OwnerApps, g0 as Payment, cU as PaymentCanceled, cV as PaymentCanceledPaymentDetailsOneOf, aQ as PaymentCollectabilityStatus, jR as PaymentCollectabilityStatusWithLiterals, cW as PaymentDeclined, cX as PaymentDeclinedPaymentDetailsOneOf, gc as PaymentMethodName, ai as PaymentOptionType, jk as PaymentOptionTypeWithLiterals, g1 as PaymentPaymentDetailsOneOf, cP as PaymentPending, cQ as PaymentPendingPaymentDetailsOneOf, g2 as PaymentReceiptInfoOneOf, cN as PaymentRefundFailed, cM as PaymentRefunded, b1 as PaymentStatus, an as PaymentStatusEnumPaymentStatus, jp as PaymentStatusEnumPaymentStatusWithLiterals, dx as PaymentStatusUpdated, k2 as PaymentStatusWithLiterals, j5 as Payments, iN as Phone, bm as PhysicalProperties, fi as PicassoAssigned, fj as PicassoUnassigned, bY as PickupAddress, bX as PickupDetails, ar as PickupMethod, jt as PickupMethodWithLiterals, hL as PickupReadyEmailSent, b5 as Placement, k6 as PlacementWithLiterals, bj as PlainTextValue, dp as PlatformFee, dn as PlatformFeeSummary, gE as PlatformPaging, gH as PlatformPagingMetadata, gB as PlatformQuery, gC as PlatformQueryPagingMethodOneOf, aR as PredefinedPaymentMethod, jS as PredefinedPaymentMethodWithLiterals, fy as PreparePaymentCollectionRequest, eP as PreviewBuyerConfirmationEmailRequest, eQ as PreviewBuyerConfirmationEmailResponse, eN as PreviewBuyerPaymentsReceivedEmailRequest, eO as PreviewBuyerPaymentsReceivedEmailResponse, eR as PreviewBuyerPickupConfirmationEmailRequest, eS as PreviewBuyerPickupConfirmationEmailResponse, eJ as PreviewCancelEmailRequest, eK as PreviewCancelEmailResponse, eL as PreviewCancelRefundEmailRequest, eM as PreviewCancelRefundEmailResponse, eA as PreviewEmailByTypeRequest, eB as PreviewEmailByTypeResponse, aI as PreviewEmailType, jJ as PreviewEmailTypeWithLiterals, eC as PreviewRefundEmailRequest, eI as PreviewRefundEmailResponse, eV as PreviewResendDownloadLinksEmailRequest, eW as PreviewResendDownloadLinksEmailResponse, eT as PreviewShippingConfirmationEmailRequest, eU as PreviewShippingConfirmationEmailResponse, bC as PriceDescription, bN as PriceSummary, bd as ProductName, hR as PublicActivityContentOneOf, gJ as QueryOrderRequest, gK as QueryOrderResponse, iL as QuotesAddress, aZ as Reason, j_ as ReasonWithLiterals, cY as ReceiptCreated, cZ as ReceiptCreatedReceiptInfoOneOf, d0 as ReceiptSent, d1 as ReceiptSentReceiptInfoOneOf, fD as RecordManuallyCollectedPaymentRequest, fG as RecordManuallyCollectedPaymentResponse, fz as RedirectUrls, gi as Refund, eD as RefundDetails, cG as RefundInitiated, eE as RefundItem, gm as RefundItemsBreakdown, fY as RefundSideEffects, b2 as RefundStatus, gk as RefundStatusInfo, k3 as RefundStatusWithLiterals, gj as RefundTransaction, fO as Refundability, fP as RefundabilityAdditionalRefundabilityInfoOneOf, aS as RefundableStatus, jT as RefundableStatusWithLiterals, cO as RefundedAsStoreCredit, cH as RefundedPayment, cI as RefundedPaymentKindOneOf, cR as RegularPayment, g3 as RegularPaymentDetails, g4 as RegularPaymentDetailsPaymentMethodDetailsOneOf, cS as RegularPaymentPaymentMethodDetailsOneOf, cJ as RegularPaymentRefund, iF as Reschedule, fZ as RestockInfo, f_ as RestockItem, bq as RestockLocation, aV as RestockType, jW as RestockTypeWithLiterals, dT as RestoreInfo, cC as SavedPaymentMethod, aO as ScheduledAction, jP as ScheduledActionWithLiterals, gL as SearchOrdersRequest, ee as SendBuyerConfirmationEmailRequest, ef as SendBuyerConfirmationEmailResponse, eg as SendBuyerPaymentsReceivedEmailRequest, eh as SendBuyerPaymentsReceivedEmailResponse, ei as SendBuyerPickupConfirmationEmailRequest, ej as SendBuyerPickupConfirmationEmailResponse, em as SendBuyerShippingConfirmationEmailRequest, en as SendBuyerShippingConfirmationEmailResponse, es as SendCancelRefundEmailRequest, et as SendCancelRefundEmailResponse, ew as SendFulfillmentEmailRequest, ex as SendFulfillmentEmailResponse, eq as SendMerchantOrderReceivedNotificationRequest, er as SendMerchantOrderReceivedNotificationResponse, ey as SendMerchantOrderReceivedPushRequest, ez as SendMerchantOrderReceivedPushResponse, ix as SendOrderUpdatedDomainEventRequest, iy as SendOrderUpdatedDomainEventResponse, eu as SendRefundEmailRequest, ev as SendRefundEmailResponse, fV as ServiceProperties, f7 as ServiceProvisioned, f8 as ServiceRemoved, dO as SetOrderNumberCounterRequest, hJ as ShippingAddressEdited, hF as ShippingConfirmationEmailSent, cB as ShippingInformation, cA as ShippingInformationChange, b_ as ShippingPrice, eH as ShippingRefund, b$ as ShippingRegion, e_ as SiteCreated, aK as SiteCreatedContext, jL as SiteCreatedContextWithLiterals, f0 as SiteDeleted, fa as SiteHardDeleted, f5 as SiteMarkedAsTemplate, f6 as SiteMarkedAsWixSite, f3 as SitePublished, ff as SitePurgedExternally, f9 as SiteRenamed, e$ as SiteTransferred, f2 as SiteUndeleted, f4 as SiteUnpublished, fe as SiteUrlChanged, b3 as SortOrder, k4 as SortOrderWithLiterals, gD as Sorting, iY as Source, b7 as SourceType, k8 as SourceTypeWithLiterals, aC as SpecificItemsCouponBehavior, jD as SpecificItemsCouponBehaviorWithLiterals, iS as StandardDetails, aJ as State, jK as StateWithLiterals, bQ as StreetAddress, fc as StudioAssigned, fm as StudioTwoAssigned, fn as StudioTwoUnassigned, fd as StudioUnassigned, iR as Subdivision, b6 as SubdivisionType, k7 as SubdivisionTypeWithLiterals, bx as SubscriptionDescription, ak as SubscriptionFrequency, jm as SubscriptionFrequencyWithLiterals, bv as SubscriptionInfo, by as SubscriptionSettings, bw as SubscriptionTitle, de as TagList, dd as Tags, iv as TagsTagList, iu as TagsTags, iz as Task, iB as TaskAction, iC as TaskActionActionOneOf, iA as TaskKey, c0 as TaxSummary, bE as TaxableAddress, bF as TaxableAddressTaxableAddressDataOneOf, am as TaxableAddressType, jo as TaxableAddressTypeWithLiterals, i$ as TotalPrice, cz as TotalPriceChange, hE as TrackingLinkAdded, hC as TrackingNumberAdded, hD as TrackingNumberEdited, aW as TransactionStatus, jX as TransactionStatusWithLiterals, bI as TranslatableString, cw as TranslatedValue, fX as TriggerRefundRequest, ed as TriggerReindexOrderRequest, ea as TriggerReindexRequest, eb as TriggerReindexResponse, ha as UnArchiveOrderRequest, hb as UnArchiveOrderResponse, hT as UpdateActivityRequest, hn as UpdateBillingContactDetailsRequest, ho as UpdateBillingContactDetailsResponse, hj as UpdateBuyerEmailRequest, hk as UpdateBuyerEmailResponse, hg as UpdateBuyerInfoRequest, hi as UpdateBuyerInfoResponse, d$ as UpdateInternalDocumentsEvent, e0 as UpdateInternalDocumentsEventOperationOneOf, hV as UpdateLineItemsDescriptionLinesRequest, hX as UpdateLineItemsDescriptionLinesResponse, hp as UpdateOrderLineItemRequest, hq as UpdateOrderLineItemsRequest, hs as UpdateOrderLineItemsResponse, gU as UpdateOrderRequest, gV as UpdateOrderResponse, hl as UpdateOrderShippingAddressRequest, hm as UpdateOrderShippingAddressResponse, h$ as UpdateOrderStatusRequest, fE as UserDefinedPaymentMethodName, fF as UserDefinedPaymentMethodNameKindOneOf, fp as UserDomainMediaDisabled, fo as UserDomainMediaEnabled, ii as V1BulkMarkOrdersAsPaidRequest, ij as V1BulkMarkOrdersAsPaidResponse, ik as V1CreatePaymentGatewayOrderRequest, il as V1CreatePaymentGatewayOrderResponse, h1 as V1LineItemDelta, h2 as V1LineItemDeltaDeltaOneOf, ig as V1MarkOrderAsPaidRequest, ih as V1MarkOrderAsPaidResponse, du as V1RestockItem, ga as V1ScheduledAction, bU as V1ShippingInformation, ja as Value, b9 as ValueType, ka as ValueTypeWithLiterals, bT as VatId, aq as VatType, js as VatTypeWithLiterals, e8 as VersionedDeleteByIdsOperation, e9 as VersionedDocumentId, e7 as VersionedDocumentUpdateOperation, aH as VersioningMode, jI as VersioningModeWithLiterals, gs as VoidAuthorizedPaymentsRequest, aG as WebhookIdentityType, jH as WebhookIdentityTypeWithLiterals, ap as WeightUnit, jr as WeightUnitWithLiterals, c_ as WixReceipt, gf as WixReceiptInfo, fk as WixelAssigned, fl as WixelUnassigned, jg as utils } from './ecom-v1-order-orders.universal-CeXWha4g.js';
|
|
2
|
+
import { O as Order, I as ImportOrderResponse, S as SetOrderNumberCounterOptions, a as SetOrderNumberCounterResponse, B as BulkDeleteImportedOrdersResponse, P as Price, b as PreparePaymentCollectionOptions, c as PreparePaymentCollectionResponse, d as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, R as RecordManuallyCollectedPaymentOptions, e as RecordManuallyCollectedPaymentApplicationErrors, f as PaymentCollectionMarkOrderAsPaidOptions, M as MarkOrderAsPaidResponse, g as PaymentCollectionMarkOrderAsPaidApplicationErrors, h as BulkMarkOrdersAsPaidResponse, i as GetRefundabilityStatusResponse, j as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, k as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, l as ChargeMembershipsOptions, m as PaymentRefund, T as TriggerRefundOptions, n as TriggerRefundResponse, o as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, p as VoidAuthorizedPaymentsApplicationErrors, q as PaymentCapture, r as CaptureAuthorizedPaymentsResponse, s as CaptureAuthorizedPaymentsApplicationErrors, t as GetOrderApplicationErrors, u as OrderSearch, v as SearchOrdersResponse, w as CreateOrderOptions, x as CreateOrderApplicationErrors, U as UpdateOrder, y as UpdateOrderApplicationErrors, z as MaskedOrder, A as BulkUpdateOrdersOptions, D as BulkUpdateOrdersResponse, E as UpdateOrderLineItemIdentifiers, F as UpdateOrderLineItem, H as UpdateOrderLineItemResponse, J as PublicActivity, K as AddActivityResponse, L as AddActivitiesOptions, N as AddActivitiesResponse, 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 OrderCanceledEnvelope, a9 as OrderCommittedEnvelope, aa as OrderCreatedEnvelope, ab as OrderFulfilledEnvelope, ac as OrderPaymentStatusUpdatedEnvelope, ad as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-QJ_VV3kp.js';
|
|
3
|
+
export { dZ as AccountInfo, jd as AccountInfoMetadata, dV as ActionEvent, aZ as ActionType, j_ as ActionTypeWithLiterals, cc as Activity, cd as ActivityContentOneOf, av as ActivityType, jw as ActivityTypeWithLiterals, hR as AddActivitiesRequest, hP as AddActivityRequest, hs as AddInternalActivityRequest, hO as AddInternalActivityResponse, ft as AddToAutomationMigrationPopulationRequest, fu as AddToAutomationMigrationPopulationResponse, da as AdditionalFee, dI as AdditionalFeeDelta, dJ as AdditionalFeeDeltaDeltaOneOf, eF as AdditionalFeeRefund, az as AdditionalFeeSource, jA as AdditionalFeeSourceWithLiterals, bO as Address, iL as AddressDescription, bQ as AddressLocation, bN as AddressWithContact, ak as AdjustmentType, jm as AdjustmentTypeWithLiterals, io as AggregateOrdersRequest, gk as AggregatedRefundSummary, fK as ApplicationError, c2 as AppliedDiscount, dG as AppliedDiscountDelta, dH as AppliedDiscountDeltaDeltaOneOf, c3 as AppliedDiscountDiscountSourceOneOf, h3 as ArchiveOrderRequest, h4 as ArchiveOrderResponse, eY as Asset, ax as AttributionSource, jy as AttributionSourceWithLiterals, g7 as AuthorizationActionFailureDetails, g6 as AuthorizationCapture, aW as AuthorizationCaptureStatus, jX as AuthorizationCaptureStatusWithLiterals, g5 as AuthorizationDetails, g8 as AuthorizationVoid, aX as AuthorizationVoidStatus, jY as AuthorizationVoidStatusWithLiterals, cD as AuthorizedPaymentCaptured, cC as AuthorizedPaymentCreated, cE as AuthorizedPaymentVoided, d8 as Balance, d7 as BalanceSummary, jb as BaseEventMetadata, iV as BigDecimalWrapper, bz as BillingAdjustment, bA as BillingAdjustmentPriceSummary, fL as BulkActionMetadata, h7 as BulkArchiveOrdersByFilterRequest, h8 as BulkArchiveOrdersByFilterResponse, h5 as BulkArchiveOrdersRequest, h6 as BulkArchiveOrdersResponse, dO as BulkDeleteImportedOrdersRequest, i3 as BulkMarkAsFulfilledByFilterRequest, i4 as BulkMarkAsFulfilledByFilterResponse, i1 as BulkMarkAsFulfilledRequest, i2 as BulkMarkAsFulfilledResponse, i9 as BulkMarkAsUnfulfilledByFilterRequest, ia as BulkMarkAsUnfulfilledByFilterResponse, i7 as BulkMarkAsUnfulfilledRequest, i8 as BulkMarkAsUnfulfilledResponse, fH as BulkMarkOrdersAsPaidRequest, fI as BulkOrderResult, ej as BulkSendBuyerPickupConfirmationEmailsRequest, ek as BulkSendBuyerPickupConfirmationEmailsResponse, en as BulkSendBuyerShippingConfirmationEmailsRequest, eo as BulkSendBuyerShippingConfirmationEmailsResponse, ib as BulkSetBusinessLocationRequest, ic as BulkSetBusinessLocationResponse, id as BulkSetBusinessLocationResult, hd as BulkUnArchiveOrdersByFilterRequest, he as BulkUnArchiveOrdersByFilterResponse, hb as BulkUnArchiveOrdersRequest, hc as BulkUnArchiveOrdersResponse, is as BulkUpdateOrderTagsRequest, iv as BulkUpdateOrderTagsResult, gV as BulkUpdateOrdersRequest, bJ as BuyerInfo, bK as BuyerInfoIdOneOf, hg as BuyerInfoUpdate, go as CalculateRefundItemRequest, gq as CalculateRefundItemResponse, gn as CalculateRefundRequest, gp as CalculateRefundResponse, j3 as CalculatedTax, j2 as CalculatedTaxes, iD as Cancel, hZ as CancelOrderRequest, gs as CaptureAuthorizedPaymentsRequest, d9 as CashRounding, gg as CashRoundingDetails, bd as CatalogReference, d5 as ChannelInfo, ay as ChannelType, jz as ChannelTypeWithLiterals, fR as ChargeMembershipsRequest, fV as ChargeMembershipsResponse, gt as ChargeSavedPaymentMethodRequest, gu as ChargeSavedPaymentMethodResponse, aC as ChargeType, jD as ChargeTypeWithLiterals, ga as Chargeback, d1 as ChargebackCreated, d2 as ChargebackReversed, a_ as ChargebackStatus, j$ as ChargebackStatusWithLiterals, fQ as ChargedBy, bj as Color, gW as CommitDeltasRequest, h2 as CommitDeltasResponse, dA as CommittedDiffs, dB as CommittedDiffsShippingUpdateInfoOneOf, iO as CommonAddress, iP as CommonAddressStreetOneOf, kc as CommonSearchWithEntityContext, iN as Company, iC as Complete, c4 as Coupon, gO as CreateOrderRequest, gS as CreateOrderResponse, fP as CreatePaymentGatewayOrderRequest, d3 as CreatedBy, d4 as CreatedByStringOneOf, cS as CreditCardDetails, g4 as CreditCardPaymentMethodDetails, bL as CurrencyConversionDetails, gE as CursorPaging, gN as CursorPagingMetadata, gL as CursorSearch, gM as CursorSearchPagingMethodOneOf, gH as Cursors, ce as CustomActivity, di as CustomAllowedActions, d6 as CustomField, b7 as CustomFieldGroup, k8 as CustomFieldGroupWithLiterals, j8 as CustomFieldValue, iI as Customer, iq as DecrementData, ip as DecrementItemsQuantityRequest, ir as DecrementItemsQuantityResponse, fz as DelayedCaptureSettings, hT as DeleteActivityRequest, e3 as DeleteByFilterOperation, e2 as DeleteByIdsOperation, f0 as DeleteContext, aL as DeleteStatus, jM as DeleteStatusWithLiterals, bU as DeliveryLogistics, bV as DeliveryLogisticsAddressOneOf, bY as DeliveryTimeSlot, aD as DeltaPaymentOptionType, jE as DeltaPaymentOptionTypeWithLiterals, ja as Deposit, b9 as DepositType, ka as DepositTypeWithLiterals, be as DescriptionLine, bg as DescriptionLineDescriptionLineValueOneOf, bh as DescriptionLineName, ae as DescriptionLineType, jg as DescriptionLineTypeWithLiterals, bf as DescriptionLineValueOneOf, gv as DiffmatokyPayload, bt as DigitalFile, bm as Dimensions, af as DimensionsUnit, jh as DimensionsUnitWithLiterals, j0 as Discount, j1 as DiscountOneDiscountTypeOneOf, at as DiscountReason, ju as DiscountReasonWithLiterals, c7 as DiscountRule, c8 as DiscountRuleName, as as DiscountType, jt as DiscountTypeWithLiterals, dP as DomainEvent, dQ as DomainEventBodyOneOf, hA as DownloadLinkSent, ck as DraftOrderChangesApplied, dK as DraftOrderCommitSettings, gX as DraftOrderDiffs, g_ as DraftOrderDiffsBillingUpdateInfoOneOf, gZ as DraftOrderDiffsBuyerUpdateInfoOneOf, g$ as DraftOrderDiffsRecipientUpdateInfoOneOf, gY as DraftOrderDiffsShippingUpdateInfoOneOf, fA as Duration, aO as DurationUnit, jP as DurationUnitWithLiterals, fp as EditorlessAssigned, fq as EditorlessUnassigned, iJ as Email, hJ as EmailEdited, eb as Empty, dR as EntityCreatedEvent, dU as EntityDeletedEvent, dT as EntityUpdatedEvent, gw as ErrorInformation, jc as EventMetadata, bF as ExtendedFields, c_ as ExternalReceipt, gf as ExternalReceiptInfo, bk as FocalPoint, dl as FormIdentifier, dk as FormInfo, by as FreeTrialPeriod, hH as FulfillerEmailSent, an as FulfillmentStatus, dx as FulfillmentStatusUpdated, jp as FulfillmentStatusWithLiterals, db as FulfillmentStatusesAggregate, bR as FullAddressContactDetails, gx as GetOrderRequest, gy as GetOrderResponse, fB as GetPaymentCollectabilityStatusRequest, fM as GetRefundabilityStatusRequest, il as GetShipmentsRequest, im as GetShipmentsResponse, gc as GiftCardPaymentDetails, cJ as GiftCardPaymentRefund, fr as HasCustomEmailConfigurationsRequest, fs as HasCustomEmailConfigurationsResponse, iG as IdAndVersion, dX as IdentificationData, dY as IdentificationDataIdOneOf, dM as ImportOrderRequest, dv as ImportedOrderDeleted, ht as InternalActivity, hu as InternalActivityContentOneOf, e0 as InternalDocument, e4 as InternalDocumentUpdateByFilterOperation, e1 as InternalDocumentUpdateOperation, gz as InternalQueryOrdersRequest, gF as InternalQueryOrdersResponse, e5 as InternalUpdateExistingOperation, aE as InventoryAction, jF as InventoryActionWithLiterals, dL as InventoryUpdateDetails, hF as InvoiceAdded, iS as InvoiceDates, j7 as InvoiceDynamicPriceTotals, iH as InvoiceFields, hG as InvoiceSent, iF as InvoiceSentEvent, ba as InvoiceStatus, kb as InvoiceStatusWithLiterals, j5 as InvoicesPayment, fv as IsInAutomationMigrationPopulationRequest, fw as IsInAutomationMigrationPopulationResponse, dC as ItemChangedDetails, ca as ItemCombination, cb as ItemCombinationLineItem, fJ as ItemMetadata, bI as ItemModifier, bq as ItemTaxFullDetails, bn as ItemType, bo as ItemTypeItemTypeDataOneOf, ag as ItemTypePreset, ji as ItemTypePresetWithLiterals, i$ as ItemizedFee, ai as JurisdictionType, jk as JurisdictionTypeWithLiterals, iU as LineItem, cw as LineItemAmount, cn as LineItemChanges, dE as LineItemDelta, dF as LineItemDeltaDeltaOneOf, cr as LineItemDescriptionLineChange, c9 as LineItemDiscount, cj as LineItemExchangeData, iY as LineItemMetaData, cs as LineItemModifiersChange, cp as LineItemPriceChange, cq as LineItemProductNameChange, co as LineItemQuantityChange, au as LineItemQuantityChangeType, jv as LineItemQuantityChangeTypeWithLiterals, eE as LineItemRefund, gm as LineItemRefundSummary, iW as LineItemTax, bs as LineItemTaxBreakdown, br as LineItemTaxInfo, hV as LineItemUpdate, iT as LineItems, iZ as Locale, de as Location, bC as LocationAndQuantity, cx as ManagedAdditionalFee, cu as ManagedDiscount, ct as ManagedLineItem, aT as ManuallyRefundableReason, jU as ManuallyRefundableReasonWithLiterals, h$ as MarkAsFulfilledRequest, i0 as MarkAsFulfilledResponse, i5 as MarkAsUnfulfilledRequest, i6 as MarkAsUnfulfilledResponse, fG as MarkOrderAsPaidRequest, hX as MarkOrderAsSeenByHumanRequest, hY as MarkOrderAsSeenByHumanResponse, hq as MaskedOrderLineItem, fS as MembershipChargeItem, fT as MembershipName, gd as MembershipPaymentDetails, cK as MembershipPaymentRefund, a$ as MembershipPaymentStatus, k0 as MembershipPaymentStatusWithLiterals, cf as MerchantComment, c5 as MerchantDiscount, c6 as MerchantDiscountMerchantDiscountReasonOneOf, dW as MessageEnvelope, j6 as MetaData, eW as MetaSiteSpecialEvent, eX as MetaSiteSpecialEventPayloadOneOf, bG as ModifierGroup, aK as Namespace, fa as NamespaceChanged, jL as NamespaceWithLiterals, ci as NewExchangeOrderCreated, aS as NonRefundableReason, jT as NonRefundableReasonWithLiterals, ff as OdeditorAssigned, fg as OdeditorUnassigned, aA as OrderActionType, jB as OrderActionTypeWithLiterals, aw as OrderActivityTypeEnumActivityType, jx as OrderActivityTypeEnumActivityTypeWithLiterals, b3 as OrderApprovalStrategy, k4 as OrderApprovalStrategyWithLiterals, dp as OrderApproved, hz as OrderCanceled, dy as OrderCanceledEventOrderCanceled, cl as OrderChange, cm as OrderChangeValueOneOf, gR as OrderCreateNotifications, ch as OrderCreatedFromExchange, gP as OrderCreationSettings, gQ as OrderCreationSettingsEditableByOneOf, dz as OrderDeltasCommitted, hx as OrderFulfilled, du as OrderImported, ds as OrderItemsRestocked, bb as OrderLineItem, dD as OrderLineItemChangedDetails, hy as OrderNotFulfilled, hw as OrderPaid, hL as OrderPartiallyPaid, hM as OrderPending, hv as OrderPlaced, cg as OrderRefunded, hN as OrderRejected, dr as OrderRejectedEventOrderRejected, je as OrderSearchSpec, df as OrderSettings, dg as OrderSettingsAllowedActionsOneOf, dh as OrderSettingsEditableByOneOf, ar as OrderStatus, c1 as OrderTaxBreakdown, c0 as OrderTaxInfo, f_ as OrderTransactions, dq as OrdersExperiments, aM as Origin, jN as OriginWithLiterals, dj as OwnerApps, f$ as Payment, cT as PaymentCanceled, cU as PaymentCanceledPaymentDetailsOneOf, aP as PaymentCollectabilityStatus, jQ as PaymentCollectabilityStatusWithLiterals, cV as PaymentDeclined, cW as PaymentDeclinedPaymentDetailsOneOf, gb as PaymentMethodName, ah as PaymentOptionType, jj as PaymentOptionTypeWithLiterals, g0 as PaymentPaymentDetailsOneOf, cO as PaymentPending, cP as PaymentPendingPaymentDetailsOneOf, g1 as PaymentReceiptInfoOneOf, cM as PaymentRefundFailed, cL as PaymentRefunded, b0 as PaymentStatus, am as PaymentStatusEnumPaymentStatus, jo as PaymentStatusEnumPaymentStatusWithLiterals, dw as PaymentStatusUpdated, k1 as PaymentStatusWithLiterals, j4 as Payments, iM as Phone, bl as PhysicalProperties, fh as PicassoAssigned, fi as PicassoUnassigned, bX as PickupAddress, bW as PickupDetails, aq as PickupMethod, js as PickupMethodWithLiterals, hK as PickupReadyEmailSent, b4 as Placement, k5 as PlacementWithLiterals, bi as PlainTextValue, dn as PlatformFee, dm as PlatformFeeSummary, gD as PlatformPaging, gG as PlatformPagingMetadata, gA as PlatformQuery, gB as PlatformQueryPagingMethodOneOf, aQ as PredefinedPaymentMethod, jR as PredefinedPaymentMethodWithLiterals, fx as PreparePaymentCollectionRequest, eO as PreviewBuyerConfirmationEmailRequest, eP as PreviewBuyerConfirmationEmailResponse, eM as PreviewBuyerPaymentsReceivedEmailRequest, eN as PreviewBuyerPaymentsReceivedEmailResponse, eQ as PreviewBuyerPickupConfirmationEmailRequest, eR as PreviewBuyerPickupConfirmationEmailResponse, eI as PreviewCancelEmailRequest, eJ as PreviewCancelEmailResponse, eK as PreviewCancelRefundEmailRequest, eL as PreviewCancelRefundEmailResponse, ez as PreviewEmailByTypeRequest, eA as PreviewEmailByTypeResponse, aH as PreviewEmailType, jI as PreviewEmailTypeWithLiterals, eB as PreviewRefundEmailRequest, eH as PreviewRefundEmailResponse, eU as PreviewResendDownloadLinksEmailRequest, eV as PreviewResendDownloadLinksEmailResponse, eS as PreviewShippingConfirmationEmailRequest, eT as PreviewShippingConfirmationEmailResponse, bB as PriceDescription, bM as PriceSummary, bc as ProductName, hQ as PublicActivityContentOneOf, gI as QueryOrderRequest, gJ as QueryOrderResponse, iK as QuotesAddress, aY as Reason, jZ as ReasonWithLiterals, cX as ReceiptCreated, cY as ReceiptCreatedReceiptInfoOneOf, c$ as ReceiptSent, d0 as ReceiptSentReceiptInfoOneOf, fC as RecordManuallyCollectedPaymentRequest, fF as RecordManuallyCollectedPaymentResponse, fy as RedirectUrls, gh as Refund, eC as RefundDetails, cF as RefundInitiated, eD as RefundItem, gl as RefundItemsBreakdown, fX as RefundSideEffects, b1 as RefundStatus, gj as RefundStatusInfo, k2 as RefundStatusWithLiterals, gi as RefundTransaction, fN as Refundability, fO as RefundabilityAdditionalRefundabilityInfoOneOf, aR as RefundableStatus, jS as RefundableStatusWithLiterals, cN as RefundedAsStoreCredit, cG as RefundedPayment, cH as RefundedPaymentKindOneOf, cQ as RegularPayment, g2 as RegularPaymentDetails, g3 as RegularPaymentDetailsPaymentMethodDetailsOneOf, cR as RegularPaymentPaymentMethodDetailsOneOf, cI as RegularPaymentRefund, iE as Reschedule, fY as RestockInfo, fZ as RestockItem, bp as RestockLocation, aU as RestockType, jV as RestockTypeWithLiterals, dS as RestoreInfo, cB as SavedPaymentMethod, aN as ScheduledAction, jO as ScheduledActionWithLiterals, gK as SearchOrdersRequest, ed as SendBuyerConfirmationEmailRequest, ee as SendBuyerConfirmationEmailResponse, ef as SendBuyerPaymentsReceivedEmailRequest, eg as SendBuyerPaymentsReceivedEmailResponse, eh as SendBuyerPickupConfirmationEmailRequest, ei as SendBuyerPickupConfirmationEmailResponse, el as SendBuyerShippingConfirmationEmailRequest, em as SendBuyerShippingConfirmationEmailResponse, er as SendCancelRefundEmailRequest, es as SendCancelRefundEmailResponse, ev as SendFulfillmentEmailRequest, ew as SendFulfillmentEmailResponse, ep as SendMerchantOrderReceivedNotificationRequest, eq as SendMerchantOrderReceivedNotificationResponse, ex as SendMerchantOrderReceivedPushRequest, ey as SendMerchantOrderReceivedPushResponse, iw as SendOrderUpdatedDomainEventRequest, ix as SendOrderUpdatedDomainEventResponse, et as SendRefundEmailRequest, eu as SendRefundEmailResponse, fU as ServiceProperties, f6 as ServiceProvisioned, f7 as ServiceRemoved, dN as SetOrderNumberCounterRequest, hI as ShippingAddressEdited, hE as ShippingConfirmationEmailSent, cA as ShippingInformation, cz as ShippingInformationChange, bZ as ShippingPrice, eG as ShippingRefund, b_ as ShippingRegion, eZ as SiteCreated, aJ as SiteCreatedContext, jK as SiteCreatedContextWithLiterals, e$ as SiteDeleted, f9 as SiteHardDeleted, f4 as SiteMarkedAsTemplate, f5 as SiteMarkedAsWixSite, f2 as SitePublished, fe as SitePurgedExternally, f8 as SiteRenamed, e_ as SiteTransferred, f1 as SiteUndeleted, f3 as SiteUnpublished, fd as SiteUrlChanged, b2 as SortOrder, k3 as SortOrderWithLiterals, gC as Sorting, iX as Source, b6 as SourceType, k7 as SourceTypeWithLiterals, aB as SpecificItemsCouponBehavior, jC as SpecificItemsCouponBehaviorWithLiterals, iR as StandardDetails, aI as State, jJ as StateWithLiterals, bP as StreetAddress, fb as StudioAssigned, fl as StudioTwoAssigned, fm as StudioTwoUnassigned, fc as StudioUnassigned, iQ as Subdivision, b5 as SubdivisionType, k6 as SubdivisionTypeWithLiterals, bw as SubscriptionDescription, aj as SubscriptionFrequency, jl as SubscriptionFrequencyWithLiterals, bu as SubscriptionInfo, bx as SubscriptionSettings, bv as SubscriptionTitle, dd as TagList, dc as Tags, iu as TagsTagList, it as TagsTags, iy as Task, iA as TaskAction, iB as TaskActionActionOneOf, iz as TaskKey, b$ as TaxSummary, bD as TaxableAddress, bE as TaxableAddressTaxableAddressDataOneOf, al as TaxableAddressType, jn as TaxableAddressTypeWithLiterals, i_ as TotalPrice, cy as TotalPriceChange, hD as TrackingLinkAdded, hB as TrackingNumberAdded, hC as TrackingNumberEdited, aV as TransactionStatus, jW as TransactionStatusWithLiterals, bH as TranslatableString, cv as TranslatedValue, fW as TriggerRefundRequest, ec as TriggerReindexOrderRequest, e9 as TriggerReindexRequest, ea as TriggerReindexResponse, h9 as UnArchiveOrderRequest, ha as UnArchiveOrderResponse, hS as UpdateActivityRequest, hm as UpdateBillingContactDetailsRequest, hn as UpdateBillingContactDetailsResponse, hi as UpdateBuyerEmailRequest, hj as UpdateBuyerEmailResponse, hf as UpdateBuyerInfoRequest, hh as UpdateBuyerInfoResponse, d_ as UpdateInternalDocumentsEvent, d$ as UpdateInternalDocumentsEventOperationOneOf, hU as UpdateLineItemsDescriptionLinesRequest, hW as UpdateLineItemsDescriptionLinesResponse, ho as UpdateOrderLineItemRequest, hp as UpdateOrderLineItemsRequest, hr as UpdateOrderLineItemsResponse, gT as UpdateOrderRequest, gU as UpdateOrderResponse, hk as UpdateOrderShippingAddressRequest, hl as UpdateOrderShippingAddressResponse, h_ as UpdateOrderStatusRequest, fD as UserDefinedPaymentMethodName, fE as UserDefinedPaymentMethodNameKindOneOf, fo as UserDomainMediaDisabled, fn as UserDomainMediaEnabled, ih as V1BulkMarkOrdersAsPaidRequest, ii as V1BulkMarkOrdersAsPaidResponse, ij as V1CreatePaymentGatewayOrderRequest, ik as V1CreatePaymentGatewayOrderResponse, h0 as V1LineItemDelta, h1 as V1LineItemDeltaDeltaOneOf, ie as V1MarkOrderAsPaidRequest, ig as V1MarkOrderAsPaidResponse, dt as V1RestockItem, g9 as V1ScheduledAction, bT as V1ShippingInformation, j9 as Value, b8 as ValueType, k9 as ValueTypeWithLiterals, bS as VatId, ap as VatType, jr as VatTypeWithLiterals, e7 as VersionedDeleteByIdsOperation, e8 as VersionedDocumentId, e6 as VersionedDocumentUpdateOperation, aG as VersioningMode, jH as VersioningModeWithLiterals, gr as VoidAuthorizedPaymentsRequest, aF as WebhookIdentityType, jG as WebhookIdentityTypeWithLiterals, ao as WeightUnit, jq as WeightUnitWithLiterals, cZ as WixReceipt, ge as WixReceiptInfo, fj as WixelAssigned, fk as WixelUnassigned, jf as utils } from './ecom-v1-order-orders.universal-QJ_VV3kp.js';
|
|
4
4
|
|
|
5
5
|
/** @internal */
|
|
6
6
|
declare function importOrder$1(httpClient: HttpClient): ImportOrderSignature;
|
|
@@ -32,8 +32,10 @@ interface BulkDeleteImportedOrdersSignature {
|
|
|
32
32
|
/**
|
|
33
33
|
* Bulk deletes previously imported orders. Only works on orders
|
|
34
34
|
* that were created through the import process.
|
|
35
|
+
* @param - List of order ids to be deleted.
|
|
36
|
+
* Only orders imported via ImportOrders API can be deleted.
|
|
35
37
|
*/
|
|
36
|
-
(
|
|
38
|
+
(orderIds: string[]): Promise<NonNullablePaths<BulkDeleteImportedOrdersResponse, `jobId`, 2>>;
|
|
37
39
|
}
|
|
38
40
|
declare function preparePaymentCollection$1(httpClient: HttpClient): PreparePaymentCollectionSignature;
|
|
39
41
|
interface PreparePaymentCollectionSignature {
|
|
@@ -473,4 +475,4 @@ declare const onOrderPaymentStatusUpdated: BuildEventDefinition<typeof onOrderPa
|
|
|
473
475
|
*/
|
|
474
476
|
declare const onOrderUpdated: BuildEventDefinition<typeof onOrderUpdated$1> & typeof onOrderUpdated$1;
|
|
475
477
|
|
|
476
|
-
export { AddActivitiesOptions, AddActivitiesResponse, AddActivityResponse, AggregateOrdersOptions, AggregateOrdersResponse,
|
|
478
|
+
export { AddActivitiesOptions, AddActivitiesResponse, AddActivityResponse, AggregateOrdersOptions, AggregateOrdersResponse, BulkDeleteImportedOrdersResponse, BulkMarkOrdersAsPaidResponse, BulkUpdateOrderTagsOptions, BulkUpdateOrderTagsResponse, BulkUpdateOrdersOptions, BulkUpdateOrdersResponse, CancelOrderApplicationErrors, CancelOrderOptions, CancelOrderResponse, CaptureAuthorizedPaymentsApplicationErrors, CaptureAuthorizedPaymentsResponse, ChargeMembershipsOptions, CreateOrderApplicationErrors, CreateOrderOptions, CreatePaymentGatewayOrderResponse, DeleteActivityIdentifiers, DeleteActivityResponse, GetOrderApplicationErrors, GetPaymentCollectabilityStatusResponse, GetRefundabilityStatusResponse, ImportOrderResponse, MarkOrderAsPaidResponse, MaskedOrder, Order, OrderApprovedEnvelope, OrderCanceledEnvelope, OrderCommittedEnvelope, OrderCreatedEnvelope, OrderFulfilledEnvelope, OrderPaymentStatusUpdatedEnvelope, OrderSearch, OrderStatusWithLiterals, OrderUpdatedEnvelope, PaymentCapture, PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, PaymentCollectionCreatePaymentGatewayOrderOptions, PaymentCollectionMarkOrderAsPaidApplicationErrors, PaymentCollectionMarkOrderAsPaidOptions, PaymentRefund, PreparePaymentCollectionApplicationErrors, PreparePaymentCollectionOptions, PreparePaymentCollectionResponse, Price, PublicActivity, RecordManuallyCollectedPaymentApplicationErrors, RecordManuallyCollectedPaymentOptions, SearchOrdersResponse, SetOrderNumberCounterOptions, SetOrderNumberCounterResponse, TriggerRefundApplicationErrors, TriggerRefundOptions, TriggerRefundResponse, UpdateActivityIdentifiers, UpdateActivityResponse, UpdateOrder, UpdateOrderApplicationErrors, UpdateOrderLineItem, UpdateOrderLineItemIdentifiers, UpdateOrderLineItemResponse, UpdateOrderStatusApplicationErrors, UpdateOrderStatusResponse, VoidAuthorizedPaymentsApplicationErrors, VoidAuthorizedPaymentsResponse, addActivities, addActivity, aggregateOrders, bulkDeleteImportedOrders, bulkUpdateOrderTags, bulkUpdateOrders, cancelOrder, captureAuthorizedPayments, chargeMemberships, createOrder, deleteActivity, getOrder, getPaymentCollectabilityStatus, getRefundabilityStatus, importOrder, onOrderApproved, onOrderCanceled, onOrderCommitted, onOrderCreated, onOrderFulfilled, onOrderPaymentStatusUpdated, onOrderUpdated, paymentCollectionBulkMarkOrdersAsPaid, paymentCollectionCreatePaymentGatewayOrder, paymentCollectionMarkOrderAsPaid, preparePaymentCollection, recordManuallyCollectedPayment, searchOrders, setOrderNumberCounter, triggerRefund, updateActivity, updateOrder, updateOrderLineItem, updateOrderStatus, voidAuthorizedPayments };
|
|
@@ -2448,11 +2448,9 @@ async function setOrderNumberCounter2(counter, options) {
|
|
|
2448
2448
|
throw transformedError;
|
|
2449
2449
|
}
|
|
2450
2450
|
}
|
|
2451
|
-
async function bulkDeleteImportedOrders2(
|
|
2451
|
+
async function bulkDeleteImportedOrders2(orderIds) {
|
|
2452
2452
|
const { httpClient, sideEffects } = arguments[1];
|
|
2453
|
-
const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
|
|
2454
|
-
orderIds: options?.orderIds
|
|
2455
|
-
});
|
|
2453
|
+
const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({ orderIds });
|
|
2456
2454
|
const reqOpts = bulkDeleteImportedOrders(payload);
|
|
2457
2455
|
sideEffects?.onSiteCall?.();
|
|
2458
2456
|
try {
|
|
@@ -2464,10 +2462,10 @@ async function bulkDeleteImportedOrders2(options) {
|
|
|
2464
2462
|
err,
|
|
2465
2463
|
{
|
|
2466
2464
|
spreadPathsToArguments: {},
|
|
2467
|
-
explicitPathsToArguments: { orderIds: "$[0]
|
|
2465
|
+
explicitPathsToArguments: { orderIds: "$[0]" },
|
|
2468
2466
|
singleArgumentUnchanged: false
|
|
2469
2467
|
},
|
|
2470
|
-
["
|
|
2468
|
+
["orderIds"]
|
|
2471
2469
|
);
|
|
2472
2470
|
sideEffects?.onError?.(err);
|
|
2473
2471
|
throw transformedError;
|
|
@@ -3522,8 +3520,8 @@ function setOrderNumberCounter3(httpClient) {
|
|
|
3522
3520
|
);
|
|
3523
3521
|
}
|
|
3524
3522
|
function bulkDeleteImportedOrders3(httpClient) {
|
|
3525
|
-
return (
|
|
3526
|
-
|
|
3523
|
+
return (orderIds) => bulkDeleteImportedOrders2(
|
|
3524
|
+
orderIds,
|
|
3527
3525
|
// @ts-ignore
|
|
3528
3526
|
{ httpClient }
|
|
3529
3527
|
);
|