@wix/auto_sdk_ecom_orders 1.0.217 → 1.0.219
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-CF0kleOw.d.ts → ecom-v1-order-orders.universal-CXi8ZvaS.d.ts} +28 -1
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +8 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +8 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +27 -2
- package/build/cjs/meta.js +8 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-CF0kleOw.d.mts → ecom-v1-order-orders.universal-CXi8ZvaS.d.mts} +28 -1
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +7 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +7 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +27 -2
- package/build/es/meta.mjs +7 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-dDfQOcE9.d.ts → ecom-v1-order-orders.universal-BpdIFm1L.d.ts} +62 -1
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +8 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js +8 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +27 -2
- package/build/internal/cjs/meta.js +8 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{ecom-v1-order-orders.universal-dDfQOcE9.d.mts → ecom-v1-order-orders.universal-BpdIFm1L.d.mts} +62 -1
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +7 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +7 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +27 -2
- package/build/internal/es/meta.mjs +7 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -233,6 +233,8 @@ interface OrderLineItem {
|
|
|
233
233
|
refundQuantity?: number | null;
|
|
234
234
|
/**
|
|
235
235
|
* Number of items restocked.
|
|
236
|
+
*
|
|
237
|
+
* For a per-location breakdown, see `restockLocations`.
|
|
236
238
|
* @max 100000
|
|
237
239
|
*/
|
|
238
240
|
restockQuantity?: number | null;
|
|
@@ -526,6 +528,20 @@ declare enum ItemTypePreset {
|
|
|
526
528
|
}
|
|
527
529
|
/** @enumType */
|
|
528
530
|
type ItemTypePresetWithLiterals = ItemTypePreset | 'UNRECOGNISED' | 'PHYSICAL' | 'DIGITAL' | 'GIFT_CARD' | 'SERVICE';
|
|
531
|
+
/** Quantity of items restocked at a specific location. */
|
|
532
|
+
interface RestockLocation {
|
|
533
|
+
/**
|
|
534
|
+
* ID of the location where items were restocked.
|
|
535
|
+
* @format GUID
|
|
536
|
+
*/
|
|
537
|
+
locationId?: string;
|
|
538
|
+
/**
|
|
539
|
+
* Number of items restocked at this location.
|
|
540
|
+
* @min 1
|
|
541
|
+
* @max 100000
|
|
542
|
+
*/
|
|
543
|
+
quantity?: number;
|
|
544
|
+
}
|
|
529
545
|
/** Type of selected payment option for catalog item */
|
|
530
546
|
declare enum PaymentOptionType {
|
|
531
547
|
/** The entire payment for this item happens as part of the checkout. */
|
|
@@ -4547,7 +4563,16 @@ interface HasCustomEmailConfigurationsResponse {
|
|
|
4547
4563
|
interface AddToAutomationMigrationPopulationRequest {
|
|
4548
4564
|
/** When true, sends custom email configurations to automation system via email */
|
|
4549
4565
|
sendCustomEmailConfigs?: boolean;
|
|
4566
|
+
/** Origin of the migration request. Defaults to OPT_IN when UNKNOWN_ORIGIN. */
|
|
4567
|
+
origin?: OriginWithLiterals;
|
|
4550
4568
|
}
|
|
4569
|
+
declare enum Origin {
|
|
4570
|
+
UNKNOWN_ORIGIN = "UNKNOWN_ORIGIN",
|
|
4571
|
+
OPT_IN = "OPT_IN",
|
|
4572
|
+
MIGRATION = "MIGRATION"
|
|
4573
|
+
}
|
|
4574
|
+
/** @enumType */
|
|
4575
|
+
type OriginWithLiterals = Origin | 'UNKNOWN_ORIGIN' | 'OPT_IN' | 'MIGRATION';
|
|
4551
4576
|
interface AddToAutomationMigrationPopulationResponse {
|
|
4552
4577
|
success?: boolean;
|
|
4553
4578
|
}
|
|
@@ -8484,6 +8509,8 @@ interface UpdateOrderLineItem {
|
|
|
8484
8509
|
refundQuantity?: number | null;
|
|
8485
8510
|
/**
|
|
8486
8511
|
* Number of items restocked.
|
|
8512
|
+
*
|
|
8513
|
+
* For a per-location breakdown, see `restockLocations`.
|
|
8487
8514
|
* @max 100000
|
|
8488
8515
|
*/
|
|
8489
8516
|
restockQuantity?: number | null;
|
|
@@ -8674,4 +8701,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
8674
8701
|
unassignTags?: TagsTags;
|
|
8675
8702
|
}
|
|
8676
8703
|
|
|
8677
|
-
export { OrderActivityTypeEnumActivityType as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PaymentOptionType as E, SubscriptionFrequency as F, type GetPaymentCollectabilityStatusResponse as G, AdjustmentType as H, ItemTypePreset as I, JurisdictionType as J, PaymentStatus as K, FulfillmentStatus as L, type MaskedOrder as M, VatType as N, type Order as O, type Price as P, PickupMethod as Q, OrderStatus as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, DiscountType as X, DiscountReason as Y, LineItemQuantityChangeType as Z, ActivityType as _, type PreparePaymentCollectionOptions as a, type BillingAdjustment as a$, AttributionSource as a0, ChannelType as a1, AdditionalFeeSource as a2, OrderActionType as a3, SpecificItemsCouponBehavior as a4, ChargeType as a5, DeltaPaymentOptionType as a6, InventoryAction as a7, WebhookIdentityType as a8, VersioningMode as a9, CustomFieldGroup as aA, ValueType as aB, DepositType as aC, InvoiceStatus as aD, type OrderLineItem as aE, type ProductName as aF, type CatalogReference as aG, type DescriptionLine as aH, type DescriptionLineValueOneOf as aI, type DescriptionLineDescriptionLineValueOneOf as aJ, type DescriptionLineName as aK, type PlainTextValue as aL, type Color as aM, type FocalPoint as aN, type PhysicalProperties as aO, type Dimensions as aP, type ItemType as aQ, type ItemTypeItemTypeDataOneOf as aR, type ItemTaxFullDetails as aS, type LineItemTaxInfo as aT, type LineItemTaxBreakdown as aU, type DigitalFile as aV, type SubscriptionInfo as aW, type SubscriptionTitle as aX, type SubscriptionDescription as aY, type SubscriptionSettings as aZ, type FreeTrialPeriod as a_, PreviewEmailType as aa, State as ab, SiteCreatedContext as ac, Namespace as ad, DeleteStatus as ae, ScheduledAction as af, DurationUnit as ag, PaymentCollectabilityStatus as ah, PredefinedPaymentMethod as ai, RefundableStatus as aj, NonRefundableReason as ak, ManuallyRefundableReason as al, RestockType as am, TransactionStatus as an, AuthorizationCaptureStatus as ao, AuthorizationVoidStatus as ap, Reason as aq, ActionType as ar, ChargebackStatus as as, MembershipPaymentStatus as at, RefundStatus as au, SortOrder as av, OrderApprovalStrategy as aw, Placement as ax, SubdivisionType as ay, SourceType as az, type PreparePaymentCollectionResponse as b, type ShippingInformationChange as b$, type BillingAdjustmentPriceSummary as b0, type PriceDescription as b1, type LocationAndQuantity as b2, type TaxableAddress as b3, type TaxableAddressTaxableAddressDataOneOf as b4, type ExtendedFields as b5, type ModifierGroup as b6, type TranslatableString as b7, type ItemModifier as b8, type BuyerInfo as b9, type DiscountRuleName as bA, type LineItemDiscount as bB, type ItemCombination as bC, type ItemCombinationLineItem as bD, type Activity as bE, type ActivityContentOneOf as bF, type CustomActivity as bG, type MerchantComment as bH, type OrderRefunded as bI, type OrderCreatedFromExchange as bJ, type NewExchangeOrderCreated as bK, type LineItemExchangeData as bL, type DraftOrderChangesApplied as bM, type OrderChange as bN, type OrderChangeValueOneOf as bO, type LineItemChanges as bP, type LineItemQuantityChange as bQ, type LineItemPriceChange as bR, type LineItemProductNameChange as bS, type LineItemDescriptionLineChange as bT, type LineItemModifiersChange as bU, type ManagedLineItem as bV, type ManagedDiscount as bW, type TranslatedValue as bX, type LineItemAmount as bY, type ManagedAdditionalFee as bZ, type TotalPriceChange as b_, type BuyerInfoIdOneOf as ba, type CurrencyConversionDetails as bb, type PriceSummary as bc, type AddressWithContact as bd, type Address as be, type StreetAddress as bf, type AddressLocation as bg, type FullAddressContactDetails as bh, type VatId as bi, type V1ShippingInformation as bj, type DeliveryLogistics as bk, type DeliveryLogisticsAddressOneOf as bl, type PickupDetails as bm, type PickupAddress as bn, type DeliveryTimeSlot as bo, type ShippingPrice as bp, type ShippingRegion as bq, type TaxSummary as br, type OrderTaxInfo as bs, type OrderTaxBreakdown as bt, type AppliedDiscount as bu, type AppliedDiscountDiscountSourceOneOf as bv, type Coupon as bw, type MerchantDiscount as bx, type MerchantDiscountMerchantDiscountReasonOneOf as by, type DiscountRule as bz, type PreparePaymentCollectionApplicationErrors as c, type CommittedDiffs as c$, type ShippingInformation as c0, type SavedPaymentMethod as c1, type AuthorizedPaymentCreated as c2, type AuthorizedPaymentCaptured as c3, type AuthorizedPaymentVoided as c4, type RefundInitiated as c5, type RefundedPayment as c6, type RefundedPaymentKindOneOf as c7, type RegularPaymentRefund as c8, type GiftCardPaymentRefund as c9, type Balance as cA, type CashRounding as cB, type AdditionalFee as cC, type FulfillmentStatusesAggregate as cD, type Tags as cE, type TagList as cF, type Location as cG, type OrderSettings as cH, type OrderSettingsAllowedActionsOneOf as cI, type OrderSettingsEditableByOneOf as cJ, type CustomAllowedActions as cK, type OwnerApps as cL, type FormInfo as cM, type FormIdentifier as cN, type PlatformFeeSummary as cO, type PlatformFee as cP, type OrderApproved as cQ, type OrdersExperiments as cR, type OrderRejectedEventOrderRejected as cS, type OrderItemsRestocked as cT, type V1RestockItem as cU, type OrderImported as cV, type ImportedOrderDeleted as cW, type PaymentStatusUpdated as cX, type FulfillmentStatusUpdated as cY, type OrderCanceledEventOrderCanceled as cZ, type OrderDeltasCommitted as c_, type MembershipPaymentRefund as ca, type PaymentRefunded as cb, type PaymentRefundFailed as cc, type RefundedAsStoreCredit as cd, type PaymentPending as ce, type PaymentPendingPaymentDetailsOneOf as cf, type RegularPayment as cg, type RegularPaymentPaymentMethodDetailsOneOf as ch, type CreditCardDetails as ci, type PaymentCanceled as cj, type PaymentCanceledPaymentDetailsOneOf as ck, type PaymentDeclined as cl, type PaymentDeclinedPaymentDetailsOneOf as cm, type ReceiptCreated as cn, type ReceiptCreatedReceiptInfoOneOf as co, type WixReceipt as cp, type ExternalReceipt as cq, type ReceiptSent as cr, type ReceiptSentReceiptInfoOneOf as cs, type ChargebackCreated as ct, type ChargebackReversed as cu, type CreatedBy as cv, type CreatedByStringOneOf as cw, type ChannelInfo as cx, type CustomField as cy, type BalanceSummary as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type SendFulfillmentEmailResponse as d$, type CommittedDiffsShippingUpdateInfoOneOf as d0, type ItemChangedDetails as d1, type OrderLineItemChangedDetails as d2, type LineItemDelta as d3, type LineItemDeltaDeltaOneOf as d4, type AppliedDiscountDelta as d5, type AppliedDiscountDeltaDeltaOneOf as d6, type AdditionalFeeDelta as d7, type AdditionalFeeDeltaDeltaOneOf as d8, type DraftOrderCommitSettings as d9, type InternalUpdateExistingOperation as dA, type VersionedDocumentUpdateOperation as dB, type VersionedDeleteByIdsOperation as dC, type VersionedDocumentId as dD, type TriggerReindexRequest as dE, type TriggerReindexResponse as dF, type Empty as dG, type TriggerReindexOrderRequest as dH, type SendBuyerConfirmationEmailRequest as dI, type SendBuyerConfirmationEmailResponse as dJ, type SendBuyerPaymentsReceivedEmailRequest as dK, type SendBuyerPaymentsReceivedEmailResponse as dL, type SendBuyerPickupConfirmationEmailRequest as dM, type SendBuyerPickupConfirmationEmailResponse as dN, type BulkSendBuyerPickupConfirmationEmailsRequest as dO, type BulkSendBuyerPickupConfirmationEmailsResponse as dP, type SendBuyerShippingConfirmationEmailRequest as dQ, type SendBuyerShippingConfirmationEmailResponse as dR, type BulkSendBuyerShippingConfirmationEmailsRequest as dS, type BulkSendBuyerShippingConfirmationEmailsResponse as dT, type SendMerchantOrderReceivedNotificationRequest as dU, type SendMerchantOrderReceivedNotificationResponse as dV, type SendCancelRefundEmailRequest as dW, type SendCancelRefundEmailResponse as dX, type SendRefundEmailRequest as dY, type SendRefundEmailResponse as dZ, type SendFulfillmentEmailRequest as d_, type InventoryUpdateDetails as da, type ImportOrderRequest as db, type ImportOrderResponse as dc, type SetOrderNumberCounterRequest as dd, type SetOrderNumberCounterResponse as de, type BulkDeleteImportedOrdersRequest as df, type BulkDeleteImportedOrdersResponse as dg, type DomainEvent as dh, type DomainEventBodyOneOf as di, type EntityCreatedEvent as dj, type RestoreInfo as dk, type EntityUpdatedEvent as dl, type EntityDeletedEvent as dm, type ActionEvent as dn, type MessageEnvelope as dp, type IdentificationData as dq, type IdentificationDataIdOneOf as dr, type AccountInfo as ds, type UpdateInternalDocumentsEvent as dt, type UpdateInternalDocumentsEventOperationOneOf as du, type InternalDocument as dv, type InternalDocumentUpdateOperation as dw, type DeleteByIdsOperation as dx, type DeleteByFilterOperation as dy, type InternalDocumentUpdateByFilterOperation as dz, type PaymentCapture as e, type IsInAutomationMigrationPopulationResponse as e$, type SendMerchantOrderReceivedPushRequest as e0, type SendMerchantOrderReceivedPushResponse as e1, type PreviewEmailByTypeRequest as e2, type PreviewEmailByTypeResponse as e3, type PreviewRefundEmailRequest as e4, type RefundDetails as e5, type RefundItem as e6, type LineItemRefund as e7, type AdditionalFeeRefund as e8, type ShippingRefund as e9, type SiteMarkedAsWixSite as eA, type ServiceProvisioned as eB, type ServiceRemoved as eC, type SiteRenamed as eD, type SiteHardDeleted as eE, type NamespaceChanged as eF, type StudioAssigned as eG, type StudioUnassigned as eH, type SiteUrlChanged as eI, type SitePurgedExternally as eJ, type OdeditorAssigned as eK, type OdeditorUnassigned as eL, type PicassoAssigned as eM, type PicassoUnassigned as eN, type WixelAssigned as eO, type WixelUnassigned as eP, type StudioTwoAssigned as eQ, type StudioTwoUnassigned as eR, type UserDomainMediaEnabled as eS, type UserDomainMediaDisabled as eT, type EditorlessAssigned as eU, type EditorlessUnassigned as eV, type HasCustomEmailConfigurationsRequest as eW, type HasCustomEmailConfigurationsResponse as eX, type AddToAutomationMigrationPopulationRequest as eY, type AddToAutomationMigrationPopulationResponse as eZ, type IsInAutomationMigrationPopulationRequest as e_, type PreviewRefundEmailResponse as ea, type PreviewCancelEmailRequest as eb, type PreviewCancelEmailResponse as ec, type PreviewCancelRefundEmailRequest as ed, type PreviewCancelRefundEmailResponse as ee, type PreviewBuyerPaymentsReceivedEmailRequest as ef, type PreviewBuyerPaymentsReceivedEmailResponse as eg, type PreviewBuyerConfirmationEmailRequest as eh, type PreviewBuyerConfirmationEmailResponse as ei, type PreviewBuyerPickupConfirmationEmailRequest as ej, type PreviewBuyerPickupConfirmationEmailResponse as ek, type PreviewShippingConfirmationEmailRequest as el, type PreviewShippingConfirmationEmailResponse as em, type PreviewResendDownloadLinksEmailRequest as en, type PreviewResendDownloadLinksEmailResponse as eo, type MetaSiteSpecialEvent as ep, type MetaSiteSpecialEventPayloadOneOf as eq, type Asset as er, type SiteCreated as es, type SiteTransferred as et, type SiteDeleted as eu, type DeleteContext as ev, type SiteUndeleted as ew, type SitePublished as ex, type SiteUnpublished as ey, type SiteMarkedAsTemplate as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type CalculateRefundItemResponse as f$, type PreparePaymentCollectionRequest as f0, type RedirectUrls as f1, type DelayedCaptureSettings as f2, type Duration as f3, type GetPaymentCollectabilityStatusRequest as f4, type RecordManuallyCollectedPaymentRequest as f5, type UserDefinedPaymentMethodName as f6, type UserDefinedPaymentMethodNameKindOneOf as f7, type RecordManuallyCollectedPaymentResponse as f8, type MarkOrderAsPaidRequest as f9, type Payment as fA, type PaymentPaymentDetailsOneOf as fB, type PaymentReceiptInfoOneOf as fC, type RegularPaymentDetails as fD, type RegularPaymentDetailsPaymentMethodDetailsOneOf as fE, type CreditCardPaymentMethodDetails as fF, type AuthorizationDetails as fG, type AuthorizationCapture as fH, type AuthorizationActionFailureDetails as fI, type AuthorizationVoid as fJ, type V1ScheduledAction as fK, type Chargeback as fL, type PaymentMethodName as fM, type GiftCardPaymentDetails as fN, type MembershipPaymentDetails as fO, type WixReceiptInfo as fP, type ExternalReceiptInfo as fQ, type CashRoundingDetails as fR, type Refund as fS, type RefundTransaction as fT, type RefundStatusInfo as fU, type AggregatedRefundSummary as fV, type RefundItemsBreakdown as fW, type LineItemRefundSummary as fX, type CalculateRefundRequest as fY, type CalculateRefundItemRequest as fZ, type CalculateRefundResponse as f_, type MarkOrderAsPaidResponse as fa, type BulkMarkOrdersAsPaidRequest as fb, type BulkMarkOrdersAsPaidResponse as fc, type BulkOrderResult as fd, type ItemMetadata as fe, type ApplicationError as ff, type BulkActionMetadata as fg, type GetRefundabilityStatusRequest as fh, type GetRefundabilityStatusResponse as fi, type Refundability as fj, type RefundabilityAdditionalRefundabilityInfoOneOf as fk, type CreatePaymentGatewayOrderRequest as fl, type ChargedBy as fm, type CreatePaymentGatewayOrderResponse as fn, type ChargeMembershipsRequest as fo, type MembershipChargeItem as fp, type MembershipName as fq, type ServiceProperties as fr, type ChargeMembershipsResponse as fs, type TriggerRefundRequest as ft, type PaymentRefund as fu, type RefundSideEffects as fv, type RestockInfo as fw, type RestockItem as fx, type TriggerRefundResponse as fy, type OrderTransactions as fz, type GetOrderApplicationErrors as g, type UpdateOrderLineItemsRequest as g$, type VoidAuthorizedPaymentsRequest as g0, type CaptureAuthorizedPaymentsRequest as g1, type ChargeSavedPaymentMethodRequest as g2, type ChargeSavedPaymentMethodResponse as g3, type DiffmatokyPayload as g4, type ErrorInformation as g5, type GetOrderRequest as g6, type GetOrderResponse as g7, type InternalQueryOrdersRequest as g8, type PlatformQuery as g9, type DraftOrderDiffsRecipientUpdateInfoOneOf as gA, type V1LineItemDelta as gB, type V1LineItemDeltaDeltaOneOf as gC, type CommitDeltasResponse as gD, type ArchiveOrderRequest as gE, type ArchiveOrderResponse as gF, type BulkArchiveOrdersRequest as gG, type BulkArchiveOrdersResponse as gH, type BulkArchiveOrdersByFilterRequest as gI, type BulkArchiveOrdersByFilterResponse as gJ, type UnArchiveOrderRequest as gK, type UnArchiveOrderResponse as gL, type BulkUnArchiveOrdersRequest as gM, type BulkUnArchiveOrdersResponse as gN, type BulkUnArchiveOrdersByFilterRequest as gO, type BulkUnArchiveOrdersByFilterResponse as gP, type UpdateBuyerInfoRequest as gQ, type BuyerInfoUpdate as gR, type UpdateBuyerInfoResponse as gS, type UpdateBuyerEmailRequest as gT, type UpdateBuyerEmailResponse as gU, type UpdateOrderShippingAddressRequest as gV, type UpdateOrderShippingAddressResponse as gW, type UpdateBillingContactDetailsRequest as gX, type UpdateBillingContactDetailsResponse as gY, type UpdateOrderLineItemRequest as gZ, type UpdateOrderLineItemResponse as g_, type PlatformQueryPagingMethodOneOf as ga, type Sorting as gb, type PlatformPaging as gc, type CursorPaging as gd, type InternalQueryOrdersResponse as ge, type PlatformPagingMetadata as gf, type Cursors as gg, type QueryOrderRequest as gh, type QueryOrderResponse as gi, type SearchOrdersRequest as gj, type CursorSearch as gk, type CursorSearchPagingMethodOneOf as gl, type CursorPagingMetadata as gm, type CreateOrderRequest as gn, type OrderCreationSettings as go, type OrderCreationSettingsEditableByOneOf as gp, type OrderCreateNotifications as gq, type CreateOrderResponse as gr, type UpdateOrderRequest as gs, type UpdateOrderResponse as gt, type BulkUpdateOrdersRequest as gu, type CommitDeltasRequest as gv, type DraftOrderDiffs as gw, type DraftOrderDiffsShippingUpdateInfoOneOf as gx, type DraftOrderDiffsBuyerUpdateInfoOneOf as gy, type DraftOrderDiffsBillingUpdateInfoOneOf as gz, type OrderSearch as h, type GetShipmentsRequest as h$, type MaskedOrderLineItem as h0, type UpdateOrderLineItemsResponse as h1, type AddInternalActivityRequest as h2, type InternalActivity as h3, type InternalActivityContentOneOf as h4, type OrderPlaced as h5, type OrderPaid as h6, type OrderFulfilled as h7, type OrderNotFulfilled as h8, type OrderCanceled as h9, type UpdateLineItemsDescriptionLinesResponse as hA, type MarkOrderAsSeenByHumanRequest as hB, type MarkOrderAsSeenByHumanResponse as hC, type CancelOrderRequest as hD, type UpdateOrderStatusRequest as hE, type UpdateOrderStatusResponse as hF, type MarkAsFulfilledRequest as hG, type MarkAsFulfilledResponse as hH, type BulkMarkAsFulfilledRequest as hI, type BulkMarkAsFulfilledResponse as hJ, type BulkMarkAsFulfilledByFilterRequest as hK, type BulkMarkAsFulfilledByFilterResponse as hL, type MarkAsUnfulfilledRequest as hM, type MarkAsUnfulfilledResponse as hN, type BulkMarkAsUnfulfilledRequest as hO, type BulkMarkAsUnfulfilledResponse as hP, type BulkMarkAsUnfulfilledByFilterRequest as hQ, type BulkMarkAsUnfulfilledByFilterResponse as hR, type BulkSetBusinessLocationRequest as hS, type BulkSetBusinessLocationResponse as hT, type BulkSetBusinessLocationResult as hU, type V1MarkOrderAsPaidRequest as hV, type V1MarkOrderAsPaidResponse as hW, type V1BulkMarkOrdersAsPaidRequest as hX, type V1BulkMarkOrdersAsPaidResponse as hY, type V1CreatePaymentGatewayOrderRequest as hZ, type V1CreatePaymentGatewayOrderResponse as h_, 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 PublicActivity as hq, type PublicActivityContentOneOf as hr, type AddActivityResponse as hs, type AddActivitiesRequest as ht, type UpdateActivityRequest as hu, type UpdateActivityResponse as hv, type DeleteActivityRequest as hw, type DeleteActivityResponse as hx, type UpdateLineItemsDescriptionLinesRequest as hy, type LineItemUpdate as hz, type CreateOrderOptions as i, type ChargeMembershipsOptions as i$, type GetShipmentsResponse as i0, type AggregateOrdersRequest as i1, type AggregateOrdersResponse as i2, type DecrementItemsQuantityRequest as i3, type DecrementData as i4, type DecrementItemsQuantityResponse as i5, type BulkUpdateOrderTagsRequest as i6, type TagsTags as i7, type TagsTagList as i8, type BulkUpdateOrderTagsResult as i9, type LineItem as iA, type BigDecimalWrapper as iB, type LineItemTax as iC, type Source as iD, type LineItemMetaData as iE, type Locale as iF, type TotalPrice as iG, type ItemizedFee as iH, type Discount as iI, type DiscountOneDiscountTypeOneOf as iJ, type CalculatedTaxes as iK, type CalculatedTax as iL, type Payments as iM, type InvoicesPayment as iN, type MetaData as iO, type InvoiceDynamicPriceTotals as iP, type CustomFieldValue as iQ, type Value as iR, type Deposit as iS, type BaseEventMetadata as iT, type EventMetadata as iU, type AccountInfoMetadata as iV, type SetOrderNumberCounterOptions as iW, type BulkDeleteImportedOrdersOptions as iX, type RecordManuallyCollectedPaymentOptions as iY, type PaymentCollectionMarkOrderAsPaidOptions as iZ, type PaymentCollectionCreatePaymentGatewayOrderOptions as i_, type SendOrderUpdatedDomainEventRequest as ia, type SendOrderUpdatedDomainEventResponse as ib, type Task as ic, type TaskKey as id, type TaskAction as ie, type TaskActionActionOneOf as ig, type Complete as ih, type Cancel as ii, type Reschedule as ij, type InvoiceSentEvent as ik, type IdAndVersion as il, type InvoiceFields as im, type Customer as io, type Email as ip, type QuotesAddress as iq, type AddressDescription as ir, type Phone as is, type Company as it, type CommonAddress as iu, type CommonAddressStreetOneOf as iv, type Subdivision as iw, type StandardDetails as ix, type InvoiceDates as iy, type LineItems as iz, type CreateOrderApplicationErrors as j, type CustomFieldGroupWithLiterals as j$, type TriggerRefundOptions as j0, type OrderSearchSpec as j1, type UpdateOrderLineItemIdentifiers as j2, type UpdateOrderLineItem as j3, type UpdateActivityIdentifiers as j4, type DeleteActivityIdentifiers as j5, type AggregateOrdersOptions as j6, utils as j7, type DescriptionLineTypeWithLiterals as j8, type DimensionsUnitWithLiterals as j9, type VersioningModeWithLiterals as jA, type PreviewEmailTypeWithLiterals as jB, type StateWithLiterals as jC, type SiteCreatedContextWithLiterals as jD, type NamespaceWithLiterals as jE, type DeleteStatusWithLiterals as jF, type ScheduledActionWithLiterals as jG, type DurationUnitWithLiterals as jH, type PaymentCollectabilityStatusWithLiterals as jI, type PredefinedPaymentMethodWithLiterals as jJ, type RefundableStatusWithLiterals as jK, type NonRefundableReasonWithLiterals as jL, type ManuallyRefundableReasonWithLiterals as jM, type RestockTypeWithLiterals as jN, type TransactionStatusWithLiterals as jO, type AuthorizationCaptureStatusWithLiterals as jP, type AuthorizationVoidStatusWithLiterals as jQ, type ReasonWithLiterals as jR, type ActionTypeWithLiterals as jS, type ChargebackStatusWithLiterals as jT, type MembershipPaymentStatusWithLiterals as jU, type RefundStatusWithLiterals as jV, type SortOrderWithLiterals as jW, type OrderApprovalStrategyWithLiterals as jX, type PlacementWithLiterals as jY, type SubdivisionTypeWithLiterals as jZ, type SourceTypeWithLiterals as j_, type ItemTypePresetWithLiterals as ja, type PaymentOptionTypeWithLiterals as jb, type JurisdictionTypeWithLiterals as jc, type SubscriptionFrequencyWithLiterals as jd, type AdjustmentTypeWithLiterals as je, type TaxableAddressTypeWithLiterals as jf, type PaymentStatusWithLiterals as jg, type FulfillmentStatusWithLiterals as jh, type WeightUnitWithLiterals as ji, type VatTypeWithLiterals as jj, type PickupMethodWithLiterals as jk, type OrderStatusWithLiterals as jl, type DiscountTypeWithLiterals as jm, type DiscountReasonWithLiterals as jn, type LineItemQuantityChangeTypeWithLiterals as jo, type ActivityTypeWithLiterals as jp, type OrderActivityTypeEnumActivityTypeWithLiterals as jq, type AttributionSourceWithLiterals as jr, type ChannelTypeWithLiterals as js, type AdditionalFeeSourceWithLiterals as jt, type OrderActionTypeWithLiterals as ju, type SpecificItemsCouponBehaviorWithLiterals as jv, type ChargeTypeWithLiterals as jw, type DeltaPaymentOptionTypeWithLiterals as jx, type InventoryActionWithLiterals as jy, type WebhookIdentityTypeWithLiterals as jz, type UpdateOrderApplicationErrors as k, type ValueTypeWithLiterals as k0, type DepositTypeWithLiterals as k1, type InvoiceStatusWithLiterals as k2, type RecordManuallyCollectedPaymentApplicationErrors as k3, type PaymentCollectionMarkOrderAsPaidApplicationErrors as k4, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as k5, type TriggerRefundApplicationErrors as k6, type UpdateOrderStatusApplicationErrors as k7, type CommonSearchWithEntityContext as k8, onOrderApproved as k9, onOrderCanceled as ka, onOrderCommitted as kb, onOrderCreated as kc, onOrderFulfilled as kd, onOrderPaymentStatusUpdated as ke, onOrderUpdated as kf, preparePaymentCollection as kg, getPaymentCollectabilityStatus as kh, voidAuthorizedPayments as ki, captureAuthorizedPayments as kj, getOrder as kk, createOrder as kl, updateOrder as km, bulkUpdateOrders as kn, addActivities as ko, cancelOrder as kp, bulkUpdateOrderTags as kq, type BulkUpdateOrdersResponse as l, type AddActivitiesResponse as m, type CancelOrderOptions as n, type CancelOrderResponse as o, type CancelOrderApplicationErrors as p, type BulkUpdateOrderTagsOptions as q, type BulkUpdateOrderTagsResponse as r, type OrderApprovedEnvelope as s, type OrderCanceledEnvelope as t, type OrderCommittedEnvelope as u, type OrderCreatedEnvelope as v, type OrderFulfilledEnvelope as w, type OrderPaymentStatusUpdatedEnvelope as x, type OrderUpdatedEnvelope as y, DimensionsUnit as z };
|
|
8704
|
+
export { OrderActivityTypeEnumActivityType as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PaymentOptionType as E, SubscriptionFrequency as F, type GetPaymentCollectabilityStatusResponse as G, AdjustmentType as H, ItemTypePreset as I, JurisdictionType as J, PaymentStatus as K, FulfillmentStatus as L, type MaskedOrder as M, VatType as N, type Order as O, type Price as P, PickupMethod as Q, OrderStatus as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, DiscountType as X, DiscountReason as Y, LineItemQuantityChangeType as Z, ActivityType as _, type PreparePaymentCollectionOptions as a, type SubscriptionSettings as a$, AttributionSource as a0, ChannelType as a1, AdditionalFeeSource as a2, OrderActionType as a3, SpecificItemsCouponBehavior as a4, ChargeType as a5, DeltaPaymentOptionType as a6, InventoryAction as a7, WebhookIdentityType as a8, VersioningMode as a9, SourceType as aA, CustomFieldGroup as aB, ValueType as aC, DepositType as aD, InvoiceStatus as aE, type OrderLineItem as aF, type ProductName as aG, type CatalogReference as aH, type DescriptionLine as aI, type DescriptionLineValueOneOf as aJ, type DescriptionLineDescriptionLineValueOneOf as aK, type DescriptionLineName as aL, type PlainTextValue as aM, type Color as aN, type FocalPoint as aO, type PhysicalProperties as aP, type Dimensions as aQ, type ItemType as aR, type ItemTypeItemTypeDataOneOf as aS, type RestockLocation as aT, type ItemTaxFullDetails as aU, type LineItemTaxInfo as aV, type LineItemTaxBreakdown as aW, type DigitalFile as aX, type SubscriptionInfo as aY, type SubscriptionTitle as aZ, type SubscriptionDescription as a_, PreviewEmailType as aa, State as ab, SiteCreatedContext as ac, Namespace as ad, DeleteStatus as ae, Origin as af, ScheduledAction as ag, DurationUnit as ah, PaymentCollectabilityStatus as ai, PredefinedPaymentMethod as aj, RefundableStatus as ak, NonRefundableReason as al, ManuallyRefundableReason as am, RestockType as an, TransactionStatus as ao, AuthorizationCaptureStatus as ap, AuthorizationVoidStatus as aq, Reason as ar, ActionType as as, ChargebackStatus as at, MembershipPaymentStatus as au, RefundStatus as av, SortOrder as aw, OrderApprovalStrategy as ax, Placement as ay, SubdivisionType as az, type PreparePaymentCollectionResponse as b, type ManagedAdditionalFee as b$, type FreeTrialPeriod as b0, type BillingAdjustment as b1, type BillingAdjustmentPriceSummary as b2, type PriceDescription as b3, type LocationAndQuantity as b4, type TaxableAddress as b5, type TaxableAddressTaxableAddressDataOneOf as b6, type ExtendedFields as b7, type ModifierGroup as b8, type TranslatableString as b9, type MerchantDiscountMerchantDiscountReasonOneOf as bA, type DiscountRule as bB, type DiscountRuleName as bC, type LineItemDiscount as bD, type ItemCombination as bE, type ItemCombinationLineItem as bF, type Activity as bG, type ActivityContentOneOf as bH, type CustomActivity as bI, type MerchantComment as bJ, type OrderRefunded as bK, type OrderCreatedFromExchange as bL, type NewExchangeOrderCreated as bM, type LineItemExchangeData as bN, type DraftOrderChangesApplied as bO, type OrderChange as bP, type OrderChangeValueOneOf as bQ, type LineItemChanges as bR, type LineItemQuantityChange as bS, type LineItemPriceChange as bT, type LineItemProductNameChange as bU, type LineItemDescriptionLineChange as bV, type LineItemModifiersChange as bW, type ManagedLineItem as bX, type ManagedDiscount as bY, type TranslatedValue as bZ, type LineItemAmount as b_, type ItemModifier as ba, type BuyerInfo as bb, type BuyerInfoIdOneOf as bc, type CurrencyConversionDetails as bd, type PriceSummary as be, type AddressWithContact as bf, type Address as bg, type StreetAddress as bh, type AddressLocation as bi, type FullAddressContactDetails as bj, type VatId as bk, type V1ShippingInformation as bl, type DeliveryLogistics as bm, type DeliveryLogisticsAddressOneOf as bn, type PickupDetails as bo, type PickupAddress as bp, type DeliveryTimeSlot as bq, type ShippingPrice as br, type ShippingRegion as bs, type TaxSummary as bt, type OrderTaxInfo as bu, type OrderTaxBreakdown as bv, type AppliedDiscount as bw, type AppliedDiscountDiscountSourceOneOf as bx, type Coupon as by, type MerchantDiscount as bz, type PreparePaymentCollectionApplicationErrors as c, type OrderCanceledEventOrderCanceled as c$, type TotalPriceChange as c0, type ShippingInformationChange as c1, type ShippingInformation as c2, type SavedPaymentMethod as c3, type AuthorizedPaymentCreated as c4, type AuthorizedPaymentCaptured as c5, type AuthorizedPaymentVoided as c6, type RefundInitiated as c7, type RefundedPayment as c8, type RefundedPaymentKindOneOf as c9, type CustomField as cA, type BalanceSummary as cB, type Balance as cC, type CashRounding as cD, type AdditionalFee as cE, type FulfillmentStatusesAggregate as cF, type Tags as cG, type TagList as cH, type Location as cI, type OrderSettings as cJ, type OrderSettingsAllowedActionsOneOf as cK, type OrderSettingsEditableByOneOf as cL, type CustomAllowedActions as cM, type OwnerApps as cN, type FormInfo as cO, type FormIdentifier as cP, type PlatformFeeSummary as cQ, type PlatformFee as cR, type OrderApproved as cS, type OrdersExperiments as cT, type OrderRejectedEventOrderRejected as cU, type OrderItemsRestocked as cV, type V1RestockItem as cW, type OrderImported as cX, type ImportedOrderDeleted as cY, type PaymentStatusUpdated as cZ, type FulfillmentStatusUpdated as c_, type RegularPaymentRefund as ca, type GiftCardPaymentRefund as cb, type MembershipPaymentRefund as cc, type PaymentRefunded as cd, type PaymentRefundFailed as ce, type RefundedAsStoreCredit as cf, type PaymentPending as cg, type PaymentPendingPaymentDetailsOneOf as ch, type RegularPayment as ci, type RegularPaymentPaymentMethodDetailsOneOf as cj, type CreditCardDetails as ck, type PaymentCanceled as cl, type PaymentCanceledPaymentDetailsOneOf as cm, type PaymentDeclined as cn, type PaymentDeclinedPaymentDetailsOneOf as co, type ReceiptCreated as cp, type ReceiptCreatedReceiptInfoOneOf as cq, type WixReceipt as cr, type ExternalReceipt as cs, type ReceiptSent as ct, type ReceiptSentReceiptInfoOneOf as cu, type ChargebackCreated as cv, type ChargebackReversed as cw, type CreatedBy as cx, type CreatedByStringOneOf as cy, type ChannelInfo as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type SendRefundEmailResponse as d$, type OrderDeltasCommitted as d0, type CommittedDiffs as d1, type CommittedDiffsShippingUpdateInfoOneOf as d2, type ItemChangedDetails as d3, type OrderLineItemChangedDetails as d4, type LineItemDelta as d5, type LineItemDeltaDeltaOneOf as d6, type AppliedDiscountDelta as d7, type AppliedDiscountDeltaDeltaOneOf as d8, type AdditionalFeeDelta as d9, type DeleteByFilterOperation as dA, type InternalDocumentUpdateByFilterOperation as dB, type InternalUpdateExistingOperation as dC, type VersionedDocumentUpdateOperation as dD, type VersionedDeleteByIdsOperation as dE, type VersionedDocumentId as dF, type TriggerReindexRequest as dG, type TriggerReindexResponse as dH, type Empty as dI, type TriggerReindexOrderRequest as dJ, type SendBuyerConfirmationEmailRequest as dK, type SendBuyerConfirmationEmailResponse as dL, type SendBuyerPaymentsReceivedEmailRequest as dM, type SendBuyerPaymentsReceivedEmailResponse as dN, type SendBuyerPickupConfirmationEmailRequest as dO, type SendBuyerPickupConfirmationEmailResponse as dP, type BulkSendBuyerPickupConfirmationEmailsRequest as dQ, type BulkSendBuyerPickupConfirmationEmailsResponse as dR, type SendBuyerShippingConfirmationEmailRequest as dS, type SendBuyerShippingConfirmationEmailResponse as dT, type BulkSendBuyerShippingConfirmationEmailsRequest as dU, type BulkSendBuyerShippingConfirmationEmailsResponse as dV, type SendMerchantOrderReceivedNotificationRequest as dW, type SendMerchantOrderReceivedNotificationResponse as dX, type SendCancelRefundEmailRequest as dY, type SendCancelRefundEmailResponse as dZ, type SendRefundEmailRequest as d_, type AdditionalFeeDeltaDeltaOneOf as da, type DraftOrderCommitSettings as db, type InventoryUpdateDetails as dc, type ImportOrderRequest as dd, type ImportOrderResponse as de, type SetOrderNumberCounterRequest as df, type SetOrderNumberCounterResponse as dg, type BulkDeleteImportedOrdersRequest as dh, type BulkDeleteImportedOrdersResponse as di, type DomainEvent as dj, type DomainEventBodyOneOf as dk, type EntityCreatedEvent as dl, type RestoreInfo as dm, type EntityUpdatedEvent as dn, type EntityDeletedEvent as dp, type ActionEvent as dq, type MessageEnvelope as dr, type IdentificationData as ds, type IdentificationDataIdOneOf as dt, type AccountInfo as du, type UpdateInternalDocumentsEvent as dv, type UpdateInternalDocumentsEventOperationOneOf as dw, type InternalDocument as dx, type InternalDocumentUpdateOperation as dy, type DeleteByIdsOperation as dz, type PaymentCapture as e, type AddToAutomationMigrationPopulationResponse as e$, type SendFulfillmentEmailRequest as e0, type SendFulfillmentEmailResponse as e1, type SendMerchantOrderReceivedPushRequest as e2, type SendMerchantOrderReceivedPushResponse as e3, type PreviewEmailByTypeRequest as e4, type PreviewEmailByTypeResponse as e5, type PreviewRefundEmailRequest as e6, type RefundDetails as e7, type RefundItem as e8, type LineItemRefund as e9, type SiteUnpublished as eA, type SiteMarkedAsTemplate as eB, type SiteMarkedAsWixSite as eC, type ServiceProvisioned as eD, type ServiceRemoved as eE, type SiteRenamed as eF, type SiteHardDeleted as eG, type NamespaceChanged as eH, type StudioAssigned as eI, type StudioUnassigned as eJ, type SiteUrlChanged as eK, type SitePurgedExternally as eL, type OdeditorAssigned as eM, type OdeditorUnassigned as eN, type PicassoAssigned as eO, type PicassoUnassigned as eP, type WixelAssigned as eQ, type WixelUnassigned as eR, type StudioTwoAssigned as eS, type StudioTwoUnassigned as eT, type UserDomainMediaEnabled as eU, type UserDomainMediaDisabled as eV, type EditorlessAssigned as eW, type EditorlessUnassigned as eX, type HasCustomEmailConfigurationsRequest as eY, type HasCustomEmailConfigurationsResponse as eZ, type AddToAutomationMigrationPopulationRequest as e_, type AdditionalFeeRefund as ea, type ShippingRefund as eb, type PreviewRefundEmailResponse as ec, type PreviewCancelEmailRequest as ed, type PreviewCancelEmailResponse as ee, type PreviewCancelRefundEmailRequest as ef, type PreviewCancelRefundEmailResponse as eg, type PreviewBuyerPaymentsReceivedEmailRequest as eh, type PreviewBuyerPaymentsReceivedEmailResponse as ei, type PreviewBuyerConfirmationEmailRequest as ej, type PreviewBuyerConfirmationEmailResponse as ek, type PreviewBuyerPickupConfirmationEmailRequest as el, type PreviewBuyerPickupConfirmationEmailResponse as em, type PreviewShippingConfirmationEmailRequest as en, type PreviewShippingConfirmationEmailResponse as eo, type PreviewResendDownloadLinksEmailRequest as ep, type PreviewResendDownloadLinksEmailResponse as eq, type MetaSiteSpecialEvent as er, type MetaSiteSpecialEventPayloadOneOf as es, type Asset as et, type SiteCreated as eu, type SiteTransferred as ev, type SiteDeleted as ew, type DeleteContext as ex, type SiteUndeleted as ey, type SitePublished as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type CalculateRefundItemRequest as f$, type IsInAutomationMigrationPopulationRequest as f0, type IsInAutomationMigrationPopulationResponse as f1, type PreparePaymentCollectionRequest as f2, type RedirectUrls as f3, type DelayedCaptureSettings as f4, type Duration as f5, type GetPaymentCollectabilityStatusRequest as f6, type RecordManuallyCollectedPaymentRequest as f7, type UserDefinedPaymentMethodName as f8, type UserDefinedPaymentMethodNameKindOneOf as f9, type TriggerRefundResponse as fA, type OrderTransactions as fB, type Payment as fC, type PaymentPaymentDetailsOneOf as fD, type PaymentReceiptInfoOneOf as fE, type RegularPaymentDetails as fF, type RegularPaymentDetailsPaymentMethodDetailsOneOf as fG, type CreditCardPaymentMethodDetails as fH, type AuthorizationDetails as fI, type AuthorizationCapture as fJ, type AuthorizationActionFailureDetails as fK, type AuthorizationVoid as fL, type V1ScheduledAction as fM, type Chargeback as fN, type PaymentMethodName as fO, type GiftCardPaymentDetails as fP, type MembershipPaymentDetails as fQ, type WixReceiptInfo as fR, type ExternalReceiptInfo as fS, type CashRoundingDetails as fT, type Refund as fU, type RefundTransaction as fV, type RefundStatusInfo as fW, type AggregatedRefundSummary as fX, type RefundItemsBreakdown as fY, type LineItemRefundSummary as fZ, type CalculateRefundRequest as f_, type RecordManuallyCollectedPaymentResponse as fa, type MarkOrderAsPaidRequest as fb, type MarkOrderAsPaidResponse as fc, type BulkMarkOrdersAsPaidRequest as fd, type BulkMarkOrdersAsPaidResponse as fe, type BulkOrderResult as ff, type ItemMetadata as fg, type ApplicationError as fh, type BulkActionMetadata as fi, type GetRefundabilityStatusRequest as fj, type GetRefundabilityStatusResponse as fk, type Refundability as fl, type RefundabilityAdditionalRefundabilityInfoOneOf as fm, type CreatePaymentGatewayOrderRequest as fn, type ChargedBy as fo, type CreatePaymentGatewayOrderResponse as fp, type ChargeMembershipsRequest as fq, type MembershipChargeItem as fr, type MembershipName as fs, type ServiceProperties as ft, type ChargeMembershipsResponse as fu, type TriggerRefundRequest as fv, type PaymentRefund as fw, type RefundSideEffects as fx, type RestockInfo as fy, type RestockItem as fz, type GetOrderApplicationErrors as g, type UpdateOrderLineItemRequest as g$, type CalculateRefundResponse as g0, type CalculateRefundItemResponse as g1, type VoidAuthorizedPaymentsRequest as g2, type CaptureAuthorizedPaymentsRequest as g3, type ChargeSavedPaymentMethodRequest as g4, type ChargeSavedPaymentMethodResponse as g5, type DiffmatokyPayload as g6, type ErrorInformation as g7, type GetOrderRequest as g8, type GetOrderResponse as g9, type DraftOrderDiffsBuyerUpdateInfoOneOf as gA, type DraftOrderDiffsBillingUpdateInfoOneOf as gB, type DraftOrderDiffsRecipientUpdateInfoOneOf as gC, type V1LineItemDelta as gD, type V1LineItemDeltaDeltaOneOf as gE, type CommitDeltasResponse as gF, type ArchiveOrderRequest as gG, type ArchiveOrderResponse as gH, type BulkArchiveOrdersRequest as gI, type BulkArchiveOrdersResponse as gJ, type BulkArchiveOrdersByFilterRequest as gK, type BulkArchiveOrdersByFilterResponse as gL, type UnArchiveOrderRequest as gM, type UnArchiveOrderResponse as gN, type BulkUnArchiveOrdersRequest as gO, type BulkUnArchiveOrdersResponse as gP, type BulkUnArchiveOrdersByFilterRequest as gQ, type BulkUnArchiveOrdersByFilterResponse as gR, type UpdateBuyerInfoRequest as gS, type BuyerInfoUpdate as gT, type UpdateBuyerInfoResponse as gU, type UpdateBuyerEmailRequest as gV, type UpdateBuyerEmailResponse as gW, type UpdateOrderShippingAddressRequest as gX, type UpdateOrderShippingAddressResponse as gY, type UpdateBillingContactDetailsRequest as gZ, type UpdateBillingContactDetailsResponse as g_, 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 OrderSearch as h, type V1CreatePaymentGatewayOrderRequest as h$, type UpdateOrderLineItemResponse as h0, type UpdateOrderLineItemsRequest as h1, type MaskedOrderLineItem as h2, type UpdateOrderLineItemsResponse as h3, type AddInternalActivityRequest as h4, type InternalActivity as h5, type InternalActivityContentOneOf as h6, type OrderPlaced as h7, type OrderPaid as h8, type OrderFulfilled as h9, type UpdateLineItemsDescriptionLinesRequest as hA, type LineItemUpdate as hB, type UpdateLineItemsDescriptionLinesResponse as hC, type MarkOrderAsSeenByHumanRequest as hD, type MarkOrderAsSeenByHumanResponse as hE, type CancelOrderRequest as hF, type UpdateOrderStatusRequest as hG, type UpdateOrderStatusResponse as hH, type MarkAsFulfilledRequest as hI, type MarkAsFulfilledResponse as hJ, type BulkMarkAsFulfilledRequest as hK, type BulkMarkAsFulfilledResponse as hL, type BulkMarkAsFulfilledByFilterRequest as hM, type BulkMarkAsFulfilledByFilterResponse as hN, type MarkAsUnfulfilledRequest as hO, type MarkAsUnfulfilledResponse as hP, type BulkMarkAsUnfulfilledRequest as hQ, type BulkMarkAsUnfulfilledResponse as hR, type BulkMarkAsUnfulfilledByFilterRequest as hS, type BulkMarkAsUnfulfilledByFilterResponse as hT, type BulkSetBusinessLocationRequest as hU, type BulkSetBusinessLocationResponse as hV, type BulkSetBusinessLocationResult as hW, type V1MarkOrderAsPaidRequest as hX, type V1MarkOrderAsPaidResponse as hY, type V1BulkMarkOrdersAsPaidRequest as hZ, type V1BulkMarkOrdersAsPaidResponse as h_, type OrderNotFulfilled as ha, type OrderCanceled as hb, type DownloadLinkSent as hc, type TrackingNumberAdded as hd, type TrackingNumberEdited as he, type TrackingLinkAdded as hf, type ShippingConfirmationEmailSent as hg, type InvoiceAdded as hh, type InvoiceSent as hi, type FulfillerEmailSent as hj, type ShippingAddressEdited as hk, type EmailEdited as hl, type PickupReadyEmailSent as hm, type OrderPartiallyPaid as hn, type OrderPending as ho, type OrderRejected as hp, type AddInternalActivityResponse as hq, type AddActivityRequest as hr, type PublicActivity as hs, type PublicActivityContentOneOf as ht, type AddActivityResponse as hu, type AddActivitiesRequest as hv, type UpdateActivityRequest as hw, type UpdateActivityResponse as hx, type DeleteActivityRequest as hy, type DeleteActivityResponse as hz, type CreateOrderOptions as i, type PaymentCollectionMarkOrderAsPaidOptions as i$, type V1CreatePaymentGatewayOrderResponse as i0, type GetShipmentsRequest as i1, type GetShipmentsResponse as i2, type AggregateOrdersRequest as i3, type AggregateOrdersResponse as i4, type DecrementItemsQuantityRequest as i5, type DecrementData as i6, type DecrementItemsQuantityResponse as i7, type BulkUpdateOrderTagsRequest as i8, type TagsTags as i9, type InvoiceDates as iA, type LineItems as iB, type LineItem as iC, type BigDecimalWrapper as iD, type LineItemTax as iE, type Source as iF, type LineItemMetaData as iG, type Locale as iH, type TotalPrice as iI, type ItemizedFee as iJ, type Discount as iK, type DiscountOneDiscountTypeOneOf as iL, type CalculatedTaxes as iM, type CalculatedTax as iN, type Payments as iO, type InvoicesPayment as iP, type MetaData as iQ, type InvoiceDynamicPriceTotals as iR, type CustomFieldValue as iS, type Value as iT, type Deposit as iU, type BaseEventMetadata as iV, type EventMetadata as iW, type AccountInfoMetadata as iX, type SetOrderNumberCounterOptions as iY, type BulkDeleteImportedOrdersOptions as iZ, type RecordManuallyCollectedPaymentOptions as i_, type TagsTagList as ia, type BulkUpdateOrderTagsResult as ib, type SendOrderUpdatedDomainEventRequest as ic, type SendOrderUpdatedDomainEventResponse as id, type Task as ie, type TaskKey as ig, type TaskAction as ih, type TaskActionActionOneOf as ii, type Complete as ij, type Cancel as ik, type Reschedule as il, type InvoiceSentEvent as im, type IdAndVersion as io, type InvoiceFields as ip, type Customer as iq, type Email as ir, type QuotesAddress as is, type AddressDescription as it, type Phone as iu, type Company as iv, type CommonAddress as iw, type CommonAddressStreetOneOf as ix, type Subdivision as iy, type StandardDetails as iz, type CreateOrderApplicationErrors as j, type PlacementWithLiterals as j$, type PaymentCollectionCreatePaymentGatewayOrderOptions as j0, type ChargeMembershipsOptions as j1, type TriggerRefundOptions as j2, type OrderSearchSpec as j3, type UpdateOrderLineItemIdentifiers as j4, type UpdateOrderLineItem as j5, type UpdateActivityIdentifiers as j6, type DeleteActivityIdentifiers as j7, type AggregateOrdersOptions as j8, utils as j9, type InventoryActionWithLiterals as jA, type WebhookIdentityTypeWithLiterals as jB, type VersioningModeWithLiterals as jC, type PreviewEmailTypeWithLiterals as jD, type StateWithLiterals as jE, type SiteCreatedContextWithLiterals as jF, type NamespaceWithLiterals as jG, type DeleteStatusWithLiterals as jH, type OriginWithLiterals as jI, type ScheduledActionWithLiterals as jJ, type DurationUnitWithLiterals as jK, type PaymentCollectabilityStatusWithLiterals as jL, type PredefinedPaymentMethodWithLiterals as jM, type RefundableStatusWithLiterals as jN, type NonRefundableReasonWithLiterals as jO, type ManuallyRefundableReasonWithLiterals as jP, type RestockTypeWithLiterals as jQ, type TransactionStatusWithLiterals as jR, type AuthorizationCaptureStatusWithLiterals as jS, type AuthorizationVoidStatusWithLiterals as jT, type ReasonWithLiterals as jU, type ActionTypeWithLiterals as jV, type ChargebackStatusWithLiterals as jW, type MembershipPaymentStatusWithLiterals as jX, type RefundStatusWithLiterals as jY, type SortOrderWithLiterals as jZ, type OrderApprovalStrategyWithLiterals as j_, type DescriptionLineTypeWithLiterals as ja, type DimensionsUnitWithLiterals as jb, type ItemTypePresetWithLiterals as jc, type PaymentOptionTypeWithLiterals as jd, type JurisdictionTypeWithLiterals as je, type SubscriptionFrequencyWithLiterals as jf, type AdjustmentTypeWithLiterals as jg, type TaxableAddressTypeWithLiterals as jh, type PaymentStatusWithLiterals as ji, type FulfillmentStatusWithLiterals as jj, type WeightUnitWithLiterals as jk, type VatTypeWithLiterals as jl, type PickupMethodWithLiterals as jm, type OrderStatusWithLiterals as jn, type DiscountTypeWithLiterals as jo, type DiscountReasonWithLiterals as jp, type LineItemQuantityChangeTypeWithLiterals as jq, type ActivityTypeWithLiterals as jr, type OrderActivityTypeEnumActivityTypeWithLiterals as js, type AttributionSourceWithLiterals as jt, type ChannelTypeWithLiterals as ju, type AdditionalFeeSourceWithLiterals as jv, type OrderActionTypeWithLiterals as jw, type SpecificItemsCouponBehaviorWithLiterals as jx, type ChargeTypeWithLiterals as jy, type DeltaPaymentOptionTypeWithLiterals as jz, type UpdateOrderApplicationErrors as k, type SubdivisionTypeWithLiterals as k0, type SourceTypeWithLiterals as k1, type CustomFieldGroupWithLiterals as k2, type ValueTypeWithLiterals as k3, type DepositTypeWithLiterals as k4, type InvoiceStatusWithLiterals as k5, type RecordManuallyCollectedPaymentApplicationErrors as k6, type PaymentCollectionMarkOrderAsPaidApplicationErrors as k7, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as k8, type TriggerRefundApplicationErrors as k9, type UpdateOrderStatusApplicationErrors as ka, type CommonSearchWithEntityContext as kb, onOrderApproved as kc, onOrderCanceled as kd, onOrderCommitted as ke, onOrderCreated as kf, onOrderFulfilled as kg, onOrderPaymentStatusUpdated as kh, onOrderUpdated as ki, preparePaymentCollection as kj, getPaymentCollectabilityStatus as kk, voidAuthorizedPayments as kl, captureAuthorizedPayments as km, getOrder as kn, createOrder as ko, updateOrder as kp, bulkUpdateOrders as kq, addActivities as kr, cancelOrder as ks, bulkUpdateOrderTags as kt, type BulkUpdateOrdersResponse as l, type AddActivitiesResponse as m, type CancelOrderOptions as n, type CancelOrderResponse as o, type CancelOrderApplicationErrors as p, type BulkUpdateOrderTagsOptions as q, type BulkUpdateOrderTagsResponse as r, type OrderApprovedEnvelope as s, type OrderCanceledEnvelope as t, type OrderCommittedEnvelope as u, type OrderCreatedEnvelope as v, type OrderFulfilledEnvelope as w, type OrderPaymentStatusUpdatedEnvelope as x, type OrderUpdatedEnvelope as y, DimensionsUnit as z };
|
package/build/cjs/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { P as Price, a as PreparePaymentCollectionOptions, b as PreparePaymentCollectionResponse, c as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, V as VoidAuthorizedPaymentsResponse, d as VoidAuthorizedPaymentsApplicationErrors, e as PaymentCapture, C as CaptureAuthorizedPaymentsResponse, f as CaptureAuthorizedPaymentsApplicationErrors, O as Order, g as GetOrderApplicationErrors, h as OrderSearch, S as SearchOrdersResponse, i as CreateOrderOptions, j as CreateOrderApplicationErrors, U as UpdateOrder, k as UpdateOrderApplicationErrors, M as MaskedOrder, B as BulkUpdateOrdersOptions, l as BulkUpdateOrdersResponse, A as AddActivitiesOptions, m as AddActivitiesResponse, n as CancelOrderOptions, o as CancelOrderResponse, p as CancelOrderApplicationErrors, q as BulkUpdateOrderTagsOptions, r as BulkUpdateOrderTagsResponse, s as OrderApprovedEnvelope, t as OrderCanceledEnvelope, u as OrderCommittedEnvelope, v as OrderCreatedEnvelope, w as OrderFulfilledEnvelope, x as OrderPaymentStatusUpdatedEnvelope, y as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-
|
|
3
|
-
export { ds as AccountInfo, iV as AccountInfoMetadata, dn as ActionEvent, ar as ActionType, jS as ActionTypeWithLiterals, bE as Activity, bF as ActivityContentOneOf, _ as ActivityType, jp as ActivityTypeWithLiterals, ht as AddActivitiesRequest, hp as AddActivityRequest, hs as AddActivityResponse, h2 as AddInternalActivityRequest, ho as AddInternalActivityResponse, eY as AddToAutomationMigrationPopulationRequest, eZ as AddToAutomationMigrationPopulationResponse, cC as AdditionalFee, d7 as AdditionalFeeDelta, d8 as AdditionalFeeDeltaDeltaOneOf, e8 as AdditionalFeeRefund, a2 as AdditionalFeeSource, jt as AdditionalFeeSourceWithLiterals, be as Address, ir as AddressDescription, bg as AddressLocation, bd as AddressWithContact, H as AdjustmentType, je as AdjustmentTypeWithLiterals, j6 as AggregateOrdersOptions, i1 as AggregateOrdersRequest, i2 as AggregateOrdersResponse, fV as AggregatedRefundSummary, ff as ApplicationError, bu as AppliedDiscount, d5 as AppliedDiscountDelta, d6 as AppliedDiscountDeltaDeltaOneOf, bv as AppliedDiscountDiscountSourceOneOf, gE as ArchiveOrderRequest, gF as ArchiveOrderResponse, er as Asset, a0 as AttributionSource, jr as AttributionSourceWithLiterals, fI as AuthorizationActionFailureDetails, fH as AuthorizationCapture, ao as AuthorizationCaptureStatus, jP as AuthorizationCaptureStatusWithLiterals, fG as AuthorizationDetails, fJ as AuthorizationVoid, ap as AuthorizationVoidStatus, jQ as AuthorizationVoidStatusWithLiterals, c3 as AuthorizedPaymentCaptured, c2 as AuthorizedPaymentCreated, c4 as AuthorizedPaymentVoided, cA as Balance, cz as BalanceSummary, iT as BaseEventMetadata, iB as BigDecimalWrapper, a$ as BillingAdjustment, b0 as BillingAdjustmentPriceSummary, fg as BulkActionMetadata, gI as BulkArchiveOrdersByFilterRequest, gJ as BulkArchiveOrdersByFilterResponse, gG as BulkArchiveOrdersRequest, gH as BulkArchiveOrdersResponse, iX as BulkDeleteImportedOrdersOptions, df as BulkDeleteImportedOrdersRequest, dg as BulkDeleteImportedOrdersResponse, hK as BulkMarkAsFulfilledByFilterRequest, hL as BulkMarkAsFulfilledByFilterResponse, hI as BulkMarkAsFulfilledRequest, hJ as BulkMarkAsFulfilledResponse, hQ as BulkMarkAsUnfulfilledByFilterRequest, hR as BulkMarkAsUnfulfilledByFilterResponse, hO as BulkMarkAsUnfulfilledRequest, hP as BulkMarkAsUnfulfilledResponse, fb as BulkMarkOrdersAsPaidRequest, fc as BulkMarkOrdersAsPaidResponse, fd as BulkOrderResult, dO as BulkSendBuyerPickupConfirmationEmailsRequest, dP as BulkSendBuyerPickupConfirmationEmailsResponse, dS as BulkSendBuyerShippingConfirmationEmailsRequest, dT as BulkSendBuyerShippingConfirmationEmailsResponse, hS as BulkSetBusinessLocationRequest, hT as BulkSetBusinessLocationResponse, hU as BulkSetBusinessLocationResult, gO as BulkUnArchiveOrdersByFilterRequest, gP as BulkUnArchiveOrdersByFilterResponse, gM as BulkUnArchiveOrdersRequest, gN as BulkUnArchiveOrdersResponse, i6 as BulkUpdateOrderTagsRequest, i9 as BulkUpdateOrderTagsResult, gu as BulkUpdateOrdersRequest, b9 as BuyerInfo, ba as BuyerInfoIdOneOf, gR as BuyerInfoUpdate, fZ as CalculateRefundItemRequest, f$ as CalculateRefundItemResponse, fY as CalculateRefundRequest, f_ as CalculateRefundResponse, iL as CalculatedTax, iK as CalculatedTaxes, ii as Cancel, hD as CancelOrderRequest, g1 as CaptureAuthorizedPaymentsRequest, cB as CashRounding, fR as CashRoundingDetails, aG as CatalogReference, cx as ChannelInfo, a1 as ChannelType, js as ChannelTypeWithLiterals, i$ as ChargeMembershipsOptions, fo as ChargeMembershipsRequest, fs as ChargeMembershipsResponse, g2 as ChargeSavedPaymentMethodRequest, g3 as ChargeSavedPaymentMethodResponse, a5 as ChargeType, jw as ChargeTypeWithLiterals, fL as Chargeback, ct as ChargebackCreated, cu as ChargebackReversed, as as ChargebackStatus, jT as ChargebackStatusWithLiterals, fm as ChargedBy, aM as Color, gv as CommitDeltasRequest, gD as CommitDeltasResponse, c$ as CommittedDiffs, d0 as CommittedDiffsShippingUpdateInfoOneOf, iu as CommonAddress, iv as CommonAddressStreetOneOf, k8 as CommonSearchWithEntityContext, it as Company, ih as Complete, bw as Coupon, gn as CreateOrderRequest, gr as CreateOrderResponse, fl as CreatePaymentGatewayOrderRequest, fn as CreatePaymentGatewayOrderResponse, cv as CreatedBy, cw as CreatedByStringOneOf, ci as CreditCardDetails, fF as CreditCardPaymentMethodDetails, bb as CurrencyConversionDetails, gd as CursorPaging, gm as CursorPagingMetadata, gk as CursorSearch, gl as CursorSearchPagingMethodOneOf, gg as Cursors, bG as CustomActivity, cK as CustomAllowedActions, cy as CustomField, aA as CustomFieldGroup, j$ as CustomFieldGroupWithLiterals, iQ as CustomFieldValue, io as Customer, i4 as DecrementData, i3 as DecrementItemsQuantityRequest, i5 as DecrementItemsQuantityResponse, f2 as DelayedCaptureSettings, j5 as DeleteActivityIdentifiers, hw as DeleteActivityRequest, hx as DeleteActivityResponse, dy as DeleteByFilterOperation, dx as DeleteByIdsOperation, ev as DeleteContext, ae as DeleteStatus, jF as DeleteStatusWithLiterals, bk as DeliveryLogistics, bl as DeliveryLogisticsAddressOneOf, bo as DeliveryTimeSlot, a6 as DeltaPaymentOptionType, jx as DeltaPaymentOptionTypeWithLiterals, iS as Deposit, aC as DepositType, k1 as DepositTypeWithLiterals, aH as DescriptionLine, aJ as DescriptionLineDescriptionLineValueOneOf, aK as DescriptionLineName, D as DescriptionLineType, j8 as DescriptionLineTypeWithLiterals, aI as DescriptionLineValueOneOf, g4 as DiffmatokyPayload, aV as DigitalFile, aP as Dimensions, z as DimensionsUnit, j9 as DimensionsUnitWithLiterals, iI as Discount, iJ as DiscountOneDiscountTypeOneOf, Y as DiscountReason, jn as DiscountReasonWithLiterals, bz as DiscountRule, bA as DiscountRuleName, X as DiscountType, jm as DiscountTypeWithLiterals, dh as DomainEvent, di as DomainEventBodyOneOf, ha as DownloadLinkSent, bM as DraftOrderChangesApplied, d9 as DraftOrderCommitSettings, gw as DraftOrderDiffs, gz as DraftOrderDiffsBillingUpdateInfoOneOf, gy as DraftOrderDiffsBuyerUpdateInfoOneOf, gA as DraftOrderDiffsRecipientUpdateInfoOneOf, gx as DraftOrderDiffsShippingUpdateInfoOneOf, f3 as Duration, ag as DurationUnit, jH as DurationUnitWithLiterals, eU as EditorlessAssigned, eV as EditorlessUnassigned, ip as Email, hj as EmailEdited, dG as Empty, dj as EntityCreatedEvent, dm as EntityDeletedEvent, dl as EntityUpdatedEvent, g5 as ErrorInformation, iU as EventMetadata, b5 as ExtendedFields, cq as ExternalReceipt, fQ as ExternalReceiptInfo, aN as FocalPoint, cN as FormIdentifier, cM as FormInfo, a_ as FreeTrialPeriod, hh as FulfillerEmailSent, L as FulfillmentStatus, cY as FulfillmentStatusUpdated, jh as FulfillmentStatusWithLiterals, cD as FulfillmentStatusesAggregate, bh as FullAddressContactDetails, g6 as GetOrderRequest, g7 as GetOrderResponse, f4 as GetPaymentCollectabilityStatusRequest, fh as GetRefundabilityStatusRequest, fi as GetRefundabilityStatusResponse, h$ as GetShipmentsRequest, i0 as GetShipmentsResponse, fN as GiftCardPaymentDetails, c9 as GiftCardPaymentRefund, eW as HasCustomEmailConfigurationsRequest, eX as HasCustomEmailConfigurationsResponse, il as IdAndVersion, dq as IdentificationData, dr as IdentificationDataIdOneOf, db as ImportOrderRequest, dc as ImportOrderResponse, cW as ImportedOrderDeleted, h3 as InternalActivity, h4 as InternalActivityContentOneOf, dv as InternalDocument, dz as InternalDocumentUpdateByFilterOperation, dw as InternalDocumentUpdateOperation, g8 as InternalQueryOrdersRequest, ge as InternalQueryOrdersResponse, dA as InternalUpdateExistingOperation, a7 as InventoryAction, jy as InventoryActionWithLiterals, da as InventoryUpdateDetails, hf as InvoiceAdded, iy as InvoiceDates, iP as InvoiceDynamicPriceTotals, im as InvoiceFields, hg as InvoiceSent, ik as InvoiceSentEvent, aD as InvoiceStatus, k2 as InvoiceStatusWithLiterals, iN as InvoicesPayment, e_ as IsInAutomationMigrationPopulationRequest, e$ as IsInAutomationMigrationPopulationResponse, d1 as ItemChangedDetails, bC as ItemCombination, bD as ItemCombinationLineItem, fe as ItemMetadata, b8 as ItemModifier, aS as ItemTaxFullDetails, aQ as ItemType, aR as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, ja as ItemTypePresetWithLiterals, iH as ItemizedFee, J as JurisdictionType, jc as JurisdictionTypeWithLiterals, iA as LineItem, bY as LineItemAmount, bP as LineItemChanges, d3 as LineItemDelta, d4 as LineItemDeltaDeltaOneOf, bT as LineItemDescriptionLineChange, bB as LineItemDiscount, bL as LineItemExchangeData, iE as LineItemMetaData, bU as LineItemModifiersChange, bR as LineItemPriceChange, bS as LineItemProductNameChange, bQ as LineItemQuantityChange, Z as LineItemQuantityChangeType, jo as LineItemQuantityChangeTypeWithLiterals, e7 as LineItemRefund, fX as LineItemRefundSummary, iC as LineItemTax, aU as LineItemTaxBreakdown, aT as LineItemTaxInfo, hz as LineItemUpdate, iz as LineItems, iF as Locale, cG as Location, b2 as LocationAndQuantity, bZ as ManagedAdditionalFee, bW as ManagedDiscount, bV as ManagedLineItem, al as ManuallyRefundableReason, jM as ManuallyRefundableReasonWithLiterals, hG as MarkAsFulfilledRequest, hH as MarkAsFulfilledResponse, hM as MarkAsUnfulfilledRequest, hN as MarkAsUnfulfilledResponse, f9 as MarkOrderAsPaidRequest, fa as MarkOrderAsPaidResponse, hB as MarkOrderAsSeenByHumanRequest, hC as MarkOrderAsSeenByHumanResponse, h0 as MaskedOrderLineItem, fp as MembershipChargeItem, fq as MembershipName, fO as MembershipPaymentDetails, ca as MembershipPaymentRefund, at as MembershipPaymentStatus, jU as MembershipPaymentStatusWithLiterals, bH as MerchantComment, bx as MerchantDiscount, by as MerchantDiscountMerchantDiscountReasonOneOf, dp as MessageEnvelope, iO as MetaData, ep as MetaSiteSpecialEvent, eq as MetaSiteSpecialEventPayloadOneOf, b6 as ModifierGroup, ad as Namespace, eF as NamespaceChanged, jE as NamespaceWithLiterals, bK as NewExchangeOrderCreated, ak as NonRefundableReason, jL as NonRefundableReasonWithLiterals, eK as OdeditorAssigned, eL as OdeditorUnassigned, a3 as OrderActionType, ju as OrderActionTypeWithLiterals, $ as OrderActivityTypeEnumActivityType, jq as OrderActivityTypeEnumActivityTypeWithLiterals, aw as OrderApprovalStrategy, jX as OrderApprovalStrategyWithLiterals, cQ as OrderApproved, h9 as OrderCanceled, cZ as OrderCanceledEventOrderCanceled, bN as OrderChange, bO as OrderChangeValueOneOf, gq as OrderCreateNotifications, bJ as OrderCreatedFromExchange, go as OrderCreationSettings, gp as OrderCreationSettingsEditableByOneOf, c_ as OrderDeltasCommitted, h7 as OrderFulfilled, cV as OrderImported, cT as OrderItemsRestocked, aE as OrderLineItem, d2 as OrderLineItemChangedDetails, h8 as OrderNotFulfilled, h6 as OrderPaid, hl as OrderPartiallyPaid, hm as OrderPending, h5 as OrderPlaced, bI as OrderRefunded, hn as OrderRejected, cS as OrderRejectedEventOrderRejected, j1 as OrderSearchSpec, cH as OrderSettings, cI as OrderSettingsAllowedActionsOneOf, cJ as OrderSettingsEditableByOneOf, R as OrderStatus, jl as OrderStatusWithLiterals, bt as OrderTaxBreakdown, bs as OrderTaxInfo, fz as OrderTransactions, cR as OrdersExperiments, cL as OwnerApps, fA as Payment, cj as PaymentCanceled, ck as PaymentCanceledPaymentDetailsOneOf, ah as PaymentCollectabilityStatus, jI as PaymentCollectabilityStatusWithLiterals, k5 as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, i_ as PaymentCollectionCreatePaymentGatewayOrderOptions, k4 as PaymentCollectionMarkOrderAsPaidApplicationErrors, iZ as PaymentCollectionMarkOrderAsPaidOptions, cl as PaymentDeclined, cm as PaymentDeclinedPaymentDetailsOneOf, fM as PaymentMethodName, E as PaymentOptionType, jb as PaymentOptionTypeWithLiterals, fB as PaymentPaymentDetailsOneOf, ce as PaymentPending, cf as PaymentPendingPaymentDetailsOneOf, fC as PaymentReceiptInfoOneOf, fu as PaymentRefund, cc as PaymentRefundFailed, cb as PaymentRefunded, K as PaymentStatus, cX as PaymentStatusUpdated, jg as PaymentStatusWithLiterals, iM as Payments, is as Phone, aO as PhysicalProperties, eM as PicassoAssigned, eN as PicassoUnassigned, bn as PickupAddress, bm as PickupDetails, Q as PickupMethod, jk as PickupMethodWithLiterals, hk as PickupReadyEmailSent, ax as Placement, jY as PlacementWithLiterals, aL as PlainTextValue, cP as PlatformFee, cO as PlatformFeeSummary, gc as PlatformPaging, gf as PlatformPagingMetadata, g9 as PlatformQuery, ga as PlatformQueryPagingMethodOneOf, ai as PredefinedPaymentMethod, jJ as PredefinedPaymentMethodWithLiterals, f0 as PreparePaymentCollectionRequest, eh as PreviewBuyerConfirmationEmailRequest, ei as PreviewBuyerConfirmationEmailResponse, ef as PreviewBuyerPaymentsReceivedEmailRequest, eg as PreviewBuyerPaymentsReceivedEmailResponse, ej as PreviewBuyerPickupConfirmationEmailRequest, ek as PreviewBuyerPickupConfirmationEmailResponse, eb as PreviewCancelEmailRequest, ec as PreviewCancelEmailResponse, ed as PreviewCancelRefundEmailRequest, ee as PreviewCancelRefundEmailResponse, e2 as PreviewEmailByTypeRequest, e3 as PreviewEmailByTypeResponse, aa as PreviewEmailType, jB as PreviewEmailTypeWithLiterals, e4 as PreviewRefundEmailRequest, ea as PreviewRefundEmailResponse, en as PreviewResendDownloadLinksEmailRequest, eo as PreviewResendDownloadLinksEmailResponse, el as PreviewShippingConfirmationEmailRequest, em as PreviewShippingConfirmationEmailResponse, b1 as PriceDescription, bc as PriceSummary, aF as ProductName, hq as PublicActivity, hr as PublicActivityContentOneOf, gh as QueryOrderRequest, gi as QueryOrderResponse, iq as QuotesAddress, aq as Reason, jR as ReasonWithLiterals, cn as ReceiptCreated, co as ReceiptCreatedReceiptInfoOneOf, cr as ReceiptSent, cs as ReceiptSentReceiptInfoOneOf, k3 as RecordManuallyCollectedPaymentApplicationErrors, iY as RecordManuallyCollectedPaymentOptions, f5 as RecordManuallyCollectedPaymentRequest, f8 as RecordManuallyCollectedPaymentResponse, f1 as RedirectUrls, fS as Refund, e5 as RefundDetails, c5 as RefundInitiated, e6 as RefundItem, fW as RefundItemsBreakdown, fv as RefundSideEffects, au as RefundStatus, fU as RefundStatusInfo, jV as RefundStatusWithLiterals, fT as RefundTransaction, fj as Refundability, fk as RefundabilityAdditionalRefundabilityInfoOneOf, aj as RefundableStatus, jK as RefundableStatusWithLiterals, cd as RefundedAsStoreCredit, c6 as RefundedPayment, c7 as RefundedPaymentKindOneOf, cg as RegularPayment, fD as RegularPaymentDetails, fE as RegularPaymentDetailsPaymentMethodDetailsOneOf, ch as RegularPaymentPaymentMethodDetailsOneOf, c8 as RegularPaymentRefund, ij as Reschedule, fw as RestockInfo, fx as RestockItem, am as RestockType, jN as RestockTypeWithLiterals, dk as RestoreInfo, c1 as SavedPaymentMethod, af as ScheduledAction, jG as ScheduledActionWithLiterals, gj as SearchOrdersRequest, dI as SendBuyerConfirmationEmailRequest, dJ as SendBuyerConfirmationEmailResponse, dK as SendBuyerPaymentsReceivedEmailRequest, dL as SendBuyerPaymentsReceivedEmailResponse, dM as SendBuyerPickupConfirmationEmailRequest, dN as SendBuyerPickupConfirmationEmailResponse, dQ as SendBuyerShippingConfirmationEmailRequest, dR as SendBuyerShippingConfirmationEmailResponse, dW as SendCancelRefundEmailRequest, dX as SendCancelRefundEmailResponse, d_ as SendFulfillmentEmailRequest, d$ as SendFulfillmentEmailResponse, dU as SendMerchantOrderReceivedNotificationRequest, dV as SendMerchantOrderReceivedNotificationResponse, e0 as SendMerchantOrderReceivedPushRequest, e1 as SendMerchantOrderReceivedPushResponse, ia as SendOrderUpdatedDomainEventRequest, ib as SendOrderUpdatedDomainEventResponse, dY as SendRefundEmailRequest, dZ as SendRefundEmailResponse, fr as ServiceProperties, eB as ServiceProvisioned, eC as ServiceRemoved, iW as SetOrderNumberCounterOptions, dd as SetOrderNumberCounterRequest, de as SetOrderNumberCounterResponse, hi as ShippingAddressEdited, he as ShippingConfirmationEmailSent, c0 as ShippingInformation, b$ as ShippingInformationChange, bp as ShippingPrice, e9 as ShippingRefund, bq as ShippingRegion, es as SiteCreated, ac as SiteCreatedContext, jD as SiteCreatedContextWithLiterals, eu as SiteDeleted, eE as SiteHardDeleted, ez as SiteMarkedAsTemplate, eA as SiteMarkedAsWixSite, ex as SitePublished, eJ as SitePurgedExternally, eD as SiteRenamed, et as SiteTransferred, ew as SiteUndeleted, ey as SiteUnpublished, eI as SiteUrlChanged, av as SortOrder, jW as SortOrderWithLiterals, gb as Sorting, iD as Source, az as SourceType, j_ as SourceTypeWithLiterals, a4 as SpecificItemsCouponBehavior, jv as SpecificItemsCouponBehaviorWithLiterals, ix as StandardDetails, ab as State, jC as StateWithLiterals, bf as StreetAddress, eG as StudioAssigned, eQ as StudioTwoAssigned, eR as StudioTwoUnassigned, eH as StudioUnassigned, iw as Subdivision, ay as SubdivisionType, jZ as SubdivisionTypeWithLiterals, aY as SubscriptionDescription, F as SubscriptionFrequency, jd as SubscriptionFrequencyWithLiterals, aW as SubscriptionInfo, aZ as SubscriptionSettings, aX as SubscriptionTitle, cF as TagList, cE as Tags, i8 as TagsTagList, i7 as TagsTags, ic as Task, ie as TaskAction, ig as TaskActionActionOneOf, id as TaskKey, br as TaxSummary, b3 as TaxableAddress, b4 as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, jf as TaxableAddressTypeWithLiterals, iG as TotalPrice, b_ as TotalPriceChange, hd as TrackingLinkAdded, hb as TrackingNumberAdded, hc as TrackingNumberEdited, an as TransactionStatus, jO as TransactionStatusWithLiterals, b7 as TranslatableString, bX as TranslatedValue, k6 as TriggerRefundApplicationErrors, j0 as TriggerRefundOptions, ft as TriggerRefundRequest, fy as TriggerRefundResponse, dH as TriggerReindexOrderRequest, dE as TriggerReindexRequest, dF as TriggerReindexResponse, gK as UnArchiveOrderRequest, gL as UnArchiveOrderResponse, j4 as UpdateActivityIdentifiers, hu as UpdateActivityRequest, hv as UpdateActivityResponse, gX as UpdateBillingContactDetailsRequest, gY as UpdateBillingContactDetailsResponse, gT as UpdateBuyerEmailRequest, gU as UpdateBuyerEmailResponse, gQ as UpdateBuyerInfoRequest, gS as UpdateBuyerInfoResponse, dt as UpdateInternalDocumentsEvent, du as UpdateInternalDocumentsEventOperationOneOf, hy as UpdateLineItemsDescriptionLinesRequest, hA as UpdateLineItemsDescriptionLinesResponse, j3 as UpdateOrderLineItem, j2 as UpdateOrderLineItemIdentifiers, gZ as UpdateOrderLineItemRequest, g_ as UpdateOrderLineItemResponse, g$ as UpdateOrderLineItemsRequest, h1 as UpdateOrderLineItemsResponse, gs as UpdateOrderRequest, gt as UpdateOrderResponse, gV as UpdateOrderShippingAddressRequest, gW as UpdateOrderShippingAddressResponse, k7 as UpdateOrderStatusApplicationErrors, hE as UpdateOrderStatusRequest, hF as UpdateOrderStatusResponse, f6 as UserDefinedPaymentMethodName, f7 as UserDefinedPaymentMethodNameKindOneOf, eT as UserDomainMediaDisabled, eS as UserDomainMediaEnabled, hX as V1BulkMarkOrdersAsPaidRequest, hY as V1BulkMarkOrdersAsPaidResponse, hZ as V1CreatePaymentGatewayOrderRequest, h_ as V1CreatePaymentGatewayOrderResponse, gB as V1LineItemDelta, gC as V1LineItemDeltaDeltaOneOf, hV as V1MarkOrderAsPaidRequest, hW as V1MarkOrderAsPaidResponse, cU as V1RestockItem, fK as V1ScheduledAction, bj as V1ShippingInformation, iR as Value, aB as ValueType, k0 as ValueTypeWithLiterals, bi as VatId, N as VatType, jj as VatTypeWithLiterals, dC as VersionedDeleteByIdsOperation, dD as VersionedDocumentId, dB as VersionedDocumentUpdateOperation, a9 as VersioningMode, jA as VersioningModeWithLiterals, g0 as VoidAuthorizedPaymentsRequest, a8 as WebhookIdentityType, jz as WebhookIdentityTypeWithLiterals, W as WeightUnit, ji as WeightUnitWithLiterals, cp as WixReceipt, fP as WixReceiptInfo, eO as WixelAssigned, eP as WixelUnassigned, j7 as utils } from './ecom-v1-order-orders.universal-CF0kleOw.js';
|
|
2
|
+
import { P as Price, a as PreparePaymentCollectionOptions, b as PreparePaymentCollectionResponse, c as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, V as VoidAuthorizedPaymentsResponse, d as VoidAuthorizedPaymentsApplicationErrors, e as PaymentCapture, C as CaptureAuthorizedPaymentsResponse, f as CaptureAuthorizedPaymentsApplicationErrors, O as Order, g as GetOrderApplicationErrors, h as OrderSearch, S as SearchOrdersResponse, i as CreateOrderOptions, j as CreateOrderApplicationErrors, U as UpdateOrder, k as UpdateOrderApplicationErrors, M as MaskedOrder, B as BulkUpdateOrdersOptions, l as BulkUpdateOrdersResponse, A as AddActivitiesOptions, m as AddActivitiesResponse, n as CancelOrderOptions, o as CancelOrderResponse, p as CancelOrderApplicationErrors, q as BulkUpdateOrderTagsOptions, r as BulkUpdateOrderTagsResponse, s as OrderApprovedEnvelope, t as OrderCanceledEnvelope, u as OrderCommittedEnvelope, v as OrderCreatedEnvelope, w as OrderFulfilledEnvelope, x as OrderPaymentStatusUpdatedEnvelope, y as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-CXi8ZvaS.js';
|
|
3
|
+
export { du as AccountInfo, iX as AccountInfoMetadata, dq as ActionEvent, as as ActionType, jV as ActionTypeWithLiterals, bG as Activity, bH as ActivityContentOneOf, _ as ActivityType, jr as ActivityTypeWithLiterals, hv as AddActivitiesRequest, hr as AddActivityRequest, hu as AddActivityResponse, h4 as AddInternalActivityRequest, hq as AddInternalActivityResponse, e_ as AddToAutomationMigrationPopulationRequest, e$ as AddToAutomationMigrationPopulationResponse, cE as AdditionalFee, d9 as AdditionalFeeDelta, da as AdditionalFeeDeltaDeltaOneOf, ea as AdditionalFeeRefund, a2 as AdditionalFeeSource, jv as AdditionalFeeSourceWithLiterals, bg as Address, it as AddressDescription, bi as AddressLocation, bf as AddressWithContact, H as AdjustmentType, jg as AdjustmentTypeWithLiterals, j8 as AggregateOrdersOptions, i3 as AggregateOrdersRequest, i4 as AggregateOrdersResponse, fX as AggregatedRefundSummary, fh as ApplicationError, bw as AppliedDiscount, d7 as AppliedDiscountDelta, d8 as AppliedDiscountDeltaDeltaOneOf, bx as AppliedDiscountDiscountSourceOneOf, gG as ArchiveOrderRequest, gH as ArchiveOrderResponse, et as Asset, a0 as AttributionSource, jt as AttributionSourceWithLiterals, fK as AuthorizationActionFailureDetails, fJ as AuthorizationCapture, ap as AuthorizationCaptureStatus, jS as AuthorizationCaptureStatusWithLiterals, fI as AuthorizationDetails, fL as AuthorizationVoid, aq as AuthorizationVoidStatus, jT as AuthorizationVoidStatusWithLiterals, c5 as AuthorizedPaymentCaptured, c4 as AuthorizedPaymentCreated, c6 as AuthorizedPaymentVoided, cC as Balance, cB as BalanceSummary, iV as BaseEventMetadata, iD as BigDecimalWrapper, b1 as BillingAdjustment, b2 as BillingAdjustmentPriceSummary, fi as BulkActionMetadata, gK as BulkArchiveOrdersByFilterRequest, gL as BulkArchiveOrdersByFilterResponse, gI as BulkArchiveOrdersRequest, gJ as BulkArchiveOrdersResponse, iZ as BulkDeleteImportedOrdersOptions, dh as BulkDeleteImportedOrdersRequest, di as BulkDeleteImportedOrdersResponse, hM as BulkMarkAsFulfilledByFilterRequest, hN as BulkMarkAsFulfilledByFilterResponse, hK as BulkMarkAsFulfilledRequest, hL as BulkMarkAsFulfilledResponse, hS as BulkMarkAsUnfulfilledByFilterRequest, hT as BulkMarkAsUnfulfilledByFilterResponse, hQ as BulkMarkAsUnfulfilledRequest, hR as BulkMarkAsUnfulfilledResponse, fd as BulkMarkOrdersAsPaidRequest, fe as BulkMarkOrdersAsPaidResponse, ff as BulkOrderResult, dQ as BulkSendBuyerPickupConfirmationEmailsRequest, dR as BulkSendBuyerPickupConfirmationEmailsResponse, dU as BulkSendBuyerShippingConfirmationEmailsRequest, dV as BulkSendBuyerShippingConfirmationEmailsResponse, hU as BulkSetBusinessLocationRequest, hV as BulkSetBusinessLocationResponse, hW as BulkSetBusinessLocationResult, gQ as BulkUnArchiveOrdersByFilterRequest, gR as BulkUnArchiveOrdersByFilterResponse, gO as BulkUnArchiveOrdersRequest, gP as BulkUnArchiveOrdersResponse, i8 as BulkUpdateOrderTagsRequest, ib as BulkUpdateOrderTagsResult, gw as BulkUpdateOrdersRequest, bb as BuyerInfo, bc as BuyerInfoIdOneOf, gT as BuyerInfoUpdate, f$ as CalculateRefundItemRequest, g1 as CalculateRefundItemResponse, f_ as CalculateRefundRequest, g0 as CalculateRefundResponse, iN as CalculatedTax, iM as CalculatedTaxes, ik as Cancel, hF as CancelOrderRequest, g3 as CaptureAuthorizedPaymentsRequest, cD as CashRounding, fT as CashRoundingDetails, aH as CatalogReference, cz as ChannelInfo, a1 as ChannelType, ju as ChannelTypeWithLiterals, j1 as ChargeMembershipsOptions, fq as ChargeMembershipsRequest, fu as ChargeMembershipsResponse, g4 as ChargeSavedPaymentMethodRequest, g5 as ChargeSavedPaymentMethodResponse, a5 as ChargeType, jy as ChargeTypeWithLiterals, fN as Chargeback, cv as ChargebackCreated, cw as ChargebackReversed, at as ChargebackStatus, jW as ChargebackStatusWithLiterals, fo as ChargedBy, aN as Color, gx as CommitDeltasRequest, gF as CommitDeltasResponse, d1 as CommittedDiffs, d2 as CommittedDiffsShippingUpdateInfoOneOf, iw as CommonAddress, ix as CommonAddressStreetOneOf, kb as CommonSearchWithEntityContext, iv as Company, ij as Complete, by as Coupon, gp as CreateOrderRequest, gt as CreateOrderResponse, fn as CreatePaymentGatewayOrderRequest, fp as CreatePaymentGatewayOrderResponse, cx as CreatedBy, cy as CreatedByStringOneOf, ck as CreditCardDetails, fH as CreditCardPaymentMethodDetails, bd as CurrencyConversionDetails, gf as CursorPaging, go as CursorPagingMetadata, gm as CursorSearch, gn as CursorSearchPagingMethodOneOf, gi as Cursors, bI as CustomActivity, cM as CustomAllowedActions, cA as CustomField, aB as CustomFieldGroup, k2 as CustomFieldGroupWithLiterals, iS as CustomFieldValue, iq as Customer, i6 as DecrementData, i5 as DecrementItemsQuantityRequest, i7 as DecrementItemsQuantityResponse, f4 as DelayedCaptureSettings, j7 as DeleteActivityIdentifiers, hy as DeleteActivityRequest, hz as DeleteActivityResponse, dA as DeleteByFilterOperation, dz as DeleteByIdsOperation, ex as DeleteContext, ae as DeleteStatus, jH as DeleteStatusWithLiterals, bm as DeliveryLogistics, bn as DeliveryLogisticsAddressOneOf, bq as DeliveryTimeSlot, a6 as DeltaPaymentOptionType, jz as DeltaPaymentOptionTypeWithLiterals, iU as Deposit, aD as DepositType, k4 as DepositTypeWithLiterals, aI as DescriptionLine, aK as DescriptionLineDescriptionLineValueOneOf, aL as DescriptionLineName, D as DescriptionLineType, ja as DescriptionLineTypeWithLiterals, aJ as DescriptionLineValueOneOf, g6 as DiffmatokyPayload, aX as DigitalFile, aQ as Dimensions, z as DimensionsUnit, jb as DimensionsUnitWithLiterals, iK as Discount, iL as DiscountOneDiscountTypeOneOf, Y as DiscountReason, jp as DiscountReasonWithLiterals, bB as DiscountRule, bC as DiscountRuleName, X as DiscountType, jo as DiscountTypeWithLiterals, dj as DomainEvent, dk as DomainEventBodyOneOf, hc as DownloadLinkSent, bO as DraftOrderChangesApplied, db as DraftOrderCommitSettings, gy as DraftOrderDiffs, gB as DraftOrderDiffsBillingUpdateInfoOneOf, gA as DraftOrderDiffsBuyerUpdateInfoOneOf, gC as DraftOrderDiffsRecipientUpdateInfoOneOf, gz as DraftOrderDiffsShippingUpdateInfoOneOf, f5 as Duration, ah as DurationUnit, jK as DurationUnitWithLiterals, eW as EditorlessAssigned, eX as EditorlessUnassigned, ir as Email, hl as EmailEdited, dI as Empty, dl as EntityCreatedEvent, dp as EntityDeletedEvent, dn as EntityUpdatedEvent, g7 as ErrorInformation, iW as EventMetadata, b7 as ExtendedFields, cs as ExternalReceipt, fS as ExternalReceiptInfo, aO as FocalPoint, cP as FormIdentifier, cO as FormInfo, b0 as FreeTrialPeriod, hj as FulfillerEmailSent, L as FulfillmentStatus, c_ as FulfillmentStatusUpdated, jj as FulfillmentStatusWithLiterals, cF as FulfillmentStatusesAggregate, bj as FullAddressContactDetails, g8 as GetOrderRequest, g9 as GetOrderResponse, f6 as GetPaymentCollectabilityStatusRequest, fj as GetRefundabilityStatusRequest, fk as GetRefundabilityStatusResponse, i1 as GetShipmentsRequest, i2 as GetShipmentsResponse, fP as GiftCardPaymentDetails, cb as GiftCardPaymentRefund, eY as HasCustomEmailConfigurationsRequest, eZ as HasCustomEmailConfigurationsResponse, io as IdAndVersion, ds as IdentificationData, dt as IdentificationDataIdOneOf, dd as ImportOrderRequest, de as ImportOrderResponse, cY as ImportedOrderDeleted, h5 as InternalActivity, h6 as InternalActivityContentOneOf, dx as InternalDocument, dB as InternalDocumentUpdateByFilterOperation, dy as InternalDocumentUpdateOperation, ga as InternalQueryOrdersRequest, gg as InternalQueryOrdersResponse, dC as InternalUpdateExistingOperation, a7 as InventoryAction, jA as InventoryActionWithLiterals, dc as InventoryUpdateDetails, hh as InvoiceAdded, iA as InvoiceDates, iR as InvoiceDynamicPriceTotals, ip as InvoiceFields, hi as InvoiceSent, im as InvoiceSentEvent, aE as InvoiceStatus, k5 as InvoiceStatusWithLiterals, iP as InvoicesPayment, f0 as IsInAutomationMigrationPopulationRequest, f1 as IsInAutomationMigrationPopulationResponse, d3 as ItemChangedDetails, bE as ItemCombination, bF as ItemCombinationLineItem, fg as ItemMetadata, ba as ItemModifier, aU as ItemTaxFullDetails, aR as ItemType, aS as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, jc as ItemTypePresetWithLiterals, iJ as ItemizedFee, J as JurisdictionType, je as JurisdictionTypeWithLiterals, iC as LineItem, b_ as LineItemAmount, bR as LineItemChanges, d5 as LineItemDelta, d6 as LineItemDeltaDeltaOneOf, bV as LineItemDescriptionLineChange, bD as LineItemDiscount, bN as LineItemExchangeData, iG as LineItemMetaData, bW as LineItemModifiersChange, bT as LineItemPriceChange, bU as LineItemProductNameChange, bS as LineItemQuantityChange, Z as LineItemQuantityChangeType, jq as LineItemQuantityChangeTypeWithLiterals, e9 as LineItemRefund, fZ as LineItemRefundSummary, iE as LineItemTax, aW as LineItemTaxBreakdown, aV as LineItemTaxInfo, hB as LineItemUpdate, iB as LineItems, iH as Locale, cI as Location, b4 as LocationAndQuantity, b$ as ManagedAdditionalFee, bY as ManagedDiscount, bX as ManagedLineItem, am as ManuallyRefundableReason, jP as ManuallyRefundableReasonWithLiterals, hI as MarkAsFulfilledRequest, hJ as MarkAsFulfilledResponse, hO as MarkAsUnfulfilledRequest, hP as MarkAsUnfulfilledResponse, fb as MarkOrderAsPaidRequest, fc as MarkOrderAsPaidResponse, hD as MarkOrderAsSeenByHumanRequest, hE as MarkOrderAsSeenByHumanResponse, h2 as MaskedOrderLineItem, fr as MembershipChargeItem, fs as MembershipName, fQ as MembershipPaymentDetails, cc as MembershipPaymentRefund, au as MembershipPaymentStatus, jX as MembershipPaymentStatusWithLiterals, bJ as MerchantComment, bz as MerchantDiscount, bA as MerchantDiscountMerchantDiscountReasonOneOf, dr as MessageEnvelope, iQ as MetaData, er as MetaSiteSpecialEvent, es as MetaSiteSpecialEventPayloadOneOf, b8 as ModifierGroup, ad as Namespace, eH as NamespaceChanged, jG as NamespaceWithLiterals, bM as NewExchangeOrderCreated, al as NonRefundableReason, jO as NonRefundableReasonWithLiterals, eM as OdeditorAssigned, eN as OdeditorUnassigned, a3 as OrderActionType, jw as OrderActionTypeWithLiterals, $ as OrderActivityTypeEnumActivityType, js as OrderActivityTypeEnumActivityTypeWithLiterals, ax as OrderApprovalStrategy, j_ as OrderApprovalStrategyWithLiterals, cS as OrderApproved, hb as OrderCanceled, c$ as OrderCanceledEventOrderCanceled, bP as OrderChange, bQ as OrderChangeValueOneOf, gs as OrderCreateNotifications, bL as OrderCreatedFromExchange, gq as OrderCreationSettings, gr as OrderCreationSettingsEditableByOneOf, d0 as OrderDeltasCommitted, h9 as OrderFulfilled, cX as OrderImported, cV as OrderItemsRestocked, aF as OrderLineItem, d4 as OrderLineItemChangedDetails, ha as OrderNotFulfilled, h8 as OrderPaid, hn as OrderPartiallyPaid, ho as OrderPending, h7 as OrderPlaced, bK as OrderRefunded, hp as OrderRejected, cU as OrderRejectedEventOrderRejected, j3 as OrderSearchSpec, cJ as OrderSettings, cK as OrderSettingsAllowedActionsOneOf, cL as OrderSettingsEditableByOneOf, R as OrderStatus, jn as OrderStatusWithLiterals, bv as OrderTaxBreakdown, bu as OrderTaxInfo, fB as OrderTransactions, cT as OrdersExperiments, af as Origin, jI as OriginWithLiterals, cN as OwnerApps, fC as Payment, cl as PaymentCanceled, cm as PaymentCanceledPaymentDetailsOneOf, ai as PaymentCollectabilityStatus, jL as PaymentCollectabilityStatusWithLiterals, k8 as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, j0 as PaymentCollectionCreatePaymentGatewayOrderOptions, k7 as PaymentCollectionMarkOrderAsPaidApplicationErrors, i$ as PaymentCollectionMarkOrderAsPaidOptions, cn as PaymentDeclined, co as PaymentDeclinedPaymentDetailsOneOf, fO as PaymentMethodName, E as PaymentOptionType, jd as PaymentOptionTypeWithLiterals, fD as PaymentPaymentDetailsOneOf, cg as PaymentPending, ch as PaymentPendingPaymentDetailsOneOf, fE as PaymentReceiptInfoOneOf, fw as PaymentRefund, ce as PaymentRefundFailed, cd as PaymentRefunded, K as PaymentStatus, cZ as PaymentStatusUpdated, ji as PaymentStatusWithLiterals, iO as Payments, iu as Phone, aP as PhysicalProperties, eO as PicassoAssigned, eP as PicassoUnassigned, bp as PickupAddress, bo as PickupDetails, Q as PickupMethod, jm as PickupMethodWithLiterals, hm as PickupReadyEmailSent, ay as Placement, j$ as PlacementWithLiterals, aM as PlainTextValue, cR as PlatformFee, cQ as PlatformFeeSummary, ge as PlatformPaging, gh as PlatformPagingMetadata, gb as PlatformQuery, gc as PlatformQueryPagingMethodOneOf, aj as PredefinedPaymentMethod, jM as PredefinedPaymentMethodWithLiterals, f2 as PreparePaymentCollectionRequest, ej as PreviewBuyerConfirmationEmailRequest, ek as PreviewBuyerConfirmationEmailResponse, eh as PreviewBuyerPaymentsReceivedEmailRequest, ei as PreviewBuyerPaymentsReceivedEmailResponse, el as PreviewBuyerPickupConfirmationEmailRequest, em as PreviewBuyerPickupConfirmationEmailResponse, ed as PreviewCancelEmailRequest, ee as PreviewCancelEmailResponse, ef as PreviewCancelRefundEmailRequest, eg as PreviewCancelRefundEmailResponse, e4 as PreviewEmailByTypeRequest, e5 as PreviewEmailByTypeResponse, aa as PreviewEmailType, jD as PreviewEmailTypeWithLiterals, e6 as PreviewRefundEmailRequest, ec as PreviewRefundEmailResponse, ep as PreviewResendDownloadLinksEmailRequest, eq as PreviewResendDownloadLinksEmailResponse, en as PreviewShippingConfirmationEmailRequest, eo as PreviewShippingConfirmationEmailResponse, b3 as PriceDescription, be as PriceSummary, aG as ProductName, hs as PublicActivity, ht as PublicActivityContentOneOf, gj as QueryOrderRequest, gk as QueryOrderResponse, is as QuotesAddress, ar as Reason, jU as ReasonWithLiterals, cp as ReceiptCreated, cq as ReceiptCreatedReceiptInfoOneOf, ct as ReceiptSent, cu as ReceiptSentReceiptInfoOneOf, k6 as RecordManuallyCollectedPaymentApplicationErrors, i_ as RecordManuallyCollectedPaymentOptions, f7 as RecordManuallyCollectedPaymentRequest, fa as RecordManuallyCollectedPaymentResponse, f3 as RedirectUrls, fU as Refund, e7 as RefundDetails, c7 as RefundInitiated, e8 as RefundItem, fY as RefundItemsBreakdown, fx as RefundSideEffects, av as RefundStatus, fW as RefundStatusInfo, jY as RefundStatusWithLiterals, fV as RefundTransaction, fl as Refundability, fm as RefundabilityAdditionalRefundabilityInfoOneOf, ak as RefundableStatus, jN as RefundableStatusWithLiterals, cf as RefundedAsStoreCredit, c8 as RefundedPayment, c9 as RefundedPaymentKindOneOf, ci as RegularPayment, fF as RegularPaymentDetails, fG as RegularPaymentDetailsPaymentMethodDetailsOneOf, cj as RegularPaymentPaymentMethodDetailsOneOf, ca as RegularPaymentRefund, il as Reschedule, fy as RestockInfo, fz as RestockItem, aT as RestockLocation, an as RestockType, jQ as RestockTypeWithLiterals, dm as RestoreInfo, c3 as SavedPaymentMethod, ag as ScheduledAction, jJ as ScheduledActionWithLiterals, gl as SearchOrdersRequest, dK as SendBuyerConfirmationEmailRequest, dL as SendBuyerConfirmationEmailResponse, dM as SendBuyerPaymentsReceivedEmailRequest, dN as SendBuyerPaymentsReceivedEmailResponse, dO as SendBuyerPickupConfirmationEmailRequest, dP as SendBuyerPickupConfirmationEmailResponse, dS as SendBuyerShippingConfirmationEmailRequest, dT as SendBuyerShippingConfirmationEmailResponse, dY as SendCancelRefundEmailRequest, dZ as SendCancelRefundEmailResponse, e0 as SendFulfillmentEmailRequest, e1 as SendFulfillmentEmailResponse, dW as SendMerchantOrderReceivedNotificationRequest, dX as SendMerchantOrderReceivedNotificationResponse, e2 as SendMerchantOrderReceivedPushRequest, e3 as SendMerchantOrderReceivedPushResponse, ic as SendOrderUpdatedDomainEventRequest, id as SendOrderUpdatedDomainEventResponse, d_ as SendRefundEmailRequest, d$ as SendRefundEmailResponse, ft as ServiceProperties, eD as ServiceProvisioned, eE as ServiceRemoved, iY as SetOrderNumberCounterOptions, df as SetOrderNumberCounterRequest, dg as SetOrderNumberCounterResponse, hk as ShippingAddressEdited, hg as ShippingConfirmationEmailSent, c2 as ShippingInformation, c1 as ShippingInformationChange, br as ShippingPrice, eb as ShippingRefund, bs as ShippingRegion, eu as SiteCreated, ac as SiteCreatedContext, jF as SiteCreatedContextWithLiterals, ew as SiteDeleted, eG as SiteHardDeleted, eB as SiteMarkedAsTemplate, eC as SiteMarkedAsWixSite, ez as SitePublished, eL as SitePurgedExternally, eF as SiteRenamed, ev as SiteTransferred, ey as SiteUndeleted, eA as SiteUnpublished, eK as SiteUrlChanged, aw as SortOrder, jZ as SortOrderWithLiterals, gd as Sorting, iF as Source, aA as SourceType, k1 as SourceTypeWithLiterals, a4 as SpecificItemsCouponBehavior, jx as SpecificItemsCouponBehaviorWithLiterals, iz as StandardDetails, ab as State, jE as StateWithLiterals, bh as StreetAddress, eI as StudioAssigned, eS as StudioTwoAssigned, eT as StudioTwoUnassigned, eJ as StudioUnassigned, iy as Subdivision, az as SubdivisionType, k0 as SubdivisionTypeWithLiterals, a_ as SubscriptionDescription, F as SubscriptionFrequency, jf as SubscriptionFrequencyWithLiterals, aY as SubscriptionInfo, a$ as SubscriptionSettings, aZ as SubscriptionTitle, cH as TagList, cG as Tags, ia as TagsTagList, i9 as TagsTags, ie as Task, ih as TaskAction, ii as TaskActionActionOneOf, ig as TaskKey, bt as TaxSummary, b5 as TaxableAddress, b6 as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, jh as TaxableAddressTypeWithLiterals, iI as TotalPrice, c0 as TotalPriceChange, hf as TrackingLinkAdded, hd as TrackingNumberAdded, he as TrackingNumberEdited, ao as TransactionStatus, jR as TransactionStatusWithLiterals, b9 as TranslatableString, bZ as TranslatedValue, k9 as TriggerRefundApplicationErrors, j2 as TriggerRefundOptions, fv as TriggerRefundRequest, fA as TriggerRefundResponse, dJ as TriggerReindexOrderRequest, dG as TriggerReindexRequest, dH as TriggerReindexResponse, gM as UnArchiveOrderRequest, gN as UnArchiveOrderResponse, j6 as UpdateActivityIdentifiers, hw as UpdateActivityRequest, hx as UpdateActivityResponse, gZ as UpdateBillingContactDetailsRequest, g_ as UpdateBillingContactDetailsResponse, gV as UpdateBuyerEmailRequest, gW as UpdateBuyerEmailResponse, gS as UpdateBuyerInfoRequest, gU as UpdateBuyerInfoResponse, dv as UpdateInternalDocumentsEvent, dw as UpdateInternalDocumentsEventOperationOneOf, hA as UpdateLineItemsDescriptionLinesRequest, hC as UpdateLineItemsDescriptionLinesResponse, j5 as UpdateOrderLineItem, j4 as UpdateOrderLineItemIdentifiers, g$ as UpdateOrderLineItemRequest, h0 as UpdateOrderLineItemResponse, h1 as UpdateOrderLineItemsRequest, h3 as UpdateOrderLineItemsResponse, gu as UpdateOrderRequest, gv as UpdateOrderResponse, gX as UpdateOrderShippingAddressRequest, gY as UpdateOrderShippingAddressResponse, ka as UpdateOrderStatusApplicationErrors, hG as UpdateOrderStatusRequest, hH as UpdateOrderStatusResponse, f8 as UserDefinedPaymentMethodName, f9 as UserDefinedPaymentMethodNameKindOneOf, eV as UserDomainMediaDisabled, eU as UserDomainMediaEnabled, hZ as V1BulkMarkOrdersAsPaidRequest, h_ as V1BulkMarkOrdersAsPaidResponse, h$ as V1CreatePaymentGatewayOrderRequest, i0 as V1CreatePaymentGatewayOrderResponse, gD as V1LineItemDelta, gE as V1LineItemDeltaDeltaOneOf, hX as V1MarkOrderAsPaidRequest, hY as V1MarkOrderAsPaidResponse, cW as V1RestockItem, fM as V1ScheduledAction, bl as V1ShippingInformation, iT as Value, aC as ValueType, k3 as ValueTypeWithLiterals, bk as VatId, N as VatType, jl as VatTypeWithLiterals, dE as VersionedDeleteByIdsOperation, dF as VersionedDocumentId, dD as VersionedDocumentUpdateOperation, a9 as VersioningMode, jC as VersioningModeWithLiterals, g2 as VoidAuthorizedPaymentsRequest, a8 as WebhookIdentityType, jB as WebhookIdentityTypeWithLiterals, W as WeightUnit, jk as WeightUnitWithLiterals, cr as WixReceipt, fR as WixReceiptInfo, eQ as WixelAssigned, eR as WixelUnassigned, j9 as utils } from './ecom-v1-order-orders.universal-CXi8ZvaS.js';
|
|
4
4
|
|
|
5
5
|
declare function preparePaymentCollection$1(httpClient: HttpClient): PreparePaymentCollectionSignature;
|
|
6
6
|
interface PreparePaymentCollectionSignature {
|
package/build/cjs/index.js
CHANGED
|
@@ -53,6 +53,7 @@ __export(index_exports, {
|
|
|
53
53
|
OrderActivityTypeEnumActivityType: () => OrderActivityTypeEnumActivityType,
|
|
54
54
|
OrderApprovalStrategy: () => OrderApprovalStrategy,
|
|
55
55
|
OrderStatus: () => OrderStatus,
|
|
56
|
+
Origin: () => Origin,
|
|
56
57
|
PaymentCollectabilityStatus: () => PaymentCollectabilityStatus,
|
|
57
58
|
PaymentOptionType: () => PaymentOptionType,
|
|
58
59
|
PaymentStatus: () => PaymentStatus,
|
|
@@ -2164,6 +2165,12 @@ var DeleteStatus = /* @__PURE__ */ ((DeleteStatus2) => {
|
|
|
2164
2165
|
DeleteStatus2["PURGED_EXTERNALLY"] = "PURGED_EXTERNALLY";
|
|
2165
2166
|
return DeleteStatus2;
|
|
2166
2167
|
})(DeleteStatus || {});
|
|
2168
|
+
var Origin = /* @__PURE__ */ ((Origin2) => {
|
|
2169
|
+
Origin2["UNKNOWN_ORIGIN"] = "UNKNOWN_ORIGIN";
|
|
2170
|
+
Origin2["OPT_IN"] = "OPT_IN";
|
|
2171
|
+
Origin2["MIGRATION"] = "MIGRATION";
|
|
2172
|
+
return Origin2;
|
|
2173
|
+
})(Origin || {});
|
|
2167
2174
|
var ScheduledAction = /* @__PURE__ */ ((ScheduledAction2) => {
|
|
2168
2175
|
ScheduledAction2["UNSPECIFIED"] = "UNSPECIFIED";
|
|
2169
2176
|
ScheduledAction2["VOID"] = "VOID";
|
|
@@ -4171,6 +4178,7 @@ var onOrderUpdated2 = (0, import_event_definition_modules.createEventModule)(onO
|
|
|
4171
4178
|
OrderActivityTypeEnumActivityType,
|
|
4172
4179
|
OrderApprovalStrategy,
|
|
4173
4180
|
OrderStatus,
|
|
4181
|
+
Origin,
|
|
4174
4182
|
PaymentCollectabilityStatus,
|
|
4175
4183
|
PaymentOptionType,
|
|
4176
4184
|
PaymentStatus,
|