@wix/auto_sdk_ecom_orders 1.0.143 → 1.0.145
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-CHiN3-vD.d.ts → ecom-v1-order-orders.universal-BlFIYeAo.d.ts} +66 -1
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +19 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +19 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +67 -2
- package/build/cjs/meta.js +19 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-CHiN3-vD.d.mts → ecom-v1-order-orders.universal-BlFIYeAo.d.mts} +66 -1
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +17 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +17 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +67 -2
- package/build/es/meta.mjs +17 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-BMFTlij4.d.ts → ecom-v1-order-orders.universal-zh_hrpdy.d.ts} +95 -1
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +19 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js +19 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +67 -2
- package/build/internal/cjs/meta.js +19 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{ecom-v1-order-orders.universal-BMFTlij4.d.mts → ecom-v1-order-orders.universal-zh_hrpdy.d.mts} +95 -1
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +17 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +17 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +67 -2
- package/build/internal/es/meta.mjs +17 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -3101,6 +3101,71 @@ declare enum WebhookIdentityType {
|
|
|
3101
3101
|
}
|
|
3102
3102
|
/** @enumType */
|
|
3103
3103
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
3104
|
+
declare enum AdditionalFeeSource {
|
|
3105
|
+
UNKNOWN_ADDITIONAL_FEE_SOURCE = "UNKNOWN_ADDITIONAL_FEE_SOURCE",
|
|
3106
|
+
/** The additional fee was added by an additional fee service plugin. */
|
|
3107
|
+
SERVICE_PLUGIN = "SERVICE_PLUGIN",
|
|
3108
|
+
/** The additional fee was added to the item by a catalog or custom line item. */
|
|
3109
|
+
ITEM = "ITEM",
|
|
3110
|
+
/** The additional fee was added manually on request. */
|
|
3111
|
+
MANUAL = "MANUAL",
|
|
3112
|
+
/** The additional fee was added by the shipping provider. */
|
|
3113
|
+
SHIPPING = "SHIPPING",
|
|
3114
|
+
/** The additional fee was added by the Wix eCommerce platform. */
|
|
3115
|
+
PLATFORM = "PLATFORM"
|
|
3116
|
+
}
|
|
3117
|
+
/** @enumType */
|
|
3118
|
+
type AdditionalFeeSourceWithLiterals = AdditionalFeeSource | 'UNKNOWN_ADDITIONAL_FEE_SOURCE' | 'SERVICE_PLUGIN' | 'ITEM' | 'MANUAL' | 'SHIPPING' | 'PLATFORM';
|
|
3119
|
+
interface PlatformFeeSummary {
|
|
3120
|
+
/** Total sum of all platform fees. */
|
|
3121
|
+
total?: Price;
|
|
3122
|
+
/** Total amount of platform fees with `PASS_ON` charge type. */
|
|
3123
|
+
totalPassOn?: Price;
|
|
3124
|
+
/** Total amount of platform fees with `ABSORBED` charge type. */
|
|
3125
|
+
totalAbsorbed?: Price;
|
|
3126
|
+
/**
|
|
3127
|
+
* Specific information about each platform fee.
|
|
3128
|
+
* @maxSize 300
|
|
3129
|
+
*/
|
|
3130
|
+
fees?: PlatformFee[];
|
|
3131
|
+
}
|
|
3132
|
+
interface PlatformFee {
|
|
3133
|
+
/** Platform fee name. */
|
|
3134
|
+
name?: TranslatableString;
|
|
3135
|
+
/** Platform fee amount. */
|
|
3136
|
+
amount?: Price;
|
|
3137
|
+
/**
|
|
3138
|
+
* ID of the line item the platform fee applies to.
|
|
3139
|
+
* @format GUID
|
|
3140
|
+
*/
|
|
3141
|
+
lineItemId?: string;
|
|
3142
|
+
/** Platform fee charge type. */
|
|
3143
|
+
chargeType?: ChargeTypeWithLiterals;
|
|
3144
|
+
/**
|
|
3145
|
+
* Percentage rate charged as platform fee.
|
|
3146
|
+
* The fee rate expressed as a decimal fraction between 0 and 1. For example, `0.05` for 5%.
|
|
3147
|
+
* @format DECIMAL_VALUE
|
|
3148
|
+
* @decimalValue options { gte:0, lte:1, maxScale:4 }
|
|
3149
|
+
*/
|
|
3150
|
+
percentageRate?: string;
|
|
3151
|
+
}
|
|
3152
|
+
declare enum ChargeType {
|
|
3153
|
+
UNKNOWN_CHARGE_TYPE = "UNKNOWN_CHARGE_TYPE",
|
|
3154
|
+
/**
|
|
3155
|
+
* Platform fee passed on to buyer.
|
|
3156
|
+
*
|
|
3157
|
+
* This type increases the order total, and is visible to the buyer and merchant as an additional fee.
|
|
3158
|
+
*/
|
|
3159
|
+
PASS_ON = "PASS_ON",
|
|
3160
|
+
/**
|
|
3161
|
+
* Platform fee absorbed by merchant.
|
|
3162
|
+
*
|
|
3163
|
+
* This type does not increase the order total, and is only visible to the merchant.
|
|
3164
|
+
*/
|
|
3165
|
+
ABSORBED = "ABSORBED"
|
|
3166
|
+
}
|
|
3167
|
+
/** @enumType */
|
|
3168
|
+
type ChargeTypeWithLiterals = ChargeType | 'UNKNOWN_CHARGE_TYPE' | 'PASS_ON' | 'ABSORBED';
|
|
3104
3169
|
interface SendBuyerConfirmationEmailRequest {
|
|
3105
3170
|
/** @format GUID */
|
|
3106
3171
|
orderId?: string;
|
|
@@ -7725,4 +7790,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
7725
7790
|
unassignTags?: Tags;
|
|
7726
7791
|
}
|
|
7727
7792
|
|
|
7728
|
-
export { OrderActionType as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PaymentStatus as E, FulfillmentStatus as F, type GetPaymentCollectabilityStatusResponse as G, VatType as H, ItemTypePreset as I, JurisdictionType as J, PickupMethod as K, OrderStatus as L, type MaskedOrder as M, DiscountType as N, type Order as O, type Price as P, DiscountReason as Q, LineItemQuantityChangeType as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, ActivityType as X, OrderActivityTypeEnumActivityType as Y, AttributionSource as Z, ChannelType as _, type PreparePaymentCollectionOptions as a, type CurrencyConversionDetails as a$, WebhookIdentityType as a0, PreviewEmailType as a1, ScheduledAction as a2, DurationUnit as a3, PaymentCollectabilityStatus as a4, RefundableStatus as a5, NonRefundableReason as a6, ManuallyRefundableReason as a7, RestockType as a8, TransactionStatus as a9, type PlainTextValue as aA, type Color as aB, type FocalPoint as aC, type PhysicalProperties as aD, type ItemType as aE, type ItemTypeItemTypeDataOneOf as aF, type ItemTaxFullDetails as aG, type LineItemTaxInfo as aH, type LineItemTaxBreakdown as aI, type DigitalFile as aJ, type SubscriptionInfo as aK, type SubscriptionTitle as aL, type SubscriptionDescription as aM, type SubscriptionSettings as aN, type FreeTrialPeriod as aO, type BillingAdjustment as aP, type BillingAdjustmentPriceSummary as aQ, type PriceDescription as aR, type LocationAndQuantity as aS, type TaxableAddress as aT, type TaxableAddressTaxableAddressDataOneOf as aU, type ExtendedFields as aV, type ModifierGroup as aW, type TranslatableString as aX, type ItemModifier as aY, type BuyerInfo as aZ, type BuyerInfoIdOneOf as a_, AuthorizationCaptureStatus as aa, AuthorizationVoidStatus as ab, Reason as ac, ActionType as ad, ChargebackStatus as ae, MembershipPaymentStatus as af, RefundStatus as ag, VersioningMode as ah, SortOrder as ai, OrderApprovalStrategy as aj, DeltaPaymentOptionType as ak, InventoryAction as al, Placement as am, SubdivisionType as an, SourceType as ao, CustomFieldGroup as ap, ValueType as aq, DepositType as ar, InvoiceStatus as as, type OrderLineItem as at, type ProductName as au, type CatalogReference as av, type DescriptionLine as aw, type DescriptionLineValueOneOf as ax, type DescriptionLineDescriptionLineValueOneOf as ay, type DescriptionLineName as az, type PreparePaymentCollectionResponse as b, type RefundedAsStoreCredit as b$, type PriceSummary as b0, type AddressWithContact as b1, type Address as b2, type StreetAddress as b3, type AddressLocation as b4, type FullAddressContactDetails as b5, type VatId as b6, type V1ShippingInformation as b7, type DeliveryLogistics as b8, type DeliveryLogisticsAddressOneOf as b9, type OrderChangeValueOneOf as bA, type LineItemChanges as bB, type LineItemQuantityChange as bC, type LineItemPriceChange as bD, type LineItemProductNameChange as bE, type LineItemDescriptionLineChange as bF, type LineItemModifiersChange as bG, type ManagedLineItem as bH, type ManagedDiscount as bI, type TranslatedValue as bJ, type LineItemAmount as bK, type ManagedAdditionalFee as bL, type TotalPriceChange as bM, type ShippingInformationChange as bN, type ShippingInformation as bO, type SavedPaymentMethod as bP, type AuthorizedPaymentCreated as bQ, type AuthorizedPaymentCaptured as bR, type AuthorizedPaymentVoided as bS, type RefundInitiated as bT, type RefundedPayment as bU, type RefundedPaymentKindOneOf as bV, type RegularPaymentRefund as bW, type GiftCardPaymentRefund as bX, type MembershipPaymentRefund as bY, type PaymentRefunded as bZ, type PaymentRefundFailed as b_, type PickupDetails as ba, type PickupAddress as bb, type DeliveryTimeSlot as bc, type ShippingPrice as bd, type ShippingRegion as be, type TaxSummary as bf, type OrderTaxInfo as bg, type OrderTaxBreakdown as bh, type AppliedDiscount as bi, type AppliedDiscountDiscountSourceOneOf as bj, type Coupon as bk, type MerchantDiscount as bl, type MerchantDiscountMerchantDiscountReasonOneOf as bm, type DiscountRule as bn, type DiscountRuleName as bo, type LineItemDiscount as bp, type Activity as bq, type ActivityContentOneOf as br, type CustomActivity as bs, type MerchantComment as bt, type OrderRefunded as bu, type OrderCreatedFromExchange as bv, type NewExchangeOrderCreated as bw, type LineItemExchangeData as bx, type DraftOrderChangesApplied as by, type OrderChange as bz, type PreparePaymentCollectionApplicationErrors as c, type BulkSendBuyerPickupConfirmationEmailsResponse as c$, type PaymentPending as c0, type PaymentPendingPaymentDetailsOneOf as c1, type RegularPayment as c2, type RegularPaymentPaymentMethodDetailsOneOf as c3, type CreditCardDetails as c4, type PaymentCanceled as c5, type PaymentCanceledPaymentDetailsOneOf as c6, type PaymentDeclined as c7, type PaymentDeclinedPaymentDetailsOneOf as c8, type ReceiptCreated as c9, type OrderItemsRestocked as cA, type V1RestockItem as cB, type OrderImported as cC, type ImportedOrderDeleted as cD, type ImportOrderRequest as cE, type ImportOrderResponse as cF, type SetOrderNumberCounterRequest as cG, type SetOrderNumberCounterResponse as cH, type BulkDeleteImportedOrdersRequest as cI, type BulkDeleteImportedOrdersResponse as cJ, type DomainEvent as cK, type DomainEventBodyOneOf as cL, type EntityCreatedEvent as cM, type RestoreInfo as cN, type EntityUpdatedEvent as cO, type EntityDeletedEvent as cP, type ActionEvent as cQ, type MessageEnvelope as cR, type IdentificationData as cS, type IdentificationDataIdOneOf as cT, type SendBuyerConfirmationEmailRequest as cU, type SendBuyerConfirmationEmailResponse as cV, type SendBuyerPaymentsReceivedEmailRequest as cW, type SendBuyerPaymentsReceivedEmailResponse as cX, type SendBuyerPickupConfirmationEmailRequest as cY, type SendBuyerPickupConfirmationEmailResponse as cZ, type BulkSendBuyerPickupConfirmationEmailsRequest as c_, type ReceiptCreatedReceiptInfoOneOf as ca, type WixReceipt as cb, type ExternalReceipt as cc, type ReceiptSent as cd, type ReceiptSentReceiptInfoOneOf as ce, type ChargebackCreated as cf, type ChargebackReversed as cg, type CreatedBy as ch, type CreatedByStringOneOf as ci, type ChannelInfo as cj, type CustomField as ck, type BalanceSummary as cl, type Balance as cm, type AdditionalFee as cn, type FulfillmentStatusesAggregate as co, type Tags as cp, type TagList as cq, type Location as cr, type OrderSettings as cs, type OrderSettingsAllowedActionsOneOf as ct, type CustomAllowedActions as cu, type FormInfo as cv, type FormIdentifier as cw, type OrderApproved as cx, type OrdersExperiments as cy, type OrderRejectedEventOrderRejected as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type ChargeMembershipsResponse as d$, type SendBuyerShippingConfirmationEmailRequest as d0, type SendBuyerShippingConfirmationEmailResponse as d1, type BulkSendBuyerShippingConfirmationEmailsRequest as d2, type BulkSendBuyerShippingConfirmationEmailsResponse as d3, type SendMerchantOrderReceivedNotificationRequest as d4, type SendMerchantOrderReceivedNotificationResponse as d5, type SendCancelRefundEmailRequest as d6, type SendCancelRefundEmailResponse as d7, type SendRefundEmailRequest as d8, type SendRefundEmailResponse as d9, type Empty as dA, type PreparePaymentCollectionRequest as dB, type RedirectUrls as dC, type DelayedCaptureSettings as dD, type Duration as dE, type GetPaymentCollectabilityStatusRequest as dF, type RecordManuallyCollectedPaymentRequest as dG, type RecordManuallyCollectedPaymentResponse as dH, type MarkOrderAsPaidRequest as dI, type MarkOrderAsPaidResponse as dJ, type BulkMarkOrdersAsPaidRequest as dK, type BulkMarkOrdersAsPaidResponse as dL, type BulkOrderResult as dM, type ItemMetadata as dN, type ApplicationError as dO, type BulkActionMetadata as dP, type GetRefundabilityStatusRequest as dQ, type GetRefundabilityStatusResponse as dR, type Refundability as dS, type RefundabilityAdditionalRefundabilityInfoOneOf as dT, type CreatePaymentGatewayOrderRequest as dU, type ChargedBy as dV, type CreatePaymentGatewayOrderResponse as dW, type ChargeMembershipsRequest as dX, type MembershipChargeItem as dY, type MembershipName as dZ, type ServiceProperties as d_, type SendMerchantOrderReceivedPushRequest as da, type SendMerchantOrderReceivedPushResponse as db, type PreviewEmailByTypeRequest as dc, type PreviewEmailByTypeResponse as dd, type PreviewRefundEmailRequest as de, type RefundDetails as df, type RefundItem as dg, type LineItemRefund as dh, type AdditionalFeeRefund as di, type ShippingRefund as dj, type PreviewRefundEmailResponse as dk, type PreviewCancelEmailRequest as dl, type PreviewCancelEmailResponse as dm, type PreviewCancelRefundEmailRequest as dn, type PreviewCancelRefundEmailResponse as dp, type PreviewBuyerPaymentsReceivedEmailRequest as dq, type PreviewBuyerPaymentsReceivedEmailResponse as dr, type PreviewBuyerConfirmationEmailRequest as ds, type PreviewBuyerConfirmationEmailResponse as dt, type PreviewBuyerPickupConfirmationEmailRequest as du, type PreviewBuyerPickupConfirmationEmailResponse as dv, type PreviewShippingConfirmationEmailRequest as dw, type PreviewShippingConfirmationEmailResponse as dx, type PreviewResendDownloadLinksEmailRequest as dy, type PreviewResendDownloadLinksEmailResponse as dz, type PaymentCapture as e, type PlatformPagingMetadata as e$, type TriggerRefundRequest as e0, type PaymentRefund as e1, type RefundSideEffects as e2, type RestockInfo as e3, type RestockItem as e4, type TriggerRefundResponse as e5, type OrderTransactions as e6, type Payment as e7, type PaymentPaymentDetailsOneOf as e8, type PaymentReceiptInfoOneOf as e9, type ChargeSavedPaymentMethodResponse as eA, type UpdateInternalDocumentsEvent as eB, type UpdateInternalDocumentsEventOperationOneOf as eC, type InternalDocument as eD, type InternalDocumentUpdateOperation as eE, type DeleteByIdsOperation as eF, type DeleteByFilterOperation as eG, type InternalDocumentUpdateByFilterOperation as eH, type InternalUpdateExistingOperation as eI, type VersionedDocumentUpdateOperation as eJ, type VersionedDeleteByIdsOperation as eK, type VersionedDocumentId as eL, type TriggerReindexRequest as eM, type TriggerReindexResponse as eN, type BatchOfTriggerReindexOrderRequest as eO, type TriggerReindexOrderRequest as eP, type DiffmatokyPayload as eQ, type ErrorInformation as eR, type GetOrderRequest as eS, type GetOrderResponse as eT, type InternalQueryOrdersRequest as eU, type PlatformQuery as eV, type PlatformQueryPagingMethodOneOf as eW, type Sorting as eX, type PlatformPaging as eY, type CursorPaging as eZ, type InternalQueryOrdersResponse as e_, type RegularPaymentDetails as ea, type RegularPaymentDetailsPaymentMethodDetailsOneOf as eb, type CreditCardPaymentMethodDetails as ec, type AuthorizationDetails as ed, type AuthorizationCapture as ee, type AuthorizationActionFailureDetails as ef, type AuthorizationVoid as eg, type V1ScheduledAction as eh, type Chargeback as ei, type GiftCardPaymentDetails as ej, type MembershipPaymentDetails as ek, type WixReceiptInfo as el, type ExternalReceiptInfo as em, type Refund as en, type RefundTransaction as eo, type RefundStatusInfo as ep, type AggregatedRefundSummary as eq, type RefundItemsBreakdown as er, type LineItemRefundSummary as es, type CalculateRefundRequest as et, type CalculateRefundItemRequest as eu, type CalculateRefundResponse as ev, type CalculateRefundItemResponse as ew, type VoidAuthorizedPaymentsRequest as ex, type CaptureAuthorizedPaymentsRequest as ey, type ChargeSavedPaymentMethodRequest as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type InternalActivity as f$, type Cursors as f0, type QueryOrderRequest as f1, type QueryOrderResponse as f2, type SearchOrdersRequest as f3, type CursorSearch as f4, type CursorSearchPagingMethodOneOf as f5, type CursorPagingMetadata as f6, type CreateOrderRequest as f7, type OrderCreationSettings as f8, type OrderCreateNotifications as f9, type ArchiveOrderRequest as fA, type ArchiveOrderResponse as fB, type BulkArchiveOrdersRequest as fC, type BulkArchiveOrdersResponse as fD, type BulkArchiveOrdersByFilterRequest as fE, type BulkArchiveOrdersByFilterResponse as fF, type UnArchiveOrderRequest as fG, type UnArchiveOrderResponse as fH, type BulkUnArchiveOrdersRequest as fI, type BulkUnArchiveOrdersResponse as fJ, type BulkUnArchiveOrdersByFilterRequest as fK, type BulkUnArchiveOrdersByFilterResponse as fL, type UpdateBuyerInfoRequest as fM, type BuyerInfoUpdate as fN, type UpdateBuyerInfoResponse as fO, type UpdateBuyerEmailRequest as fP, type UpdateBuyerEmailResponse as fQ, type UpdateOrderShippingAddressRequest as fR, type UpdateOrderShippingAddressResponse as fS, type UpdateBillingContactDetailsRequest as fT, type UpdateBillingContactDetailsResponse as fU, type UpdateOrderLineItemRequest as fV, type UpdateOrderLineItemResponse as fW, type UpdateOrderLineItemsRequest as fX, type MaskedOrderLineItem as fY, type UpdateOrderLineItemsResponse as fZ, type AddInternalActivityRequest as f_, type CreateOrderResponse as fa, type UpdateOrderRequest as fb, type UpdateOrderResponse as fc, type BulkUpdateOrdersRequest as fd, type CommitDeltasRequest as fe, type DraftOrderDiffs as ff, type DraftOrderDiffsShippingUpdateInfoOneOf as fg, type DraftOrderDiffsBuyerUpdateInfoOneOf as fh, type DraftOrderDiffsBillingUpdateInfoOneOf as fi, type DraftOrderDiffsRecipientUpdateInfoOneOf as fj, type V1LineItemDelta as fk, type V1LineItemDeltaDeltaOneOf as fl, type OrderLineItemChangedDetails as fm, type ItemChangedDetails as fn, type AppliedDiscountDelta as fo, type AppliedDiscountDeltaDeltaOneOf as fp, type AdditionalFeeDelta as fq, type AdditionalFeeDeltaDeltaOneOf as fr, type DraftOrderCommitSettings as fs, type InventoryUpdateDetails as ft, type CommitDeltasResponse as fu, type OrderDeltasCommitted as fv, type CommittedDiffs as fw, type CommittedDiffsShippingUpdateInfoOneOf as fx, type LineItemDelta as fy, type LineItemDeltaDeltaOneOf as fz, type GetOrderApplicationErrors as g, type GetShipmentsResponse as g$, type InternalActivityContentOneOf as g0, type OrderPlaced as g1, type OrderPaid as g2, type OrderFulfilled as g3, type OrderNotFulfilled as g4, type OrderCanceled as g5, type DownloadLinkSent as g6, type TrackingNumberAdded as g7, type TrackingNumberEdited as g8, type TrackingLinkAdded as g9, type OrderCanceledEventOrderCanceled as gA, type UpdateOrderStatusRequest as gB, type UpdateOrderStatusResponse as gC, type MarkAsFulfilledRequest as gD, type MarkAsFulfilledResponse as gE, type FulfillmentStatusUpdated as gF, type BulkMarkAsFulfilledRequest as gG, type BulkMarkAsFulfilledResponse as gH, type BulkMarkAsFulfilledByFilterRequest as gI, type BulkMarkAsFulfilledByFilterResponse as gJ, type MarkAsUnfulfilledRequest as gK, type MarkAsUnfulfilledResponse as gL, type BulkMarkAsUnfulfilledRequest as gM, type BulkMarkAsUnfulfilledResponse as gN, type BulkMarkAsUnfulfilledByFilterRequest as gO, type BulkMarkAsUnfulfilledByFilterResponse as gP, type BulkSetBusinessLocationRequest as gQ, type BulkSetBusinessLocationResponse as gR, type BulkSetBusinessLocationResult as gS, type V1MarkOrderAsPaidRequest as gT, type V1MarkOrderAsPaidResponse as gU, type PaymentStatusUpdated as gV, type V1BulkMarkOrdersAsPaidRequest as gW, type V1BulkMarkOrdersAsPaidResponse as gX, type V1CreatePaymentGatewayOrderRequest as gY, type V1CreatePaymentGatewayOrderResponse as gZ, type GetShipmentsRequest as g_, type ShippingConfirmationEmailSent as ga, type InvoiceAdded as gb, type InvoiceSent as gc, type FulfillerEmailSent as gd, type ShippingAddressEdited as ge, type EmailEdited as gf, type PickupReadyEmailSent as gg, type OrderPartiallyPaid as gh, type OrderPending as gi, type OrderRejected as gj, type AddInternalActivityResponse as gk, type AddActivityRequest as gl, type PublicActivity as gm, type PublicActivityContentOneOf as gn, type AddActivityResponse as go, type AddActivitiesRequest as gp, type UpdateActivityRequest as gq, type UpdateActivityResponse as gr, type DeleteActivityRequest as gs, type DeleteActivityResponse as gt, type UpdateLineItemsDescriptionLinesRequest as gu, type LineItemUpdate as gv, type UpdateLineItemsDescriptionLinesResponse as gw, type MarkOrderAsSeenByHumanRequest as gx, type MarkOrderAsSeenByHumanResponse as gy, type CancelOrderRequest as gz, type OrderSearch as h, type PaymentOptionTypeWithLiterals as h$, type AggregateOrdersRequest as h0, type AggregateOrdersResponse as h1, type DecrementItemsQuantityRequest as h2, type DecrementData as h3, type DecrementItemsQuantityResponse as h4, type BulkUpdateOrderTagsRequest as h5, type BulkUpdateOrderTagsResult as h6, type Task as h7, type TaskKey as h8, type TaskAction as h9, type ItemizedFee as hA, type Discount as hB, type DiscountOneDiscountTypeOneOf as hC, type CalculatedTaxes as hD, type CalculatedTax as hE, type Payments as hF, type InvoicesPayment as hG, type MetaData as hH, type InvoiceDynamicPriceTotals as hI, type CustomFieldValue as hJ, type Value as hK, type Deposit as hL, type BaseEventMetadata as hM, type EventMetadata as hN, type SetOrderNumberCounterOptions as hO, type BulkDeleteImportedOrdersOptions as hP, type PaymentCollectionCreatePaymentGatewayOrderOptions as hQ, type ChargeMembershipsOptions as hR, type TriggerRefundOptions as hS, type OrderSearchSpec as hT, type UpdateOrderLineItemIdentifiers as hU, type UpdateOrderLineItem as hV, type UpdateActivityIdentifiers as hW, type DeleteActivityIdentifiers as hX, type AggregateOrdersOptions as hY, type DescriptionLineTypeWithLiterals as hZ, type ItemTypePresetWithLiterals as h_, type TaskActionActionOneOf as ha, type Complete as hb, type Cancel as hc, type Reschedule as hd, type InvoiceSentEvent as he, type IdAndVersion as hf, type InvoiceFields as hg, type Customer as hh, type Email as hi, type QuotesAddress as hj, type AddressDescription as hk, type Phone as hl, type Company as hm, type CommonAddress as hn, type CommonAddressStreetOneOf as ho, type Subdivision as hp, type StandardDetails as hq, type InvoiceDates as hr, type LineItems as hs, type LineItem as ht, type BigDecimalWrapper as hu, type LineItemTax as hv, type Source as hw, type LineItemMetaData as hx, type Locale as hy, type TotalPrice as hz, type CreateOrderOptions as i, captureAuthorizedPayments as i$, type JurisdictionTypeWithLiterals as i0, type SubscriptionFrequencyWithLiterals as i1, type AdjustmentTypeWithLiterals as i2, type TaxableAddressTypeWithLiterals as i3, type PaymentStatusWithLiterals as i4, type FulfillmentStatusWithLiterals as i5, type WeightUnitWithLiterals as i6, type VatTypeWithLiterals as i7, type PickupMethodWithLiterals as i8, type OrderStatusWithLiterals as i9, type RefundStatusWithLiterals as iA, type VersioningModeWithLiterals as iB, type SortOrderWithLiterals as iC, type OrderApprovalStrategyWithLiterals as iD, type DeltaPaymentOptionTypeWithLiterals as iE, type InventoryActionWithLiterals as iF, type PlacementWithLiterals as iG, type SubdivisionTypeWithLiterals as iH, type SourceTypeWithLiterals as iI, type CustomFieldGroupWithLiterals as iJ, type ValueTypeWithLiterals as iK, type DepositTypeWithLiterals as iL, type InvoiceStatusWithLiterals as iM, type RecordManuallyCollectedPaymentApplicationErrors as iN, type PaymentCollectionMarkOrderAsPaidApplicationErrors as iO, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as iP, type TriggerRefundApplicationErrors as iQ, type UpdateOrderStatusApplicationErrors as iR, type CommonSearchWithEntityContext as iS, onOrderApproved as iT, onOrderUpdated as iU, onOrderCanceled as iV, onOrderCreated as iW, onOrderPaymentStatusUpdated as iX, preparePaymentCollection as iY, getPaymentCollectabilityStatus as iZ, voidAuthorizedPayments as i_, type DiscountTypeWithLiterals as ia, type DiscountReasonWithLiterals as ib, type LineItemQuantityChangeTypeWithLiterals as ic, type ActivityTypeWithLiterals as id, type OrderActivityTypeEnumActivityTypeWithLiterals as ie, type AttributionSourceWithLiterals as ig, type ChannelTypeWithLiterals as ih, type OrderActionTypeWithLiterals as ii, type WebhookIdentityTypeWithLiterals as ij, type PreviewEmailTypeWithLiterals as ik, type ScheduledActionWithLiterals as il, type DurationUnitWithLiterals as im, type PaymentCollectabilityStatusWithLiterals as io, type RefundableStatusWithLiterals as ip, type NonRefundableReasonWithLiterals as iq, type ManuallyRefundableReasonWithLiterals as ir, type RestockTypeWithLiterals as is, type TransactionStatusWithLiterals as it, type AuthorizationCaptureStatusWithLiterals as iu, type AuthorizationVoidStatusWithLiterals as iv, type ReasonWithLiterals as iw, type ActionTypeWithLiterals as ix, type ChargebackStatusWithLiterals as iy, type MembershipPaymentStatusWithLiterals as iz, type CreateOrderApplicationErrors as j, getOrder as j0, createOrder as j1, updateOrder as j2, bulkUpdateOrders as j3, addActivities as j4, cancelOrder as j5, bulkUpdateOrderTags as j6, type UpdateOrderApplicationErrors as k, 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 OrderUpdatedEnvelope as t, type OrderCanceledEnvelope as u, type OrderCreatedEnvelope as v, type OrderPaymentStatusUpdatedEnvelope as w, PaymentOptionType as x, SubscriptionFrequency as y, AdjustmentType as z };
|
|
7793
|
+
export { OrderActionType as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PaymentStatus as E, FulfillmentStatus as F, type GetPaymentCollectabilityStatusResponse as G, VatType as H, ItemTypePreset as I, JurisdictionType as J, PickupMethod as K, OrderStatus as L, type MaskedOrder as M, DiscountType as N, type Order as O, type Price as P, DiscountReason as Q, LineItemQuantityChangeType as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, ActivityType as X, OrderActivityTypeEnumActivityType as Y, AttributionSource as Z, ChannelType as _, type PreparePaymentCollectionOptions as a, type BuyerInfo as a$, WebhookIdentityType as a0, AdditionalFeeSource as a1, ChargeType as a2, PreviewEmailType as a3, ScheduledAction as a4, DurationUnit as a5, PaymentCollectabilityStatus as a6, RefundableStatus as a7, NonRefundableReason as a8, ManuallyRefundableReason as a9, type DescriptionLineDescriptionLineValueOneOf as aA, type DescriptionLineName as aB, type PlainTextValue as aC, type Color as aD, type FocalPoint as aE, type PhysicalProperties as aF, type ItemType as aG, type ItemTypeItemTypeDataOneOf as aH, type ItemTaxFullDetails as aI, type LineItemTaxInfo as aJ, type LineItemTaxBreakdown as aK, type DigitalFile as aL, type SubscriptionInfo as aM, type SubscriptionTitle as aN, type SubscriptionDescription as aO, type SubscriptionSettings as aP, type FreeTrialPeriod as aQ, type BillingAdjustment as aR, type BillingAdjustmentPriceSummary as aS, type PriceDescription as aT, type LocationAndQuantity as aU, type TaxableAddress as aV, type TaxableAddressTaxableAddressDataOneOf as aW, type ExtendedFields as aX, type ModifierGroup as aY, type TranslatableString as aZ, type ItemModifier as a_, RestockType as aa, TransactionStatus as ab, AuthorizationCaptureStatus as ac, AuthorizationVoidStatus as ad, Reason as ae, ActionType as af, ChargebackStatus as ag, MembershipPaymentStatus as ah, RefundStatus as ai, VersioningMode as aj, SortOrder as ak, OrderApprovalStrategy as al, DeltaPaymentOptionType as am, InventoryAction as an, Placement as ao, SubdivisionType as ap, SourceType as aq, CustomFieldGroup as ar, ValueType as as, DepositType as at, InvoiceStatus as au, type OrderLineItem as av, type ProductName as aw, type CatalogReference as ax, type DescriptionLine as ay, type DescriptionLineValueOneOf as az, type PreparePaymentCollectionResponse as b, type PaymentRefunded as b$, type BuyerInfoIdOneOf as b0, type CurrencyConversionDetails as b1, type PriceSummary as b2, type AddressWithContact as b3, type Address as b4, type StreetAddress as b5, type AddressLocation as b6, type FullAddressContactDetails as b7, type VatId as b8, type V1ShippingInformation as b9, type DraftOrderChangesApplied as bA, type OrderChange as bB, type OrderChangeValueOneOf as bC, type LineItemChanges as bD, type LineItemQuantityChange as bE, type LineItemPriceChange as bF, type LineItemProductNameChange as bG, type LineItemDescriptionLineChange as bH, type LineItemModifiersChange as bI, type ManagedLineItem as bJ, type ManagedDiscount as bK, type TranslatedValue as bL, type LineItemAmount as bM, type ManagedAdditionalFee as bN, type TotalPriceChange as bO, type ShippingInformationChange as bP, type ShippingInformation as bQ, type SavedPaymentMethod as bR, type AuthorizedPaymentCreated as bS, type AuthorizedPaymentCaptured as bT, type AuthorizedPaymentVoided as bU, type RefundInitiated as bV, type RefundedPayment as bW, type RefundedPaymentKindOneOf as bX, type RegularPaymentRefund as bY, type GiftCardPaymentRefund as bZ, type MembershipPaymentRefund as b_, type DeliveryLogistics as ba, type DeliveryLogisticsAddressOneOf as bb, type PickupDetails as bc, type PickupAddress as bd, type DeliveryTimeSlot as be, type ShippingPrice as bf, type ShippingRegion as bg, type TaxSummary as bh, type OrderTaxInfo as bi, type OrderTaxBreakdown as bj, type AppliedDiscount as bk, type AppliedDiscountDiscountSourceOneOf as bl, type Coupon as bm, type MerchantDiscount as bn, type MerchantDiscountMerchantDiscountReasonOneOf as bo, type DiscountRule as bp, type DiscountRuleName as bq, type LineItemDiscount as br, type Activity as bs, type ActivityContentOneOf as bt, type CustomActivity as bu, type MerchantComment as bv, type OrderRefunded as bw, type OrderCreatedFromExchange as bx, type NewExchangeOrderCreated as by, type LineItemExchangeData as bz, type PreparePaymentCollectionApplicationErrors as c, type SendBuyerPaymentsReceivedEmailResponse as c$, type PaymentRefundFailed as c0, type RefundedAsStoreCredit as c1, type PaymentPending as c2, type PaymentPendingPaymentDetailsOneOf as c3, type RegularPayment as c4, type RegularPaymentPaymentMethodDetailsOneOf as c5, type CreditCardDetails as c6, type PaymentCanceled as c7, type PaymentCanceledPaymentDetailsOneOf as c8, type PaymentDeclined as c9, type OrdersExperiments as cA, type OrderRejectedEventOrderRejected as cB, type OrderItemsRestocked as cC, type V1RestockItem as cD, type OrderImported as cE, type ImportedOrderDeleted as cF, type ImportOrderRequest as cG, type ImportOrderResponse as cH, type SetOrderNumberCounterRequest as cI, type SetOrderNumberCounterResponse as cJ, type BulkDeleteImportedOrdersRequest as cK, type BulkDeleteImportedOrdersResponse as cL, type DomainEvent as cM, type DomainEventBodyOneOf as cN, type EntityCreatedEvent as cO, type RestoreInfo as cP, type EntityUpdatedEvent as cQ, type EntityDeletedEvent as cR, type ActionEvent as cS, type MessageEnvelope as cT, type IdentificationData as cU, type IdentificationDataIdOneOf as cV, type PlatformFeeSummary as cW, type PlatformFee as cX, type SendBuyerConfirmationEmailRequest as cY, type SendBuyerConfirmationEmailResponse as cZ, type SendBuyerPaymentsReceivedEmailRequest as c_, type PaymentDeclinedPaymentDetailsOneOf as ca, type ReceiptCreated as cb, type ReceiptCreatedReceiptInfoOneOf as cc, type WixReceipt as cd, type ExternalReceipt as ce, type ReceiptSent as cf, type ReceiptSentReceiptInfoOneOf as cg, type ChargebackCreated as ch, type ChargebackReversed as ci, type CreatedBy as cj, type CreatedByStringOneOf as ck, type ChannelInfo as cl, type CustomField as cm, type BalanceSummary as cn, type Balance as co, type AdditionalFee as cp, type FulfillmentStatusesAggregate as cq, type Tags as cr, type TagList as cs, type Location as ct, type OrderSettings as cu, type OrderSettingsAllowedActionsOneOf as cv, type CustomAllowedActions as cw, type FormInfo as cx, type FormIdentifier as cy, type OrderApproved as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type ChargeMembershipsRequest as d$, type SendBuyerPickupConfirmationEmailRequest as d0, type SendBuyerPickupConfirmationEmailResponse as d1, type BulkSendBuyerPickupConfirmationEmailsRequest as d2, type BulkSendBuyerPickupConfirmationEmailsResponse as d3, type SendBuyerShippingConfirmationEmailRequest as d4, type SendBuyerShippingConfirmationEmailResponse as d5, type BulkSendBuyerShippingConfirmationEmailsRequest as d6, type BulkSendBuyerShippingConfirmationEmailsResponse as d7, type SendMerchantOrderReceivedNotificationRequest as d8, type SendMerchantOrderReceivedNotificationResponse as d9, type PreviewShippingConfirmationEmailRequest as dA, type PreviewShippingConfirmationEmailResponse as dB, type PreviewResendDownloadLinksEmailRequest as dC, type PreviewResendDownloadLinksEmailResponse as dD, type Empty as dE, type PreparePaymentCollectionRequest as dF, type RedirectUrls as dG, type DelayedCaptureSettings as dH, type Duration as dI, type GetPaymentCollectabilityStatusRequest as dJ, type RecordManuallyCollectedPaymentRequest as dK, type RecordManuallyCollectedPaymentResponse as dL, type MarkOrderAsPaidRequest as dM, type MarkOrderAsPaidResponse as dN, type BulkMarkOrdersAsPaidRequest as dO, type BulkMarkOrdersAsPaidResponse as dP, type BulkOrderResult as dQ, type ItemMetadata as dR, type ApplicationError as dS, type BulkActionMetadata as dT, type GetRefundabilityStatusRequest as dU, type GetRefundabilityStatusResponse as dV, type Refundability as dW, type RefundabilityAdditionalRefundabilityInfoOneOf as dX, type CreatePaymentGatewayOrderRequest as dY, type ChargedBy as dZ, type CreatePaymentGatewayOrderResponse as d_, type SendCancelRefundEmailRequest as da, type SendCancelRefundEmailResponse as db, type SendRefundEmailRequest as dc, type SendRefundEmailResponse as dd, type SendMerchantOrderReceivedPushRequest as de, type SendMerchantOrderReceivedPushResponse as df, type PreviewEmailByTypeRequest as dg, type PreviewEmailByTypeResponse as dh, type PreviewRefundEmailRequest as di, type RefundDetails as dj, type RefundItem as dk, type LineItemRefund as dl, type AdditionalFeeRefund as dm, type ShippingRefund as dn, type PreviewRefundEmailResponse as dp, type PreviewCancelEmailRequest as dq, type PreviewCancelEmailResponse as dr, type PreviewCancelRefundEmailRequest as ds, type PreviewCancelRefundEmailResponse as dt, type PreviewBuyerPaymentsReceivedEmailRequest as du, type PreviewBuyerPaymentsReceivedEmailResponse as dv, type PreviewBuyerConfirmationEmailRequest as dw, type PreviewBuyerConfirmationEmailResponse as dx, type PreviewBuyerPickupConfirmationEmailRequest as dy, type PreviewBuyerPickupConfirmationEmailResponse as dz, type PaymentCapture as e, type Sorting as e$, type MembershipChargeItem as e0, type MembershipName as e1, type ServiceProperties as e2, type ChargeMembershipsResponse as e3, type TriggerRefundRequest as e4, type PaymentRefund as e5, type RefundSideEffects as e6, type RestockInfo as e7, type RestockItem as e8, type TriggerRefundResponse as e9, type CalculateRefundItemResponse as eA, type VoidAuthorizedPaymentsRequest as eB, type CaptureAuthorizedPaymentsRequest as eC, type ChargeSavedPaymentMethodRequest as eD, type ChargeSavedPaymentMethodResponse as eE, type UpdateInternalDocumentsEvent as eF, type UpdateInternalDocumentsEventOperationOneOf as eG, type InternalDocument as eH, type InternalDocumentUpdateOperation as eI, type DeleteByIdsOperation as eJ, type DeleteByFilterOperation as eK, type InternalDocumentUpdateByFilterOperation as eL, type InternalUpdateExistingOperation as eM, type VersionedDocumentUpdateOperation as eN, type VersionedDeleteByIdsOperation as eO, type VersionedDocumentId as eP, type TriggerReindexRequest as eQ, type TriggerReindexResponse as eR, type BatchOfTriggerReindexOrderRequest as eS, type TriggerReindexOrderRequest as eT, type DiffmatokyPayload as eU, type ErrorInformation as eV, type GetOrderRequest as eW, type GetOrderResponse as eX, type InternalQueryOrdersRequest as eY, type PlatformQuery as eZ, type PlatformQueryPagingMethodOneOf as e_, type OrderTransactions as ea, type Payment as eb, type PaymentPaymentDetailsOneOf as ec, type PaymentReceiptInfoOneOf as ed, type RegularPaymentDetails as ee, type RegularPaymentDetailsPaymentMethodDetailsOneOf as ef, type CreditCardPaymentMethodDetails as eg, type AuthorizationDetails as eh, type AuthorizationCapture as ei, type AuthorizationActionFailureDetails as ej, type AuthorizationVoid as ek, type V1ScheduledAction as el, type Chargeback as em, type GiftCardPaymentDetails as en, type MembershipPaymentDetails as eo, type WixReceiptInfo as ep, type ExternalReceiptInfo as eq, type Refund as er, type RefundTransaction as es, type RefundStatusInfo as et, type AggregatedRefundSummary as eu, type RefundItemsBreakdown as ev, type LineItemRefundSummary as ew, type CalculateRefundRequest as ex, type CalculateRefundItemRequest as ey, type CalculateRefundResponse as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type UpdateOrderLineItemsRequest as f$, type PlatformPaging as f0, type CursorPaging as f1, type InternalQueryOrdersResponse as f2, type PlatformPagingMetadata as f3, type Cursors as f4, type QueryOrderRequest as f5, type QueryOrderResponse as f6, type SearchOrdersRequest as f7, type CursorSearch as f8, type CursorSearchPagingMethodOneOf as f9, type CommittedDiffs as fA, type CommittedDiffsShippingUpdateInfoOneOf as fB, type LineItemDelta as fC, type LineItemDeltaDeltaOneOf as fD, type ArchiveOrderRequest as fE, type ArchiveOrderResponse as fF, type BulkArchiveOrdersRequest as fG, type BulkArchiveOrdersResponse as fH, type BulkArchiveOrdersByFilterRequest as fI, type BulkArchiveOrdersByFilterResponse as fJ, type UnArchiveOrderRequest as fK, type UnArchiveOrderResponse as fL, type BulkUnArchiveOrdersRequest as fM, type BulkUnArchiveOrdersResponse as fN, type BulkUnArchiveOrdersByFilterRequest as fO, type BulkUnArchiveOrdersByFilterResponse as fP, type UpdateBuyerInfoRequest as fQ, type BuyerInfoUpdate as fR, type UpdateBuyerInfoResponse as fS, type UpdateBuyerEmailRequest as fT, type UpdateBuyerEmailResponse as fU, type UpdateOrderShippingAddressRequest as fV, type UpdateOrderShippingAddressResponse as fW, type UpdateBillingContactDetailsRequest as fX, type UpdateBillingContactDetailsResponse as fY, type UpdateOrderLineItemRequest as fZ, type UpdateOrderLineItemResponse as f_, type CursorPagingMetadata as fa, type CreateOrderRequest as fb, type OrderCreationSettings as fc, type OrderCreateNotifications as fd, type CreateOrderResponse as fe, type UpdateOrderRequest as ff, type UpdateOrderResponse as fg, type BulkUpdateOrdersRequest as fh, type CommitDeltasRequest as fi, type DraftOrderDiffs as fj, type DraftOrderDiffsShippingUpdateInfoOneOf as fk, type DraftOrderDiffsBuyerUpdateInfoOneOf as fl, type DraftOrderDiffsBillingUpdateInfoOneOf as fm, type DraftOrderDiffsRecipientUpdateInfoOneOf as fn, type V1LineItemDelta as fo, type V1LineItemDeltaDeltaOneOf as fp, type OrderLineItemChangedDetails as fq, type ItemChangedDetails as fr, type AppliedDiscountDelta as fs, type AppliedDiscountDeltaDeltaOneOf as ft, type AdditionalFeeDelta as fu, type AdditionalFeeDeltaDeltaOneOf as fv, type DraftOrderCommitSettings as fw, type InventoryUpdateDetails as fx, type CommitDeltasResponse as fy, type OrderDeltasCommitted as fz, type GetOrderApplicationErrors as g, type V1BulkMarkOrdersAsPaidResponse as g$, type MaskedOrderLineItem as g0, type UpdateOrderLineItemsResponse as g1, type AddInternalActivityRequest as g2, type InternalActivity as g3, type InternalActivityContentOneOf as g4, type OrderPlaced as g5, type OrderPaid as g6, type OrderFulfilled as g7, type OrderNotFulfilled as g8, type OrderCanceled as g9, type UpdateLineItemsDescriptionLinesResponse as gA, type MarkOrderAsSeenByHumanRequest as gB, type MarkOrderAsSeenByHumanResponse as gC, type CancelOrderRequest as gD, type OrderCanceledEventOrderCanceled as gE, type UpdateOrderStatusRequest as gF, type UpdateOrderStatusResponse as gG, type MarkAsFulfilledRequest as gH, type MarkAsFulfilledResponse as gI, type FulfillmentStatusUpdated as gJ, type BulkMarkAsFulfilledRequest as gK, type BulkMarkAsFulfilledResponse as gL, type BulkMarkAsFulfilledByFilterRequest as gM, type BulkMarkAsFulfilledByFilterResponse as gN, type MarkAsUnfulfilledRequest as gO, type MarkAsUnfulfilledResponse as gP, type BulkMarkAsUnfulfilledRequest as gQ, type BulkMarkAsUnfulfilledResponse as gR, type BulkMarkAsUnfulfilledByFilterRequest as gS, type BulkMarkAsUnfulfilledByFilterResponse as gT, type BulkSetBusinessLocationRequest as gU, type BulkSetBusinessLocationResponse as gV, type BulkSetBusinessLocationResult as gW, type V1MarkOrderAsPaidRequest as gX, type V1MarkOrderAsPaidResponse as gY, type PaymentStatusUpdated as gZ, type V1BulkMarkOrdersAsPaidRequest as g_, type DownloadLinkSent as ga, type TrackingNumberAdded as gb, type TrackingNumberEdited as gc, type TrackingLinkAdded as gd, type ShippingConfirmationEmailSent as ge, type InvoiceAdded as gf, type InvoiceSent as gg, type FulfillerEmailSent as gh, type ShippingAddressEdited as gi, type EmailEdited as gj, type PickupReadyEmailSent as gk, type OrderPartiallyPaid as gl, type OrderPending as gm, type OrderRejected as gn, type AddInternalActivityResponse as go, type AddActivityRequest as gp, type PublicActivity as gq, type PublicActivityContentOneOf as gr, type AddActivityResponse as gs, type AddActivitiesRequest as gt, type UpdateActivityRequest as gu, type UpdateActivityResponse as gv, type DeleteActivityRequest as gw, type DeleteActivityResponse as gx, type UpdateLineItemsDescriptionLinesRequest as gy, type LineItemUpdate as gz, type OrderSearch as h, type DeleteActivityIdentifiers as h$, type V1CreatePaymentGatewayOrderRequest as h0, type V1CreatePaymentGatewayOrderResponse as h1, type GetShipmentsRequest as h2, type GetShipmentsResponse as h3, type AggregateOrdersRequest as h4, type AggregateOrdersResponse as h5, type DecrementItemsQuantityRequest as h6, type DecrementData as h7, type DecrementItemsQuantityResponse as h8, type BulkUpdateOrderTagsRequest as h9, type Source as hA, type LineItemMetaData as hB, type Locale as hC, type TotalPrice as hD, type ItemizedFee as hE, type Discount as hF, type DiscountOneDiscountTypeOneOf as hG, type CalculatedTaxes as hH, type CalculatedTax as hI, type Payments as hJ, type InvoicesPayment as hK, type MetaData as hL, type InvoiceDynamicPriceTotals as hM, type CustomFieldValue as hN, type Value as hO, type Deposit as hP, type BaseEventMetadata as hQ, type EventMetadata as hR, type SetOrderNumberCounterOptions as hS, type BulkDeleteImportedOrdersOptions as hT, type PaymentCollectionCreatePaymentGatewayOrderOptions as hU, type ChargeMembershipsOptions as hV, type TriggerRefundOptions as hW, type OrderSearchSpec as hX, type UpdateOrderLineItemIdentifiers as hY, type UpdateOrderLineItem as hZ, type UpdateActivityIdentifiers as h_, type BulkUpdateOrderTagsResult as ha, type Task as hb, type TaskKey as hc, type TaskAction as hd, type TaskActionActionOneOf as he, type Complete as hf, type Cancel as hg, type Reschedule as hh, type InvoiceSentEvent as hi, type IdAndVersion as hj, type InvoiceFields as hk, type Customer as hl, type Email as hm, type QuotesAddress as hn, type AddressDescription as ho, type Phone as hp, type Company as hq, type CommonAddress as hr, type CommonAddressStreetOneOf as hs, type Subdivision as ht, type StandardDetails as hu, type InvoiceDates as hv, type LineItems as hw, type LineItem as hx, type BigDecimalWrapper as hy, type LineItemTax as hz, type CreateOrderOptions as i, onOrderCanceled as i$, type AggregateOrdersOptions as i0, type DescriptionLineTypeWithLiterals as i1, type ItemTypePresetWithLiterals as i2, type PaymentOptionTypeWithLiterals as i3, type JurisdictionTypeWithLiterals as i4, type SubscriptionFrequencyWithLiterals as i5, type AdjustmentTypeWithLiterals as i6, type TaxableAddressTypeWithLiterals as i7, type PaymentStatusWithLiterals as i8, type FulfillmentStatusWithLiterals as i9, type AuthorizationCaptureStatusWithLiterals as iA, type AuthorizationVoidStatusWithLiterals as iB, type ReasonWithLiterals as iC, type ActionTypeWithLiterals as iD, type ChargebackStatusWithLiterals as iE, type MembershipPaymentStatusWithLiterals as iF, type RefundStatusWithLiterals as iG, type VersioningModeWithLiterals as iH, type SortOrderWithLiterals as iI, type OrderApprovalStrategyWithLiterals as iJ, type DeltaPaymentOptionTypeWithLiterals as iK, type InventoryActionWithLiterals as iL, type PlacementWithLiterals as iM, type SubdivisionTypeWithLiterals as iN, type SourceTypeWithLiterals as iO, type CustomFieldGroupWithLiterals as iP, type ValueTypeWithLiterals as iQ, type DepositTypeWithLiterals as iR, type InvoiceStatusWithLiterals as iS, type RecordManuallyCollectedPaymentApplicationErrors as iT, type PaymentCollectionMarkOrderAsPaidApplicationErrors as iU, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as iV, type TriggerRefundApplicationErrors as iW, type UpdateOrderStatusApplicationErrors as iX, type CommonSearchWithEntityContext as iY, onOrderApproved as iZ, onOrderUpdated as i_, type WeightUnitWithLiterals as ia, type VatTypeWithLiterals as ib, type PickupMethodWithLiterals as ic, type OrderStatusWithLiterals as id, type DiscountTypeWithLiterals as ie, type DiscountReasonWithLiterals as ig, type LineItemQuantityChangeTypeWithLiterals as ih, type ActivityTypeWithLiterals as ii, type OrderActivityTypeEnumActivityTypeWithLiterals as ij, type AttributionSourceWithLiterals as ik, type ChannelTypeWithLiterals as il, type OrderActionTypeWithLiterals as im, type WebhookIdentityTypeWithLiterals as io, type AdditionalFeeSourceWithLiterals as ip, type ChargeTypeWithLiterals as iq, type PreviewEmailTypeWithLiterals as ir, type ScheduledActionWithLiterals as is, type DurationUnitWithLiterals as it, type PaymentCollectabilityStatusWithLiterals as iu, type RefundableStatusWithLiterals as iv, type NonRefundableReasonWithLiterals as iw, type ManuallyRefundableReasonWithLiterals as ix, type RestockTypeWithLiterals as iy, type TransactionStatusWithLiterals as iz, type CreateOrderApplicationErrors as j, onOrderCreated as j0, onOrderPaymentStatusUpdated as j1, preparePaymentCollection as j2, getPaymentCollectabilityStatus as j3, voidAuthorizedPayments as j4, captureAuthorizedPayments as j5, getOrder as j6, createOrder as j7, updateOrder as j8, bulkUpdateOrders as j9, addActivities as ja, cancelOrder as jb, bulkUpdateOrderTags as jc, type UpdateOrderApplicationErrors as k, 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 OrderUpdatedEnvelope as t, type OrderCanceledEnvelope as u, type OrderCreatedEnvelope as v, type OrderPaymentStatusUpdatedEnvelope as w, PaymentOptionType as x, SubscriptionFrequency as y, AdjustmentType as z };
|
package/build/es/index.d.mts
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 OrderUpdatedEnvelope, u as OrderCanceledEnvelope, v as OrderCreatedEnvelope, w as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-
|
|
3
|
-
export { cQ as ActionEvent, ad as ActionType, ix as ActionTypeWithLiterals, bq as Activity, br as ActivityContentOneOf, X as ActivityType, id as ActivityTypeWithLiterals, gp as AddActivitiesRequest, gl as AddActivityRequest, go as AddActivityResponse, f_ as AddInternalActivityRequest, gk as AddInternalActivityResponse, cn as AdditionalFee, fq as AdditionalFeeDelta, fr as AdditionalFeeDeltaDeltaOneOf, di as AdditionalFeeRefund, b2 as Address, hk as AddressDescription, b4 as AddressLocation, b1 as AddressWithContact, z as AdjustmentType, i2 as AdjustmentTypeWithLiterals, hY as AggregateOrdersOptions, h0 as AggregateOrdersRequest, h1 as AggregateOrdersResponse, eq as AggregatedRefundSummary, dO as ApplicationError, bi as AppliedDiscount, fo as AppliedDiscountDelta, fp as AppliedDiscountDeltaDeltaOneOf, bj as AppliedDiscountDiscountSourceOneOf, fA as ArchiveOrderRequest, fB as ArchiveOrderResponse, Z as AttributionSource, ig as AttributionSourceWithLiterals, ef as AuthorizationActionFailureDetails, ee as AuthorizationCapture, aa as AuthorizationCaptureStatus, iu as AuthorizationCaptureStatusWithLiterals, ed as AuthorizationDetails, eg as AuthorizationVoid, ab as AuthorizationVoidStatus, iv as AuthorizationVoidStatusWithLiterals, bR as AuthorizedPaymentCaptured, bQ as AuthorizedPaymentCreated, bS as AuthorizedPaymentVoided, cm as Balance, cl as BalanceSummary, hM as BaseEventMetadata, eO as BatchOfTriggerReindexOrderRequest, hu as BigDecimalWrapper, aP as BillingAdjustment, aQ as BillingAdjustmentPriceSummary, dP as BulkActionMetadata, fE as BulkArchiveOrdersByFilterRequest, fF as BulkArchiveOrdersByFilterResponse, fC as BulkArchiveOrdersRequest, fD as BulkArchiveOrdersResponse, hP as BulkDeleteImportedOrdersOptions, cI as BulkDeleteImportedOrdersRequest, cJ as BulkDeleteImportedOrdersResponse, gI as BulkMarkAsFulfilledByFilterRequest, gJ as BulkMarkAsFulfilledByFilterResponse, gG as BulkMarkAsFulfilledRequest, gH as BulkMarkAsFulfilledResponse, gO as BulkMarkAsUnfulfilledByFilterRequest, gP as BulkMarkAsUnfulfilledByFilterResponse, gM as BulkMarkAsUnfulfilledRequest, gN as BulkMarkAsUnfulfilledResponse, dK as BulkMarkOrdersAsPaidRequest, dL as BulkMarkOrdersAsPaidResponse, dM as BulkOrderResult, c_ as BulkSendBuyerPickupConfirmationEmailsRequest, c$ as BulkSendBuyerPickupConfirmationEmailsResponse, d2 as BulkSendBuyerShippingConfirmationEmailsRequest, d3 as BulkSendBuyerShippingConfirmationEmailsResponse, gQ as BulkSetBusinessLocationRequest, gR as BulkSetBusinessLocationResponse, gS as BulkSetBusinessLocationResult, fK as BulkUnArchiveOrdersByFilterRequest, fL as BulkUnArchiveOrdersByFilterResponse, fI as BulkUnArchiveOrdersRequest, fJ as BulkUnArchiveOrdersResponse, h5 as BulkUpdateOrderTagsRequest, h6 as BulkUpdateOrderTagsResult, fd as BulkUpdateOrdersRequest, aZ as BuyerInfo, a_ as BuyerInfoIdOneOf, fN as BuyerInfoUpdate, eu as CalculateRefundItemRequest, ew as CalculateRefundItemResponse, et as CalculateRefundRequest, ev as CalculateRefundResponse, hE as CalculatedTax, hD as CalculatedTaxes, hc as Cancel, gz as CancelOrderRequest, ey as CaptureAuthorizedPaymentsRequest, av as CatalogReference, cj as ChannelInfo, _ as ChannelType, ih as ChannelTypeWithLiterals, hR as ChargeMembershipsOptions, dX as ChargeMembershipsRequest, d$ as ChargeMembershipsResponse, ez as ChargeSavedPaymentMethodRequest, eA as ChargeSavedPaymentMethodResponse, ei as Chargeback, cf as ChargebackCreated, cg as ChargebackReversed, ae as ChargebackStatus, iy as ChargebackStatusWithLiterals, dV as ChargedBy, aB as Color, fe as CommitDeltasRequest, fu as CommitDeltasResponse, fw as CommittedDiffs, fx as CommittedDiffsShippingUpdateInfoOneOf, hn as CommonAddress, ho as CommonAddressStreetOneOf, iS as CommonSearchWithEntityContext, hm as Company, hb as Complete, bk as Coupon, f7 as CreateOrderRequest, fa as CreateOrderResponse, dU as CreatePaymentGatewayOrderRequest, dW as CreatePaymentGatewayOrderResponse, ch as CreatedBy, ci as CreatedByStringOneOf, c4 as CreditCardDetails, ec as CreditCardPaymentMethodDetails, a$ as CurrencyConversionDetails, eZ as CursorPaging, f6 as CursorPagingMetadata, f4 as CursorSearch, f5 as CursorSearchPagingMethodOneOf, f0 as Cursors, bs as CustomActivity, cu as CustomAllowedActions, ck as CustomField, ap as CustomFieldGroup, iJ as CustomFieldGroupWithLiterals, hJ as CustomFieldValue, hh as Customer, h3 as DecrementData, h2 as DecrementItemsQuantityRequest, h4 as DecrementItemsQuantityResponse, dD as DelayedCaptureSettings, hX as DeleteActivityIdentifiers, gs as DeleteActivityRequest, gt as DeleteActivityResponse, eG as DeleteByFilterOperation, eF as DeleteByIdsOperation, b8 as DeliveryLogistics, b9 as DeliveryLogisticsAddressOneOf, bc as DeliveryTimeSlot, ak as DeltaPaymentOptionType, iE as DeltaPaymentOptionTypeWithLiterals, hL as Deposit, ar as DepositType, iL as DepositTypeWithLiterals, aw as DescriptionLine, ay as DescriptionLineDescriptionLineValueOneOf, az as DescriptionLineName, D as DescriptionLineType, hZ as DescriptionLineTypeWithLiterals, ax as DescriptionLineValueOneOf, eQ as DiffmatokyPayload, aJ as DigitalFile, hB as Discount, hC as DiscountOneDiscountTypeOneOf, Q as DiscountReason, ib as DiscountReasonWithLiterals, bn as DiscountRule, bo as DiscountRuleName, N as DiscountType, ia as DiscountTypeWithLiterals, cK as DomainEvent, cL as DomainEventBodyOneOf, g6 as DownloadLinkSent, by as DraftOrderChangesApplied, fs as DraftOrderCommitSettings, ff as DraftOrderDiffs, fi as DraftOrderDiffsBillingUpdateInfoOneOf, fh as DraftOrderDiffsBuyerUpdateInfoOneOf, fj as DraftOrderDiffsRecipientUpdateInfoOneOf, fg as DraftOrderDiffsShippingUpdateInfoOneOf, dE as Duration, a3 as DurationUnit, im as DurationUnitWithLiterals, hi as Email, gf as EmailEdited, dA as Empty, cM as EntityCreatedEvent, cP as EntityDeletedEvent, cO as EntityUpdatedEvent, eR as ErrorInformation, hN as EventMetadata, aV as ExtendedFields, cc as ExternalReceipt, em as ExternalReceiptInfo, aC as FocalPoint, cw as FormIdentifier, cv as FormInfo, aO as FreeTrialPeriod, gd as FulfillerEmailSent, F as FulfillmentStatus, gF as FulfillmentStatusUpdated, i5 as FulfillmentStatusWithLiterals, co as FulfillmentStatusesAggregate, b5 as FullAddressContactDetails, eS as GetOrderRequest, eT as GetOrderResponse, dF as GetPaymentCollectabilityStatusRequest, dQ as GetRefundabilityStatusRequest, dR as GetRefundabilityStatusResponse, g_ as GetShipmentsRequest, g$ as GetShipmentsResponse, ej as GiftCardPaymentDetails, bX as GiftCardPaymentRefund, hf as IdAndVersion, cS as IdentificationData, cT as IdentificationDataIdOneOf, cE as ImportOrderRequest, cF as ImportOrderResponse, cD as ImportedOrderDeleted, f$ as InternalActivity, g0 as InternalActivityContentOneOf, eD as InternalDocument, eH as InternalDocumentUpdateByFilterOperation, eE as InternalDocumentUpdateOperation, eU as InternalQueryOrdersRequest, e_ as InternalQueryOrdersResponse, eI as InternalUpdateExistingOperation, al as InventoryAction, iF as InventoryActionWithLiterals, ft as InventoryUpdateDetails, gb as InvoiceAdded, hr as InvoiceDates, hI as InvoiceDynamicPriceTotals, hg as InvoiceFields, gc as InvoiceSent, he as InvoiceSentEvent, as as InvoiceStatus, iM as InvoiceStatusWithLiterals, hG as InvoicesPayment, fn as ItemChangedDetails, dN as ItemMetadata, aY as ItemModifier, aG as ItemTaxFullDetails, aE as ItemType, aF as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, h_ as ItemTypePresetWithLiterals, hA as ItemizedFee, J as JurisdictionType, i0 as JurisdictionTypeWithLiterals, ht as LineItem, bK as LineItemAmount, bB as LineItemChanges, fy as LineItemDelta, fz as LineItemDeltaDeltaOneOf, bF as LineItemDescriptionLineChange, bp as LineItemDiscount, bx as LineItemExchangeData, hx as LineItemMetaData, bG as LineItemModifiersChange, bD as LineItemPriceChange, bE as LineItemProductNameChange, bC as LineItemQuantityChange, R as LineItemQuantityChangeType, ic as LineItemQuantityChangeTypeWithLiterals, dh as LineItemRefund, es as LineItemRefundSummary, hv as LineItemTax, aI as LineItemTaxBreakdown, aH as LineItemTaxInfo, gv as LineItemUpdate, hs as LineItems, hy as Locale, cr as Location, aS as LocationAndQuantity, bL as ManagedAdditionalFee, bI as ManagedDiscount, bH as ManagedLineItem, a7 as ManuallyRefundableReason, ir as ManuallyRefundableReasonWithLiterals, gD as MarkAsFulfilledRequest, gE as MarkAsFulfilledResponse, gK as MarkAsUnfulfilledRequest, gL as MarkAsUnfulfilledResponse, dI as MarkOrderAsPaidRequest, dJ as MarkOrderAsPaidResponse, gx as MarkOrderAsSeenByHumanRequest, gy as MarkOrderAsSeenByHumanResponse, fY as MaskedOrderLineItem, dY as MembershipChargeItem, dZ as MembershipName, ek as MembershipPaymentDetails, bY as MembershipPaymentRefund, af as MembershipPaymentStatus, iz as MembershipPaymentStatusWithLiterals, bt as MerchantComment, bl as MerchantDiscount, bm as MerchantDiscountMerchantDiscountReasonOneOf, cR as MessageEnvelope, hH as MetaData, aW as ModifierGroup, bw as NewExchangeOrderCreated, a6 as NonRefundableReason, iq as NonRefundableReasonWithLiterals, $ as OrderActionType, ii as OrderActionTypeWithLiterals, Y as OrderActivityTypeEnumActivityType, ie as OrderActivityTypeEnumActivityTypeWithLiterals, aj as OrderApprovalStrategy, iD as OrderApprovalStrategyWithLiterals, cx as OrderApproved, g5 as OrderCanceled, gA as OrderCanceledEventOrderCanceled, bz as OrderChange, bA as OrderChangeValueOneOf, f9 as OrderCreateNotifications, bv as OrderCreatedFromExchange, f8 as OrderCreationSettings, fv as OrderDeltasCommitted, g3 as OrderFulfilled, cC as OrderImported, cA as OrderItemsRestocked, at as OrderLineItem, fm as OrderLineItemChangedDetails, g4 as OrderNotFulfilled, g2 as OrderPaid, gh as OrderPartiallyPaid, gi as OrderPending, g1 as OrderPlaced, bu as OrderRefunded, gj as OrderRejected, cz as OrderRejectedEventOrderRejected, hT as OrderSearchSpec, cs as OrderSettings, ct as OrderSettingsAllowedActionsOneOf, L as OrderStatus, i9 as OrderStatusWithLiterals, bh as OrderTaxBreakdown, bg as OrderTaxInfo, e6 as OrderTransactions, cy as OrdersExperiments, e7 as Payment, c5 as PaymentCanceled, c6 as PaymentCanceledPaymentDetailsOneOf, a4 as PaymentCollectabilityStatus, io as PaymentCollectabilityStatusWithLiterals, iP as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, hQ as PaymentCollectionCreatePaymentGatewayOrderOptions, iO as PaymentCollectionMarkOrderAsPaidApplicationErrors, c7 as PaymentDeclined, c8 as PaymentDeclinedPaymentDetailsOneOf, x as PaymentOptionType, h$ as PaymentOptionTypeWithLiterals, e8 as PaymentPaymentDetailsOneOf, c0 as PaymentPending, c1 as PaymentPendingPaymentDetailsOneOf, e9 as PaymentReceiptInfoOneOf, e1 as PaymentRefund, b_ as PaymentRefundFailed, bZ as PaymentRefunded, E as PaymentStatus, gV as PaymentStatusUpdated, i4 as PaymentStatusWithLiterals, hF as Payments, hl as Phone, aD as PhysicalProperties, bb as PickupAddress, ba as PickupDetails, K as PickupMethod, i8 as PickupMethodWithLiterals, gg as PickupReadyEmailSent, am as Placement, iG as PlacementWithLiterals, aA as PlainTextValue, eY as PlatformPaging, e$ as PlatformPagingMetadata, eV as PlatformQuery, eW as PlatformQueryPagingMethodOneOf, dB as PreparePaymentCollectionRequest, ds as PreviewBuyerConfirmationEmailRequest, dt as PreviewBuyerConfirmationEmailResponse, dq as PreviewBuyerPaymentsReceivedEmailRequest, dr as PreviewBuyerPaymentsReceivedEmailResponse, du as PreviewBuyerPickupConfirmationEmailRequest, dv as PreviewBuyerPickupConfirmationEmailResponse, dl as PreviewCancelEmailRequest, dm as PreviewCancelEmailResponse, dn as PreviewCancelRefundEmailRequest, dp as PreviewCancelRefundEmailResponse, dc as PreviewEmailByTypeRequest, dd as PreviewEmailByTypeResponse, a1 as PreviewEmailType, ik as PreviewEmailTypeWithLiterals, de as PreviewRefundEmailRequest, dk as PreviewRefundEmailResponse, dy as PreviewResendDownloadLinksEmailRequest, dz as PreviewResendDownloadLinksEmailResponse, dw as PreviewShippingConfirmationEmailRequest, dx as PreviewShippingConfirmationEmailResponse, aR as PriceDescription, b0 as PriceSummary, au as ProductName, gm as PublicActivity, gn as PublicActivityContentOneOf, f1 as QueryOrderRequest, f2 as QueryOrderResponse, hj as QuotesAddress, ac as Reason, iw as ReasonWithLiterals, c9 as ReceiptCreated, ca as ReceiptCreatedReceiptInfoOneOf, cd as ReceiptSent, ce as ReceiptSentReceiptInfoOneOf, iN as RecordManuallyCollectedPaymentApplicationErrors, dG as RecordManuallyCollectedPaymentRequest, dH as RecordManuallyCollectedPaymentResponse, dC as RedirectUrls, en as Refund, df as RefundDetails, bT as RefundInitiated, dg as RefundItem, er as RefundItemsBreakdown, e2 as RefundSideEffects, ag as RefundStatus, ep as RefundStatusInfo, iA as RefundStatusWithLiterals, eo as RefundTransaction, dS as Refundability, dT as RefundabilityAdditionalRefundabilityInfoOneOf, a5 as RefundableStatus, ip as RefundableStatusWithLiterals, b$ as RefundedAsStoreCredit, bU as RefundedPayment, bV as RefundedPaymentKindOneOf, c2 as RegularPayment, ea as RegularPaymentDetails, eb as RegularPaymentDetailsPaymentMethodDetailsOneOf, c3 as RegularPaymentPaymentMethodDetailsOneOf, bW as RegularPaymentRefund, hd as Reschedule, e3 as RestockInfo, e4 as RestockItem, a8 as RestockType, is as RestockTypeWithLiterals, cN as RestoreInfo, bP as SavedPaymentMethod, a2 as ScheduledAction, il as ScheduledActionWithLiterals, f3 as SearchOrdersRequest, cU as SendBuyerConfirmationEmailRequest, cV as SendBuyerConfirmationEmailResponse, cW as SendBuyerPaymentsReceivedEmailRequest, cX as SendBuyerPaymentsReceivedEmailResponse, cY as SendBuyerPickupConfirmationEmailRequest, cZ as SendBuyerPickupConfirmationEmailResponse, d0 as SendBuyerShippingConfirmationEmailRequest, d1 as SendBuyerShippingConfirmationEmailResponse, d6 as SendCancelRefundEmailRequest, d7 as SendCancelRefundEmailResponse, d4 as SendMerchantOrderReceivedNotificationRequest, d5 as SendMerchantOrderReceivedNotificationResponse, da as SendMerchantOrderReceivedPushRequest, db as SendMerchantOrderReceivedPushResponse, d8 as SendRefundEmailRequest, d9 as SendRefundEmailResponse, d_ as ServiceProperties, hO as SetOrderNumberCounterOptions, cG as SetOrderNumberCounterRequest, cH as SetOrderNumberCounterResponse, ge as ShippingAddressEdited, ga as ShippingConfirmationEmailSent, bO as ShippingInformation, bN as ShippingInformationChange, bd as ShippingPrice, dj as ShippingRefund, be as ShippingRegion, ai as SortOrder, iC as SortOrderWithLiterals, eX as Sorting, hw as Source, ao as SourceType, iI as SourceTypeWithLiterals, hq as StandardDetails, b3 as StreetAddress, hp as Subdivision, an as SubdivisionType, iH as SubdivisionTypeWithLiterals, aM as SubscriptionDescription, y as SubscriptionFrequency, i1 as SubscriptionFrequencyWithLiterals, aK as SubscriptionInfo, aN as SubscriptionSettings, aL as SubscriptionTitle, cq as TagList, cp as Tags, h7 as Task, h9 as TaskAction, ha as TaskActionActionOneOf, h8 as TaskKey, bf as TaxSummary, aT as TaxableAddress, aU as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, i3 as TaxableAddressTypeWithLiterals, hz as TotalPrice, bM as TotalPriceChange, g9 as TrackingLinkAdded, g7 as TrackingNumberAdded, g8 as TrackingNumberEdited, a9 as TransactionStatus, it as TransactionStatusWithLiterals, aX as TranslatableString, bJ as TranslatedValue, iQ as TriggerRefundApplicationErrors, hS as TriggerRefundOptions, e0 as TriggerRefundRequest, e5 as TriggerRefundResponse, eP as TriggerReindexOrderRequest, eM as TriggerReindexRequest, eN as TriggerReindexResponse, fG as UnArchiveOrderRequest, fH as UnArchiveOrderResponse, hW as UpdateActivityIdentifiers, gq as UpdateActivityRequest, gr as UpdateActivityResponse, fT as UpdateBillingContactDetailsRequest, fU as UpdateBillingContactDetailsResponse, fP as UpdateBuyerEmailRequest, fQ as UpdateBuyerEmailResponse, fM as UpdateBuyerInfoRequest, fO as UpdateBuyerInfoResponse, eB as UpdateInternalDocumentsEvent, eC as UpdateInternalDocumentsEventOperationOneOf, gu as UpdateLineItemsDescriptionLinesRequest, gw as UpdateLineItemsDescriptionLinesResponse, hV as UpdateOrderLineItem, hU as UpdateOrderLineItemIdentifiers, fV as UpdateOrderLineItemRequest, fW as UpdateOrderLineItemResponse, fX as UpdateOrderLineItemsRequest, fZ as UpdateOrderLineItemsResponse, fb as UpdateOrderRequest, fc as UpdateOrderResponse, fR as UpdateOrderShippingAddressRequest, fS as UpdateOrderShippingAddressResponse, iR as UpdateOrderStatusApplicationErrors, gB as UpdateOrderStatusRequest, gC as UpdateOrderStatusResponse, gW as V1BulkMarkOrdersAsPaidRequest, gX as V1BulkMarkOrdersAsPaidResponse, gY as V1CreatePaymentGatewayOrderRequest, gZ as V1CreatePaymentGatewayOrderResponse, fk as V1LineItemDelta, fl as V1LineItemDeltaDeltaOneOf, gT as V1MarkOrderAsPaidRequest, gU as V1MarkOrderAsPaidResponse, cB as V1RestockItem, eh as V1ScheduledAction, b7 as V1ShippingInformation, hK as Value, aq as ValueType, iK as ValueTypeWithLiterals, b6 as VatId, H as VatType, i7 as VatTypeWithLiterals, eK as VersionedDeleteByIdsOperation, eL as VersionedDocumentId, eJ as VersionedDocumentUpdateOperation, ah as VersioningMode, iB as VersioningModeWithLiterals, ex as VoidAuthorizedPaymentsRequest, a0 as WebhookIdentityType, ij as WebhookIdentityTypeWithLiterals, W as WeightUnit, i6 as WeightUnitWithLiterals, cb as WixReceipt, el as WixReceiptInfo } from './ecom-v1-order-orders.universal-CHiN3-vD.mjs';
|
|
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 OrderUpdatedEnvelope, u as OrderCanceledEnvelope, v as OrderCreatedEnvelope, w as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-BlFIYeAo.mjs';
|
|
3
|
+
export { cS as ActionEvent, af as ActionType, iD as ActionTypeWithLiterals, bs as Activity, bt as ActivityContentOneOf, X as ActivityType, ii as ActivityTypeWithLiterals, gt as AddActivitiesRequest, gp as AddActivityRequest, gs as AddActivityResponse, g2 as AddInternalActivityRequest, go as AddInternalActivityResponse, cp as AdditionalFee, fu as AdditionalFeeDelta, fv as AdditionalFeeDeltaDeltaOneOf, dm as AdditionalFeeRefund, a1 as AdditionalFeeSource, ip as AdditionalFeeSourceWithLiterals, b4 as Address, ho as AddressDescription, b6 as AddressLocation, b3 as AddressWithContact, z as AdjustmentType, i6 as AdjustmentTypeWithLiterals, i0 as AggregateOrdersOptions, h4 as AggregateOrdersRequest, h5 as AggregateOrdersResponse, eu as AggregatedRefundSummary, dS as ApplicationError, bk as AppliedDiscount, fs as AppliedDiscountDelta, ft as AppliedDiscountDeltaDeltaOneOf, bl as AppliedDiscountDiscountSourceOneOf, fE as ArchiveOrderRequest, fF as ArchiveOrderResponse, Z as AttributionSource, ik as AttributionSourceWithLiterals, ej as AuthorizationActionFailureDetails, ei as AuthorizationCapture, ac as AuthorizationCaptureStatus, iA as AuthorizationCaptureStatusWithLiterals, eh as AuthorizationDetails, ek as AuthorizationVoid, ad as AuthorizationVoidStatus, iB as AuthorizationVoidStatusWithLiterals, bT as AuthorizedPaymentCaptured, bS as AuthorizedPaymentCreated, bU as AuthorizedPaymentVoided, co as Balance, cn as BalanceSummary, hQ as BaseEventMetadata, eS as BatchOfTriggerReindexOrderRequest, hy as BigDecimalWrapper, aR as BillingAdjustment, aS as BillingAdjustmentPriceSummary, dT as BulkActionMetadata, fI as BulkArchiveOrdersByFilterRequest, fJ as BulkArchiveOrdersByFilterResponse, fG as BulkArchiveOrdersRequest, fH as BulkArchiveOrdersResponse, hT as BulkDeleteImportedOrdersOptions, cK as BulkDeleteImportedOrdersRequest, cL as BulkDeleteImportedOrdersResponse, gM as BulkMarkAsFulfilledByFilterRequest, gN as BulkMarkAsFulfilledByFilterResponse, gK as BulkMarkAsFulfilledRequest, gL as BulkMarkAsFulfilledResponse, gS as BulkMarkAsUnfulfilledByFilterRequest, gT as BulkMarkAsUnfulfilledByFilterResponse, gQ as BulkMarkAsUnfulfilledRequest, gR as BulkMarkAsUnfulfilledResponse, dO as BulkMarkOrdersAsPaidRequest, dP as BulkMarkOrdersAsPaidResponse, dQ as BulkOrderResult, d2 as BulkSendBuyerPickupConfirmationEmailsRequest, d3 as BulkSendBuyerPickupConfirmationEmailsResponse, d6 as BulkSendBuyerShippingConfirmationEmailsRequest, d7 as BulkSendBuyerShippingConfirmationEmailsResponse, gU as BulkSetBusinessLocationRequest, gV as BulkSetBusinessLocationResponse, gW as BulkSetBusinessLocationResult, fO as BulkUnArchiveOrdersByFilterRequest, fP as BulkUnArchiveOrdersByFilterResponse, fM as BulkUnArchiveOrdersRequest, fN as BulkUnArchiveOrdersResponse, h9 as BulkUpdateOrderTagsRequest, ha as BulkUpdateOrderTagsResult, fh as BulkUpdateOrdersRequest, a$ as BuyerInfo, b0 as BuyerInfoIdOneOf, fR as BuyerInfoUpdate, ey as CalculateRefundItemRequest, eA as CalculateRefundItemResponse, ex as CalculateRefundRequest, ez as CalculateRefundResponse, hI as CalculatedTax, hH as CalculatedTaxes, hg as Cancel, gD as CancelOrderRequest, eC as CaptureAuthorizedPaymentsRequest, ax as CatalogReference, cl as ChannelInfo, _ as ChannelType, il as ChannelTypeWithLiterals, hV as ChargeMembershipsOptions, d$ as ChargeMembershipsRequest, e3 as ChargeMembershipsResponse, eD as ChargeSavedPaymentMethodRequest, eE as ChargeSavedPaymentMethodResponse, a2 as ChargeType, iq as ChargeTypeWithLiterals, em as Chargeback, ch as ChargebackCreated, ci as ChargebackReversed, ag as ChargebackStatus, iE as ChargebackStatusWithLiterals, dZ as ChargedBy, aD as Color, fi as CommitDeltasRequest, fy as CommitDeltasResponse, fA as CommittedDiffs, fB as CommittedDiffsShippingUpdateInfoOneOf, hr as CommonAddress, hs as CommonAddressStreetOneOf, iY as CommonSearchWithEntityContext, hq as Company, hf as Complete, bm as Coupon, fb as CreateOrderRequest, fe as CreateOrderResponse, dY as CreatePaymentGatewayOrderRequest, d_ as CreatePaymentGatewayOrderResponse, cj as CreatedBy, ck as CreatedByStringOneOf, c6 as CreditCardDetails, eg as CreditCardPaymentMethodDetails, b1 as CurrencyConversionDetails, f1 as CursorPaging, fa as CursorPagingMetadata, f8 as CursorSearch, f9 as CursorSearchPagingMethodOneOf, f4 as Cursors, bu as CustomActivity, cw as CustomAllowedActions, cm as CustomField, ar as CustomFieldGroup, iP as CustomFieldGroupWithLiterals, hN as CustomFieldValue, hl as Customer, h7 as DecrementData, h6 as DecrementItemsQuantityRequest, h8 as DecrementItemsQuantityResponse, dH as DelayedCaptureSettings, h$ as DeleteActivityIdentifiers, gw as DeleteActivityRequest, gx as DeleteActivityResponse, eK as DeleteByFilterOperation, eJ as DeleteByIdsOperation, ba as DeliveryLogistics, bb as DeliveryLogisticsAddressOneOf, be as DeliveryTimeSlot, am as DeltaPaymentOptionType, iK as DeltaPaymentOptionTypeWithLiterals, hP as Deposit, at as DepositType, iR as DepositTypeWithLiterals, ay as DescriptionLine, aA as DescriptionLineDescriptionLineValueOneOf, aB as DescriptionLineName, D as DescriptionLineType, i1 as DescriptionLineTypeWithLiterals, az as DescriptionLineValueOneOf, eU as DiffmatokyPayload, aL as DigitalFile, hF as Discount, hG as DiscountOneDiscountTypeOneOf, Q as DiscountReason, ig as DiscountReasonWithLiterals, bp as DiscountRule, bq as DiscountRuleName, N as DiscountType, ie as DiscountTypeWithLiterals, cM as DomainEvent, cN as DomainEventBodyOneOf, ga as DownloadLinkSent, bA as DraftOrderChangesApplied, fw as DraftOrderCommitSettings, fj as DraftOrderDiffs, fm as DraftOrderDiffsBillingUpdateInfoOneOf, fl as DraftOrderDiffsBuyerUpdateInfoOneOf, fn as DraftOrderDiffsRecipientUpdateInfoOneOf, fk as DraftOrderDiffsShippingUpdateInfoOneOf, dI as Duration, a5 as DurationUnit, it as DurationUnitWithLiterals, hm as Email, gj as EmailEdited, dE as Empty, cO as EntityCreatedEvent, cR as EntityDeletedEvent, cQ as EntityUpdatedEvent, eV as ErrorInformation, hR as EventMetadata, aX as ExtendedFields, ce as ExternalReceipt, eq as ExternalReceiptInfo, aE as FocalPoint, cy as FormIdentifier, cx as FormInfo, aQ as FreeTrialPeriod, gh as FulfillerEmailSent, F as FulfillmentStatus, gJ as FulfillmentStatusUpdated, i9 as FulfillmentStatusWithLiterals, cq as FulfillmentStatusesAggregate, b7 as FullAddressContactDetails, eW as GetOrderRequest, eX as GetOrderResponse, dJ as GetPaymentCollectabilityStatusRequest, dU as GetRefundabilityStatusRequest, dV as GetRefundabilityStatusResponse, h2 as GetShipmentsRequest, h3 as GetShipmentsResponse, en as GiftCardPaymentDetails, bZ as GiftCardPaymentRefund, hj as IdAndVersion, cU as IdentificationData, cV as IdentificationDataIdOneOf, cG as ImportOrderRequest, cH as ImportOrderResponse, cF as ImportedOrderDeleted, g3 as InternalActivity, g4 as InternalActivityContentOneOf, eH as InternalDocument, eL as InternalDocumentUpdateByFilterOperation, eI as InternalDocumentUpdateOperation, eY as InternalQueryOrdersRequest, f2 as InternalQueryOrdersResponse, eM as InternalUpdateExistingOperation, an as InventoryAction, iL as InventoryActionWithLiterals, fx as InventoryUpdateDetails, gf as InvoiceAdded, hv as InvoiceDates, hM as InvoiceDynamicPriceTotals, hk as InvoiceFields, gg as InvoiceSent, hi as InvoiceSentEvent, au as InvoiceStatus, iS as InvoiceStatusWithLiterals, hK as InvoicesPayment, fr as ItemChangedDetails, dR as ItemMetadata, a_ as ItemModifier, aI as ItemTaxFullDetails, aG as ItemType, aH as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, i2 as ItemTypePresetWithLiterals, hE as ItemizedFee, J as JurisdictionType, i4 as JurisdictionTypeWithLiterals, hx as LineItem, bM as LineItemAmount, bD as LineItemChanges, fC as LineItemDelta, fD as LineItemDeltaDeltaOneOf, bH as LineItemDescriptionLineChange, br as LineItemDiscount, bz as LineItemExchangeData, hB as LineItemMetaData, bI as LineItemModifiersChange, bF as LineItemPriceChange, bG as LineItemProductNameChange, bE as LineItemQuantityChange, R as LineItemQuantityChangeType, ih as LineItemQuantityChangeTypeWithLiterals, dl as LineItemRefund, ew as LineItemRefundSummary, hz as LineItemTax, aK as LineItemTaxBreakdown, aJ as LineItemTaxInfo, gz as LineItemUpdate, hw as LineItems, hC as Locale, ct as Location, aU as LocationAndQuantity, bN as ManagedAdditionalFee, bK as ManagedDiscount, bJ as ManagedLineItem, a9 as ManuallyRefundableReason, ix as ManuallyRefundableReasonWithLiterals, gH as MarkAsFulfilledRequest, gI as MarkAsFulfilledResponse, gO as MarkAsUnfulfilledRequest, gP as MarkAsUnfulfilledResponse, dM as MarkOrderAsPaidRequest, dN as MarkOrderAsPaidResponse, gB as MarkOrderAsSeenByHumanRequest, gC as MarkOrderAsSeenByHumanResponse, g0 as MaskedOrderLineItem, e0 as MembershipChargeItem, e1 as MembershipName, eo as MembershipPaymentDetails, b_ as MembershipPaymentRefund, ah as MembershipPaymentStatus, iF as MembershipPaymentStatusWithLiterals, bv as MerchantComment, bn as MerchantDiscount, bo as MerchantDiscountMerchantDiscountReasonOneOf, cT as MessageEnvelope, hL as MetaData, aY as ModifierGroup, by as NewExchangeOrderCreated, a8 as NonRefundableReason, iw as NonRefundableReasonWithLiterals, $ as OrderActionType, im as OrderActionTypeWithLiterals, Y as OrderActivityTypeEnumActivityType, ij as OrderActivityTypeEnumActivityTypeWithLiterals, al as OrderApprovalStrategy, iJ as OrderApprovalStrategyWithLiterals, cz as OrderApproved, g9 as OrderCanceled, gE as OrderCanceledEventOrderCanceled, bB as OrderChange, bC as OrderChangeValueOneOf, fd as OrderCreateNotifications, bx as OrderCreatedFromExchange, fc as OrderCreationSettings, fz as OrderDeltasCommitted, g7 as OrderFulfilled, cE as OrderImported, cC as OrderItemsRestocked, av as OrderLineItem, fq as OrderLineItemChangedDetails, g8 as OrderNotFulfilled, g6 as OrderPaid, gl as OrderPartiallyPaid, gm as OrderPending, g5 as OrderPlaced, bw as OrderRefunded, gn as OrderRejected, cB as OrderRejectedEventOrderRejected, hX as OrderSearchSpec, cu as OrderSettings, cv as OrderSettingsAllowedActionsOneOf, L as OrderStatus, id as OrderStatusWithLiterals, bj as OrderTaxBreakdown, bi as OrderTaxInfo, ea as OrderTransactions, cA as OrdersExperiments, eb as Payment, c7 as PaymentCanceled, c8 as PaymentCanceledPaymentDetailsOneOf, a6 as PaymentCollectabilityStatus, iu as PaymentCollectabilityStatusWithLiterals, iV as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, hU as PaymentCollectionCreatePaymentGatewayOrderOptions, iU as PaymentCollectionMarkOrderAsPaidApplicationErrors, c9 as PaymentDeclined, ca as PaymentDeclinedPaymentDetailsOneOf, x as PaymentOptionType, i3 as PaymentOptionTypeWithLiterals, ec as PaymentPaymentDetailsOneOf, c2 as PaymentPending, c3 as PaymentPendingPaymentDetailsOneOf, ed as PaymentReceiptInfoOneOf, e5 as PaymentRefund, c0 as PaymentRefundFailed, b$ as PaymentRefunded, E as PaymentStatus, gZ as PaymentStatusUpdated, i8 as PaymentStatusWithLiterals, hJ as Payments, hp as Phone, aF as PhysicalProperties, bd as PickupAddress, bc as PickupDetails, K as PickupMethod, ic as PickupMethodWithLiterals, gk as PickupReadyEmailSent, ao as Placement, iM as PlacementWithLiterals, aC as PlainTextValue, cX as PlatformFee, cW as PlatformFeeSummary, f0 as PlatformPaging, f3 as PlatformPagingMetadata, eZ as PlatformQuery, e_ as PlatformQueryPagingMethodOneOf, dF as PreparePaymentCollectionRequest, dw as PreviewBuyerConfirmationEmailRequest, dx as PreviewBuyerConfirmationEmailResponse, du as PreviewBuyerPaymentsReceivedEmailRequest, dv as PreviewBuyerPaymentsReceivedEmailResponse, dy as PreviewBuyerPickupConfirmationEmailRequest, dz as PreviewBuyerPickupConfirmationEmailResponse, dq as PreviewCancelEmailRequest, dr as PreviewCancelEmailResponse, ds as PreviewCancelRefundEmailRequest, dt as PreviewCancelRefundEmailResponse, dg as PreviewEmailByTypeRequest, dh as PreviewEmailByTypeResponse, a3 as PreviewEmailType, ir as PreviewEmailTypeWithLiterals, di as PreviewRefundEmailRequest, dp as PreviewRefundEmailResponse, dC as PreviewResendDownloadLinksEmailRequest, dD as PreviewResendDownloadLinksEmailResponse, dA as PreviewShippingConfirmationEmailRequest, dB as PreviewShippingConfirmationEmailResponse, aT as PriceDescription, b2 as PriceSummary, aw as ProductName, gq as PublicActivity, gr as PublicActivityContentOneOf, f5 as QueryOrderRequest, f6 as QueryOrderResponse, hn as QuotesAddress, ae as Reason, iC as ReasonWithLiterals, cb as ReceiptCreated, cc as ReceiptCreatedReceiptInfoOneOf, cf as ReceiptSent, cg as ReceiptSentReceiptInfoOneOf, iT as RecordManuallyCollectedPaymentApplicationErrors, dK as RecordManuallyCollectedPaymentRequest, dL as RecordManuallyCollectedPaymentResponse, dG as RedirectUrls, er as Refund, dj as RefundDetails, bV as RefundInitiated, dk as RefundItem, ev as RefundItemsBreakdown, e6 as RefundSideEffects, ai as RefundStatus, et as RefundStatusInfo, iG as RefundStatusWithLiterals, es as RefundTransaction, dW as Refundability, dX as RefundabilityAdditionalRefundabilityInfoOneOf, a7 as RefundableStatus, iv as RefundableStatusWithLiterals, c1 as RefundedAsStoreCredit, bW as RefundedPayment, bX as RefundedPaymentKindOneOf, c4 as RegularPayment, ee as RegularPaymentDetails, ef as RegularPaymentDetailsPaymentMethodDetailsOneOf, c5 as RegularPaymentPaymentMethodDetailsOneOf, bY as RegularPaymentRefund, hh as Reschedule, e7 as RestockInfo, e8 as RestockItem, aa as RestockType, iy as RestockTypeWithLiterals, cP as RestoreInfo, bR as SavedPaymentMethod, a4 as ScheduledAction, is as ScheduledActionWithLiterals, f7 as SearchOrdersRequest, cY as SendBuyerConfirmationEmailRequest, cZ as SendBuyerConfirmationEmailResponse, c_ as SendBuyerPaymentsReceivedEmailRequest, c$ as SendBuyerPaymentsReceivedEmailResponse, d0 as SendBuyerPickupConfirmationEmailRequest, d1 as SendBuyerPickupConfirmationEmailResponse, d4 as SendBuyerShippingConfirmationEmailRequest, d5 as SendBuyerShippingConfirmationEmailResponse, da as SendCancelRefundEmailRequest, db as SendCancelRefundEmailResponse, d8 as SendMerchantOrderReceivedNotificationRequest, d9 as SendMerchantOrderReceivedNotificationResponse, de as SendMerchantOrderReceivedPushRequest, df as SendMerchantOrderReceivedPushResponse, dc as SendRefundEmailRequest, dd as SendRefundEmailResponse, e2 as ServiceProperties, hS as SetOrderNumberCounterOptions, cI as SetOrderNumberCounterRequest, cJ as SetOrderNumberCounterResponse, gi as ShippingAddressEdited, ge as ShippingConfirmationEmailSent, bQ as ShippingInformation, bP as ShippingInformationChange, bf as ShippingPrice, dn as ShippingRefund, bg as ShippingRegion, ak as SortOrder, iI as SortOrderWithLiterals, e$ as Sorting, hA as Source, aq as SourceType, iO as SourceTypeWithLiterals, hu as StandardDetails, b5 as StreetAddress, ht as Subdivision, ap as SubdivisionType, iN as SubdivisionTypeWithLiterals, aO as SubscriptionDescription, y as SubscriptionFrequency, i5 as SubscriptionFrequencyWithLiterals, aM as SubscriptionInfo, aP as SubscriptionSettings, aN as SubscriptionTitle, cs as TagList, cr as Tags, hb as Task, hd as TaskAction, he as TaskActionActionOneOf, hc as TaskKey, bh as TaxSummary, aV as TaxableAddress, aW as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, i7 as TaxableAddressTypeWithLiterals, hD as TotalPrice, bO as TotalPriceChange, gd as TrackingLinkAdded, gb as TrackingNumberAdded, gc as TrackingNumberEdited, ab as TransactionStatus, iz as TransactionStatusWithLiterals, aZ as TranslatableString, bL as TranslatedValue, iW as TriggerRefundApplicationErrors, hW as TriggerRefundOptions, e4 as TriggerRefundRequest, e9 as TriggerRefundResponse, eT as TriggerReindexOrderRequest, eQ as TriggerReindexRequest, eR as TriggerReindexResponse, fK as UnArchiveOrderRequest, fL as UnArchiveOrderResponse, h_ as UpdateActivityIdentifiers, gu as UpdateActivityRequest, gv as UpdateActivityResponse, fX as UpdateBillingContactDetailsRequest, fY as UpdateBillingContactDetailsResponse, fT as UpdateBuyerEmailRequest, fU as UpdateBuyerEmailResponse, fQ as UpdateBuyerInfoRequest, fS as UpdateBuyerInfoResponse, eF as UpdateInternalDocumentsEvent, eG as UpdateInternalDocumentsEventOperationOneOf, gy as UpdateLineItemsDescriptionLinesRequest, gA as UpdateLineItemsDescriptionLinesResponse, hZ as UpdateOrderLineItem, hY as UpdateOrderLineItemIdentifiers, fZ as UpdateOrderLineItemRequest, f_ as UpdateOrderLineItemResponse, f$ as UpdateOrderLineItemsRequest, g1 as UpdateOrderLineItemsResponse, ff as UpdateOrderRequest, fg as UpdateOrderResponse, fV as UpdateOrderShippingAddressRequest, fW as UpdateOrderShippingAddressResponse, iX as UpdateOrderStatusApplicationErrors, gF as UpdateOrderStatusRequest, gG as UpdateOrderStatusResponse, g_ as V1BulkMarkOrdersAsPaidRequest, g$ as V1BulkMarkOrdersAsPaidResponse, h0 as V1CreatePaymentGatewayOrderRequest, h1 as V1CreatePaymentGatewayOrderResponse, fo as V1LineItemDelta, fp as V1LineItemDeltaDeltaOneOf, gX as V1MarkOrderAsPaidRequest, gY as V1MarkOrderAsPaidResponse, cD as V1RestockItem, el as V1ScheduledAction, b9 as V1ShippingInformation, hO as Value, as as ValueType, iQ as ValueTypeWithLiterals, b8 as VatId, H as VatType, ib as VatTypeWithLiterals, eO as VersionedDeleteByIdsOperation, eP as VersionedDocumentId, eN as VersionedDocumentUpdateOperation, aj as VersioningMode, iH as VersioningModeWithLiterals, eB as VoidAuthorizedPaymentsRequest, a0 as WebhookIdentityType, io as WebhookIdentityTypeWithLiterals, W as WeightUnit, ia as WeightUnitWithLiterals, cd as WixReceipt, ep as WixReceiptInfo } from './ecom-v1-order-orders.universal-BlFIYeAo.mjs';
|
|
4
4
|
|
|
5
5
|
declare function preparePaymentCollection$1(httpClient: HttpClient): PreparePaymentCollectionSignature;
|
|
6
6
|
interface PreparePaymentCollectionSignature {
|
package/build/es/index.mjs
CHANGED
|
@@ -1925,6 +1925,21 @@ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
|
|
|
1925
1925
|
WebhookIdentityType2["APP"] = "APP";
|
|
1926
1926
|
return WebhookIdentityType2;
|
|
1927
1927
|
})(WebhookIdentityType || {});
|
|
1928
|
+
var AdditionalFeeSource = /* @__PURE__ */ ((AdditionalFeeSource2) => {
|
|
1929
|
+
AdditionalFeeSource2["UNKNOWN_ADDITIONAL_FEE_SOURCE"] = "UNKNOWN_ADDITIONAL_FEE_SOURCE";
|
|
1930
|
+
AdditionalFeeSource2["SERVICE_PLUGIN"] = "SERVICE_PLUGIN";
|
|
1931
|
+
AdditionalFeeSource2["ITEM"] = "ITEM";
|
|
1932
|
+
AdditionalFeeSource2["MANUAL"] = "MANUAL";
|
|
1933
|
+
AdditionalFeeSource2["SHIPPING"] = "SHIPPING";
|
|
1934
|
+
AdditionalFeeSource2["PLATFORM"] = "PLATFORM";
|
|
1935
|
+
return AdditionalFeeSource2;
|
|
1936
|
+
})(AdditionalFeeSource || {});
|
|
1937
|
+
var ChargeType = /* @__PURE__ */ ((ChargeType2) => {
|
|
1938
|
+
ChargeType2["UNKNOWN_CHARGE_TYPE"] = "UNKNOWN_CHARGE_TYPE";
|
|
1939
|
+
ChargeType2["PASS_ON"] = "PASS_ON";
|
|
1940
|
+
ChargeType2["ABSORBED"] = "ABSORBED";
|
|
1941
|
+
return ChargeType2;
|
|
1942
|
+
})(ChargeType || {});
|
|
1928
1943
|
var PreviewEmailType = /* @__PURE__ */ ((PreviewEmailType2) => {
|
|
1929
1944
|
PreviewEmailType2["ORDER_PLACED"] = "ORDER_PLACED";
|
|
1930
1945
|
PreviewEmailType2["DOWNLOAD_LINKS"] = "DOWNLOAD_LINKS";
|
|
@@ -3779,11 +3794,13 @@ var onOrderPaymentStatusUpdated2 = createEventModule(
|
|
|
3779
3794
|
export {
|
|
3780
3795
|
ActionType,
|
|
3781
3796
|
ActivityType,
|
|
3797
|
+
AdditionalFeeSource,
|
|
3782
3798
|
AdjustmentType,
|
|
3783
3799
|
AttributionSource,
|
|
3784
3800
|
AuthorizationCaptureStatus,
|
|
3785
3801
|
AuthorizationVoidStatus,
|
|
3786
3802
|
ChannelType,
|
|
3803
|
+
ChargeType,
|
|
3787
3804
|
ChargebackStatus,
|
|
3788
3805
|
CustomFieldGroup,
|
|
3789
3806
|
DeltaPaymentOptionType,
|