@wix/auto_sdk_ecom_orders 1.0.188 → 1.0.189
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-DGvc5WHr.d.ts → ecom-v1-order-orders.universal-0aJolfVz.d.ts} +47 -1
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +32 -12
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +28 -10
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +44 -2
- package/build/cjs/meta.js +9 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-DGvc5WHr.d.mts → ecom-v1-order-orders.universal-0aJolfVz.d.mts} +47 -1
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +31 -12
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +27 -10
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +44 -2
- package/build/es/meta.mjs +8 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-CvNhiJde.d.ts → ecom-v1-order-orders.universal-BlJWEB7f.d.ts} +84 -3
- package/build/internal/cjs/index.d.ts +5 -5
- package/build/internal/cjs/index.js +32 -12
- 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 +28 -10
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +44 -2
- package/build/internal/cjs/meta.js +9 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{ecom-v1-order-orders.universal-CvNhiJde.d.mts → ecom-v1-order-orders.universal-BlJWEB7f.d.mts} +84 -3
- package/build/internal/es/index.d.mts +5 -5
- package/build/internal/es/index.mjs +31 -12
- 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 +27 -10
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +44 -2
- package/build/internal/es/meta.mjs +8 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -4366,6 +4366,48 @@ interface RecordManuallyCollectedPaymentRequest {
|
|
|
4366
4366
|
/** Amount to be recorded as approved manual payment for given order */
|
|
4367
4367
|
amount: Price;
|
|
4368
4368
|
}
|
|
4369
|
+
/**
|
|
4370
|
+
* User-defined payment method name.
|
|
4371
|
+
* Allows specifying either a predefined type or a custom name.
|
|
4372
|
+
*/
|
|
4373
|
+
interface UserDefinedPaymentMethodName extends UserDefinedPaymentMethodNameKindOneOf {
|
|
4374
|
+
/** Predefined payment method. */
|
|
4375
|
+
predefined?: PredefinedPaymentMethodWithLiterals;
|
|
4376
|
+
/**
|
|
4377
|
+
* Custom payment method name provided by user.
|
|
4378
|
+
*
|
|
4379
|
+
* For example, `"Wire transfer"`, `"Money order"`, `"Venmo"` or any other custom name.
|
|
4380
|
+
* @minLength 1
|
|
4381
|
+
* @maxLength 100
|
|
4382
|
+
*/
|
|
4383
|
+
custom?: string | null;
|
|
4384
|
+
}
|
|
4385
|
+
/** @oneof */
|
|
4386
|
+
interface UserDefinedPaymentMethodNameKindOneOf {
|
|
4387
|
+
/** Predefined payment method. */
|
|
4388
|
+
predefined?: PredefinedPaymentMethodWithLiterals;
|
|
4389
|
+
/**
|
|
4390
|
+
* Custom payment method name provided by user.
|
|
4391
|
+
*
|
|
4392
|
+
* For example, `"Wire transfer"`, `"Money order"`, `"Venmo"` or any other custom name.
|
|
4393
|
+
* @minLength 1
|
|
4394
|
+
* @maxLength 100
|
|
4395
|
+
*/
|
|
4396
|
+
custom?: string | null;
|
|
4397
|
+
}
|
|
4398
|
+
/** Predefined payment method types for offline/manual payments. */
|
|
4399
|
+
declare enum PredefinedPaymentMethod {
|
|
4400
|
+
/** Unknown payment method type. */
|
|
4401
|
+
UNKNOWN_PREDEFINED_PAYMENT_METHOD = "UNKNOWN_PREDEFINED_PAYMENT_METHOD",
|
|
4402
|
+
/** Cash payment. */
|
|
4403
|
+
CASH = "CASH",
|
|
4404
|
+
/** Bank transfer. */
|
|
4405
|
+
BANK_TRANSFER = "BANK_TRANSFER",
|
|
4406
|
+
/** Payment by check. */
|
|
4407
|
+
CHECK = "CHECK"
|
|
4408
|
+
}
|
|
4409
|
+
/** @enumType */
|
|
4410
|
+
type PredefinedPaymentMethodWithLiterals = PredefinedPaymentMethod | 'UNKNOWN_PREDEFINED_PAYMENT_METHOD' | 'CASH' | 'BANK_TRANSFER' | 'CHECK';
|
|
4369
4411
|
interface RecordManuallyCollectedPaymentResponse {
|
|
4370
4412
|
}
|
|
4371
4413
|
interface MarkOrderAsPaidRequest {
|
|
@@ -7711,6 +7753,10 @@ interface PreparePaymentCollectionOptions {
|
|
|
7711
7753
|
* @fqn com.wix.ecom.orders.payments_collector.v1.PaymentsCollector.GetPaymentCollectabilityStatus
|
|
7712
7754
|
*/
|
|
7713
7755
|
declare function getPaymentCollectabilityStatus(ecomOrderId: string): Promise<NonNullablePaths<GetPaymentCollectabilityStatusResponse, `status` | `amount.amount` | `amount.formattedAmount`, 3>>;
|
|
7756
|
+
interface RecordManuallyCollectedPaymentOptions {
|
|
7757
|
+
}
|
|
7758
|
+
interface PaymentCollectionMarkOrderAsPaidOptions {
|
|
7759
|
+
}
|
|
7714
7760
|
interface PaymentCollectionCreatePaymentGatewayOrderOptions {
|
|
7715
7761
|
/** Information about the user who initiated the payment. */
|
|
7716
7762
|
chargedBy?: ChargedBy;
|
|
@@ -8452,4 +8498,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
8452
8498
|
unassignTags?: Tags;
|
|
8453
8499
|
}
|
|
8454
8500
|
|
|
8455
|
-
export { ChannelType as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, AdjustmentType as E, PaymentStatus as F, type GetPaymentCollectabilityStatusResponse as G, FulfillmentStatus as H, ItemTypePreset as I, JurisdictionType as J, VatType as K, PickupMethod as L, type MaskedOrder as M, OrderStatus as N, type Order as O, type Price as P, DiscountType as Q, DiscountReason as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, LineItemQuantityChangeType as X, ActivityType as Y, OrderActivityTypeEnumActivityType as Z, AttributionSource as _, type PreparePaymentCollectionOptions as a, type TaxableAddress as a$, AdditionalFeeSource as a0, OrderActionType as a1, ChargeType as a2, WebhookIdentityType as a3, VersioningMode as a4, PreviewEmailType as a5, State as a6, SiteCreatedContext as a7, Namespace as a8, DeleteStatus as a9, type OrderLineItem as aA, type ProductName as aB, type CatalogReference as aC, type DescriptionLine as aD, type DescriptionLineValueOneOf as aE, type DescriptionLineDescriptionLineValueOneOf as aF, type DescriptionLineName as aG, type PlainTextValue as aH, type Color as aI, type FocalPoint as aJ, type PhysicalProperties as aK, type Dimensions as aL, type ItemType as aM, type ItemTypeItemTypeDataOneOf as aN, type ItemTaxFullDetails as aO, type LineItemTaxInfo as aP, type LineItemTaxBreakdown as aQ, type DigitalFile as aR, type SubscriptionInfo as aS, type SubscriptionTitle as aT, type SubscriptionDescription as aU, type SubscriptionSettings as aV, type FreeTrialPeriod as aW, type BillingAdjustment as aX, type BillingAdjustmentPriceSummary as aY, type PriceDescription as aZ, type LocationAndQuantity as a_, ScheduledAction as aa, DurationUnit as ab, PaymentCollectabilityStatus as ac, RefundableStatus as ad, NonRefundableReason as ae, ManuallyRefundableReason as af, RestockType as ag, TransactionStatus as ah, AuthorizationCaptureStatus as ai, AuthorizationVoidStatus as aj, Reason as ak, ActionType as al, ChargebackStatus as am, MembershipPaymentStatus as an, RefundStatus as ao, SortOrder as ap, OrderApprovalStrategy as aq, DeltaPaymentOptionType as ar, InventoryAction as as, Placement as at, SubdivisionType as au, SourceType as av, CustomFieldGroup as aw, ValueType as ax, DepositType as ay, InvoiceStatus as az, type PreparePaymentCollectionResponse as b, type AuthorizedPaymentCaptured as b$, type TaxableAddressTaxableAddressDataOneOf as b0, type ExtendedFields as b1, type ModifierGroup as b2, type TranslatableString as b3, type ItemModifier as b4, type BuyerInfo as b5, type BuyerInfoIdOneOf as b6, type CurrencyConversionDetails as b7, type PriceSummary as b8, type AddressWithContact as b9, type Activity as bA, type ActivityContentOneOf as bB, type CustomActivity as bC, type MerchantComment as bD, type OrderRefunded as bE, type OrderCreatedFromExchange as bF, type NewExchangeOrderCreated as bG, type LineItemExchangeData as bH, type DraftOrderChangesApplied as bI, type OrderChange as bJ, type OrderChangeValueOneOf as bK, type LineItemChanges as bL, type LineItemQuantityChange as bM, type LineItemPriceChange as bN, type LineItemProductNameChange as bO, type LineItemDescriptionLineChange as bP, type LineItemModifiersChange as bQ, type ManagedLineItem as bR, type ManagedDiscount as bS, type TranslatedValue as bT, type LineItemAmount as bU, type ManagedAdditionalFee as bV, type TotalPriceChange as bW, type ShippingInformationChange as bX, type ShippingInformation as bY, type SavedPaymentMethod as bZ, type AuthorizedPaymentCreated as b_, type Address as ba, type StreetAddress as bb, type AddressLocation as bc, type FullAddressContactDetails as bd, type VatId as be, type V1ShippingInformation as bf, type DeliveryLogistics as bg, type DeliveryLogisticsAddressOneOf as bh, type PickupDetails as bi, type PickupAddress as bj, type DeliveryTimeSlot as bk, type ShippingPrice as bl, type ShippingRegion as bm, type TaxSummary as bn, type OrderTaxInfo as bo, type OrderTaxBreakdown as bp, type AppliedDiscount as bq, type AppliedDiscountDiscountSourceOneOf as br, type Coupon as bs, type MerchantDiscount as bt, type MerchantDiscountMerchantDiscountReasonOneOf as bu, type DiscountRule as bv, type DiscountRuleName as bw, type LineItemDiscount as bx, type ItemCombination as by, type ItemCombinationLineItem as bz, type PreparePaymentCollectionApplicationErrors as c, type RestoreInfo as c$, type AuthorizedPaymentVoided as c0, type RefundInitiated as c1, type RefundedPayment as c2, type RefundedPaymentKindOneOf as c3, type RegularPaymentRefund as c4, type GiftCardPaymentRefund as c5, type MembershipPaymentRefund as c6, type PaymentRefunded as c7, type PaymentRefundFailed as c8, type RefundedAsStoreCredit as c9, type TagList as cA, type Location as cB, type OrderSettings as cC, type OrderSettingsAllowedActionsOneOf as cD, type OrderSettingsEditableByOneOf as cE, type CustomAllowedActions as cF, type OwnerApps as cG, type FormInfo as cH, type FormIdentifier as cI, type PlatformFeeSummary as cJ, type PlatformFee as cK, type OrderApproved as cL, type OrdersExperiments as cM, type OrderRejectedEventOrderRejected as cN, type OrderItemsRestocked as cO, type V1RestockItem as cP, type OrderImported as cQ, type ImportedOrderDeleted as cR, type ImportOrderRequest as cS, type ImportOrderResponse as cT, type SetOrderNumberCounterRequest as cU, type SetOrderNumberCounterResponse as cV, type BulkDeleteImportedOrdersRequest as cW, type BulkDeleteImportedOrdersResponse as cX, type DomainEvent as cY, type DomainEventBodyOneOf as cZ, type EntityCreatedEvent as c_, type PaymentPending as ca, type PaymentPendingPaymentDetailsOneOf as cb, type RegularPayment as cc, type RegularPaymentPaymentMethodDetailsOneOf as cd, type CreditCardDetails as ce, type PaymentCanceled as cf, type PaymentCanceledPaymentDetailsOneOf as cg, type PaymentDeclined as ch, type PaymentDeclinedPaymentDetailsOneOf as ci, type ReceiptCreated as cj, type ReceiptCreatedReceiptInfoOneOf as ck, type WixReceipt as cl, type ExternalReceipt as cm, type ReceiptSent as cn, type ReceiptSentReceiptInfoOneOf as co, type ChargebackCreated as cp, type ChargebackReversed as cq, type CreatedBy as cr, type CreatedByStringOneOf as cs, type ChannelInfo as ct, type CustomField as cu, type BalanceSummary as cv, type Balance as cw, type AdditionalFee as cx, type FulfillmentStatusesAggregate as cy, type Tags as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type PreviewShippingConfirmationEmailRequest as d$, type EntityUpdatedEvent as d0, type EntityDeletedEvent as d1, type ActionEvent as d2, type MessageEnvelope as d3, type IdentificationData as d4, type IdentificationDataIdOneOf as d5, type AccountInfo as d6, type UpdateInternalDocumentsEvent as d7, type UpdateInternalDocumentsEventOperationOneOf as d8, type InternalDocument as d9, type SendMerchantOrderReceivedNotificationRequest as dA, type SendMerchantOrderReceivedNotificationResponse as dB, type SendCancelRefundEmailRequest as dC, type SendCancelRefundEmailResponse as dD, type SendRefundEmailRequest as dE, type SendRefundEmailResponse as dF, type SendMerchantOrderReceivedPushRequest as dG, type SendMerchantOrderReceivedPushResponse as dH, type PreviewEmailByTypeRequest as dI, type PreviewEmailByTypeResponse as dJ, type PreviewRefundEmailRequest as dK, type RefundDetails as dL, type RefundItem as dM, type LineItemRefund as dN, type AdditionalFeeRefund as dO, type ShippingRefund as dP, type PreviewRefundEmailResponse as dQ, type PreviewCancelEmailRequest as dR, type PreviewCancelEmailResponse as dS, type PreviewCancelRefundEmailRequest as dT, type PreviewCancelRefundEmailResponse as dU, type PreviewBuyerPaymentsReceivedEmailRequest as dV, type PreviewBuyerPaymentsReceivedEmailResponse as dW, type PreviewBuyerConfirmationEmailRequest as dX, type PreviewBuyerConfirmationEmailResponse as dY, type PreviewBuyerPickupConfirmationEmailRequest as dZ, type PreviewBuyerPickupConfirmationEmailResponse as d_, type InternalDocumentUpdateOperation as da, type DeleteByIdsOperation as db, type DeleteByFilterOperation as dc, type InternalDocumentUpdateByFilterOperation as dd, type InternalUpdateExistingOperation as de, type VersionedDocumentUpdateOperation as df, type VersionedDeleteByIdsOperation as dg, type VersionedDocumentId as dh, type TriggerReindexRequest as di, type TriggerReindexResponse as dj, type Empty as dk, type BatchOfTriggerReindexOrderRequest as dl, type TriggerReindexOrderRequest as dm, type SendBuyerConfirmationEmailRequest as dn, type SendBuyerConfirmationEmailResponse as dp, type SendBuyerPaymentsReceivedEmailRequest as dq, type SendBuyerPaymentsReceivedEmailResponse as dr, type SendBuyerPickupConfirmationEmailRequest as ds, type SendBuyerPickupConfirmationEmailResponse as dt, type BulkSendBuyerPickupConfirmationEmailsRequest as du, type BulkSendBuyerPickupConfirmationEmailsResponse as dv, type SendBuyerShippingConfirmationEmailRequest as dw, type SendBuyerShippingConfirmationEmailResponse as dx, type BulkSendBuyerShippingConfirmationEmailsRequest as dy, type BulkSendBuyerShippingConfirmationEmailsResponse as dz, type PaymentCapture as e, type MembershipChargeItem as e$, type PreviewShippingConfirmationEmailResponse as e0, type PreviewResendDownloadLinksEmailRequest as e1, type PreviewResendDownloadLinksEmailResponse as e2, type MetaSiteSpecialEvent as e3, type MetaSiteSpecialEventPayloadOneOf as e4, type Asset as e5, type SiteCreated as e6, type SiteTransferred as e7, type SiteDeleted as e8, type DeleteContext as e9, type AddToAutomationMigrationPopulationRequest as eA, type AddToAutomationMigrationPopulationResponse as eB, type IsInAutomationMigrationPopulationRequest as eC, type IsInAutomationMigrationPopulationResponse as eD, type PreparePaymentCollectionRequest as eE, type RedirectUrls as eF, type DelayedCaptureSettings as eG, type Duration as eH, type GetPaymentCollectabilityStatusRequest as eI, type RecordManuallyCollectedPaymentRequest as eJ, type RecordManuallyCollectedPaymentResponse as eK, type MarkOrderAsPaidRequest as eL, type MarkOrderAsPaidResponse as eM, type BulkMarkOrdersAsPaidRequest as eN, type BulkMarkOrdersAsPaidResponse as eO, type BulkOrderResult as eP, type ItemMetadata as eQ, type ApplicationError as eR, type BulkActionMetadata as eS, type GetRefundabilityStatusRequest as eT, type GetRefundabilityStatusResponse as eU, type Refundability as eV, type RefundabilityAdditionalRefundabilityInfoOneOf as eW, type CreatePaymentGatewayOrderRequest as eX, type ChargedBy as eY, type CreatePaymentGatewayOrderResponse as eZ, type ChargeMembershipsRequest as e_, type SiteUndeleted as ea, type SitePublished as eb, type SiteUnpublished as ec, type SiteMarkedAsTemplate as ed, type SiteMarkedAsWixSite as ee, type ServiceProvisioned as ef, type ServiceRemoved as eg, type SiteRenamed as eh, type SiteHardDeleted as ei, type NamespaceChanged as ej, type StudioAssigned as ek, type StudioUnassigned as el, type SiteUrlChanged as em, type SitePurgedExternally as en, type OdeditorAssigned as eo, type OdeditorUnassigned as ep, type PicassoAssigned as eq, type PicassoUnassigned as er, type WixelAssigned as es, type WixelUnassigned as et, type StudioTwoAssigned as eu, type StudioTwoUnassigned as ev, type UserDomainMediaEnabled as ew, type UserDomainMediaDisabled as ex, type HasCustomEmailConfigurationsRequest as ey, type HasCustomEmailConfigurationsResponse as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type OrderCreateNotifications as f$, type MembershipName as f0, type ServiceProperties as f1, type ChargeMembershipsResponse as f2, type TriggerRefundRequest as f3, type PaymentRefund as f4, type RefundSideEffects as f5, type RestockInfo as f6, type RestockItem as f7, type TriggerRefundResponse as f8, type OrderTransactions as f9, type CalculateRefundItemResponse as fA, type VoidAuthorizedPaymentsRequest as fB, type CaptureAuthorizedPaymentsRequest as fC, type ChargeSavedPaymentMethodRequest as fD, type ChargeSavedPaymentMethodResponse as fE, type DiffmatokyPayload as fF, type ErrorInformation as fG, type GetOrderRequest as fH, type GetOrderResponse as fI, type InternalQueryOrdersRequest as fJ, type PlatformQuery as fK, type PlatformQueryPagingMethodOneOf as fL, type Sorting as fM, type PlatformPaging as fN, type CursorPaging as fO, type InternalQueryOrdersResponse as fP, type PlatformPagingMetadata as fQ, type Cursors as fR, type QueryOrderRequest as fS, type QueryOrderResponse as fT, type SearchOrdersRequest as fU, type CursorSearch as fV, type CursorSearchPagingMethodOneOf as fW, type CursorPagingMetadata as fX, type CreateOrderRequest as fY, type OrderCreationSettings as fZ, type OrderCreationSettingsEditableByOneOf as f_, type Payment as fa, type PaymentPaymentDetailsOneOf as fb, type PaymentReceiptInfoOneOf as fc, type RegularPaymentDetails as fd, type RegularPaymentDetailsPaymentMethodDetailsOneOf as fe, type CreditCardPaymentMethodDetails as ff, type AuthorizationDetails as fg, type AuthorizationCapture as fh, type AuthorizationActionFailureDetails as fi, type AuthorizationVoid as fj, type V1ScheduledAction as fk, type Chargeback as fl, type PaymentMethodName as fm, type GiftCardPaymentDetails as fn, type MembershipPaymentDetails as fo, type WixReceiptInfo as fp, type ExternalReceiptInfo as fq, type Refund as fr, type RefundTransaction as fs, type RefundStatusInfo as ft, type AggregatedRefundSummary as fu, type RefundItemsBreakdown as fv, type LineItemRefundSummary as fw, type CalculateRefundRequest as fx, type CalculateRefundItemRequest as fy, type CalculateRefundResponse as fz, type GetOrderApplicationErrors as g, type TrackingLinkAdded as g$, type CreateOrderResponse as g0, type UpdateOrderRequest as g1, type UpdateOrderResponse as g2, type BulkUpdateOrdersRequest as g3, type CommitDeltasRequest as g4, type DraftOrderDiffs as g5, type DraftOrderDiffsShippingUpdateInfoOneOf as g6, type DraftOrderDiffsBuyerUpdateInfoOneOf as g7, type DraftOrderDiffsBillingUpdateInfoOneOf as g8, type DraftOrderDiffsRecipientUpdateInfoOneOf as g9, type BulkUnArchiveOrdersByFilterRequest as gA, type BulkUnArchiveOrdersByFilterResponse as gB, type UpdateBuyerInfoRequest as gC, type BuyerInfoUpdate as gD, type UpdateBuyerInfoResponse as gE, type UpdateBuyerEmailRequest as gF, type UpdateBuyerEmailResponse as gG, type UpdateOrderShippingAddressRequest as gH, type UpdateOrderShippingAddressResponse as gI, type UpdateBillingContactDetailsRequest as gJ, type UpdateBillingContactDetailsResponse as gK, type UpdateOrderLineItemRequest as gL, type UpdateOrderLineItemResponse as gM, type UpdateOrderLineItemsRequest as gN, type MaskedOrderLineItem as gO, type UpdateOrderLineItemsResponse as gP, type AddInternalActivityRequest as gQ, type InternalActivity as gR, type InternalActivityContentOneOf as gS, type OrderPlaced as gT, type OrderPaid as gU, type OrderFulfilled as gV, type OrderNotFulfilled as gW, type OrderCanceled as gX, type DownloadLinkSent as gY, type TrackingNumberAdded as gZ, type TrackingNumberEdited as g_, type V1LineItemDelta as ga, type V1LineItemDeltaDeltaOneOf as gb, type OrderLineItemChangedDetails as gc, type ItemChangedDetails as gd, type AppliedDiscountDelta as ge, type AppliedDiscountDeltaDeltaOneOf as gf, type AdditionalFeeDelta as gg, type AdditionalFeeDeltaDeltaOneOf as gh, type DraftOrderCommitSettings as gi, type InventoryUpdateDetails as gj, type CommitDeltasResponse as gk, type OrderDeltasCommitted as gl, type CommittedDiffs as gm, type CommittedDiffsShippingUpdateInfoOneOf as gn, type LineItemDelta as go, type LineItemDeltaDeltaOneOf as gp, type ArchiveOrderRequest as gq, type ArchiveOrderResponse as gr, type BulkArchiveOrdersRequest as gs, type BulkArchiveOrdersResponse as gt, type BulkArchiveOrdersByFilterRequest as gu, type BulkArchiveOrdersByFilterResponse as gv, type UnArchiveOrderRequest as gw, type UnArchiveOrderResponse as gx, type BulkUnArchiveOrdersRequest as gy, type BulkUnArchiveOrdersResponse as gz, type OrderSearch as h, type TaskAction as h$, type ShippingConfirmationEmailSent as h0, type InvoiceAdded as h1, type InvoiceSent as h2, type FulfillerEmailSent as h3, type ShippingAddressEdited as h4, type EmailEdited as h5, type PickupReadyEmailSent as h6, type OrderPartiallyPaid as h7, type OrderPending as h8, type OrderRejected as h9, type MarkAsUnfulfilledRequest as hA, type MarkAsUnfulfilledResponse as hB, type BulkMarkAsUnfulfilledRequest as hC, type BulkMarkAsUnfulfilledResponse as hD, type BulkMarkAsUnfulfilledByFilterRequest as hE, type BulkMarkAsUnfulfilledByFilterResponse as hF, type BulkSetBusinessLocationRequest as hG, type BulkSetBusinessLocationResponse as hH, type BulkSetBusinessLocationResult as hI, type V1MarkOrderAsPaidRequest as hJ, type V1MarkOrderAsPaidResponse as hK, type PaymentStatusUpdated as hL, type V1BulkMarkOrdersAsPaidRequest as hM, type V1BulkMarkOrdersAsPaidResponse as hN, type V1CreatePaymentGatewayOrderRequest as hO, type V1CreatePaymentGatewayOrderResponse as hP, type GetShipmentsRequest as hQ, type GetShipmentsResponse as hR, type AggregateOrdersRequest as hS, type AggregateOrdersResponse as hT, type DecrementItemsQuantityRequest as hU, type DecrementData as hV, type DecrementItemsQuantityResponse as hW, type BulkUpdateOrderTagsRequest as hX, type BulkUpdateOrderTagsResult as hY, type Task as hZ, type TaskKey as h_, type AddInternalActivityResponse as ha, type AddActivityRequest as hb, type PublicActivity as hc, type PublicActivityContentOneOf as hd, type AddActivityResponse as he, type AddActivitiesRequest as hf, type UpdateActivityRequest as hg, type UpdateActivityResponse as hh, type DeleteActivityRequest as hi, type DeleteActivityResponse as hj, type UpdateLineItemsDescriptionLinesRequest as hk, type LineItemUpdate as hl, type UpdateLineItemsDescriptionLinesResponse as hm, type MarkOrderAsSeenByHumanRequest as hn, type MarkOrderAsSeenByHumanResponse as ho, type CancelOrderRequest as hp, type OrderCanceledEventOrderCanceled as hq, type UpdateOrderStatusRequest as hr, type UpdateOrderStatusResponse as hs, type MarkAsFulfilledRequest as ht, type MarkAsFulfilledResponse as hu, type FulfillmentStatusUpdated as hv, type BulkMarkAsFulfilledRequest as hw, type BulkMarkAsFulfilledResponse as hx, type BulkMarkAsFulfilledByFilterRequest as hy, type BulkMarkAsFulfilledByFilterResponse as hz, type CreateOrderOptions as i, type FulfillmentStatusWithLiterals as i$, type TaskActionActionOneOf as i0, type Complete as i1, type Cancel as i2, type Reschedule as i3, type InvoiceSentEvent as i4, type IdAndVersion as i5, type InvoiceFields as i6, type Customer as i7, type Email as i8, type QuotesAddress as i9, type InvoiceDynamicPriceTotals as iA, type CustomFieldValue as iB, type Value as iC, type Deposit as iD, type BaseEventMetadata as iE, type EventMetadata as iF, type AccountInfoMetadata as iG, type SetOrderNumberCounterOptions as iH, type BulkDeleteImportedOrdersOptions as iI, type PaymentCollectionCreatePaymentGatewayOrderOptions as iJ, type ChargeMembershipsOptions as iK, type TriggerRefundOptions as iL, type OrderSearchSpec as iM, type UpdateOrderLineItemIdentifiers as iN, type UpdateOrderLineItem as iO, type UpdateActivityIdentifiers as iP, type DeleteActivityIdentifiers as iQ, type AggregateOrdersOptions as iR, type DescriptionLineTypeWithLiterals as iS, type DimensionsUnitWithLiterals as iT, type ItemTypePresetWithLiterals as iU, type PaymentOptionTypeWithLiterals as iV, type JurisdictionTypeWithLiterals as iW, type SubscriptionFrequencyWithLiterals as iX, type AdjustmentTypeWithLiterals as iY, type TaxableAddressTypeWithLiterals as iZ, type PaymentStatusWithLiterals as i_, type AddressDescription as ia, type Phone as ib, type Company as ic, type CommonAddress as id, type CommonAddressStreetOneOf as ie, type Subdivision as ig, type StandardDetails as ih, type InvoiceDates as ii, type LineItems as ij, type LineItem as ik, type BigDecimalWrapper as il, type LineItemTax as im, type Source as io, type LineItemMetaData as ip, type Locale as iq, type TotalPrice as ir, type ItemizedFee as is, type Discount as it, type DiscountOneDiscountTypeOneOf as iu, type CalculatedTaxes as iv, type CalculatedTax as iw, type Payments as ix, type InvoicesPayment as iy, type MetaData as iz, type CreateOrderApplicationErrors as j, createOrder as j$, type WeightUnitWithLiterals as j0, type VatTypeWithLiterals as j1, type PickupMethodWithLiterals as j2, type OrderStatusWithLiterals as j3, type DiscountTypeWithLiterals as j4, type DiscountReasonWithLiterals as j5, type LineItemQuantityChangeTypeWithLiterals as j6, type ActivityTypeWithLiterals as j7, type OrderActivityTypeEnumActivityTypeWithLiterals as j8, type AttributionSourceWithLiterals as j9, type SortOrderWithLiterals as jA, type OrderApprovalStrategyWithLiterals as jB, type DeltaPaymentOptionTypeWithLiterals as jC, type InventoryActionWithLiterals as jD, type PlacementWithLiterals as jE, type SubdivisionTypeWithLiterals as jF, type SourceTypeWithLiterals as jG, type CustomFieldGroupWithLiterals as jH, type ValueTypeWithLiterals as jI, type DepositTypeWithLiterals as jJ, type InvoiceStatusWithLiterals as jK, type RecordManuallyCollectedPaymentApplicationErrors as jL, type PaymentCollectionMarkOrderAsPaidApplicationErrors as jM, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as jN, type TriggerRefundApplicationErrors as jO, type UpdateOrderStatusApplicationErrors as jP, type CommonSearchWithEntityContext as jQ, onOrderApproved as jR, onOrderUpdated as jS, onOrderCanceled as jT, onOrderCreated as jU, onOrderPaymentStatusUpdated as jV, preparePaymentCollection as jW, getPaymentCollectabilityStatus as jX, voidAuthorizedPayments as jY, captureAuthorizedPayments as jZ, getOrder as j_, type ChannelTypeWithLiterals as ja, type AdditionalFeeSourceWithLiterals as jb, type OrderActionTypeWithLiterals as jc, type ChargeTypeWithLiterals as jd, type WebhookIdentityTypeWithLiterals as je, type VersioningModeWithLiterals as jf, type PreviewEmailTypeWithLiterals as jg, type StateWithLiterals as jh, type SiteCreatedContextWithLiterals as ji, type NamespaceWithLiterals as jj, type DeleteStatusWithLiterals as jk, type ScheduledActionWithLiterals as jl, type DurationUnitWithLiterals as jm, type PaymentCollectabilityStatusWithLiterals as jn, type RefundableStatusWithLiterals as jo, type NonRefundableReasonWithLiterals as jp, type ManuallyRefundableReasonWithLiterals as jq, type RestockTypeWithLiterals as jr, type TransactionStatusWithLiterals as js, type AuthorizationCaptureStatusWithLiterals as jt, type AuthorizationVoidStatusWithLiterals as ju, type ReasonWithLiterals as jv, type ActionTypeWithLiterals as jw, type ChargebackStatusWithLiterals as jx, type MembershipPaymentStatusWithLiterals as jy, type RefundStatusWithLiterals as jz, type UpdateOrderApplicationErrors as k, updateOrder as k0, bulkUpdateOrders as k1, addActivities as k2, cancelOrder as k3, bulkUpdateOrderTags as k4, 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, DimensionsUnit as x, PaymentOptionType as y, SubscriptionFrequency as z };
|
|
8501
|
+
export { ChannelType as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, AdjustmentType as E, PaymentStatus as F, type GetPaymentCollectabilityStatusResponse as G, FulfillmentStatus as H, ItemTypePreset as I, JurisdictionType as J, VatType as K, PickupMethod as L, type MaskedOrder as M, OrderStatus as N, type Order as O, type Price as P, DiscountType as Q, DiscountReason as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, LineItemQuantityChangeType as X, ActivityType as Y, OrderActivityTypeEnumActivityType as Z, AttributionSource as _, type PreparePaymentCollectionOptions as a, type LocationAndQuantity as a$, AdditionalFeeSource as a0, OrderActionType as a1, ChargeType as a2, WebhookIdentityType as a3, VersioningMode as a4, PreviewEmailType as a5, State as a6, SiteCreatedContext as a7, Namespace as a8, DeleteStatus as a9, InvoiceStatus as aA, type OrderLineItem as aB, type ProductName as aC, type CatalogReference as aD, type DescriptionLine as aE, type DescriptionLineValueOneOf as aF, type DescriptionLineDescriptionLineValueOneOf as aG, type DescriptionLineName as aH, type PlainTextValue as aI, type Color as aJ, type FocalPoint as aK, type PhysicalProperties as aL, type Dimensions as aM, type ItemType as aN, type ItemTypeItemTypeDataOneOf as aO, type ItemTaxFullDetails as aP, type LineItemTaxInfo as aQ, type LineItemTaxBreakdown as aR, type DigitalFile as aS, type SubscriptionInfo as aT, type SubscriptionTitle as aU, type SubscriptionDescription as aV, type SubscriptionSettings as aW, type FreeTrialPeriod as aX, type BillingAdjustment as aY, type BillingAdjustmentPriceSummary as aZ, type PriceDescription as a_, ScheduledAction as aa, DurationUnit as ab, PaymentCollectabilityStatus as ac, PredefinedPaymentMethod as ad, RefundableStatus as ae, NonRefundableReason as af, ManuallyRefundableReason as ag, RestockType as ah, TransactionStatus as ai, AuthorizationCaptureStatus as aj, AuthorizationVoidStatus as ak, Reason as al, ActionType as am, ChargebackStatus as an, MembershipPaymentStatus as ao, RefundStatus as ap, SortOrder as aq, OrderApprovalStrategy as ar, DeltaPaymentOptionType as as, InventoryAction as at, Placement as au, SubdivisionType as av, SourceType as aw, CustomFieldGroup as ax, ValueType as ay, DepositType as az, type PreparePaymentCollectionResponse as b, type AuthorizedPaymentCreated as b$, type TaxableAddress as b0, type TaxableAddressTaxableAddressDataOneOf as b1, type ExtendedFields as b2, type ModifierGroup as b3, type TranslatableString as b4, type ItemModifier as b5, type BuyerInfo as b6, type BuyerInfoIdOneOf as b7, type CurrencyConversionDetails as b8, type PriceSummary as b9, type ItemCombinationLineItem as bA, type Activity as bB, type ActivityContentOneOf as bC, type CustomActivity as bD, type MerchantComment as bE, type OrderRefunded as bF, type OrderCreatedFromExchange as bG, type NewExchangeOrderCreated as bH, type LineItemExchangeData as bI, type DraftOrderChangesApplied as bJ, type OrderChange as bK, type OrderChangeValueOneOf as bL, type LineItemChanges as bM, type LineItemQuantityChange as bN, type LineItemPriceChange as bO, type LineItemProductNameChange as bP, type LineItemDescriptionLineChange as bQ, type LineItemModifiersChange as bR, type ManagedLineItem as bS, type ManagedDiscount as bT, type TranslatedValue as bU, type LineItemAmount as bV, type ManagedAdditionalFee as bW, type TotalPriceChange as bX, type ShippingInformationChange as bY, type ShippingInformation as bZ, type SavedPaymentMethod as b_, type AddressWithContact as ba, type Address as bb, type StreetAddress as bc, type AddressLocation as bd, type FullAddressContactDetails as be, type VatId as bf, type V1ShippingInformation as bg, type DeliveryLogistics as bh, type DeliveryLogisticsAddressOneOf as bi, type PickupDetails as bj, type PickupAddress as bk, type DeliveryTimeSlot as bl, type ShippingPrice as bm, type ShippingRegion as bn, type TaxSummary as bo, type OrderTaxInfo as bp, type OrderTaxBreakdown as bq, type AppliedDiscount as br, type AppliedDiscountDiscountSourceOneOf as bs, type Coupon as bt, type MerchantDiscount as bu, type MerchantDiscountMerchantDiscountReasonOneOf as bv, type DiscountRule as bw, type DiscountRuleName as bx, type LineItemDiscount as by, type ItemCombination as bz, type PreparePaymentCollectionApplicationErrors as c, type EntityCreatedEvent as c$, type AuthorizedPaymentCaptured as c0, type AuthorizedPaymentVoided as c1, type RefundInitiated as c2, type RefundedPayment as c3, type RefundedPaymentKindOneOf as c4, type RegularPaymentRefund as c5, type GiftCardPaymentRefund as c6, type MembershipPaymentRefund as c7, type PaymentRefunded as c8, type PaymentRefundFailed as c9, type Tags as cA, type TagList as cB, type Location as cC, type OrderSettings as cD, type OrderSettingsAllowedActionsOneOf as cE, type OrderSettingsEditableByOneOf as cF, type CustomAllowedActions as cG, type OwnerApps as cH, type FormInfo as cI, type FormIdentifier as cJ, type PlatformFeeSummary as cK, type PlatformFee as cL, type OrderApproved as cM, type OrdersExperiments as cN, type OrderRejectedEventOrderRejected as cO, type OrderItemsRestocked as cP, type V1RestockItem as cQ, type OrderImported as cR, type ImportedOrderDeleted as cS, type ImportOrderRequest as cT, type ImportOrderResponse as cU, type SetOrderNumberCounterRequest as cV, type SetOrderNumberCounterResponse as cW, type BulkDeleteImportedOrdersRequest as cX, type BulkDeleteImportedOrdersResponse as cY, type DomainEvent as cZ, type DomainEventBodyOneOf as c_, type RefundedAsStoreCredit as ca, type PaymentPending as cb, type PaymentPendingPaymentDetailsOneOf as cc, type RegularPayment as cd, type RegularPaymentPaymentMethodDetailsOneOf as ce, type CreditCardDetails as cf, type PaymentCanceled as cg, type PaymentCanceledPaymentDetailsOneOf as ch, type PaymentDeclined as ci, type PaymentDeclinedPaymentDetailsOneOf as cj, type ReceiptCreated as ck, type ReceiptCreatedReceiptInfoOneOf as cl, type WixReceipt as cm, type ExternalReceipt as cn, type ReceiptSent as co, type ReceiptSentReceiptInfoOneOf as cp, type ChargebackCreated as cq, type ChargebackReversed as cr, type CreatedBy as cs, type CreatedByStringOneOf as ct, type ChannelInfo as cu, type CustomField as cv, type BalanceSummary as cw, type Balance as cx, type AdditionalFee as cy, type FulfillmentStatusesAggregate as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type PreviewBuyerPickupConfirmationEmailResponse as d$, type RestoreInfo as d0, type EntityUpdatedEvent as d1, type EntityDeletedEvent as d2, type ActionEvent as d3, type MessageEnvelope as d4, type IdentificationData as d5, type IdentificationDataIdOneOf as d6, type AccountInfo as d7, type UpdateInternalDocumentsEvent as d8, type UpdateInternalDocumentsEventOperationOneOf as d9, type BulkSendBuyerShippingConfirmationEmailsResponse as dA, type SendMerchantOrderReceivedNotificationRequest as dB, type SendMerchantOrderReceivedNotificationResponse as dC, type SendCancelRefundEmailRequest as dD, type SendCancelRefundEmailResponse as dE, type SendRefundEmailRequest as dF, type SendRefundEmailResponse as dG, type SendMerchantOrderReceivedPushRequest as dH, type SendMerchantOrderReceivedPushResponse as dI, type PreviewEmailByTypeRequest as dJ, type PreviewEmailByTypeResponse as dK, type PreviewRefundEmailRequest as dL, type RefundDetails as dM, type RefundItem as dN, type LineItemRefund as dO, type AdditionalFeeRefund as dP, type ShippingRefund as dQ, type PreviewRefundEmailResponse as dR, type PreviewCancelEmailRequest as dS, type PreviewCancelEmailResponse as dT, type PreviewCancelRefundEmailRequest as dU, type PreviewCancelRefundEmailResponse as dV, type PreviewBuyerPaymentsReceivedEmailRequest as dW, type PreviewBuyerPaymentsReceivedEmailResponse as dX, type PreviewBuyerConfirmationEmailRequest as dY, type PreviewBuyerConfirmationEmailResponse as dZ, type PreviewBuyerPickupConfirmationEmailRequest as d_, type InternalDocument as da, type InternalDocumentUpdateOperation as db, type DeleteByIdsOperation as dc, type DeleteByFilterOperation as dd, type InternalDocumentUpdateByFilterOperation as de, type InternalUpdateExistingOperation as df, type VersionedDocumentUpdateOperation as dg, type VersionedDeleteByIdsOperation as dh, type VersionedDocumentId as di, type TriggerReindexRequest as dj, type TriggerReindexResponse as dk, type Empty as dl, type BatchOfTriggerReindexOrderRequest as dm, type TriggerReindexOrderRequest as dn, type SendBuyerConfirmationEmailRequest as dp, type SendBuyerConfirmationEmailResponse as dq, type SendBuyerPaymentsReceivedEmailRequest as dr, type SendBuyerPaymentsReceivedEmailResponse as ds, type SendBuyerPickupConfirmationEmailRequest as dt, type SendBuyerPickupConfirmationEmailResponse as du, type BulkSendBuyerPickupConfirmationEmailsRequest as dv, type BulkSendBuyerPickupConfirmationEmailsResponse as dw, type SendBuyerShippingConfirmationEmailRequest as dx, type SendBuyerShippingConfirmationEmailResponse as dy, type BulkSendBuyerShippingConfirmationEmailsRequest as dz, type PaymentCapture as e, type ChargedBy as e$, type PreviewShippingConfirmationEmailRequest as e0, type PreviewShippingConfirmationEmailResponse as e1, type PreviewResendDownloadLinksEmailRequest as e2, type PreviewResendDownloadLinksEmailResponse as e3, type MetaSiteSpecialEvent as e4, type MetaSiteSpecialEventPayloadOneOf as e5, type Asset as e6, type SiteCreated as e7, type SiteTransferred as e8, type SiteDeleted as e9, type HasCustomEmailConfigurationsResponse as eA, type AddToAutomationMigrationPopulationRequest as eB, type AddToAutomationMigrationPopulationResponse as eC, type IsInAutomationMigrationPopulationRequest as eD, type IsInAutomationMigrationPopulationResponse as eE, type PreparePaymentCollectionRequest as eF, type RedirectUrls as eG, type DelayedCaptureSettings as eH, type Duration as eI, type GetPaymentCollectabilityStatusRequest as eJ, type RecordManuallyCollectedPaymentRequest as eK, type UserDefinedPaymentMethodName as eL, type UserDefinedPaymentMethodNameKindOneOf as eM, type RecordManuallyCollectedPaymentResponse as eN, type MarkOrderAsPaidRequest as eO, type MarkOrderAsPaidResponse as eP, type BulkMarkOrdersAsPaidRequest as eQ, type BulkMarkOrdersAsPaidResponse as eR, type BulkOrderResult as eS, type ItemMetadata as eT, type ApplicationError as eU, type BulkActionMetadata as eV, type GetRefundabilityStatusRequest as eW, type GetRefundabilityStatusResponse as eX, type Refundability as eY, type RefundabilityAdditionalRefundabilityInfoOneOf as eZ, type CreatePaymentGatewayOrderRequest as e_, type DeleteContext as ea, type SiteUndeleted as eb, type SitePublished as ec, type SiteUnpublished as ed, type SiteMarkedAsTemplate as ee, type SiteMarkedAsWixSite as ef, type ServiceProvisioned as eg, type ServiceRemoved as eh, type SiteRenamed as ei, type SiteHardDeleted as ej, type NamespaceChanged as ek, type StudioAssigned as el, type StudioUnassigned as em, type SiteUrlChanged as en, type SitePurgedExternally as eo, type OdeditorAssigned as ep, type OdeditorUnassigned as eq, type PicassoAssigned as er, type PicassoUnassigned as es, type WixelAssigned as et, type WixelUnassigned as eu, type StudioTwoAssigned as ev, type StudioTwoUnassigned as ew, type UserDomainMediaEnabled as ex, type UserDomainMediaDisabled as ey, type HasCustomEmailConfigurationsRequest as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type CreateOrderRequest as f$, type CreatePaymentGatewayOrderResponse as f0, type ChargeMembershipsRequest as f1, type MembershipChargeItem as f2, type MembershipName as f3, type ServiceProperties as f4, type ChargeMembershipsResponse as f5, type TriggerRefundRequest as f6, type PaymentRefund as f7, type RefundSideEffects as f8, type RestockInfo as f9, type CalculateRefundRequest as fA, type CalculateRefundItemRequest as fB, type CalculateRefundResponse as fC, type CalculateRefundItemResponse as fD, type VoidAuthorizedPaymentsRequest as fE, type CaptureAuthorizedPaymentsRequest as fF, type ChargeSavedPaymentMethodRequest as fG, type ChargeSavedPaymentMethodResponse as fH, type DiffmatokyPayload as fI, type ErrorInformation as fJ, type GetOrderRequest as fK, type GetOrderResponse as fL, type InternalQueryOrdersRequest as fM, type PlatformQuery as fN, type PlatformQueryPagingMethodOneOf as fO, type Sorting as fP, type PlatformPaging as fQ, type CursorPaging as fR, type InternalQueryOrdersResponse as fS, type PlatformPagingMetadata as fT, type Cursors as fU, type QueryOrderRequest as fV, type QueryOrderResponse as fW, type SearchOrdersRequest as fX, type CursorSearch as fY, type CursorSearchPagingMethodOneOf as fZ, type CursorPagingMetadata as f_, type RestockItem as fa, type TriggerRefundResponse as fb, type OrderTransactions as fc, type Payment as fd, type PaymentPaymentDetailsOneOf as fe, type PaymentReceiptInfoOneOf as ff, type RegularPaymentDetails as fg, type RegularPaymentDetailsPaymentMethodDetailsOneOf as fh, type CreditCardPaymentMethodDetails as fi, type AuthorizationDetails as fj, type AuthorizationCapture as fk, type AuthorizationActionFailureDetails as fl, type AuthorizationVoid as fm, type V1ScheduledAction as fn, type Chargeback as fo, type PaymentMethodName as fp, type GiftCardPaymentDetails as fq, type MembershipPaymentDetails as fr, type WixReceiptInfo as fs, type ExternalReceiptInfo as ft, type Refund as fu, type RefundTransaction as fv, type RefundStatusInfo as fw, type AggregatedRefundSummary as fx, type RefundItemsBreakdown as fy, type LineItemRefundSummary as fz, type GetOrderApplicationErrors as g, type DownloadLinkSent as g$, type OrderCreationSettings as g0, type OrderCreationSettingsEditableByOneOf as g1, type OrderCreateNotifications as g2, type CreateOrderResponse as g3, type UpdateOrderRequest as g4, type UpdateOrderResponse as g5, type BulkUpdateOrdersRequest as g6, type CommitDeltasRequest as g7, type DraftOrderDiffs as g8, type DraftOrderDiffsShippingUpdateInfoOneOf as g9, type UnArchiveOrderResponse as gA, type BulkUnArchiveOrdersRequest as gB, type BulkUnArchiveOrdersResponse as gC, type BulkUnArchiveOrdersByFilterRequest as gD, type BulkUnArchiveOrdersByFilterResponse as gE, type UpdateBuyerInfoRequest as gF, type BuyerInfoUpdate as gG, type UpdateBuyerInfoResponse as gH, type UpdateBuyerEmailRequest as gI, type UpdateBuyerEmailResponse as gJ, type UpdateOrderShippingAddressRequest as gK, type UpdateOrderShippingAddressResponse as gL, type UpdateBillingContactDetailsRequest as gM, type UpdateBillingContactDetailsResponse as gN, type UpdateOrderLineItemRequest as gO, type UpdateOrderLineItemResponse as gP, type UpdateOrderLineItemsRequest as gQ, type MaskedOrderLineItem as gR, type UpdateOrderLineItemsResponse as gS, type AddInternalActivityRequest as gT, type InternalActivity as gU, type InternalActivityContentOneOf as gV, type OrderPlaced as gW, type OrderPaid as gX, type OrderFulfilled as gY, type OrderNotFulfilled as gZ, type OrderCanceled as g_, type DraftOrderDiffsBuyerUpdateInfoOneOf as ga, type DraftOrderDiffsBillingUpdateInfoOneOf as gb, type DraftOrderDiffsRecipientUpdateInfoOneOf as gc, type V1LineItemDelta as gd, type V1LineItemDeltaDeltaOneOf as ge, type OrderLineItemChangedDetails as gf, type ItemChangedDetails as gg, type AppliedDiscountDelta as gh, type AppliedDiscountDeltaDeltaOneOf as gi, type AdditionalFeeDelta as gj, type AdditionalFeeDeltaDeltaOneOf as gk, type DraftOrderCommitSettings as gl, type InventoryUpdateDetails as gm, type CommitDeltasResponse as gn, type OrderDeltasCommitted as go, type CommittedDiffs as gp, type CommittedDiffsShippingUpdateInfoOneOf as gq, type LineItemDelta as gr, type LineItemDeltaDeltaOneOf as gs, type ArchiveOrderRequest as gt, type ArchiveOrderResponse as gu, type BulkArchiveOrdersRequest as gv, type BulkArchiveOrdersResponse as gw, type BulkArchiveOrdersByFilterRequest as gx, type BulkArchiveOrdersByFilterResponse as gy, type UnArchiveOrderRequest as gz, type OrderSearch as h, type BulkUpdateOrderTagsResult as h$, type TrackingNumberAdded as h0, type TrackingNumberEdited as h1, type TrackingLinkAdded as h2, type ShippingConfirmationEmailSent as h3, type InvoiceAdded as h4, type InvoiceSent as h5, type FulfillerEmailSent as h6, type ShippingAddressEdited as h7, type EmailEdited as h8, type PickupReadyEmailSent as h9, type BulkMarkAsFulfilledResponse as hA, type BulkMarkAsFulfilledByFilterRequest as hB, type BulkMarkAsFulfilledByFilterResponse as hC, type MarkAsUnfulfilledRequest as hD, type MarkAsUnfulfilledResponse as hE, type BulkMarkAsUnfulfilledRequest as hF, type BulkMarkAsUnfulfilledResponse as hG, type BulkMarkAsUnfulfilledByFilterRequest as hH, type BulkMarkAsUnfulfilledByFilterResponse as hI, type BulkSetBusinessLocationRequest as hJ, type BulkSetBusinessLocationResponse as hK, type BulkSetBusinessLocationResult as hL, type V1MarkOrderAsPaidRequest as hM, type V1MarkOrderAsPaidResponse as hN, type PaymentStatusUpdated as hO, type V1BulkMarkOrdersAsPaidRequest as hP, type V1BulkMarkOrdersAsPaidResponse as hQ, type V1CreatePaymentGatewayOrderRequest as hR, type V1CreatePaymentGatewayOrderResponse as hS, type GetShipmentsRequest as hT, type GetShipmentsResponse as hU, type AggregateOrdersRequest as hV, type AggregateOrdersResponse as hW, type DecrementItemsQuantityRequest as hX, type DecrementData as hY, type DecrementItemsQuantityResponse as hZ, type BulkUpdateOrderTagsRequest as h_, type OrderPartiallyPaid as ha, type OrderPending as hb, type OrderRejected as hc, type AddInternalActivityResponse as hd, type AddActivityRequest as he, type PublicActivity as hf, type PublicActivityContentOneOf as hg, type AddActivityResponse as hh, type AddActivitiesRequest as hi, type UpdateActivityRequest as hj, type UpdateActivityResponse as hk, type DeleteActivityRequest as hl, type DeleteActivityResponse as hm, type UpdateLineItemsDescriptionLinesRequest as hn, type LineItemUpdate as ho, type UpdateLineItemsDescriptionLinesResponse as hp, type MarkOrderAsSeenByHumanRequest as hq, type MarkOrderAsSeenByHumanResponse as hr, type CancelOrderRequest as hs, type OrderCanceledEventOrderCanceled as ht, type UpdateOrderStatusRequest as hu, type UpdateOrderStatusResponse as hv, type MarkAsFulfilledRequest as hw, type MarkAsFulfilledResponse as hx, type FulfillmentStatusUpdated as hy, type BulkMarkAsFulfilledRequest as hz, type CreateOrderOptions as i, type JurisdictionTypeWithLiterals as i$, type Task as i0, type TaskKey as i1, type TaskAction as i2, type TaskActionActionOneOf as i3, type Complete as i4, type Cancel as i5, type Reschedule as i6, type InvoiceSentEvent as i7, type IdAndVersion as i8, type InvoiceFields as i9, type Payments as iA, type InvoicesPayment as iB, type MetaData as iC, type InvoiceDynamicPriceTotals as iD, type CustomFieldValue as iE, type Value as iF, type Deposit as iG, type BaseEventMetadata as iH, type EventMetadata as iI, type AccountInfoMetadata as iJ, type SetOrderNumberCounterOptions as iK, type BulkDeleteImportedOrdersOptions as iL, type RecordManuallyCollectedPaymentOptions as iM, type PaymentCollectionMarkOrderAsPaidOptions as iN, type PaymentCollectionCreatePaymentGatewayOrderOptions as iO, type ChargeMembershipsOptions as iP, type TriggerRefundOptions as iQ, type OrderSearchSpec as iR, type UpdateOrderLineItemIdentifiers as iS, type UpdateOrderLineItem as iT, type UpdateActivityIdentifiers as iU, type DeleteActivityIdentifiers as iV, type AggregateOrdersOptions as iW, type DescriptionLineTypeWithLiterals as iX, type DimensionsUnitWithLiterals as iY, type ItemTypePresetWithLiterals as iZ, type PaymentOptionTypeWithLiterals as i_, type Customer as ia, type Email as ib, type QuotesAddress as ic, type AddressDescription as id, type Phone as ie, type Company as ig, type CommonAddress as ih, type CommonAddressStreetOneOf as ii, type Subdivision as ij, type StandardDetails as ik, type InvoiceDates as il, type LineItems as im, type LineItem as io, type BigDecimalWrapper as ip, type LineItemTax as iq, type Source as ir, type LineItemMetaData as is, type Locale as it, type TotalPrice as iu, type ItemizedFee as iv, type Discount as iw, type DiscountOneDiscountTypeOneOf as ix, type CalculatedTaxes as iy, type CalculatedTax as iz, type CreateOrderApplicationErrors as j, onOrderPaymentStatusUpdated as j$, type SubscriptionFrequencyWithLiterals as j0, type AdjustmentTypeWithLiterals as j1, type TaxableAddressTypeWithLiterals as j2, type PaymentStatusWithLiterals as j3, type FulfillmentStatusWithLiterals as j4, type WeightUnitWithLiterals as j5, type VatTypeWithLiterals as j6, type PickupMethodWithLiterals as j7, type OrderStatusWithLiterals as j8, type DiscountTypeWithLiterals as j9, type AuthorizationVoidStatusWithLiterals as jA, type ReasonWithLiterals as jB, type ActionTypeWithLiterals as jC, type ChargebackStatusWithLiterals as jD, type MembershipPaymentStatusWithLiterals as jE, type RefundStatusWithLiterals as jF, type SortOrderWithLiterals as jG, type OrderApprovalStrategyWithLiterals as jH, type DeltaPaymentOptionTypeWithLiterals as jI, type InventoryActionWithLiterals as jJ, type PlacementWithLiterals as jK, type SubdivisionTypeWithLiterals as jL, type SourceTypeWithLiterals as jM, type CustomFieldGroupWithLiterals as jN, type ValueTypeWithLiterals as jO, type DepositTypeWithLiterals as jP, type InvoiceStatusWithLiterals as jQ, type RecordManuallyCollectedPaymentApplicationErrors as jR, type PaymentCollectionMarkOrderAsPaidApplicationErrors as jS, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as jT, type TriggerRefundApplicationErrors as jU, type UpdateOrderStatusApplicationErrors as jV, type CommonSearchWithEntityContext as jW, onOrderApproved as jX, onOrderUpdated as jY, onOrderCanceled as jZ, onOrderCreated as j_, type DiscountReasonWithLiterals as ja, type LineItemQuantityChangeTypeWithLiterals as jb, type ActivityTypeWithLiterals as jc, type OrderActivityTypeEnumActivityTypeWithLiterals as jd, type AttributionSourceWithLiterals as je, type ChannelTypeWithLiterals as jf, type AdditionalFeeSourceWithLiterals as jg, type OrderActionTypeWithLiterals as jh, type ChargeTypeWithLiterals as ji, type WebhookIdentityTypeWithLiterals as jj, type VersioningModeWithLiterals as jk, type PreviewEmailTypeWithLiterals as jl, type StateWithLiterals as jm, type SiteCreatedContextWithLiterals as jn, type NamespaceWithLiterals as jo, type DeleteStatusWithLiterals as jp, type ScheduledActionWithLiterals as jq, type DurationUnitWithLiterals as jr, type PaymentCollectabilityStatusWithLiterals as js, type PredefinedPaymentMethodWithLiterals as jt, type RefundableStatusWithLiterals as ju, type NonRefundableReasonWithLiterals as jv, type ManuallyRefundableReasonWithLiterals as jw, type RestockTypeWithLiterals as jx, type TransactionStatusWithLiterals as jy, type AuthorizationCaptureStatusWithLiterals as jz, type UpdateOrderApplicationErrors as k, preparePaymentCollection as k0, getPaymentCollectabilityStatus as k1, voidAuthorizedPayments as k2, captureAuthorizedPayments as k3, getOrder as k4, createOrder as k5, updateOrder as k6, bulkUpdateOrders as k7, addActivities as k8, cancelOrder as k9, bulkUpdateOrderTags as ka, 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, DimensionsUnit as x, PaymentOptionType as y, SubscriptionFrequency 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 OrderUpdatedEnvelope, u as OrderCanceledEnvelope, v as OrderCreatedEnvelope, w as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-
|
|
3
|
-
export { d6 as AccountInfo, iG as AccountInfoMetadata, d2 as ActionEvent, al as ActionType, jw as ActionTypeWithLiterals, bA as Activity, bB as ActivityContentOneOf, Y as ActivityType, j7 as ActivityTypeWithLiterals, hf as AddActivitiesRequest, hb as AddActivityRequest, he as AddActivityResponse, gQ as AddInternalActivityRequest, ha as AddInternalActivityResponse, eA as AddToAutomationMigrationPopulationRequest, eB as AddToAutomationMigrationPopulationResponse, cx as AdditionalFee, gg as AdditionalFeeDelta, gh as AdditionalFeeDeltaDeltaOneOf, dO as AdditionalFeeRefund, a0 as AdditionalFeeSource, jb as AdditionalFeeSourceWithLiterals, ba as Address, ia as AddressDescription, bc as AddressLocation, b9 as AddressWithContact, E as AdjustmentType, iY as AdjustmentTypeWithLiterals, iR as AggregateOrdersOptions, hS as AggregateOrdersRequest, hT as AggregateOrdersResponse, fu as AggregatedRefundSummary, eR as ApplicationError, bq as AppliedDiscount, ge as AppliedDiscountDelta, gf as AppliedDiscountDeltaDeltaOneOf, br as AppliedDiscountDiscountSourceOneOf, gq as ArchiveOrderRequest, gr as ArchiveOrderResponse, e5 as Asset, _ as AttributionSource, j9 as AttributionSourceWithLiterals, fi as AuthorizationActionFailureDetails, fh as AuthorizationCapture, ai as AuthorizationCaptureStatus, jt as AuthorizationCaptureStatusWithLiterals, fg as AuthorizationDetails, fj as AuthorizationVoid, aj as AuthorizationVoidStatus, ju as AuthorizationVoidStatusWithLiterals, b$ as AuthorizedPaymentCaptured, b_ as AuthorizedPaymentCreated, c0 as AuthorizedPaymentVoided, cw as Balance, cv as BalanceSummary, iE as BaseEventMetadata, dl as BatchOfTriggerReindexOrderRequest, il as BigDecimalWrapper, aX as BillingAdjustment, aY as BillingAdjustmentPriceSummary, eS as BulkActionMetadata, gu as BulkArchiveOrdersByFilterRequest, gv as BulkArchiveOrdersByFilterResponse, gs as BulkArchiveOrdersRequest, gt as BulkArchiveOrdersResponse, iI as BulkDeleteImportedOrdersOptions, cW as BulkDeleteImportedOrdersRequest, cX as BulkDeleteImportedOrdersResponse, hy as BulkMarkAsFulfilledByFilterRequest, hz as BulkMarkAsFulfilledByFilterResponse, hw as BulkMarkAsFulfilledRequest, hx as BulkMarkAsFulfilledResponse, hE as BulkMarkAsUnfulfilledByFilterRequest, hF as BulkMarkAsUnfulfilledByFilterResponse, hC as BulkMarkAsUnfulfilledRequest, hD as BulkMarkAsUnfulfilledResponse, eN as BulkMarkOrdersAsPaidRequest, eO as BulkMarkOrdersAsPaidResponse, eP as BulkOrderResult, du as BulkSendBuyerPickupConfirmationEmailsRequest, dv as BulkSendBuyerPickupConfirmationEmailsResponse, dy as BulkSendBuyerShippingConfirmationEmailsRequest, dz as BulkSendBuyerShippingConfirmationEmailsResponse, hG as BulkSetBusinessLocationRequest, hH as BulkSetBusinessLocationResponse, hI as BulkSetBusinessLocationResult, gA as BulkUnArchiveOrdersByFilterRequest, gB as BulkUnArchiveOrdersByFilterResponse, gy as BulkUnArchiveOrdersRequest, gz as BulkUnArchiveOrdersResponse, hX as BulkUpdateOrderTagsRequest, hY as BulkUpdateOrderTagsResult, g3 as BulkUpdateOrdersRequest, b5 as BuyerInfo, b6 as BuyerInfoIdOneOf, gD as BuyerInfoUpdate, fy as CalculateRefundItemRequest, fA as CalculateRefundItemResponse, fx as CalculateRefundRequest, fz as CalculateRefundResponse, iw as CalculatedTax, iv as CalculatedTaxes, i2 as Cancel, hp as CancelOrderRequest, fC as CaptureAuthorizedPaymentsRequest, aC as CatalogReference, ct as ChannelInfo, $ as ChannelType, ja as ChannelTypeWithLiterals, iK as ChargeMembershipsOptions, e_ as ChargeMembershipsRequest, f2 as ChargeMembershipsResponse, fD as ChargeSavedPaymentMethodRequest, fE as ChargeSavedPaymentMethodResponse, a2 as ChargeType, jd as ChargeTypeWithLiterals, fl as Chargeback, cp as ChargebackCreated, cq as ChargebackReversed, am as ChargebackStatus, jx as ChargebackStatusWithLiterals, eY as ChargedBy, aI as Color, g4 as CommitDeltasRequest, gk as CommitDeltasResponse, gm as CommittedDiffs, gn as CommittedDiffsShippingUpdateInfoOneOf, id as CommonAddress, ie as CommonAddressStreetOneOf, jQ as CommonSearchWithEntityContext, ic as Company, i1 as Complete, bs as Coupon, fY as CreateOrderRequest, g0 as CreateOrderResponse, eX as CreatePaymentGatewayOrderRequest, eZ as CreatePaymentGatewayOrderResponse, cr as CreatedBy, cs as CreatedByStringOneOf, ce as CreditCardDetails, ff as CreditCardPaymentMethodDetails, b7 as CurrencyConversionDetails, fO as CursorPaging, fX as CursorPagingMetadata, fV as CursorSearch, fW as CursorSearchPagingMethodOneOf, fR as Cursors, bC as CustomActivity, cF as CustomAllowedActions, cu as CustomField, aw as CustomFieldGroup, jH as CustomFieldGroupWithLiterals, iB as CustomFieldValue, i7 as Customer, hV as DecrementData, hU as DecrementItemsQuantityRequest, hW as DecrementItemsQuantityResponse, eG as DelayedCaptureSettings, iQ as DeleteActivityIdentifiers, hi as DeleteActivityRequest, hj as DeleteActivityResponse, dc as DeleteByFilterOperation, db as DeleteByIdsOperation, e9 as DeleteContext, a9 as DeleteStatus, jk as DeleteStatusWithLiterals, bg as DeliveryLogistics, bh as DeliveryLogisticsAddressOneOf, bk as DeliveryTimeSlot, ar as DeltaPaymentOptionType, jC as DeltaPaymentOptionTypeWithLiterals, iD as Deposit, ay as DepositType, jJ as DepositTypeWithLiterals, aD as DescriptionLine, aF as DescriptionLineDescriptionLineValueOneOf, aG as DescriptionLineName, D as DescriptionLineType, iS as DescriptionLineTypeWithLiterals, aE as DescriptionLineValueOneOf, fF as DiffmatokyPayload, aR as DigitalFile, aL as Dimensions, x as DimensionsUnit, iT as DimensionsUnitWithLiterals, it as Discount, iu as DiscountOneDiscountTypeOneOf, R as DiscountReason, j5 as DiscountReasonWithLiterals, bv as DiscountRule, bw as DiscountRuleName, Q as DiscountType, j4 as DiscountTypeWithLiterals, cY as DomainEvent, cZ as DomainEventBodyOneOf, gY as DownloadLinkSent, bI as DraftOrderChangesApplied, gi as DraftOrderCommitSettings, g5 as DraftOrderDiffs, g8 as DraftOrderDiffsBillingUpdateInfoOneOf, g7 as DraftOrderDiffsBuyerUpdateInfoOneOf, g9 as DraftOrderDiffsRecipientUpdateInfoOneOf, g6 as DraftOrderDiffsShippingUpdateInfoOneOf, eH as Duration, ab as DurationUnit, jm as DurationUnitWithLiterals, i8 as Email, h5 as EmailEdited, dk as Empty, c_ as EntityCreatedEvent, d1 as EntityDeletedEvent, d0 as EntityUpdatedEvent, fG as ErrorInformation, iF as EventMetadata, b1 as ExtendedFields, cm as ExternalReceipt, fq as ExternalReceiptInfo, aJ as FocalPoint, cI as FormIdentifier, cH as FormInfo, aW as FreeTrialPeriod, h3 as FulfillerEmailSent, H as FulfillmentStatus, hv as FulfillmentStatusUpdated, i$ as FulfillmentStatusWithLiterals, cy as FulfillmentStatusesAggregate, bd as FullAddressContactDetails, fH as GetOrderRequest, fI as GetOrderResponse, eI as GetPaymentCollectabilityStatusRequest, eT as GetRefundabilityStatusRequest, eU as GetRefundabilityStatusResponse, hQ as GetShipmentsRequest, hR as GetShipmentsResponse, fn as GiftCardPaymentDetails, c5 as GiftCardPaymentRefund, ey as HasCustomEmailConfigurationsRequest, ez as HasCustomEmailConfigurationsResponse, i5 as IdAndVersion, d4 as IdentificationData, d5 as IdentificationDataIdOneOf, cS as ImportOrderRequest, cT as ImportOrderResponse, cR as ImportedOrderDeleted, gR as InternalActivity, gS as InternalActivityContentOneOf, d9 as InternalDocument, dd as InternalDocumentUpdateByFilterOperation, da as InternalDocumentUpdateOperation, fJ as InternalQueryOrdersRequest, fP as InternalQueryOrdersResponse, de as InternalUpdateExistingOperation, as as InventoryAction, jD as InventoryActionWithLiterals, gj as InventoryUpdateDetails, h1 as InvoiceAdded, ii as InvoiceDates, iA as InvoiceDynamicPriceTotals, i6 as InvoiceFields, h2 as InvoiceSent, i4 as InvoiceSentEvent, az as InvoiceStatus, jK as InvoiceStatusWithLiterals, iy as InvoicesPayment, eC as IsInAutomationMigrationPopulationRequest, eD as IsInAutomationMigrationPopulationResponse, gd as ItemChangedDetails, by as ItemCombination, bz as ItemCombinationLineItem, eQ as ItemMetadata, b4 as ItemModifier, aO as ItemTaxFullDetails, aM as ItemType, aN as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, iU as ItemTypePresetWithLiterals, is as ItemizedFee, J as JurisdictionType, iW as JurisdictionTypeWithLiterals, ik as LineItem, bU as LineItemAmount, bL as LineItemChanges, go as LineItemDelta, gp as LineItemDeltaDeltaOneOf, bP as LineItemDescriptionLineChange, bx as LineItemDiscount, bH as LineItemExchangeData, ip as LineItemMetaData, bQ as LineItemModifiersChange, bN as LineItemPriceChange, bO as LineItemProductNameChange, bM as LineItemQuantityChange, X as LineItemQuantityChangeType, j6 as LineItemQuantityChangeTypeWithLiterals, dN as LineItemRefund, fw as LineItemRefundSummary, im as LineItemTax, aQ as LineItemTaxBreakdown, aP as LineItemTaxInfo, hl as LineItemUpdate, ij as LineItems, iq as Locale, cB as Location, a_ as LocationAndQuantity, bV as ManagedAdditionalFee, bS as ManagedDiscount, bR as ManagedLineItem, af as ManuallyRefundableReason, jq as ManuallyRefundableReasonWithLiterals, ht as MarkAsFulfilledRequest, hu as MarkAsFulfilledResponse, hA as MarkAsUnfulfilledRequest, hB as MarkAsUnfulfilledResponse, eL as MarkOrderAsPaidRequest, eM as MarkOrderAsPaidResponse, hn as MarkOrderAsSeenByHumanRequest, ho as MarkOrderAsSeenByHumanResponse, gO as MaskedOrderLineItem, e$ as MembershipChargeItem, f0 as MembershipName, fo as MembershipPaymentDetails, c6 as MembershipPaymentRefund, an as MembershipPaymentStatus, jy as MembershipPaymentStatusWithLiterals, bD as MerchantComment, bt as MerchantDiscount, bu as MerchantDiscountMerchantDiscountReasonOneOf, d3 as MessageEnvelope, iz as MetaData, e3 as MetaSiteSpecialEvent, e4 as MetaSiteSpecialEventPayloadOneOf, b2 as ModifierGroup, a8 as Namespace, ej as NamespaceChanged, jj as NamespaceWithLiterals, bG as NewExchangeOrderCreated, ae as NonRefundableReason, jp as NonRefundableReasonWithLiterals, eo as OdeditorAssigned, ep as OdeditorUnassigned, a1 as OrderActionType, jc as OrderActionTypeWithLiterals, Z as OrderActivityTypeEnumActivityType, j8 as OrderActivityTypeEnumActivityTypeWithLiterals, aq as OrderApprovalStrategy, jB as OrderApprovalStrategyWithLiterals, cL as OrderApproved, gX as OrderCanceled, hq as OrderCanceledEventOrderCanceled, bJ as OrderChange, bK as OrderChangeValueOneOf, f$ as OrderCreateNotifications, bF as OrderCreatedFromExchange, fZ as OrderCreationSettings, f_ as OrderCreationSettingsEditableByOneOf, gl as OrderDeltasCommitted, gV as OrderFulfilled, cQ as OrderImported, cO as OrderItemsRestocked, aA as OrderLineItem, gc as OrderLineItemChangedDetails, gW as OrderNotFulfilled, gU as OrderPaid, h7 as OrderPartiallyPaid, h8 as OrderPending, gT as OrderPlaced, bE as OrderRefunded, h9 as OrderRejected, cN as OrderRejectedEventOrderRejected, iM as OrderSearchSpec, cC as OrderSettings, cD as OrderSettingsAllowedActionsOneOf, cE as OrderSettingsEditableByOneOf, N as OrderStatus, j3 as OrderStatusWithLiterals, bp as OrderTaxBreakdown, bo as OrderTaxInfo, f9 as OrderTransactions, cM as OrdersExperiments, cG as OwnerApps, fa as Payment, cf as PaymentCanceled, cg as PaymentCanceledPaymentDetailsOneOf, ac as PaymentCollectabilityStatus, jn as PaymentCollectabilityStatusWithLiterals, jN as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, iJ as PaymentCollectionCreatePaymentGatewayOrderOptions, jM as PaymentCollectionMarkOrderAsPaidApplicationErrors, ch as PaymentDeclined, ci as PaymentDeclinedPaymentDetailsOneOf, fm as PaymentMethodName, y as PaymentOptionType, iV as PaymentOptionTypeWithLiterals, fb as PaymentPaymentDetailsOneOf, ca as PaymentPending, cb as PaymentPendingPaymentDetailsOneOf, fc as PaymentReceiptInfoOneOf, f4 as PaymentRefund, c8 as PaymentRefundFailed, c7 as PaymentRefunded, F as PaymentStatus, hL as PaymentStatusUpdated, i_ as PaymentStatusWithLiterals, ix as Payments, ib as Phone, aK as PhysicalProperties, eq as PicassoAssigned, er as PicassoUnassigned, bj as PickupAddress, bi as PickupDetails, L as PickupMethod, j2 as PickupMethodWithLiterals, h6 as PickupReadyEmailSent, at as Placement, jE as PlacementWithLiterals, aH as PlainTextValue, cK as PlatformFee, cJ as PlatformFeeSummary, fN as PlatformPaging, fQ as PlatformPagingMetadata, fK as PlatformQuery, fL as PlatformQueryPagingMethodOneOf, eE as PreparePaymentCollectionRequest, dX as PreviewBuyerConfirmationEmailRequest, dY as PreviewBuyerConfirmationEmailResponse, dV as PreviewBuyerPaymentsReceivedEmailRequest, dW as PreviewBuyerPaymentsReceivedEmailResponse, dZ as PreviewBuyerPickupConfirmationEmailRequest, d_ as PreviewBuyerPickupConfirmationEmailResponse, dR as PreviewCancelEmailRequest, dS as PreviewCancelEmailResponse, dT as PreviewCancelRefundEmailRequest, dU as PreviewCancelRefundEmailResponse, dI as PreviewEmailByTypeRequest, dJ as PreviewEmailByTypeResponse, a5 as PreviewEmailType, jg as PreviewEmailTypeWithLiterals, dK as PreviewRefundEmailRequest, dQ as PreviewRefundEmailResponse, e1 as PreviewResendDownloadLinksEmailRequest, e2 as PreviewResendDownloadLinksEmailResponse, d$ as PreviewShippingConfirmationEmailRequest, e0 as PreviewShippingConfirmationEmailResponse, aZ as PriceDescription, b8 as PriceSummary, aB as ProductName, hc as PublicActivity, hd as PublicActivityContentOneOf, fS as QueryOrderRequest, fT as QueryOrderResponse, i9 as QuotesAddress, ak as Reason, jv as ReasonWithLiterals, cj as ReceiptCreated, ck as ReceiptCreatedReceiptInfoOneOf, cn as ReceiptSent, co as ReceiptSentReceiptInfoOneOf, jL as RecordManuallyCollectedPaymentApplicationErrors, eJ as RecordManuallyCollectedPaymentRequest, eK as RecordManuallyCollectedPaymentResponse, eF as RedirectUrls, fr as Refund, dL as RefundDetails, c1 as RefundInitiated, dM as RefundItem, fv as RefundItemsBreakdown, f5 as RefundSideEffects, ao as RefundStatus, ft as RefundStatusInfo, jz as RefundStatusWithLiterals, fs as RefundTransaction, eV as Refundability, eW as RefundabilityAdditionalRefundabilityInfoOneOf, ad as RefundableStatus, jo as RefundableStatusWithLiterals, c9 as RefundedAsStoreCredit, c2 as RefundedPayment, c3 as RefundedPaymentKindOneOf, cc as RegularPayment, fd as RegularPaymentDetails, fe as RegularPaymentDetailsPaymentMethodDetailsOneOf, cd as RegularPaymentPaymentMethodDetailsOneOf, c4 as RegularPaymentRefund, i3 as Reschedule, f6 as RestockInfo, f7 as RestockItem, ag as RestockType, jr as RestockTypeWithLiterals, c$ as RestoreInfo, bZ as SavedPaymentMethod, aa as ScheduledAction, jl as ScheduledActionWithLiterals, fU as SearchOrdersRequest, dn as SendBuyerConfirmationEmailRequest, dp as SendBuyerConfirmationEmailResponse, dq as SendBuyerPaymentsReceivedEmailRequest, dr as SendBuyerPaymentsReceivedEmailResponse, ds as SendBuyerPickupConfirmationEmailRequest, dt as SendBuyerPickupConfirmationEmailResponse, dw as SendBuyerShippingConfirmationEmailRequest, dx as SendBuyerShippingConfirmationEmailResponse, dC as SendCancelRefundEmailRequest, dD as SendCancelRefundEmailResponse, dA as SendMerchantOrderReceivedNotificationRequest, dB as SendMerchantOrderReceivedNotificationResponse, dG as SendMerchantOrderReceivedPushRequest, dH as SendMerchantOrderReceivedPushResponse, dE as SendRefundEmailRequest, dF as SendRefundEmailResponse, f1 as ServiceProperties, ef as ServiceProvisioned, eg as ServiceRemoved, iH as SetOrderNumberCounterOptions, cU as SetOrderNumberCounterRequest, cV as SetOrderNumberCounterResponse, h4 as ShippingAddressEdited, h0 as ShippingConfirmationEmailSent, bY as ShippingInformation, bX as ShippingInformationChange, bl as ShippingPrice, dP as ShippingRefund, bm as ShippingRegion, e6 as SiteCreated, a7 as SiteCreatedContext, ji as SiteCreatedContextWithLiterals, e8 as SiteDeleted, ei as SiteHardDeleted, ed as SiteMarkedAsTemplate, ee as SiteMarkedAsWixSite, eb as SitePublished, en as SitePurgedExternally, eh as SiteRenamed, e7 as SiteTransferred, ea as SiteUndeleted, ec as SiteUnpublished, em as SiteUrlChanged, ap as SortOrder, jA as SortOrderWithLiterals, fM as Sorting, io as Source, av as SourceType, jG as SourceTypeWithLiterals, ih as StandardDetails, a6 as State, jh as StateWithLiterals, bb as StreetAddress, ek as StudioAssigned, eu as StudioTwoAssigned, ev as StudioTwoUnassigned, el as StudioUnassigned, ig as Subdivision, au as SubdivisionType, jF as SubdivisionTypeWithLiterals, aU as SubscriptionDescription, z as SubscriptionFrequency, iX as SubscriptionFrequencyWithLiterals, aS as SubscriptionInfo, aV as SubscriptionSettings, aT as SubscriptionTitle, cA as TagList, cz as Tags, hZ as Task, h$ as TaskAction, i0 as TaskActionActionOneOf, h_ as TaskKey, bn as TaxSummary, a$ as TaxableAddress, b0 as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, iZ as TaxableAddressTypeWithLiterals, ir as TotalPrice, bW as TotalPriceChange, g$ as TrackingLinkAdded, gZ as TrackingNumberAdded, g_ as TrackingNumberEdited, ah as TransactionStatus, js as TransactionStatusWithLiterals, b3 as TranslatableString, bT as TranslatedValue, jO as TriggerRefundApplicationErrors, iL as TriggerRefundOptions, f3 as TriggerRefundRequest, f8 as TriggerRefundResponse, dm as TriggerReindexOrderRequest, di as TriggerReindexRequest, dj as TriggerReindexResponse, gw as UnArchiveOrderRequest, gx as UnArchiveOrderResponse, iP as UpdateActivityIdentifiers, hg as UpdateActivityRequest, hh as UpdateActivityResponse, gJ as UpdateBillingContactDetailsRequest, gK as UpdateBillingContactDetailsResponse, gF as UpdateBuyerEmailRequest, gG as UpdateBuyerEmailResponse, gC as UpdateBuyerInfoRequest, gE as UpdateBuyerInfoResponse, d7 as UpdateInternalDocumentsEvent, d8 as UpdateInternalDocumentsEventOperationOneOf, hk as UpdateLineItemsDescriptionLinesRequest, hm as UpdateLineItemsDescriptionLinesResponse, iO as UpdateOrderLineItem, iN as UpdateOrderLineItemIdentifiers, gL as UpdateOrderLineItemRequest, gM as UpdateOrderLineItemResponse, gN as UpdateOrderLineItemsRequest, gP as UpdateOrderLineItemsResponse, g1 as UpdateOrderRequest, g2 as UpdateOrderResponse, gH as UpdateOrderShippingAddressRequest, gI as UpdateOrderShippingAddressResponse, jP as UpdateOrderStatusApplicationErrors, hr as UpdateOrderStatusRequest, hs as UpdateOrderStatusResponse, ex as UserDomainMediaDisabled, ew as UserDomainMediaEnabled, hM as V1BulkMarkOrdersAsPaidRequest, hN as V1BulkMarkOrdersAsPaidResponse, hO as V1CreatePaymentGatewayOrderRequest, hP as V1CreatePaymentGatewayOrderResponse, ga as V1LineItemDelta, gb as V1LineItemDeltaDeltaOneOf, hJ as V1MarkOrderAsPaidRequest, hK as V1MarkOrderAsPaidResponse, cP as V1RestockItem, fk as V1ScheduledAction, bf as V1ShippingInformation, iC as Value, ax as ValueType, jI as ValueTypeWithLiterals, be as VatId, K as VatType, j1 as VatTypeWithLiterals, dg as VersionedDeleteByIdsOperation, dh as VersionedDocumentId, df as VersionedDocumentUpdateOperation, a4 as VersioningMode, jf as VersioningModeWithLiterals, fB as VoidAuthorizedPaymentsRequest, a3 as WebhookIdentityType, je as WebhookIdentityTypeWithLiterals, W as WeightUnit, j0 as WeightUnitWithLiterals, cl as WixReceipt, fp as WixReceiptInfo, es as WixelAssigned, et as WixelUnassigned } from './ecom-v1-order-orders.universal-DGvc5WHr.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 OrderUpdatedEnvelope, u as OrderCanceledEnvelope, v as OrderCreatedEnvelope, w as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-0aJolfVz.js';
|
|
3
|
+
export { d7 as AccountInfo, iJ as AccountInfoMetadata, d3 as ActionEvent, am as ActionType, jC as ActionTypeWithLiterals, bB as Activity, bC as ActivityContentOneOf, Y as ActivityType, jc as ActivityTypeWithLiterals, hi as AddActivitiesRequest, he as AddActivityRequest, hh as AddActivityResponse, gT as AddInternalActivityRequest, hd as AddInternalActivityResponse, eB as AddToAutomationMigrationPopulationRequest, eC as AddToAutomationMigrationPopulationResponse, cy as AdditionalFee, gj as AdditionalFeeDelta, gk as AdditionalFeeDeltaDeltaOneOf, dP as AdditionalFeeRefund, a0 as AdditionalFeeSource, jg as AdditionalFeeSourceWithLiterals, bb as Address, id as AddressDescription, bd as AddressLocation, ba as AddressWithContact, E as AdjustmentType, j1 as AdjustmentTypeWithLiterals, iW as AggregateOrdersOptions, hV as AggregateOrdersRequest, hW as AggregateOrdersResponse, fx as AggregatedRefundSummary, eU as ApplicationError, br as AppliedDiscount, gh as AppliedDiscountDelta, gi as AppliedDiscountDeltaDeltaOneOf, bs as AppliedDiscountDiscountSourceOneOf, gt as ArchiveOrderRequest, gu as ArchiveOrderResponse, e6 as Asset, _ as AttributionSource, je as AttributionSourceWithLiterals, fl as AuthorizationActionFailureDetails, fk as AuthorizationCapture, aj as AuthorizationCaptureStatus, jz as AuthorizationCaptureStatusWithLiterals, fj as AuthorizationDetails, fm as AuthorizationVoid, ak as AuthorizationVoidStatus, jA as AuthorizationVoidStatusWithLiterals, c0 as AuthorizedPaymentCaptured, b$ as AuthorizedPaymentCreated, c1 as AuthorizedPaymentVoided, cx as Balance, cw as BalanceSummary, iH as BaseEventMetadata, dm as BatchOfTriggerReindexOrderRequest, ip as BigDecimalWrapper, aY as BillingAdjustment, aZ as BillingAdjustmentPriceSummary, eV as BulkActionMetadata, gx as BulkArchiveOrdersByFilterRequest, gy as BulkArchiveOrdersByFilterResponse, gv as BulkArchiveOrdersRequest, gw as BulkArchiveOrdersResponse, iL as BulkDeleteImportedOrdersOptions, cX as BulkDeleteImportedOrdersRequest, cY as BulkDeleteImportedOrdersResponse, hB as BulkMarkAsFulfilledByFilterRequest, hC as BulkMarkAsFulfilledByFilterResponse, hz as BulkMarkAsFulfilledRequest, hA as BulkMarkAsFulfilledResponse, hH as BulkMarkAsUnfulfilledByFilterRequest, hI as BulkMarkAsUnfulfilledByFilterResponse, hF as BulkMarkAsUnfulfilledRequest, hG as BulkMarkAsUnfulfilledResponse, eQ as BulkMarkOrdersAsPaidRequest, eR as BulkMarkOrdersAsPaidResponse, eS as BulkOrderResult, dv as BulkSendBuyerPickupConfirmationEmailsRequest, dw as BulkSendBuyerPickupConfirmationEmailsResponse, dz as BulkSendBuyerShippingConfirmationEmailsRequest, dA as BulkSendBuyerShippingConfirmationEmailsResponse, hJ as BulkSetBusinessLocationRequest, hK as BulkSetBusinessLocationResponse, hL as BulkSetBusinessLocationResult, gD as BulkUnArchiveOrdersByFilterRequest, gE as BulkUnArchiveOrdersByFilterResponse, gB as BulkUnArchiveOrdersRequest, gC as BulkUnArchiveOrdersResponse, h_ as BulkUpdateOrderTagsRequest, h$ as BulkUpdateOrderTagsResult, g6 as BulkUpdateOrdersRequest, b6 as BuyerInfo, b7 as BuyerInfoIdOneOf, gG as BuyerInfoUpdate, fB as CalculateRefundItemRequest, fD as CalculateRefundItemResponse, fA as CalculateRefundRequest, fC as CalculateRefundResponse, iz as CalculatedTax, iy as CalculatedTaxes, i5 as Cancel, hs as CancelOrderRequest, fF as CaptureAuthorizedPaymentsRequest, aD as CatalogReference, cu as ChannelInfo, $ as ChannelType, jf as ChannelTypeWithLiterals, iP as ChargeMembershipsOptions, f1 as ChargeMembershipsRequest, f5 as ChargeMembershipsResponse, fG as ChargeSavedPaymentMethodRequest, fH as ChargeSavedPaymentMethodResponse, a2 as ChargeType, ji as ChargeTypeWithLiterals, fo as Chargeback, cq as ChargebackCreated, cr as ChargebackReversed, an as ChargebackStatus, jD as ChargebackStatusWithLiterals, e$ as ChargedBy, aJ as Color, g7 as CommitDeltasRequest, gn as CommitDeltasResponse, gp as CommittedDiffs, gq as CommittedDiffsShippingUpdateInfoOneOf, ih as CommonAddress, ii as CommonAddressStreetOneOf, jW as CommonSearchWithEntityContext, ig as Company, i4 as Complete, bt as Coupon, f$ as CreateOrderRequest, g3 as CreateOrderResponse, e_ as CreatePaymentGatewayOrderRequest, f0 as CreatePaymentGatewayOrderResponse, cs as CreatedBy, ct as CreatedByStringOneOf, cf as CreditCardDetails, fi as CreditCardPaymentMethodDetails, b8 as CurrencyConversionDetails, fR as CursorPaging, f_ as CursorPagingMetadata, fY as CursorSearch, fZ as CursorSearchPagingMethodOneOf, fU as Cursors, bD as CustomActivity, cG as CustomAllowedActions, cv as CustomField, ax as CustomFieldGroup, jN as CustomFieldGroupWithLiterals, iE as CustomFieldValue, ia as Customer, hY as DecrementData, hX as DecrementItemsQuantityRequest, hZ as DecrementItemsQuantityResponse, eH as DelayedCaptureSettings, iV as DeleteActivityIdentifiers, hl as DeleteActivityRequest, hm as DeleteActivityResponse, dd as DeleteByFilterOperation, dc as DeleteByIdsOperation, ea as DeleteContext, a9 as DeleteStatus, jp as DeleteStatusWithLiterals, bh as DeliveryLogistics, bi as DeliveryLogisticsAddressOneOf, bl as DeliveryTimeSlot, as as DeltaPaymentOptionType, jI as DeltaPaymentOptionTypeWithLiterals, iG as Deposit, az as DepositType, jP as DepositTypeWithLiterals, aE as DescriptionLine, aG as DescriptionLineDescriptionLineValueOneOf, aH as DescriptionLineName, D as DescriptionLineType, iX as DescriptionLineTypeWithLiterals, aF as DescriptionLineValueOneOf, fI as DiffmatokyPayload, aS as DigitalFile, aM as Dimensions, x as DimensionsUnit, iY as DimensionsUnitWithLiterals, iw as Discount, ix as DiscountOneDiscountTypeOneOf, R as DiscountReason, ja as DiscountReasonWithLiterals, bw as DiscountRule, bx as DiscountRuleName, Q as DiscountType, j9 as DiscountTypeWithLiterals, cZ as DomainEvent, c_ as DomainEventBodyOneOf, g$ as DownloadLinkSent, bJ as DraftOrderChangesApplied, gl as DraftOrderCommitSettings, g8 as DraftOrderDiffs, gb as DraftOrderDiffsBillingUpdateInfoOneOf, ga as DraftOrderDiffsBuyerUpdateInfoOneOf, gc as DraftOrderDiffsRecipientUpdateInfoOneOf, g9 as DraftOrderDiffsShippingUpdateInfoOneOf, eI as Duration, ab as DurationUnit, jr as DurationUnitWithLiterals, ib as Email, h8 as EmailEdited, dl as Empty, c$ as EntityCreatedEvent, d2 as EntityDeletedEvent, d1 as EntityUpdatedEvent, fJ as ErrorInformation, iI as EventMetadata, b2 as ExtendedFields, cn as ExternalReceipt, ft as ExternalReceiptInfo, aK as FocalPoint, cJ as FormIdentifier, cI as FormInfo, aX as FreeTrialPeriod, h6 as FulfillerEmailSent, H as FulfillmentStatus, hy as FulfillmentStatusUpdated, j4 as FulfillmentStatusWithLiterals, cz as FulfillmentStatusesAggregate, be as FullAddressContactDetails, fK as GetOrderRequest, fL as GetOrderResponse, eJ as GetPaymentCollectabilityStatusRequest, eW as GetRefundabilityStatusRequest, eX as GetRefundabilityStatusResponse, hT as GetShipmentsRequest, hU as GetShipmentsResponse, fq as GiftCardPaymentDetails, c6 as GiftCardPaymentRefund, ez as HasCustomEmailConfigurationsRequest, eA as HasCustomEmailConfigurationsResponse, i8 as IdAndVersion, d5 as IdentificationData, d6 as IdentificationDataIdOneOf, cT as ImportOrderRequest, cU as ImportOrderResponse, cS as ImportedOrderDeleted, gU as InternalActivity, gV as InternalActivityContentOneOf, da as InternalDocument, de as InternalDocumentUpdateByFilterOperation, db as InternalDocumentUpdateOperation, fM as InternalQueryOrdersRequest, fS as InternalQueryOrdersResponse, df as InternalUpdateExistingOperation, at as InventoryAction, jJ as InventoryActionWithLiterals, gm as InventoryUpdateDetails, h4 as InvoiceAdded, il as InvoiceDates, iD as InvoiceDynamicPriceTotals, i9 as InvoiceFields, h5 as InvoiceSent, i7 as InvoiceSentEvent, aA as InvoiceStatus, jQ as InvoiceStatusWithLiterals, iB as InvoicesPayment, eD as IsInAutomationMigrationPopulationRequest, eE as IsInAutomationMigrationPopulationResponse, gg as ItemChangedDetails, bz as ItemCombination, bA as ItemCombinationLineItem, eT as ItemMetadata, b5 as ItemModifier, aP as ItemTaxFullDetails, aN as ItemType, aO as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, iZ as ItemTypePresetWithLiterals, iv as ItemizedFee, J as JurisdictionType, i$ as JurisdictionTypeWithLiterals, io as LineItem, bV as LineItemAmount, bM as LineItemChanges, gr as LineItemDelta, gs as LineItemDeltaDeltaOneOf, bQ as LineItemDescriptionLineChange, by as LineItemDiscount, bI as LineItemExchangeData, is as LineItemMetaData, bR as LineItemModifiersChange, bO as LineItemPriceChange, bP as LineItemProductNameChange, bN as LineItemQuantityChange, X as LineItemQuantityChangeType, jb as LineItemQuantityChangeTypeWithLiterals, dO as LineItemRefund, fz as LineItemRefundSummary, iq as LineItemTax, aR as LineItemTaxBreakdown, aQ as LineItemTaxInfo, ho as LineItemUpdate, im as LineItems, it as Locale, cC as Location, a$ as LocationAndQuantity, bW as ManagedAdditionalFee, bT as ManagedDiscount, bS as ManagedLineItem, ag as ManuallyRefundableReason, jw as ManuallyRefundableReasonWithLiterals, hw as MarkAsFulfilledRequest, hx as MarkAsFulfilledResponse, hD as MarkAsUnfulfilledRequest, hE as MarkAsUnfulfilledResponse, eO as MarkOrderAsPaidRequest, eP as MarkOrderAsPaidResponse, hq as MarkOrderAsSeenByHumanRequest, hr as MarkOrderAsSeenByHumanResponse, gR as MaskedOrderLineItem, f2 as MembershipChargeItem, f3 as MembershipName, fr as MembershipPaymentDetails, c7 as MembershipPaymentRefund, ao as MembershipPaymentStatus, jE as MembershipPaymentStatusWithLiterals, bE as MerchantComment, bu as MerchantDiscount, bv as MerchantDiscountMerchantDiscountReasonOneOf, d4 as MessageEnvelope, iC as MetaData, e4 as MetaSiteSpecialEvent, e5 as MetaSiteSpecialEventPayloadOneOf, b3 as ModifierGroup, a8 as Namespace, ek as NamespaceChanged, jo as NamespaceWithLiterals, bH as NewExchangeOrderCreated, af as NonRefundableReason, jv as NonRefundableReasonWithLiterals, ep as OdeditorAssigned, eq as OdeditorUnassigned, a1 as OrderActionType, jh as OrderActionTypeWithLiterals, Z as OrderActivityTypeEnumActivityType, jd as OrderActivityTypeEnumActivityTypeWithLiterals, ar as OrderApprovalStrategy, jH as OrderApprovalStrategyWithLiterals, cM as OrderApproved, g_ as OrderCanceled, ht as OrderCanceledEventOrderCanceled, bK as OrderChange, bL as OrderChangeValueOneOf, g2 as OrderCreateNotifications, bG as OrderCreatedFromExchange, g0 as OrderCreationSettings, g1 as OrderCreationSettingsEditableByOneOf, go as OrderDeltasCommitted, gY as OrderFulfilled, cR as OrderImported, cP as OrderItemsRestocked, aB as OrderLineItem, gf as OrderLineItemChangedDetails, gZ as OrderNotFulfilled, gX as OrderPaid, ha as OrderPartiallyPaid, hb as OrderPending, gW as OrderPlaced, bF as OrderRefunded, hc as OrderRejected, cO as OrderRejectedEventOrderRejected, iR as OrderSearchSpec, cD as OrderSettings, cE as OrderSettingsAllowedActionsOneOf, cF as OrderSettingsEditableByOneOf, N as OrderStatus, j8 as OrderStatusWithLiterals, bq as OrderTaxBreakdown, bp as OrderTaxInfo, fc as OrderTransactions, cN as OrdersExperiments, cH as OwnerApps, fd as Payment, cg as PaymentCanceled, ch as PaymentCanceledPaymentDetailsOneOf, ac as PaymentCollectabilityStatus, js as PaymentCollectabilityStatusWithLiterals, jT as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, iO as PaymentCollectionCreatePaymentGatewayOrderOptions, jS as PaymentCollectionMarkOrderAsPaidApplicationErrors, iN as PaymentCollectionMarkOrderAsPaidOptions, ci as PaymentDeclined, cj as PaymentDeclinedPaymentDetailsOneOf, fp as PaymentMethodName, y as PaymentOptionType, i_ as PaymentOptionTypeWithLiterals, fe as PaymentPaymentDetailsOneOf, cb as PaymentPending, cc as PaymentPendingPaymentDetailsOneOf, ff as PaymentReceiptInfoOneOf, f7 as PaymentRefund, c9 as PaymentRefundFailed, c8 as PaymentRefunded, F as PaymentStatus, hO as PaymentStatusUpdated, j3 as PaymentStatusWithLiterals, iA as Payments, ie as Phone, aL as PhysicalProperties, er as PicassoAssigned, es as PicassoUnassigned, bk as PickupAddress, bj as PickupDetails, L as PickupMethod, j7 as PickupMethodWithLiterals, h9 as PickupReadyEmailSent, au as Placement, jK as PlacementWithLiterals, aI as PlainTextValue, cL as PlatformFee, cK as PlatformFeeSummary, fQ as PlatformPaging, fT as PlatformPagingMetadata, fN as PlatformQuery, fO as PlatformQueryPagingMethodOneOf, ad as PredefinedPaymentMethod, jt as PredefinedPaymentMethodWithLiterals, eF as PreparePaymentCollectionRequest, dY as PreviewBuyerConfirmationEmailRequest, dZ as PreviewBuyerConfirmationEmailResponse, dW as PreviewBuyerPaymentsReceivedEmailRequest, dX as PreviewBuyerPaymentsReceivedEmailResponse, d_ as PreviewBuyerPickupConfirmationEmailRequest, d$ as PreviewBuyerPickupConfirmationEmailResponse, dS as PreviewCancelEmailRequest, dT as PreviewCancelEmailResponse, dU as PreviewCancelRefundEmailRequest, dV as PreviewCancelRefundEmailResponse, dJ as PreviewEmailByTypeRequest, dK as PreviewEmailByTypeResponse, a5 as PreviewEmailType, jl as PreviewEmailTypeWithLiterals, dL as PreviewRefundEmailRequest, dR as PreviewRefundEmailResponse, e2 as PreviewResendDownloadLinksEmailRequest, e3 as PreviewResendDownloadLinksEmailResponse, e0 as PreviewShippingConfirmationEmailRequest, e1 as PreviewShippingConfirmationEmailResponse, a_ as PriceDescription, b9 as PriceSummary, aC as ProductName, hf as PublicActivity, hg as PublicActivityContentOneOf, fV as QueryOrderRequest, fW as QueryOrderResponse, ic as QuotesAddress, al as Reason, jB as ReasonWithLiterals, ck as ReceiptCreated, cl as ReceiptCreatedReceiptInfoOneOf, co as ReceiptSent, cp as ReceiptSentReceiptInfoOneOf, jR as RecordManuallyCollectedPaymentApplicationErrors, iM as RecordManuallyCollectedPaymentOptions, eK as RecordManuallyCollectedPaymentRequest, eN as RecordManuallyCollectedPaymentResponse, eG as RedirectUrls, fu as Refund, dM as RefundDetails, c2 as RefundInitiated, dN as RefundItem, fy as RefundItemsBreakdown, f8 as RefundSideEffects, ap as RefundStatus, fw as RefundStatusInfo, jF as RefundStatusWithLiterals, fv as RefundTransaction, eY as Refundability, eZ as RefundabilityAdditionalRefundabilityInfoOneOf, ae as RefundableStatus, ju as RefundableStatusWithLiterals, ca as RefundedAsStoreCredit, c3 as RefundedPayment, c4 as RefundedPaymentKindOneOf, cd as RegularPayment, fg as RegularPaymentDetails, fh as RegularPaymentDetailsPaymentMethodDetailsOneOf, ce as RegularPaymentPaymentMethodDetailsOneOf, c5 as RegularPaymentRefund, i6 as Reschedule, f9 as RestockInfo, fa as RestockItem, ah as RestockType, jx as RestockTypeWithLiterals, d0 as RestoreInfo, b_ as SavedPaymentMethod, aa as ScheduledAction, jq as ScheduledActionWithLiterals, fX as SearchOrdersRequest, dp as SendBuyerConfirmationEmailRequest, dq as SendBuyerConfirmationEmailResponse, dr as SendBuyerPaymentsReceivedEmailRequest, ds as SendBuyerPaymentsReceivedEmailResponse, dt as SendBuyerPickupConfirmationEmailRequest, du as SendBuyerPickupConfirmationEmailResponse, dx as SendBuyerShippingConfirmationEmailRequest, dy as SendBuyerShippingConfirmationEmailResponse, dD as SendCancelRefundEmailRequest, dE as SendCancelRefundEmailResponse, dB as SendMerchantOrderReceivedNotificationRequest, dC as SendMerchantOrderReceivedNotificationResponse, dH as SendMerchantOrderReceivedPushRequest, dI as SendMerchantOrderReceivedPushResponse, dF as SendRefundEmailRequest, dG as SendRefundEmailResponse, f4 as ServiceProperties, eg as ServiceProvisioned, eh as ServiceRemoved, iK as SetOrderNumberCounterOptions, cV as SetOrderNumberCounterRequest, cW as SetOrderNumberCounterResponse, h7 as ShippingAddressEdited, h3 as ShippingConfirmationEmailSent, bZ as ShippingInformation, bY as ShippingInformationChange, bm as ShippingPrice, dQ as ShippingRefund, bn as ShippingRegion, e7 as SiteCreated, a7 as SiteCreatedContext, jn as SiteCreatedContextWithLiterals, e9 as SiteDeleted, ej as SiteHardDeleted, ee as SiteMarkedAsTemplate, ef as SiteMarkedAsWixSite, ec as SitePublished, eo as SitePurgedExternally, ei as SiteRenamed, e8 as SiteTransferred, eb as SiteUndeleted, ed as SiteUnpublished, en as SiteUrlChanged, aq as SortOrder, jG as SortOrderWithLiterals, fP as Sorting, ir as Source, aw as SourceType, jM as SourceTypeWithLiterals, ik as StandardDetails, a6 as State, jm as StateWithLiterals, bc as StreetAddress, el as StudioAssigned, ev as StudioTwoAssigned, ew as StudioTwoUnassigned, em as StudioUnassigned, ij as Subdivision, av as SubdivisionType, jL as SubdivisionTypeWithLiterals, aV as SubscriptionDescription, z as SubscriptionFrequency, j0 as SubscriptionFrequencyWithLiterals, aT as SubscriptionInfo, aW as SubscriptionSettings, aU as SubscriptionTitle, cB as TagList, cA as Tags, i0 as Task, i2 as TaskAction, i3 as TaskActionActionOneOf, i1 as TaskKey, bo as TaxSummary, b0 as TaxableAddress, b1 as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, j2 as TaxableAddressTypeWithLiterals, iu as TotalPrice, bX as TotalPriceChange, h2 as TrackingLinkAdded, h0 as TrackingNumberAdded, h1 as TrackingNumberEdited, ai as TransactionStatus, jy as TransactionStatusWithLiterals, b4 as TranslatableString, bU as TranslatedValue, jU as TriggerRefundApplicationErrors, iQ as TriggerRefundOptions, f6 as TriggerRefundRequest, fb as TriggerRefundResponse, dn as TriggerReindexOrderRequest, dj as TriggerReindexRequest, dk as TriggerReindexResponse, gz as UnArchiveOrderRequest, gA as UnArchiveOrderResponse, iU as UpdateActivityIdentifiers, hj as UpdateActivityRequest, hk as UpdateActivityResponse, gM as UpdateBillingContactDetailsRequest, gN as UpdateBillingContactDetailsResponse, gI as UpdateBuyerEmailRequest, gJ as UpdateBuyerEmailResponse, gF as UpdateBuyerInfoRequest, gH as UpdateBuyerInfoResponse, d8 as UpdateInternalDocumentsEvent, d9 as UpdateInternalDocumentsEventOperationOneOf, hn as UpdateLineItemsDescriptionLinesRequest, hp as UpdateLineItemsDescriptionLinesResponse, iT as UpdateOrderLineItem, iS as UpdateOrderLineItemIdentifiers, gO as UpdateOrderLineItemRequest, gP as UpdateOrderLineItemResponse, gQ as UpdateOrderLineItemsRequest, gS as UpdateOrderLineItemsResponse, g4 as UpdateOrderRequest, g5 as UpdateOrderResponse, gK as UpdateOrderShippingAddressRequest, gL as UpdateOrderShippingAddressResponse, jV as UpdateOrderStatusApplicationErrors, hu as UpdateOrderStatusRequest, hv as UpdateOrderStatusResponse, eL as UserDefinedPaymentMethodName, eM as UserDefinedPaymentMethodNameKindOneOf, ey as UserDomainMediaDisabled, ex as UserDomainMediaEnabled, hP as V1BulkMarkOrdersAsPaidRequest, hQ as V1BulkMarkOrdersAsPaidResponse, hR as V1CreatePaymentGatewayOrderRequest, hS as V1CreatePaymentGatewayOrderResponse, gd as V1LineItemDelta, ge as V1LineItemDeltaDeltaOneOf, hM as V1MarkOrderAsPaidRequest, hN as V1MarkOrderAsPaidResponse, cQ as V1RestockItem, fn as V1ScheduledAction, bg as V1ShippingInformation, iF as Value, ay as ValueType, jO as ValueTypeWithLiterals, bf as VatId, K as VatType, j6 as VatTypeWithLiterals, dh as VersionedDeleteByIdsOperation, di as VersionedDocumentId, dg as VersionedDocumentUpdateOperation, a4 as VersioningMode, jk as VersioningModeWithLiterals, fE as VoidAuthorizedPaymentsRequest, a3 as WebhookIdentityType, jj as WebhookIdentityTypeWithLiterals, W as WeightUnit, j5 as WeightUnitWithLiterals, cm as WixReceipt, fs as WixReceiptInfo, et as WixelAssigned, eu as WixelUnassigned } from './ecom-v1-order-orders.universal-0aJolfVz.js';
|
|
4
4
|
|
|
5
5
|
declare function preparePaymentCollection$1(httpClient: HttpClient): PreparePaymentCollectionSignature;
|
|
6
6
|
interface PreparePaymentCollectionSignature {
|
package/build/cjs/index.js
CHANGED
|
@@ -58,6 +58,7 @@ __export(index_exports, {
|
|
|
58
58
|
PaymentStatus: () => PaymentStatus,
|
|
59
59
|
PickupMethod: () => PickupMethod,
|
|
60
60
|
Placement: () => Placement,
|
|
61
|
+
PredefinedPaymentMethod: () => PredefinedPaymentMethod,
|
|
61
62
|
PreviewEmailType: () => PreviewEmailType,
|
|
62
63
|
Reason: () => Reason,
|
|
63
64
|
RefundStatus: () => RefundStatus,
|
|
@@ -2165,6 +2166,13 @@ var PaymentCollectabilityStatus = /* @__PURE__ */ ((PaymentCollectabilityStatus2
|
|
|
2165
2166
|
PaymentCollectabilityStatus2["NONCOLLECTABLE_ORDER_HAS_CHARGEBACKS"] = "NONCOLLECTABLE_ORDER_HAS_CHARGEBACKS";
|
|
2166
2167
|
return PaymentCollectabilityStatus2;
|
|
2167
2168
|
})(PaymentCollectabilityStatus || {});
|
|
2169
|
+
var PredefinedPaymentMethod = /* @__PURE__ */ ((PredefinedPaymentMethod2) => {
|
|
2170
|
+
PredefinedPaymentMethod2["UNKNOWN_PREDEFINED_PAYMENT_METHOD"] = "UNKNOWN_PREDEFINED_PAYMENT_METHOD";
|
|
2171
|
+
PredefinedPaymentMethod2["CASH"] = "CASH";
|
|
2172
|
+
PredefinedPaymentMethod2["BANK_TRANSFER"] = "BANK_TRANSFER";
|
|
2173
|
+
PredefinedPaymentMethod2["CHECK"] = "CHECK";
|
|
2174
|
+
return PredefinedPaymentMethod2;
|
|
2175
|
+
})(PredefinedPaymentMethod || {});
|
|
2168
2176
|
var RefundableStatus = /* @__PURE__ */ ((RefundableStatus2) => {
|
|
2169
2177
|
RefundableStatus2["NOT_REFUNDABLE"] = "NOT_REFUNDABLE";
|
|
2170
2178
|
RefundableStatus2["MANUAL"] = "MANUAL";
|
|
@@ -2517,11 +2525,12 @@ async function getPaymentCollectabilityStatus2(ecomOrderId) {
|
|
|
2517
2525
|
throw transformedError;
|
|
2518
2526
|
}
|
|
2519
2527
|
}
|
|
2520
|
-
async function recordManuallyCollectedPayment2(orderId, amount) {
|
|
2521
|
-
const { httpClient, sideEffects } = arguments[
|
|
2528
|
+
async function recordManuallyCollectedPayment2(orderId, amount, options) {
|
|
2529
|
+
const { httpClient, sideEffects } = arguments[3];
|
|
2522
2530
|
const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
|
|
2523
2531
|
orderId,
|
|
2524
|
-
amount
|
|
2532
|
+
amount,
|
|
2533
|
+
userDefinedPaymentMethodName: options?.userDefinedPaymentMethodName
|
|
2525
2534
|
});
|
|
2526
2535
|
const reqOpts = recordManuallyCollectedPayment(payload);
|
|
2527
2536
|
sideEffects?.onSiteCall?.();
|
|
@@ -2534,19 +2543,24 @@ async function recordManuallyCollectedPayment2(orderId, amount) {
|
|
|
2534
2543
|
err,
|
|
2535
2544
|
{
|
|
2536
2545
|
spreadPathsToArguments: {},
|
|
2537
|
-
explicitPathsToArguments: {
|
|
2546
|
+
explicitPathsToArguments: {
|
|
2547
|
+
orderId: "$[0]",
|
|
2548
|
+
amount: "$[1]",
|
|
2549
|
+
userDefinedPaymentMethodName: "$[2].userDefinedPaymentMethodName"
|
|
2550
|
+
},
|
|
2538
2551
|
singleArgumentUnchanged: false
|
|
2539
2552
|
},
|
|
2540
|
-
["orderId", "amount"]
|
|
2553
|
+
["orderId", "amount", "options"]
|
|
2541
2554
|
);
|
|
2542
2555
|
sideEffects?.onError?.(err);
|
|
2543
2556
|
throw transformedError;
|
|
2544
2557
|
}
|
|
2545
2558
|
}
|
|
2546
|
-
async function paymentCollectionMarkOrderAsPaid2(ecomOrderId) {
|
|
2547
|
-
const { httpClient, sideEffects } = arguments[
|
|
2559
|
+
async function paymentCollectionMarkOrderAsPaid2(ecomOrderId, options) {
|
|
2560
|
+
const { httpClient, sideEffects } = arguments[2];
|
|
2548
2561
|
const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
|
|
2549
|
-
ecomOrderId
|
|
2562
|
+
ecomOrderId,
|
|
2563
|
+
userDefinedPaymentMethodName: options?.userDefinedPaymentMethodName
|
|
2550
2564
|
});
|
|
2551
2565
|
const reqOpts = paymentCollectionMarkOrderAsPaid(payload);
|
|
2552
2566
|
sideEffects?.onSiteCall?.();
|
|
@@ -2577,10 +2591,13 @@ async function paymentCollectionMarkOrderAsPaid2(ecomOrderId) {
|
|
|
2577
2591
|
err,
|
|
2578
2592
|
{
|
|
2579
2593
|
spreadPathsToArguments: {},
|
|
2580
|
-
explicitPathsToArguments: {
|
|
2594
|
+
explicitPathsToArguments: {
|
|
2595
|
+
ecomOrderId: "$[0]",
|
|
2596
|
+
userDefinedPaymentMethodName: "$[1].userDefinedPaymentMethodName"
|
|
2597
|
+
},
|
|
2581
2598
|
singleArgumentUnchanged: false
|
|
2582
2599
|
},
|
|
2583
|
-
["ecomOrderId"]
|
|
2600
|
+
["ecomOrderId", "options"]
|
|
2584
2601
|
);
|
|
2585
2602
|
sideEffects?.onError?.(err);
|
|
2586
2603
|
throw transformedError;
|
|
@@ -3511,16 +3528,18 @@ function getPaymentCollectabilityStatus3(httpClient) {
|
|
|
3511
3528
|
);
|
|
3512
3529
|
}
|
|
3513
3530
|
function recordManuallyCollectedPayment3(httpClient) {
|
|
3514
|
-
return (orderId, amount) => recordManuallyCollectedPayment2(
|
|
3531
|
+
return (orderId, amount, options) => recordManuallyCollectedPayment2(
|
|
3515
3532
|
orderId,
|
|
3516
3533
|
amount,
|
|
3534
|
+
options,
|
|
3517
3535
|
// @ts-ignore
|
|
3518
3536
|
{ httpClient }
|
|
3519
3537
|
);
|
|
3520
3538
|
}
|
|
3521
3539
|
function paymentCollectionMarkOrderAsPaid3(httpClient) {
|
|
3522
|
-
return (ecomOrderId) => paymentCollectionMarkOrderAsPaid2(
|
|
3540
|
+
return (ecomOrderId, options) => paymentCollectionMarkOrderAsPaid2(
|
|
3523
3541
|
ecomOrderId,
|
|
3542
|
+
options,
|
|
3524
3543
|
// @ts-ignore
|
|
3525
3544
|
{ httpClient }
|
|
3526
3545
|
);
|
|
@@ -4019,6 +4038,7 @@ var onOrderPaymentStatusUpdated2 = (0, import_event_definition_modules.createEve
|
|
|
4019
4038
|
PaymentStatus,
|
|
4020
4039
|
PickupMethod,
|
|
4021
4040
|
Placement,
|
|
4041
|
+
PredefinedPaymentMethod,
|
|
4022
4042
|
PreviewEmailType,
|
|
4023
4043
|
Reason,
|
|
4024
4044
|
RefundStatus,
|