@wix/auto_sdk_ecom_orders 1.0.212 → 1.0.214
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-UFqntDoM.d.ts → ecom-v1-order-orders.universal-CX4cZSmz.d.ts} +9 -7
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +35 -30
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +24 -21
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +11 -9
- package/build/cjs/meta.js +24 -21
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-UFqntDoM.d.mts → ecom-v1-order-orders.universal-CX4cZSmz.d.mts} +9 -7
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +32 -27
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +21 -18
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +11 -9
- package/build/es/meta.mjs +21 -18
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-C-bXR9fM.d.ts → ecom-v1-order-orders.universal-CFyKGaZT.d.ts} +14 -12
- package/build/internal/cjs/index.d.ts +16 -16
- package/build/internal/cjs/index.js +35 -30
- 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 +24 -21
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +11 -9
- package/build/internal/cjs/meta.js +24 -21
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{ecom-v1-order-orders.universal-C-bXR9fM.d.mts → ecom-v1-order-orders.universal-CFyKGaZT.d.mts} +14 -12
- package/build/internal/es/index.d.mts +16 -16
- package/build/internal/es/index.mjs +32 -27
- 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 +21 -18
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +11 -9
- package/build/internal/es/meta.mjs +21 -18
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -2652,10 +2652,12 @@ declare enum ChannelType {
|
|
|
2652
2652
|
/** [Faire marketplace integration](https://support.wix.com/en/article/wix-stores-creating-a-faire-store-using-the-faire-integration-app). */
|
|
2653
2653
|
FAIRE_COM = "FAIRE_COM",
|
|
2654
2654
|
/** PayPal Agentic Checkout sales channel. */
|
|
2655
|
-
PAYPAL_AGENTIC_CHECKOUT = "PAYPAL_AGENTIC_CHECKOUT"
|
|
2655
|
+
PAYPAL_AGENTIC_CHECKOUT = "PAYPAL_AGENTIC_CHECKOUT",
|
|
2656
|
+
/** Stripe Agentic Checkout sales channel. */
|
|
2657
|
+
STRIPE_AGENTIC_CHECKOUT = "STRIPE_AGENTIC_CHECKOUT"
|
|
2656
2658
|
}
|
|
2657
2659
|
/** @enumType */
|
|
2658
|
-
type ChannelTypeWithLiterals = ChannelType | 'UNSPECIFIED' | 'WEB' | 'POS' | 'EBAY' | 'AMAZON' | 'OTHER_PLATFORM' | 'WIX_APP_STORE' | 'WIX_INVOICES' | 'BACKOFFICE_MERCHANT' | 'WISH' | 'CLASS_PASS' | 'GLOBAL_E' | 'FACEBOOK' | 'ETSY' | 'TIKTOK' | 'FAIRE_COM' | 'PAYPAL_AGENTIC_CHECKOUT';
|
|
2660
|
+
type ChannelTypeWithLiterals = ChannelType | 'UNSPECIFIED' | 'WEB' | 'POS' | 'EBAY' | 'AMAZON' | 'OTHER_PLATFORM' | 'WIX_APP_STORE' | 'WIX_INVOICES' | 'BACKOFFICE_MERCHANT' | 'WISH' | 'CLASS_PASS' | 'GLOBAL_E' | 'FACEBOOK' | 'ETSY' | 'TIKTOK' | 'FAIRE_COM' | 'PAYPAL_AGENTIC_CHECKOUT' | 'STRIPE_AGENTIC_CHECKOUT';
|
|
2659
2661
|
interface CustomField {
|
|
2660
2662
|
/** Custom field value. */
|
|
2661
2663
|
value?: any;
|
|
@@ -7442,7 +7444,7 @@ type RecordManuallyCollectedPaymentApplicationErrors = {
|
|
|
7442
7444
|
data?: Record<string, any>;
|
|
7443
7445
|
};
|
|
7444
7446
|
/** @docsIgnore */
|
|
7445
|
-
type
|
|
7447
|
+
type PaymentCollectionMarkOrderAsPaidApplicationErrors = {
|
|
7446
7448
|
code?: 'ORDER_ALREADY_PAID';
|
|
7447
7449
|
description?: string;
|
|
7448
7450
|
data?: Record<string, any>;
|
|
@@ -7456,7 +7458,7 @@ type MarkOrderAsPaidApplicationErrors = {
|
|
|
7456
7458
|
data?: Record<string, any>;
|
|
7457
7459
|
};
|
|
7458
7460
|
/** @docsIgnore */
|
|
7459
|
-
type
|
|
7461
|
+
type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors = {
|
|
7460
7462
|
code?: 'ORDER_ALREADY_PAID';
|
|
7461
7463
|
description?: string;
|
|
7462
7464
|
data?: Record<string, any>;
|
|
@@ -7907,9 +7909,9 @@ interface PreparePaymentCollectionOptions {
|
|
|
7907
7909
|
declare function getPaymentCollectabilityStatus(ecomOrderId: string): Promise<NonNullablePaths<GetPaymentCollectabilityStatusResponse, `status` | `amount.amount` | `amount.formattedAmount`, 3>>;
|
|
7908
7910
|
interface RecordManuallyCollectedPaymentOptions {
|
|
7909
7911
|
}
|
|
7910
|
-
interface
|
|
7912
|
+
interface PaymentCollectionMarkOrderAsPaidOptions {
|
|
7911
7913
|
}
|
|
7912
|
-
interface
|
|
7914
|
+
interface PaymentCollectionCreatePaymentGatewayOrderOptions {
|
|
7913
7915
|
/** Information about the user who initiated the payment. */
|
|
7914
7916
|
chargedBy?: ChargedBy;
|
|
7915
7917
|
}
|
|
@@ -8658,4 +8660,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
8658
8660
|
unassignTags?: TagsTags;
|
|
8659
8661
|
}
|
|
8660
8662
|
|
|
8661
|
-
export { OrderActivityTypeEnumActivityType as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PaymentOptionType as E, SubscriptionFrequency as F, type GetPaymentCollectabilityStatusResponse as G, AdjustmentType as H, ItemTypePreset as I, JurisdictionType as J, PaymentStatus as K, FulfillmentStatus as L, type MaskedOrder as M, VatType as N, type Order as O, type Price as P, PickupMethod as Q, OrderStatus as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, DiscountType as X, DiscountReason as Y, LineItemQuantityChangeType as Z, ActivityType as _, type PreparePaymentCollectionOptions as a, type BillingAdjustment as a$, AttributionSource as a0, ChannelType as a1, AdditionalFeeSource as a2, OrderActionType as a3, SpecificItemsCouponBehavior as a4, ChargeType as a5, DeltaPaymentOptionType as a6, InventoryAction as a7, WebhookIdentityType as a8, VersioningMode as a9, CustomFieldGroup as aA, ValueType as aB, DepositType as aC, InvoiceStatus as aD, type OrderLineItem as aE, type ProductName as aF, type CatalogReference as aG, type DescriptionLine as aH, type DescriptionLineValueOneOf as aI, type DescriptionLineDescriptionLineValueOneOf as aJ, type DescriptionLineName as aK, type PlainTextValue as aL, type Color as aM, type FocalPoint as aN, type PhysicalProperties as aO, type Dimensions as aP, type ItemType as aQ, type ItemTypeItemTypeDataOneOf as aR, type ItemTaxFullDetails as aS, type LineItemTaxInfo as aT, type LineItemTaxBreakdown as aU, type DigitalFile as aV, type SubscriptionInfo as aW, type SubscriptionTitle as aX, type SubscriptionDescription as aY, type SubscriptionSettings as aZ, type FreeTrialPeriod as a_, PreviewEmailType as aa, State as ab, SiteCreatedContext as ac, Namespace as ad, DeleteStatus as ae, ScheduledAction as af, DurationUnit as ag, PaymentCollectabilityStatus as ah, PredefinedPaymentMethod as ai, RefundableStatus as aj, NonRefundableReason as ak, ManuallyRefundableReason as al, RestockType as am, TransactionStatus as an, AuthorizationCaptureStatus as ao, AuthorizationVoidStatus as ap, Reason as aq, ActionType as ar, ChargebackStatus as as, MembershipPaymentStatus as at, RefundStatus as au, SortOrder as av, OrderApprovalStrategy as aw, Placement as ax, SubdivisionType as ay, SourceType as az, type PreparePaymentCollectionResponse as b, type ShippingInformationChange as b$, type BillingAdjustmentPriceSummary as b0, type PriceDescription as b1, type LocationAndQuantity as b2, type TaxableAddress as b3, type TaxableAddressTaxableAddressDataOneOf as b4, type ExtendedFields as b5, type ModifierGroup as b6, type TranslatableString as b7, type ItemModifier as b8, type BuyerInfo as b9, type DiscountRuleName as bA, type LineItemDiscount as bB, type ItemCombination as bC, type ItemCombinationLineItem as bD, type Activity as bE, type ActivityContentOneOf as bF, type CustomActivity as bG, type MerchantComment as bH, type OrderRefunded as bI, type OrderCreatedFromExchange as bJ, type NewExchangeOrderCreated as bK, type LineItemExchangeData as bL, type DraftOrderChangesApplied as bM, type OrderChange as bN, type OrderChangeValueOneOf as bO, type LineItemChanges as bP, type LineItemQuantityChange as bQ, type LineItemPriceChange as bR, type LineItemProductNameChange as bS, type LineItemDescriptionLineChange as bT, type LineItemModifiersChange as bU, type ManagedLineItem as bV, type ManagedDiscount as bW, type TranslatedValue as bX, type LineItemAmount as bY, type ManagedAdditionalFee as bZ, type TotalPriceChange as b_, type BuyerInfoIdOneOf as ba, type CurrencyConversionDetails as bb, type PriceSummary as bc, type AddressWithContact as bd, type Address as be, type StreetAddress as bf, type AddressLocation as bg, type FullAddressContactDetails as bh, type VatId as bi, type V1ShippingInformation as bj, type DeliveryLogistics as bk, type DeliveryLogisticsAddressOneOf as bl, type PickupDetails as bm, type PickupAddress as bn, type DeliveryTimeSlot as bo, type ShippingPrice as bp, type ShippingRegion as bq, type TaxSummary as br, type OrderTaxInfo as bs, type OrderTaxBreakdown as bt, type AppliedDiscount as bu, type AppliedDiscountDiscountSourceOneOf as bv, type Coupon as bw, type MerchantDiscount as bx, type MerchantDiscountMerchantDiscountReasonOneOf as by, type DiscountRule as bz, type PreparePaymentCollectionApplicationErrors as c, type CommittedDiffsShippingUpdateInfoOneOf as c$, type ShippingInformation as c0, type SavedPaymentMethod as c1, type AuthorizedPaymentCreated as c2, type AuthorizedPaymentCaptured as c3, type AuthorizedPaymentVoided as c4, type RefundInitiated as c5, type RefundedPayment as c6, type RefundedPaymentKindOneOf as c7, type RegularPaymentRefund as c8, type GiftCardPaymentRefund as c9, type Balance as cA, type AdditionalFee as cB, type FulfillmentStatusesAggregate as cC, type Tags as cD, type TagList as cE, type Location as cF, type OrderSettings as cG, type OrderSettingsAllowedActionsOneOf as cH, type OrderSettingsEditableByOneOf as cI, type CustomAllowedActions as cJ, type OwnerApps as cK, type FormInfo as cL, type FormIdentifier as cM, type PlatformFeeSummary as cN, type PlatformFee as cO, type OrderApproved as cP, type OrdersExperiments as cQ, type OrderRejectedEventOrderRejected as cR, type OrderItemsRestocked as cS, type V1RestockItem as cT, type OrderImported as cU, type ImportedOrderDeleted as cV, type PaymentStatusUpdated as cW, type FulfillmentStatusUpdated as cX, type OrderCanceledEventOrderCanceled as cY, type OrderDeltasCommitted as cZ, type CommittedDiffs as c_, type MembershipPaymentRefund as ca, type PaymentRefunded as cb, type PaymentRefundFailed as cc, type RefundedAsStoreCredit as cd, type PaymentPending as ce, type PaymentPendingPaymentDetailsOneOf as cf, type RegularPayment as cg, type RegularPaymentPaymentMethodDetailsOneOf as ch, type CreditCardDetails as ci, type PaymentCanceled as cj, type PaymentCanceledPaymentDetailsOneOf as ck, type PaymentDeclined as cl, type PaymentDeclinedPaymentDetailsOneOf as cm, type ReceiptCreated as cn, type ReceiptCreatedReceiptInfoOneOf as co, type WixReceipt as cp, type ExternalReceipt as cq, type ReceiptSent as cr, type ReceiptSentReceiptInfoOneOf as cs, type ChargebackCreated as ct, type ChargebackReversed as cu, type CreatedBy as cv, type CreatedByStringOneOf as cw, type ChannelInfo as cx, type CustomField as cy, type BalanceSummary as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type SendMerchantOrderReceivedPushRequest as d$, type ItemChangedDetails as d0, type OrderLineItemChangedDetails as d1, type LineItemDelta as d2, type LineItemDeltaDeltaOneOf as d3, type AppliedDiscountDelta as d4, type AppliedDiscountDeltaDeltaOneOf as d5, type AdditionalFeeDelta as d6, type AdditionalFeeDeltaDeltaOneOf as d7, type DraftOrderCommitSettings as d8, type InventoryUpdateDetails as d9, type VersionedDocumentUpdateOperation as dA, type VersionedDeleteByIdsOperation as dB, type VersionedDocumentId as dC, type TriggerReindexRequest as dD, type TriggerReindexResponse as dE, type Empty as dF, type TriggerReindexOrderRequest as dG, type SendBuyerConfirmationEmailRequest as dH, type SendBuyerConfirmationEmailResponse as dI, type SendBuyerPaymentsReceivedEmailRequest as dJ, type SendBuyerPaymentsReceivedEmailResponse as dK, type SendBuyerPickupConfirmationEmailRequest as dL, type SendBuyerPickupConfirmationEmailResponse as dM, type BulkSendBuyerPickupConfirmationEmailsRequest as dN, type BulkSendBuyerPickupConfirmationEmailsResponse as dO, type SendBuyerShippingConfirmationEmailRequest as dP, type SendBuyerShippingConfirmationEmailResponse as dQ, type BulkSendBuyerShippingConfirmationEmailsRequest as dR, type BulkSendBuyerShippingConfirmationEmailsResponse as dS, type SendMerchantOrderReceivedNotificationRequest as dT, type SendMerchantOrderReceivedNotificationResponse as dU, type SendCancelRefundEmailRequest as dV, type SendCancelRefundEmailResponse as dW, type SendRefundEmailRequest as dX, type SendRefundEmailResponse as dY, type SendFulfillmentEmailRequest as dZ, type SendFulfillmentEmailResponse as d_, type ImportOrderRequest as da, type ImportOrderResponse as db, type SetOrderNumberCounterRequest as dc, type SetOrderNumberCounterResponse as dd, type BulkDeleteImportedOrdersRequest as de, type BulkDeleteImportedOrdersResponse as df, type DomainEvent as dg, type DomainEventBodyOneOf as dh, type EntityCreatedEvent as di, type RestoreInfo as dj, type EntityUpdatedEvent as dk, type EntityDeletedEvent as dl, type ActionEvent as dm, type MessageEnvelope as dn, type IdentificationData as dp, type IdentificationDataIdOneOf as dq, type AccountInfo as dr, type UpdateInternalDocumentsEvent as ds, type UpdateInternalDocumentsEventOperationOneOf as dt, type InternalDocument as du, type InternalDocumentUpdateOperation as dv, type DeleteByIdsOperation as dw, type DeleteByFilterOperation as dx, type InternalDocumentUpdateByFilterOperation as dy, type InternalUpdateExistingOperation as dz, type PaymentCapture as e, type PreparePaymentCollectionRequest as e$, type SendMerchantOrderReceivedPushResponse as e0, type PreviewEmailByTypeRequest as e1, type PreviewEmailByTypeResponse as e2, type PreviewRefundEmailRequest as e3, type RefundDetails as e4, type RefundItem as e5, type LineItemRefund as e6, type AdditionalFeeRefund as e7, type ShippingRefund as e8, type PreviewRefundEmailResponse as e9, type ServiceProvisioned as eA, type ServiceRemoved as eB, type SiteRenamed as eC, type SiteHardDeleted as eD, type NamespaceChanged as eE, type StudioAssigned as eF, type StudioUnassigned as eG, type SiteUrlChanged as eH, type SitePurgedExternally as eI, type OdeditorAssigned as eJ, type OdeditorUnassigned as eK, type PicassoAssigned as eL, type PicassoUnassigned as eM, type WixelAssigned as eN, type WixelUnassigned as eO, type StudioTwoAssigned as eP, type StudioTwoUnassigned as eQ, type UserDomainMediaEnabled as eR, type UserDomainMediaDisabled as eS, type EditorlessAssigned as eT, type EditorlessUnassigned as eU, type HasCustomEmailConfigurationsRequest as eV, type HasCustomEmailConfigurationsResponse as eW, type AddToAutomationMigrationPopulationRequest as eX, type AddToAutomationMigrationPopulationResponse as eY, type IsInAutomationMigrationPopulationRequest as eZ, type IsInAutomationMigrationPopulationResponse as e_, type PreviewCancelEmailRequest as ea, type PreviewCancelEmailResponse as eb, type PreviewCancelRefundEmailRequest as ec, type PreviewCancelRefundEmailResponse as ed, type PreviewBuyerPaymentsReceivedEmailRequest as ee, type PreviewBuyerPaymentsReceivedEmailResponse as ef, type PreviewBuyerConfirmationEmailRequest as eg, type PreviewBuyerConfirmationEmailResponse as eh, type PreviewBuyerPickupConfirmationEmailRequest as ei, type PreviewBuyerPickupConfirmationEmailResponse as ej, type PreviewShippingConfirmationEmailRequest as ek, type PreviewShippingConfirmationEmailResponse as el, type PreviewResendDownloadLinksEmailRequest as em, type PreviewResendDownloadLinksEmailResponse as en, type MetaSiteSpecialEvent as eo, type MetaSiteSpecialEventPayloadOneOf as ep, type Asset as eq, type SiteCreated as er, type SiteTransferred as es, type SiteDeleted as et, type DeleteContext as eu, type SiteUndeleted as ev, type SitePublished as ew, type SiteUnpublished as ex, type SiteMarkedAsTemplate as ey, type SiteMarkedAsWixSite as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type CaptureAuthorizedPaymentsRequest as f$, type RedirectUrls as f0, type DelayedCaptureSettings as f1, type Duration as f2, type GetPaymentCollectabilityStatusRequest as f3, type RecordManuallyCollectedPaymentRequest as f4, type UserDefinedPaymentMethodName as f5, type UserDefinedPaymentMethodNameKindOneOf as f6, type RecordManuallyCollectedPaymentResponse as f7, type MarkOrderAsPaidRequest as f8, type MarkOrderAsPaidResponse as f9, type PaymentPaymentDetailsOneOf as fA, type PaymentReceiptInfoOneOf as fB, type RegularPaymentDetails as fC, type RegularPaymentDetailsPaymentMethodDetailsOneOf as fD, type CreditCardPaymentMethodDetails as fE, type AuthorizationDetails as fF, type AuthorizationCapture as fG, type AuthorizationActionFailureDetails as fH, type AuthorizationVoid as fI, type V1ScheduledAction as fJ, type Chargeback as fK, type PaymentMethodName as fL, type GiftCardPaymentDetails as fM, type MembershipPaymentDetails as fN, type WixReceiptInfo as fO, type ExternalReceiptInfo as fP, type Refund as fQ, type RefundTransaction as fR, type RefundStatusInfo as fS, type AggregatedRefundSummary as fT, type RefundItemsBreakdown as fU, type LineItemRefundSummary as fV, type CalculateRefundRequest as fW, type CalculateRefundItemRequest as fX, type CalculateRefundResponse as fY, type CalculateRefundItemResponse as fZ, type VoidAuthorizedPaymentsRequest as f_, type BulkMarkOrdersAsPaidRequest as fa, type BulkMarkOrdersAsPaidResponse as fb, type BulkOrderResult as fc, type ItemMetadata as fd, type ApplicationError as fe, type BulkActionMetadata as ff, type GetRefundabilityStatusRequest as fg, type GetRefundabilityStatusResponse as fh, type Refundability as fi, type RefundabilityAdditionalRefundabilityInfoOneOf as fj, type CreatePaymentGatewayOrderRequest as fk, type ChargedBy as fl, type CreatePaymentGatewayOrderResponse as fm, type ChargeMembershipsRequest as fn, type MembershipChargeItem as fo, type MembershipName as fp, type ServiceProperties as fq, type ChargeMembershipsResponse as fr, type TriggerRefundRequest as fs, type PaymentRefund as ft, type RefundSideEffects as fu, type RestockInfo as fv, type RestockItem as fw, type TriggerRefundResponse as fx, type OrderTransactions as fy, type Payment as fz, type GetOrderApplicationErrors as g, type UpdateOrderLineItemsResponse as g$, type ChargeSavedPaymentMethodRequest as g0, type ChargeSavedPaymentMethodResponse as g1, type DiffmatokyPayload as g2, type ErrorInformation as g3, type GetOrderRequest as g4, type GetOrderResponse as g5, type InternalQueryOrdersRequest as g6, type PlatformQuery as g7, type PlatformQueryPagingMethodOneOf as g8, type Sorting as g9, type V1LineItemDeltaDeltaOneOf as gA, type CommitDeltasResponse as gB, type ArchiveOrderRequest as gC, type ArchiveOrderResponse as gD, type BulkArchiveOrdersRequest as gE, type BulkArchiveOrdersResponse as gF, type BulkArchiveOrdersByFilterRequest as gG, type BulkArchiveOrdersByFilterResponse as gH, type UnArchiveOrderRequest as gI, type UnArchiveOrderResponse as gJ, type BulkUnArchiveOrdersRequest as gK, type BulkUnArchiveOrdersResponse as gL, type BulkUnArchiveOrdersByFilterRequest as gM, type BulkUnArchiveOrdersByFilterResponse as gN, type UpdateBuyerInfoRequest as gO, type BuyerInfoUpdate as gP, type UpdateBuyerInfoResponse as gQ, type UpdateBuyerEmailRequest as gR, type UpdateBuyerEmailResponse as gS, type UpdateOrderShippingAddressRequest as gT, type UpdateOrderShippingAddressResponse as gU, type UpdateBillingContactDetailsRequest as gV, type UpdateBillingContactDetailsResponse as gW, type UpdateOrderLineItemRequest as gX, type UpdateOrderLineItemResponse as gY, type UpdateOrderLineItemsRequest as gZ, type MaskedOrderLineItem as g_, type PlatformPaging as ga, type CursorPaging as gb, type InternalQueryOrdersResponse as gc, type PlatformPagingMetadata as gd, type Cursors as ge, type QueryOrderRequest as gf, type QueryOrderResponse as gg, type SearchOrdersRequest as gh, type CursorSearch as gi, type CursorSearchPagingMethodOneOf as gj, type CursorPagingMetadata as gk, type CreateOrderRequest as gl, type OrderCreationSettings as gm, type OrderCreationSettingsEditableByOneOf as gn, type OrderCreateNotifications as go, type CreateOrderResponse as gp, type UpdateOrderRequest as gq, type UpdateOrderResponse as gr, type BulkUpdateOrdersRequest as gs, type CommitDeltasRequest as gt, type DraftOrderDiffs as gu, type DraftOrderDiffsShippingUpdateInfoOneOf as gv, type DraftOrderDiffsBuyerUpdateInfoOneOf as gw, type DraftOrderDiffsBillingUpdateInfoOneOf as gx, type DraftOrderDiffsRecipientUpdateInfoOneOf as gy, type V1LineItemDelta as gz, type OrderSearch as h, type AggregateOrdersRequest as h$, type AddInternalActivityRequest as h0, type InternalActivity as h1, type InternalActivityContentOneOf as h2, type OrderPlaced as h3, type OrderPaid as h4, type OrderFulfilled as h5, type OrderNotFulfilled as h6, type OrderCanceled as h7, type DownloadLinkSent as h8, type TrackingNumberAdded as h9, type MarkOrderAsSeenByHumanResponse as hA, type CancelOrderRequest as hB, type UpdateOrderStatusRequest as hC, type UpdateOrderStatusResponse as hD, type MarkAsFulfilledRequest as hE, type MarkAsFulfilledResponse as hF, type BulkMarkAsFulfilledRequest as hG, type BulkMarkAsFulfilledResponse as hH, type BulkMarkAsFulfilledByFilterRequest as hI, type BulkMarkAsFulfilledByFilterResponse as hJ, type MarkAsUnfulfilledRequest as hK, type MarkAsUnfulfilledResponse as hL, type BulkMarkAsUnfulfilledRequest as hM, type BulkMarkAsUnfulfilledResponse as hN, type BulkMarkAsUnfulfilledByFilterRequest as hO, type BulkMarkAsUnfulfilledByFilterResponse as hP, type BulkSetBusinessLocationRequest as hQ, type BulkSetBusinessLocationResponse as hR, type BulkSetBusinessLocationResult as hS, type V1MarkOrderAsPaidRequest as hT, type V1MarkOrderAsPaidResponse as hU, type V1BulkMarkOrdersAsPaidRequest as hV, type V1BulkMarkOrdersAsPaidResponse as hW, type V1CreatePaymentGatewayOrderRequest as hX, type V1CreatePaymentGatewayOrderResponse as hY, type GetShipmentsRequest as hZ, type GetShipmentsResponse as h_, type TrackingNumberEdited as ha, type TrackingLinkAdded as hb, type ShippingConfirmationEmailSent as hc, type InvoiceAdded as hd, type InvoiceSent as he, type FulfillerEmailSent as hf, type ShippingAddressEdited as hg, type EmailEdited as hh, type PickupReadyEmailSent as hi, type OrderPartiallyPaid as hj, type OrderPending as hk, type OrderRejected as hl, type AddInternalActivityResponse as hm, type AddActivityRequest as hn, type PublicActivity as ho, type PublicActivityContentOneOf as hp, type AddActivityResponse as hq, type AddActivitiesRequest as hr, type UpdateActivityRequest as hs, type UpdateActivityResponse as ht, type DeleteActivityRequest as hu, type DeleteActivityResponse as hv, type UpdateLineItemsDescriptionLinesRequest as hw, type LineItemUpdate as hx, type UpdateLineItemsDescriptionLinesResponse as hy, type MarkOrderAsSeenByHumanRequest as hz, type CreateOrderOptions as i, type OrderSearchSpec as i$, type AggregateOrdersResponse as i0, type DecrementItemsQuantityRequest as i1, type DecrementData as i2, type DecrementItemsQuantityResponse as i3, type BulkUpdateOrderTagsRequest as i4, type TagsTags as i5, type TagsTagList as i6, type BulkUpdateOrderTagsResult as i7, type SendOrderUpdatedDomainEventRequest as i8, type SendOrderUpdatedDomainEventResponse as i9, type LineItemTax as iA, type Source as iB, type LineItemMetaData as iC, type Locale as iD, type TotalPrice as iE, type ItemizedFee as iF, type Discount as iG, type DiscountOneDiscountTypeOneOf as iH, type CalculatedTaxes as iI, type CalculatedTax as iJ, type Payments as iK, type InvoicesPayment as iL, type MetaData as iM, type InvoiceDynamicPriceTotals as iN, type CustomFieldValue as iO, type Value as iP, type Deposit as iQ, type BaseEventMetadata as iR, type EventMetadata as iS, type AccountInfoMetadata as iT, type SetOrderNumberCounterOptions as iU, type BulkDeleteImportedOrdersOptions as iV, type RecordManuallyCollectedPaymentOptions as iW, type MarkOrderAsPaidOptions as iX, type CreatePaymentGatewayOrderOptions as iY, type ChargeMembershipsOptions as iZ, type TriggerRefundOptions as i_, type Task as ia, type TaskKey as ib, type TaskAction as ic, type TaskActionActionOneOf as id, type Complete as ie, type Cancel as ig, type Reschedule as ih, type InvoiceSentEvent as ii, type IdAndVersion as ij, type InvoiceFields as ik, type Customer as il, type Email as im, type QuotesAddress as io, type AddressDescription as ip, type Phone as iq, type Company as ir, type CommonAddress as is, type CommonAddressStreetOneOf as it, type Subdivision as iu, type StandardDetails as iv, type InvoiceDates as iw, type LineItems as ix, type LineItem as iy, type BigDecimalWrapper as iz, type CreateOrderApplicationErrors as j, type DepositTypeWithLiterals as j$, type UpdateOrderLineItemIdentifiers as j0, type UpdateOrderLineItem as j1, type UpdateActivityIdentifiers as j2, type DeleteActivityIdentifiers as j3, type AggregateOrdersOptions as j4, utils as j5, type DescriptionLineTypeWithLiterals as j6, type DimensionsUnitWithLiterals as j7, type ItemTypePresetWithLiterals as j8, type PaymentOptionTypeWithLiterals as j9, type StateWithLiterals as jA, type SiteCreatedContextWithLiterals as jB, type NamespaceWithLiterals as jC, type DeleteStatusWithLiterals as jD, type ScheduledActionWithLiterals as jE, type DurationUnitWithLiterals as jF, type PaymentCollectabilityStatusWithLiterals as jG, type PredefinedPaymentMethodWithLiterals as jH, type RefundableStatusWithLiterals as jI, type NonRefundableReasonWithLiterals as jJ, type ManuallyRefundableReasonWithLiterals as jK, type RestockTypeWithLiterals as jL, type TransactionStatusWithLiterals as jM, type AuthorizationCaptureStatusWithLiterals as jN, type AuthorizationVoidStatusWithLiterals as jO, type ReasonWithLiterals as jP, type ActionTypeWithLiterals as jQ, type ChargebackStatusWithLiterals as jR, type MembershipPaymentStatusWithLiterals as jS, type RefundStatusWithLiterals as jT, type SortOrderWithLiterals as jU, type OrderApprovalStrategyWithLiterals as jV, type PlacementWithLiterals as jW, type SubdivisionTypeWithLiterals as jX, type SourceTypeWithLiterals as jY, type CustomFieldGroupWithLiterals as jZ, type ValueTypeWithLiterals as j_, type JurisdictionTypeWithLiterals as ja, type SubscriptionFrequencyWithLiterals as jb, type AdjustmentTypeWithLiterals as jc, type TaxableAddressTypeWithLiterals as jd, type PaymentStatusWithLiterals as je, type FulfillmentStatusWithLiterals as jf, type WeightUnitWithLiterals as jg, type VatTypeWithLiterals as jh, type PickupMethodWithLiterals as ji, type OrderStatusWithLiterals as jj, type DiscountTypeWithLiterals as jk, type DiscountReasonWithLiterals as jl, type LineItemQuantityChangeTypeWithLiterals as jm, type ActivityTypeWithLiterals as jn, type OrderActivityTypeEnumActivityTypeWithLiterals as jo, type AttributionSourceWithLiterals as jp, type ChannelTypeWithLiterals as jq, type AdditionalFeeSourceWithLiterals as jr, type OrderActionTypeWithLiterals as js, type SpecificItemsCouponBehaviorWithLiterals as jt, type ChargeTypeWithLiterals as ju, type DeltaPaymentOptionTypeWithLiterals as jv, type InventoryActionWithLiterals as jw, type WebhookIdentityTypeWithLiterals as jx, type VersioningModeWithLiterals as jy, type PreviewEmailTypeWithLiterals as jz, type UpdateOrderApplicationErrors as k, type InvoiceStatusWithLiterals as k0, type RecordManuallyCollectedPaymentApplicationErrors as k1, type MarkOrderAsPaidApplicationErrors as k2, type CreatePaymentGatewayOrderApplicationErrors as k3, type TriggerRefundApplicationErrors as k4, type UpdateOrderStatusApplicationErrors as k5, type CommonSearchWithEntityContext as k6, onOrderApproved as k7, onOrderCanceled as k8, onOrderCommitted as k9, onOrderCreated as ka, onOrderFulfilled as kb, onOrderPaymentStatusUpdated as kc, onOrderUpdated as kd, preparePaymentCollection as ke, getPaymentCollectabilityStatus as kf, voidAuthorizedPayments as kg, captureAuthorizedPayments as kh, getOrder as ki, createOrder as kj, updateOrder as kk, bulkUpdateOrders as kl, addActivities as km, cancelOrder as kn, bulkUpdateOrderTags as ko, type BulkUpdateOrdersResponse as l, type AddActivitiesResponse as m, type CancelOrderOptions as n, type CancelOrderResponse as o, type CancelOrderApplicationErrors as p, type BulkUpdateOrderTagsOptions as q, type BulkUpdateOrderTagsResponse as r, type OrderApprovedEnvelope as s, type OrderCanceledEnvelope as t, type OrderCommittedEnvelope as u, type OrderCreatedEnvelope as v, type OrderFulfilledEnvelope as w, type OrderPaymentStatusUpdatedEnvelope as x, type OrderUpdatedEnvelope as y, DimensionsUnit as z };
|
|
8663
|
+
export { OrderActivityTypeEnumActivityType as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PaymentOptionType as E, SubscriptionFrequency as F, type GetPaymentCollectabilityStatusResponse as G, AdjustmentType as H, ItemTypePreset as I, JurisdictionType as J, PaymentStatus as K, FulfillmentStatus as L, type MaskedOrder as M, VatType as N, type Order as O, type Price as P, PickupMethod as Q, OrderStatus as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, DiscountType as X, DiscountReason as Y, LineItemQuantityChangeType as Z, ActivityType as _, type PreparePaymentCollectionOptions as a, type BillingAdjustment as a$, AttributionSource as a0, ChannelType as a1, AdditionalFeeSource as a2, OrderActionType as a3, SpecificItemsCouponBehavior as a4, ChargeType as a5, DeltaPaymentOptionType as a6, InventoryAction as a7, WebhookIdentityType as a8, VersioningMode as a9, CustomFieldGroup as aA, ValueType as aB, DepositType as aC, InvoiceStatus as aD, type OrderLineItem as aE, type ProductName as aF, type CatalogReference as aG, type DescriptionLine as aH, type DescriptionLineValueOneOf as aI, type DescriptionLineDescriptionLineValueOneOf as aJ, type DescriptionLineName as aK, type PlainTextValue as aL, type Color as aM, type FocalPoint as aN, type PhysicalProperties as aO, type Dimensions as aP, type ItemType as aQ, type ItemTypeItemTypeDataOneOf as aR, type ItemTaxFullDetails as aS, type LineItemTaxInfo as aT, type LineItemTaxBreakdown as aU, type DigitalFile as aV, type SubscriptionInfo as aW, type SubscriptionTitle as aX, type SubscriptionDescription as aY, type SubscriptionSettings as aZ, type FreeTrialPeriod as a_, PreviewEmailType as aa, State as ab, SiteCreatedContext as ac, Namespace as ad, DeleteStatus as ae, ScheduledAction as af, DurationUnit as ag, PaymentCollectabilityStatus as ah, PredefinedPaymentMethod as ai, RefundableStatus as aj, NonRefundableReason as ak, ManuallyRefundableReason as al, RestockType as am, TransactionStatus as an, AuthorizationCaptureStatus as ao, AuthorizationVoidStatus as ap, Reason as aq, ActionType as ar, ChargebackStatus as as, MembershipPaymentStatus as at, RefundStatus as au, SortOrder as av, OrderApprovalStrategy as aw, Placement as ax, SubdivisionType as ay, SourceType as az, type PreparePaymentCollectionResponse as b, type ShippingInformationChange as b$, type BillingAdjustmentPriceSummary as b0, type PriceDescription as b1, type LocationAndQuantity as b2, type TaxableAddress as b3, type TaxableAddressTaxableAddressDataOneOf as b4, type ExtendedFields as b5, type ModifierGroup as b6, type TranslatableString as b7, type ItemModifier as b8, type BuyerInfo as b9, type DiscountRuleName as bA, type LineItemDiscount as bB, type ItemCombination as bC, type ItemCombinationLineItem as bD, type Activity as bE, type ActivityContentOneOf as bF, type CustomActivity as bG, type MerchantComment as bH, type OrderRefunded as bI, type OrderCreatedFromExchange as bJ, type NewExchangeOrderCreated as bK, type LineItemExchangeData as bL, type DraftOrderChangesApplied as bM, type OrderChange as bN, type OrderChangeValueOneOf as bO, type LineItemChanges as bP, type LineItemQuantityChange as bQ, type LineItemPriceChange as bR, type LineItemProductNameChange as bS, type LineItemDescriptionLineChange as bT, type LineItemModifiersChange as bU, type ManagedLineItem as bV, type ManagedDiscount as bW, type TranslatedValue as bX, type LineItemAmount as bY, type ManagedAdditionalFee as bZ, type TotalPriceChange as b_, type BuyerInfoIdOneOf as ba, type CurrencyConversionDetails as bb, type PriceSummary as bc, type AddressWithContact as bd, type Address as be, type StreetAddress as bf, type AddressLocation as bg, type FullAddressContactDetails as bh, type VatId as bi, type V1ShippingInformation as bj, type DeliveryLogistics as bk, type DeliveryLogisticsAddressOneOf as bl, type PickupDetails as bm, type PickupAddress as bn, type DeliveryTimeSlot as bo, type ShippingPrice as bp, type ShippingRegion as bq, type TaxSummary as br, type OrderTaxInfo as bs, type OrderTaxBreakdown as bt, type AppliedDiscount as bu, type AppliedDiscountDiscountSourceOneOf as bv, type Coupon as bw, type MerchantDiscount as bx, type MerchantDiscountMerchantDiscountReasonOneOf as by, type DiscountRule as bz, type PreparePaymentCollectionApplicationErrors as c, type CommittedDiffsShippingUpdateInfoOneOf as c$, type ShippingInformation as c0, type SavedPaymentMethod as c1, type AuthorizedPaymentCreated as c2, type AuthorizedPaymentCaptured as c3, type AuthorizedPaymentVoided as c4, type RefundInitiated as c5, type RefundedPayment as c6, type RefundedPaymentKindOneOf as c7, type RegularPaymentRefund as c8, type GiftCardPaymentRefund as c9, type Balance as cA, type AdditionalFee as cB, type FulfillmentStatusesAggregate as cC, type Tags as cD, type TagList as cE, type Location as cF, type OrderSettings as cG, type OrderSettingsAllowedActionsOneOf as cH, type OrderSettingsEditableByOneOf as cI, type CustomAllowedActions as cJ, type OwnerApps as cK, type FormInfo as cL, type FormIdentifier as cM, type PlatformFeeSummary as cN, type PlatformFee as cO, type OrderApproved as cP, type OrdersExperiments as cQ, type OrderRejectedEventOrderRejected as cR, type OrderItemsRestocked as cS, type V1RestockItem as cT, type OrderImported as cU, type ImportedOrderDeleted as cV, type PaymentStatusUpdated as cW, type FulfillmentStatusUpdated as cX, type OrderCanceledEventOrderCanceled as cY, type OrderDeltasCommitted as cZ, type CommittedDiffs as c_, type MembershipPaymentRefund as ca, type PaymentRefunded as cb, type PaymentRefundFailed as cc, type RefundedAsStoreCredit as cd, type PaymentPending as ce, type PaymentPendingPaymentDetailsOneOf as cf, type RegularPayment as cg, type RegularPaymentPaymentMethodDetailsOneOf as ch, type CreditCardDetails as ci, type PaymentCanceled as cj, type PaymentCanceledPaymentDetailsOneOf as ck, type PaymentDeclined as cl, type PaymentDeclinedPaymentDetailsOneOf as cm, type ReceiptCreated as cn, type ReceiptCreatedReceiptInfoOneOf as co, type WixReceipt as cp, type ExternalReceipt as cq, type ReceiptSent as cr, type ReceiptSentReceiptInfoOneOf as cs, type ChargebackCreated as ct, type ChargebackReversed as cu, type CreatedBy as cv, type CreatedByStringOneOf as cw, type ChannelInfo as cx, type CustomField as cy, type BalanceSummary as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type SendMerchantOrderReceivedPushRequest as d$, type ItemChangedDetails as d0, type OrderLineItemChangedDetails as d1, type LineItemDelta as d2, type LineItemDeltaDeltaOneOf as d3, type AppliedDiscountDelta as d4, type AppliedDiscountDeltaDeltaOneOf as d5, type AdditionalFeeDelta as d6, type AdditionalFeeDeltaDeltaOneOf as d7, type DraftOrderCommitSettings as d8, type InventoryUpdateDetails as d9, type VersionedDocumentUpdateOperation as dA, type VersionedDeleteByIdsOperation as dB, type VersionedDocumentId as dC, type TriggerReindexRequest as dD, type TriggerReindexResponse as dE, type Empty as dF, type TriggerReindexOrderRequest as dG, type SendBuyerConfirmationEmailRequest as dH, type SendBuyerConfirmationEmailResponse as dI, type SendBuyerPaymentsReceivedEmailRequest as dJ, type SendBuyerPaymentsReceivedEmailResponse as dK, type SendBuyerPickupConfirmationEmailRequest as dL, type SendBuyerPickupConfirmationEmailResponse as dM, type BulkSendBuyerPickupConfirmationEmailsRequest as dN, type BulkSendBuyerPickupConfirmationEmailsResponse as dO, type SendBuyerShippingConfirmationEmailRequest as dP, type SendBuyerShippingConfirmationEmailResponse as dQ, type BulkSendBuyerShippingConfirmationEmailsRequest as dR, type BulkSendBuyerShippingConfirmationEmailsResponse as dS, type SendMerchantOrderReceivedNotificationRequest as dT, type SendMerchantOrderReceivedNotificationResponse as dU, type SendCancelRefundEmailRequest as dV, type SendCancelRefundEmailResponse as dW, type SendRefundEmailRequest as dX, type SendRefundEmailResponse as dY, type SendFulfillmentEmailRequest as dZ, type SendFulfillmentEmailResponse as d_, type ImportOrderRequest as da, type ImportOrderResponse as db, type SetOrderNumberCounterRequest as dc, type SetOrderNumberCounterResponse as dd, type BulkDeleteImportedOrdersRequest as de, type BulkDeleteImportedOrdersResponse as df, type DomainEvent as dg, type DomainEventBodyOneOf as dh, type EntityCreatedEvent as di, type RestoreInfo as dj, type EntityUpdatedEvent as dk, type EntityDeletedEvent as dl, type ActionEvent as dm, type MessageEnvelope as dn, type IdentificationData as dp, type IdentificationDataIdOneOf as dq, type AccountInfo as dr, type UpdateInternalDocumentsEvent as ds, type UpdateInternalDocumentsEventOperationOneOf as dt, type InternalDocument as du, type InternalDocumentUpdateOperation as dv, type DeleteByIdsOperation as dw, type DeleteByFilterOperation as dx, type InternalDocumentUpdateByFilterOperation as dy, type InternalUpdateExistingOperation as dz, type PaymentCapture as e, type PreparePaymentCollectionRequest as e$, type SendMerchantOrderReceivedPushResponse as e0, type PreviewEmailByTypeRequest as e1, type PreviewEmailByTypeResponse as e2, type PreviewRefundEmailRequest as e3, type RefundDetails as e4, type RefundItem as e5, type LineItemRefund as e6, type AdditionalFeeRefund as e7, type ShippingRefund as e8, type PreviewRefundEmailResponse as e9, type ServiceProvisioned as eA, type ServiceRemoved as eB, type SiteRenamed as eC, type SiteHardDeleted as eD, type NamespaceChanged as eE, type StudioAssigned as eF, type StudioUnassigned as eG, type SiteUrlChanged as eH, type SitePurgedExternally as eI, type OdeditorAssigned as eJ, type OdeditorUnassigned as eK, type PicassoAssigned as eL, type PicassoUnassigned as eM, type WixelAssigned as eN, type WixelUnassigned as eO, type StudioTwoAssigned as eP, type StudioTwoUnassigned as eQ, type UserDomainMediaEnabled as eR, type UserDomainMediaDisabled as eS, type EditorlessAssigned as eT, type EditorlessUnassigned as eU, type HasCustomEmailConfigurationsRequest as eV, type HasCustomEmailConfigurationsResponse as eW, type AddToAutomationMigrationPopulationRequest as eX, type AddToAutomationMigrationPopulationResponse as eY, type IsInAutomationMigrationPopulationRequest as eZ, type IsInAutomationMigrationPopulationResponse as e_, type PreviewCancelEmailRequest as ea, type PreviewCancelEmailResponse as eb, type PreviewCancelRefundEmailRequest as ec, type PreviewCancelRefundEmailResponse as ed, type PreviewBuyerPaymentsReceivedEmailRequest as ee, type PreviewBuyerPaymentsReceivedEmailResponse as ef, type PreviewBuyerConfirmationEmailRequest as eg, type PreviewBuyerConfirmationEmailResponse as eh, type PreviewBuyerPickupConfirmationEmailRequest as ei, type PreviewBuyerPickupConfirmationEmailResponse as ej, type PreviewShippingConfirmationEmailRequest as ek, type PreviewShippingConfirmationEmailResponse as el, type PreviewResendDownloadLinksEmailRequest as em, type PreviewResendDownloadLinksEmailResponse as en, type MetaSiteSpecialEvent as eo, type MetaSiteSpecialEventPayloadOneOf as ep, type Asset as eq, type SiteCreated as er, type SiteTransferred as es, type SiteDeleted as et, type DeleteContext as eu, type SiteUndeleted as ev, type SitePublished as ew, type SiteUnpublished as ex, type SiteMarkedAsTemplate as ey, type SiteMarkedAsWixSite as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type CaptureAuthorizedPaymentsRequest as f$, type RedirectUrls as f0, type DelayedCaptureSettings as f1, type Duration as f2, type GetPaymentCollectabilityStatusRequest as f3, type RecordManuallyCollectedPaymentRequest as f4, type UserDefinedPaymentMethodName as f5, type UserDefinedPaymentMethodNameKindOneOf as f6, type RecordManuallyCollectedPaymentResponse as f7, type MarkOrderAsPaidRequest as f8, type MarkOrderAsPaidResponse as f9, type PaymentPaymentDetailsOneOf as fA, type PaymentReceiptInfoOneOf as fB, type RegularPaymentDetails as fC, type RegularPaymentDetailsPaymentMethodDetailsOneOf as fD, type CreditCardPaymentMethodDetails as fE, type AuthorizationDetails as fF, type AuthorizationCapture as fG, type AuthorizationActionFailureDetails as fH, type AuthorizationVoid as fI, type V1ScheduledAction as fJ, type Chargeback as fK, type PaymentMethodName as fL, type GiftCardPaymentDetails as fM, type MembershipPaymentDetails as fN, type WixReceiptInfo as fO, type ExternalReceiptInfo as fP, type Refund as fQ, type RefundTransaction as fR, type RefundStatusInfo as fS, type AggregatedRefundSummary as fT, type RefundItemsBreakdown as fU, type LineItemRefundSummary as fV, type CalculateRefundRequest as fW, type CalculateRefundItemRequest as fX, type CalculateRefundResponse as fY, type CalculateRefundItemResponse as fZ, type VoidAuthorizedPaymentsRequest as f_, type BulkMarkOrdersAsPaidRequest as fa, type BulkMarkOrdersAsPaidResponse as fb, type BulkOrderResult as fc, type ItemMetadata as fd, type ApplicationError as fe, type BulkActionMetadata as ff, type GetRefundabilityStatusRequest as fg, type GetRefundabilityStatusResponse as fh, type Refundability as fi, type RefundabilityAdditionalRefundabilityInfoOneOf as fj, type CreatePaymentGatewayOrderRequest as fk, type ChargedBy as fl, type CreatePaymentGatewayOrderResponse as fm, type ChargeMembershipsRequest as fn, type MembershipChargeItem as fo, type MembershipName as fp, type ServiceProperties as fq, type ChargeMembershipsResponse as fr, type TriggerRefundRequest as fs, type PaymentRefund as ft, type RefundSideEffects as fu, type RestockInfo as fv, type RestockItem as fw, type TriggerRefundResponse as fx, type OrderTransactions as fy, type Payment as fz, type GetOrderApplicationErrors as g, type UpdateOrderLineItemsResponse as g$, type ChargeSavedPaymentMethodRequest as g0, type ChargeSavedPaymentMethodResponse as g1, type DiffmatokyPayload as g2, type ErrorInformation as g3, type GetOrderRequest as g4, type GetOrderResponse as g5, type InternalQueryOrdersRequest as g6, type PlatformQuery as g7, type PlatformQueryPagingMethodOneOf as g8, type Sorting as g9, type V1LineItemDeltaDeltaOneOf as gA, type CommitDeltasResponse as gB, type ArchiveOrderRequest as gC, type ArchiveOrderResponse as gD, type BulkArchiveOrdersRequest as gE, type BulkArchiveOrdersResponse as gF, type BulkArchiveOrdersByFilterRequest as gG, type BulkArchiveOrdersByFilterResponse as gH, type UnArchiveOrderRequest as gI, type UnArchiveOrderResponse as gJ, type BulkUnArchiveOrdersRequest as gK, type BulkUnArchiveOrdersResponse as gL, type BulkUnArchiveOrdersByFilterRequest as gM, type BulkUnArchiveOrdersByFilterResponse as gN, type UpdateBuyerInfoRequest as gO, type BuyerInfoUpdate as gP, type UpdateBuyerInfoResponse as gQ, type UpdateBuyerEmailRequest as gR, type UpdateBuyerEmailResponse as gS, type UpdateOrderShippingAddressRequest as gT, type UpdateOrderShippingAddressResponse as gU, type UpdateBillingContactDetailsRequest as gV, type UpdateBillingContactDetailsResponse as gW, type UpdateOrderLineItemRequest as gX, type UpdateOrderLineItemResponse as gY, type UpdateOrderLineItemsRequest as gZ, type MaskedOrderLineItem as g_, type PlatformPaging as ga, type CursorPaging as gb, type InternalQueryOrdersResponse as gc, type PlatformPagingMetadata as gd, type Cursors as ge, type QueryOrderRequest as gf, type QueryOrderResponse as gg, type SearchOrdersRequest as gh, type CursorSearch as gi, type CursorSearchPagingMethodOneOf as gj, type CursorPagingMetadata as gk, type CreateOrderRequest as gl, type OrderCreationSettings as gm, type OrderCreationSettingsEditableByOneOf as gn, type OrderCreateNotifications as go, type CreateOrderResponse as gp, type UpdateOrderRequest as gq, type UpdateOrderResponse as gr, type BulkUpdateOrdersRequest as gs, type CommitDeltasRequest as gt, type DraftOrderDiffs as gu, type DraftOrderDiffsShippingUpdateInfoOneOf as gv, type DraftOrderDiffsBuyerUpdateInfoOneOf as gw, type DraftOrderDiffsBillingUpdateInfoOneOf as gx, type DraftOrderDiffsRecipientUpdateInfoOneOf as gy, type V1LineItemDelta as gz, type OrderSearch as h, type AggregateOrdersRequest as h$, type AddInternalActivityRequest as h0, type InternalActivity as h1, type InternalActivityContentOneOf as h2, type OrderPlaced as h3, type OrderPaid as h4, type OrderFulfilled as h5, type OrderNotFulfilled as h6, type OrderCanceled as h7, type DownloadLinkSent as h8, type TrackingNumberAdded as h9, type MarkOrderAsSeenByHumanResponse as hA, type CancelOrderRequest as hB, type UpdateOrderStatusRequest as hC, type UpdateOrderStatusResponse as hD, type MarkAsFulfilledRequest as hE, type MarkAsFulfilledResponse as hF, type BulkMarkAsFulfilledRequest as hG, type BulkMarkAsFulfilledResponse as hH, type BulkMarkAsFulfilledByFilterRequest as hI, type BulkMarkAsFulfilledByFilterResponse as hJ, type MarkAsUnfulfilledRequest as hK, type MarkAsUnfulfilledResponse as hL, type BulkMarkAsUnfulfilledRequest as hM, type BulkMarkAsUnfulfilledResponse as hN, type BulkMarkAsUnfulfilledByFilterRequest as hO, type BulkMarkAsUnfulfilledByFilterResponse as hP, type BulkSetBusinessLocationRequest as hQ, type BulkSetBusinessLocationResponse as hR, type BulkSetBusinessLocationResult as hS, type V1MarkOrderAsPaidRequest as hT, type V1MarkOrderAsPaidResponse as hU, type V1BulkMarkOrdersAsPaidRequest as hV, type V1BulkMarkOrdersAsPaidResponse as hW, type V1CreatePaymentGatewayOrderRequest as hX, type V1CreatePaymentGatewayOrderResponse as hY, type GetShipmentsRequest as hZ, type GetShipmentsResponse as h_, type TrackingNumberEdited as ha, type TrackingLinkAdded as hb, type ShippingConfirmationEmailSent as hc, type InvoiceAdded as hd, type InvoiceSent as he, type FulfillerEmailSent as hf, type ShippingAddressEdited as hg, type EmailEdited as hh, type PickupReadyEmailSent as hi, type OrderPartiallyPaid as hj, type OrderPending as hk, type OrderRejected as hl, type AddInternalActivityResponse as hm, type AddActivityRequest as hn, type PublicActivity as ho, type PublicActivityContentOneOf as hp, type AddActivityResponse as hq, type AddActivitiesRequest as hr, type UpdateActivityRequest as hs, type UpdateActivityResponse as ht, type DeleteActivityRequest as hu, type DeleteActivityResponse as hv, type UpdateLineItemsDescriptionLinesRequest as hw, type LineItemUpdate as hx, type UpdateLineItemsDescriptionLinesResponse as hy, type MarkOrderAsSeenByHumanRequest as hz, type CreateOrderOptions as i, type OrderSearchSpec as i$, type AggregateOrdersResponse as i0, type DecrementItemsQuantityRequest as i1, type DecrementData as i2, type DecrementItemsQuantityResponse as i3, type BulkUpdateOrderTagsRequest as i4, type TagsTags as i5, type TagsTagList as i6, type BulkUpdateOrderTagsResult as i7, type SendOrderUpdatedDomainEventRequest as i8, type SendOrderUpdatedDomainEventResponse as i9, type LineItemTax as iA, type Source as iB, type LineItemMetaData as iC, type Locale as iD, type TotalPrice as iE, type ItemizedFee as iF, type Discount as iG, type DiscountOneDiscountTypeOneOf as iH, type CalculatedTaxes as iI, type CalculatedTax as iJ, type Payments as iK, type InvoicesPayment as iL, type MetaData as iM, type InvoiceDynamicPriceTotals as iN, type CustomFieldValue as iO, type Value as iP, type Deposit as iQ, type BaseEventMetadata as iR, type EventMetadata as iS, type AccountInfoMetadata as iT, type SetOrderNumberCounterOptions as iU, type BulkDeleteImportedOrdersOptions as iV, type RecordManuallyCollectedPaymentOptions as iW, type PaymentCollectionMarkOrderAsPaidOptions as iX, type PaymentCollectionCreatePaymentGatewayOrderOptions as iY, type ChargeMembershipsOptions as iZ, type TriggerRefundOptions as i_, type Task as ia, type TaskKey as ib, type TaskAction as ic, type TaskActionActionOneOf as id, type Complete as ie, type Cancel as ig, type Reschedule as ih, type InvoiceSentEvent as ii, type IdAndVersion as ij, type InvoiceFields as ik, type Customer as il, type Email as im, type QuotesAddress as io, type AddressDescription as ip, type Phone as iq, type Company as ir, type CommonAddress as is, type CommonAddressStreetOneOf as it, type Subdivision as iu, type StandardDetails as iv, type InvoiceDates as iw, type LineItems as ix, type LineItem as iy, type BigDecimalWrapper as iz, type CreateOrderApplicationErrors as j, type DepositTypeWithLiterals as j$, type UpdateOrderLineItemIdentifiers as j0, type UpdateOrderLineItem as j1, type UpdateActivityIdentifiers as j2, type DeleteActivityIdentifiers as j3, type AggregateOrdersOptions as j4, utils as j5, type DescriptionLineTypeWithLiterals as j6, type DimensionsUnitWithLiterals as j7, type ItemTypePresetWithLiterals as j8, type PaymentOptionTypeWithLiterals as j9, type StateWithLiterals as jA, type SiteCreatedContextWithLiterals as jB, type NamespaceWithLiterals as jC, type DeleteStatusWithLiterals as jD, type ScheduledActionWithLiterals as jE, type DurationUnitWithLiterals as jF, type PaymentCollectabilityStatusWithLiterals as jG, type PredefinedPaymentMethodWithLiterals as jH, type RefundableStatusWithLiterals as jI, type NonRefundableReasonWithLiterals as jJ, type ManuallyRefundableReasonWithLiterals as jK, type RestockTypeWithLiterals as jL, type TransactionStatusWithLiterals as jM, type AuthorizationCaptureStatusWithLiterals as jN, type AuthorizationVoidStatusWithLiterals as jO, type ReasonWithLiterals as jP, type ActionTypeWithLiterals as jQ, type ChargebackStatusWithLiterals as jR, type MembershipPaymentStatusWithLiterals as jS, type RefundStatusWithLiterals as jT, type SortOrderWithLiterals as jU, type OrderApprovalStrategyWithLiterals as jV, type PlacementWithLiterals as jW, type SubdivisionTypeWithLiterals as jX, type SourceTypeWithLiterals as jY, type CustomFieldGroupWithLiterals as jZ, type ValueTypeWithLiterals as j_, type JurisdictionTypeWithLiterals as ja, type SubscriptionFrequencyWithLiterals as jb, type AdjustmentTypeWithLiterals as jc, type TaxableAddressTypeWithLiterals as jd, type PaymentStatusWithLiterals as je, type FulfillmentStatusWithLiterals as jf, type WeightUnitWithLiterals as jg, type VatTypeWithLiterals as jh, type PickupMethodWithLiterals as ji, type OrderStatusWithLiterals as jj, type DiscountTypeWithLiterals as jk, type DiscountReasonWithLiterals as jl, type LineItemQuantityChangeTypeWithLiterals as jm, type ActivityTypeWithLiterals as jn, type OrderActivityTypeEnumActivityTypeWithLiterals as jo, type AttributionSourceWithLiterals as jp, type ChannelTypeWithLiterals as jq, type AdditionalFeeSourceWithLiterals as jr, type OrderActionTypeWithLiterals as js, type SpecificItemsCouponBehaviorWithLiterals as jt, type ChargeTypeWithLiterals as ju, type DeltaPaymentOptionTypeWithLiterals as jv, type InventoryActionWithLiterals as jw, type WebhookIdentityTypeWithLiterals as jx, type VersioningModeWithLiterals as jy, type PreviewEmailTypeWithLiterals as jz, type UpdateOrderApplicationErrors as k, type InvoiceStatusWithLiterals as k0, type RecordManuallyCollectedPaymentApplicationErrors as k1, type PaymentCollectionMarkOrderAsPaidApplicationErrors as k2, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as k3, type TriggerRefundApplicationErrors as k4, type UpdateOrderStatusApplicationErrors as k5, type CommonSearchWithEntityContext as k6, onOrderApproved as k7, onOrderCanceled as k8, onOrderCommitted as k9, onOrderCreated as ka, onOrderFulfilled as kb, onOrderPaymentStatusUpdated as kc, onOrderUpdated as kd, preparePaymentCollection as ke, getPaymentCollectabilityStatus as kf, voidAuthorizedPayments as kg, captureAuthorizedPayments as kh, getOrder as ki, createOrder as kj, updateOrder as kk, bulkUpdateOrders as kl, addActivities as km, cancelOrder as kn, bulkUpdateOrderTags as ko, type BulkUpdateOrdersResponse as l, type AddActivitiesResponse as m, type CancelOrderOptions as n, type CancelOrderResponse as o, type CancelOrderApplicationErrors as p, type BulkUpdateOrderTagsOptions as q, type BulkUpdateOrderTagsResponse as r, type OrderApprovedEnvelope as s, type OrderCanceledEnvelope as t, type OrderCommittedEnvelope as u, type OrderCreatedEnvelope as v, type OrderFulfilledEnvelope as w, type OrderPaymentStatusUpdatedEnvelope as x, type OrderUpdatedEnvelope as y, DimensionsUnit as z };
|
package/build/cjs/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { P as Price, a as PreparePaymentCollectionOptions, b as PreparePaymentCollectionResponse, c as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, V as VoidAuthorizedPaymentsResponse, d as VoidAuthorizedPaymentsApplicationErrors, e as PaymentCapture, C as CaptureAuthorizedPaymentsResponse, f as CaptureAuthorizedPaymentsApplicationErrors, O as Order, g as GetOrderApplicationErrors, h as OrderSearch, S as SearchOrdersResponse, i as CreateOrderOptions, j as CreateOrderApplicationErrors, U as UpdateOrder, k as UpdateOrderApplicationErrors, M as MaskedOrder, B as BulkUpdateOrdersOptions, l as BulkUpdateOrdersResponse, A as AddActivitiesOptions, m as AddActivitiesResponse, n as CancelOrderOptions, o as CancelOrderResponse, p as CancelOrderApplicationErrors, q as BulkUpdateOrderTagsOptions, r as BulkUpdateOrderTagsResponse, s as OrderApprovedEnvelope, t as OrderCanceledEnvelope, u as OrderCommittedEnvelope, v as OrderCreatedEnvelope, w as OrderFulfilledEnvelope, x as OrderPaymentStatusUpdatedEnvelope, y as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-
|
|
3
|
-
export { dr as AccountInfo, iT as AccountInfoMetadata, dm as ActionEvent, ar as ActionType, jQ as ActionTypeWithLiterals, bE as Activity, bF as ActivityContentOneOf, _ as ActivityType, jn as ActivityTypeWithLiterals, hr as AddActivitiesRequest, hn as AddActivityRequest, hq as AddActivityResponse, h0 as AddInternalActivityRequest, hm as AddInternalActivityResponse, eX as AddToAutomationMigrationPopulationRequest, eY as AddToAutomationMigrationPopulationResponse, cB as AdditionalFee, d6 as AdditionalFeeDelta, d7 as AdditionalFeeDeltaDeltaOneOf, e7 as AdditionalFeeRefund, a2 as AdditionalFeeSource, jr as AdditionalFeeSourceWithLiterals, be as Address, ip as AddressDescription, bg as AddressLocation, bd as AddressWithContact, H as AdjustmentType, jc as AdjustmentTypeWithLiterals, j4 as AggregateOrdersOptions, h$ as AggregateOrdersRequest, i0 as AggregateOrdersResponse, fT as AggregatedRefundSummary, fe as ApplicationError, bu as AppliedDiscount, d4 as AppliedDiscountDelta, d5 as AppliedDiscountDeltaDeltaOneOf, bv as AppliedDiscountDiscountSourceOneOf, gC as ArchiveOrderRequest, gD as ArchiveOrderResponse, eq as Asset, a0 as AttributionSource, jp as AttributionSourceWithLiterals, fH as AuthorizationActionFailureDetails, fG as AuthorizationCapture, ao as AuthorizationCaptureStatus, jN as AuthorizationCaptureStatusWithLiterals, fF as AuthorizationDetails, fI as AuthorizationVoid, ap as AuthorizationVoidStatus, jO as AuthorizationVoidStatusWithLiterals, c3 as AuthorizedPaymentCaptured, c2 as AuthorizedPaymentCreated, c4 as AuthorizedPaymentVoided, cA as Balance, cz as BalanceSummary, iR as BaseEventMetadata, iz as BigDecimalWrapper, a$ as BillingAdjustment, b0 as BillingAdjustmentPriceSummary, ff as BulkActionMetadata, gG as BulkArchiveOrdersByFilterRequest, gH as BulkArchiveOrdersByFilterResponse, gE as BulkArchiveOrdersRequest, gF as BulkArchiveOrdersResponse, iV as BulkDeleteImportedOrdersOptions, de as BulkDeleteImportedOrdersRequest, df as BulkDeleteImportedOrdersResponse, hI as BulkMarkAsFulfilledByFilterRequest, hJ as BulkMarkAsFulfilledByFilterResponse, hG as BulkMarkAsFulfilledRequest, hH as BulkMarkAsFulfilledResponse, hO as BulkMarkAsUnfulfilledByFilterRequest, hP as BulkMarkAsUnfulfilledByFilterResponse, hM as BulkMarkAsUnfulfilledRequest, hN as BulkMarkAsUnfulfilledResponse, fa as BulkMarkOrdersAsPaidRequest, fb as BulkMarkOrdersAsPaidResponse, fc as BulkOrderResult, dN as BulkSendBuyerPickupConfirmationEmailsRequest, dO as BulkSendBuyerPickupConfirmationEmailsResponse, dR as BulkSendBuyerShippingConfirmationEmailsRequest, dS as BulkSendBuyerShippingConfirmationEmailsResponse, hQ as BulkSetBusinessLocationRequest, hR as BulkSetBusinessLocationResponse, hS as BulkSetBusinessLocationResult, gM as BulkUnArchiveOrdersByFilterRequest, gN as BulkUnArchiveOrdersByFilterResponse, gK as BulkUnArchiveOrdersRequest, gL as BulkUnArchiveOrdersResponse, i4 as BulkUpdateOrderTagsRequest, i7 as BulkUpdateOrderTagsResult, gs as BulkUpdateOrdersRequest, b9 as BuyerInfo, ba as BuyerInfoIdOneOf, gP as BuyerInfoUpdate, fX as CalculateRefundItemRequest, fZ as CalculateRefundItemResponse, fW as CalculateRefundRequest, fY as CalculateRefundResponse, iJ as CalculatedTax, iI as CalculatedTaxes, ig as Cancel, hB as CancelOrderRequest, f$ as CaptureAuthorizedPaymentsRequest, aG as CatalogReference, cx as ChannelInfo, a1 as ChannelType, jq as ChannelTypeWithLiterals, iZ as ChargeMembershipsOptions, fn as ChargeMembershipsRequest, fr as ChargeMembershipsResponse, g0 as ChargeSavedPaymentMethodRequest, g1 as ChargeSavedPaymentMethodResponse, a5 as ChargeType, ju as ChargeTypeWithLiterals, fK as Chargeback, ct as ChargebackCreated, cu as ChargebackReversed, as as ChargebackStatus, jR as ChargebackStatusWithLiterals, fl as ChargedBy, aM as Color, gt as CommitDeltasRequest, gB as CommitDeltasResponse, c_ as CommittedDiffs, c$ as CommittedDiffsShippingUpdateInfoOneOf, is as CommonAddress, it as CommonAddressStreetOneOf, k6 as CommonSearchWithEntityContext, ir as Company, ie as Complete, bw as Coupon, gl as CreateOrderRequest, gp as CreateOrderResponse, k3 as CreatePaymentGatewayOrderApplicationErrors, iY as CreatePaymentGatewayOrderOptions, fk as CreatePaymentGatewayOrderRequest, fm as CreatePaymentGatewayOrderResponse, cv as CreatedBy, cw as CreatedByStringOneOf, ci as CreditCardDetails, fE as CreditCardPaymentMethodDetails, bb as CurrencyConversionDetails, gb as CursorPaging, gk as CursorPagingMetadata, gi as CursorSearch, gj as CursorSearchPagingMethodOneOf, ge as Cursors, bG as CustomActivity, cJ as CustomAllowedActions, cy as CustomField, aA as CustomFieldGroup, jZ as CustomFieldGroupWithLiterals, iO as CustomFieldValue, il as Customer, i2 as DecrementData, i1 as DecrementItemsQuantityRequest, i3 as DecrementItemsQuantityResponse, f1 as DelayedCaptureSettings, j3 as DeleteActivityIdentifiers, hu as DeleteActivityRequest, hv as DeleteActivityResponse, dx as DeleteByFilterOperation, dw as DeleteByIdsOperation, eu as DeleteContext, ae as DeleteStatus, jD as DeleteStatusWithLiterals, bk as DeliveryLogistics, bl as DeliveryLogisticsAddressOneOf, bo as DeliveryTimeSlot, a6 as DeltaPaymentOptionType, jv as DeltaPaymentOptionTypeWithLiterals, iQ as Deposit, aC as DepositType, j$ as DepositTypeWithLiterals, aH as DescriptionLine, aJ as DescriptionLineDescriptionLineValueOneOf, aK as DescriptionLineName, D as DescriptionLineType, j6 as DescriptionLineTypeWithLiterals, aI as DescriptionLineValueOneOf, g2 as DiffmatokyPayload, aV as DigitalFile, aP as Dimensions, z as DimensionsUnit, j7 as DimensionsUnitWithLiterals, iG as Discount, iH as DiscountOneDiscountTypeOneOf, Y as DiscountReason, jl as DiscountReasonWithLiterals, bz as DiscountRule, bA as DiscountRuleName, X as DiscountType, jk as DiscountTypeWithLiterals, dg as DomainEvent, dh as DomainEventBodyOneOf, h8 as DownloadLinkSent, bM as DraftOrderChangesApplied, d8 as DraftOrderCommitSettings, gu as DraftOrderDiffs, gx as DraftOrderDiffsBillingUpdateInfoOneOf, gw as DraftOrderDiffsBuyerUpdateInfoOneOf, gy as DraftOrderDiffsRecipientUpdateInfoOneOf, gv as DraftOrderDiffsShippingUpdateInfoOneOf, f2 as Duration, ag as DurationUnit, jF as DurationUnitWithLiterals, eT as EditorlessAssigned, eU as EditorlessUnassigned, im as Email, hh as EmailEdited, dF as Empty, di as EntityCreatedEvent, dl as EntityDeletedEvent, dk as EntityUpdatedEvent, g3 as ErrorInformation, iS as EventMetadata, b5 as ExtendedFields, cq as ExternalReceipt, fP as ExternalReceiptInfo, aN as FocalPoint, cM as FormIdentifier, cL as FormInfo, a_ as FreeTrialPeriod, hf as FulfillerEmailSent, L as FulfillmentStatus, cX as FulfillmentStatusUpdated, jf as FulfillmentStatusWithLiterals, cC as FulfillmentStatusesAggregate, bh as FullAddressContactDetails, g4 as GetOrderRequest, g5 as GetOrderResponse, f3 as GetPaymentCollectabilityStatusRequest, fg as GetRefundabilityStatusRequest, fh as GetRefundabilityStatusResponse, hZ as GetShipmentsRequest, h_ as GetShipmentsResponse, fM as GiftCardPaymentDetails, c9 as GiftCardPaymentRefund, eV as HasCustomEmailConfigurationsRequest, eW as HasCustomEmailConfigurationsResponse, ij as IdAndVersion, dp as IdentificationData, dq as IdentificationDataIdOneOf, da as ImportOrderRequest, db as ImportOrderResponse, cV as ImportedOrderDeleted, h1 as InternalActivity, h2 as InternalActivityContentOneOf, du as InternalDocument, dy as InternalDocumentUpdateByFilterOperation, dv as InternalDocumentUpdateOperation, g6 as InternalQueryOrdersRequest, gc as InternalQueryOrdersResponse, dz as InternalUpdateExistingOperation, a7 as InventoryAction, jw as InventoryActionWithLiterals, d9 as InventoryUpdateDetails, hd as InvoiceAdded, iw as InvoiceDates, iN as InvoiceDynamicPriceTotals, ik as InvoiceFields, he as InvoiceSent, ii as InvoiceSentEvent, aD as InvoiceStatus, k0 as InvoiceStatusWithLiterals, iL as InvoicesPayment, eZ as IsInAutomationMigrationPopulationRequest, e_ as IsInAutomationMigrationPopulationResponse, d0 as ItemChangedDetails, bC as ItemCombination, bD as ItemCombinationLineItem, fd as ItemMetadata, b8 as ItemModifier, aS as ItemTaxFullDetails, aQ as ItemType, aR as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, j8 as ItemTypePresetWithLiterals, iF as ItemizedFee, J as JurisdictionType, ja as JurisdictionTypeWithLiterals, iy as LineItem, bY as LineItemAmount, bP as LineItemChanges, d2 as LineItemDelta, d3 as LineItemDeltaDeltaOneOf, bT as LineItemDescriptionLineChange, bB as LineItemDiscount, bL as LineItemExchangeData, iC as LineItemMetaData, bU as LineItemModifiersChange, bR as LineItemPriceChange, bS as LineItemProductNameChange, bQ as LineItemQuantityChange, Z as LineItemQuantityChangeType, jm as LineItemQuantityChangeTypeWithLiterals, e6 as LineItemRefund, fV as LineItemRefundSummary, iA as LineItemTax, aU as LineItemTaxBreakdown, aT as LineItemTaxInfo, hx as LineItemUpdate, ix as LineItems, iD as Locale, cF as Location, b2 as LocationAndQuantity, bZ as ManagedAdditionalFee, bW as ManagedDiscount, bV as ManagedLineItem, al as ManuallyRefundableReason, jK as ManuallyRefundableReasonWithLiterals, hE as MarkAsFulfilledRequest, hF as MarkAsFulfilledResponse, hK as MarkAsUnfulfilledRequest, hL as MarkAsUnfulfilledResponse, k2 as MarkOrderAsPaidApplicationErrors, iX as MarkOrderAsPaidOptions, f8 as MarkOrderAsPaidRequest, f9 as MarkOrderAsPaidResponse, hz as MarkOrderAsSeenByHumanRequest, hA as MarkOrderAsSeenByHumanResponse, g_ as MaskedOrderLineItem, fo as MembershipChargeItem, fp as MembershipName, fN as MembershipPaymentDetails, ca as MembershipPaymentRefund, at as MembershipPaymentStatus, jS as MembershipPaymentStatusWithLiterals, bH as MerchantComment, bx as MerchantDiscount, by as MerchantDiscountMerchantDiscountReasonOneOf, dn as MessageEnvelope, iM as MetaData, eo as MetaSiteSpecialEvent, ep as MetaSiteSpecialEventPayloadOneOf, b6 as ModifierGroup, ad as Namespace, eE as NamespaceChanged, jC as NamespaceWithLiterals, bK as NewExchangeOrderCreated, ak as NonRefundableReason, jJ as NonRefundableReasonWithLiterals, eJ as OdeditorAssigned, eK as OdeditorUnassigned, a3 as OrderActionType, js as OrderActionTypeWithLiterals, $ as OrderActivityTypeEnumActivityType, jo as OrderActivityTypeEnumActivityTypeWithLiterals, aw as OrderApprovalStrategy, jV as OrderApprovalStrategyWithLiterals, cP as OrderApproved, h7 as OrderCanceled, cY as OrderCanceledEventOrderCanceled, bN as OrderChange, bO as OrderChangeValueOneOf, go as OrderCreateNotifications, bJ as OrderCreatedFromExchange, gm as OrderCreationSettings, gn as OrderCreationSettingsEditableByOneOf, cZ as OrderDeltasCommitted, h5 as OrderFulfilled, cU as OrderImported, cS as OrderItemsRestocked, aE as OrderLineItem, d1 as OrderLineItemChangedDetails, h6 as OrderNotFulfilled, h4 as OrderPaid, hj as OrderPartiallyPaid, hk as OrderPending, h3 as OrderPlaced, bI as OrderRefunded, hl as OrderRejected, cR as OrderRejectedEventOrderRejected, i$ as OrderSearchSpec, cG as OrderSettings, cH as OrderSettingsAllowedActionsOneOf, cI as OrderSettingsEditableByOneOf, R as OrderStatus, jj as OrderStatusWithLiterals, bt as OrderTaxBreakdown, bs as OrderTaxInfo, fy as OrderTransactions, cQ as OrdersExperiments, cK as OwnerApps, fz as Payment, cj as PaymentCanceled, ck as PaymentCanceledPaymentDetailsOneOf, ah as PaymentCollectabilityStatus, jG as PaymentCollectabilityStatusWithLiterals, cl as PaymentDeclined, cm as PaymentDeclinedPaymentDetailsOneOf, fL as PaymentMethodName, E as PaymentOptionType, j9 as PaymentOptionTypeWithLiterals, fA as PaymentPaymentDetailsOneOf, ce as PaymentPending, cf as PaymentPendingPaymentDetailsOneOf, fB as PaymentReceiptInfoOneOf, ft as PaymentRefund, cc as PaymentRefundFailed, cb as PaymentRefunded, K as PaymentStatus, cW as PaymentStatusUpdated, je as PaymentStatusWithLiterals, iK as Payments, iq as Phone, aO as PhysicalProperties, eL as PicassoAssigned, eM as PicassoUnassigned, bn as PickupAddress, bm as PickupDetails, Q as PickupMethod, ji as PickupMethodWithLiterals, hi as PickupReadyEmailSent, ax as Placement, jW as PlacementWithLiterals, aL as PlainTextValue, cO as PlatformFee, cN as PlatformFeeSummary, ga as PlatformPaging, gd as PlatformPagingMetadata, g7 as PlatformQuery, g8 as PlatformQueryPagingMethodOneOf, ai as PredefinedPaymentMethod, jH as PredefinedPaymentMethodWithLiterals, e$ as PreparePaymentCollectionRequest, eg as PreviewBuyerConfirmationEmailRequest, eh as PreviewBuyerConfirmationEmailResponse, ee as PreviewBuyerPaymentsReceivedEmailRequest, ef as PreviewBuyerPaymentsReceivedEmailResponse, ei as PreviewBuyerPickupConfirmationEmailRequest, ej as PreviewBuyerPickupConfirmationEmailResponse, ea as PreviewCancelEmailRequest, eb as PreviewCancelEmailResponse, ec as PreviewCancelRefundEmailRequest, ed as PreviewCancelRefundEmailResponse, e1 as PreviewEmailByTypeRequest, e2 as PreviewEmailByTypeResponse, aa as PreviewEmailType, jz as PreviewEmailTypeWithLiterals, e3 as PreviewRefundEmailRequest, e9 as PreviewRefundEmailResponse, em as PreviewResendDownloadLinksEmailRequest, en as PreviewResendDownloadLinksEmailResponse, ek as PreviewShippingConfirmationEmailRequest, el as PreviewShippingConfirmationEmailResponse, b1 as PriceDescription, bc as PriceSummary, aF as ProductName, ho as PublicActivity, hp as PublicActivityContentOneOf, gf as QueryOrderRequest, gg as QueryOrderResponse, io as QuotesAddress, aq as Reason, jP as ReasonWithLiterals, cn as ReceiptCreated, co as ReceiptCreatedReceiptInfoOneOf, cr as ReceiptSent, cs as ReceiptSentReceiptInfoOneOf, k1 as RecordManuallyCollectedPaymentApplicationErrors, iW as RecordManuallyCollectedPaymentOptions, f4 as RecordManuallyCollectedPaymentRequest, f7 as RecordManuallyCollectedPaymentResponse, f0 as RedirectUrls, fQ as Refund, e4 as RefundDetails, c5 as RefundInitiated, e5 as RefundItem, fU as RefundItemsBreakdown, fu as RefundSideEffects, au as RefundStatus, fS as RefundStatusInfo, jT as RefundStatusWithLiterals, fR as RefundTransaction, fi as Refundability, fj as RefundabilityAdditionalRefundabilityInfoOneOf, aj as RefundableStatus, jI as RefundableStatusWithLiterals, cd as RefundedAsStoreCredit, c6 as RefundedPayment, c7 as RefundedPaymentKindOneOf, cg as RegularPayment, fC as RegularPaymentDetails, fD as RegularPaymentDetailsPaymentMethodDetailsOneOf, ch as RegularPaymentPaymentMethodDetailsOneOf, c8 as RegularPaymentRefund, ih as Reschedule, fv as RestockInfo, fw as RestockItem, am as RestockType, jL as RestockTypeWithLiterals, dj as RestoreInfo, c1 as SavedPaymentMethod, af as ScheduledAction, jE as ScheduledActionWithLiterals, gh as SearchOrdersRequest, dH as SendBuyerConfirmationEmailRequest, dI as SendBuyerConfirmationEmailResponse, dJ as SendBuyerPaymentsReceivedEmailRequest, dK as SendBuyerPaymentsReceivedEmailResponse, dL as SendBuyerPickupConfirmationEmailRequest, dM as SendBuyerPickupConfirmationEmailResponse, dP as SendBuyerShippingConfirmationEmailRequest, dQ as SendBuyerShippingConfirmationEmailResponse, dV as SendCancelRefundEmailRequest, dW as SendCancelRefundEmailResponse, dZ as SendFulfillmentEmailRequest, d_ as SendFulfillmentEmailResponse, dT as SendMerchantOrderReceivedNotificationRequest, dU as SendMerchantOrderReceivedNotificationResponse, d$ as SendMerchantOrderReceivedPushRequest, e0 as SendMerchantOrderReceivedPushResponse, i8 as SendOrderUpdatedDomainEventRequest, i9 as SendOrderUpdatedDomainEventResponse, dX as SendRefundEmailRequest, dY as SendRefundEmailResponse, fq as ServiceProperties, eA as ServiceProvisioned, eB as ServiceRemoved, iU as SetOrderNumberCounterOptions, dc as SetOrderNumberCounterRequest, dd as SetOrderNumberCounterResponse, hg as ShippingAddressEdited, hc as ShippingConfirmationEmailSent, c0 as ShippingInformation, b$ as ShippingInformationChange, bp as ShippingPrice, e8 as ShippingRefund, bq as ShippingRegion, er as SiteCreated, ac as SiteCreatedContext, jB as SiteCreatedContextWithLiterals, et as SiteDeleted, eD as SiteHardDeleted, ey as SiteMarkedAsTemplate, ez as SiteMarkedAsWixSite, ew as SitePublished, eI as SitePurgedExternally, eC as SiteRenamed, es as SiteTransferred, ev as SiteUndeleted, ex as SiteUnpublished, eH as SiteUrlChanged, av as SortOrder, jU as SortOrderWithLiterals, g9 as Sorting, iB as Source, az as SourceType, jY as SourceTypeWithLiterals, a4 as SpecificItemsCouponBehavior, jt as SpecificItemsCouponBehaviorWithLiterals, iv as StandardDetails, ab as State, jA as StateWithLiterals, bf as StreetAddress, eF as StudioAssigned, eP as StudioTwoAssigned, eQ as StudioTwoUnassigned, eG as StudioUnassigned, iu as Subdivision, ay as SubdivisionType, jX as SubdivisionTypeWithLiterals, aY as SubscriptionDescription, F as SubscriptionFrequency, jb as SubscriptionFrequencyWithLiterals, aW as SubscriptionInfo, aZ as SubscriptionSettings, aX as SubscriptionTitle, cE as TagList, cD as Tags, i6 as TagsTagList, i5 as TagsTags, ia as Task, ic as TaskAction, id as TaskActionActionOneOf, ib as TaskKey, br as TaxSummary, b3 as TaxableAddress, b4 as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, jd as TaxableAddressTypeWithLiterals, iE as TotalPrice, b_ as TotalPriceChange, hb as TrackingLinkAdded, h9 as TrackingNumberAdded, ha as TrackingNumberEdited, an as TransactionStatus, jM as TransactionStatusWithLiterals, b7 as TranslatableString, bX as TranslatedValue, k4 as TriggerRefundApplicationErrors, i_ as TriggerRefundOptions, fs as TriggerRefundRequest, fx as TriggerRefundResponse, dG as TriggerReindexOrderRequest, dD as TriggerReindexRequest, dE as TriggerReindexResponse, gI as UnArchiveOrderRequest, gJ as UnArchiveOrderResponse, j2 as UpdateActivityIdentifiers, hs as UpdateActivityRequest, ht as UpdateActivityResponse, gV as UpdateBillingContactDetailsRequest, gW as UpdateBillingContactDetailsResponse, gR as UpdateBuyerEmailRequest, gS as UpdateBuyerEmailResponse, gO as UpdateBuyerInfoRequest, gQ as UpdateBuyerInfoResponse, ds as UpdateInternalDocumentsEvent, dt as UpdateInternalDocumentsEventOperationOneOf, hw as UpdateLineItemsDescriptionLinesRequest, hy as UpdateLineItemsDescriptionLinesResponse, j1 as UpdateOrderLineItem, j0 as UpdateOrderLineItemIdentifiers, gX as UpdateOrderLineItemRequest, gY as UpdateOrderLineItemResponse, gZ as UpdateOrderLineItemsRequest, g$ as UpdateOrderLineItemsResponse, gq as UpdateOrderRequest, gr as UpdateOrderResponse, gT as UpdateOrderShippingAddressRequest, gU as UpdateOrderShippingAddressResponse, k5 as UpdateOrderStatusApplicationErrors, hC as UpdateOrderStatusRequest, hD as UpdateOrderStatusResponse, f5 as UserDefinedPaymentMethodName, f6 as UserDefinedPaymentMethodNameKindOneOf, eS as UserDomainMediaDisabled, eR as UserDomainMediaEnabled, hV as V1BulkMarkOrdersAsPaidRequest, hW as V1BulkMarkOrdersAsPaidResponse, hX as V1CreatePaymentGatewayOrderRequest, hY as V1CreatePaymentGatewayOrderResponse, gz as V1LineItemDelta, gA as V1LineItemDeltaDeltaOneOf, hT as V1MarkOrderAsPaidRequest, hU as V1MarkOrderAsPaidResponse, cT as V1RestockItem, fJ as V1ScheduledAction, bj as V1ShippingInformation, iP as Value, aB as ValueType, j_ as ValueTypeWithLiterals, bi as VatId, N as VatType, jh as VatTypeWithLiterals, dB as VersionedDeleteByIdsOperation, dC as VersionedDocumentId, dA as VersionedDocumentUpdateOperation, a9 as VersioningMode, jy as VersioningModeWithLiterals, f_ as VoidAuthorizedPaymentsRequest, a8 as WebhookIdentityType, jx as WebhookIdentityTypeWithLiterals, W as WeightUnit, jg as WeightUnitWithLiterals, cp as WixReceipt, fO as WixReceiptInfo, eN as WixelAssigned, eO as WixelUnassigned, j5 as utils } from './ecom-v1-order-orders.universal-UFqntDoM.js';
|
|
2
|
+
import { P as Price, a as PreparePaymentCollectionOptions, b as PreparePaymentCollectionResponse, c as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, V as VoidAuthorizedPaymentsResponse, d as VoidAuthorizedPaymentsApplicationErrors, e as PaymentCapture, C as CaptureAuthorizedPaymentsResponse, f as CaptureAuthorizedPaymentsApplicationErrors, O as Order, g as GetOrderApplicationErrors, h as OrderSearch, S as SearchOrdersResponse, i as CreateOrderOptions, j as CreateOrderApplicationErrors, U as UpdateOrder, k as UpdateOrderApplicationErrors, M as MaskedOrder, B as BulkUpdateOrdersOptions, l as BulkUpdateOrdersResponse, A as AddActivitiesOptions, m as AddActivitiesResponse, n as CancelOrderOptions, o as CancelOrderResponse, p as CancelOrderApplicationErrors, q as BulkUpdateOrderTagsOptions, r as BulkUpdateOrderTagsResponse, s as OrderApprovedEnvelope, t as OrderCanceledEnvelope, u as OrderCommittedEnvelope, v as OrderCreatedEnvelope, w as OrderFulfilledEnvelope, x as OrderPaymentStatusUpdatedEnvelope, y as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-CX4cZSmz.js';
|
|
3
|
+
export { dr as AccountInfo, iT as AccountInfoMetadata, dm as ActionEvent, ar as ActionType, jQ as ActionTypeWithLiterals, bE as Activity, bF as ActivityContentOneOf, _ as ActivityType, jn as ActivityTypeWithLiterals, hr as AddActivitiesRequest, hn as AddActivityRequest, hq as AddActivityResponse, h0 as AddInternalActivityRequest, hm as AddInternalActivityResponse, eX as AddToAutomationMigrationPopulationRequest, eY as AddToAutomationMigrationPopulationResponse, cB as AdditionalFee, d6 as AdditionalFeeDelta, d7 as AdditionalFeeDeltaDeltaOneOf, e7 as AdditionalFeeRefund, a2 as AdditionalFeeSource, jr as AdditionalFeeSourceWithLiterals, be as Address, ip as AddressDescription, bg as AddressLocation, bd as AddressWithContact, H as AdjustmentType, jc as AdjustmentTypeWithLiterals, j4 as AggregateOrdersOptions, h$ as AggregateOrdersRequest, i0 as AggregateOrdersResponse, fT as AggregatedRefundSummary, fe as ApplicationError, bu as AppliedDiscount, d4 as AppliedDiscountDelta, d5 as AppliedDiscountDeltaDeltaOneOf, bv as AppliedDiscountDiscountSourceOneOf, gC as ArchiveOrderRequest, gD as ArchiveOrderResponse, eq as Asset, a0 as AttributionSource, jp as AttributionSourceWithLiterals, fH as AuthorizationActionFailureDetails, fG as AuthorizationCapture, ao as AuthorizationCaptureStatus, jN as AuthorizationCaptureStatusWithLiterals, fF as AuthorizationDetails, fI as AuthorizationVoid, ap as AuthorizationVoidStatus, jO as AuthorizationVoidStatusWithLiterals, c3 as AuthorizedPaymentCaptured, c2 as AuthorizedPaymentCreated, c4 as AuthorizedPaymentVoided, cA as Balance, cz as BalanceSummary, iR as BaseEventMetadata, iz as BigDecimalWrapper, a$ as BillingAdjustment, b0 as BillingAdjustmentPriceSummary, ff as BulkActionMetadata, gG as BulkArchiveOrdersByFilterRequest, gH as BulkArchiveOrdersByFilterResponse, gE as BulkArchiveOrdersRequest, gF as BulkArchiveOrdersResponse, iV as BulkDeleteImportedOrdersOptions, de as BulkDeleteImportedOrdersRequest, df as BulkDeleteImportedOrdersResponse, hI as BulkMarkAsFulfilledByFilterRequest, hJ as BulkMarkAsFulfilledByFilterResponse, hG as BulkMarkAsFulfilledRequest, hH as BulkMarkAsFulfilledResponse, hO as BulkMarkAsUnfulfilledByFilterRequest, hP as BulkMarkAsUnfulfilledByFilterResponse, hM as BulkMarkAsUnfulfilledRequest, hN as BulkMarkAsUnfulfilledResponse, fa as BulkMarkOrdersAsPaidRequest, fb as BulkMarkOrdersAsPaidResponse, fc as BulkOrderResult, dN as BulkSendBuyerPickupConfirmationEmailsRequest, dO as BulkSendBuyerPickupConfirmationEmailsResponse, dR as BulkSendBuyerShippingConfirmationEmailsRequest, dS as BulkSendBuyerShippingConfirmationEmailsResponse, hQ as BulkSetBusinessLocationRequest, hR as BulkSetBusinessLocationResponse, hS as BulkSetBusinessLocationResult, gM as BulkUnArchiveOrdersByFilterRequest, gN as BulkUnArchiveOrdersByFilterResponse, gK as BulkUnArchiveOrdersRequest, gL as BulkUnArchiveOrdersResponse, i4 as BulkUpdateOrderTagsRequest, i7 as BulkUpdateOrderTagsResult, gs as BulkUpdateOrdersRequest, b9 as BuyerInfo, ba as BuyerInfoIdOneOf, gP as BuyerInfoUpdate, fX as CalculateRefundItemRequest, fZ as CalculateRefundItemResponse, fW as CalculateRefundRequest, fY as CalculateRefundResponse, iJ as CalculatedTax, iI as CalculatedTaxes, ig as Cancel, hB as CancelOrderRequest, f$ as CaptureAuthorizedPaymentsRequest, aG as CatalogReference, cx as ChannelInfo, a1 as ChannelType, jq as ChannelTypeWithLiterals, iZ as ChargeMembershipsOptions, fn as ChargeMembershipsRequest, fr as ChargeMembershipsResponse, g0 as ChargeSavedPaymentMethodRequest, g1 as ChargeSavedPaymentMethodResponse, a5 as ChargeType, ju as ChargeTypeWithLiterals, fK as Chargeback, ct as ChargebackCreated, cu as ChargebackReversed, as as ChargebackStatus, jR as ChargebackStatusWithLiterals, fl as ChargedBy, aM as Color, gt as CommitDeltasRequest, gB as CommitDeltasResponse, c_ as CommittedDiffs, c$ as CommittedDiffsShippingUpdateInfoOneOf, is as CommonAddress, it as CommonAddressStreetOneOf, k6 as CommonSearchWithEntityContext, ir as Company, ie as Complete, bw as Coupon, gl as CreateOrderRequest, gp as CreateOrderResponse, fk as CreatePaymentGatewayOrderRequest, fm as CreatePaymentGatewayOrderResponse, cv as CreatedBy, cw as CreatedByStringOneOf, ci as CreditCardDetails, fE as CreditCardPaymentMethodDetails, bb as CurrencyConversionDetails, gb as CursorPaging, gk as CursorPagingMetadata, gi as CursorSearch, gj as CursorSearchPagingMethodOneOf, ge as Cursors, bG as CustomActivity, cJ as CustomAllowedActions, cy as CustomField, aA as CustomFieldGroup, jZ as CustomFieldGroupWithLiterals, iO as CustomFieldValue, il as Customer, i2 as DecrementData, i1 as DecrementItemsQuantityRequest, i3 as DecrementItemsQuantityResponse, f1 as DelayedCaptureSettings, j3 as DeleteActivityIdentifiers, hu as DeleteActivityRequest, hv as DeleteActivityResponse, dx as DeleteByFilterOperation, dw as DeleteByIdsOperation, eu as DeleteContext, ae as DeleteStatus, jD as DeleteStatusWithLiterals, bk as DeliveryLogistics, bl as DeliveryLogisticsAddressOneOf, bo as DeliveryTimeSlot, a6 as DeltaPaymentOptionType, jv as DeltaPaymentOptionTypeWithLiterals, iQ as Deposit, aC as DepositType, j$ as DepositTypeWithLiterals, aH as DescriptionLine, aJ as DescriptionLineDescriptionLineValueOneOf, aK as DescriptionLineName, D as DescriptionLineType, j6 as DescriptionLineTypeWithLiterals, aI as DescriptionLineValueOneOf, g2 as DiffmatokyPayload, aV as DigitalFile, aP as Dimensions, z as DimensionsUnit, j7 as DimensionsUnitWithLiterals, iG as Discount, iH as DiscountOneDiscountTypeOneOf, Y as DiscountReason, jl as DiscountReasonWithLiterals, bz as DiscountRule, bA as DiscountRuleName, X as DiscountType, jk as DiscountTypeWithLiterals, dg as DomainEvent, dh as DomainEventBodyOneOf, h8 as DownloadLinkSent, bM as DraftOrderChangesApplied, d8 as DraftOrderCommitSettings, gu as DraftOrderDiffs, gx as DraftOrderDiffsBillingUpdateInfoOneOf, gw as DraftOrderDiffsBuyerUpdateInfoOneOf, gy as DraftOrderDiffsRecipientUpdateInfoOneOf, gv as DraftOrderDiffsShippingUpdateInfoOneOf, f2 as Duration, ag as DurationUnit, jF as DurationUnitWithLiterals, eT as EditorlessAssigned, eU as EditorlessUnassigned, im as Email, hh as EmailEdited, dF as Empty, di as EntityCreatedEvent, dl as EntityDeletedEvent, dk as EntityUpdatedEvent, g3 as ErrorInformation, iS as EventMetadata, b5 as ExtendedFields, cq as ExternalReceipt, fP as ExternalReceiptInfo, aN as FocalPoint, cM as FormIdentifier, cL as FormInfo, a_ as FreeTrialPeriod, hf as FulfillerEmailSent, L as FulfillmentStatus, cX as FulfillmentStatusUpdated, jf as FulfillmentStatusWithLiterals, cC as FulfillmentStatusesAggregate, bh as FullAddressContactDetails, g4 as GetOrderRequest, g5 as GetOrderResponse, f3 as GetPaymentCollectabilityStatusRequest, fg as GetRefundabilityStatusRequest, fh as GetRefundabilityStatusResponse, hZ as GetShipmentsRequest, h_ as GetShipmentsResponse, fM as GiftCardPaymentDetails, c9 as GiftCardPaymentRefund, eV as HasCustomEmailConfigurationsRequest, eW as HasCustomEmailConfigurationsResponse, ij as IdAndVersion, dp as IdentificationData, dq as IdentificationDataIdOneOf, da as ImportOrderRequest, db as ImportOrderResponse, cV as ImportedOrderDeleted, h1 as InternalActivity, h2 as InternalActivityContentOneOf, du as InternalDocument, dy as InternalDocumentUpdateByFilterOperation, dv as InternalDocumentUpdateOperation, g6 as InternalQueryOrdersRequest, gc as InternalQueryOrdersResponse, dz as InternalUpdateExistingOperation, a7 as InventoryAction, jw as InventoryActionWithLiterals, d9 as InventoryUpdateDetails, hd as InvoiceAdded, iw as InvoiceDates, iN as InvoiceDynamicPriceTotals, ik as InvoiceFields, he as InvoiceSent, ii as InvoiceSentEvent, aD as InvoiceStatus, k0 as InvoiceStatusWithLiterals, iL as InvoicesPayment, eZ as IsInAutomationMigrationPopulationRequest, e_ as IsInAutomationMigrationPopulationResponse, d0 as ItemChangedDetails, bC as ItemCombination, bD as ItemCombinationLineItem, fd as ItemMetadata, b8 as ItemModifier, aS as ItemTaxFullDetails, aQ as ItemType, aR as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, j8 as ItemTypePresetWithLiterals, iF as ItemizedFee, J as JurisdictionType, ja as JurisdictionTypeWithLiterals, iy as LineItem, bY as LineItemAmount, bP as LineItemChanges, d2 as LineItemDelta, d3 as LineItemDeltaDeltaOneOf, bT as LineItemDescriptionLineChange, bB as LineItemDiscount, bL as LineItemExchangeData, iC as LineItemMetaData, bU as LineItemModifiersChange, bR as LineItemPriceChange, bS as LineItemProductNameChange, bQ as LineItemQuantityChange, Z as LineItemQuantityChangeType, jm as LineItemQuantityChangeTypeWithLiterals, e6 as LineItemRefund, fV as LineItemRefundSummary, iA as LineItemTax, aU as LineItemTaxBreakdown, aT as LineItemTaxInfo, hx as LineItemUpdate, ix as LineItems, iD as Locale, cF as Location, b2 as LocationAndQuantity, bZ as ManagedAdditionalFee, bW as ManagedDiscount, bV as ManagedLineItem, al as ManuallyRefundableReason, jK as ManuallyRefundableReasonWithLiterals, hE as MarkAsFulfilledRequest, hF as MarkAsFulfilledResponse, hK as MarkAsUnfulfilledRequest, hL as MarkAsUnfulfilledResponse, f8 as MarkOrderAsPaidRequest, f9 as MarkOrderAsPaidResponse, hz as MarkOrderAsSeenByHumanRequest, hA as MarkOrderAsSeenByHumanResponse, g_ as MaskedOrderLineItem, fo as MembershipChargeItem, fp as MembershipName, fN as MembershipPaymentDetails, ca as MembershipPaymentRefund, at as MembershipPaymentStatus, jS as MembershipPaymentStatusWithLiterals, bH as MerchantComment, bx as MerchantDiscount, by as MerchantDiscountMerchantDiscountReasonOneOf, dn as MessageEnvelope, iM as MetaData, eo as MetaSiteSpecialEvent, ep as MetaSiteSpecialEventPayloadOneOf, b6 as ModifierGroup, ad as Namespace, eE as NamespaceChanged, jC as NamespaceWithLiterals, bK as NewExchangeOrderCreated, ak as NonRefundableReason, jJ as NonRefundableReasonWithLiterals, eJ as OdeditorAssigned, eK as OdeditorUnassigned, a3 as OrderActionType, js as OrderActionTypeWithLiterals, $ as OrderActivityTypeEnumActivityType, jo as OrderActivityTypeEnumActivityTypeWithLiterals, aw as OrderApprovalStrategy, jV as OrderApprovalStrategyWithLiterals, cP as OrderApproved, h7 as OrderCanceled, cY as OrderCanceledEventOrderCanceled, bN as OrderChange, bO as OrderChangeValueOneOf, go as OrderCreateNotifications, bJ as OrderCreatedFromExchange, gm as OrderCreationSettings, gn as OrderCreationSettingsEditableByOneOf, cZ as OrderDeltasCommitted, h5 as OrderFulfilled, cU as OrderImported, cS as OrderItemsRestocked, aE as OrderLineItem, d1 as OrderLineItemChangedDetails, h6 as OrderNotFulfilled, h4 as OrderPaid, hj as OrderPartiallyPaid, hk as OrderPending, h3 as OrderPlaced, bI as OrderRefunded, hl as OrderRejected, cR as OrderRejectedEventOrderRejected, i$ as OrderSearchSpec, cG as OrderSettings, cH as OrderSettingsAllowedActionsOneOf, cI as OrderSettingsEditableByOneOf, R as OrderStatus, jj as OrderStatusWithLiterals, bt as OrderTaxBreakdown, bs as OrderTaxInfo, fy as OrderTransactions, cQ as OrdersExperiments, cK as OwnerApps, fz as Payment, cj as PaymentCanceled, ck as PaymentCanceledPaymentDetailsOneOf, ah as PaymentCollectabilityStatus, jG as PaymentCollectabilityStatusWithLiterals, k3 as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, iY as PaymentCollectionCreatePaymentGatewayOrderOptions, k2 as PaymentCollectionMarkOrderAsPaidApplicationErrors, iX as PaymentCollectionMarkOrderAsPaidOptions, cl as PaymentDeclined, cm as PaymentDeclinedPaymentDetailsOneOf, fL as PaymentMethodName, E as PaymentOptionType, j9 as PaymentOptionTypeWithLiterals, fA as PaymentPaymentDetailsOneOf, ce as PaymentPending, cf as PaymentPendingPaymentDetailsOneOf, fB as PaymentReceiptInfoOneOf, ft as PaymentRefund, cc as PaymentRefundFailed, cb as PaymentRefunded, K as PaymentStatus, cW as PaymentStatusUpdated, je as PaymentStatusWithLiterals, iK as Payments, iq as Phone, aO as PhysicalProperties, eL as PicassoAssigned, eM as PicassoUnassigned, bn as PickupAddress, bm as PickupDetails, Q as PickupMethod, ji as PickupMethodWithLiterals, hi as PickupReadyEmailSent, ax as Placement, jW as PlacementWithLiterals, aL as PlainTextValue, cO as PlatformFee, cN as PlatformFeeSummary, ga as PlatformPaging, gd as PlatformPagingMetadata, g7 as PlatformQuery, g8 as PlatformQueryPagingMethodOneOf, ai as PredefinedPaymentMethod, jH as PredefinedPaymentMethodWithLiterals, e$ as PreparePaymentCollectionRequest, eg as PreviewBuyerConfirmationEmailRequest, eh as PreviewBuyerConfirmationEmailResponse, ee as PreviewBuyerPaymentsReceivedEmailRequest, ef as PreviewBuyerPaymentsReceivedEmailResponse, ei as PreviewBuyerPickupConfirmationEmailRequest, ej as PreviewBuyerPickupConfirmationEmailResponse, ea as PreviewCancelEmailRequest, eb as PreviewCancelEmailResponse, ec as PreviewCancelRefundEmailRequest, ed as PreviewCancelRefundEmailResponse, e1 as PreviewEmailByTypeRequest, e2 as PreviewEmailByTypeResponse, aa as PreviewEmailType, jz as PreviewEmailTypeWithLiterals, e3 as PreviewRefundEmailRequest, e9 as PreviewRefundEmailResponse, em as PreviewResendDownloadLinksEmailRequest, en as PreviewResendDownloadLinksEmailResponse, ek as PreviewShippingConfirmationEmailRequest, el as PreviewShippingConfirmationEmailResponse, b1 as PriceDescription, bc as PriceSummary, aF as ProductName, ho as PublicActivity, hp as PublicActivityContentOneOf, gf as QueryOrderRequest, gg as QueryOrderResponse, io as QuotesAddress, aq as Reason, jP as ReasonWithLiterals, cn as ReceiptCreated, co as ReceiptCreatedReceiptInfoOneOf, cr as ReceiptSent, cs as ReceiptSentReceiptInfoOneOf, k1 as RecordManuallyCollectedPaymentApplicationErrors, iW as RecordManuallyCollectedPaymentOptions, f4 as RecordManuallyCollectedPaymentRequest, f7 as RecordManuallyCollectedPaymentResponse, f0 as RedirectUrls, fQ as Refund, e4 as RefundDetails, c5 as RefundInitiated, e5 as RefundItem, fU as RefundItemsBreakdown, fu as RefundSideEffects, au as RefundStatus, fS as RefundStatusInfo, jT as RefundStatusWithLiterals, fR as RefundTransaction, fi as Refundability, fj as RefundabilityAdditionalRefundabilityInfoOneOf, aj as RefundableStatus, jI as RefundableStatusWithLiterals, cd as RefundedAsStoreCredit, c6 as RefundedPayment, c7 as RefundedPaymentKindOneOf, cg as RegularPayment, fC as RegularPaymentDetails, fD as RegularPaymentDetailsPaymentMethodDetailsOneOf, ch as RegularPaymentPaymentMethodDetailsOneOf, c8 as RegularPaymentRefund, ih as Reschedule, fv as RestockInfo, fw as RestockItem, am as RestockType, jL as RestockTypeWithLiterals, dj as RestoreInfo, c1 as SavedPaymentMethod, af as ScheduledAction, jE as ScheduledActionWithLiterals, gh as SearchOrdersRequest, dH as SendBuyerConfirmationEmailRequest, dI as SendBuyerConfirmationEmailResponse, dJ as SendBuyerPaymentsReceivedEmailRequest, dK as SendBuyerPaymentsReceivedEmailResponse, dL as SendBuyerPickupConfirmationEmailRequest, dM as SendBuyerPickupConfirmationEmailResponse, dP as SendBuyerShippingConfirmationEmailRequest, dQ as SendBuyerShippingConfirmationEmailResponse, dV as SendCancelRefundEmailRequest, dW as SendCancelRefundEmailResponse, dZ as SendFulfillmentEmailRequest, d_ as SendFulfillmentEmailResponse, dT as SendMerchantOrderReceivedNotificationRequest, dU as SendMerchantOrderReceivedNotificationResponse, d$ as SendMerchantOrderReceivedPushRequest, e0 as SendMerchantOrderReceivedPushResponse, i8 as SendOrderUpdatedDomainEventRequest, i9 as SendOrderUpdatedDomainEventResponse, dX as SendRefundEmailRequest, dY as SendRefundEmailResponse, fq as ServiceProperties, eA as ServiceProvisioned, eB as ServiceRemoved, iU as SetOrderNumberCounterOptions, dc as SetOrderNumberCounterRequest, dd as SetOrderNumberCounterResponse, hg as ShippingAddressEdited, hc as ShippingConfirmationEmailSent, c0 as ShippingInformation, b$ as ShippingInformationChange, bp as ShippingPrice, e8 as ShippingRefund, bq as ShippingRegion, er as SiteCreated, ac as SiteCreatedContext, jB as SiteCreatedContextWithLiterals, et as SiteDeleted, eD as SiteHardDeleted, ey as SiteMarkedAsTemplate, ez as SiteMarkedAsWixSite, ew as SitePublished, eI as SitePurgedExternally, eC as SiteRenamed, es as SiteTransferred, ev as SiteUndeleted, ex as SiteUnpublished, eH as SiteUrlChanged, av as SortOrder, jU as SortOrderWithLiterals, g9 as Sorting, iB as Source, az as SourceType, jY as SourceTypeWithLiterals, a4 as SpecificItemsCouponBehavior, jt as SpecificItemsCouponBehaviorWithLiterals, iv as StandardDetails, ab as State, jA as StateWithLiterals, bf as StreetAddress, eF as StudioAssigned, eP as StudioTwoAssigned, eQ as StudioTwoUnassigned, eG as StudioUnassigned, iu as Subdivision, ay as SubdivisionType, jX as SubdivisionTypeWithLiterals, aY as SubscriptionDescription, F as SubscriptionFrequency, jb as SubscriptionFrequencyWithLiterals, aW as SubscriptionInfo, aZ as SubscriptionSettings, aX as SubscriptionTitle, cE as TagList, cD as Tags, i6 as TagsTagList, i5 as TagsTags, ia as Task, ic as TaskAction, id as TaskActionActionOneOf, ib as TaskKey, br as TaxSummary, b3 as TaxableAddress, b4 as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, jd as TaxableAddressTypeWithLiterals, iE as TotalPrice, b_ as TotalPriceChange, hb as TrackingLinkAdded, h9 as TrackingNumberAdded, ha as TrackingNumberEdited, an as TransactionStatus, jM as TransactionStatusWithLiterals, b7 as TranslatableString, bX as TranslatedValue, k4 as TriggerRefundApplicationErrors, i_ as TriggerRefundOptions, fs as TriggerRefundRequest, fx as TriggerRefundResponse, dG as TriggerReindexOrderRequest, dD as TriggerReindexRequest, dE as TriggerReindexResponse, gI as UnArchiveOrderRequest, gJ as UnArchiveOrderResponse, j2 as UpdateActivityIdentifiers, hs as UpdateActivityRequest, ht as UpdateActivityResponse, gV as UpdateBillingContactDetailsRequest, gW as UpdateBillingContactDetailsResponse, gR as UpdateBuyerEmailRequest, gS as UpdateBuyerEmailResponse, gO as UpdateBuyerInfoRequest, gQ as UpdateBuyerInfoResponse, ds as UpdateInternalDocumentsEvent, dt as UpdateInternalDocumentsEventOperationOneOf, hw as UpdateLineItemsDescriptionLinesRequest, hy as UpdateLineItemsDescriptionLinesResponse, j1 as UpdateOrderLineItem, j0 as UpdateOrderLineItemIdentifiers, gX as UpdateOrderLineItemRequest, gY as UpdateOrderLineItemResponse, gZ as UpdateOrderLineItemsRequest, g$ as UpdateOrderLineItemsResponse, gq as UpdateOrderRequest, gr as UpdateOrderResponse, gT as UpdateOrderShippingAddressRequest, gU as UpdateOrderShippingAddressResponse, k5 as UpdateOrderStatusApplicationErrors, hC as UpdateOrderStatusRequest, hD as UpdateOrderStatusResponse, f5 as UserDefinedPaymentMethodName, f6 as UserDefinedPaymentMethodNameKindOneOf, eS as UserDomainMediaDisabled, eR as UserDomainMediaEnabled, hV as V1BulkMarkOrdersAsPaidRequest, hW as V1BulkMarkOrdersAsPaidResponse, hX as V1CreatePaymentGatewayOrderRequest, hY as V1CreatePaymentGatewayOrderResponse, gz as V1LineItemDelta, gA as V1LineItemDeltaDeltaOneOf, hT as V1MarkOrderAsPaidRequest, hU as V1MarkOrderAsPaidResponse, cT as V1RestockItem, fJ as V1ScheduledAction, bj as V1ShippingInformation, iP as Value, aB as ValueType, j_ as ValueTypeWithLiterals, bi as VatId, N as VatType, jh as VatTypeWithLiterals, dB as VersionedDeleteByIdsOperation, dC as VersionedDocumentId, dA as VersionedDocumentUpdateOperation, a9 as VersioningMode, jy as VersioningModeWithLiterals, f_ as VoidAuthorizedPaymentsRequest, a8 as WebhookIdentityType, jx as WebhookIdentityTypeWithLiterals, W as WeightUnit, jg as WeightUnitWithLiterals, cp as WixReceipt, fO as WixReceiptInfo, eN as WixelAssigned, eO as WixelUnassigned, j5 as utils } from './ecom-v1-order-orders.universal-CX4cZSmz.js';
|
|
4
4
|
|
|
5
5
|
declare function preparePaymentCollection$1(httpClient: HttpClient): PreparePaymentCollectionSignature;
|
|
6
6
|
interface PreparePaymentCollectionSignature {
|
package/build/cjs/index.js
CHANGED
|
@@ -83,20 +83,17 @@ __export(index_exports, {
|
|
|
83
83
|
addActivity: () => addActivity4,
|
|
84
84
|
aggregateOrders: () => aggregateOrders4,
|
|
85
85
|
bulkDeleteImportedOrders: () => bulkDeleteImportedOrders4,
|
|
86
|
-
bulkMarkOrdersAsPaid: () => bulkMarkOrdersAsPaid4,
|
|
87
86
|
bulkUpdateOrderTags: () => bulkUpdateOrderTags4,
|
|
88
87
|
bulkUpdateOrders: () => bulkUpdateOrders4,
|
|
89
88
|
cancelOrder: () => cancelOrder4,
|
|
90
89
|
captureAuthorizedPayments: () => captureAuthorizedPayments4,
|
|
91
90
|
chargeMemberships: () => chargeMemberships4,
|
|
92
91
|
createOrder: () => createOrder4,
|
|
93
|
-
createPaymentGatewayOrder: () => createPaymentGatewayOrder4,
|
|
94
92
|
deleteActivity: () => deleteActivity4,
|
|
95
93
|
getOrder: () => getOrder4,
|
|
96
94
|
getPaymentCollectabilityStatus: () => getPaymentCollectabilityStatus4,
|
|
97
95
|
getRefundabilityStatus: () => getRefundabilityStatus4,
|
|
98
96
|
importOrder: () => importOrder4,
|
|
99
|
-
markOrderAsPaid: () => markOrderAsPaid4,
|
|
100
97
|
onOrderApproved: () => onOrderApproved2,
|
|
101
98
|
onOrderCanceled: () => onOrderCanceled2,
|
|
102
99
|
onOrderCommitted: () => onOrderCommitted2,
|
|
@@ -104,6 +101,9 @@ __export(index_exports, {
|
|
|
104
101
|
onOrderFulfilled: () => onOrderFulfilled2,
|
|
105
102
|
onOrderPaymentStatusUpdated: () => onOrderPaymentStatusUpdated2,
|
|
106
103
|
onOrderUpdated: () => onOrderUpdated2,
|
|
104
|
+
paymentCollectionBulkMarkOrdersAsPaid: () => paymentCollectionBulkMarkOrdersAsPaid4,
|
|
105
|
+
paymentCollectionCreatePaymentGatewayOrder: () => paymentCollectionCreatePaymentGatewayOrder4,
|
|
106
|
+
paymentCollectionMarkOrderAsPaid: () => paymentCollectionMarkOrderAsPaid4,
|
|
107
107
|
preparePaymentCollection: () => preparePaymentCollection4,
|
|
108
108
|
recordManuallyCollectedPayment: () => recordManuallyCollectedPayment4,
|
|
109
109
|
searchOrders: () => searchOrders4,
|
|
@@ -453,8 +453,8 @@ function recordManuallyCollectedPayment(payload) {
|
|
|
453
453
|
}
|
|
454
454
|
return __recordManuallyCollectedPayment;
|
|
455
455
|
}
|
|
456
|
-
function
|
|
457
|
-
function
|
|
456
|
+
function paymentCollectionMarkOrderAsPaid(payload) {
|
|
457
|
+
function __paymentCollectionMarkOrderAsPaid({ host }) {
|
|
458
458
|
const metadata = {
|
|
459
459
|
entityFqdn: "wix.ecom.v1.order",
|
|
460
460
|
method: "POST",
|
|
@@ -515,10 +515,10 @@ function markOrderAsPaid(payload) {
|
|
|
515
515
|
};
|
|
516
516
|
return metadata;
|
|
517
517
|
}
|
|
518
|
-
return
|
|
518
|
+
return __paymentCollectionMarkOrderAsPaid;
|
|
519
519
|
}
|
|
520
|
-
function
|
|
521
|
-
function
|
|
520
|
+
function paymentCollectionBulkMarkOrdersAsPaid(payload) {
|
|
521
|
+
function __paymentCollectionBulkMarkOrdersAsPaid({ host }) {
|
|
522
522
|
const metadata = {
|
|
523
523
|
entityFqdn: "wix.ecom.v1.order",
|
|
524
524
|
method: "POST",
|
|
@@ -583,7 +583,7 @@ function bulkMarkOrdersAsPaid(payload) {
|
|
|
583
583
|
};
|
|
584
584
|
return metadata;
|
|
585
585
|
}
|
|
586
|
-
return
|
|
586
|
+
return __paymentCollectionBulkMarkOrdersAsPaid;
|
|
587
587
|
}
|
|
588
588
|
function getRefundabilityStatus(payload) {
|
|
589
589
|
function __getRefundabilityStatus({ host }) {
|
|
@@ -606,8 +606,8 @@ function getRefundabilityStatus(payload) {
|
|
|
606
606
|
}
|
|
607
607
|
return __getRefundabilityStatus;
|
|
608
608
|
}
|
|
609
|
-
function
|
|
610
|
-
function
|
|
609
|
+
function paymentCollectionCreatePaymentGatewayOrder(payload) {
|
|
610
|
+
function __paymentCollectionCreatePaymentGatewayOrder({ host }) {
|
|
611
611
|
const metadata = {
|
|
612
612
|
entityFqdn: "wix.ecom.v1.order",
|
|
613
613
|
method: "POST",
|
|
@@ -625,7 +625,7 @@ function createPaymentGatewayOrder(payload) {
|
|
|
625
625
|
};
|
|
626
626
|
return metadata;
|
|
627
627
|
}
|
|
628
|
-
return
|
|
628
|
+
return __paymentCollectionCreatePaymentGatewayOrder;
|
|
629
629
|
}
|
|
630
630
|
function chargeMemberships(payload) {
|
|
631
631
|
function __chargeMemberships({ host }) {
|
|
@@ -2028,6 +2028,7 @@ var ChannelType = /* @__PURE__ */ ((ChannelType2) => {
|
|
|
2028
2028
|
ChannelType2["TIKTOK"] = "TIKTOK";
|
|
2029
2029
|
ChannelType2["FAIRE_COM"] = "FAIRE_COM";
|
|
2030
2030
|
ChannelType2["PAYPAL_AGENTIC_CHECKOUT"] = "PAYPAL_AGENTIC_CHECKOUT";
|
|
2031
|
+
ChannelType2["STRIPE_AGENTIC_CHECKOUT"] = "STRIPE_AGENTIC_CHECKOUT";
|
|
2031
2032
|
return ChannelType2;
|
|
2032
2033
|
})(ChannelType || {});
|
|
2033
2034
|
var AdditionalFeeSource = /* @__PURE__ */ ((AdditionalFeeSource2) => {
|
|
@@ -2568,13 +2569,13 @@ async function recordManuallyCollectedPayment2(orderId, amount, options) {
|
|
|
2568
2569
|
throw transformedError;
|
|
2569
2570
|
}
|
|
2570
2571
|
}
|
|
2571
|
-
async function
|
|
2572
|
+
async function paymentCollectionMarkOrderAsPaid2(ecomOrderId, options) {
|
|
2572
2573
|
const { httpClient, sideEffects } = arguments[2];
|
|
2573
2574
|
const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
|
|
2574
2575
|
ecomOrderId,
|
|
2575
2576
|
userDefinedPaymentMethodName: options?.userDefinedPaymentMethodName
|
|
2576
2577
|
});
|
|
2577
|
-
const reqOpts =
|
|
2578
|
+
const reqOpts = paymentCollectionMarkOrderAsPaid(payload);
|
|
2578
2579
|
sideEffects?.onSiteCall?.();
|
|
2579
2580
|
try {
|
|
2580
2581
|
const result = await httpClient.request(reqOpts);
|
|
@@ -2615,12 +2616,12 @@ async function markOrderAsPaid2(ecomOrderId, options) {
|
|
|
2615
2616
|
throw transformedError;
|
|
2616
2617
|
}
|
|
2617
2618
|
}
|
|
2618
|
-
async function
|
|
2619
|
+
async function paymentCollectionBulkMarkOrdersAsPaid2(ecomOrderIds) {
|
|
2619
2620
|
const { httpClient, sideEffects } = arguments[1];
|
|
2620
2621
|
const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
|
|
2621
2622
|
ecomOrderIds
|
|
2622
2623
|
});
|
|
2623
|
-
const reqOpts =
|
|
2624
|
+
const reqOpts = paymentCollectionBulkMarkOrdersAsPaid(payload);
|
|
2624
2625
|
sideEffects?.onSiteCall?.();
|
|
2625
2626
|
try {
|
|
2626
2627
|
const result = await httpClient.request(reqOpts);
|
|
@@ -2685,13 +2686,15 @@ async function getRefundabilityStatus2(ecomOrderId) {
|
|
|
2685
2686
|
throw transformedError;
|
|
2686
2687
|
}
|
|
2687
2688
|
}
|
|
2688
|
-
async function
|
|
2689
|
+
async function paymentCollectionCreatePaymentGatewayOrder2(ecomOrderId, options) {
|
|
2689
2690
|
const { httpClient, sideEffects } = arguments[2];
|
|
2690
2691
|
const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
|
|
2691
2692
|
ecomOrderId,
|
|
2692
2693
|
chargedBy: options?.chargedBy
|
|
2693
2694
|
});
|
|
2694
|
-
const reqOpts =
|
|
2695
|
+
const reqOpts = paymentCollectionCreatePaymentGatewayOrder(
|
|
2696
|
+
payload
|
|
2697
|
+
);
|
|
2695
2698
|
sideEffects?.onSiteCall?.();
|
|
2696
2699
|
try {
|
|
2697
2700
|
const result = await httpClient.request(reqOpts);
|
|
@@ -3551,16 +3554,16 @@ function recordManuallyCollectedPayment3(httpClient) {
|
|
|
3551
3554
|
{ httpClient }
|
|
3552
3555
|
);
|
|
3553
3556
|
}
|
|
3554
|
-
function
|
|
3555
|
-
return (ecomOrderId, options) =>
|
|
3557
|
+
function paymentCollectionMarkOrderAsPaid3(httpClient) {
|
|
3558
|
+
return (ecomOrderId, options) => paymentCollectionMarkOrderAsPaid2(
|
|
3556
3559
|
ecomOrderId,
|
|
3557
3560
|
options,
|
|
3558
3561
|
// @ts-ignore
|
|
3559
3562
|
{ httpClient }
|
|
3560
3563
|
);
|
|
3561
3564
|
}
|
|
3562
|
-
function
|
|
3563
|
-
return (ecomOrderIds) =>
|
|
3565
|
+
function paymentCollectionBulkMarkOrdersAsPaid3(httpClient) {
|
|
3566
|
+
return (ecomOrderIds) => paymentCollectionBulkMarkOrdersAsPaid2(
|
|
3564
3567
|
ecomOrderIds,
|
|
3565
3568
|
// @ts-ignore
|
|
3566
3569
|
{ httpClient }
|
|
@@ -3573,8 +3576,8 @@ function getRefundabilityStatus3(httpClient) {
|
|
|
3573
3576
|
{ httpClient }
|
|
3574
3577
|
);
|
|
3575
3578
|
}
|
|
3576
|
-
function
|
|
3577
|
-
return (ecomOrderId, options) =>
|
|
3579
|
+
function paymentCollectionCreatePaymentGatewayOrder3(httpClient) {
|
|
3580
|
+
return (ecomOrderId, options) => paymentCollectionCreatePaymentGatewayOrder2(
|
|
3578
3581
|
ecomOrderId,
|
|
3579
3582
|
options,
|
|
3580
3583
|
// @ts-ignore
|
|
@@ -4100,10 +4103,12 @@ var bulkDeleteImportedOrders4 = /* @__PURE__ */ (0, import_rest_modules3.createR
|
|
|
4100
4103
|
var preparePaymentCollection4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(preparePaymentCollection3);
|
|
4101
4104
|
var getPaymentCollectabilityStatus4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(getPaymentCollectabilityStatus3);
|
|
4102
4105
|
var recordManuallyCollectedPayment4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(recordManuallyCollectedPayment3);
|
|
4103
|
-
var
|
|
4104
|
-
var
|
|
4106
|
+
var paymentCollectionMarkOrderAsPaid4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(paymentCollectionMarkOrderAsPaid3);
|
|
4107
|
+
var paymentCollectionBulkMarkOrdersAsPaid4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(paymentCollectionBulkMarkOrdersAsPaid3);
|
|
4105
4108
|
var getRefundabilityStatus4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(getRefundabilityStatus3);
|
|
4106
|
-
var
|
|
4109
|
+
var paymentCollectionCreatePaymentGatewayOrder4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(
|
|
4110
|
+
paymentCollectionCreatePaymentGatewayOrder3
|
|
4111
|
+
);
|
|
4107
4112
|
var chargeMemberships4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(chargeMemberships3);
|
|
4108
4113
|
var triggerRefund4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(triggerRefund3);
|
|
4109
4114
|
var voidAuthorizedPayments4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(voidAuthorizedPayments3);
|
|
@@ -4196,20 +4201,17 @@ var onOrderUpdated2 = (0, import_event_definition_modules.createEventModule)(onO
|
|
|
4196
4201
|
addActivity,
|
|
4197
4202
|
aggregateOrders,
|
|
4198
4203
|
bulkDeleteImportedOrders,
|
|
4199
|
-
bulkMarkOrdersAsPaid,
|
|
4200
4204
|
bulkUpdateOrderTags,
|
|
4201
4205
|
bulkUpdateOrders,
|
|
4202
4206
|
cancelOrder,
|
|
4203
4207
|
captureAuthorizedPayments,
|
|
4204
4208
|
chargeMemberships,
|
|
4205
4209
|
createOrder,
|
|
4206
|
-
createPaymentGatewayOrder,
|
|
4207
4210
|
deleteActivity,
|
|
4208
4211
|
getOrder,
|
|
4209
4212
|
getPaymentCollectabilityStatus,
|
|
4210
4213
|
getRefundabilityStatus,
|
|
4211
4214
|
importOrder,
|
|
4212
|
-
markOrderAsPaid,
|
|
4213
4215
|
onOrderApproved,
|
|
4214
4216
|
onOrderCanceled,
|
|
4215
4217
|
onOrderCommitted,
|
|
@@ -4217,6 +4219,9 @@ var onOrderUpdated2 = (0, import_event_definition_modules.createEventModule)(onO
|
|
|
4217
4219
|
onOrderFulfilled,
|
|
4218
4220
|
onOrderPaymentStatusUpdated,
|
|
4219
4221
|
onOrderUpdated,
|
|
4222
|
+
paymentCollectionBulkMarkOrdersAsPaid,
|
|
4223
|
+
paymentCollectionCreatePaymentGatewayOrder,
|
|
4224
|
+
paymentCollectionMarkOrderAsPaid,
|
|
4220
4225
|
preparePaymentCollection,
|
|
4221
4226
|
recordManuallyCollectedPayment,
|
|
4222
4227
|
searchOrders,
|