@wix/auto_sdk_ecom_orders 1.0.200 → 1.0.201
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-DxL61AFx.d.ts → ecom-v1-order-orders.universal-VnRchE9Y.d.ts} +37 -37
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +37 -37
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-DxL61AFx.d.mts → ecom-v1-order-orders.universal-VnRchE9Y.d.mts} +37 -37
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +37 -37
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-cvFe0ZbX.d.ts → ecom-v1-order-orders.universal-C7-hgHfv.d.ts} +37 -37
- package/build/internal/cjs/index.d.ts +2 -2
- 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.map +1 -1
- package/build/internal/cjs/meta.d.ts +37 -37
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{ecom-v1-order-orders.universal-cvFe0ZbX.d.mts → ecom-v1-order-orders.universal-C7-hgHfv.d.mts} +37 -37
- package/build/internal/es/index.d.mts +2 -2
- 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.map +1 -1
- package/build/internal/es/meta.d.mts +37 -37
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -3689,42 +3689,6 @@ interface TriggerReindexOrderRequest {
|
|
|
3689
3689
|
*/
|
|
3690
3690
|
orderId?: string;
|
|
3691
3691
|
}
|
|
3692
|
-
/**
|
|
3693
|
-
* Common object for tags.
|
|
3694
|
-
* Should be use as in this example:
|
|
3695
|
-
* message Foo {
|
|
3696
|
-
* string id = 1;
|
|
3697
|
-
* ...
|
|
3698
|
-
* Tags tags = 5
|
|
3699
|
-
* }
|
|
3700
|
-
*
|
|
3701
|
-
* example of taggable entity
|
|
3702
|
-
* {
|
|
3703
|
-
* id: "123"
|
|
3704
|
-
* tags: {
|
|
3705
|
-
* tags: {
|
|
3706
|
-
* tag_ids:["11","22"]
|
|
3707
|
-
* },
|
|
3708
|
-
* private_tags: {
|
|
3709
|
-
* tag_ids: ["33", "44"]
|
|
3710
|
-
* }
|
|
3711
|
-
* }
|
|
3712
|
-
* }
|
|
3713
|
-
*/
|
|
3714
|
-
interface TagsTags {
|
|
3715
|
-
/** Tags that require an additional permission in order to access them, normally not given to site members or visitors. */
|
|
3716
|
-
privateTags?: TagsTagList;
|
|
3717
|
-
/** Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors. */
|
|
3718
|
-
tags?: TagsTagList;
|
|
3719
|
-
}
|
|
3720
|
-
interface TagsTagList {
|
|
3721
|
-
/**
|
|
3722
|
-
* List of tag IDs
|
|
3723
|
-
* @maxSize 100
|
|
3724
|
-
* @maxLength 5
|
|
3725
|
-
*/
|
|
3726
|
-
tagIds?: string[];
|
|
3727
|
-
}
|
|
3728
3692
|
interface SendBuyerConfirmationEmailRequest {
|
|
3729
3693
|
/** @format GUID */
|
|
3730
3694
|
orderId?: string;
|
|
@@ -6880,6 +6844,42 @@ interface BulkUpdateOrderTagsRequest {
|
|
|
6880
6844
|
/** Tags to be removed from orders */
|
|
6881
6845
|
unassignTags?: TagsTags;
|
|
6882
6846
|
}
|
|
6847
|
+
/**
|
|
6848
|
+
* Common object for tags.
|
|
6849
|
+
* Should be use as in this example:
|
|
6850
|
+
* message Foo {
|
|
6851
|
+
* string id = 1;
|
|
6852
|
+
* ...
|
|
6853
|
+
* Tags tags = 5
|
|
6854
|
+
* }
|
|
6855
|
+
*
|
|
6856
|
+
* example of taggable entity
|
|
6857
|
+
* {
|
|
6858
|
+
* id: "123"
|
|
6859
|
+
* tags: {
|
|
6860
|
+
* tags: {
|
|
6861
|
+
* tag_ids:["11","22"]
|
|
6862
|
+
* },
|
|
6863
|
+
* private_tags: {
|
|
6864
|
+
* tag_ids: ["33", "44"]
|
|
6865
|
+
* }
|
|
6866
|
+
* }
|
|
6867
|
+
* }
|
|
6868
|
+
*/
|
|
6869
|
+
interface TagsTags {
|
|
6870
|
+
/** Tags that require an additional permission in order to access them, normally not given to site members or visitors. */
|
|
6871
|
+
privateTags?: TagsTagList;
|
|
6872
|
+
/** Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors. */
|
|
6873
|
+
tags?: TagsTagList;
|
|
6874
|
+
}
|
|
6875
|
+
interface TagsTagList {
|
|
6876
|
+
/**
|
|
6877
|
+
* List of tag IDs
|
|
6878
|
+
* @maxSize 100
|
|
6879
|
+
* @maxLength 5
|
|
6880
|
+
*/
|
|
6881
|
+
tagIds?: string[];
|
|
6882
|
+
}
|
|
6883
6883
|
interface BulkUpdateOrderTagsResponse {
|
|
6884
6884
|
/**
|
|
6885
6885
|
* @minSize 1
|
|
@@ -8598,4 +8598,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
8598
8598
|
unassignTags?: TagsTags;
|
|
8599
8599
|
}
|
|
8600
8600
|
|
|
8601
|
-
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 BillingAdjustmentPriceSummary as a$, AttributionSource as a0, ChannelType as a1, AdditionalFeeSource as a2, OrderActionType as a3, ChargeType as a4, DeltaPaymentOptionType as a5, InventoryAction as a6, WebhookIdentityType as a7, VersioningMode as a8, PreviewEmailType as a9, ValueType as aA, DepositType as aB, InvoiceStatus as aC, type OrderLineItem as aD, type ProductName as aE, type CatalogReference as aF, type DescriptionLine as aG, type DescriptionLineValueOneOf as aH, type DescriptionLineDescriptionLineValueOneOf as aI, type DescriptionLineName as aJ, type PlainTextValue as aK, type Color as aL, type FocalPoint as aM, type PhysicalProperties as aN, type Dimensions as aO, type ItemType as aP, type ItemTypeItemTypeDataOneOf as aQ, type ItemTaxFullDetails as aR, type LineItemTaxInfo as aS, type LineItemTaxBreakdown as aT, type DigitalFile as aU, type SubscriptionInfo as aV, type SubscriptionTitle as aW, type SubscriptionDescription as aX, type SubscriptionSettings as aY, type FreeTrialPeriod as aZ, type BillingAdjustment as a_, State as aa, SiteCreatedContext as ab, Namespace as ac, DeleteStatus as ad, ScheduledAction as ae, DurationUnit as af, PaymentCollectabilityStatus as ag, PredefinedPaymentMethod as ah, RefundableStatus as ai, NonRefundableReason as aj, ManuallyRefundableReason as ak, RestockType as al, TransactionStatus as am, AuthorizationCaptureStatus as an, AuthorizationVoidStatus as ao, Reason as ap, ActionType as aq, ChargebackStatus as ar, MembershipPaymentStatus as as, RefundStatus as at, SortOrder as au, OrderApprovalStrategy as av, Placement as aw, SubdivisionType as ax, SourceType as ay, CustomFieldGroup as az, type PreparePaymentCollectionResponse as b, type ShippingInformation as b$, type PriceDescription as b0, type LocationAndQuantity as b1, type TaxableAddress as b2, type TaxableAddressTaxableAddressDataOneOf as b3, type ExtendedFields as b4, type ModifierGroup as b5, type TranslatableString as b6, type ItemModifier as b7, type BuyerInfo as b8, type BuyerInfoIdOneOf as b9, type LineItemDiscount as bA, type ItemCombination as bB, type ItemCombinationLineItem as bC, type Activity as bD, type ActivityContentOneOf as bE, type CustomActivity as bF, type MerchantComment as bG, type OrderRefunded as bH, type OrderCreatedFromExchange as bI, type NewExchangeOrderCreated as bJ, type LineItemExchangeData as bK, type DraftOrderChangesApplied as bL, type OrderChange as bM, type OrderChangeValueOneOf as bN, type LineItemChanges as bO, type LineItemQuantityChange as bP, type LineItemPriceChange as bQ, type LineItemProductNameChange as bR, type LineItemDescriptionLineChange as bS, type LineItemModifiersChange as bT, type ManagedLineItem as bU, type ManagedDiscount as bV, type TranslatedValue as bW, type LineItemAmount as bX, type ManagedAdditionalFee as bY, type TotalPriceChange as bZ, type ShippingInformationChange as b_, type CurrencyConversionDetails as ba, type PriceSummary as bb, type AddressWithContact as bc, type Address as bd, type StreetAddress as be, type AddressLocation as bf, type FullAddressContactDetails as bg, type VatId as bh, type V1ShippingInformation as bi, type DeliveryLogistics as bj, type DeliveryLogisticsAddressOneOf as bk, type PickupDetails as bl, type PickupAddress as bm, type DeliveryTimeSlot as bn, type ShippingPrice as bo, type ShippingRegion as bp, type TaxSummary as bq, type OrderTaxInfo as br, type OrderTaxBreakdown as bs, type AppliedDiscount as bt, type AppliedDiscountDiscountSourceOneOf as bu, type Coupon as bv, type MerchantDiscount as bw, type MerchantDiscountMerchantDiscountReasonOneOf as bx, type DiscountRule as by, type DiscountRuleName as bz, type PreparePaymentCollectionApplicationErrors as c, type ItemChangedDetails as c$, type SavedPaymentMethod as c0, type AuthorizedPaymentCreated as c1, type AuthorizedPaymentCaptured as c2, type AuthorizedPaymentVoided as c3, type RefundInitiated as c4, type RefundedPayment as c5, type RefundedPaymentKindOneOf as c6, type RegularPaymentRefund as c7, type GiftCardPaymentRefund as c8, type MembershipPaymentRefund as c9, type AdditionalFee as cA, type FulfillmentStatusesAggregate as cB, type Tags as cC, type TagList as cD, type Location as cE, type OrderSettings as cF, type OrderSettingsAllowedActionsOneOf as cG, type OrderSettingsEditableByOneOf as cH, type CustomAllowedActions as cI, type OwnerApps as cJ, type FormInfo as cK, type FormIdentifier as cL, type PlatformFeeSummary as cM, type PlatformFee as cN, type OrderApproved as cO, type OrdersExperiments as cP, type OrderRejectedEventOrderRejected as cQ, type OrderItemsRestocked as cR, type V1RestockItem as cS, type OrderImported as cT, type ImportedOrderDeleted as cU, type PaymentStatusUpdated as cV, type FulfillmentStatusUpdated as cW, type OrderCanceledEventOrderCanceled as cX, type OrderDeltasCommitted as cY, type CommittedDiffs as cZ, type CommittedDiffsShippingUpdateInfoOneOf as c_, type PaymentRefunded as ca, type PaymentRefundFailed as cb, type RefundedAsStoreCredit as cc, type PaymentPending as cd, type PaymentPendingPaymentDetailsOneOf as ce, type RegularPayment as cf, type RegularPaymentPaymentMethodDetailsOneOf as cg, type CreditCardDetails as ch, type PaymentCanceled as ci, type PaymentCanceledPaymentDetailsOneOf as cj, type PaymentDeclined as ck, type PaymentDeclinedPaymentDetailsOneOf as cl, type ReceiptCreated as cm, type ReceiptCreatedReceiptInfoOneOf as cn, type WixReceipt as co, type ExternalReceipt as cp, type ReceiptSent as cq, type ReceiptSentReceiptInfoOneOf as cr, type ChargebackCreated as cs, type ChargebackReversed as ct, type CreatedBy as cu, type CreatedByStringOneOf as cv, type ChannelInfo as cw, type CustomField as cx, type BalanceSummary as cy, type Balance as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type SendMerchantOrderReceivedPushRequest as d$, type OrderLineItemChangedDetails as d0, type LineItemDelta as d1, type LineItemDeltaDeltaOneOf as d2, type AppliedDiscountDelta as d3, type AppliedDiscountDeltaDeltaOneOf as d4, type AdditionalFeeDelta as d5, type AdditionalFeeDeltaDeltaOneOf as d6, type DraftOrderCommitSettings as d7, type InventoryUpdateDetails as d8, type ImportOrderRequest as d9, type VersionedDeleteByIdsOperation as dA, type VersionedDocumentId as dB, type TriggerReindexRequest as dC, type TriggerReindexResponse as dD, type Empty as dE, type BatchOfTriggerReindexOrderRequest as dF, type TriggerReindexOrderRequest as dG, type TagsTags as dH, type TagsTagList as dI, type SendBuyerConfirmationEmailRequest as dJ, type SendBuyerConfirmationEmailResponse as dK, type SendBuyerPaymentsReceivedEmailRequest as dL, type SendBuyerPaymentsReceivedEmailResponse as dM, type SendBuyerPickupConfirmationEmailRequest as dN, type SendBuyerPickupConfirmationEmailResponse as dO, type BulkSendBuyerPickupConfirmationEmailsRequest as dP, type BulkSendBuyerPickupConfirmationEmailsResponse as dQ, type SendBuyerShippingConfirmationEmailRequest as dR, type SendBuyerShippingConfirmationEmailResponse as dS, type BulkSendBuyerShippingConfirmationEmailsRequest as dT, type BulkSendBuyerShippingConfirmationEmailsResponse as dU, type SendMerchantOrderReceivedNotificationRequest as dV, type SendMerchantOrderReceivedNotificationResponse as dW, type SendCancelRefundEmailRequest as dX, type SendCancelRefundEmailResponse as dY, type SendRefundEmailRequest as dZ, type SendRefundEmailResponse as d_, type ImportOrderResponse as da, type SetOrderNumberCounterRequest as db, type SetOrderNumberCounterResponse as dc, type BulkDeleteImportedOrdersRequest as dd, type BulkDeleteImportedOrdersResponse as de, type DomainEvent as df, type DomainEventBodyOneOf as dg, type EntityCreatedEvent as dh, type RestoreInfo as di, type EntityUpdatedEvent as dj, type EntityDeletedEvent as dk, type ActionEvent as dl, type MessageEnvelope as dm, type IdentificationData as dn, type IdentificationDataIdOneOf as dp, type AccountInfo as dq, type UpdateInternalDocumentsEvent as dr, type UpdateInternalDocumentsEventOperationOneOf as ds, type InternalDocument as dt, type InternalDocumentUpdateOperation as du, type DeleteByIdsOperation as dv, type DeleteByFilterOperation as dw, type InternalDocumentUpdateByFilterOperation as dx, type InternalUpdateExistingOperation as dy, type VersionedDocumentUpdateOperation as dz, type PaymentCapture as e, type DelayedCaptureSettings as e$, type SendMerchantOrderReceivedPushResponse as e0, type PreviewEmailByTypeRequest as e1, type PreviewEmailByTypeResponse as e2, type PreviewRefundEmailRequest as e3, type RefundDetails as e4, type RefundItem as e5, type LineItemRefund as e6, type AdditionalFeeRefund as e7, type ShippingRefund as e8, type PreviewRefundEmailResponse as e9, type ServiceProvisioned as eA, type ServiceRemoved as eB, type SiteRenamed as eC, type SiteHardDeleted as eD, type NamespaceChanged as eE, type StudioAssigned as eF, type StudioUnassigned as eG, type SiteUrlChanged as eH, type SitePurgedExternally as eI, type OdeditorAssigned as eJ, type OdeditorUnassigned as eK, type PicassoAssigned as eL, type PicassoUnassigned as eM, type WixelAssigned as eN, type WixelUnassigned as eO, type StudioTwoAssigned as eP, type StudioTwoUnassigned as eQ, type UserDomainMediaEnabled as eR, type UserDomainMediaDisabled as eS, type HasCustomEmailConfigurationsRequest as eT, type HasCustomEmailConfigurationsResponse as eU, type AddToAutomationMigrationPopulationRequest as eV, type AddToAutomationMigrationPopulationResponse as eW, type IsInAutomationMigrationPopulationRequest as eX, type IsInAutomationMigrationPopulationResponse as eY, type PreparePaymentCollectionRequest as eZ, type RedirectUrls as e_, type PreviewCancelEmailRequest as ea, type PreviewCancelEmailResponse as eb, type PreviewCancelRefundEmailRequest as ec, type PreviewCancelRefundEmailResponse as ed, type PreviewBuyerPaymentsReceivedEmailRequest as ee, type PreviewBuyerPaymentsReceivedEmailResponse as ef, type PreviewBuyerConfirmationEmailRequest as eg, type PreviewBuyerConfirmationEmailResponse as eh, type PreviewBuyerPickupConfirmationEmailRequest as ei, type PreviewBuyerPickupConfirmationEmailResponse as ej, type PreviewShippingConfirmationEmailRequest as ek, type PreviewShippingConfirmationEmailResponse as el, type PreviewResendDownloadLinksEmailRequest as em, type PreviewResendDownloadLinksEmailResponse as en, type MetaSiteSpecialEvent as eo, type MetaSiteSpecialEventPayloadOneOf as ep, type Asset as eq, type SiteCreated as er, type SiteTransferred as es, type SiteDeleted as et, type DeleteContext as eu, type SiteUndeleted as ev, type SitePublished as ew, type SiteUnpublished as ex, type SiteMarkedAsTemplate as ey, type SiteMarkedAsWixSite as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type ChargeSavedPaymentMethodResponse as f$, type Duration as f0, type GetPaymentCollectabilityStatusRequest as f1, type RecordManuallyCollectedPaymentRequest as f2, type UserDefinedPaymentMethodName as f3, type UserDefinedPaymentMethodNameKindOneOf as f4, type RecordManuallyCollectedPaymentResponse as f5, type MarkOrderAsPaidRequest as f6, type MarkOrderAsPaidResponse as f7, type BulkMarkOrdersAsPaidRequest as f8, type BulkMarkOrdersAsPaidResponse as f9, type RegularPaymentDetails as fA, type RegularPaymentDetailsPaymentMethodDetailsOneOf as fB, type CreditCardPaymentMethodDetails as fC, type AuthorizationDetails as fD, type AuthorizationCapture as fE, type AuthorizationActionFailureDetails as fF, type AuthorizationVoid as fG, type V1ScheduledAction as fH, type Chargeback as fI, type PaymentMethodName as fJ, type GiftCardPaymentDetails as fK, type MembershipPaymentDetails as fL, type WixReceiptInfo as fM, type ExternalReceiptInfo as fN, type Refund as fO, type RefundTransaction as fP, type RefundStatusInfo as fQ, type AggregatedRefundSummary as fR, type RefundItemsBreakdown as fS, type LineItemRefundSummary as fT, type CalculateRefundRequest as fU, type CalculateRefundItemRequest as fV, type CalculateRefundResponse as fW, type CalculateRefundItemResponse as fX, type VoidAuthorizedPaymentsRequest as fY, type CaptureAuthorizedPaymentsRequest as fZ, type ChargeSavedPaymentMethodRequest as f_, type BulkOrderResult as fa, type ItemMetadata as fb, type ApplicationError as fc, type BulkActionMetadata as fd, type GetRefundabilityStatusRequest as fe, type GetRefundabilityStatusResponse as ff, type Refundability as fg, type RefundabilityAdditionalRefundabilityInfoOneOf as fh, type CreatePaymentGatewayOrderRequest as fi, type ChargedBy as fj, type CreatePaymentGatewayOrderResponse as fk, type ChargeMembershipsRequest as fl, type MembershipChargeItem as fm, type MembershipName as fn, type ServiceProperties as fo, type ChargeMembershipsResponse as fp, type TriggerRefundRequest as fq, type PaymentRefund as fr, type RefundSideEffects as fs, type RestockInfo as ft, type RestockItem as fu, type TriggerRefundResponse as fv, type OrderTransactions as fw, type Payment as fx, type PaymentPaymentDetailsOneOf as fy, type PaymentReceiptInfoOneOf as fz, type GetOrderApplicationErrors as g, type InternalActivity as g$, type DiffmatokyPayload as g0, type ErrorInformation as g1, type GetOrderRequest as g2, type GetOrderResponse as g3, type InternalQueryOrdersRequest as g4, type PlatformQuery as g5, type PlatformQueryPagingMethodOneOf as g6, type Sorting as g7, type PlatformPaging as g8, type CursorPaging as g9, type ArchiveOrderRequest as gA, type ArchiveOrderResponse as gB, type BulkArchiveOrdersRequest as gC, type BulkArchiveOrdersResponse as gD, type BulkArchiveOrdersByFilterRequest as gE, type BulkArchiveOrdersByFilterResponse as gF, type UnArchiveOrderRequest as gG, type UnArchiveOrderResponse as gH, type BulkUnArchiveOrdersRequest as gI, type BulkUnArchiveOrdersResponse as gJ, type BulkUnArchiveOrdersByFilterRequest as gK, type BulkUnArchiveOrdersByFilterResponse as gL, type UpdateBuyerInfoRequest as gM, type BuyerInfoUpdate as gN, type UpdateBuyerInfoResponse as gO, type UpdateBuyerEmailRequest as gP, type UpdateBuyerEmailResponse as gQ, type UpdateOrderShippingAddressRequest as gR, type UpdateOrderShippingAddressResponse as gS, type UpdateBillingContactDetailsRequest as gT, type UpdateBillingContactDetailsResponse as gU, type UpdateOrderLineItemRequest as gV, type UpdateOrderLineItemResponse as gW, type UpdateOrderLineItemsRequest as gX, type MaskedOrderLineItem as gY, type UpdateOrderLineItemsResponse as gZ, type AddInternalActivityRequest as g_, type InternalQueryOrdersResponse as ga, type PlatformPagingMetadata as gb, type Cursors as gc, type QueryOrderRequest as gd, type QueryOrderResponse as ge, type SearchOrdersRequest as gf, type CursorSearch as gg, type CursorSearchPagingMethodOneOf as gh, type CursorPagingMetadata as gi, type CreateOrderRequest as gj, type OrderCreationSettings as gk, type OrderCreationSettingsEditableByOneOf as gl, type OrderCreateNotifications as gm, type CreateOrderResponse as gn, type UpdateOrderRequest as go, type UpdateOrderResponse as gp, type BulkUpdateOrdersRequest as gq, type CommitDeltasRequest as gr, type DraftOrderDiffs as gs, type DraftOrderDiffsShippingUpdateInfoOneOf as gt, type DraftOrderDiffsBuyerUpdateInfoOneOf as gu, type DraftOrderDiffsBillingUpdateInfoOneOf as gv, type DraftOrderDiffsRecipientUpdateInfoOneOf as gw, type V1LineItemDelta as gx, type V1LineItemDeltaDeltaOneOf as gy, type CommitDeltasResponse as gz, type OrderSearch as h, type DecrementItemsQuantityRequest as h$, type InternalActivityContentOneOf as h0, type OrderPlaced as h1, type OrderPaid as h2, type OrderFulfilled as h3, type OrderNotFulfilled as h4, type OrderCanceled as h5, type DownloadLinkSent as h6, type TrackingNumberAdded as h7, type TrackingNumberEdited as h8, type TrackingLinkAdded as h9, type UpdateOrderStatusRequest as hA, type UpdateOrderStatusResponse as hB, type MarkAsFulfilledRequest as hC, type MarkAsFulfilledResponse as hD, type BulkMarkAsFulfilledRequest as hE, type BulkMarkAsFulfilledResponse as hF, type BulkMarkAsFulfilledByFilterRequest as hG, type BulkMarkAsFulfilledByFilterResponse as hH, type MarkAsUnfulfilledRequest as hI, type MarkAsUnfulfilledResponse as hJ, type BulkMarkAsUnfulfilledRequest as hK, type BulkMarkAsUnfulfilledResponse as hL, type BulkMarkAsUnfulfilledByFilterRequest as hM, type BulkMarkAsUnfulfilledByFilterResponse as hN, type BulkSetBusinessLocationRequest as hO, type BulkSetBusinessLocationResponse as hP, type BulkSetBusinessLocationResult as hQ, type V1MarkOrderAsPaidRequest as hR, type V1MarkOrderAsPaidResponse as hS, type V1BulkMarkOrdersAsPaidRequest as hT, type V1BulkMarkOrdersAsPaidResponse as hU, type V1CreatePaymentGatewayOrderRequest as hV, type V1CreatePaymentGatewayOrderResponse as hW, type GetShipmentsRequest as hX, type GetShipmentsResponse as hY, type AggregateOrdersRequest as hZ, type AggregateOrdersResponse as h_, type ShippingConfirmationEmailSent as ha, type InvoiceAdded as hb, type InvoiceSent as hc, type FulfillerEmailSent as hd, type ShippingAddressEdited as he, type EmailEdited as hf, type PickupReadyEmailSent as hg, type OrderPartiallyPaid as hh, type OrderPending as hi, type OrderRejected as hj, type AddInternalActivityResponse as hk, type AddActivityRequest as hl, type PublicActivity as hm, type PublicActivityContentOneOf as hn, type AddActivityResponse as ho, type AddActivitiesRequest as hp, type UpdateActivityRequest as hq, type UpdateActivityResponse as hr, type DeleteActivityRequest as hs, type DeleteActivityResponse as ht, type UpdateLineItemsDescriptionLinesRequest as hu, type LineItemUpdate as hv, type UpdateLineItemsDescriptionLinesResponse as hw, type MarkOrderAsSeenByHumanRequest as hx, type MarkOrderAsSeenByHumanResponse as hy, type CancelOrderRequest as hz, type CreateOrderOptions as i, type DeleteActivityIdentifiers as i$, type DecrementData as i0, type DecrementItemsQuantityResponse as i1, type BulkUpdateOrderTagsRequest as i2, type BulkUpdateOrderTagsResult as i3, type SendOrderUpdatedDomainEventRequest as i4, type SendOrderUpdatedDomainEventResponse as i5, type Task as i6, type TaskKey as i7, type TaskAction as i8, type TaskActionActionOneOf as i9, type TotalPrice as iA, type ItemizedFee as iB, type Discount as iC, type DiscountOneDiscountTypeOneOf as iD, type CalculatedTaxes as iE, type CalculatedTax as iF, type Payments as iG, type InvoicesPayment as iH, type MetaData as iI, type InvoiceDynamicPriceTotals as iJ, type CustomFieldValue as iK, type Value as iL, type Deposit as iM, type BaseEventMetadata as iN, type EventMetadata as iO, type AccountInfoMetadata as iP, type SetOrderNumberCounterOptions as iQ, type BulkDeleteImportedOrdersOptions as iR, type RecordManuallyCollectedPaymentOptions as iS, type PaymentCollectionMarkOrderAsPaidOptions as iT, type PaymentCollectionCreatePaymentGatewayOrderOptions as iU, type ChargeMembershipsOptions as iV, type TriggerRefundOptions as iW, type OrderSearchSpec as iX, type UpdateOrderLineItemIdentifiers as iY, type UpdateOrderLineItem as iZ, type UpdateActivityIdentifiers as i_, type Complete as ia, type Cancel as ib, type Reschedule as ic, type InvoiceSentEvent as id, type IdAndVersion as ie, type InvoiceFields as ig, type Customer as ih, type Email as ii, type QuotesAddress as ij, type AddressDescription as ik, type Phone as il, type Company as im, type CommonAddress as io, type CommonAddressStreetOneOf as ip, type Subdivision as iq, type StandardDetails as ir, type InvoiceDates as is, type LineItems as it, type LineItem as iu, type BigDecimalWrapper as iv, type LineItemTax as iw, type Source as ix, type LineItemMetaData as iy, type Locale as iz, type CreateOrderApplicationErrors as j, type UpdateOrderStatusApplicationErrors as j$, type AggregateOrdersOptions as j0, type DescriptionLineTypeWithLiterals as j1, type DimensionsUnitWithLiterals as j2, type ItemTypePresetWithLiterals as j3, type PaymentOptionTypeWithLiterals as j4, type JurisdictionTypeWithLiterals as j5, type SubscriptionFrequencyWithLiterals as j6, type AdjustmentTypeWithLiterals as j7, type TaxableAddressTypeWithLiterals as j8, type PaymentStatusWithLiterals as j9, type PaymentCollectabilityStatusWithLiterals as jA, type PredefinedPaymentMethodWithLiterals as jB, type RefundableStatusWithLiterals as jC, type NonRefundableReasonWithLiterals as jD, type ManuallyRefundableReasonWithLiterals as jE, type RestockTypeWithLiterals as jF, type TransactionStatusWithLiterals as jG, type AuthorizationCaptureStatusWithLiterals as jH, type AuthorizationVoidStatusWithLiterals as jI, type ReasonWithLiterals as jJ, type ActionTypeWithLiterals as jK, type ChargebackStatusWithLiterals as jL, type MembershipPaymentStatusWithLiterals as jM, type RefundStatusWithLiterals as jN, type SortOrderWithLiterals as jO, type OrderApprovalStrategyWithLiterals as jP, type PlacementWithLiterals as jQ, type SubdivisionTypeWithLiterals as jR, type SourceTypeWithLiterals as jS, type CustomFieldGroupWithLiterals as jT, type ValueTypeWithLiterals as jU, type DepositTypeWithLiterals as jV, type InvoiceStatusWithLiterals as jW, type RecordManuallyCollectedPaymentApplicationErrors as jX, type PaymentCollectionMarkOrderAsPaidApplicationErrors as jY, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as jZ, type TriggerRefundApplicationErrors as j_, type FulfillmentStatusWithLiterals as ja, type WeightUnitWithLiterals as jb, type VatTypeWithLiterals as jc, type PickupMethodWithLiterals as jd, type OrderStatusWithLiterals as je, type DiscountTypeWithLiterals as jf, type DiscountReasonWithLiterals as jg, type LineItemQuantityChangeTypeWithLiterals as jh, type ActivityTypeWithLiterals as ji, type OrderActivityTypeEnumActivityTypeWithLiterals as jj, type AttributionSourceWithLiterals as jk, type ChannelTypeWithLiterals as jl, type AdditionalFeeSourceWithLiterals as jm, type OrderActionTypeWithLiterals as jn, type ChargeTypeWithLiterals as jo, type DeltaPaymentOptionTypeWithLiterals as jp, type InventoryActionWithLiterals as jq, type WebhookIdentityTypeWithLiterals as jr, type VersioningModeWithLiterals as js, type PreviewEmailTypeWithLiterals as jt, type StateWithLiterals as ju, type SiteCreatedContextWithLiterals as jv, type NamespaceWithLiterals as jw, type DeleteStatusWithLiterals as jx, type ScheduledActionWithLiterals as jy, type DurationUnitWithLiterals as jz, type UpdateOrderApplicationErrors as k, type CommonSearchWithEntityContext as k0, onOrderApproved as k1, onOrderCanceled as k2, onOrderCommitted as k3, onOrderCreated as k4, onOrderFulfilled as k5, onOrderPaymentStatusUpdated as k6, onOrderUpdated as k7, preparePaymentCollection as k8, getPaymentCollectabilityStatus as k9, voidAuthorizedPayments as ka, captureAuthorizedPayments as kb, getOrder as kc, createOrder as kd, updateOrder as ke, bulkUpdateOrders as kf, addActivities as kg, cancelOrder as kh, bulkUpdateOrderTags as ki, 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 };
|
|
8601
|
+
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 BillingAdjustmentPriceSummary as a$, AttributionSource as a0, ChannelType as a1, AdditionalFeeSource as a2, OrderActionType as a3, ChargeType as a4, DeltaPaymentOptionType as a5, InventoryAction as a6, WebhookIdentityType as a7, VersioningMode as a8, PreviewEmailType as a9, ValueType as aA, DepositType as aB, InvoiceStatus as aC, type OrderLineItem as aD, type ProductName as aE, type CatalogReference as aF, type DescriptionLine as aG, type DescriptionLineValueOneOf as aH, type DescriptionLineDescriptionLineValueOneOf as aI, type DescriptionLineName as aJ, type PlainTextValue as aK, type Color as aL, type FocalPoint as aM, type PhysicalProperties as aN, type Dimensions as aO, type ItemType as aP, type ItemTypeItemTypeDataOneOf as aQ, type ItemTaxFullDetails as aR, type LineItemTaxInfo as aS, type LineItemTaxBreakdown as aT, type DigitalFile as aU, type SubscriptionInfo as aV, type SubscriptionTitle as aW, type SubscriptionDescription as aX, type SubscriptionSettings as aY, type FreeTrialPeriod as aZ, type BillingAdjustment as a_, State as aa, SiteCreatedContext as ab, Namespace as ac, DeleteStatus as ad, ScheduledAction as ae, DurationUnit as af, PaymentCollectabilityStatus as ag, PredefinedPaymentMethod as ah, RefundableStatus as ai, NonRefundableReason as aj, ManuallyRefundableReason as ak, RestockType as al, TransactionStatus as am, AuthorizationCaptureStatus as an, AuthorizationVoidStatus as ao, Reason as ap, ActionType as aq, ChargebackStatus as ar, MembershipPaymentStatus as as, RefundStatus as at, SortOrder as au, OrderApprovalStrategy as av, Placement as aw, SubdivisionType as ax, SourceType as ay, CustomFieldGroup as az, type PreparePaymentCollectionResponse as b, type ShippingInformation as b$, type PriceDescription as b0, type LocationAndQuantity as b1, type TaxableAddress as b2, type TaxableAddressTaxableAddressDataOneOf as b3, type ExtendedFields as b4, type ModifierGroup as b5, type TranslatableString as b6, type ItemModifier as b7, type BuyerInfo as b8, type BuyerInfoIdOneOf as b9, type LineItemDiscount as bA, type ItemCombination as bB, type ItemCombinationLineItem as bC, type Activity as bD, type ActivityContentOneOf as bE, type CustomActivity as bF, type MerchantComment as bG, type OrderRefunded as bH, type OrderCreatedFromExchange as bI, type NewExchangeOrderCreated as bJ, type LineItemExchangeData as bK, type DraftOrderChangesApplied as bL, type OrderChange as bM, type OrderChangeValueOneOf as bN, type LineItemChanges as bO, type LineItemQuantityChange as bP, type LineItemPriceChange as bQ, type LineItemProductNameChange as bR, type LineItemDescriptionLineChange as bS, type LineItemModifiersChange as bT, type ManagedLineItem as bU, type ManagedDiscount as bV, type TranslatedValue as bW, type LineItemAmount as bX, type ManagedAdditionalFee as bY, type TotalPriceChange as bZ, type ShippingInformationChange as b_, type CurrencyConversionDetails as ba, type PriceSummary as bb, type AddressWithContact as bc, type Address as bd, type StreetAddress as be, type AddressLocation as bf, type FullAddressContactDetails as bg, type VatId as bh, type V1ShippingInformation as bi, type DeliveryLogistics as bj, type DeliveryLogisticsAddressOneOf as bk, type PickupDetails as bl, type PickupAddress as bm, type DeliveryTimeSlot as bn, type ShippingPrice as bo, type ShippingRegion as bp, type TaxSummary as bq, type OrderTaxInfo as br, type OrderTaxBreakdown as bs, type AppliedDiscount as bt, type AppliedDiscountDiscountSourceOneOf as bu, type Coupon as bv, type MerchantDiscount as bw, type MerchantDiscountMerchantDiscountReasonOneOf as bx, type DiscountRule as by, type DiscountRuleName as bz, type PreparePaymentCollectionApplicationErrors as c, type ItemChangedDetails as c$, type SavedPaymentMethod as c0, type AuthorizedPaymentCreated as c1, type AuthorizedPaymentCaptured as c2, type AuthorizedPaymentVoided as c3, type RefundInitiated as c4, type RefundedPayment as c5, type RefundedPaymentKindOneOf as c6, type RegularPaymentRefund as c7, type GiftCardPaymentRefund as c8, type MembershipPaymentRefund as c9, type AdditionalFee as cA, type FulfillmentStatusesAggregate as cB, type Tags as cC, type TagList as cD, type Location as cE, type OrderSettings as cF, type OrderSettingsAllowedActionsOneOf as cG, type OrderSettingsEditableByOneOf as cH, type CustomAllowedActions as cI, type OwnerApps as cJ, type FormInfo as cK, type FormIdentifier as cL, type PlatformFeeSummary as cM, type PlatformFee as cN, type OrderApproved as cO, type OrdersExperiments as cP, type OrderRejectedEventOrderRejected as cQ, type OrderItemsRestocked as cR, type V1RestockItem as cS, type OrderImported as cT, type ImportedOrderDeleted as cU, type PaymentStatusUpdated as cV, type FulfillmentStatusUpdated as cW, type OrderCanceledEventOrderCanceled as cX, type OrderDeltasCommitted as cY, type CommittedDiffs as cZ, type CommittedDiffsShippingUpdateInfoOneOf as c_, type PaymentRefunded as ca, type PaymentRefundFailed as cb, type RefundedAsStoreCredit as cc, type PaymentPending as cd, type PaymentPendingPaymentDetailsOneOf as ce, type RegularPayment as cf, type RegularPaymentPaymentMethodDetailsOneOf as cg, type CreditCardDetails as ch, type PaymentCanceled as ci, type PaymentCanceledPaymentDetailsOneOf as cj, type PaymentDeclined as ck, type PaymentDeclinedPaymentDetailsOneOf as cl, type ReceiptCreated as cm, type ReceiptCreatedReceiptInfoOneOf as cn, type WixReceipt as co, type ExternalReceipt as cp, type ReceiptSent as cq, type ReceiptSentReceiptInfoOneOf as cr, type ChargebackCreated as cs, type ChargebackReversed as ct, type CreatedBy as cu, type CreatedByStringOneOf as cv, type ChannelInfo as cw, type CustomField as cx, type BalanceSummary as cy, type Balance as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type PreviewEmailByTypeRequest as d$, type OrderLineItemChangedDetails as d0, type LineItemDelta as d1, type LineItemDeltaDeltaOneOf as d2, type AppliedDiscountDelta as d3, type AppliedDiscountDeltaDeltaOneOf as d4, type AdditionalFeeDelta as d5, type AdditionalFeeDeltaDeltaOneOf as d6, type DraftOrderCommitSettings as d7, type InventoryUpdateDetails as d8, type ImportOrderRequest as d9, type VersionedDeleteByIdsOperation as dA, type VersionedDocumentId as dB, type TriggerReindexRequest as dC, type TriggerReindexResponse as dD, type Empty as dE, type BatchOfTriggerReindexOrderRequest as dF, type TriggerReindexOrderRequest as dG, type SendBuyerConfirmationEmailRequest as dH, type SendBuyerConfirmationEmailResponse as dI, type SendBuyerPaymentsReceivedEmailRequest as dJ, type SendBuyerPaymentsReceivedEmailResponse as dK, type SendBuyerPickupConfirmationEmailRequest as dL, type SendBuyerPickupConfirmationEmailResponse as dM, type BulkSendBuyerPickupConfirmationEmailsRequest as dN, type BulkSendBuyerPickupConfirmationEmailsResponse as dO, type SendBuyerShippingConfirmationEmailRequest as dP, type SendBuyerShippingConfirmationEmailResponse as dQ, type BulkSendBuyerShippingConfirmationEmailsRequest as dR, type BulkSendBuyerShippingConfirmationEmailsResponse as dS, type SendMerchantOrderReceivedNotificationRequest as dT, type SendMerchantOrderReceivedNotificationResponse as dU, type SendCancelRefundEmailRequest as dV, type SendCancelRefundEmailResponse as dW, type SendRefundEmailRequest as dX, type SendRefundEmailResponse as dY, type SendMerchantOrderReceivedPushRequest as dZ, type SendMerchantOrderReceivedPushResponse as d_, type ImportOrderResponse as da, type SetOrderNumberCounterRequest as db, type SetOrderNumberCounterResponse as dc, type BulkDeleteImportedOrdersRequest as dd, type BulkDeleteImportedOrdersResponse as de, type DomainEvent as df, type DomainEventBodyOneOf as dg, type EntityCreatedEvent as dh, type RestoreInfo as di, type EntityUpdatedEvent as dj, type EntityDeletedEvent as dk, type ActionEvent as dl, type MessageEnvelope as dm, type IdentificationData as dn, type IdentificationDataIdOneOf as dp, type AccountInfo as dq, type UpdateInternalDocumentsEvent as dr, type UpdateInternalDocumentsEventOperationOneOf as ds, type InternalDocument as dt, type InternalDocumentUpdateOperation as du, type DeleteByIdsOperation as dv, type DeleteByFilterOperation as dw, type InternalDocumentUpdateByFilterOperation as dx, type InternalUpdateExistingOperation as dy, type VersionedDocumentUpdateOperation as dz, type PaymentCapture as e, type GetPaymentCollectabilityStatusRequest as e$, type PreviewEmailByTypeResponse as e0, type PreviewRefundEmailRequest as e1, type RefundDetails as e2, type RefundItem as e3, type LineItemRefund as e4, type AdditionalFeeRefund as e5, type ShippingRefund as e6, type PreviewRefundEmailResponse as e7, type PreviewCancelEmailRequest as e8, type PreviewCancelEmailResponse as e9, type SiteRenamed as eA, type SiteHardDeleted as eB, type NamespaceChanged as eC, type StudioAssigned as eD, type StudioUnassigned as eE, type SiteUrlChanged as eF, type SitePurgedExternally as eG, type OdeditorAssigned as eH, type OdeditorUnassigned as eI, type PicassoAssigned as eJ, type PicassoUnassigned as eK, type WixelAssigned as eL, type WixelUnassigned as eM, type StudioTwoAssigned as eN, type StudioTwoUnassigned as eO, type UserDomainMediaEnabled as eP, type UserDomainMediaDisabled as eQ, type HasCustomEmailConfigurationsRequest as eR, type HasCustomEmailConfigurationsResponse as eS, type AddToAutomationMigrationPopulationRequest as eT, type AddToAutomationMigrationPopulationResponse as eU, type IsInAutomationMigrationPopulationRequest as eV, type IsInAutomationMigrationPopulationResponse as eW, type PreparePaymentCollectionRequest as eX, type RedirectUrls as eY, type DelayedCaptureSettings as eZ, type Duration as e_, type PreviewCancelRefundEmailRequest as ea, type PreviewCancelRefundEmailResponse as eb, type PreviewBuyerPaymentsReceivedEmailRequest as ec, type PreviewBuyerPaymentsReceivedEmailResponse as ed, type PreviewBuyerConfirmationEmailRequest as ee, type PreviewBuyerConfirmationEmailResponse as ef, type PreviewBuyerPickupConfirmationEmailRequest as eg, type PreviewBuyerPickupConfirmationEmailResponse as eh, type PreviewShippingConfirmationEmailRequest as ei, type PreviewShippingConfirmationEmailResponse as ej, type PreviewResendDownloadLinksEmailRequest as ek, type PreviewResendDownloadLinksEmailResponse as el, type MetaSiteSpecialEvent as em, type MetaSiteSpecialEventPayloadOneOf as en, type Asset as eo, type SiteCreated as ep, type SiteTransferred as eq, type SiteDeleted as er, type DeleteContext as es, type SiteUndeleted as et, type SitePublished as eu, type SiteUnpublished as ev, type SiteMarkedAsTemplate as ew, type SiteMarkedAsWixSite as ex, type ServiceProvisioned as ey, type ServiceRemoved as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type ErrorInformation as f$, type RecordManuallyCollectedPaymentRequest as f0, type UserDefinedPaymentMethodName as f1, type UserDefinedPaymentMethodNameKindOneOf as f2, type RecordManuallyCollectedPaymentResponse as f3, type MarkOrderAsPaidRequest as f4, type MarkOrderAsPaidResponse as f5, type BulkMarkOrdersAsPaidRequest as f6, type BulkMarkOrdersAsPaidResponse as f7, type BulkOrderResult as f8, type ItemMetadata as f9, type CreditCardPaymentMethodDetails as fA, type AuthorizationDetails as fB, type AuthorizationCapture as fC, type AuthorizationActionFailureDetails as fD, type AuthorizationVoid as fE, type V1ScheduledAction as fF, type Chargeback as fG, type PaymentMethodName as fH, type GiftCardPaymentDetails as fI, type MembershipPaymentDetails as fJ, type WixReceiptInfo as fK, type ExternalReceiptInfo as fL, type Refund as fM, type RefundTransaction as fN, type RefundStatusInfo as fO, type AggregatedRefundSummary as fP, type RefundItemsBreakdown as fQ, type LineItemRefundSummary as fR, type CalculateRefundRequest as fS, type CalculateRefundItemRequest as fT, type CalculateRefundResponse as fU, type CalculateRefundItemResponse as fV, type VoidAuthorizedPaymentsRequest as fW, type CaptureAuthorizedPaymentsRequest as fX, type ChargeSavedPaymentMethodRequest as fY, type ChargeSavedPaymentMethodResponse as fZ, type DiffmatokyPayload as f_, type ApplicationError as fa, type BulkActionMetadata as fb, type GetRefundabilityStatusRequest as fc, type GetRefundabilityStatusResponse as fd, type Refundability as fe, type RefundabilityAdditionalRefundabilityInfoOneOf as ff, type CreatePaymentGatewayOrderRequest as fg, type ChargedBy as fh, type CreatePaymentGatewayOrderResponse as fi, type ChargeMembershipsRequest as fj, type MembershipChargeItem as fk, type MembershipName as fl, type ServiceProperties as fm, type ChargeMembershipsResponse as fn, type TriggerRefundRequest as fo, type PaymentRefund as fp, type RefundSideEffects as fq, type RestockInfo as fr, type RestockItem as fs, type TriggerRefundResponse as ft, type OrderTransactions as fu, type Payment as fv, type PaymentPaymentDetailsOneOf as fw, type PaymentReceiptInfoOneOf as fx, type RegularPaymentDetails as fy, type RegularPaymentDetailsPaymentMethodDetailsOneOf as fz, type GetOrderApplicationErrors as g, type OrderPlaced as g$, type GetOrderRequest as g0, type GetOrderResponse as g1, type InternalQueryOrdersRequest as g2, type PlatformQuery as g3, type PlatformQueryPagingMethodOneOf as g4, type Sorting as g5, type PlatformPaging as g6, type CursorPaging as g7, type InternalQueryOrdersResponse as g8, type PlatformPagingMetadata as g9, type BulkArchiveOrdersRequest as gA, type BulkArchiveOrdersResponse as gB, type BulkArchiveOrdersByFilterRequest as gC, type BulkArchiveOrdersByFilterResponse as gD, type UnArchiveOrderRequest as gE, type UnArchiveOrderResponse as gF, type BulkUnArchiveOrdersRequest as gG, type BulkUnArchiveOrdersResponse as gH, type BulkUnArchiveOrdersByFilterRequest as gI, type BulkUnArchiveOrdersByFilterResponse as gJ, type UpdateBuyerInfoRequest as gK, type BuyerInfoUpdate as gL, type UpdateBuyerInfoResponse as gM, type UpdateBuyerEmailRequest as gN, type UpdateBuyerEmailResponse as gO, type UpdateOrderShippingAddressRequest as gP, type UpdateOrderShippingAddressResponse as gQ, type UpdateBillingContactDetailsRequest as gR, type UpdateBillingContactDetailsResponse as gS, type UpdateOrderLineItemRequest as gT, type UpdateOrderLineItemResponse as gU, type UpdateOrderLineItemsRequest as gV, type MaskedOrderLineItem as gW, type UpdateOrderLineItemsResponse as gX, type AddInternalActivityRequest as gY, type InternalActivity as gZ, type InternalActivityContentOneOf as g_, type Cursors as ga, type QueryOrderRequest as gb, type QueryOrderResponse as gc, type SearchOrdersRequest as gd, type CursorSearch as ge, type CursorSearchPagingMethodOneOf as gf, type CursorPagingMetadata as gg, type CreateOrderRequest as gh, type OrderCreationSettings as gi, type OrderCreationSettingsEditableByOneOf as gj, type OrderCreateNotifications as gk, type CreateOrderResponse as gl, type UpdateOrderRequest as gm, type UpdateOrderResponse as gn, type BulkUpdateOrdersRequest as go, type CommitDeltasRequest as gp, type DraftOrderDiffs as gq, type DraftOrderDiffsShippingUpdateInfoOneOf as gr, type DraftOrderDiffsBuyerUpdateInfoOneOf as gs, type DraftOrderDiffsBillingUpdateInfoOneOf as gt, type DraftOrderDiffsRecipientUpdateInfoOneOf as gu, type V1LineItemDelta as gv, type V1LineItemDeltaDeltaOneOf as gw, type CommitDeltasResponse as gx, type ArchiveOrderRequest as gy, type ArchiveOrderResponse as gz, type OrderSearch as h, type DecrementItemsQuantityResponse as h$, type OrderPaid as h0, type OrderFulfilled as h1, type OrderNotFulfilled as h2, type OrderCanceled as h3, type DownloadLinkSent as h4, type TrackingNumberAdded as h5, type TrackingNumberEdited as h6, type TrackingLinkAdded as h7, type ShippingConfirmationEmailSent as h8, type InvoiceAdded as h9, type MarkAsFulfilledRequest as hA, type MarkAsFulfilledResponse as hB, type BulkMarkAsFulfilledRequest as hC, type BulkMarkAsFulfilledResponse as hD, type BulkMarkAsFulfilledByFilterRequest as hE, type BulkMarkAsFulfilledByFilterResponse as hF, type MarkAsUnfulfilledRequest as hG, type MarkAsUnfulfilledResponse as hH, type BulkMarkAsUnfulfilledRequest as hI, type BulkMarkAsUnfulfilledResponse as hJ, type BulkMarkAsUnfulfilledByFilterRequest as hK, type BulkMarkAsUnfulfilledByFilterResponse as hL, type BulkSetBusinessLocationRequest as hM, type BulkSetBusinessLocationResponse as hN, type BulkSetBusinessLocationResult as hO, type V1MarkOrderAsPaidRequest as hP, type V1MarkOrderAsPaidResponse as hQ, type V1BulkMarkOrdersAsPaidRequest as hR, type V1BulkMarkOrdersAsPaidResponse as hS, type V1CreatePaymentGatewayOrderRequest as hT, type V1CreatePaymentGatewayOrderResponse as hU, type GetShipmentsRequest as hV, type GetShipmentsResponse as hW, type AggregateOrdersRequest as hX, type AggregateOrdersResponse as hY, type DecrementItemsQuantityRequest as hZ, type DecrementData as h_, type InvoiceSent as ha, type FulfillerEmailSent as hb, type ShippingAddressEdited as hc, type EmailEdited as hd, type PickupReadyEmailSent as he, type OrderPartiallyPaid as hf, type OrderPending as hg, type OrderRejected as hh, type AddInternalActivityResponse as hi, type AddActivityRequest as hj, type PublicActivity as hk, type PublicActivityContentOneOf as hl, type AddActivityResponse as hm, type AddActivitiesRequest as hn, type UpdateActivityRequest as ho, type UpdateActivityResponse as hp, type DeleteActivityRequest as hq, type DeleteActivityResponse as hr, type UpdateLineItemsDescriptionLinesRequest as hs, type LineItemUpdate as ht, type UpdateLineItemsDescriptionLinesResponse as hu, type MarkOrderAsSeenByHumanRequest as hv, type MarkOrderAsSeenByHumanResponse as hw, type CancelOrderRequest as hx, type UpdateOrderStatusRequest as hy, type UpdateOrderStatusResponse as hz, type CreateOrderOptions as i, type DeleteActivityIdentifiers as i$, type BulkUpdateOrderTagsRequest as i0, type TagsTags as i1, type TagsTagList as i2, type BulkUpdateOrderTagsResult as i3, type SendOrderUpdatedDomainEventRequest as i4, type SendOrderUpdatedDomainEventResponse as i5, type Task as i6, type TaskKey as i7, type TaskAction as i8, type TaskActionActionOneOf as i9, type TotalPrice as iA, type ItemizedFee as iB, type Discount as iC, type DiscountOneDiscountTypeOneOf as iD, type CalculatedTaxes as iE, type CalculatedTax as iF, type Payments as iG, type InvoicesPayment as iH, type MetaData as iI, type InvoiceDynamicPriceTotals as iJ, type CustomFieldValue as iK, type Value as iL, type Deposit as iM, type BaseEventMetadata as iN, type EventMetadata as iO, type AccountInfoMetadata as iP, type SetOrderNumberCounterOptions as iQ, type BulkDeleteImportedOrdersOptions as iR, type RecordManuallyCollectedPaymentOptions as iS, type PaymentCollectionMarkOrderAsPaidOptions as iT, type PaymentCollectionCreatePaymentGatewayOrderOptions as iU, type ChargeMembershipsOptions as iV, type TriggerRefundOptions as iW, type OrderSearchSpec as iX, type UpdateOrderLineItemIdentifiers as iY, type UpdateOrderLineItem as iZ, type UpdateActivityIdentifiers as i_, type Complete as ia, type Cancel as ib, type Reschedule as ic, type InvoiceSentEvent as id, type IdAndVersion as ie, type InvoiceFields as ig, type Customer as ih, type Email as ii, type QuotesAddress as ij, type AddressDescription as ik, type Phone as il, type Company as im, type CommonAddress as io, type CommonAddressStreetOneOf as ip, type Subdivision as iq, type StandardDetails as ir, type InvoiceDates as is, type LineItems as it, type LineItem as iu, type BigDecimalWrapper as iv, type LineItemTax as iw, type Source as ix, type LineItemMetaData as iy, type Locale as iz, type CreateOrderApplicationErrors as j, type UpdateOrderStatusApplicationErrors as j$, type AggregateOrdersOptions as j0, type DescriptionLineTypeWithLiterals as j1, type DimensionsUnitWithLiterals as j2, type ItemTypePresetWithLiterals as j3, type PaymentOptionTypeWithLiterals as j4, type JurisdictionTypeWithLiterals as j5, type SubscriptionFrequencyWithLiterals as j6, type AdjustmentTypeWithLiterals as j7, type TaxableAddressTypeWithLiterals as j8, type PaymentStatusWithLiterals as j9, type PaymentCollectabilityStatusWithLiterals as jA, type PredefinedPaymentMethodWithLiterals as jB, type RefundableStatusWithLiterals as jC, type NonRefundableReasonWithLiterals as jD, type ManuallyRefundableReasonWithLiterals as jE, type RestockTypeWithLiterals as jF, type TransactionStatusWithLiterals as jG, type AuthorizationCaptureStatusWithLiterals as jH, type AuthorizationVoidStatusWithLiterals as jI, type ReasonWithLiterals as jJ, type ActionTypeWithLiterals as jK, type ChargebackStatusWithLiterals as jL, type MembershipPaymentStatusWithLiterals as jM, type RefundStatusWithLiterals as jN, type SortOrderWithLiterals as jO, type OrderApprovalStrategyWithLiterals as jP, type PlacementWithLiterals as jQ, type SubdivisionTypeWithLiterals as jR, type SourceTypeWithLiterals as jS, type CustomFieldGroupWithLiterals as jT, type ValueTypeWithLiterals as jU, type DepositTypeWithLiterals as jV, type InvoiceStatusWithLiterals as jW, type RecordManuallyCollectedPaymentApplicationErrors as jX, type PaymentCollectionMarkOrderAsPaidApplicationErrors as jY, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as jZ, type TriggerRefundApplicationErrors as j_, type FulfillmentStatusWithLiterals as ja, type WeightUnitWithLiterals as jb, type VatTypeWithLiterals as jc, type PickupMethodWithLiterals as jd, type OrderStatusWithLiterals as je, type DiscountTypeWithLiterals as jf, type DiscountReasonWithLiterals as jg, type LineItemQuantityChangeTypeWithLiterals as jh, type ActivityTypeWithLiterals as ji, type OrderActivityTypeEnumActivityTypeWithLiterals as jj, type AttributionSourceWithLiterals as jk, type ChannelTypeWithLiterals as jl, type AdditionalFeeSourceWithLiterals as jm, type OrderActionTypeWithLiterals as jn, type ChargeTypeWithLiterals as jo, type DeltaPaymentOptionTypeWithLiterals as jp, type InventoryActionWithLiterals as jq, type WebhookIdentityTypeWithLiterals as jr, type VersioningModeWithLiterals as js, type PreviewEmailTypeWithLiterals as jt, type StateWithLiterals as ju, type SiteCreatedContextWithLiterals as jv, type NamespaceWithLiterals as jw, type DeleteStatusWithLiterals as jx, type ScheduledActionWithLiterals as jy, type DurationUnitWithLiterals as jz, type UpdateOrderApplicationErrors as k, type CommonSearchWithEntityContext as k0, onOrderApproved as k1, onOrderCanceled as k2, onOrderCommitted as k3, onOrderCreated as k4, onOrderFulfilled as k5, onOrderPaymentStatusUpdated as k6, onOrderUpdated as k7, preparePaymentCollection as k8, getPaymentCollectabilityStatus as k9, voidAuthorizedPayments as ka, captureAuthorizedPayments as kb, getOrder as kc, createOrder as kd, updateOrder as ke, bulkUpdateOrders as kf, addActivities as kg, cancelOrder as kh, bulkUpdateOrderTags as ki, 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 { dq as AccountInfo, iP as AccountInfoMetadata, dl as ActionEvent, aq as ActionType, jK as ActionTypeWithLiterals, bD as Activity, bE as ActivityContentOneOf, _ as ActivityType, ji as ActivityTypeWithLiterals, hp as AddActivitiesRequest, hl as AddActivityRequest, ho as AddActivityResponse, g_ as AddInternalActivityRequest, hk as AddInternalActivityResponse, eV as AddToAutomationMigrationPopulationRequest, eW as AddToAutomationMigrationPopulationResponse, cA as AdditionalFee, d5 as AdditionalFeeDelta, d6 as AdditionalFeeDeltaDeltaOneOf, e7 as AdditionalFeeRefund, a2 as AdditionalFeeSource, jm as AdditionalFeeSourceWithLiterals, bd as Address, ik as AddressDescription, bf as AddressLocation, bc as AddressWithContact, H as AdjustmentType, j7 as AdjustmentTypeWithLiterals, j0 as AggregateOrdersOptions, hZ as AggregateOrdersRequest, h_ as AggregateOrdersResponse, fR as AggregatedRefundSummary, fc as ApplicationError, bt as AppliedDiscount, d3 as AppliedDiscountDelta, d4 as AppliedDiscountDeltaDeltaOneOf, bu as AppliedDiscountDiscountSourceOneOf, gA as ArchiveOrderRequest, gB as ArchiveOrderResponse, eq as Asset, a0 as AttributionSource, jk as AttributionSourceWithLiterals, fF as AuthorizationActionFailureDetails, fE as AuthorizationCapture, an as AuthorizationCaptureStatus, jH as AuthorizationCaptureStatusWithLiterals, fD as AuthorizationDetails, fG as AuthorizationVoid, ao as AuthorizationVoidStatus, jI as AuthorizationVoidStatusWithLiterals, c2 as AuthorizedPaymentCaptured, c1 as AuthorizedPaymentCreated, c3 as AuthorizedPaymentVoided, cz as Balance, cy as BalanceSummary, iN as BaseEventMetadata, dF as BatchOfTriggerReindexOrderRequest, iv as BigDecimalWrapper, a_ as BillingAdjustment, a$ as BillingAdjustmentPriceSummary, fd as BulkActionMetadata, gE as BulkArchiveOrdersByFilterRequest, gF as BulkArchiveOrdersByFilterResponse, gC as BulkArchiveOrdersRequest, gD as BulkArchiveOrdersResponse, iR as BulkDeleteImportedOrdersOptions, dd as BulkDeleteImportedOrdersRequest, de as BulkDeleteImportedOrdersResponse, hG as BulkMarkAsFulfilledByFilterRequest, hH as BulkMarkAsFulfilledByFilterResponse, hE as BulkMarkAsFulfilledRequest, hF as BulkMarkAsFulfilledResponse, hM as BulkMarkAsUnfulfilledByFilterRequest, hN as BulkMarkAsUnfulfilledByFilterResponse, hK as BulkMarkAsUnfulfilledRequest, hL as BulkMarkAsUnfulfilledResponse, f8 as BulkMarkOrdersAsPaidRequest, f9 as BulkMarkOrdersAsPaidResponse, fa as BulkOrderResult, dP as BulkSendBuyerPickupConfirmationEmailsRequest, dQ as BulkSendBuyerPickupConfirmationEmailsResponse, dT as BulkSendBuyerShippingConfirmationEmailsRequest, dU as BulkSendBuyerShippingConfirmationEmailsResponse, hO as BulkSetBusinessLocationRequest, hP as BulkSetBusinessLocationResponse, hQ as BulkSetBusinessLocationResult, gK as BulkUnArchiveOrdersByFilterRequest, gL as BulkUnArchiveOrdersByFilterResponse, gI as BulkUnArchiveOrdersRequest, gJ as BulkUnArchiveOrdersResponse, i2 as BulkUpdateOrderTagsRequest, i3 as BulkUpdateOrderTagsResult, gq as BulkUpdateOrdersRequest, b8 as BuyerInfo, b9 as BuyerInfoIdOneOf, gN as BuyerInfoUpdate, fV as CalculateRefundItemRequest, fX as CalculateRefundItemResponse, fU as CalculateRefundRequest, fW as CalculateRefundResponse, iF as CalculatedTax, iE as CalculatedTaxes, ib as Cancel, hz as CancelOrderRequest, fZ as CaptureAuthorizedPaymentsRequest, aF as CatalogReference, cw as ChannelInfo, a1 as ChannelType, jl as ChannelTypeWithLiterals, iV as ChargeMembershipsOptions, fl as ChargeMembershipsRequest, fp as ChargeMembershipsResponse, f_ as ChargeSavedPaymentMethodRequest, f$ as ChargeSavedPaymentMethodResponse, a4 as ChargeType, jo as ChargeTypeWithLiterals, fI as Chargeback, cs as ChargebackCreated, ct as ChargebackReversed, ar as ChargebackStatus, jL as ChargebackStatusWithLiterals, fj as ChargedBy, aL as Color, gr as CommitDeltasRequest, gz as CommitDeltasResponse, cZ as CommittedDiffs, c_ as CommittedDiffsShippingUpdateInfoOneOf, io as CommonAddress, ip as CommonAddressStreetOneOf, k0 as CommonSearchWithEntityContext, im as Company, ia as Complete, bv as Coupon, gj as CreateOrderRequest, gn as CreateOrderResponse, fi as CreatePaymentGatewayOrderRequest, fk as CreatePaymentGatewayOrderResponse, cu as CreatedBy, cv as CreatedByStringOneOf, ch as CreditCardDetails, fC as CreditCardPaymentMethodDetails, ba as CurrencyConversionDetails, g9 as CursorPaging, gi as CursorPagingMetadata, gg as CursorSearch, gh as CursorSearchPagingMethodOneOf, gc as Cursors, bF as CustomActivity, cI as CustomAllowedActions, cx as CustomField, az as CustomFieldGroup, jT as CustomFieldGroupWithLiterals, iK as CustomFieldValue, ih as Customer, i0 as DecrementData, h$ as DecrementItemsQuantityRequest, i1 as DecrementItemsQuantityResponse, e$ as DelayedCaptureSettings, i$ as DeleteActivityIdentifiers, hs as DeleteActivityRequest, ht as DeleteActivityResponse, dw as DeleteByFilterOperation, dv as DeleteByIdsOperation, eu as DeleteContext, ad as DeleteStatus, jx as DeleteStatusWithLiterals, bj as DeliveryLogistics, bk as DeliveryLogisticsAddressOneOf, bn as DeliveryTimeSlot, a5 as DeltaPaymentOptionType, jp as DeltaPaymentOptionTypeWithLiterals, iM as Deposit, aB as DepositType, jV as DepositTypeWithLiterals, aG as DescriptionLine, aI as DescriptionLineDescriptionLineValueOneOf, aJ as DescriptionLineName, D as DescriptionLineType, j1 as DescriptionLineTypeWithLiterals, aH as DescriptionLineValueOneOf, g0 as DiffmatokyPayload, aU as DigitalFile, aO as Dimensions, z as DimensionsUnit, j2 as DimensionsUnitWithLiterals, iC as Discount, iD as DiscountOneDiscountTypeOneOf, Y as DiscountReason, jg as DiscountReasonWithLiterals, by as DiscountRule, bz as DiscountRuleName, X as DiscountType, jf as DiscountTypeWithLiterals, df as DomainEvent, dg as DomainEventBodyOneOf, h6 as DownloadLinkSent, bL as DraftOrderChangesApplied, d7 as DraftOrderCommitSettings, gs as DraftOrderDiffs, gv as DraftOrderDiffsBillingUpdateInfoOneOf, gu as DraftOrderDiffsBuyerUpdateInfoOneOf, gw as DraftOrderDiffsRecipientUpdateInfoOneOf, gt as DraftOrderDiffsShippingUpdateInfoOneOf, f0 as Duration, af as DurationUnit, jz as DurationUnitWithLiterals, ii as Email, hf as EmailEdited, dE as Empty, dh as EntityCreatedEvent, dk as EntityDeletedEvent, dj as EntityUpdatedEvent, g1 as ErrorInformation, iO as EventMetadata, b4 as ExtendedFields, cp as ExternalReceipt, fN as ExternalReceiptInfo, aM as FocalPoint, cL as FormIdentifier, cK as FormInfo, aZ as FreeTrialPeriod, hd as FulfillerEmailSent, L as FulfillmentStatus, cW as FulfillmentStatusUpdated, ja as FulfillmentStatusWithLiterals, cB as FulfillmentStatusesAggregate, bg as FullAddressContactDetails, g2 as GetOrderRequest, g3 as GetOrderResponse, f1 as GetPaymentCollectabilityStatusRequest, fe as GetRefundabilityStatusRequest, ff as GetRefundabilityStatusResponse, hX as GetShipmentsRequest, hY as GetShipmentsResponse, fK as GiftCardPaymentDetails, c8 as GiftCardPaymentRefund, eT as HasCustomEmailConfigurationsRequest, eU as HasCustomEmailConfigurationsResponse, ie as IdAndVersion, dn as IdentificationData, dp as IdentificationDataIdOneOf, d9 as ImportOrderRequest, da as ImportOrderResponse, cU as ImportedOrderDeleted, g$ as InternalActivity, h0 as InternalActivityContentOneOf, dt as InternalDocument, dx as InternalDocumentUpdateByFilterOperation, du as InternalDocumentUpdateOperation, g4 as InternalQueryOrdersRequest, ga as InternalQueryOrdersResponse, dy as InternalUpdateExistingOperation, a6 as InventoryAction, jq as InventoryActionWithLiterals, d8 as InventoryUpdateDetails, hb as InvoiceAdded, is as InvoiceDates, iJ as InvoiceDynamicPriceTotals, ig as InvoiceFields, hc as InvoiceSent, id as InvoiceSentEvent, aC as InvoiceStatus, jW as InvoiceStatusWithLiterals, iH as InvoicesPayment, eX as IsInAutomationMigrationPopulationRequest, eY as IsInAutomationMigrationPopulationResponse, c$ as ItemChangedDetails, bB as ItemCombination, bC as ItemCombinationLineItem, fb as ItemMetadata, b7 as ItemModifier, aR as ItemTaxFullDetails, aP as ItemType, aQ as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, j3 as ItemTypePresetWithLiterals, iB as ItemizedFee, J as JurisdictionType, j5 as JurisdictionTypeWithLiterals, iu as LineItem, bX as LineItemAmount, bO as LineItemChanges, d1 as LineItemDelta, d2 as LineItemDeltaDeltaOneOf, bS as LineItemDescriptionLineChange, bA as LineItemDiscount, bK as LineItemExchangeData, iy as LineItemMetaData, bT as LineItemModifiersChange, bQ as LineItemPriceChange, bR as LineItemProductNameChange, bP as LineItemQuantityChange, Z as LineItemQuantityChangeType, jh as LineItemQuantityChangeTypeWithLiterals, e6 as LineItemRefund, fT as LineItemRefundSummary, iw as LineItemTax, aT as LineItemTaxBreakdown, aS as LineItemTaxInfo, hv as LineItemUpdate, it as LineItems, iz as Locale, cE as Location, b1 as LocationAndQuantity, bY as ManagedAdditionalFee, bV as ManagedDiscount, bU as ManagedLineItem, ak as ManuallyRefundableReason, jE as ManuallyRefundableReasonWithLiterals, hC as MarkAsFulfilledRequest, hD as MarkAsFulfilledResponse, hI as MarkAsUnfulfilledRequest, hJ as MarkAsUnfulfilledResponse, f6 as MarkOrderAsPaidRequest, f7 as MarkOrderAsPaidResponse, hx as MarkOrderAsSeenByHumanRequest, hy as MarkOrderAsSeenByHumanResponse, gY as MaskedOrderLineItem, fm as MembershipChargeItem, fn as MembershipName, fL as MembershipPaymentDetails, c9 as MembershipPaymentRefund, as as MembershipPaymentStatus, jM as MembershipPaymentStatusWithLiterals, bG as MerchantComment, bw as MerchantDiscount, bx as MerchantDiscountMerchantDiscountReasonOneOf, dm as MessageEnvelope, iI as MetaData, eo as MetaSiteSpecialEvent, ep as MetaSiteSpecialEventPayloadOneOf, b5 as ModifierGroup, ac as Namespace, eE as NamespaceChanged, jw as NamespaceWithLiterals, bJ as NewExchangeOrderCreated, aj as NonRefundableReason, jD as NonRefundableReasonWithLiterals, eJ as OdeditorAssigned, eK as OdeditorUnassigned, a3 as OrderActionType, jn as OrderActionTypeWithLiterals, $ as OrderActivityTypeEnumActivityType, jj as OrderActivityTypeEnumActivityTypeWithLiterals, av as OrderApprovalStrategy, jP as OrderApprovalStrategyWithLiterals, cO as OrderApproved, h5 as OrderCanceled, cX as OrderCanceledEventOrderCanceled, bM as OrderChange, bN as OrderChangeValueOneOf, gm as OrderCreateNotifications, bI as OrderCreatedFromExchange, gk as OrderCreationSettings, gl as OrderCreationSettingsEditableByOneOf, cY as OrderDeltasCommitted, h3 as OrderFulfilled, cT as OrderImported, cR as OrderItemsRestocked, aD as OrderLineItem, d0 as OrderLineItemChangedDetails, h4 as OrderNotFulfilled, h2 as OrderPaid, hh as OrderPartiallyPaid, hi as OrderPending, h1 as OrderPlaced, bH as OrderRefunded, hj as OrderRejected, cQ as OrderRejectedEventOrderRejected, iX as OrderSearchSpec, cF as OrderSettings, cG as OrderSettingsAllowedActionsOneOf, cH as OrderSettingsEditableByOneOf, R as OrderStatus, je as OrderStatusWithLiterals, bs as OrderTaxBreakdown, br as OrderTaxInfo, fw as OrderTransactions, cP as OrdersExperiments, cJ as OwnerApps, fx as Payment, ci as PaymentCanceled, cj as PaymentCanceledPaymentDetailsOneOf, ag as PaymentCollectabilityStatus, jA as PaymentCollectabilityStatusWithLiterals, jZ as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, iU as PaymentCollectionCreatePaymentGatewayOrderOptions, jY as PaymentCollectionMarkOrderAsPaidApplicationErrors, iT as PaymentCollectionMarkOrderAsPaidOptions, ck as PaymentDeclined, cl as PaymentDeclinedPaymentDetailsOneOf, fJ as PaymentMethodName, E as PaymentOptionType, j4 as PaymentOptionTypeWithLiterals, fy as PaymentPaymentDetailsOneOf, cd as PaymentPending, ce as PaymentPendingPaymentDetailsOneOf, fz as PaymentReceiptInfoOneOf, fr as PaymentRefund, cb as PaymentRefundFailed, ca as PaymentRefunded, K as PaymentStatus, cV as PaymentStatusUpdated, j9 as PaymentStatusWithLiterals, iG as Payments, il as Phone, aN as PhysicalProperties, eL as PicassoAssigned, eM as PicassoUnassigned, bm as PickupAddress, bl as PickupDetails, Q as PickupMethod, jd as PickupMethodWithLiterals, hg as PickupReadyEmailSent, aw as Placement, jQ as PlacementWithLiterals, aK as PlainTextValue, cN as PlatformFee, cM as PlatformFeeSummary, g8 as PlatformPaging, gb as PlatformPagingMetadata, g5 as PlatformQuery, g6 as PlatformQueryPagingMethodOneOf, ah as PredefinedPaymentMethod, jB as PredefinedPaymentMethodWithLiterals, eZ as PreparePaymentCollectionRequest, eg as PreviewBuyerConfirmationEmailRequest, eh as PreviewBuyerConfirmationEmailResponse, ee as PreviewBuyerPaymentsReceivedEmailRequest, ef as PreviewBuyerPaymentsReceivedEmailResponse, ei as PreviewBuyerPickupConfirmationEmailRequest, ej as PreviewBuyerPickupConfirmationEmailResponse, ea as PreviewCancelEmailRequest, eb as PreviewCancelEmailResponse, ec as PreviewCancelRefundEmailRequest, ed as PreviewCancelRefundEmailResponse, e1 as PreviewEmailByTypeRequest, e2 as PreviewEmailByTypeResponse, a9 as PreviewEmailType, jt as PreviewEmailTypeWithLiterals, e3 as PreviewRefundEmailRequest, e9 as PreviewRefundEmailResponse, em as PreviewResendDownloadLinksEmailRequest, en as PreviewResendDownloadLinksEmailResponse, ek as PreviewShippingConfirmationEmailRequest, el as PreviewShippingConfirmationEmailResponse, b0 as PriceDescription, bb as PriceSummary, aE as ProductName, hm as PublicActivity, hn as PublicActivityContentOneOf, gd as QueryOrderRequest, ge as QueryOrderResponse, ij as QuotesAddress, ap as Reason, jJ as ReasonWithLiterals, cm as ReceiptCreated, cn as ReceiptCreatedReceiptInfoOneOf, cq as ReceiptSent, cr as ReceiptSentReceiptInfoOneOf, jX as RecordManuallyCollectedPaymentApplicationErrors, iS as RecordManuallyCollectedPaymentOptions, f2 as RecordManuallyCollectedPaymentRequest, f5 as RecordManuallyCollectedPaymentResponse, e_ as RedirectUrls, fO as Refund, e4 as RefundDetails, c4 as RefundInitiated, e5 as RefundItem, fS as RefundItemsBreakdown, fs as RefundSideEffects, at as RefundStatus, fQ as RefundStatusInfo, jN as RefundStatusWithLiterals, fP as RefundTransaction, fg as Refundability, fh as RefundabilityAdditionalRefundabilityInfoOneOf, ai as RefundableStatus, jC as RefundableStatusWithLiterals, cc as RefundedAsStoreCredit, c5 as RefundedPayment, c6 as RefundedPaymentKindOneOf, cf as RegularPayment, fA as RegularPaymentDetails, fB as RegularPaymentDetailsPaymentMethodDetailsOneOf, cg as RegularPaymentPaymentMethodDetailsOneOf, c7 as RegularPaymentRefund, ic as Reschedule, ft as RestockInfo, fu as RestockItem, al as RestockType, jF as RestockTypeWithLiterals, di as RestoreInfo, c0 as SavedPaymentMethod, ae as ScheduledAction, jy as ScheduledActionWithLiterals, gf as SearchOrdersRequest, dJ as SendBuyerConfirmationEmailRequest, dK as SendBuyerConfirmationEmailResponse, dL as SendBuyerPaymentsReceivedEmailRequest, dM as SendBuyerPaymentsReceivedEmailResponse, dN as SendBuyerPickupConfirmationEmailRequest, dO as SendBuyerPickupConfirmationEmailResponse, dR as SendBuyerShippingConfirmationEmailRequest, dS as SendBuyerShippingConfirmationEmailResponse, dX as SendCancelRefundEmailRequest, dY as SendCancelRefundEmailResponse, dV as SendMerchantOrderReceivedNotificationRequest, dW as SendMerchantOrderReceivedNotificationResponse, d$ as SendMerchantOrderReceivedPushRequest, e0 as SendMerchantOrderReceivedPushResponse, i4 as SendOrderUpdatedDomainEventRequest, i5 as SendOrderUpdatedDomainEventResponse, dZ as SendRefundEmailRequest, d_ as SendRefundEmailResponse, fo as ServiceProperties, eA as ServiceProvisioned, eB as ServiceRemoved, iQ as SetOrderNumberCounterOptions, db as SetOrderNumberCounterRequest, dc as SetOrderNumberCounterResponse, he as ShippingAddressEdited, ha as ShippingConfirmationEmailSent, b$ as ShippingInformation, b_ as ShippingInformationChange, bo as ShippingPrice, e8 as ShippingRefund, bp as ShippingRegion, er as SiteCreated, ab as SiteCreatedContext, jv as SiteCreatedContextWithLiterals, et as SiteDeleted, eD as SiteHardDeleted, ey as SiteMarkedAsTemplate, ez as SiteMarkedAsWixSite, ew as SitePublished, eI as SitePurgedExternally, eC as SiteRenamed, es as SiteTransferred, ev as SiteUndeleted, ex as SiteUnpublished, eH as SiteUrlChanged, au as SortOrder, jO as SortOrderWithLiterals, g7 as Sorting, ix as Source, ay as SourceType, jS as SourceTypeWithLiterals, ir as StandardDetails, aa as State, ju as StateWithLiterals, be as StreetAddress, eF as StudioAssigned, eP as StudioTwoAssigned, eQ as StudioTwoUnassigned, eG as StudioUnassigned, iq as Subdivision, ax as SubdivisionType, jR as SubdivisionTypeWithLiterals, aX as SubscriptionDescription, F as SubscriptionFrequency, j6 as SubscriptionFrequencyWithLiterals, aV as SubscriptionInfo, aY as SubscriptionSettings, aW as SubscriptionTitle, cD as TagList, cC as Tags, dI as TagsTagList, dH as TagsTags, i6 as Task, i8 as TaskAction, i9 as TaskActionActionOneOf, i7 as TaskKey, bq as TaxSummary, b2 as TaxableAddress, b3 as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, j8 as TaxableAddressTypeWithLiterals, iA as TotalPrice, bZ as TotalPriceChange, h9 as TrackingLinkAdded, h7 as TrackingNumberAdded, h8 as TrackingNumberEdited, am as TransactionStatus, jG as TransactionStatusWithLiterals, b6 as TranslatableString, bW as TranslatedValue, j_ as TriggerRefundApplicationErrors, iW as TriggerRefundOptions, fq as TriggerRefundRequest, fv as TriggerRefundResponse, dG as TriggerReindexOrderRequest, dC as TriggerReindexRequest, dD as TriggerReindexResponse, gG as UnArchiveOrderRequest, gH as UnArchiveOrderResponse, i_ as UpdateActivityIdentifiers, hq as UpdateActivityRequest, hr as UpdateActivityResponse, gT as UpdateBillingContactDetailsRequest, gU as UpdateBillingContactDetailsResponse, gP as UpdateBuyerEmailRequest, gQ as UpdateBuyerEmailResponse, gM as UpdateBuyerInfoRequest, gO as UpdateBuyerInfoResponse, dr as UpdateInternalDocumentsEvent, ds as UpdateInternalDocumentsEventOperationOneOf, hu as UpdateLineItemsDescriptionLinesRequest, hw as UpdateLineItemsDescriptionLinesResponse, iZ as UpdateOrderLineItem, iY as UpdateOrderLineItemIdentifiers, gV as UpdateOrderLineItemRequest, gW as UpdateOrderLineItemResponse, gX as UpdateOrderLineItemsRequest, gZ as UpdateOrderLineItemsResponse, go as UpdateOrderRequest, gp as UpdateOrderResponse, gR as UpdateOrderShippingAddressRequest, gS as UpdateOrderShippingAddressResponse, j$ as UpdateOrderStatusApplicationErrors, hA as UpdateOrderStatusRequest, hB as UpdateOrderStatusResponse, f3 as UserDefinedPaymentMethodName, f4 as UserDefinedPaymentMethodNameKindOneOf, eS as UserDomainMediaDisabled, eR as UserDomainMediaEnabled, hT as V1BulkMarkOrdersAsPaidRequest, hU as V1BulkMarkOrdersAsPaidResponse, hV as V1CreatePaymentGatewayOrderRequest, hW as V1CreatePaymentGatewayOrderResponse, gx as V1LineItemDelta, gy as V1LineItemDeltaDeltaOneOf, hR as V1MarkOrderAsPaidRequest, hS as V1MarkOrderAsPaidResponse, cS as V1RestockItem, fH as V1ScheduledAction, bi as V1ShippingInformation, iL as Value, aA as ValueType, jU as ValueTypeWithLiterals, bh as VatId, N as VatType, jc as VatTypeWithLiterals, dA as VersionedDeleteByIdsOperation, dB as VersionedDocumentId, dz as VersionedDocumentUpdateOperation, a8 as VersioningMode, js as VersioningModeWithLiterals, fY as VoidAuthorizedPaymentsRequest, a7 as WebhookIdentityType, jr as WebhookIdentityTypeWithLiterals, W as WeightUnit, jb as WeightUnitWithLiterals, co as WixReceipt, fM as WixReceiptInfo, eN as WixelAssigned, eO as WixelUnassigned } from './ecom-v1-order-orders.universal-DxL61AFx.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-VnRchE9Y.js';
|
|
3
|
+
export { dq as AccountInfo, iP as AccountInfoMetadata, dl as ActionEvent, aq as ActionType, jK as ActionTypeWithLiterals, bD as Activity, bE as ActivityContentOneOf, _ as ActivityType, ji as ActivityTypeWithLiterals, hn as AddActivitiesRequest, hj as AddActivityRequest, hm as AddActivityResponse, gY as AddInternalActivityRequest, hi as AddInternalActivityResponse, eT as AddToAutomationMigrationPopulationRequest, eU as AddToAutomationMigrationPopulationResponse, cA as AdditionalFee, d5 as AdditionalFeeDelta, d6 as AdditionalFeeDeltaDeltaOneOf, e5 as AdditionalFeeRefund, a2 as AdditionalFeeSource, jm as AdditionalFeeSourceWithLiterals, bd as Address, ik as AddressDescription, bf as AddressLocation, bc as AddressWithContact, H as AdjustmentType, j7 as AdjustmentTypeWithLiterals, j0 as AggregateOrdersOptions, hX as AggregateOrdersRequest, hY as AggregateOrdersResponse, fP as AggregatedRefundSummary, fa as ApplicationError, bt as AppliedDiscount, d3 as AppliedDiscountDelta, d4 as AppliedDiscountDeltaDeltaOneOf, bu as AppliedDiscountDiscountSourceOneOf, gy as ArchiveOrderRequest, gz as ArchiveOrderResponse, eo as Asset, a0 as AttributionSource, jk as AttributionSourceWithLiterals, fD as AuthorizationActionFailureDetails, fC as AuthorizationCapture, an as AuthorizationCaptureStatus, jH as AuthorizationCaptureStatusWithLiterals, fB as AuthorizationDetails, fE as AuthorizationVoid, ao as AuthorizationVoidStatus, jI as AuthorizationVoidStatusWithLiterals, c2 as AuthorizedPaymentCaptured, c1 as AuthorizedPaymentCreated, c3 as AuthorizedPaymentVoided, cz as Balance, cy as BalanceSummary, iN as BaseEventMetadata, dF as BatchOfTriggerReindexOrderRequest, iv as BigDecimalWrapper, a_ as BillingAdjustment, a$ as BillingAdjustmentPriceSummary, fb as BulkActionMetadata, gC as BulkArchiveOrdersByFilterRequest, gD as BulkArchiveOrdersByFilterResponse, gA as BulkArchiveOrdersRequest, gB as BulkArchiveOrdersResponse, iR as BulkDeleteImportedOrdersOptions, dd as BulkDeleteImportedOrdersRequest, de as BulkDeleteImportedOrdersResponse, hE as BulkMarkAsFulfilledByFilterRequest, hF as BulkMarkAsFulfilledByFilterResponse, hC as BulkMarkAsFulfilledRequest, hD as BulkMarkAsFulfilledResponse, hK as BulkMarkAsUnfulfilledByFilterRequest, hL as BulkMarkAsUnfulfilledByFilterResponse, hI as BulkMarkAsUnfulfilledRequest, hJ as BulkMarkAsUnfulfilledResponse, f6 as BulkMarkOrdersAsPaidRequest, f7 as BulkMarkOrdersAsPaidResponse, f8 as BulkOrderResult, dN as BulkSendBuyerPickupConfirmationEmailsRequest, dO as BulkSendBuyerPickupConfirmationEmailsResponse, dR as BulkSendBuyerShippingConfirmationEmailsRequest, dS as BulkSendBuyerShippingConfirmationEmailsResponse, hM as BulkSetBusinessLocationRequest, hN as BulkSetBusinessLocationResponse, hO as BulkSetBusinessLocationResult, gI as BulkUnArchiveOrdersByFilterRequest, gJ as BulkUnArchiveOrdersByFilterResponse, gG as BulkUnArchiveOrdersRequest, gH as BulkUnArchiveOrdersResponse, i0 as BulkUpdateOrderTagsRequest, i3 as BulkUpdateOrderTagsResult, go as BulkUpdateOrdersRequest, b8 as BuyerInfo, b9 as BuyerInfoIdOneOf, gL as BuyerInfoUpdate, fT as CalculateRefundItemRequest, fV as CalculateRefundItemResponse, fS as CalculateRefundRequest, fU as CalculateRefundResponse, iF as CalculatedTax, iE as CalculatedTaxes, ib as Cancel, hx as CancelOrderRequest, fX as CaptureAuthorizedPaymentsRequest, aF as CatalogReference, cw as ChannelInfo, a1 as ChannelType, jl as ChannelTypeWithLiterals, iV as ChargeMembershipsOptions, fj as ChargeMembershipsRequest, fn as ChargeMembershipsResponse, fY as ChargeSavedPaymentMethodRequest, fZ as ChargeSavedPaymentMethodResponse, a4 as ChargeType, jo as ChargeTypeWithLiterals, fG as Chargeback, cs as ChargebackCreated, ct as ChargebackReversed, ar as ChargebackStatus, jL as ChargebackStatusWithLiterals, fh as ChargedBy, aL as Color, gp as CommitDeltasRequest, gx as CommitDeltasResponse, cZ as CommittedDiffs, c_ as CommittedDiffsShippingUpdateInfoOneOf, io as CommonAddress, ip as CommonAddressStreetOneOf, k0 as CommonSearchWithEntityContext, im as Company, ia as Complete, bv as Coupon, gh as CreateOrderRequest, gl as CreateOrderResponse, fg as CreatePaymentGatewayOrderRequest, fi as CreatePaymentGatewayOrderResponse, cu as CreatedBy, cv as CreatedByStringOneOf, ch as CreditCardDetails, fA as CreditCardPaymentMethodDetails, ba as CurrencyConversionDetails, g7 as CursorPaging, gg as CursorPagingMetadata, ge as CursorSearch, gf as CursorSearchPagingMethodOneOf, ga as Cursors, bF as CustomActivity, cI as CustomAllowedActions, cx as CustomField, az as CustomFieldGroup, jT as CustomFieldGroupWithLiterals, iK as CustomFieldValue, ih as Customer, h_ as DecrementData, hZ as DecrementItemsQuantityRequest, h$ as DecrementItemsQuantityResponse, eZ as DelayedCaptureSettings, i$ as DeleteActivityIdentifiers, hq as DeleteActivityRequest, hr as DeleteActivityResponse, dw as DeleteByFilterOperation, dv as DeleteByIdsOperation, es as DeleteContext, ad as DeleteStatus, jx as DeleteStatusWithLiterals, bj as DeliveryLogistics, bk as DeliveryLogisticsAddressOneOf, bn as DeliveryTimeSlot, a5 as DeltaPaymentOptionType, jp as DeltaPaymentOptionTypeWithLiterals, iM as Deposit, aB as DepositType, jV as DepositTypeWithLiterals, aG as DescriptionLine, aI as DescriptionLineDescriptionLineValueOneOf, aJ as DescriptionLineName, D as DescriptionLineType, j1 as DescriptionLineTypeWithLiterals, aH as DescriptionLineValueOneOf, f_ as DiffmatokyPayload, aU as DigitalFile, aO as Dimensions, z as DimensionsUnit, j2 as DimensionsUnitWithLiterals, iC as Discount, iD as DiscountOneDiscountTypeOneOf, Y as DiscountReason, jg as DiscountReasonWithLiterals, by as DiscountRule, bz as DiscountRuleName, X as DiscountType, jf as DiscountTypeWithLiterals, df as DomainEvent, dg as DomainEventBodyOneOf, h4 as DownloadLinkSent, bL as DraftOrderChangesApplied, d7 as DraftOrderCommitSettings, gq as DraftOrderDiffs, gt as DraftOrderDiffsBillingUpdateInfoOneOf, gs as DraftOrderDiffsBuyerUpdateInfoOneOf, gu as DraftOrderDiffsRecipientUpdateInfoOneOf, gr as DraftOrderDiffsShippingUpdateInfoOneOf, e_ as Duration, af as DurationUnit, jz as DurationUnitWithLiterals, ii as Email, hd as EmailEdited, dE as Empty, dh as EntityCreatedEvent, dk as EntityDeletedEvent, dj as EntityUpdatedEvent, f$ as ErrorInformation, iO as EventMetadata, b4 as ExtendedFields, cp as ExternalReceipt, fL as ExternalReceiptInfo, aM as FocalPoint, cL as FormIdentifier, cK as FormInfo, aZ as FreeTrialPeriod, hb as FulfillerEmailSent, L as FulfillmentStatus, cW as FulfillmentStatusUpdated, ja as FulfillmentStatusWithLiterals, cB as FulfillmentStatusesAggregate, bg as FullAddressContactDetails, g0 as GetOrderRequest, g1 as GetOrderResponse, e$ as GetPaymentCollectabilityStatusRequest, fc as GetRefundabilityStatusRequest, fd as GetRefundabilityStatusResponse, hV as GetShipmentsRequest, hW as GetShipmentsResponse, fI as GiftCardPaymentDetails, c8 as GiftCardPaymentRefund, eR as HasCustomEmailConfigurationsRequest, eS as HasCustomEmailConfigurationsResponse, ie as IdAndVersion, dn as IdentificationData, dp as IdentificationDataIdOneOf, d9 as ImportOrderRequest, da as ImportOrderResponse, cU as ImportedOrderDeleted, gZ as InternalActivity, g_ as InternalActivityContentOneOf, dt as InternalDocument, dx as InternalDocumentUpdateByFilterOperation, du as InternalDocumentUpdateOperation, g2 as InternalQueryOrdersRequest, g8 as InternalQueryOrdersResponse, dy as InternalUpdateExistingOperation, a6 as InventoryAction, jq as InventoryActionWithLiterals, d8 as InventoryUpdateDetails, h9 as InvoiceAdded, is as InvoiceDates, iJ as InvoiceDynamicPriceTotals, ig as InvoiceFields, ha as InvoiceSent, id as InvoiceSentEvent, aC as InvoiceStatus, jW as InvoiceStatusWithLiterals, iH as InvoicesPayment, eV as IsInAutomationMigrationPopulationRequest, eW as IsInAutomationMigrationPopulationResponse, c$ as ItemChangedDetails, bB as ItemCombination, bC as ItemCombinationLineItem, f9 as ItemMetadata, b7 as ItemModifier, aR as ItemTaxFullDetails, aP as ItemType, aQ as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, j3 as ItemTypePresetWithLiterals, iB as ItemizedFee, J as JurisdictionType, j5 as JurisdictionTypeWithLiterals, iu as LineItem, bX as LineItemAmount, bO as LineItemChanges, d1 as LineItemDelta, d2 as LineItemDeltaDeltaOneOf, bS as LineItemDescriptionLineChange, bA as LineItemDiscount, bK as LineItemExchangeData, iy as LineItemMetaData, bT as LineItemModifiersChange, bQ as LineItemPriceChange, bR as LineItemProductNameChange, bP as LineItemQuantityChange, Z as LineItemQuantityChangeType, jh as LineItemQuantityChangeTypeWithLiterals, e4 as LineItemRefund, fR as LineItemRefundSummary, iw as LineItemTax, aT as LineItemTaxBreakdown, aS as LineItemTaxInfo, ht as LineItemUpdate, it as LineItems, iz as Locale, cE as Location, b1 as LocationAndQuantity, bY as ManagedAdditionalFee, bV as ManagedDiscount, bU as ManagedLineItem, ak as ManuallyRefundableReason, jE as ManuallyRefundableReasonWithLiterals, hA as MarkAsFulfilledRequest, hB as MarkAsFulfilledResponse, hG as MarkAsUnfulfilledRequest, hH as MarkAsUnfulfilledResponse, f4 as MarkOrderAsPaidRequest, f5 as MarkOrderAsPaidResponse, hv as MarkOrderAsSeenByHumanRequest, hw as MarkOrderAsSeenByHumanResponse, gW as MaskedOrderLineItem, fk as MembershipChargeItem, fl as MembershipName, fJ as MembershipPaymentDetails, c9 as MembershipPaymentRefund, as as MembershipPaymentStatus, jM as MembershipPaymentStatusWithLiterals, bG as MerchantComment, bw as MerchantDiscount, bx as MerchantDiscountMerchantDiscountReasonOneOf, dm as MessageEnvelope, iI as MetaData, em as MetaSiteSpecialEvent, en as MetaSiteSpecialEventPayloadOneOf, b5 as ModifierGroup, ac as Namespace, eC as NamespaceChanged, jw as NamespaceWithLiterals, bJ as NewExchangeOrderCreated, aj as NonRefundableReason, jD as NonRefundableReasonWithLiterals, eH as OdeditorAssigned, eI as OdeditorUnassigned, a3 as OrderActionType, jn as OrderActionTypeWithLiterals, $ as OrderActivityTypeEnumActivityType, jj as OrderActivityTypeEnumActivityTypeWithLiterals, av as OrderApprovalStrategy, jP as OrderApprovalStrategyWithLiterals, cO as OrderApproved, h3 as OrderCanceled, cX as OrderCanceledEventOrderCanceled, bM as OrderChange, bN as OrderChangeValueOneOf, gk as OrderCreateNotifications, bI as OrderCreatedFromExchange, gi as OrderCreationSettings, gj as OrderCreationSettingsEditableByOneOf, cY as OrderDeltasCommitted, h1 as OrderFulfilled, cT as OrderImported, cR as OrderItemsRestocked, aD as OrderLineItem, d0 as OrderLineItemChangedDetails, h2 as OrderNotFulfilled, h0 as OrderPaid, hf as OrderPartiallyPaid, hg as OrderPending, g$ as OrderPlaced, bH as OrderRefunded, hh as OrderRejected, cQ as OrderRejectedEventOrderRejected, iX as OrderSearchSpec, cF as OrderSettings, cG as OrderSettingsAllowedActionsOneOf, cH as OrderSettingsEditableByOneOf, R as OrderStatus, je as OrderStatusWithLiterals, bs as OrderTaxBreakdown, br as OrderTaxInfo, fu as OrderTransactions, cP as OrdersExperiments, cJ as OwnerApps, fv as Payment, ci as PaymentCanceled, cj as PaymentCanceledPaymentDetailsOneOf, ag as PaymentCollectabilityStatus, jA as PaymentCollectabilityStatusWithLiterals, jZ as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, iU as PaymentCollectionCreatePaymentGatewayOrderOptions, jY as PaymentCollectionMarkOrderAsPaidApplicationErrors, iT as PaymentCollectionMarkOrderAsPaidOptions, ck as PaymentDeclined, cl as PaymentDeclinedPaymentDetailsOneOf, fH as PaymentMethodName, E as PaymentOptionType, j4 as PaymentOptionTypeWithLiterals, fw as PaymentPaymentDetailsOneOf, cd as PaymentPending, ce as PaymentPendingPaymentDetailsOneOf, fx as PaymentReceiptInfoOneOf, fp as PaymentRefund, cb as PaymentRefundFailed, ca as PaymentRefunded, K as PaymentStatus, cV as PaymentStatusUpdated, j9 as PaymentStatusWithLiterals, iG as Payments, il as Phone, aN as PhysicalProperties, eJ as PicassoAssigned, eK as PicassoUnassigned, bm as PickupAddress, bl as PickupDetails, Q as PickupMethod, jd as PickupMethodWithLiterals, he as PickupReadyEmailSent, aw as Placement, jQ as PlacementWithLiterals, aK as PlainTextValue, cN as PlatformFee, cM as PlatformFeeSummary, g6 as PlatformPaging, g9 as PlatformPagingMetadata, g3 as PlatformQuery, g4 as PlatformQueryPagingMethodOneOf, ah as PredefinedPaymentMethod, jB as PredefinedPaymentMethodWithLiterals, eX as PreparePaymentCollectionRequest, ee as PreviewBuyerConfirmationEmailRequest, ef as PreviewBuyerConfirmationEmailResponse, ec as PreviewBuyerPaymentsReceivedEmailRequest, ed as PreviewBuyerPaymentsReceivedEmailResponse, eg as PreviewBuyerPickupConfirmationEmailRequest, eh as PreviewBuyerPickupConfirmationEmailResponse, e8 as PreviewCancelEmailRequest, e9 as PreviewCancelEmailResponse, ea as PreviewCancelRefundEmailRequest, eb as PreviewCancelRefundEmailResponse, d$ as PreviewEmailByTypeRequest, e0 as PreviewEmailByTypeResponse, a9 as PreviewEmailType, jt as PreviewEmailTypeWithLiterals, e1 as PreviewRefundEmailRequest, e7 as PreviewRefundEmailResponse, ek as PreviewResendDownloadLinksEmailRequest, el as PreviewResendDownloadLinksEmailResponse, ei as PreviewShippingConfirmationEmailRequest, ej as PreviewShippingConfirmationEmailResponse, b0 as PriceDescription, bb as PriceSummary, aE as ProductName, hk as PublicActivity, hl as PublicActivityContentOneOf, gb as QueryOrderRequest, gc as QueryOrderResponse, ij as QuotesAddress, ap as Reason, jJ as ReasonWithLiterals, cm as ReceiptCreated, cn as ReceiptCreatedReceiptInfoOneOf, cq as ReceiptSent, cr as ReceiptSentReceiptInfoOneOf, jX as RecordManuallyCollectedPaymentApplicationErrors, iS as RecordManuallyCollectedPaymentOptions, f0 as RecordManuallyCollectedPaymentRequest, f3 as RecordManuallyCollectedPaymentResponse, eY as RedirectUrls, fM as Refund, e2 as RefundDetails, c4 as RefundInitiated, e3 as RefundItem, fQ as RefundItemsBreakdown, fq as RefundSideEffects, at as RefundStatus, fO as RefundStatusInfo, jN as RefundStatusWithLiterals, fN as RefundTransaction, fe as Refundability, ff as RefundabilityAdditionalRefundabilityInfoOneOf, ai as RefundableStatus, jC as RefundableStatusWithLiterals, cc as RefundedAsStoreCredit, c5 as RefundedPayment, c6 as RefundedPaymentKindOneOf, cf as RegularPayment, fy as RegularPaymentDetails, fz as RegularPaymentDetailsPaymentMethodDetailsOneOf, cg as RegularPaymentPaymentMethodDetailsOneOf, c7 as RegularPaymentRefund, ic as Reschedule, fr as RestockInfo, fs as RestockItem, al as RestockType, jF as RestockTypeWithLiterals, di as RestoreInfo, c0 as SavedPaymentMethod, ae as ScheduledAction, jy as ScheduledActionWithLiterals, gd as SearchOrdersRequest, dH as SendBuyerConfirmationEmailRequest, dI as SendBuyerConfirmationEmailResponse, dJ as SendBuyerPaymentsReceivedEmailRequest, dK as SendBuyerPaymentsReceivedEmailResponse, dL as SendBuyerPickupConfirmationEmailRequest, dM as SendBuyerPickupConfirmationEmailResponse, dP as SendBuyerShippingConfirmationEmailRequest, dQ as SendBuyerShippingConfirmationEmailResponse, dV as SendCancelRefundEmailRequest, dW as SendCancelRefundEmailResponse, dT as SendMerchantOrderReceivedNotificationRequest, dU as SendMerchantOrderReceivedNotificationResponse, dZ as SendMerchantOrderReceivedPushRequest, d_ as SendMerchantOrderReceivedPushResponse, i4 as SendOrderUpdatedDomainEventRequest, i5 as SendOrderUpdatedDomainEventResponse, dX as SendRefundEmailRequest, dY as SendRefundEmailResponse, fm as ServiceProperties, ey as ServiceProvisioned, ez as ServiceRemoved, iQ as SetOrderNumberCounterOptions, db as SetOrderNumberCounterRequest, dc as SetOrderNumberCounterResponse, hc as ShippingAddressEdited, h8 as ShippingConfirmationEmailSent, b$ as ShippingInformation, b_ as ShippingInformationChange, bo as ShippingPrice, e6 as ShippingRefund, bp as ShippingRegion, ep as SiteCreated, ab as SiteCreatedContext, jv as SiteCreatedContextWithLiterals, er as SiteDeleted, eB as SiteHardDeleted, ew as SiteMarkedAsTemplate, ex as SiteMarkedAsWixSite, eu as SitePublished, eG as SitePurgedExternally, eA as SiteRenamed, eq as SiteTransferred, et as SiteUndeleted, ev as SiteUnpublished, eF as SiteUrlChanged, au as SortOrder, jO as SortOrderWithLiterals, g5 as Sorting, ix as Source, ay as SourceType, jS as SourceTypeWithLiterals, ir as StandardDetails, aa as State, ju as StateWithLiterals, be as StreetAddress, eD as StudioAssigned, eN as StudioTwoAssigned, eO as StudioTwoUnassigned, eE as StudioUnassigned, iq as Subdivision, ax as SubdivisionType, jR as SubdivisionTypeWithLiterals, aX as SubscriptionDescription, F as SubscriptionFrequency, j6 as SubscriptionFrequencyWithLiterals, aV as SubscriptionInfo, aY as SubscriptionSettings, aW as SubscriptionTitle, cD as TagList, cC as Tags, i2 as TagsTagList, i1 as TagsTags, i6 as Task, i8 as TaskAction, i9 as TaskActionActionOneOf, i7 as TaskKey, bq as TaxSummary, b2 as TaxableAddress, b3 as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, j8 as TaxableAddressTypeWithLiterals, iA as TotalPrice, bZ as TotalPriceChange, h7 as TrackingLinkAdded, h5 as TrackingNumberAdded, h6 as TrackingNumberEdited, am as TransactionStatus, jG as TransactionStatusWithLiterals, b6 as TranslatableString, bW as TranslatedValue, j_ as TriggerRefundApplicationErrors, iW as TriggerRefundOptions, fo as TriggerRefundRequest, ft as TriggerRefundResponse, dG as TriggerReindexOrderRequest, dC as TriggerReindexRequest, dD as TriggerReindexResponse, gE as UnArchiveOrderRequest, gF as UnArchiveOrderResponse, i_ as UpdateActivityIdentifiers, ho as UpdateActivityRequest, hp as UpdateActivityResponse, gR as UpdateBillingContactDetailsRequest, gS as UpdateBillingContactDetailsResponse, gN as UpdateBuyerEmailRequest, gO as UpdateBuyerEmailResponse, gK as UpdateBuyerInfoRequest, gM as UpdateBuyerInfoResponse, dr as UpdateInternalDocumentsEvent, ds as UpdateInternalDocumentsEventOperationOneOf, hs as UpdateLineItemsDescriptionLinesRequest, hu as UpdateLineItemsDescriptionLinesResponse, iZ as UpdateOrderLineItem, iY as UpdateOrderLineItemIdentifiers, gT as UpdateOrderLineItemRequest, gU as UpdateOrderLineItemResponse, gV as UpdateOrderLineItemsRequest, gX as UpdateOrderLineItemsResponse, gm as UpdateOrderRequest, gn as UpdateOrderResponse, gP as UpdateOrderShippingAddressRequest, gQ as UpdateOrderShippingAddressResponse, j$ as UpdateOrderStatusApplicationErrors, hy as UpdateOrderStatusRequest, hz as UpdateOrderStatusResponse, f1 as UserDefinedPaymentMethodName, f2 as UserDefinedPaymentMethodNameKindOneOf, eQ as UserDomainMediaDisabled, eP as UserDomainMediaEnabled, hR as V1BulkMarkOrdersAsPaidRequest, hS as V1BulkMarkOrdersAsPaidResponse, hT as V1CreatePaymentGatewayOrderRequest, hU as V1CreatePaymentGatewayOrderResponse, gv as V1LineItemDelta, gw as V1LineItemDeltaDeltaOneOf, hP as V1MarkOrderAsPaidRequest, hQ as V1MarkOrderAsPaidResponse, cS as V1RestockItem, fF as V1ScheduledAction, bi as V1ShippingInformation, iL as Value, aA as ValueType, jU as ValueTypeWithLiterals, bh as VatId, N as VatType, jc as VatTypeWithLiterals, dA as VersionedDeleteByIdsOperation, dB as VersionedDocumentId, dz as VersionedDocumentUpdateOperation, a8 as VersioningMode, js as VersioningModeWithLiterals, fW as VoidAuthorizedPaymentsRequest, a7 as WebhookIdentityType, jr as WebhookIdentityTypeWithLiterals, W as WeightUnit, jb as WeightUnitWithLiterals, co as WixReceipt, fK as WixReceiptInfo, eL as WixelAssigned, eM as WixelUnassigned } from './ecom-v1-order-orders.universal-VnRchE9Y.js';
|
|
4
4
|
|
|
5
5
|
declare function preparePaymentCollection$1(httpClient: HttpClient): PreparePaymentCollectionSignature;
|
|
6
6
|
interface PreparePaymentCollectionSignature {
|