@wix/auto_sdk_ecom_orders 1.0.218 → 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-u09r8hRJ.d.ts → ecom-v1-order-orders.universal-CXi8ZvaS.d.ts} +24 -15
- 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 +25 -16
- package/build/cjs/meta.js +8 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-u09r8hRJ.d.mts → ecom-v1-order-orders.universal-CXi8ZvaS.d.mts} +24 -15
- 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 +25 -16
- package/build/es/meta.mjs +7 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-B_SIJVco.d.ts → ecom-v1-order-orders.universal-BpdIFm1L.d.ts} +30 -15
- 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 +25 -16
- 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-B_SIJVco.d.mts → ecom-v1-order-orders.universal-BpdIFm1L.d.mts} +30 -15
- 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 +25 -16
- package/build/internal/es/meta.mjs +7 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -528,6 +528,20 @@ declare enum ItemTypePreset {
|
|
|
528
528
|
}
|
|
529
529
|
/** @enumType */
|
|
530
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
|
+
}
|
|
531
545
|
/** Type of selected payment option for catalog item */
|
|
532
546
|
declare enum PaymentOptionType {
|
|
533
547
|
/** The entire payment for this item happens as part of the checkout. */
|
|
@@ -4549,7 +4563,16 @@ interface HasCustomEmailConfigurationsResponse {
|
|
|
4549
4563
|
interface AddToAutomationMigrationPopulationRequest {
|
|
4550
4564
|
/** When true, sends custom email configurations to automation system via email */
|
|
4551
4565
|
sendCustomEmailConfigs?: boolean;
|
|
4566
|
+
/** Origin of the migration request. Defaults to OPT_IN when UNKNOWN_ORIGIN. */
|
|
4567
|
+
origin?: OriginWithLiterals;
|
|
4568
|
+
}
|
|
4569
|
+
declare enum Origin {
|
|
4570
|
+
UNKNOWN_ORIGIN = "UNKNOWN_ORIGIN",
|
|
4571
|
+
OPT_IN = "OPT_IN",
|
|
4572
|
+
MIGRATION = "MIGRATION"
|
|
4552
4573
|
}
|
|
4574
|
+
/** @enumType */
|
|
4575
|
+
type OriginWithLiterals = Origin | 'UNKNOWN_ORIGIN' | 'OPT_IN' | 'MIGRATION';
|
|
4553
4576
|
interface AddToAutomationMigrationPopulationResponse {
|
|
4554
4577
|
success?: boolean;
|
|
4555
4578
|
}
|
|
@@ -5707,20 +5730,6 @@ interface ChargeSavedPaymentMethodResponse {
|
|
|
5707
5730
|
/** Payment gateway's order ID (e.g Wix Payments) */
|
|
5708
5731
|
paymentGatewayOrderId?: string;
|
|
5709
5732
|
}
|
|
5710
|
-
/** Quantity of items restocked at a specific location. */
|
|
5711
|
-
interface RestockLocation {
|
|
5712
|
-
/**
|
|
5713
|
-
* ID of the location where items were restocked.
|
|
5714
|
-
* @format GUID
|
|
5715
|
-
*/
|
|
5716
|
-
locationId?: string;
|
|
5717
|
-
/**
|
|
5718
|
-
* Number of items restocked at this location.
|
|
5719
|
-
* @min 1
|
|
5720
|
-
* @max 100000
|
|
5721
|
-
*/
|
|
5722
|
-
quantity?: number;
|
|
5723
|
-
}
|
|
5724
5733
|
interface DiffmatokyPayload {
|
|
5725
5734
|
left?: string;
|
|
5726
5735
|
right?: string;
|
|
@@ -8692,4 +8701,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
8692
8701
|
unassignTags?: TagsTags;
|
|
8693
8702
|
}
|
|
8694
8703
|
|
|
8695
|
-
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 UpdateOrderLineItemResponse as g$, type VoidAuthorizedPaymentsRequest as g0, type CaptureAuthorizedPaymentsRequest as g1, type ChargeSavedPaymentMethodRequest as g2, type ChargeSavedPaymentMethodResponse as g3, type RestockLocation as g4, type DiffmatokyPayload as g5, type ErrorInformation as g6, type GetOrderRequest as g7, type GetOrderResponse as g8, type InternalQueryOrdersRequest as g9, type DraftOrderDiffsBillingUpdateInfoOneOf as gA, type DraftOrderDiffsRecipientUpdateInfoOneOf as gB, type V1LineItemDelta as gC, type V1LineItemDeltaDeltaOneOf as gD, type CommitDeltasResponse as gE, type ArchiveOrderRequest as gF, type ArchiveOrderResponse as gG, type BulkArchiveOrdersRequest as gH, type BulkArchiveOrdersResponse as gI, type BulkArchiveOrdersByFilterRequest as gJ, type BulkArchiveOrdersByFilterResponse as gK, type UnArchiveOrderRequest as gL, type UnArchiveOrderResponse as gM, type BulkUnArchiveOrdersRequest as gN, type BulkUnArchiveOrdersResponse as gO, type BulkUnArchiveOrdersByFilterRequest as gP, type BulkUnArchiveOrdersByFilterResponse as gQ, type UpdateBuyerInfoRequest as gR, type BuyerInfoUpdate as gS, type UpdateBuyerInfoResponse as gT, type UpdateBuyerEmailRequest as gU, type UpdateBuyerEmailResponse as gV, type UpdateOrderShippingAddressRequest as gW, type UpdateOrderShippingAddressResponse as gX, type UpdateBillingContactDetailsRequest as gY, type UpdateBillingContactDetailsResponse as gZ, type UpdateOrderLineItemRequest as g_, type PlatformQuery as ga, type PlatformQueryPagingMethodOneOf as gb, type Sorting as gc, type PlatformPaging as gd, type CursorPaging as ge, type InternalQueryOrdersResponse as gf, type PlatformPagingMetadata as gg, type Cursors as gh, type QueryOrderRequest as gi, type QueryOrderResponse as gj, type SearchOrdersRequest as gk, type CursorSearch as gl, type CursorSearchPagingMethodOneOf as gm, type CursorPagingMetadata as gn, type CreateOrderRequest as go, type OrderCreationSettings as gp, type OrderCreationSettingsEditableByOneOf as gq, type OrderCreateNotifications as gr, type CreateOrderResponse as gs, type UpdateOrderRequest as gt, type UpdateOrderResponse as gu, type BulkUpdateOrdersRequest as gv, type CommitDeltasRequest as gw, type DraftOrderDiffs as gx, type DraftOrderDiffsShippingUpdateInfoOneOf as gy, type DraftOrderDiffsBuyerUpdateInfoOneOf as gz, type OrderSearch as h, type V1CreatePaymentGatewayOrderResponse as h$, type UpdateOrderLineItemsRequest as h0, type MaskedOrderLineItem as h1, type UpdateOrderLineItemsResponse as h2, type AddInternalActivityRequest as h3, type InternalActivity as h4, type InternalActivityContentOneOf as h5, type OrderPlaced as h6, type OrderPaid as h7, type OrderFulfilled as h8, type OrderNotFulfilled as h9, type LineItemUpdate as hA, type UpdateLineItemsDescriptionLinesResponse as hB, type MarkOrderAsSeenByHumanRequest as hC, type MarkOrderAsSeenByHumanResponse as hD, type CancelOrderRequest as hE, type UpdateOrderStatusRequest as hF, type UpdateOrderStatusResponse as hG, type MarkAsFulfilledRequest as hH, type MarkAsFulfilledResponse as hI, type BulkMarkAsFulfilledRequest as hJ, type BulkMarkAsFulfilledResponse as hK, type BulkMarkAsFulfilledByFilterRequest as hL, type BulkMarkAsFulfilledByFilterResponse as hM, type MarkAsUnfulfilledRequest as hN, type MarkAsUnfulfilledResponse as hO, type BulkMarkAsUnfulfilledRequest as hP, type BulkMarkAsUnfulfilledResponse as hQ, type BulkMarkAsUnfulfilledByFilterRequest as hR, type BulkMarkAsUnfulfilledByFilterResponse as hS, type BulkSetBusinessLocationRequest as hT, type BulkSetBusinessLocationResponse as hU, type BulkSetBusinessLocationResult as hV, type V1MarkOrderAsPaidRequest as hW, type V1MarkOrderAsPaidResponse as hX, type V1BulkMarkOrdersAsPaidRequest as hY, type V1BulkMarkOrdersAsPaidResponse as hZ, type V1CreatePaymentGatewayOrderRequest as h_, type OrderCanceled as ha, type DownloadLinkSent as hb, type TrackingNumberAdded as hc, type TrackingNumberEdited as hd, type TrackingLinkAdded as he, type ShippingConfirmationEmailSent as hf, type InvoiceAdded as hg, type InvoiceSent as hh, type FulfillerEmailSent as hi, type ShippingAddressEdited as hj, type EmailEdited as hk, type PickupReadyEmailSent as hl, type OrderPartiallyPaid as hm, type OrderPending as hn, type OrderRejected as ho, type AddInternalActivityResponse as hp, type AddActivityRequest as hq, type PublicActivity as hr, type PublicActivityContentOneOf as hs, type AddActivityResponse as ht, type AddActivitiesRequest as hu, type UpdateActivityRequest as hv, type UpdateActivityResponse as hw, type DeleteActivityRequest as hx, type DeleteActivityResponse as hy, type UpdateLineItemsDescriptionLinesRequest as hz, type CreateOrderOptions as i, type PaymentCollectionCreatePaymentGatewayOrderOptions as i$, type GetShipmentsRequest as i0, type GetShipmentsResponse as i1, type AggregateOrdersRequest as i2, type AggregateOrdersResponse as i3, type DecrementItemsQuantityRequest as i4, type DecrementData as i5, type DecrementItemsQuantityResponse as i6, type BulkUpdateOrderTagsRequest as i7, type TagsTags as i8, type TagsTagList as i9, type LineItems as iA, type LineItem as iB, type BigDecimalWrapper as iC, type LineItemTax as iD, type Source as iE, type LineItemMetaData as iF, type Locale as iG, type TotalPrice as iH, type ItemizedFee as iI, type Discount as iJ, type DiscountOneDiscountTypeOneOf as iK, type CalculatedTaxes as iL, type CalculatedTax as iM, type Payments as iN, type InvoicesPayment as iO, type MetaData as iP, type InvoiceDynamicPriceTotals as iQ, type CustomFieldValue as iR, type Value as iS, type Deposit as iT, type BaseEventMetadata as iU, type EventMetadata as iV, type AccountInfoMetadata as iW, type SetOrderNumberCounterOptions as iX, type BulkDeleteImportedOrdersOptions as iY, type RecordManuallyCollectedPaymentOptions as iZ, type PaymentCollectionMarkOrderAsPaidOptions as i_, type BulkUpdateOrderTagsResult as ia, type SendOrderUpdatedDomainEventRequest as ib, type SendOrderUpdatedDomainEventResponse as ic, type Task as id, type TaskKey as ie, type TaskAction as ig, type TaskActionActionOneOf as ih, type Complete as ii, type Cancel as ij, type Reschedule as ik, type InvoiceSentEvent as il, type IdAndVersion as im, type InvoiceFields as io, type Customer as ip, type Email as iq, type QuotesAddress as ir, type AddressDescription as is, type Phone as it, type Company as iu, type CommonAddress as iv, type CommonAddressStreetOneOf as iw, type Subdivision as ix, type StandardDetails as iy, type InvoiceDates as iz, type CreateOrderApplicationErrors as j, type SourceTypeWithLiterals as j$, type ChargeMembershipsOptions as j0, type TriggerRefundOptions as j1, type OrderSearchSpec as j2, type UpdateOrderLineItemIdentifiers as j3, type UpdateOrderLineItem as j4, type UpdateActivityIdentifiers as j5, type DeleteActivityIdentifiers as j6, type AggregateOrdersOptions as j7, utils as j8, type DescriptionLineTypeWithLiterals as j9, type WebhookIdentityTypeWithLiterals as jA, type VersioningModeWithLiterals as jB, type PreviewEmailTypeWithLiterals as jC, type StateWithLiterals as jD, type SiteCreatedContextWithLiterals as jE, type NamespaceWithLiterals as jF, type DeleteStatusWithLiterals as jG, type ScheduledActionWithLiterals as jH, type DurationUnitWithLiterals as jI, type PaymentCollectabilityStatusWithLiterals as jJ, type PredefinedPaymentMethodWithLiterals as jK, type RefundableStatusWithLiterals as jL, type NonRefundableReasonWithLiterals as jM, type ManuallyRefundableReasonWithLiterals as jN, type RestockTypeWithLiterals as jO, type TransactionStatusWithLiterals as jP, type AuthorizationCaptureStatusWithLiterals as jQ, type AuthorizationVoidStatusWithLiterals as jR, type ReasonWithLiterals as jS, type ActionTypeWithLiterals as jT, type ChargebackStatusWithLiterals as jU, type MembershipPaymentStatusWithLiterals as jV, type RefundStatusWithLiterals as jW, type SortOrderWithLiterals as jX, type OrderApprovalStrategyWithLiterals as jY, type PlacementWithLiterals as jZ, type SubdivisionTypeWithLiterals as j_, type DimensionsUnitWithLiterals as ja, type ItemTypePresetWithLiterals as jb, type PaymentOptionTypeWithLiterals as jc, type JurisdictionTypeWithLiterals as jd, type SubscriptionFrequencyWithLiterals as je, type AdjustmentTypeWithLiterals as jf, type TaxableAddressTypeWithLiterals as jg, type PaymentStatusWithLiterals as jh, type FulfillmentStatusWithLiterals as ji, type WeightUnitWithLiterals as jj, type VatTypeWithLiterals as jk, type PickupMethodWithLiterals as jl, type OrderStatusWithLiterals as jm, type DiscountTypeWithLiterals as jn, type DiscountReasonWithLiterals as jo, type LineItemQuantityChangeTypeWithLiterals as jp, type ActivityTypeWithLiterals as jq, type OrderActivityTypeEnumActivityTypeWithLiterals as jr, type AttributionSourceWithLiterals as js, type ChannelTypeWithLiterals as jt, type AdditionalFeeSourceWithLiterals as ju, type OrderActionTypeWithLiterals as jv, type SpecificItemsCouponBehaviorWithLiterals as jw, type ChargeTypeWithLiterals as jx, type DeltaPaymentOptionTypeWithLiterals as jy, type InventoryActionWithLiterals as jz, type UpdateOrderApplicationErrors as k, type CustomFieldGroupWithLiterals as k0, type ValueTypeWithLiterals as k1, type DepositTypeWithLiterals as k2, type InvoiceStatusWithLiterals as k3, type RecordManuallyCollectedPaymentApplicationErrors as k4, type PaymentCollectionMarkOrderAsPaidApplicationErrors as k5, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as k6, type TriggerRefundApplicationErrors as k7, type UpdateOrderStatusApplicationErrors as k8, type CommonSearchWithEntityContext as k9, onOrderApproved as ka, onOrderCanceled as kb, onOrderCommitted as kc, onOrderCreated as kd, onOrderFulfilled as ke, onOrderPaymentStatusUpdated as kf, onOrderUpdated as kg, preparePaymentCollection as kh, getPaymentCollectabilityStatus as ki, voidAuthorizedPayments as kj, captureAuthorizedPayments as kk, getOrder as kl, createOrder as km, updateOrder as kn, bulkUpdateOrders as ko, addActivities as kp, cancelOrder as kq, bulkUpdateOrderTags as kr, 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, iW as AccountInfoMetadata, dn as ActionEvent, ar as ActionType, jT as ActionTypeWithLiterals, bE as Activity, bF as ActivityContentOneOf, _ as ActivityType, jq as ActivityTypeWithLiterals, hu as AddActivitiesRequest, hq as AddActivityRequest, ht as AddActivityResponse, h3 as AddInternalActivityRequest, hp as AddInternalActivityResponse, eY as AddToAutomationMigrationPopulationRequest, eZ as AddToAutomationMigrationPopulationResponse, cC as AdditionalFee, d7 as AdditionalFeeDelta, d8 as AdditionalFeeDeltaDeltaOneOf, e8 as AdditionalFeeRefund, a2 as AdditionalFeeSource, ju as AdditionalFeeSourceWithLiterals, be as Address, is as AddressDescription, bg as AddressLocation, bd as AddressWithContact, H as AdjustmentType, jf as AdjustmentTypeWithLiterals, j7 as AggregateOrdersOptions, i2 as AggregateOrdersRequest, i3 as AggregateOrdersResponse, fV as AggregatedRefundSummary, ff as ApplicationError, bu as AppliedDiscount, d5 as AppliedDiscountDelta, d6 as AppliedDiscountDeltaDeltaOneOf, bv as AppliedDiscountDiscountSourceOneOf, gF as ArchiveOrderRequest, gG as ArchiveOrderResponse, er as Asset, a0 as AttributionSource, js as AttributionSourceWithLiterals, fI as AuthorizationActionFailureDetails, fH as AuthorizationCapture, ao as AuthorizationCaptureStatus, jQ as AuthorizationCaptureStatusWithLiterals, fG as AuthorizationDetails, fJ as AuthorizationVoid, ap as AuthorizationVoidStatus, jR as AuthorizationVoidStatusWithLiterals, c3 as AuthorizedPaymentCaptured, c2 as AuthorizedPaymentCreated, c4 as AuthorizedPaymentVoided, cA as Balance, cz as BalanceSummary, iU as BaseEventMetadata, iC as BigDecimalWrapper, a$ as BillingAdjustment, b0 as BillingAdjustmentPriceSummary, fg as BulkActionMetadata, gJ as BulkArchiveOrdersByFilterRequest, gK as BulkArchiveOrdersByFilterResponse, gH as BulkArchiveOrdersRequest, gI as BulkArchiveOrdersResponse, iY as BulkDeleteImportedOrdersOptions, df as BulkDeleteImportedOrdersRequest, dg as BulkDeleteImportedOrdersResponse, hL as BulkMarkAsFulfilledByFilterRequest, hM as BulkMarkAsFulfilledByFilterResponse, hJ as BulkMarkAsFulfilledRequest, hK as BulkMarkAsFulfilledResponse, hR as BulkMarkAsUnfulfilledByFilterRequest, hS as BulkMarkAsUnfulfilledByFilterResponse, hP as BulkMarkAsUnfulfilledRequest, hQ as BulkMarkAsUnfulfilledResponse, fb as BulkMarkOrdersAsPaidRequest, fc as BulkMarkOrdersAsPaidResponse, fd as BulkOrderResult, dO as BulkSendBuyerPickupConfirmationEmailsRequest, dP as BulkSendBuyerPickupConfirmationEmailsResponse, dS as BulkSendBuyerShippingConfirmationEmailsRequest, dT as BulkSendBuyerShippingConfirmationEmailsResponse, hT as BulkSetBusinessLocationRequest, hU as BulkSetBusinessLocationResponse, hV as BulkSetBusinessLocationResult, gP as BulkUnArchiveOrdersByFilterRequest, gQ as BulkUnArchiveOrdersByFilterResponse, gN as BulkUnArchiveOrdersRequest, gO as BulkUnArchiveOrdersResponse, i7 as BulkUpdateOrderTagsRequest, ia as BulkUpdateOrderTagsResult, gv as BulkUpdateOrdersRequest, b9 as BuyerInfo, ba as BuyerInfoIdOneOf, gS as BuyerInfoUpdate, fZ as CalculateRefundItemRequest, f$ as CalculateRefundItemResponse, fY as CalculateRefundRequest, f_ as CalculateRefundResponse, iM as CalculatedTax, iL as CalculatedTaxes, ij as Cancel, hE as CancelOrderRequest, g1 as CaptureAuthorizedPaymentsRequest, cB as CashRounding, fR as CashRoundingDetails, aG as CatalogReference, cx as ChannelInfo, a1 as ChannelType, jt as ChannelTypeWithLiterals, j0 as ChargeMembershipsOptions, fo as ChargeMembershipsRequest, fs as ChargeMembershipsResponse, g2 as ChargeSavedPaymentMethodRequest, g3 as ChargeSavedPaymentMethodResponse, a5 as ChargeType, jx as ChargeTypeWithLiterals, fL as Chargeback, ct as ChargebackCreated, cu as ChargebackReversed, as as ChargebackStatus, jU as ChargebackStatusWithLiterals, fm as ChargedBy, aM as Color, gw as CommitDeltasRequest, gE as CommitDeltasResponse, c$ as CommittedDiffs, d0 as CommittedDiffsShippingUpdateInfoOneOf, iv as CommonAddress, iw as CommonAddressStreetOneOf, k9 as CommonSearchWithEntityContext, iu as Company, ii as Complete, bw as Coupon, go as CreateOrderRequest, gs as CreateOrderResponse, fl as CreatePaymentGatewayOrderRequest, fn as CreatePaymentGatewayOrderResponse, cv as CreatedBy, cw as CreatedByStringOneOf, ci as CreditCardDetails, fF as CreditCardPaymentMethodDetails, bb as CurrencyConversionDetails, ge as CursorPaging, gn as CursorPagingMetadata, gl as CursorSearch, gm as CursorSearchPagingMethodOneOf, gh as Cursors, bG as CustomActivity, cK as CustomAllowedActions, cy as CustomField, aA as CustomFieldGroup, k0 as CustomFieldGroupWithLiterals, iR as CustomFieldValue, ip as Customer, i5 as DecrementData, i4 as DecrementItemsQuantityRequest, i6 as DecrementItemsQuantityResponse, f2 as DelayedCaptureSettings, j6 as DeleteActivityIdentifiers, hx as DeleteActivityRequest, hy as DeleteActivityResponse, dy as DeleteByFilterOperation, dx as DeleteByIdsOperation, ev as DeleteContext, ae as DeleteStatus, jG as DeleteStatusWithLiterals, bk as DeliveryLogistics, bl as DeliveryLogisticsAddressOneOf, bo as DeliveryTimeSlot, a6 as DeltaPaymentOptionType, jy as DeltaPaymentOptionTypeWithLiterals, iT as Deposit, aC as DepositType, k2 as DepositTypeWithLiterals, aH as DescriptionLine, aJ as DescriptionLineDescriptionLineValueOneOf, aK as DescriptionLineName, D as DescriptionLineType, j9 as DescriptionLineTypeWithLiterals, aI as DescriptionLineValueOneOf, g5 as DiffmatokyPayload, aV as DigitalFile, aP as Dimensions, z as DimensionsUnit, ja as DimensionsUnitWithLiterals, iJ as Discount, iK as DiscountOneDiscountTypeOneOf, Y as DiscountReason, jo as DiscountReasonWithLiterals, bz as DiscountRule, bA as DiscountRuleName, X as DiscountType, jn as DiscountTypeWithLiterals, dh as DomainEvent, di as DomainEventBodyOneOf, hb as DownloadLinkSent, bM as DraftOrderChangesApplied, d9 as DraftOrderCommitSettings, gx as DraftOrderDiffs, gA as DraftOrderDiffsBillingUpdateInfoOneOf, gz as DraftOrderDiffsBuyerUpdateInfoOneOf, gB as DraftOrderDiffsRecipientUpdateInfoOneOf, gy as DraftOrderDiffsShippingUpdateInfoOneOf, f3 as Duration, ag as DurationUnit, jI as DurationUnitWithLiterals, eU as EditorlessAssigned, eV as EditorlessUnassigned, iq as Email, hk as EmailEdited, dG as Empty, dj as EntityCreatedEvent, dm as EntityDeletedEvent, dl as EntityUpdatedEvent, g6 as ErrorInformation, iV as EventMetadata, b5 as ExtendedFields, cq as ExternalReceipt, fQ as ExternalReceiptInfo, aN as FocalPoint, cN as FormIdentifier, cM as FormInfo, a_ as FreeTrialPeriod, hi as FulfillerEmailSent, L as FulfillmentStatus, cY as FulfillmentStatusUpdated, ji as FulfillmentStatusWithLiterals, cD as FulfillmentStatusesAggregate, bh as FullAddressContactDetails, g7 as GetOrderRequest, g8 as GetOrderResponse, f4 as GetPaymentCollectabilityStatusRequest, fh as GetRefundabilityStatusRequest, fi as GetRefundabilityStatusResponse, i0 as GetShipmentsRequest, i1 as GetShipmentsResponse, fN as GiftCardPaymentDetails, c9 as GiftCardPaymentRefund, eW as HasCustomEmailConfigurationsRequest, eX as HasCustomEmailConfigurationsResponse, im as IdAndVersion, dq as IdentificationData, dr as IdentificationDataIdOneOf, db as ImportOrderRequest, dc as ImportOrderResponse, cW as ImportedOrderDeleted, h4 as InternalActivity, h5 as InternalActivityContentOneOf, dv as InternalDocument, dz as InternalDocumentUpdateByFilterOperation, dw as InternalDocumentUpdateOperation, g9 as InternalQueryOrdersRequest, gf as InternalQueryOrdersResponse, dA as InternalUpdateExistingOperation, a7 as InventoryAction, jz as InventoryActionWithLiterals, da as InventoryUpdateDetails, hg as InvoiceAdded, iz as InvoiceDates, iQ as InvoiceDynamicPriceTotals, io as InvoiceFields, hh as InvoiceSent, il as InvoiceSentEvent, aD as InvoiceStatus, k3 as InvoiceStatusWithLiterals, iO 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, jb as ItemTypePresetWithLiterals, iI as ItemizedFee, J as JurisdictionType, jd as JurisdictionTypeWithLiterals, iB as LineItem, bY as LineItemAmount, bP as LineItemChanges, d3 as LineItemDelta, d4 as LineItemDeltaDeltaOneOf, bT as LineItemDescriptionLineChange, bB as LineItemDiscount, bL as LineItemExchangeData, iF as LineItemMetaData, bU as LineItemModifiersChange, bR as LineItemPriceChange, bS as LineItemProductNameChange, bQ as LineItemQuantityChange, Z as LineItemQuantityChangeType, jp as LineItemQuantityChangeTypeWithLiterals, e7 as LineItemRefund, fX as LineItemRefundSummary, iD as LineItemTax, aU as LineItemTaxBreakdown, aT as LineItemTaxInfo, hA as LineItemUpdate, iA as LineItems, iG as Locale, cG as Location, b2 as LocationAndQuantity, bZ as ManagedAdditionalFee, bW as ManagedDiscount, bV as ManagedLineItem, al as ManuallyRefundableReason, jN as ManuallyRefundableReasonWithLiterals, hH as MarkAsFulfilledRequest, hI as MarkAsFulfilledResponse, hN as MarkAsUnfulfilledRequest, hO as MarkAsUnfulfilledResponse, f9 as MarkOrderAsPaidRequest, fa as MarkOrderAsPaidResponse, hC as MarkOrderAsSeenByHumanRequest, hD as MarkOrderAsSeenByHumanResponse, h1 as MaskedOrderLineItem, fp as MembershipChargeItem, fq as MembershipName, fO as MembershipPaymentDetails, ca as MembershipPaymentRefund, at as MembershipPaymentStatus, jV as MembershipPaymentStatusWithLiterals, bH as MerchantComment, bx as MerchantDiscount, by as MerchantDiscountMerchantDiscountReasonOneOf, dp as MessageEnvelope, iP as MetaData, ep as MetaSiteSpecialEvent, eq as MetaSiteSpecialEventPayloadOneOf, b6 as ModifierGroup, ad as Namespace, eF as NamespaceChanged, jF as NamespaceWithLiterals, bK as NewExchangeOrderCreated, ak as NonRefundableReason, jM as NonRefundableReasonWithLiterals, eK as OdeditorAssigned, eL as OdeditorUnassigned, a3 as OrderActionType, jv as OrderActionTypeWithLiterals, $ as OrderActivityTypeEnumActivityType, jr as OrderActivityTypeEnumActivityTypeWithLiterals, aw as OrderApprovalStrategy, jY as OrderApprovalStrategyWithLiterals, cQ as OrderApproved, ha as OrderCanceled, cZ as OrderCanceledEventOrderCanceled, bN as OrderChange, bO as OrderChangeValueOneOf, gr as OrderCreateNotifications, bJ as OrderCreatedFromExchange, gp as OrderCreationSettings, gq as OrderCreationSettingsEditableByOneOf, c_ as OrderDeltasCommitted, h8 as OrderFulfilled, cV as OrderImported, cT as OrderItemsRestocked, aE as OrderLineItem, d2 as OrderLineItemChangedDetails, h9 as OrderNotFulfilled, h7 as OrderPaid, hm as OrderPartiallyPaid, hn as OrderPending, h6 as OrderPlaced, bI as OrderRefunded, ho as OrderRejected, cS as OrderRejectedEventOrderRejected, j2 as OrderSearchSpec, cH as OrderSettings, cI as OrderSettingsAllowedActionsOneOf, cJ as OrderSettingsEditableByOneOf, R as OrderStatus, jm 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, jJ as PaymentCollectabilityStatusWithLiterals, k6 as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, i$ as PaymentCollectionCreatePaymentGatewayOrderOptions, k5 as PaymentCollectionMarkOrderAsPaidApplicationErrors, i_ as PaymentCollectionMarkOrderAsPaidOptions, cl as PaymentDeclined, cm as PaymentDeclinedPaymentDetailsOneOf, fM as PaymentMethodName, E as PaymentOptionType, jc 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, jh as PaymentStatusWithLiterals, iN as Payments, it as Phone, aO as PhysicalProperties, eM as PicassoAssigned, eN as PicassoUnassigned, bn as PickupAddress, bm as PickupDetails, Q as PickupMethod, jl as PickupMethodWithLiterals, hl as PickupReadyEmailSent, ax as Placement, jZ as PlacementWithLiterals, aL as PlainTextValue, cP as PlatformFee, cO as PlatformFeeSummary, gd as PlatformPaging, gg as PlatformPagingMetadata, ga as PlatformQuery, gb as PlatformQueryPagingMethodOneOf, ai as PredefinedPaymentMethod, jK 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, jC 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, hr as PublicActivity, hs as PublicActivityContentOneOf, gi as QueryOrderRequest, gj as QueryOrderResponse, ir as QuotesAddress, aq as Reason, jS as ReasonWithLiterals, cn as ReceiptCreated, co as ReceiptCreatedReceiptInfoOneOf, cr as ReceiptSent, cs as ReceiptSentReceiptInfoOneOf, k4 as RecordManuallyCollectedPaymentApplicationErrors, iZ 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, jW as RefundStatusWithLiterals, fT as RefundTransaction, fj as Refundability, fk as RefundabilityAdditionalRefundabilityInfoOneOf, aj as RefundableStatus, jL 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, ik as Reschedule, fw as RestockInfo, fx as RestockItem, g4 as RestockLocation, am as RestockType, jO as RestockTypeWithLiterals, dk as RestoreInfo, c1 as SavedPaymentMethod, af as ScheduledAction, jH as ScheduledActionWithLiterals, gk 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, ib as SendOrderUpdatedDomainEventRequest, ic as SendOrderUpdatedDomainEventResponse, dY as SendRefundEmailRequest, dZ as SendRefundEmailResponse, fr as ServiceProperties, eB as ServiceProvisioned, eC as ServiceRemoved, iX as SetOrderNumberCounterOptions, dd as SetOrderNumberCounterRequest, de as SetOrderNumberCounterResponse, hj as ShippingAddressEdited, hf as ShippingConfirmationEmailSent, c0 as ShippingInformation, b$ as ShippingInformationChange, bp as ShippingPrice, e9 as ShippingRefund, bq as ShippingRegion, es as SiteCreated, ac as SiteCreatedContext, jE 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, jX as SortOrderWithLiterals, gc as Sorting, iE as Source, az as SourceType, j$ as SourceTypeWithLiterals, a4 as SpecificItemsCouponBehavior, jw as SpecificItemsCouponBehaviorWithLiterals, iy as StandardDetails, ab as State, jD as StateWithLiterals, bf as StreetAddress, eG as StudioAssigned, eQ as StudioTwoAssigned, eR as StudioTwoUnassigned, eH as StudioUnassigned, ix as Subdivision, ay as SubdivisionType, j_ as SubdivisionTypeWithLiterals, aY as SubscriptionDescription, F as SubscriptionFrequency, je as SubscriptionFrequencyWithLiterals, aW as SubscriptionInfo, aZ as SubscriptionSettings, aX as SubscriptionTitle, cF as TagList, cE as Tags, i9 as TagsTagList, i8 as TagsTags, id as Task, ig as TaskAction, ih as TaskActionActionOneOf, ie as TaskKey, br as TaxSummary, b3 as TaxableAddress, b4 as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, jg as TaxableAddressTypeWithLiterals, iH as TotalPrice, b_ as TotalPriceChange, he as TrackingLinkAdded, hc as TrackingNumberAdded, hd as TrackingNumberEdited, an as TransactionStatus, jP as TransactionStatusWithLiterals, b7 as TranslatableString, bX as TranslatedValue, k7 as TriggerRefundApplicationErrors, j1 as TriggerRefundOptions, ft as TriggerRefundRequest, fy as TriggerRefundResponse, dH as TriggerReindexOrderRequest, dE as TriggerReindexRequest, dF as TriggerReindexResponse, gL as UnArchiveOrderRequest, gM as UnArchiveOrderResponse, j5 as UpdateActivityIdentifiers, hv as UpdateActivityRequest, hw as UpdateActivityResponse, gY as UpdateBillingContactDetailsRequest, gZ as UpdateBillingContactDetailsResponse, gU as UpdateBuyerEmailRequest, gV as UpdateBuyerEmailResponse, gR as UpdateBuyerInfoRequest, gT as UpdateBuyerInfoResponse, dt as UpdateInternalDocumentsEvent, du as UpdateInternalDocumentsEventOperationOneOf, hz as UpdateLineItemsDescriptionLinesRequest, hB as UpdateLineItemsDescriptionLinesResponse, j4 as UpdateOrderLineItem, j3 as UpdateOrderLineItemIdentifiers, g_ as UpdateOrderLineItemRequest, g$ as UpdateOrderLineItemResponse, h0 as UpdateOrderLineItemsRequest, h2 as UpdateOrderLineItemsResponse, gt as UpdateOrderRequest, gu as UpdateOrderResponse, gW as UpdateOrderShippingAddressRequest, gX as UpdateOrderShippingAddressResponse, k8 as UpdateOrderStatusApplicationErrors, hF as UpdateOrderStatusRequest, hG as UpdateOrderStatusResponse, f6 as UserDefinedPaymentMethodName, f7 as UserDefinedPaymentMethodNameKindOneOf, eT as UserDomainMediaDisabled, eS as UserDomainMediaEnabled, hY as V1BulkMarkOrdersAsPaidRequest, hZ as V1BulkMarkOrdersAsPaidResponse, h_ as V1CreatePaymentGatewayOrderRequest, h$ as V1CreatePaymentGatewayOrderResponse, gC as V1LineItemDelta, gD as V1LineItemDeltaDeltaOneOf, hW as V1MarkOrderAsPaidRequest, hX as V1MarkOrderAsPaidResponse, cU as V1RestockItem, fK as V1ScheduledAction, bj as V1ShippingInformation, iS as Value, aB as ValueType, k1 as ValueTypeWithLiterals, bi as VatId, N as VatType, jk as VatTypeWithLiterals, dC as VersionedDeleteByIdsOperation, dD as VersionedDocumentId, dB as VersionedDocumentUpdateOperation, a9 as VersioningMode, jB as VersioningModeWithLiterals, g0 as VoidAuthorizedPaymentsRequest, a8 as WebhookIdentityType, jA as WebhookIdentityTypeWithLiterals, W as WeightUnit, jj as WeightUnitWithLiterals, cp as WixReceipt, fP as WixReceiptInfo, eO as WixelAssigned, eP as WixelUnassigned, j8 as utils } from './ecom-v1-order-orders.universal-u09r8hRJ.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,
|