@wix/auto_sdk_ecom_orders 1.0.224 → 1.0.226
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-C7VLxCzE.d.ts → ecom-v1-order-orders.universal-BM1Fu7MO.d.ts} +23 -10
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +61 -43
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +50 -34
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +24 -11
- package/build/cjs/meta.js +50 -34
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-C7VLxCzE.d.mts → ecom-v1-order-orders.universal-BM1Fu7MO.d.mts} +23 -10
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +57 -40
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +46 -31
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +24 -11
- package/build/es/meta.mjs +46 -31
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-DASMuhP6.d.ts → ecom-v1-order-orders.universal-B7TMpOuL.d.ts} +28 -15
- package/build/internal/cjs/index.d.ts +16 -16
- package/build/internal/cjs/index.js +61 -43
- 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 +50 -34
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +24 -11
- package/build/internal/cjs/meta.js +50 -34
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{ecom-v1-order-orders.universal-DASMuhP6.d.mts → ecom-v1-order-orders.universal-B7TMpOuL.d.mts} +28 -15
- package/build/internal/es/index.d.mts +16 -16
- package/build/internal/es/index.mjs +57 -40
- 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 +46 -31
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +24 -11
- package/build/internal/es/meta.mjs +46 -31
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -41,7 +41,7 @@ interface Order {
|
|
|
41
41
|
/** Buyer information. */
|
|
42
42
|
buyerInfo?: BuyerInfo;
|
|
43
43
|
/** Order payment status. */
|
|
44
|
-
paymentStatus?:
|
|
44
|
+
paymentStatus?: PaymentStatusEnumPaymentStatusWithLiterals;
|
|
45
45
|
/**
|
|
46
46
|
* Order fulfillment status.
|
|
47
47
|
* @readonly
|
|
@@ -952,7 +952,7 @@ interface BuyerInfoIdOneOf {
|
|
|
952
952
|
*/
|
|
953
953
|
memberId?: string;
|
|
954
954
|
}
|
|
955
|
-
declare enum
|
|
955
|
+
declare enum PaymentStatusEnumPaymentStatus {
|
|
956
956
|
UNSPECIFIED = "UNSPECIFIED",
|
|
957
957
|
/**
|
|
958
958
|
* `NOT_PAID` can apply to an order made online, but not yet paid. In such cases `order.status` will be `INITIALIZED`.
|
|
@@ -994,7 +994,7 @@ declare enum PaymentStatus {
|
|
|
994
994
|
DECLINED = "DECLINED"
|
|
995
995
|
}
|
|
996
996
|
/** @enumType */
|
|
997
|
-
type
|
|
997
|
+
type PaymentStatusEnumPaymentStatusWithLiterals = PaymentStatusEnumPaymentStatus | 'UNSPECIFIED' | 'NOT_PAID' | 'PAID' | 'PARTIALLY_REFUNDED' | 'FULLY_REFUNDED' | 'PENDING' | 'PARTIALLY_PAID' | 'PENDING_MERCHANT' | 'CANCELED' | 'DECLINED';
|
|
998
998
|
declare enum FulfillmentStatus {
|
|
999
999
|
/** None of the order items are fulfilled or the order was manually marked as unfulfilled. */
|
|
1000
1000
|
NOT_FULFILLED = "NOT_FULFILLED",
|
|
@@ -3109,7 +3109,7 @@ interface PaymentStatusUpdated {
|
|
|
3109
3109
|
/** The order that was updated */
|
|
3110
3110
|
order?: Order;
|
|
3111
3111
|
/** The previous status (before the update) */
|
|
3112
|
-
previousPaymentStatus?:
|
|
3112
|
+
previousPaymentStatus?: PaymentStatusEnumPaymentStatusWithLiterals;
|
|
3113
3113
|
}
|
|
3114
3114
|
/** Triggered when the fulfillment status of an order is updated */
|
|
3115
3115
|
interface FulfillmentStatusUpdated {
|
|
@@ -5302,6 +5302,19 @@ interface ExternalReceiptInfo {
|
|
|
5302
5302
|
}
|
|
5303
5303
|
interface CashRoundingDetails {
|
|
5304
5304
|
}
|
|
5305
|
+
declare enum PaymentStatus {
|
|
5306
|
+
APPROVED = "APPROVED",
|
|
5307
|
+
PENDING = "PENDING",
|
|
5308
|
+
PENDING_MERCHANT = "PENDING_MERCHANT",
|
|
5309
|
+
CANCELED = "CANCELED",
|
|
5310
|
+
DECLINED = "DECLINED",
|
|
5311
|
+
REFUNDED = "REFUNDED",
|
|
5312
|
+
PARTIALLY_REFUNDED = "PARTIALLY_REFUNDED",
|
|
5313
|
+
AUTHORIZED = "AUTHORIZED",
|
|
5314
|
+
VOIDED = "VOIDED"
|
|
5315
|
+
}
|
|
5316
|
+
/** @enumType */
|
|
5317
|
+
type PaymentStatusWithLiterals = PaymentStatus | 'APPROVED' | 'PENDING' | 'PENDING_MERCHANT' | 'CANCELED' | 'DECLINED' | 'REFUNDED' | 'PARTIALLY_REFUNDED' | 'AUTHORIZED' | 'VOIDED';
|
|
5305
5318
|
interface Refund {
|
|
5306
5319
|
/**
|
|
5307
5320
|
* Refund ID.
|
|
@@ -7454,7 +7467,7 @@ type RecordManuallyCollectedPaymentApplicationErrors = {
|
|
|
7454
7467
|
data?: Record<string, any>;
|
|
7455
7468
|
};
|
|
7456
7469
|
/** @docsIgnore */
|
|
7457
|
-
type
|
|
7470
|
+
type PaymentCollectionMarkOrderAsPaidApplicationErrors = {
|
|
7458
7471
|
code?: 'ORDER_ALREADY_PAID';
|
|
7459
7472
|
description?: string;
|
|
7460
7473
|
data?: Record<string, any>;
|
|
@@ -7468,7 +7481,7 @@ type MarkOrderAsPaidApplicationErrors = {
|
|
|
7468
7481
|
data?: Record<string, any>;
|
|
7469
7482
|
};
|
|
7470
7483
|
/** @docsIgnore */
|
|
7471
|
-
type
|
|
7484
|
+
type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors = {
|
|
7472
7485
|
code?: 'ORDER_ALREADY_PAID';
|
|
7473
7486
|
description?: string;
|
|
7474
7487
|
data?: Record<string, any>;
|
|
@@ -7919,9 +7932,9 @@ interface PreparePaymentCollectionOptions {
|
|
|
7919
7932
|
declare function getPaymentCollectabilityStatus(ecomOrderId: string): Promise<NonNullablePaths<GetPaymentCollectabilityStatusResponse, `status` | `amount.amount` | `amount.formattedAmount`, 3>>;
|
|
7920
7933
|
interface RecordManuallyCollectedPaymentOptions {
|
|
7921
7934
|
}
|
|
7922
|
-
interface
|
|
7935
|
+
interface PaymentCollectionMarkOrderAsPaidOptions {
|
|
7923
7936
|
}
|
|
7924
|
-
interface
|
|
7937
|
+
interface PaymentCollectionCreatePaymentGatewayOrderOptions {
|
|
7925
7938
|
/** Information about the user who initiated the payment. */
|
|
7926
7939
|
chargedBy?: ChargedBy;
|
|
7927
7940
|
}
|
|
@@ -8231,7 +8244,7 @@ interface UpdateOrder {
|
|
|
8231
8244
|
/** Buyer information. */
|
|
8232
8245
|
buyerInfo?: BuyerInfo;
|
|
8233
8246
|
/** Order payment status. */
|
|
8234
|
-
paymentStatus?:
|
|
8247
|
+
paymentStatus?: PaymentStatusEnumPaymentStatusWithLiterals;
|
|
8235
8248
|
/**
|
|
8236
8249
|
* Order fulfillment status.
|
|
8237
8250
|
* @readonly
|
|
@@ -8672,4 +8685,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
8672
8685
|
unassignTags?: TagsTags;
|
|
8673
8686
|
}
|
|
8674
8687
|
|
|
8675
|
-
export { OrderActivityTypeEnumActivityType as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PaymentOptionType as E, SubscriptionFrequency as F, type GetPaymentCollectabilityStatusResponse as G, AdjustmentType as H, ItemTypePreset as I, JurisdictionType as J, PaymentStatus as K, FulfillmentStatus as L, type MaskedOrder as M, VatType as N, type Order as O, type Price as P, PickupMethod as Q, OrderStatus as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, DiscountType as X, DiscountReason as Y, LineItemQuantityChangeType as Z, ActivityType as _, type PreparePaymentCollectionOptions as a, type SubscriptionSettings as a$, AttributionSource as a0, ChannelType as a1, AdditionalFeeSource as a2, OrderActionType as a3, SpecificItemsCouponBehavior as a4, ChargeType as a5, DeltaPaymentOptionType as a6, InventoryAction as a7, WebhookIdentityType as a8, PreviewEmailType as a9, SourceType as aA, CustomFieldGroup as aB, ValueType as aC, DepositType as aD, InvoiceStatus as aE, type OrderLineItem as aF, type ProductName as aG, type CatalogReference as aH, type DescriptionLine as aI, type DescriptionLineValueOneOf as aJ, type DescriptionLineDescriptionLineValueOneOf as aK, type DescriptionLineName as aL, type PlainTextValue as aM, type Color as aN, type FocalPoint as aO, type PhysicalProperties as aP, type Dimensions as aQ, type ItemType as aR, type ItemTypeItemTypeDataOneOf as aS, type RestockLocation as aT, type ItemTaxFullDetails as aU, type LineItemTaxInfo as aV, type LineItemTaxBreakdown as aW, type DigitalFile as aX, type SubscriptionInfo as aY, type SubscriptionTitle as aZ, type SubscriptionDescription as a_, State as aa, SiteCreatedContext as ab, Namespace as ac, DeleteStatus as ad, Origin 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, VersioningMode as av, SortOrder as aw, OrderApprovalStrategy as ax, Placement as ay, SubdivisionType as az, type PreparePaymentCollectionResponse as b, type ManagedAdditionalFee as b$, type FreeTrialPeriod as b0, type BillingAdjustment as b1, type BillingAdjustmentPriceSummary as b2, type PriceDescription as b3, type LocationAndQuantity as b4, type TaxableAddress as b5, type TaxableAddressTaxableAddressDataOneOf as b6, type ExtendedFields as b7, type ModifierGroup as b8, type TranslatableString as b9, type MerchantDiscountMerchantDiscountReasonOneOf as bA, type DiscountRule as bB, type DiscountRuleName as bC, type LineItemDiscount as bD, type ItemCombination as bE, type ItemCombinationLineItem as bF, type Activity as bG, type ActivityContentOneOf as bH, type CustomActivity as bI, type MerchantComment as bJ, type OrderRefunded as bK, type OrderCreatedFromExchange as bL, type NewExchangeOrderCreated as bM, type LineItemExchangeData as bN, type DraftOrderChangesApplied as bO, type OrderChange as bP, type OrderChangeValueOneOf as bQ, type LineItemChanges as bR, type LineItemQuantityChange as bS, type LineItemPriceChange as bT, type LineItemProductNameChange as bU, type LineItemDescriptionLineChange as bV, type LineItemModifiersChange as bW, type ManagedLineItem as bX, type ManagedDiscount as bY, type TranslatedValue as bZ, type LineItemAmount as b_, type ItemModifier as ba, type BuyerInfo as bb, type BuyerInfoIdOneOf as bc, type CurrencyConversionDetails as bd, type PriceSummary as be, type AddressWithContact as bf, type Address as bg, type StreetAddress as bh, type AddressLocation as bi, type FullAddressContactDetails as bj, type VatId as bk, type V1ShippingInformation as bl, type DeliveryLogistics as bm, type DeliveryLogisticsAddressOneOf as bn, type PickupDetails as bo, type PickupAddress as bp, type DeliveryTimeSlot as bq, type ShippingPrice as br, type ShippingRegion as bs, type TaxSummary as bt, type OrderTaxInfo as bu, type OrderTaxBreakdown as bv, type AppliedDiscount as bw, type AppliedDiscountDiscountSourceOneOf as bx, type Coupon as by, type MerchantDiscount as bz, type PreparePaymentCollectionApplicationErrors as c, type OrderCanceledEventOrderCanceled as c$, type TotalPriceChange as c0, type ShippingInformationChange as c1, type ShippingInformation as c2, type SavedPaymentMethod as c3, type AuthorizedPaymentCreated as c4, type AuthorizedPaymentCaptured as c5, type AuthorizedPaymentVoided as c6, type RefundInitiated as c7, type RefundedPayment as c8, type RefundedPaymentKindOneOf as c9, type CustomField as cA, type BalanceSummary as cB, type Balance as cC, type CashRounding as cD, type AdditionalFee as cE, type FulfillmentStatusesAggregate as cF, type Tags as cG, type TagList as cH, type Location as cI, type OrderSettings as cJ, type OrderSettingsAllowedActionsOneOf as cK, type OrderSettingsEditableByOneOf as cL, type CustomAllowedActions as cM, type OwnerApps as cN, type FormInfo as cO, type FormIdentifier as cP, type PlatformFeeSummary as cQ, type PlatformFee as cR, type OrderApproved as cS, type OrdersExperiments as cT, type OrderRejectedEventOrderRejected as cU, type OrderItemsRestocked as cV, type V1RestockItem as cW, type OrderImported as cX, type ImportedOrderDeleted as cY, type PaymentStatusUpdated as cZ, type FulfillmentStatusUpdated as c_, type RegularPaymentRefund as ca, type GiftCardPaymentRefund as cb, type MembershipPaymentRefund as cc, type PaymentRefunded as cd, type PaymentRefundFailed as ce, type RefundedAsStoreCredit as cf, type PaymentPending as cg, type PaymentPendingPaymentDetailsOneOf as ch, type RegularPayment as ci, type RegularPaymentPaymentMethodDetailsOneOf as cj, type CreditCardDetails as ck, type PaymentCanceled as cl, type PaymentCanceledPaymentDetailsOneOf as cm, type PaymentDeclined as cn, type PaymentDeclinedPaymentDetailsOneOf as co, type ReceiptCreated as cp, type ReceiptCreatedReceiptInfoOneOf as cq, type WixReceipt as cr, type ExternalReceipt as cs, type ReceiptSent as ct, type ReceiptSentReceiptInfoOneOf as cu, type ChargebackCreated as cv, type ChargebackReversed as cw, type CreatedBy as cx, type CreatedByStringOneOf as cy, type ChannelInfo as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type PreviewCancelEmailResponse as d$, type OrderDeltasCommitted as d0, type CommittedDiffs as d1, type CommittedDiffsShippingUpdateInfoOneOf as d2, type ItemChangedDetails as d3, type OrderLineItemChangedDetails as d4, type LineItemDelta as d5, type LineItemDeltaDeltaOneOf as d6, type AppliedDiscountDelta as d7, type AppliedDiscountDeltaDeltaOneOf as d8, type AdditionalFeeDelta as d9, type SendBuyerPickupConfirmationEmailResponse as dA, type BulkSendBuyerPickupConfirmationEmailsRequest as dB, type BulkSendBuyerPickupConfirmationEmailsResponse as dC, type SendBuyerShippingConfirmationEmailRequest as dD, type SendBuyerShippingConfirmationEmailResponse as dE, type BulkSendBuyerShippingConfirmationEmailsRequest as dF, type BulkSendBuyerShippingConfirmationEmailsResponse as dG, type SendMerchantOrderReceivedNotificationRequest as dH, type SendMerchantOrderReceivedNotificationResponse as dI, type SendCancelRefundEmailRequest as dJ, type SendCancelRefundEmailResponse as dK, type SendRefundEmailRequest as dL, type SendRefundEmailResponse as dM, type SendFulfillmentEmailRequest as dN, type SendFulfillmentEmailResponse as dO, type SendMerchantOrderReceivedPushRequest as dP, type SendMerchantOrderReceivedPushResponse as dQ, type PreviewEmailByTypeRequest as dR, type PreviewEmailByTypeResponse as dS, type PreviewRefundEmailRequest as dT, type RefundDetails as dU, type RefundItem as dV, type LineItemRefund as dW, type AdditionalFeeRefund as dX, type ShippingRefund as dY, type PreviewRefundEmailResponse as dZ, type PreviewCancelEmailRequest as d_, type AdditionalFeeDeltaDeltaOneOf as da, type DraftOrderCommitSettings as db, type InventoryUpdateDetails as dc, type ImportOrderRequest as dd, type ImportOrderResponse as de, type SetOrderNumberCounterRequest as df, type SetOrderNumberCounterResponse as dg, type BulkDeleteImportedOrdersRequest as dh, type BulkDeleteImportedOrdersResponse as di, type DomainEvent as dj, type DomainEventBodyOneOf as dk, type EntityCreatedEvent as dl, type RestoreInfo as dm, type EntityUpdatedEvent as dn, type EntityDeletedEvent as dp, type ActionEvent as dq, type MessageEnvelope as dr, type IdentificationData as ds, type IdentificationDataIdOneOf as dt, type AccountInfo as du, type SendBuyerConfirmationEmailRequest as dv, type SendBuyerConfirmationEmailResponse as dw, type SendBuyerPaymentsReceivedEmailRequest as dx, type SendBuyerPaymentsReceivedEmailResponse as dy, type SendBuyerPickupConfirmationEmailRequest as dz, type PaymentCapture as e, type BulkMarkOrdersAsPaidRequest as e$, type PreviewCancelRefundEmailRequest as e0, type PreviewCancelRefundEmailResponse as e1, type PreviewBuyerPaymentsReceivedEmailRequest as e2, type PreviewBuyerPaymentsReceivedEmailResponse as e3, type PreviewBuyerConfirmationEmailRequest as e4, type PreviewBuyerConfirmationEmailResponse as e5, type PreviewBuyerPickupConfirmationEmailRequest as e6, type PreviewBuyerPickupConfirmationEmailResponse as e7, type PreviewShippingConfirmationEmailRequest as e8, type PreviewShippingConfirmationEmailResponse as e9, type PicassoAssigned as eA, type PicassoUnassigned as eB, type WixelAssigned as eC, type WixelUnassigned as eD, type StudioTwoAssigned as eE, type StudioTwoUnassigned as eF, type UserDomainMediaEnabled as eG, type UserDomainMediaDisabled as eH, type EditorlessAssigned as eI, type EditorlessUnassigned as eJ, type HasCustomEmailConfigurationsRequest as eK, type HasCustomEmailConfigurationsResponse as eL, type AddToAutomationMigrationPopulationRequest as eM, type AddToAutomationMigrationPopulationResponse as eN, type IsInAutomationMigrationPopulationRequest as eO, type IsInAutomationMigrationPopulationResponse as eP, type PreparePaymentCollectionRequest as eQ, type RedirectUrls as eR, type DelayedCaptureSettings as eS, type Duration as eT, type GetPaymentCollectabilityStatusRequest as eU, type RecordManuallyCollectedPaymentRequest as eV, type UserDefinedPaymentMethodName as eW, type UserDefinedPaymentMethodNameKindOneOf as eX, type RecordManuallyCollectedPaymentResponse as eY, type MarkOrderAsPaidRequest as eZ, type MarkOrderAsPaidResponse as e_, type PreviewResendDownloadLinksEmailRequest as ea, type PreviewResendDownloadLinksEmailResponse as eb, type Empty as ec, type MetaSiteSpecialEvent as ed, type MetaSiteSpecialEventPayloadOneOf as ee, type Asset as ef, type SiteCreated as eg, type SiteTransferred as eh, type SiteDeleted as ei, type DeleteContext as ej, type SiteUndeleted as ek, type SitePublished as el, type SiteUnpublished as em, type SiteMarkedAsTemplate as en, type SiteMarkedAsWixSite as eo, type ServiceProvisioned as ep, type ServiceRemoved as eq, type SiteRenamed as er, type SiteHardDeleted as es, type NamespaceChanged as et, type StudioAssigned as eu, type StudioUnassigned as ev, type SiteUrlChanged as ew, type SitePurgedExternally as ex, type OdeditorAssigned as ey, type OdeditorUnassigned as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type InternalUpdateExistingOperation as f$, type BulkMarkOrdersAsPaidResponse as f0, type BulkOrderResult as f1, type ItemMetadata as f2, type ApplicationError as f3, type BulkActionMetadata as f4, type GetRefundabilityStatusRequest as f5, type GetRefundabilityStatusResponse as f6, type Refundability as f7, type RefundabilityAdditionalRefundabilityInfoOneOf as f8, type CreatePaymentGatewayOrderRequest as f9, type PaymentMethodName as fA, type GiftCardPaymentDetails as fB, type MembershipPaymentDetails as fC, type WixReceiptInfo as fD, type ExternalReceiptInfo as fE, type CashRoundingDetails as fF, type Refund as fG, type RefundTransaction as fH, type RefundStatusInfo as fI, type AggregatedRefundSummary as fJ, type RefundItemsBreakdown as fK, type LineItemRefundSummary as fL, type CalculateRefundRequest as fM, type CalculateRefundItemRequest as fN, type CalculateRefundResponse as fO, type CalculateRefundItemResponse as fP, type VoidAuthorizedPaymentsRequest as fQ, type CaptureAuthorizedPaymentsRequest as fR, type ChargeSavedPaymentMethodRequest as fS, type ChargeSavedPaymentMethodResponse as fT, type UpdateInternalDocumentsEvent as fU, type UpdateInternalDocumentsEventOperationOneOf as fV, type InternalDocument as fW, type InternalDocumentUpdateOperation as fX, type DeleteByIdsOperation as fY, type DeleteByFilterOperation as fZ, type InternalDocumentUpdateByFilterOperation as f_, type ChargedBy as fa, type CreatePaymentGatewayOrderResponse as fb, type ChargeMembershipsRequest as fc, type MembershipChargeItem as fd, type MembershipName as fe, type ServiceProperties as ff, type ChargeMembershipsResponse as fg, type TriggerRefundRequest as fh, type PaymentRefund as fi, type RefundSideEffects as fj, type RestockInfo as fk, type RestockItem as fl, type TriggerRefundResponse as fm, type OrderTransactions as fn, type Payment as fo, type PaymentPaymentDetailsOneOf as fp, type PaymentReceiptInfoOneOf as fq, type RegularPaymentDetails as fr, type RegularPaymentDetailsPaymentMethodDetailsOneOf as fs, type CreditCardPaymentMethodDetails as ft, type AuthorizationDetails as fu, type AuthorizationCapture as fv, type AuthorizationActionFailureDetails as fw, type AuthorizationVoid as fx, type V1ScheduledAction as fy, type Chargeback as fz, type GetOrderApplicationErrors as g, type UpdateOrderLineItemRequest as g$, type VersionedDocumentUpdateOperation as g0, type VersionedDeleteByIdsOperation as g1, type VersionedDocumentId as g2, type TriggerReindexRequest as g3, type TriggerReindexResponse as g4, type TriggerReindexOrderRequest as g5, type DiffmatokyPayload as g6, type ErrorInformation as g7, type GetOrderRequest as g8, type GetOrderResponse as g9, type DraftOrderDiffsBuyerUpdateInfoOneOf as gA, type DraftOrderDiffsBillingUpdateInfoOneOf as gB, type DraftOrderDiffsRecipientUpdateInfoOneOf as gC, type V1LineItemDelta as gD, type V1LineItemDeltaDeltaOneOf as gE, type CommitDeltasResponse as gF, type ArchiveOrderRequest as gG, type ArchiveOrderResponse as gH, type BulkArchiveOrdersRequest as gI, type BulkArchiveOrdersResponse as gJ, type BulkArchiveOrdersByFilterRequest as gK, type BulkArchiveOrdersByFilterResponse as gL, type UnArchiveOrderRequest as gM, type UnArchiveOrderResponse as gN, type BulkUnArchiveOrdersRequest as gO, type BulkUnArchiveOrdersResponse as gP, type BulkUnArchiveOrdersByFilterRequest as gQ, type BulkUnArchiveOrdersByFilterResponse as gR, type UpdateBuyerInfoRequest as gS, type BuyerInfoUpdate as gT, type UpdateBuyerInfoResponse as gU, type UpdateBuyerEmailRequest as gV, type UpdateBuyerEmailResponse as gW, type UpdateOrderShippingAddressRequest as gX, type UpdateOrderShippingAddressResponse as gY, type UpdateBillingContactDetailsRequest as gZ, type UpdateBillingContactDetailsResponse as g_, type InternalQueryOrdersRequest as ga, type PlatformQuery as gb, type PlatformQueryPagingMethodOneOf as gc, type Sorting as gd, type PlatformPaging as ge, type CursorPaging as gf, type InternalQueryOrdersResponse as gg, type PlatformPagingMetadata as gh, type Cursors as gi, type QueryOrderRequest as gj, type QueryOrderResponse as gk, type SearchOrdersRequest as gl, type CursorSearch as gm, type CursorSearchPagingMethodOneOf as gn, type CursorPagingMetadata as go, type CreateOrderRequest as gp, type OrderCreationSettings as gq, type OrderCreationSettingsEditableByOneOf as gr, type OrderCreateNotifications as gs, type CreateOrderResponse as gt, type UpdateOrderRequest as gu, type UpdateOrderResponse as gv, type BulkUpdateOrdersRequest as gw, type CommitDeltasRequest as gx, type DraftOrderDiffs as gy, type DraftOrderDiffsShippingUpdateInfoOneOf as gz, type OrderSearch as h, type V1CreatePaymentGatewayOrderRequest as h$, type UpdateOrderLineItemResponse as h0, type UpdateOrderLineItemsRequest as h1, type MaskedOrderLineItem as h2, type UpdateOrderLineItemsResponse as h3, type AddInternalActivityRequest as h4, type InternalActivity as h5, type InternalActivityContentOneOf as h6, type OrderPlaced as h7, type OrderPaid as h8, type OrderFulfilled as h9, type UpdateLineItemsDescriptionLinesRequest as hA, type LineItemUpdate as hB, type UpdateLineItemsDescriptionLinesResponse as hC, type MarkOrderAsSeenByHumanRequest as hD, type MarkOrderAsSeenByHumanResponse as hE, type CancelOrderRequest as hF, type UpdateOrderStatusRequest as hG, type UpdateOrderStatusResponse as hH, type MarkAsFulfilledRequest as hI, type MarkAsFulfilledResponse as hJ, type BulkMarkAsFulfilledRequest as hK, type BulkMarkAsFulfilledResponse as hL, type BulkMarkAsFulfilledByFilterRequest as hM, type BulkMarkAsFulfilledByFilterResponse as hN, type MarkAsUnfulfilledRequest as hO, type MarkAsUnfulfilledResponse as hP, type BulkMarkAsUnfulfilledRequest as hQ, type BulkMarkAsUnfulfilledResponse as hR, type BulkMarkAsUnfulfilledByFilterRequest as hS, type BulkMarkAsUnfulfilledByFilterResponse as hT, type BulkSetBusinessLocationRequest as hU, type BulkSetBusinessLocationResponse as hV, type BulkSetBusinessLocationResult as hW, type V1MarkOrderAsPaidRequest as hX, type V1MarkOrderAsPaidResponse as hY, type V1BulkMarkOrdersAsPaidRequest as hZ, type V1BulkMarkOrdersAsPaidResponse as h_, type OrderNotFulfilled as ha, type OrderCanceled as hb, type DownloadLinkSent as hc, type TrackingNumberAdded as hd, type TrackingNumberEdited as he, type TrackingLinkAdded as hf, type ShippingConfirmationEmailSent as hg, type InvoiceAdded as hh, type InvoiceSent as hi, type FulfillerEmailSent as hj, type ShippingAddressEdited as hk, type EmailEdited as hl, type PickupReadyEmailSent as hm, type OrderPartiallyPaid as hn, type OrderPending as ho, type OrderRejected as hp, type AddInternalActivityResponse as hq, type AddActivityRequest as hr, type PublicActivity as hs, type PublicActivityContentOneOf as ht, type AddActivityResponse as hu, type AddActivitiesRequest as hv, type UpdateActivityRequest as hw, type UpdateActivityResponse as hx, type DeleteActivityRequest as hy, type DeleteActivityResponse as hz, type CreateOrderOptions as i, type MarkOrderAsPaidOptions as i$, type V1CreatePaymentGatewayOrderResponse as i0, type GetShipmentsRequest as i1, type GetShipmentsResponse as i2, type AggregateOrdersRequest as i3, type AggregateOrdersResponse as i4, type DecrementItemsQuantityRequest as i5, type DecrementData as i6, type DecrementItemsQuantityResponse as i7, type BulkUpdateOrderTagsRequest as i8, type TagsTags as i9, type InvoiceDates as iA, type LineItems as iB, type LineItem as iC, type BigDecimalWrapper as iD, type LineItemTax as iE, type Source as iF, type LineItemMetaData as iG, type Locale as iH, type TotalPrice as iI, type ItemizedFee as iJ, type Discount as iK, type DiscountOneDiscountTypeOneOf as iL, type CalculatedTaxes as iM, type CalculatedTax as iN, type Payments as iO, type InvoicesPayment as iP, type MetaData as iQ, type InvoiceDynamicPriceTotals as iR, type CustomFieldValue as iS, type Value as iT, type Deposit as iU, type BaseEventMetadata as iV, type EventMetadata as iW, type AccountInfoMetadata as iX, type SetOrderNumberCounterOptions as iY, type BulkDeleteImportedOrdersOptions as iZ, type RecordManuallyCollectedPaymentOptions as i_, type TagsTagList as ia, type BulkUpdateOrderTagsResult as ib, type SendOrderUpdatedDomainEventRequest as ic, type SendOrderUpdatedDomainEventResponse as id, type Task as ie, type TaskKey as ig, type TaskAction as ih, type TaskActionActionOneOf as ii, type Complete as ij, type Cancel as ik, type Reschedule as il, type InvoiceSentEvent as im, type IdAndVersion as io, type InvoiceFields as ip, type Customer as iq, type Email as ir, type QuotesAddress as is, type AddressDescription as it, type Phone as iu, type Company as iv, type CommonAddress as iw, type CommonAddressStreetOneOf as ix, type Subdivision as iy, type StandardDetails as iz, type CreateOrderApplicationErrors as j, type PlacementWithLiterals as j$, type CreatePaymentGatewayOrderOptions as j0, type ChargeMembershipsOptions as j1, type TriggerRefundOptions as j2, type OrderSearchSpec as j3, type UpdateOrderLineItemIdentifiers as j4, type UpdateOrderLineItem as j5, type UpdateActivityIdentifiers as j6, type DeleteActivityIdentifiers as j7, type AggregateOrdersOptions as j8, utils as j9, type InventoryActionWithLiterals as jA, type WebhookIdentityTypeWithLiterals as jB, type PreviewEmailTypeWithLiterals as jC, type StateWithLiterals as jD, type SiteCreatedContextWithLiterals as jE, type NamespaceWithLiterals as jF, type DeleteStatusWithLiterals as jG, type OriginWithLiterals as jH, type ScheduledActionWithLiterals as jI, type DurationUnitWithLiterals as jJ, type PaymentCollectabilityStatusWithLiterals as jK, type PredefinedPaymentMethodWithLiterals as jL, type RefundableStatusWithLiterals as jM, type NonRefundableReasonWithLiterals as jN, type ManuallyRefundableReasonWithLiterals as jO, type RestockTypeWithLiterals as jP, type TransactionStatusWithLiterals as jQ, type AuthorizationCaptureStatusWithLiterals as jR, type AuthorizationVoidStatusWithLiterals as jS, type ReasonWithLiterals as jT, type ActionTypeWithLiterals as jU, type ChargebackStatusWithLiterals as jV, type MembershipPaymentStatusWithLiterals as jW, type RefundStatusWithLiterals as jX, type VersioningModeWithLiterals as jY, type SortOrderWithLiterals as jZ, type OrderApprovalStrategyWithLiterals as j_, type DescriptionLineTypeWithLiterals as ja, type DimensionsUnitWithLiterals as jb, type ItemTypePresetWithLiterals as jc, type PaymentOptionTypeWithLiterals as jd, type JurisdictionTypeWithLiterals as je, type SubscriptionFrequencyWithLiterals as jf, type AdjustmentTypeWithLiterals as jg, type TaxableAddressTypeWithLiterals as jh, type PaymentStatusWithLiterals as ji, type FulfillmentStatusWithLiterals as jj, type WeightUnitWithLiterals as jk, type VatTypeWithLiterals as jl, type PickupMethodWithLiterals as jm, type OrderStatusWithLiterals as jn, type DiscountTypeWithLiterals as jo, type DiscountReasonWithLiterals as jp, type LineItemQuantityChangeTypeWithLiterals as jq, type ActivityTypeWithLiterals as jr, type OrderActivityTypeEnumActivityTypeWithLiterals as js, type AttributionSourceWithLiterals as jt, type ChannelTypeWithLiterals as ju, type AdditionalFeeSourceWithLiterals as jv, type OrderActionTypeWithLiterals as jw, type SpecificItemsCouponBehaviorWithLiterals as jx, type ChargeTypeWithLiterals as jy, type DeltaPaymentOptionTypeWithLiterals as jz, type UpdateOrderApplicationErrors as k, type SubdivisionTypeWithLiterals as k0, type SourceTypeWithLiterals as k1, type CustomFieldGroupWithLiterals as k2, type ValueTypeWithLiterals as k3, type DepositTypeWithLiterals as k4, type InvoiceStatusWithLiterals as k5, type RecordManuallyCollectedPaymentApplicationErrors as k6, type MarkOrderAsPaidApplicationErrors as k7, type CreatePaymentGatewayOrderApplicationErrors as k8, type TriggerRefundApplicationErrors as k9, type UpdateOrderStatusApplicationErrors as ka, type CommonSearchWithEntityContext as kb, onOrderApproved as kc, onOrderCanceled as kd, onOrderCommitted as ke, onOrderCreated as kf, onOrderFulfilled as kg, onOrderPaymentStatusUpdated as kh, onOrderUpdated as ki, preparePaymentCollection as kj, getPaymentCollectabilityStatus as kk, voidAuthorizedPayments as kl, captureAuthorizedPayments as km, getOrder as kn, createOrder as ko, updateOrder as kp, bulkUpdateOrders as kq, addActivities as kr, cancelOrder as ks, bulkUpdateOrderTags as kt, type BulkUpdateOrdersResponse as l, type AddActivitiesResponse as m, type CancelOrderOptions as n, type CancelOrderResponse as o, type CancelOrderApplicationErrors as p, type BulkUpdateOrderTagsOptions as q, type BulkUpdateOrderTagsResponse as r, type OrderApprovedEnvelope as s, type OrderCanceledEnvelope as t, type OrderCommittedEnvelope as u, type OrderCreatedEnvelope as v, type OrderFulfilledEnvelope as w, type OrderPaymentStatusUpdatedEnvelope as x, type OrderUpdatedEnvelope as y, DimensionsUnit as z };
|
|
8688
|
+
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, PaymentStatusEnumPaymentStatus 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 SubscriptionDescription 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, PreviewEmailType as a9, SubdivisionType as aA, SourceType as aB, CustomFieldGroup as aC, ValueType as aD, DepositType as aE, InvoiceStatus as aF, type OrderLineItem as aG, type ProductName as aH, type CatalogReference as aI, type DescriptionLine as aJ, type DescriptionLineValueOneOf as aK, type DescriptionLineDescriptionLineValueOneOf as aL, type DescriptionLineName as aM, type PlainTextValue as aN, type Color as aO, type FocalPoint as aP, type PhysicalProperties as aQ, type Dimensions as aR, type ItemType as aS, type ItemTypeItemTypeDataOneOf as aT, type RestockLocation as aU, type ItemTaxFullDetails as aV, type LineItemTaxInfo as aW, type LineItemTaxBreakdown as aX, type DigitalFile as aY, type SubscriptionInfo as aZ, type SubscriptionTitle as a_, State as aa, SiteCreatedContext as ab, Namespace as ac, DeleteStatus as ad, Origin 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, PaymentStatus as au, RefundStatus as av, VersioningMode as aw, SortOrder as ax, OrderApprovalStrategy as ay, Placement as az, type PreparePaymentCollectionResponse as b, type LineItemAmount as b$, type SubscriptionSettings as b0, type FreeTrialPeriod as b1, type BillingAdjustment as b2, type BillingAdjustmentPriceSummary as b3, type PriceDescription as b4, type LocationAndQuantity as b5, type TaxableAddress as b6, type TaxableAddressTaxableAddressDataOneOf as b7, type ExtendedFields as b8, type ModifierGroup as b9, type MerchantDiscount as bA, type MerchantDiscountMerchantDiscountReasonOneOf as bB, type DiscountRule as bC, type DiscountRuleName as bD, type LineItemDiscount as bE, type ItemCombination as bF, type ItemCombinationLineItem as bG, type Activity as bH, type ActivityContentOneOf as bI, type CustomActivity as bJ, type MerchantComment as bK, type OrderRefunded as bL, type OrderCreatedFromExchange as bM, type NewExchangeOrderCreated as bN, type LineItemExchangeData as bO, type DraftOrderChangesApplied as bP, type OrderChange as bQ, type OrderChangeValueOneOf as bR, type LineItemChanges as bS, type LineItemQuantityChange as bT, type LineItemPriceChange as bU, type LineItemProductNameChange as bV, type LineItemDescriptionLineChange as bW, type LineItemModifiersChange as bX, type ManagedLineItem as bY, type ManagedDiscount as bZ, type TranslatedValue as b_, type TranslatableString as ba, type ItemModifier as bb, type BuyerInfo as bc, type BuyerInfoIdOneOf as bd, type CurrencyConversionDetails as be, type PriceSummary as bf, type AddressWithContact as bg, type Address as bh, type StreetAddress as bi, type AddressLocation as bj, type FullAddressContactDetails as bk, type VatId as bl, type V1ShippingInformation as bm, type DeliveryLogistics as bn, type DeliveryLogisticsAddressOneOf as bo, type PickupDetails as bp, type PickupAddress as bq, type DeliveryTimeSlot as br, type ShippingPrice as bs, type ShippingRegion as bt, type TaxSummary as bu, type OrderTaxInfo as bv, type OrderTaxBreakdown as bw, type AppliedDiscount as bx, type AppliedDiscountDiscountSourceOneOf as by, type Coupon as bz, type PreparePaymentCollectionApplicationErrors as c, type FulfillmentStatusUpdated as c$, type ManagedAdditionalFee as c0, type TotalPriceChange as c1, type ShippingInformationChange as c2, type ShippingInformation as c3, type SavedPaymentMethod as c4, type AuthorizedPaymentCreated as c5, type AuthorizedPaymentCaptured as c6, type AuthorizedPaymentVoided as c7, type RefundInitiated as c8, type RefundedPayment as c9, type ChannelInfo as cA, type CustomField as cB, type BalanceSummary as cC, type Balance as cD, type CashRounding as cE, type AdditionalFee as cF, type FulfillmentStatusesAggregate as cG, type Tags as cH, type TagList as cI, type Location as cJ, type OrderSettings as cK, type OrderSettingsAllowedActionsOneOf as cL, type OrderSettingsEditableByOneOf as cM, type CustomAllowedActions as cN, type OwnerApps as cO, type FormInfo as cP, type FormIdentifier as cQ, type PlatformFeeSummary as cR, type PlatformFee as cS, type OrderApproved as cT, type OrdersExperiments as cU, type OrderRejectedEventOrderRejected as cV, type OrderItemsRestocked as cW, type V1RestockItem as cX, type OrderImported as cY, type ImportedOrderDeleted as cZ, type PaymentStatusUpdated as c_, type RefundedPaymentKindOneOf as ca, type RegularPaymentRefund as cb, type GiftCardPaymentRefund as cc, type MembershipPaymentRefund as cd, type PaymentRefunded as ce, type PaymentRefundFailed as cf, type RefundedAsStoreCredit as cg, type PaymentPending as ch, type PaymentPendingPaymentDetailsOneOf as ci, type RegularPayment as cj, type RegularPaymentPaymentMethodDetailsOneOf as ck, type CreditCardDetails as cl, type PaymentCanceled as cm, type PaymentCanceledPaymentDetailsOneOf as cn, type PaymentDeclined as co, type PaymentDeclinedPaymentDetailsOneOf as cp, type ReceiptCreated as cq, type ReceiptCreatedReceiptInfoOneOf as cr, type WixReceipt as cs, type ExternalReceipt as ct, type ReceiptSent as cu, type ReceiptSentReceiptInfoOneOf as cv, type ChargebackCreated as cw, type ChargebackReversed as cx, type CreatedBy as cy, type CreatedByStringOneOf as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type PreviewCancelEmailRequest as d$, type OrderCanceledEventOrderCanceled as d0, type OrderDeltasCommitted as d1, type CommittedDiffs as d2, type CommittedDiffsShippingUpdateInfoOneOf as d3, type ItemChangedDetails as d4, type OrderLineItemChangedDetails as d5, type LineItemDelta as d6, type LineItemDeltaDeltaOneOf as d7, type AppliedDiscountDelta as d8, type AppliedDiscountDeltaDeltaOneOf as d9, type SendBuyerPickupConfirmationEmailRequest as dA, type SendBuyerPickupConfirmationEmailResponse as dB, type BulkSendBuyerPickupConfirmationEmailsRequest as dC, type BulkSendBuyerPickupConfirmationEmailsResponse as dD, type SendBuyerShippingConfirmationEmailRequest as dE, type SendBuyerShippingConfirmationEmailResponse as dF, type BulkSendBuyerShippingConfirmationEmailsRequest as dG, type BulkSendBuyerShippingConfirmationEmailsResponse as dH, type SendMerchantOrderReceivedNotificationRequest as dI, type SendMerchantOrderReceivedNotificationResponse as dJ, type SendCancelRefundEmailRequest as dK, type SendCancelRefundEmailResponse as dL, type SendRefundEmailRequest as dM, type SendRefundEmailResponse as dN, type SendFulfillmentEmailRequest as dO, type SendFulfillmentEmailResponse as dP, type SendMerchantOrderReceivedPushRequest as dQ, type SendMerchantOrderReceivedPushResponse as dR, type PreviewEmailByTypeRequest as dS, type PreviewEmailByTypeResponse as dT, type PreviewRefundEmailRequest as dU, type RefundDetails as dV, type RefundItem as dW, type LineItemRefund as dX, type AdditionalFeeRefund as dY, type ShippingRefund as dZ, type PreviewRefundEmailResponse as d_, type AdditionalFeeDelta as da, type AdditionalFeeDeltaDeltaOneOf as db, type DraftOrderCommitSettings as dc, type InventoryUpdateDetails as dd, type ImportOrderRequest as de, type ImportOrderResponse as df, type SetOrderNumberCounterRequest as dg, type SetOrderNumberCounterResponse as dh, type BulkDeleteImportedOrdersRequest as di, type BulkDeleteImportedOrdersResponse as dj, type DomainEvent as dk, type DomainEventBodyOneOf as dl, type EntityCreatedEvent as dm, type RestoreInfo as dn, type EntityUpdatedEvent as dp, type EntityDeletedEvent as dq, type ActionEvent as dr, type MessageEnvelope as ds, type IdentificationData as dt, type IdentificationDataIdOneOf as du, type AccountInfo as dv, type SendBuyerConfirmationEmailRequest as dw, type SendBuyerConfirmationEmailResponse as dx, type SendBuyerPaymentsReceivedEmailRequest as dy, type SendBuyerPaymentsReceivedEmailResponse as dz, type PaymentCapture as e, type MarkOrderAsPaidResponse as e$, type PreviewCancelEmailResponse as e0, type PreviewCancelRefundEmailRequest as e1, type PreviewCancelRefundEmailResponse as e2, type PreviewBuyerPaymentsReceivedEmailRequest as e3, type PreviewBuyerPaymentsReceivedEmailResponse as e4, type PreviewBuyerConfirmationEmailRequest as e5, type PreviewBuyerConfirmationEmailResponse as e6, type PreviewBuyerPickupConfirmationEmailRequest as e7, type PreviewBuyerPickupConfirmationEmailResponse as e8, type PreviewShippingConfirmationEmailRequest as e9, type OdeditorUnassigned as eA, type PicassoAssigned as eB, type PicassoUnassigned as eC, type WixelAssigned as eD, type WixelUnassigned as eE, type StudioTwoAssigned as eF, type StudioTwoUnassigned as eG, type UserDomainMediaEnabled as eH, type UserDomainMediaDisabled as eI, type EditorlessAssigned as eJ, type EditorlessUnassigned as eK, type HasCustomEmailConfigurationsRequest as eL, type HasCustomEmailConfigurationsResponse as eM, type AddToAutomationMigrationPopulationRequest as eN, type AddToAutomationMigrationPopulationResponse as eO, type IsInAutomationMigrationPopulationRequest as eP, type IsInAutomationMigrationPopulationResponse as eQ, type PreparePaymentCollectionRequest as eR, type RedirectUrls as eS, type DelayedCaptureSettings as eT, type Duration as eU, type GetPaymentCollectabilityStatusRequest as eV, type RecordManuallyCollectedPaymentRequest as eW, type UserDefinedPaymentMethodName as eX, type UserDefinedPaymentMethodNameKindOneOf as eY, type RecordManuallyCollectedPaymentResponse as eZ, type MarkOrderAsPaidRequest as e_, type PreviewShippingConfirmationEmailResponse as ea, type PreviewResendDownloadLinksEmailRequest as eb, type PreviewResendDownloadLinksEmailResponse as ec, type Empty as ed, type MetaSiteSpecialEvent as ee, type MetaSiteSpecialEventPayloadOneOf as ef, type Asset as eg, type SiteCreated as eh, type SiteTransferred as ei, type SiteDeleted as ej, type DeleteContext as ek, type SiteUndeleted as el, type SitePublished as em, type SiteUnpublished as en, type SiteMarkedAsTemplate as eo, type SiteMarkedAsWixSite as ep, type ServiceProvisioned as eq, type ServiceRemoved as er, type SiteRenamed as es, type SiteHardDeleted as et, type NamespaceChanged as eu, type StudioAssigned as ev, type StudioUnassigned as ew, type SiteUrlChanged as ex, type SitePurgedExternally as ey, type OdeditorAssigned as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type InternalDocumentUpdateByFilterOperation as f$, type BulkMarkOrdersAsPaidRequest as f0, type BulkMarkOrdersAsPaidResponse as f1, type BulkOrderResult as f2, type ItemMetadata as f3, type ApplicationError as f4, type BulkActionMetadata as f5, type GetRefundabilityStatusRequest as f6, type GetRefundabilityStatusResponse as f7, type Refundability as f8, type RefundabilityAdditionalRefundabilityInfoOneOf as f9, type Chargeback as fA, type PaymentMethodName as fB, type GiftCardPaymentDetails as fC, type MembershipPaymentDetails as fD, type WixReceiptInfo as fE, type ExternalReceiptInfo as fF, type CashRoundingDetails as fG, type Refund as fH, type RefundTransaction as fI, type RefundStatusInfo as fJ, type AggregatedRefundSummary as fK, type RefundItemsBreakdown as fL, type LineItemRefundSummary as fM, type CalculateRefundRequest as fN, type CalculateRefundItemRequest as fO, type CalculateRefundResponse as fP, type CalculateRefundItemResponse as fQ, type VoidAuthorizedPaymentsRequest as fR, type CaptureAuthorizedPaymentsRequest as fS, type ChargeSavedPaymentMethodRequest as fT, type ChargeSavedPaymentMethodResponse as fU, type UpdateInternalDocumentsEvent as fV, type UpdateInternalDocumentsEventOperationOneOf as fW, type InternalDocument as fX, type InternalDocumentUpdateOperation as fY, type DeleteByIdsOperation as fZ, type DeleteByFilterOperation as f_, type CreatePaymentGatewayOrderRequest as fa, type ChargedBy as fb, type CreatePaymentGatewayOrderResponse as fc, type ChargeMembershipsRequest as fd, type MembershipChargeItem as fe, type MembershipName as ff, type ServiceProperties as fg, type ChargeMembershipsResponse as fh, type TriggerRefundRequest as fi, type PaymentRefund as fj, type RefundSideEffects as fk, type RestockInfo as fl, type RestockItem as fm, type TriggerRefundResponse as fn, type OrderTransactions as fo, type Payment as fp, type PaymentPaymentDetailsOneOf as fq, type PaymentReceiptInfoOneOf as fr, type RegularPaymentDetails as fs, type RegularPaymentDetailsPaymentMethodDetailsOneOf as ft, type CreditCardPaymentMethodDetails as fu, type AuthorizationDetails as fv, type AuthorizationCapture as fw, type AuthorizationActionFailureDetails as fx, type AuthorizationVoid as fy, type V1ScheduledAction as fz, type GetOrderApplicationErrors as g, type UpdateBillingContactDetailsResponse as g$, type InternalUpdateExistingOperation as g0, type VersionedDocumentUpdateOperation as g1, type VersionedDeleteByIdsOperation as g2, type VersionedDocumentId as g3, type TriggerReindexRequest as g4, type TriggerReindexResponse as g5, type TriggerReindexOrderRequest as g6, type DiffmatokyPayload as g7, type ErrorInformation as g8, type GetOrderRequest as g9, type DraftOrderDiffsShippingUpdateInfoOneOf as gA, type DraftOrderDiffsBuyerUpdateInfoOneOf as gB, type DraftOrderDiffsBillingUpdateInfoOneOf as gC, type DraftOrderDiffsRecipientUpdateInfoOneOf as gD, type V1LineItemDelta as gE, type V1LineItemDeltaDeltaOneOf as gF, type CommitDeltasResponse as gG, type ArchiveOrderRequest as gH, type ArchiveOrderResponse as gI, type BulkArchiveOrdersRequest as gJ, type BulkArchiveOrdersResponse as gK, type BulkArchiveOrdersByFilterRequest as gL, type BulkArchiveOrdersByFilterResponse as gM, type UnArchiveOrderRequest as gN, type UnArchiveOrderResponse as gO, type BulkUnArchiveOrdersRequest as gP, type BulkUnArchiveOrdersResponse as gQ, type BulkUnArchiveOrdersByFilterRequest as gR, type BulkUnArchiveOrdersByFilterResponse as gS, type UpdateBuyerInfoRequest as gT, type BuyerInfoUpdate as gU, type UpdateBuyerInfoResponse as gV, type UpdateBuyerEmailRequest as gW, type UpdateBuyerEmailResponse as gX, type UpdateOrderShippingAddressRequest as gY, type UpdateOrderShippingAddressResponse as gZ, type UpdateBillingContactDetailsRequest as g_, type GetOrderResponse as ga, type InternalQueryOrdersRequest as gb, type PlatformQuery as gc, type PlatformQueryPagingMethodOneOf as gd, type Sorting as ge, type PlatformPaging as gf, type CursorPaging as gg, type InternalQueryOrdersResponse as gh, type PlatformPagingMetadata as gi, type Cursors as gj, type QueryOrderRequest as gk, type QueryOrderResponse as gl, type SearchOrdersRequest as gm, type CursorSearch as gn, type CursorSearchPagingMethodOneOf as go, type CursorPagingMetadata as gp, type CreateOrderRequest as gq, type OrderCreationSettings as gr, type OrderCreationSettingsEditableByOneOf as gs, type OrderCreateNotifications as gt, type CreateOrderResponse as gu, type UpdateOrderRequest as gv, type UpdateOrderResponse as gw, type BulkUpdateOrdersRequest as gx, type CommitDeltasRequest as gy, type DraftOrderDiffs as gz, type OrderSearch as h, type V1BulkMarkOrdersAsPaidResponse as h$, type UpdateOrderLineItemRequest as h0, type UpdateOrderLineItemResponse as h1, type UpdateOrderLineItemsRequest as h2, type MaskedOrderLineItem as h3, type UpdateOrderLineItemsResponse as h4, type AddInternalActivityRequest as h5, type InternalActivity as h6, type InternalActivityContentOneOf as h7, type OrderPlaced as h8, type OrderPaid as h9, type DeleteActivityResponse as hA, type UpdateLineItemsDescriptionLinesRequest as hB, type LineItemUpdate as hC, type UpdateLineItemsDescriptionLinesResponse as hD, type MarkOrderAsSeenByHumanRequest as hE, type MarkOrderAsSeenByHumanResponse as hF, type CancelOrderRequest as hG, type UpdateOrderStatusRequest as hH, type UpdateOrderStatusResponse as hI, type MarkAsFulfilledRequest as hJ, type MarkAsFulfilledResponse as hK, type BulkMarkAsFulfilledRequest as hL, type BulkMarkAsFulfilledResponse as hM, type BulkMarkAsFulfilledByFilterRequest as hN, type BulkMarkAsFulfilledByFilterResponse as hO, type MarkAsUnfulfilledRequest as hP, type MarkAsUnfulfilledResponse as hQ, type BulkMarkAsUnfulfilledRequest as hR, type BulkMarkAsUnfulfilledResponse as hS, type BulkMarkAsUnfulfilledByFilterRequest as hT, type BulkMarkAsUnfulfilledByFilterResponse as hU, type BulkSetBusinessLocationRequest as hV, type BulkSetBusinessLocationResponse as hW, type BulkSetBusinessLocationResult as hX, type V1MarkOrderAsPaidRequest as hY, type V1MarkOrderAsPaidResponse as hZ, type V1BulkMarkOrdersAsPaidRequest as h_, type OrderFulfilled as ha, type OrderNotFulfilled as hb, type OrderCanceled as hc, type DownloadLinkSent as hd, type TrackingNumberAdded as he, type TrackingNumberEdited as hf, type TrackingLinkAdded as hg, type ShippingConfirmationEmailSent as hh, type InvoiceAdded as hi, type InvoiceSent as hj, type FulfillerEmailSent as hk, type ShippingAddressEdited as hl, type EmailEdited as hm, type PickupReadyEmailSent as hn, type OrderPartiallyPaid as ho, type OrderPending as hp, type OrderRejected as hq, type AddInternalActivityResponse as hr, type AddActivityRequest as hs, type PublicActivity as ht, type PublicActivityContentOneOf as hu, type AddActivityResponse as hv, type AddActivitiesRequest as hw, type UpdateActivityRequest as hx, type UpdateActivityResponse as hy, type DeleteActivityRequest as hz, type CreateOrderOptions as i, type RecordManuallyCollectedPaymentOptions as i$, type V1CreatePaymentGatewayOrderRequest as i0, type V1CreatePaymentGatewayOrderResponse as i1, type GetShipmentsRequest as i2, type GetShipmentsResponse as i3, type AggregateOrdersRequest as i4, type AggregateOrdersResponse as i5, type DecrementItemsQuantityRequest as i6, type DecrementData as i7, type DecrementItemsQuantityResponse as i8, type BulkUpdateOrderTagsRequest as i9, type StandardDetails as iA, type InvoiceDates as iB, type LineItems as iC, type LineItem as iD, type BigDecimalWrapper as iE, type LineItemTax as iF, type Source as iG, type LineItemMetaData as iH, type Locale as iI, type TotalPrice as iJ, type ItemizedFee as iK, type Discount as iL, type DiscountOneDiscountTypeOneOf as iM, type CalculatedTaxes as iN, type CalculatedTax as iO, type Payments as iP, type InvoicesPayment as iQ, type MetaData as iR, type InvoiceDynamicPriceTotals as iS, type CustomFieldValue as iT, type Value as iU, type Deposit as iV, type BaseEventMetadata as iW, type EventMetadata as iX, type AccountInfoMetadata as iY, type SetOrderNumberCounterOptions as iZ, type BulkDeleteImportedOrdersOptions as i_, type TagsTags as ia, type TagsTagList as ib, type BulkUpdateOrderTagsResult as ic, type SendOrderUpdatedDomainEventRequest as id, type SendOrderUpdatedDomainEventResponse as ie, type Task as ig, type TaskKey as ih, type TaskAction as ii, type TaskActionActionOneOf as ij, type Complete as ik, type Cancel as il, type Reschedule as im, type InvoiceSentEvent as io, type IdAndVersion as ip, type InvoiceFields as iq, type Customer as ir, type Email as is, type QuotesAddress as it, type AddressDescription as iu, type Phone as iv, type Company as iw, type CommonAddress as ix, type CommonAddressStreetOneOf as iy, type Subdivision as iz, type CreateOrderApplicationErrors as j, type SortOrderWithLiterals as j$, type PaymentCollectionMarkOrderAsPaidOptions as j0, type PaymentCollectionCreatePaymentGatewayOrderOptions as j1, type ChargeMembershipsOptions as j2, type TriggerRefundOptions as j3, type OrderSearchSpec as j4, type UpdateOrderLineItemIdentifiers as j5, type UpdateOrderLineItem as j6, type UpdateActivityIdentifiers as j7, type DeleteActivityIdentifiers as j8, type AggregateOrdersOptions as j9, type DeltaPaymentOptionTypeWithLiterals as jA, type InventoryActionWithLiterals as jB, type WebhookIdentityTypeWithLiterals as jC, type PreviewEmailTypeWithLiterals as jD, type StateWithLiterals as jE, type SiteCreatedContextWithLiterals as jF, type NamespaceWithLiterals as jG, type DeleteStatusWithLiterals as jH, type OriginWithLiterals as jI, type ScheduledActionWithLiterals as jJ, type DurationUnitWithLiterals as jK, type PaymentCollectabilityStatusWithLiterals as jL, type PredefinedPaymentMethodWithLiterals as jM, type RefundableStatusWithLiterals as jN, type NonRefundableReasonWithLiterals as jO, type ManuallyRefundableReasonWithLiterals as jP, type RestockTypeWithLiterals as jQ, type TransactionStatusWithLiterals as jR, type AuthorizationCaptureStatusWithLiterals as jS, type AuthorizationVoidStatusWithLiterals as jT, type ReasonWithLiterals as jU, type ActionTypeWithLiterals as jV, type ChargebackStatusWithLiterals as jW, type MembershipPaymentStatusWithLiterals as jX, type PaymentStatusWithLiterals as jY, type RefundStatusWithLiterals as jZ, type VersioningModeWithLiterals as j_, utils as ja, type DescriptionLineTypeWithLiterals as jb, type DimensionsUnitWithLiterals as jc, type ItemTypePresetWithLiterals as jd, type PaymentOptionTypeWithLiterals as je, type JurisdictionTypeWithLiterals as jf, type SubscriptionFrequencyWithLiterals as jg, type AdjustmentTypeWithLiterals as jh, type TaxableAddressTypeWithLiterals as ji, type PaymentStatusEnumPaymentStatusWithLiterals as jj, type FulfillmentStatusWithLiterals as jk, type WeightUnitWithLiterals as jl, type VatTypeWithLiterals as jm, type PickupMethodWithLiterals as jn, type OrderStatusWithLiterals as jo, type DiscountTypeWithLiterals as jp, type DiscountReasonWithLiterals as jq, type LineItemQuantityChangeTypeWithLiterals as jr, type ActivityTypeWithLiterals as js, type OrderActivityTypeEnumActivityTypeWithLiterals as jt, type AttributionSourceWithLiterals as ju, type ChannelTypeWithLiterals as jv, type AdditionalFeeSourceWithLiterals as jw, type OrderActionTypeWithLiterals as jx, type SpecificItemsCouponBehaviorWithLiterals as jy, type ChargeTypeWithLiterals as jz, type UpdateOrderApplicationErrors as k, type OrderApprovalStrategyWithLiterals as k0, type PlacementWithLiterals as k1, type SubdivisionTypeWithLiterals as k2, type SourceTypeWithLiterals as k3, type CustomFieldGroupWithLiterals as k4, type ValueTypeWithLiterals as k5, type DepositTypeWithLiterals as k6, type InvoiceStatusWithLiterals as k7, type RecordManuallyCollectedPaymentApplicationErrors as k8, type PaymentCollectionMarkOrderAsPaidApplicationErrors as k9, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as ka, type TriggerRefundApplicationErrors as kb, type UpdateOrderStatusApplicationErrors as kc, type CommonSearchWithEntityContext as kd, onOrderApproved as ke, onOrderCanceled as kf, onOrderCommitted as kg, onOrderCreated as kh, onOrderFulfilled as ki, onOrderPaymentStatusUpdated as kj, onOrderUpdated as kk, preparePaymentCollection as kl, getPaymentCollectabilityStatus as km, voidAuthorizedPayments as kn, captureAuthorizedPayments as ko, getOrder as kp, createOrder as kq, updateOrder as kr, bulkUpdateOrders as ks, addActivities as kt, cancelOrder as ku, bulkUpdateOrderTags as kv, 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 { du as AccountInfo, iX as AccountInfoMetadata, dq as ActionEvent, ar as ActionType, jU as ActionTypeWithLiterals, bG as Activity, bH as ActivityContentOneOf, _ as ActivityType, jr as ActivityTypeWithLiterals, hv as AddActivitiesRequest, hr as AddActivityRequest, hu as AddActivityResponse, h4 as AddInternalActivityRequest, hq as AddInternalActivityResponse, eM as AddToAutomationMigrationPopulationRequest, eN as AddToAutomationMigrationPopulationResponse, cE as AdditionalFee, d9 as AdditionalFeeDelta, da as AdditionalFeeDeltaDeltaOneOf, dX as AdditionalFeeRefund, a2 as AdditionalFeeSource, jv as AdditionalFeeSourceWithLiterals, bg as Address, it as AddressDescription, bi as AddressLocation, bf as AddressWithContact, H as AdjustmentType, jg as AdjustmentTypeWithLiterals, j8 as AggregateOrdersOptions, i3 as AggregateOrdersRequest, i4 as AggregateOrdersResponse, fJ as AggregatedRefundSummary, f3 as ApplicationError, bw as AppliedDiscount, d7 as AppliedDiscountDelta, d8 as AppliedDiscountDeltaDeltaOneOf, bx as AppliedDiscountDiscountSourceOneOf, gG as ArchiveOrderRequest, gH as ArchiveOrderResponse, ef as Asset, a0 as AttributionSource, jt as AttributionSourceWithLiterals, fw as AuthorizationActionFailureDetails, fv as AuthorizationCapture, ao as AuthorizationCaptureStatus, jR as AuthorizationCaptureStatusWithLiterals, fu as AuthorizationDetails, fx as AuthorizationVoid, ap as AuthorizationVoidStatus, jS as AuthorizationVoidStatusWithLiterals, c5 as AuthorizedPaymentCaptured, c4 as AuthorizedPaymentCreated, c6 as AuthorizedPaymentVoided, cC as Balance, cB as BalanceSummary, iV as BaseEventMetadata, iD as BigDecimalWrapper, b1 as BillingAdjustment, b2 as BillingAdjustmentPriceSummary, f4 as BulkActionMetadata, gK as BulkArchiveOrdersByFilterRequest, gL as BulkArchiveOrdersByFilterResponse, gI as BulkArchiveOrdersRequest, gJ as BulkArchiveOrdersResponse, iZ as BulkDeleteImportedOrdersOptions, dh as BulkDeleteImportedOrdersRequest, di as BulkDeleteImportedOrdersResponse, hM as BulkMarkAsFulfilledByFilterRequest, hN as BulkMarkAsFulfilledByFilterResponse, hK as BulkMarkAsFulfilledRequest, hL as BulkMarkAsFulfilledResponse, hS as BulkMarkAsUnfulfilledByFilterRequest, hT as BulkMarkAsUnfulfilledByFilterResponse, hQ as BulkMarkAsUnfulfilledRequest, hR as BulkMarkAsUnfulfilledResponse, e$ as BulkMarkOrdersAsPaidRequest, f0 as BulkMarkOrdersAsPaidResponse, f1 as BulkOrderResult, dB as BulkSendBuyerPickupConfirmationEmailsRequest, dC as BulkSendBuyerPickupConfirmationEmailsResponse, dF as BulkSendBuyerShippingConfirmationEmailsRequest, dG as BulkSendBuyerShippingConfirmationEmailsResponse, hU as BulkSetBusinessLocationRequest, hV as BulkSetBusinessLocationResponse, hW as BulkSetBusinessLocationResult, gQ as BulkUnArchiveOrdersByFilterRequest, gR as BulkUnArchiveOrdersByFilterResponse, gO as BulkUnArchiveOrdersRequest, gP as BulkUnArchiveOrdersResponse, i8 as BulkUpdateOrderTagsRequest, ib as BulkUpdateOrderTagsResult, gw as BulkUpdateOrdersRequest, bb as BuyerInfo, bc as BuyerInfoIdOneOf, gT as BuyerInfoUpdate, fN as CalculateRefundItemRequest, fP as CalculateRefundItemResponse, fM as CalculateRefundRequest, fO as CalculateRefundResponse, iN as CalculatedTax, iM as CalculatedTaxes, ik as Cancel, hF as CancelOrderRequest, fR as CaptureAuthorizedPaymentsRequest, cD as CashRounding, fF as CashRoundingDetails, aH as CatalogReference, cz as ChannelInfo, a1 as ChannelType, ju as ChannelTypeWithLiterals, j1 as ChargeMembershipsOptions, fc as ChargeMembershipsRequest, fg as ChargeMembershipsResponse, fS as ChargeSavedPaymentMethodRequest, fT as ChargeSavedPaymentMethodResponse, a5 as ChargeType, jy as ChargeTypeWithLiterals, fz as Chargeback, cv as ChargebackCreated, cw as ChargebackReversed, as as ChargebackStatus, jV as ChargebackStatusWithLiterals, fa as ChargedBy, aN as Color, gx as CommitDeltasRequest, gF as CommitDeltasResponse, d1 as CommittedDiffs, d2 as CommittedDiffsShippingUpdateInfoOneOf, iw as CommonAddress, ix as CommonAddressStreetOneOf, kb as CommonSearchWithEntityContext, iv as Company, ij as Complete, by as Coupon, gp as CreateOrderRequest, gt as CreateOrderResponse, k8 as CreatePaymentGatewayOrderApplicationErrors, j0 as CreatePaymentGatewayOrderOptions, f9 as CreatePaymentGatewayOrderRequest, fb as CreatePaymentGatewayOrderResponse, cx as CreatedBy, cy as CreatedByStringOneOf, ck as CreditCardDetails, ft as CreditCardPaymentMethodDetails, bd as CurrencyConversionDetails, gf as CursorPaging, go as CursorPagingMetadata, gm as CursorSearch, gn as CursorSearchPagingMethodOneOf, gi as Cursors, bI as CustomActivity, cM as CustomAllowedActions, cA as CustomField, aB as CustomFieldGroup, k2 as CustomFieldGroupWithLiterals, iS as CustomFieldValue, iq as Customer, i6 as DecrementData, i5 as DecrementItemsQuantityRequest, i7 as DecrementItemsQuantityResponse, eS as DelayedCaptureSettings, j7 as DeleteActivityIdentifiers, hy as DeleteActivityRequest, hz as DeleteActivityResponse, fZ as DeleteByFilterOperation, fY as DeleteByIdsOperation, ej as DeleteContext, ad as DeleteStatus, jG as DeleteStatusWithLiterals, bm as DeliveryLogistics, bn as DeliveryLogisticsAddressOneOf, bq as DeliveryTimeSlot, a6 as DeltaPaymentOptionType, jz as DeltaPaymentOptionTypeWithLiterals, iU as Deposit, aD as DepositType, k4 as DepositTypeWithLiterals, aI as DescriptionLine, aK as DescriptionLineDescriptionLineValueOneOf, aL as DescriptionLineName, D as DescriptionLineType, ja as DescriptionLineTypeWithLiterals, aJ as DescriptionLineValueOneOf, g6 as DiffmatokyPayload, aX as DigitalFile, aQ as Dimensions, z as DimensionsUnit, jb as DimensionsUnitWithLiterals, iK as Discount, iL as DiscountOneDiscountTypeOneOf, Y as DiscountReason, jp as DiscountReasonWithLiterals, bB as DiscountRule, bC as DiscountRuleName, X as DiscountType, jo as DiscountTypeWithLiterals, dj as DomainEvent, dk as DomainEventBodyOneOf, hc as DownloadLinkSent, bO as DraftOrderChangesApplied, db as DraftOrderCommitSettings, gy as DraftOrderDiffs, gB as DraftOrderDiffsBillingUpdateInfoOneOf, gA as DraftOrderDiffsBuyerUpdateInfoOneOf, gC as DraftOrderDiffsRecipientUpdateInfoOneOf, gz as DraftOrderDiffsShippingUpdateInfoOneOf, eT as Duration, ag as DurationUnit, jJ as DurationUnitWithLiterals, eI as EditorlessAssigned, eJ as EditorlessUnassigned, ir as Email, hl as EmailEdited, ec as Empty, dl as EntityCreatedEvent, dp as EntityDeletedEvent, dn as EntityUpdatedEvent, g7 as ErrorInformation, iW as EventMetadata, b7 as ExtendedFields, cs as ExternalReceipt, fE as ExternalReceiptInfo, aO as FocalPoint, cP as FormIdentifier, cO as FormInfo, b0 as FreeTrialPeriod, hj as FulfillerEmailSent, L as FulfillmentStatus, c_ as FulfillmentStatusUpdated, jj as FulfillmentStatusWithLiterals, cF as FulfillmentStatusesAggregate, bj as FullAddressContactDetails, g8 as GetOrderRequest, g9 as GetOrderResponse, eU as GetPaymentCollectabilityStatusRequest, f5 as GetRefundabilityStatusRequest, f6 as GetRefundabilityStatusResponse, i1 as GetShipmentsRequest, i2 as GetShipmentsResponse, fB as GiftCardPaymentDetails, cb as GiftCardPaymentRefund, eK as HasCustomEmailConfigurationsRequest, eL as HasCustomEmailConfigurationsResponse, io as IdAndVersion, ds as IdentificationData, dt as IdentificationDataIdOneOf, dd as ImportOrderRequest, de as ImportOrderResponse, cY as ImportedOrderDeleted, h5 as InternalActivity, h6 as InternalActivityContentOneOf, fW as InternalDocument, f_ as InternalDocumentUpdateByFilterOperation, fX as InternalDocumentUpdateOperation, ga as InternalQueryOrdersRequest, gg as InternalQueryOrdersResponse, f$ as InternalUpdateExistingOperation, a7 as InventoryAction, jA as InventoryActionWithLiterals, dc as InventoryUpdateDetails, hh as InvoiceAdded, iA as InvoiceDates, iR as InvoiceDynamicPriceTotals, ip as InvoiceFields, hi as InvoiceSent, im as InvoiceSentEvent, aE as InvoiceStatus, k5 as InvoiceStatusWithLiterals, iP as InvoicesPayment, eO as IsInAutomationMigrationPopulationRequest, eP as IsInAutomationMigrationPopulationResponse, d3 as ItemChangedDetails, bE as ItemCombination, bF as ItemCombinationLineItem, f2 as ItemMetadata, ba as ItemModifier, aU as ItemTaxFullDetails, aR as ItemType, aS as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, jc as ItemTypePresetWithLiterals, iJ as ItemizedFee, J as JurisdictionType, je as JurisdictionTypeWithLiterals, iC as LineItem, b_ as LineItemAmount, bR as LineItemChanges, d5 as LineItemDelta, d6 as LineItemDeltaDeltaOneOf, bV as LineItemDescriptionLineChange, bD as LineItemDiscount, bN as LineItemExchangeData, iG as LineItemMetaData, bW as LineItemModifiersChange, bT as LineItemPriceChange, bU as LineItemProductNameChange, bS as LineItemQuantityChange, Z as LineItemQuantityChangeType, jq as LineItemQuantityChangeTypeWithLiterals, dW as LineItemRefund, fL as LineItemRefundSummary, iE as LineItemTax, aW as LineItemTaxBreakdown, aV as LineItemTaxInfo, hB as LineItemUpdate, iB as LineItems, iH as Locale, cI as Location, b4 as LocationAndQuantity, b$ as ManagedAdditionalFee, bY as ManagedDiscount, bX as ManagedLineItem, al as ManuallyRefundableReason, jO as ManuallyRefundableReasonWithLiterals, hI as MarkAsFulfilledRequest, hJ as MarkAsFulfilledResponse, hO as MarkAsUnfulfilledRequest, hP as MarkAsUnfulfilledResponse, k7 as MarkOrderAsPaidApplicationErrors, i$ as MarkOrderAsPaidOptions, eZ as MarkOrderAsPaidRequest, e_ as MarkOrderAsPaidResponse, hD as MarkOrderAsSeenByHumanRequest, hE as MarkOrderAsSeenByHumanResponse, h2 as MaskedOrderLineItem, fd as MembershipChargeItem, fe as MembershipName, fC as MembershipPaymentDetails, cc as MembershipPaymentRefund, at as MembershipPaymentStatus, jW as MembershipPaymentStatusWithLiterals, bJ as MerchantComment, bz as MerchantDiscount, bA as MerchantDiscountMerchantDiscountReasonOneOf, dr as MessageEnvelope, iQ as MetaData, ed as MetaSiteSpecialEvent, ee as MetaSiteSpecialEventPayloadOneOf, b8 as ModifierGroup, ac as Namespace, et as NamespaceChanged, jF as NamespaceWithLiterals, bM as NewExchangeOrderCreated, ak as NonRefundableReason, jN as NonRefundableReasonWithLiterals, ey as OdeditorAssigned, ez as OdeditorUnassigned, a3 as OrderActionType, jw as OrderActionTypeWithLiterals, $ as OrderActivityTypeEnumActivityType, js as OrderActivityTypeEnumActivityTypeWithLiterals, ax as OrderApprovalStrategy, j_ as OrderApprovalStrategyWithLiterals, cS as OrderApproved, hb as OrderCanceled, c$ as OrderCanceledEventOrderCanceled, bP as OrderChange, bQ as OrderChangeValueOneOf, gs as OrderCreateNotifications, bL as OrderCreatedFromExchange, gq as OrderCreationSettings, gr as OrderCreationSettingsEditableByOneOf, d0 as OrderDeltasCommitted, h9 as OrderFulfilled, cX as OrderImported, cV as OrderItemsRestocked, aF as OrderLineItem, d4 as OrderLineItemChangedDetails, ha as OrderNotFulfilled, h8 as OrderPaid, hn as OrderPartiallyPaid, ho as OrderPending, h7 as OrderPlaced, bK as OrderRefunded, hp as OrderRejected, cU as OrderRejectedEventOrderRejected, j3 as OrderSearchSpec, cJ as OrderSettings, cK as OrderSettingsAllowedActionsOneOf, cL as OrderSettingsEditableByOneOf, R as OrderStatus, jn as OrderStatusWithLiterals, bv as OrderTaxBreakdown, bu as OrderTaxInfo, fn as OrderTransactions, cT as OrdersExperiments, ae as Origin, jH as OriginWithLiterals, cN as OwnerApps, fo as Payment, cl as PaymentCanceled, cm as PaymentCanceledPaymentDetailsOneOf, ah as PaymentCollectabilityStatus, jK as PaymentCollectabilityStatusWithLiterals, cn as PaymentDeclined, co as PaymentDeclinedPaymentDetailsOneOf, fA as PaymentMethodName, E as PaymentOptionType, jd as PaymentOptionTypeWithLiterals, fp as PaymentPaymentDetailsOneOf, cg as PaymentPending, ch as PaymentPendingPaymentDetailsOneOf, fq as PaymentReceiptInfoOneOf, fi as PaymentRefund, ce as PaymentRefundFailed, cd as PaymentRefunded, K as PaymentStatus, cZ as PaymentStatusUpdated, ji as PaymentStatusWithLiterals, iO as Payments, iu as Phone, aP as PhysicalProperties, eA as PicassoAssigned, eB as PicassoUnassigned, bp as PickupAddress, bo as PickupDetails, Q as PickupMethod, jm as PickupMethodWithLiterals, hm as PickupReadyEmailSent, ay as Placement, j$ as PlacementWithLiterals, aM as PlainTextValue, cR as PlatformFee, cQ as PlatformFeeSummary, ge as PlatformPaging, gh as PlatformPagingMetadata, gb as PlatformQuery, gc as PlatformQueryPagingMethodOneOf, ai as PredefinedPaymentMethod, jL as PredefinedPaymentMethodWithLiterals, eQ as PreparePaymentCollectionRequest, e4 as PreviewBuyerConfirmationEmailRequest, e5 as PreviewBuyerConfirmationEmailResponse, e2 as PreviewBuyerPaymentsReceivedEmailRequest, e3 as PreviewBuyerPaymentsReceivedEmailResponse, e6 as PreviewBuyerPickupConfirmationEmailRequest, e7 as PreviewBuyerPickupConfirmationEmailResponse, d_ as PreviewCancelEmailRequest, d$ as PreviewCancelEmailResponse, e0 as PreviewCancelRefundEmailRequest, e1 as PreviewCancelRefundEmailResponse, dR as PreviewEmailByTypeRequest, dS as PreviewEmailByTypeResponse, a9 as PreviewEmailType, jC as PreviewEmailTypeWithLiterals, dT as PreviewRefundEmailRequest, dZ as PreviewRefundEmailResponse, ea as PreviewResendDownloadLinksEmailRequest, eb as PreviewResendDownloadLinksEmailResponse, e8 as PreviewShippingConfirmationEmailRequest, e9 as PreviewShippingConfirmationEmailResponse, b3 as PriceDescription, be as PriceSummary, aG as ProductName, hs as PublicActivity, ht as PublicActivityContentOneOf, gj as QueryOrderRequest, gk as QueryOrderResponse, is as QuotesAddress, aq as Reason, jT as ReasonWithLiterals, cp as ReceiptCreated, cq as ReceiptCreatedReceiptInfoOneOf, ct as ReceiptSent, cu as ReceiptSentReceiptInfoOneOf, k6 as RecordManuallyCollectedPaymentApplicationErrors, i_ as RecordManuallyCollectedPaymentOptions, eV as RecordManuallyCollectedPaymentRequest, eY as RecordManuallyCollectedPaymentResponse, eR as RedirectUrls, fG as Refund, dU as RefundDetails, c7 as RefundInitiated, dV as RefundItem, fK as RefundItemsBreakdown, fj as RefundSideEffects, au as RefundStatus, fI as RefundStatusInfo, jX as RefundStatusWithLiterals, fH as RefundTransaction, f7 as Refundability, f8 as RefundabilityAdditionalRefundabilityInfoOneOf, aj as RefundableStatus, jM as RefundableStatusWithLiterals, cf as RefundedAsStoreCredit, c8 as RefundedPayment, c9 as RefundedPaymentKindOneOf, ci as RegularPayment, fr as RegularPaymentDetails, fs as RegularPaymentDetailsPaymentMethodDetailsOneOf, cj as RegularPaymentPaymentMethodDetailsOneOf, ca as RegularPaymentRefund, il as Reschedule, fk as RestockInfo, fl as RestockItem, aT as RestockLocation, am as RestockType, jP as RestockTypeWithLiterals, dm as RestoreInfo, c3 as SavedPaymentMethod, af as ScheduledAction, jI as ScheduledActionWithLiterals, gl as SearchOrdersRequest, dv as SendBuyerConfirmationEmailRequest, dw as SendBuyerConfirmationEmailResponse, dx as SendBuyerPaymentsReceivedEmailRequest, dy as SendBuyerPaymentsReceivedEmailResponse, dz as SendBuyerPickupConfirmationEmailRequest, dA as SendBuyerPickupConfirmationEmailResponse, dD as SendBuyerShippingConfirmationEmailRequest, dE as SendBuyerShippingConfirmationEmailResponse, dJ as SendCancelRefundEmailRequest, dK as SendCancelRefundEmailResponse, dN as SendFulfillmentEmailRequest, dO as SendFulfillmentEmailResponse, dH as SendMerchantOrderReceivedNotificationRequest, dI as SendMerchantOrderReceivedNotificationResponse, dP as SendMerchantOrderReceivedPushRequest, dQ as SendMerchantOrderReceivedPushResponse, ic as SendOrderUpdatedDomainEventRequest, id as SendOrderUpdatedDomainEventResponse, dL as SendRefundEmailRequest, dM as SendRefundEmailResponse, ff as ServiceProperties, ep as ServiceProvisioned, eq as ServiceRemoved, iY as SetOrderNumberCounterOptions, df as SetOrderNumberCounterRequest, dg as SetOrderNumberCounterResponse, hk as ShippingAddressEdited, hg as ShippingConfirmationEmailSent, c2 as ShippingInformation, c1 as ShippingInformationChange, br as ShippingPrice, dY as ShippingRefund, bs as ShippingRegion, eg as SiteCreated, ab as SiteCreatedContext, jE as SiteCreatedContextWithLiterals, ei as SiteDeleted, es as SiteHardDeleted, en as SiteMarkedAsTemplate, eo as SiteMarkedAsWixSite, el as SitePublished, ex as SitePurgedExternally, er as SiteRenamed, eh as SiteTransferred, ek as SiteUndeleted, em as SiteUnpublished, ew as SiteUrlChanged, aw as SortOrder, jZ as SortOrderWithLiterals, gd as Sorting, iF as Source, aA as SourceType, k1 as SourceTypeWithLiterals, a4 as SpecificItemsCouponBehavior, jx as SpecificItemsCouponBehaviorWithLiterals, iz as StandardDetails, aa as State, jD as StateWithLiterals, bh as StreetAddress, eu as StudioAssigned, eE as StudioTwoAssigned, eF as StudioTwoUnassigned, ev as StudioUnassigned, iy as Subdivision, az as SubdivisionType, k0 as SubdivisionTypeWithLiterals, a_ as SubscriptionDescription, F as SubscriptionFrequency, jf as SubscriptionFrequencyWithLiterals, aY as SubscriptionInfo, a$ as SubscriptionSettings, aZ as SubscriptionTitle, cH as TagList, cG as Tags, ia as TagsTagList, i9 as TagsTags, ie as Task, ih as TaskAction, ii as TaskActionActionOneOf, ig as TaskKey, bt as TaxSummary, b5 as TaxableAddress, b6 as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, jh as TaxableAddressTypeWithLiterals, iI as TotalPrice, c0 as TotalPriceChange, hf as TrackingLinkAdded, hd as TrackingNumberAdded, he as TrackingNumberEdited, an as TransactionStatus, jQ as TransactionStatusWithLiterals, b9 as TranslatableString, bZ as TranslatedValue, k9 as TriggerRefundApplicationErrors, j2 as TriggerRefundOptions, fh as TriggerRefundRequest, fm as TriggerRefundResponse, g5 as TriggerReindexOrderRequest, g3 as TriggerReindexRequest, g4 as TriggerReindexResponse, gM as UnArchiveOrderRequest, gN as UnArchiveOrderResponse, j6 as UpdateActivityIdentifiers, hw as UpdateActivityRequest, hx as UpdateActivityResponse, gZ as UpdateBillingContactDetailsRequest, g_ as UpdateBillingContactDetailsResponse, gV as UpdateBuyerEmailRequest, gW as UpdateBuyerEmailResponse, gS as UpdateBuyerInfoRequest, gU as UpdateBuyerInfoResponse, fU as UpdateInternalDocumentsEvent, fV as UpdateInternalDocumentsEventOperationOneOf, hA as UpdateLineItemsDescriptionLinesRequest, hC as UpdateLineItemsDescriptionLinesResponse, j5 as UpdateOrderLineItem, j4 as UpdateOrderLineItemIdentifiers, g$ as UpdateOrderLineItemRequest, h0 as UpdateOrderLineItemResponse, h1 as UpdateOrderLineItemsRequest, h3 as UpdateOrderLineItemsResponse, gu as UpdateOrderRequest, gv as UpdateOrderResponse, gX as UpdateOrderShippingAddressRequest, gY as UpdateOrderShippingAddressResponse, ka as UpdateOrderStatusApplicationErrors, hG as UpdateOrderStatusRequest, hH as UpdateOrderStatusResponse, eW as UserDefinedPaymentMethodName, eX as UserDefinedPaymentMethodNameKindOneOf, eH as UserDomainMediaDisabled, eG as UserDomainMediaEnabled, hZ as V1BulkMarkOrdersAsPaidRequest, h_ as V1BulkMarkOrdersAsPaidResponse, h$ as V1CreatePaymentGatewayOrderRequest, i0 as V1CreatePaymentGatewayOrderResponse, gD as V1LineItemDelta, gE as V1LineItemDeltaDeltaOneOf, hX as V1MarkOrderAsPaidRequest, hY as V1MarkOrderAsPaidResponse, cW as V1RestockItem, fy as V1ScheduledAction, bl as V1ShippingInformation, iT as Value, aC as ValueType, k3 as ValueTypeWithLiterals, bk as VatId, N as VatType, jl as VatTypeWithLiterals, g1 as VersionedDeleteByIdsOperation, g2 as VersionedDocumentId, g0 as VersionedDocumentUpdateOperation, av as VersioningMode, jY as VersioningModeWithLiterals, fQ as VoidAuthorizedPaymentsRequest, a8 as WebhookIdentityType, jB as WebhookIdentityTypeWithLiterals, W as WeightUnit, jk as WeightUnitWithLiterals, cr as WixReceipt, fD as WixReceiptInfo, eC as WixelAssigned, eD as WixelUnassigned, j9 as utils } from './ecom-v1-order-orders.universal-C7VLxCzE.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-BM1Fu7MO.js';
|
|
3
|
+
export { dv as AccountInfo, iY as AccountInfoMetadata, dr as ActionEvent, ar as ActionType, jV as ActionTypeWithLiterals, bH as Activity, bI as ActivityContentOneOf, _ as ActivityType, js as ActivityTypeWithLiterals, hw as AddActivitiesRequest, hs as AddActivityRequest, hv as AddActivityResponse, h5 as AddInternalActivityRequest, hr as AddInternalActivityResponse, eN as AddToAutomationMigrationPopulationRequest, eO as AddToAutomationMigrationPopulationResponse, cF as AdditionalFee, da as AdditionalFeeDelta, db as AdditionalFeeDeltaDeltaOneOf, dY as AdditionalFeeRefund, a2 as AdditionalFeeSource, jw as AdditionalFeeSourceWithLiterals, bh as Address, iu as AddressDescription, bj as AddressLocation, bg as AddressWithContact, H as AdjustmentType, jh as AdjustmentTypeWithLiterals, j9 as AggregateOrdersOptions, i4 as AggregateOrdersRequest, i5 as AggregateOrdersResponse, fK as AggregatedRefundSummary, f4 as ApplicationError, bx as AppliedDiscount, d8 as AppliedDiscountDelta, d9 as AppliedDiscountDeltaDeltaOneOf, by as AppliedDiscountDiscountSourceOneOf, gH as ArchiveOrderRequest, gI as ArchiveOrderResponse, eg as Asset, a0 as AttributionSource, ju as AttributionSourceWithLiterals, fx as AuthorizationActionFailureDetails, fw as AuthorizationCapture, ao as AuthorizationCaptureStatus, jS as AuthorizationCaptureStatusWithLiterals, fv as AuthorizationDetails, fy as AuthorizationVoid, ap as AuthorizationVoidStatus, jT as AuthorizationVoidStatusWithLiterals, c6 as AuthorizedPaymentCaptured, c5 as AuthorizedPaymentCreated, c7 as AuthorizedPaymentVoided, cD as Balance, cC as BalanceSummary, iW as BaseEventMetadata, iE as BigDecimalWrapper, b2 as BillingAdjustment, b3 as BillingAdjustmentPriceSummary, f5 as BulkActionMetadata, gL as BulkArchiveOrdersByFilterRequest, gM as BulkArchiveOrdersByFilterResponse, gJ as BulkArchiveOrdersRequest, gK as BulkArchiveOrdersResponse, i_ as BulkDeleteImportedOrdersOptions, di as BulkDeleteImportedOrdersRequest, dj as BulkDeleteImportedOrdersResponse, hN as BulkMarkAsFulfilledByFilterRequest, hO as BulkMarkAsFulfilledByFilterResponse, hL as BulkMarkAsFulfilledRequest, hM as BulkMarkAsFulfilledResponse, hT as BulkMarkAsUnfulfilledByFilterRequest, hU as BulkMarkAsUnfulfilledByFilterResponse, hR as BulkMarkAsUnfulfilledRequest, hS as BulkMarkAsUnfulfilledResponse, f0 as BulkMarkOrdersAsPaidRequest, f1 as BulkMarkOrdersAsPaidResponse, f2 as BulkOrderResult, dC as BulkSendBuyerPickupConfirmationEmailsRequest, dD as BulkSendBuyerPickupConfirmationEmailsResponse, dG as BulkSendBuyerShippingConfirmationEmailsRequest, dH as BulkSendBuyerShippingConfirmationEmailsResponse, hV as BulkSetBusinessLocationRequest, hW as BulkSetBusinessLocationResponse, hX as BulkSetBusinessLocationResult, gR as BulkUnArchiveOrdersByFilterRequest, gS as BulkUnArchiveOrdersByFilterResponse, gP as BulkUnArchiveOrdersRequest, gQ as BulkUnArchiveOrdersResponse, i9 as BulkUpdateOrderTagsRequest, ic as BulkUpdateOrderTagsResult, gx as BulkUpdateOrdersRequest, bc as BuyerInfo, bd as BuyerInfoIdOneOf, gU as BuyerInfoUpdate, fO as CalculateRefundItemRequest, fQ as CalculateRefundItemResponse, fN as CalculateRefundRequest, fP as CalculateRefundResponse, iO as CalculatedTax, iN as CalculatedTaxes, il as Cancel, hG as CancelOrderRequest, fS as CaptureAuthorizedPaymentsRequest, cE as CashRounding, fG as CashRoundingDetails, aI as CatalogReference, cA as ChannelInfo, a1 as ChannelType, jv as ChannelTypeWithLiterals, j2 as ChargeMembershipsOptions, fd as ChargeMembershipsRequest, fh as ChargeMembershipsResponse, fT as ChargeSavedPaymentMethodRequest, fU as ChargeSavedPaymentMethodResponse, a5 as ChargeType, jz as ChargeTypeWithLiterals, fA as Chargeback, cw as ChargebackCreated, cx as ChargebackReversed, as as ChargebackStatus, jW as ChargebackStatusWithLiterals, fb as ChargedBy, aO as Color, gy as CommitDeltasRequest, gG as CommitDeltasResponse, d2 as CommittedDiffs, d3 as CommittedDiffsShippingUpdateInfoOneOf, ix as CommonAddress, iy as CommonAddressStreetOneOf, kd as CommonSearchWithEntityContext, iw as Company, ik as Complete, bz as Coupon, gq as CreateOrderRequest, gu as CreateOrderResponse, fa as CreatePaymentGatewayOrderRequest, fc as CreatePaymentGatewayOrderResponse, cy as CreatedBy, cz as CreatedByStringOneOf, cl as CreditCardDetails, fu as CreditCardPaymentMethodDetails, be as CurrencyConversionDetails, gg as CursorPaging, gp as CursorPagingMetadata, gn as CursorSearch, go as CursorSearchPagingMethodOneOf, gj as Cursors, bJ as CustomActivity, cN as CustomAllowedActions, cB as CustomField, aC as CustomFieldGroup, k4 as CustomFieldGroupWithLiterals, iT as CustomFieldValue, ir as Customer, i7 as DecrementData, i6 as DecrementItemsQuantityRequest, i8 as DecrementItemsQuantityResponse, eT as DelayedCaptureSettings, j8 as DeleteActivityIdentifiers, hz as DeleteActivityRequest, hA as DeleteActivityResponse, f_ as DeleteByFilterOperation, fZ as DeleteByIdsOperation, ek as DeleteContext, ad as DeleteStatus, jH as DeleteStatusWithLiterals, bn as DeliveryLogistics, bo as DeliveryLogisticsAddressOneOf, br as DeliveryTimeSlot, a6 as DeltaPaymentOptionType, jA as DeltaPaymentOptionTypeWithLiterals, iV as Deposit, aE as DepositType, k6 as DepositTypeWithLiterals, aJ as DescriptionLine, aL as DescriptionLineDescriptionLineValueOneOf, aM as DescriptionLineName, D as DescriptionLineType, jb as DescriptionLineTypeWithLiterals, aK as DescriptionLineValueOneOf, g7 as DiffmatokyPayload, aY as DigitalFile, aR as Dimensions, z as DimensionsUnit, jc as DimensionsUnitWithLiterals, iL as Discount, iM as DiscountOneDiscountTypeOneOf, Y as DiscountReason, jq as DiscountReasonWithLiterals, bC as DiscountRule, bD as DiscountRuleName, X as DiscountType, jp as DiscountTypeWithLiterals, dk as DomainEvent, dl as DomainEventBodyOneOf, hd as DownloadLinkSent, bP as DraftOrderChangesApplied, dc as DraftOrderCommitSettings, gz as DraftOrderDiffs, gC as DraftOrderDiffsBillingUpdateInfoOneOf, gB as DraftOrderDiffsBuyerUpdateInfoOneOf, gD as DraftOrderDiffsRecipientUpdateInfoOneOf, gA as DraftOrderDiffsShippingUpdateInfoOneOf, eU as Duration, ag as DurationUnit, jK as DurationUnitWithLiterals, eJ as EditorlessAssigned, eK as EditorlessUnassigned, is as Email, hm as EmailEdited, ed as Empty, dm as EntityCreatedEvent, dq as EntityDeletedEvent, dp as EntityUpdatedEvent, g8 as ErrorInformation, iX as EventMetadata, b8 as ExtendedFields, ct as ExternalReceipt, fF as ExternalReceiptInfo, aP as FocalPoint, cQ as FormIdentifier, cP as FormInfo, b1 as FreeTrialPeriod, hk as FulfillerEmailSent, L as FulfillmentStatus, c$ as FulfillmentStatusUpdated, jk as FulfillmentStatusWithLiterals, cG as FulfillmentStatusesAggregate, bk as FullAddressContactDetails, g9 as GetOrderRequest, ga as GetOrderResponse, eV as GetPaymentCollectabilityStatusRequest, f6 as GetRefundabilityStatusRequest, f7 as GetRefundabilityStatusResponse, i2 as GetShipmentsRequest, i3 as GetShipmentsResponse, fC as GiftCardPaymentDetails, cc as GiftCardPaymentRefund, eL as HasCustomEmailConfigurationsRequest, eM as HasCustomEmailConfigurationsResponse, ip as IdAndVersion, dt as IdentificationData, du as IdentificationDataIdOneOf, de as ImportOrderRequest, df as ImportOrderResponse, cZ as ImportedOrderDeleted, h6 as InternalActivity, h7 as InternalActivityContentOneOf, fX as InternalDocument, f$ as InternalDocumentUpdateByFilterOperation, fY as InternalDocumentUpdateOperation, gb as InternalQueryOrdersRequest, gh as InternalQueryOrdersResponse, g0 as InternalUpdateExistingOperation, a7 as InventoryAction, jB as InventoryActionWithLiterals, dd as InventoryUpdateDetails, hi as InvoiceAdded, iB as InvoiceDates, iS as InvoiceDynamicPriceTotals, iq as InvoiceFields, hj as InvoiceSent, io as InvoiceSentEvent, aF as InvoiceStatus, k7 as InvoiceStatusWithLiterals, iQ as InvoicesPayment, eP as IsInAutomationMigrationPopulationRequest, eQ as IsInAutomationMigrationPopulationResponse, d4 as ItemChangedDetails, bF as ItemCombination, bG as ItemCombinationLineItem, f3 as ItemMetadata, bb as ItemModifier, aV as ItemTaxFullDetails, aS as ItemType, aT as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, jd as ItemTypePresetWithLiterals, iK as ItemizedFee, J as JurisdictionType, jf as JurisdictionTypeWithLiterals, iD as LineItem, b$ as LineItemAmount, bS as LineItemChanges, d6 as LineItemDelta, d7 as LineItemDeltaDeltaOneOf, bW as LineItemDescriptionLineChange, bE as LineItemDiscount, bO as LineItemExchangeData, iH as LineItemMetaData, bX as LineItemModifiersChange, bU as LineItemPriceChange, bV as LineItemProductNameChange, bT as LineItemQuantityChange, Z as LineItemQuantityChangeType, jr as LineItemQuantityChangeTypeWithLiterals, dX as LineItemRefund, fM as LineItemRefundSummary, iF as LineItemTax, aX as LineItemTaxBreakdown, aW as LineItemTaxInfo, hC as LineItemUpdate, iC as LineItems, iI as Locale, cJ as Location, b5 as LocationAndQuantity, c0 as ManagedAdditionalFee, bZ as ManagedDiscount, bY as ManagedLineItem, al as ManuallyRefundableReason, jP as ManuallyRefundableReasonWithLiterals, hJ as MarkAsFulfilledRequest, hK as MarkAsFulfilledResponse, hP as MarkAsUnfulfilledRequest, hQ as MarkAsUnfulfilledResponse, e_ as MarkOrderAsPaidRequest, e$ as MarkOrderAsPaidResponse, hE as MarkOrderAsSeenByHumanRequest, hF as MarkOrderAsSeenByHumanResponse, h3 as MaskedOrderLineItem, fe as MembershipChargeItem, ff as MembershipName, fD as MembershipPaymentDetails, cd as MembershipPaymentRefund, at as MembershipPaymentStatus, jX as MembershipPaymentStatusWithLiterals, bK as MerchantComment, bA as MerchantDiscount, bB as MerchantDiscountMerchantDiscountReasonOneOf, ds as MessageEnvelope, iR as MetaData, ee as MetaSiteSpecialEvent, ef as MetaSiteSpecialEventPayloadOneOf, b9 as ModifierGroup, ac as Namespace, eu as NamespaceChanged, jG as NamespaceWithLiterals, bN as NewExchangeOrderCreated, ak as NonRefundableReason, jO as NonRefundableReasonWithLiterals, ez as OdeditorAssigned, eA as OdeditorUnassigned, a3 as OrderActionType, jx as OrderActionTypeWithLiterals, $ as OrderActivityTypeEnumActivityType, jt as OrderActivityTypeEnumActivityTypeWithLiterals, ay as OrderApprovalStrategy, k0 as OrderApprovalStrategyWithLiterals, cT as OrderApproved, hc as OrderCanceled, d0 as OrderCanceledEventOrderCanceled, bQ as OrderChange, bR as OrderChangeValueOneOf, gt as OrderCreateNotifications, bM as OrderCreatedFromExchange, gr as OrderCreationSettings, gs as OrderCreationSettingsEditableByOneOf, d1 as OrderDeltasCommitted, ha as OrderFulfilled, cY as OrderImported, cW as OrderItemsRestocked, aG as OrderLineItem, d5 as OrderLineItemChangedDetails, hb as OrderNotFulfilled, h9 as OrderPaid, ho as OrderPartiallyPaid, hp as OrderPending, h8 as OrderPlaced, bL as OrderRefunded, hq as OrderRejected, cV as OrderRejectedEventOrderRejected, j4 as OrderSearchSpec, cK as OrderSettings, cL as OrderSettingsAllowedActionsOneOf, cM as OrderSettingsEditableByOneOf, R as OrderStatus, jo as OrderStatusWithLiterals, bw as OrderTaxBreakdown, bv as OrderTaxInfo, fo as OrderTransactions, cU as OrdersExperiments, ae as Origin, jI as OriginWithLiterals, cO as OwnerApps, fp as Payment, cm as PaymentCanceled, cn as PaymentCanceledPaymentDetailsOneOf, ah as PaymentCollectabilityStatus, jL as PaymentCollectabilityStatusWithLiterals, ka as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, j1 as PaymentCollectionCreatePaymentGatewayOrderOptions, k9 as PaymentCollectionMarkOrderAsPaidApplicationErrors, j0 as PaymentCollectionMarkOrderAsPaidOptions, co as PaymentDeclined, cp as PaymentDeclinedPaymentDetailsOneOf, fB as PaymentMethodName, E as PaymentOptionType, je as PaymentOptionTypeWithLiterals, fq as PaymentPaymentDetailsOneOf, ch as PaymentPending, ci as PaymentPendingPaymentDetailsOneOf, fr as PaymentReceiptInfoOneOf, fj as PaymentRefund, cf as PaymentRefundFailed, ce as PaymentRefunded, au as PaymentStatus, K as PaymentStatusEnumPaymentStatus, jj as PaymentStatusEnumPaymentStatusWithLiterals, c_ as PaymentStatusUpdated, jY as PaymentStatusWithLiterals, iP as Payments, iv as Phone, aQ as PhysicalProperties, eB as PicassoAssigned, eC as PicassoUnassigned, bq as PickupAddress, bp as PickupDetails, Q as PickupMethod, jn as PickupMethodWithLiterals, hn as PickupReadyEmailSent, az as Placement, k1 as PlacementWithLiterals, aN as PlainTextValue, cS as PlatformFee, cR as PlatformFeeSummary, gf as PlatformPaging, gi as PlatformPagingMetadata, gc as PlatformQuery, gd as PlatformQueryPagingMethodOneOf, ai as PredefinedPaymentMethod, jM as PredefinedPaymentMethodWithLiterals, eR as PreparePaymentCollectionRequest, e5 as PreviewBuyerConfirmationEmailRequest, e6 as PreviewBuyerConfirmationEmailResponse, e3 as PreviewBuyerPaymentsReceivedEmailRequest, e4 as PreviewBuyerPaymentsReceivedEmailResponse, e7 as PreviewBuyerPickupConfirmationEmailRequest, e8 as PreviewBuyerPickupConfirmationEmailResponse, d$ as PreviewCancelEmailRequest, e0 as PreviewCancelEmailResponse, e1 as PreviewCancelRefundEmailRequest, e2 as PreviewCancelRefundEmailResponse, dS as PreviewEmailByTypeRequest, dT as PreviewEmailByTypeResponse, a9 as PreviewEmailType, jD as PreviewEmailTypeWithLiterals, dU as PreviewRefundEmailRequest, d_ as PreviewRefundEmailResponse, eb as PreviewResendDownloadLinksEmailRequest, ec as PreviewResendDownloadLinksEmailResponse, e9 as PreviewShippingConfirmationEmailRequest, ea as PreviewShippingConfirmationEmailResponse, b4 as PriceDescription, bf as PriceSummary, aH as ProductName, ht as PublicActivity, hu as PublicActivityContentOneOf, gk as QueryOrderRequest, gl as QueryOrderResponse, it as QuotesAddress, aq as Reason, jU as ReasonWithLiterals, cq as ReceiptCreated, cr as ReceiptCreatedReceiptInfoOneOf, cu as ReceiptSent, cv as ReceiptSentReceiptInfoOneOf, k8 as RecordManuallyCollectedPaymentApplicationErrors, i$ as RecordManuallyCollectedPaymentOptions, eW as RecordManuallyCollectedPaymentRequest, eZ as RecordManuallyCollectedPaymentResponse, eS as RedirectUrls, fH as Refund, dV as RefundDetails, c8 as RefundInitiated, dW as RefundItem, fL as RefundItemsBreakdown, fk as RefundSideEffects, av as RefundStatus, fJ as RefundStatusInfo, jZ as RefundStatusWithLiterals, fI as RefundTransaction, f8 as Refundability, f9 as RefundabilityAdditionalRefundabilityInfoOneOf, aj as RefundableStatus, jN as RefundableStatusWithLiterals, cg as RefundedAsStoreCredit, c9 as RefundedPayment, ca as RefundedPaymentKindOneOf, cj as RegularPayment, fs as RegularPaymentDetails, ft as RegularPaymentDetailsPaymentMethodDetailsOneOf, ck as RegularPaymentPaymentMethodDetailsOneOf, cb as RegularPaymentRefund, im as Reschedule, fl as RestockInfo, fm as RestockItem, aU as RestockLocation, am as RestockType, jQ as RestockTypeWithLiterals, dn as RestoreInfo, c4 as SavedPaymentMethod, af as ScheduledAction, jJ as ScheduledActionWithLiterals, gm as SearchOrdersRequest, dw as SendBuyerConfirmationEmailRequest, dx as SendBuyerConfirmationEmailResponse, dy as SendBuyerPaymentsReceivedEmailRequest, dz as SendBuyerPaymentsReceivedEmailResponse, dA as SendBuyerPickupConfirmationEmailRequest, dB as SendBuyerPickupConfirmationEmailResponse, dE as SendBuyerShippingConfirmationEmailRequest, dF as SendBuyerShippingConfirmationEmailResponse, dK as SendCancelRefundEmailRequest, dL as SendCancelRefundEmailResponse, dO as SendFulfillmentEmailRequest, dP as SendFulfillmentEmailResponse, dI as SendMerchantOrderReceivedNotificationRequest, dJ as SendMerchantOrderReceivedNotificationResponse, dQ as SendMerchantOrderReceivedPushRequest, dR as SendMerchantOrderReceivedPushResponse, id as SendOrderUpdatedDomainEventRequest, ie as SendOrderUpdatedDomainEventResponse, dM as SendRefundEmailRequest, dN as SendRefundEmailResponse, fg as ServiceProperties, eq as ServiceProvisioned, er as ServiceRemoved, iZ as SetOrderNumberCounterOptions, dg as SetOrderNumberCounterRequest, dh as SetOrderNumberCounterResponse, hl as ShippingAddressEdited, hh as ShippingConfirmationEmailSent, c3 as ShippingInformation, c2 as ShippingInformationChange, bs as ShippingPrice, dZ as ShippingRefund, bt as ShippingRegion, eh as SiteCreated, ab as SiteCreatedContext, jF as SiteCreatedContextWithLiterals, ej as SiteDeleted, et as SiteHardDeleted, eo as SiteMarkedAsTemplate, ep as SiteMarkedAsWixSite, em as SitePublished, ey as SitePurgedExternally, es as SiteRenamed, ei as SiteTransferred, el as SiteUndeleted, en as SiteUnpublished, ex as SiteUrlChanged, ax as SortOrder, j$ as SortOrderWithLiterals, ge as Sorting, iG as Source, aB as SourceType, k3 as SourceTypeWithLiterals, a4 as SpecificItemsCouponBehavior, jy as SpecificItemsCouponBehaviorWithLiterals, iA as StandardDetails, aa as State, jE as StateWithLiterals, bi as StreetAddress, ev as StudioAssigned, eF as StudioTwoAssigned, eG as StudioTwoUnassigned, ew as StudioUnassigned, iz as Subdivision, aA as SubdivisionType, k2 as SubdivisionTypeWithLiterals, a$ as SubscriptionDescription, F as SubscriptionFrequency, jg as SubscriptionFrequencyWithLiterals, aZ as SubscriptionInfo, b0 as SubscriptionSettings, a_ as SubscriptionTitle, cI as TagList, cH as Tags, ib as TagsTagList, ia as TagsTags, ig as Task, ii as TaskAction, ij as TaskActionActionOneOf, ih as TaskKey, bu as TaxSummary, b6 as TaxableAddress, b7 as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, ji as TaxableAddressTypeWithLiterals, iJ as TotalPrice, c1 as TotalPriceChange, hg as TrackingLinkAdded, he as TrackingNumberAdded, hf as TrackingNumberEdited, an as TransactionStatus, jR as TransactionStatusWithLiterals, ba as TranslatableString, b_ as TranslatedValue, kb as TriggerRefundApplicationErrors, j3 as TriggerRefundOptions, fi as TriggerRefundRequest, fn as TriggerRefundResponse, g6 as TriggerReindexOrderRequest, g4 as TriggerReindexRequest, g5 as TriggerReindexResponse, gN as UnArchiveOrderRequest, gO as UnArchiveOrderResponse, j7 as UpdateActivityIdentifiers, hx as UpdateActivityRequest, hy as UpdateActivityResponse, g_ as UpdateBillingContactDetailsRequest, g$ as UpdateBillingContactDetailsResponse, gW as UpdateBuyerEmailRequest, gX as UpdateBuyerEmailResponse, gT as UpdateBuyerInfoRequest, gV as UpdateBuyerInfoResponse, fV as UpdateInternalDocumentsEvent, fW as UpdateInternalDocumentsEventOperationOneOf, hB as UpdateLineItemsDescriptionLinesRequest, hD as UpdateLineItemsDescriptionLinesResponse, j6 as UpdateOrderLineItem, j5 as UpdateOrderLineItemIdentifiers, h0 as UpdateOrderLineItemRequest, h1 as UpdateOrderLineItemResponse, h2 as UpdateOrderLineItemsRequest, h4 as UpdateOrderLineItemsResponse, gv as UpdateOrderRequest, gw as UpdateOrderResponse, gY as UpdateOrderShippingAddressRequest, gZ as UpdateOrderShippingAddressResponse, kc as UpdateOrderStatusApplicationErrors, hH as UpdateOrderStatusRequest, hI as UpdateOrderStatusResponse, eX as UserDefinedPaymentMethodName, eY as UserDefinedPaymentMethodNameKindOneOf, eI as UserDomainMediaDisabled, eH as UserDomainMediaEnabled, h_ as V1BulkMarkOrdersAsPaidRequest, h$ as V1BulkMarkOrdersAsPaidResponse, i0 as V1CreatePaymentGatewayOrderRequest, i1 as V1CreatePaymentGatewayOrderResponse, gE as V1LineItemDelta, gF as V1LineItemDeltaDeltaOneOf, hY as V1MarkOrderAsPaidRequest, hZ as V1MarkOrderAsPaidResponse, cX as V1RestockItem, fz as V1ScheduledAction, bm as V1ShippingInformation, iU as Value, aD as ValueType, k5 as ValueTypeWithLiterals, bl as VatId, N as VatType, jm as VatTypeWithLiterals, g2 as VersionedDeleteByIdsOperation, g3 as VersionedDocumentId, g1 as VersionedDocumentUpdateOperation, aw as VersioningMode, j_ as VersioningModeWithLiterals, fR as VoidAuthorizedPaymentsRequest, a8 as WebhookIdentityType, jC as WebhookIdentityTypeWithLiterals, W as WeightUnit, jl as WeightUnitWithLiterals, cs as WixReceipt, fE as WixReceiptInfo, eD as WixelAssigned, eE as WixelUnassigned, ja as utils } from './ecom-v1-order-orders.universal-BM1Fu7MO.js';
|
|
4
4
|
|
|
5
5
|
declare function preparePaymentCollection$1(httpClient: HttpClient): PreparePaymentCollectionSignature;
|
|
6
6
|
interface PreparePaymentCollectionSignature {
|
package/build/cjs/index.js
CHANGED
|
@@ -57,6 +57,7 @@ __export(index_exports, {
|
|
|
57
57
|
PaymentCollectabilityStatus: () => PaymentCollectabilityStatus,
|
|
58
58
|
PaymentOptionType: () => PaymentOptionType,
|
|
59
59
|
PaymentStatus: () => PaymentStatus,
|
|
60
|
+
PaymentStatusEnumPaymentStatus: () => PaymentStatusEnumPaymentStatus,
|
|
60
61
|
PickupMethod: () => PickupMethod,
|
|
61
62
|
Placement: () => Placement,
|
|
62
63
|
PredefinedPaymentMethod: () => PredefinedPaymentMethod,
|
|
@@ -84,20 +85,17 @@ __export(index_exports, {
|
|
|
84
85
|
addActivity: () => addActivity4,
|
|
85
86
|
aggregateOrders: () => aggregateOrders4,
|
|
86
87
|
bulkDeleteImportedOrders: () => bulkDeleteImportedOrders4,
|
|
87
|
-
bulkMarkOrdersAsPaid: () => bulkMarkOrdersAsPaid4,
|
|
88
88
|
bulkUpdateOrderTags: () => bulkUpdateOrderTags4,
|
|
89
89
|
bulkUpdateOrders: () => bulkUpdateOrders4,
|
|
90
90
|
cancelOrder: () => cancelOrder4,
|
|
91
91
|
captureAuthorizedPayments: () => captureAuthorizedPayments4,
|
|
92
92
|
chargeMemberships: () => chargeMemberships4,
|
|
93
93
|
createOrder: () => createOrder4,
|
|
94
|
-
createPaymentGatewayOrder: () => createPaymentGatewayOrder4,
|
|
95
94
|
deleteActivity: () => deleteActivity4,
|
|
96
95
|
getOrder: () => getOrder4,
|
|
97
96
|
getPaymentCollectabilityStatus: () => getPaymentCollectabilityStatus4,
|
|
98
97
|
getRefundabilityStatus: () => getRefundabilityStatus4,
|
|
99
98
|
importOrder: () => importOrder4,
|
|
100
|
-
markOrderAsPaid: () => markOrderAsPaid4,
|
|
101
99
|
onOrderApproved: () => onOrderApproved2,
|
|
102
100
|
onOrderCanceled: () => onOrderCanceled2,
|
|
103
101
|
onOrderCommitted: () => onOrderCommitted2,
|
|
@@ -105,6 +103,9 @@ __export(index_exports, {
|
|
|
105
103
|
onOrderFulfilled: () => onOrderFulfilled2,
|
|
106
104
|
onOrderPaymentStatusUpdated: () => onOrderPaymentStatusUpdated2,
|
|
107
105
|
onOrderUpdated: () => onOrderUpdated2,
|
|
106
|
+
paymentCollectionBulkMarkOrdersAsPaid: () => paymentCollectionBulkMarkOrdersAsPaid4,
|
|
107
|
+
paymentCollectionCreatePaymentGatewayOrder: () => paymentCollectionCreatePaymentGatewayOrder4,
|
|
108
|
+
paymentCollectionMarkOrderAsPaid: () => paymentCollectionMarkOrderAsPaid4,
|
|
108
109
|
preparePaymentCollection: () => preparePaymentCollection4,
|
|
109
110
|
recordManuallyCollectedPayment: () => recordManuallyCollectedPayment4,
|
|
110
111
|
searchOrders: () => searchOrders4,
|
|
@@ -454,8 +455,8 @@ function recordManuallyCollectedPayment(payload) {
|
|
|
454
455
|
}
|
|
455
456
|
return __recordManuallyCollectedPayment;
|
|
456
457
|
}
|
|
457
|
-
function
|
|
458
|
-
function
|
|
458
|
+
function paymentCollectionMarkOrderAsPaid(payload) {
|
|
459
|
+
function __paymentCollectionMarkOrderAsPaid({ host }) {
|
|
459
460
|
const metadata = {
|
|
460
461
|
entityFqdn: "wix.ecom.v1.order",
|
|
461
462
|
method: "POST",
|
|
@@ -516,10 +517,10 @@ function markOrderAsPaid(payload) {
|
|
|
516
517
|
};
|
|
517
518
|
return metadata;
|
|
518
519
|
}
|
|
519
|
-
return
|
|
520
|
+
return __paymentCollectionMarkOrderAsPaid;
|
|
520
521
|
}
|
|
521
|
-
function
|
|
522
|
-
function
|
|
522
|
+
function paymentCollectionBulkMarkOrdersAsPaid(payload) {
|
|
523
|
+
function __paymentCollectionBulkMarkOrdersAsPaid({ host }) {
|
|
523
524
|
const metadata = {
|
|
524
525
|
entityFqdn: "wix.ecom.v1.order",
|
|
525
526
|
method: "POST",
|
|
@@ -584,7 +585,7 @@ function bulkMarkOrdersAsPaid(payload) {
|
|
|
584
585
|
};
|
|
585
586
|
return metadata;
|
|
586
587
|
}
|
|
587
|
-
return
|
|
588
|
+
return __paymentCollectionBulkMarkOrdersAsPaid;
|
|
588
589
|
}
|
|
589
590
|
function getRefundabilityStatus(payload) {
|
|
590
591
|
function __getRefundabilityStatus({ host }) {
|
|
@@ -607,8 +608,8 @@ function getRefundabilityStatus(payload) {
|
|
|
607
608
|
}
|
|
608
609
|
return __getRefundabilityStatus;
|
|
609
610
|
}
|
|
610
|
-
function
|
|
611
|
-
function
|
|
611
|
+
function paymentCollectionCreatePaymentGatewayOrder(payload) {
|
|
612
|
+
function __paymentCollectionCreatePaymentGatewayOrder({ host }) {
|
|
612
613
|
const metadata = {
|
|
613
614
|
entityFqdn: "wix.ecom.v1.order",
|
|
614
615
|
method: "POST",
|
|
@@ -626,7 +627,7 @@ function createPaymentGatewayOrder(payload) {
|
|
|
626
627
|
};
|
|
627
628
|
return metadata;
|
|
628
629
|
}
|
|
629
|
-
return
|
|
630
|
+
return __paymentCollectionCreatePaymentGatewayOrder;
|
|
630
631
|
}
|
|
631
632
|
function chargeMemberships(payload) {
|
|
632
633
|
function __chargeMemberships({ host }) {
|
|
@@ -1853,19 +1854,19 @@ var TaxableAddressType = /* @__PURE__ */ ((TaxableAddressType2) => {
|
|
|
1853
1854
|
TaxableAddressType2["SHIPPING"] = "SHIPPING";
|
|
1854
1855
|
return TaxableAddressType2;
|
|
1855
1856
|
})(TaxableAddressType || {});
|
|
1856
|
-
var
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
return
|
|
1868
|
-
})(
|
|
1857
|
+
var PaymentStatusEnumPaymentStatus = /* @__PURE__ */ ((PaymentStatusEnumPaymentStatus2) => {
|
|
1858
|
+
PaymentStatusEnumPaymentStatus2["UNSPECIFIED"] = "UNSPECIFIED";
|
|
1859
|
+
PaymentStatusEnumPaymentStatus2["NOT_PAID"] = "NOT_PAID";
|
|
1860
|
+
PaymentStatusEnumPaymentStatus2["PAID"] = "PAID";
|
|
1861
|
+
PaymentStatusEnumPaymentStatus2["PARTIALLY_REFUNDED"] = "PARTIALLY_REFUNDED";
|
|
1862
|
+
PaymentStatusEnumPaymentStatus2["FULLY_REFUNDED"] = "FULLY_REFUNDED";
|
|
1863
|
+
PaymentStatusEnumPaymentStatus2["PENDING"] = "PENDING";
|
|
1864
|
+
PaymentStatusEnumPaymentStatus2["PARTIALLY_PAID"] = "PARTIALLY_PAID";
|
|
1865
|
+
PaymentStatusEnumPaymentStatus2["PENDING_MERCHANT"] = "PENDING_MERCHANT";
|
|
1866
|
+
PaymentStatusEnumPaymentStatus2["CANCELED"] = "CANCELED";
|
|
1867
|
+
PaymentStatusEnumPaymentStatus2["DECLINED"] = "DECLINED";
|
|
1868
|
+
return PaymentStatusEnumPaymentStatus2;
|
|
1869
|
+
})(PaymentStatusEnumPaymentStatus || {});
|
|
1869
1870
|
var FulfillmentStatus = /* @__PURE__ */ ((FulfillmentStatus2) => {
|
|
1870
1871
|
FulfillmentStatus2["NOT_FULFILLED"] = "NOT_FULFILLED";
|
|
1871
1872
|
FulfillmentStatus2["FULFILLED"] = "FULFILLED";
|
|
@@ -2263,6 +2264,18 @@ var MembershipPaymentStatus = /* @__PURE__ */ ((MembershipPaymentStatus2) => {
|
|
|
2263
2264
|
MembershipPaymentStatus2["VOIDED"] = "VOIDED";
|
|
2264
2265
|
return MembershipPaymentStatus2;
|
|
2265
2266
|
})(MembershipPaymentStatus || {});
|
|
2267
|
+
var PaymentStatus = /* @__PURE__ */ ((PaymentStatus2) => {
|
|
2268
|
+
PaymentStatus2["APPROVED"] = "APPROVED";
|
|
2269
|
+
PaymentStatus2["PENDING"] = "PENDING";
|
|
2270
|
+
PaymentStatus2["PENDING_MERCHANT"] = "PENDING_MERCHANT";
|
|
2271
|
+
PaymentStatus2["CANCELED"] = "CANCELED";
|
|
2272
|
+
PaymentStatus2["DECLINED"] = "DECLINED";
|
|
2273
|
+
PaymentStatus2["REFUNDED"] = "REFUNDED";
|
|
2274
|
+
PaymentStatus2["PARTIALLY_REFUNDED"] = "PARTIALLY_REFUNDED";
|
|
2275
|
+
PaymentStatus2["AUTHORIZED"] = "AUTHORIZED";
|
|
2276
|
+
PaymentStatus2["VOIDED"] = "VOIDED";
|
|
2277
|
+
return PaymentStatus2;
|
|
2278
|
+
})(PaymentStatus || {});
|
|
2266
2279
|
var RefundStatus = /* @__PURE__ */ ((RefundStatus2) => {
|
|
2267
2280
|
RefundStatus2["PENDING"] = "PENDING";
|
|
2268
2281
|
RefundStatus2["SUCCEEDED"] = "SUCCEEDED";
|
|
@@ -2555,13 +2568,13 @@ async function recordManuallyCollectedPayment2(orderId, amount, options) {
|
|
|
2555
2568
|
throw transformedError;
|
|
2556
2569
|
}
|
|
2557
2570
|
}
|
|
2558
|
-
async function
|
|
2571
|
+
async function paymentCollectionMarkOrderAsPaid2(ecomOrderId, options) {
|
|
2559
2572
|
const { httpClient, sideEffects } = arguments[2];
|
|
2560
2573
|
const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
|
|
2561
2574
|
ecomOrderId,
|
|
2562
2575
|
userDefinedPaymentMethodName: options?.userDefinedPaymentMethodName
|
|
2563
2576
|
});
|
|
2564
|
-
const reqOpts =
|
|
2577
|
+
const reqOpts = paymentCollectionMarkOrderAsPaid(payload);
|
|
2565
2578
|
sideEffects?.onSiteCall?.();
|
|
2566
2579
|
try {
|
|
2567
2580
|
const result = await httpClient.request(reqOpts);
|
|
@@ -2602,12 +2615,12 @@ async function markOrderAsPaid2(ecomOrderId, options) {
|
|
|
2602
2615
|
throw transformedError;
|
|
2603
2616
|
}
|
|
2604
2617
|
}
|
|
2605
|
-
async function
|
|
2618
|
+
async function paymentCollectionBulkMarkOrdersAsPaid2(ecomOrderIds) {
|
|
2606
2619
|
const { httpClient, sideEffects } = arguments[1];
|
|
2607
2620
|
const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
|
|
2608
2621
|
ecomOrderIds
|
|
2609
2622
|
});
|
|
2610
|
-
const reqOpts =
|
|
2623
|
+
const reqOpts = paymentCollectionBulkMarkOrdersAsPaid(payload);
|
|
2611
2624
|
sideEffects?.onSiteCall?.();
|
|
2612
2625
|
try {
|
|
2613
2626
|
const result = await httpClient.request(reqOpts);
|
|
@@ -2672,13 +2685,15 @@ async function getRefundabilityStatus2(ecomOrderId) {
|
|
|
2672
2685
|
throw transformedError;
|
|
2673
2686
|
}
|
|
2674
2687
|
}
|
|
2675
|
-
async function
|
|
2688
|
+
async function paymentCollectionCreatePaymentGatewayOrder2(ecomOrderId, options) {
|
|
2676
2689
|
const { httpClient, sideEffects } = arguments[2];
|
|
2677
2690
|
const payload = (0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
|
|
2678
2691
|
ecomOrderId,
|
|
2679
2692
|
chargedBy: options?.chargedBy
|
|
2680
2693
|
});
|
|
2681
|
-
const reqOpts =
|
|
2694
|
+
const reqOpts = paymentCollectionCreatePaymentGatewayOrder(
|
|
2695
|
+
payload
|
|
2696
|
+
);
|
|
2682
2697
|
sideEffects?.onSiteCall?.();
|
|
2683
2698
|
try {
|
|
2684
2699
|
const result = await httpClient.request(reqOpts);
|
|
@@ -3538,16 +3553,16 @@ function recordManuallyCollectedPayment3(httpClient) {
|
|
|
3538
3553
|
{ httpClient }
|
|
3539
3554
|
);
|
|
3540
3555
|
}
|
|
3541
|
-
function
|
|
3542
|
-
return (ecomOrderId, options) =>
|
|
3556
|
+
function paymentCollectionMarkOrderAsPaid3(httpClient) {
|
|
3557
|
+
return (ecomOrderId, options) => paymentCollectionMarkOrderAsPaid2(
|
|
3543
3558
|
ecomOrderId,
|
|
3544
3559
|
options,
|
|
3545
3560
|
// @ts-ignore
|
|
3546
3561
|
{ httpClient }
|
|
3547
3562
|
);
|
|
3548
3563
|
}
|
|
3549
|
-
function
|
|
3550
|
-
return (ecomOrderIds) =>
|
|
3564
|
+
function paymentCollectionBulkMarkOrdersAsPaid3(httpClient) {
|
|
3565
|
+
return (ecomOrderIds) => paymentCollectionBulkMarkOrdersAsPaid2(
|
|
3551
3566
|
ecomOrderIds,
|
|
3552
3567
|
// @ts-ignore
|
|
3553
3568
|
{ httpClient }
|
|
@@ -3560,8 +3575,8 @@ function getRefundabilityStatus3(httpClient) {
|
|
|
3560
3575
|
{ httpClient }
|
|
3561
3576
|
);
|
|
3562
3577
|
}
|
|
3563
|
-
function
|
|
3564
|
-
return (ecomOrderId, options) =>
|
|
3578
|
+
function paymentCollectionCreatePaymentGatewayOrder3(httpClient) {
|
|
3579
|
+
return (ecomOrderId, options) => paymentCollectionCreatePaymentGatewayOrder2(
|
|
3565
3580
|
ecomOrderId,
|
|
3566
3581
|
options,
|
|
3567
3582
|
// @ts-ignore
|
|
@@ -4087,10 +4102,12 @@ var bulkDeleteImportedOrders4 = /* @__PURE__ */ (0, import_rest_modules3.createR
|
|
|
4087
4102
|
var preparePaymentCollection4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(preparePaymentCollection3);
|
|
4088
4103
|
var getPaymentCollectabilityStatus4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(getPaymentCollectabilityStatus3);
|
|
4089
4104
|
var recordManuallyCollectedPayment4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(recordManuallyCollectedPayment3);
|
|
4090
|
-
var
|
|
4091
|
-
var
|
|
4105
|
+
var paymentCollectionMarkOrderAsPaid4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(paymentCollectionMarkOrderAsPaid3);
|
|
4106
|
+
var paymentCollectionBulkMarkOrdersAsPaid4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(paymentCollectionBulkMarkOrdersAsPaid3);
|
|
4092
4107
|
var getRefundabilityStatus4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(getRefundabilityStatus3);
|
|
4093
|
-
var
|
|
4108
|
+
var paymentCollectionCreatePaymentGatewayOrder4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(
|
|
4109
|
+
paymentCollectionCreatePaymentGatewayOrder3
|
|
4110
|
+
);
|
|
4094
4111
|
var chargeMemberships4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(chargeMemberships3);
|
|
4095
4112
|
var triggerRefund4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(triggerRefund3);
|
|
4096
4113
|
var voidAuthorizedPayments4 = /* @__PURE__ */ (0, import_rest_modules3.createRESTModule)(voidAuthorizedPayments3);
|
|
@@ -4157,6 +4174,7 @@ var onOrderUpdated2 = (0, import_event_definition_modules.createEventModule)(onO
|
|
|
4157
4174
|
PaymentCollectabilityStatus,
|
|
4158
4175
|
PaymentOptionType,
|
|
4159
4176
|
PaymentStatus,
|
|
4177
|
+
PaymentStatusEnumPaymentStatus,
|
|
4160
4178
|
PickupMethod,
|
|
4161
4179
|
Placement,
|
|
4162
4180
|
PredefinedPaymentMethod,
|
|
@@ -4184,20 +4202,17 @@ var onOrderUpdated2 = (0, import_event_definition_modules.createEventModule)(onO
|
|
|
4184
4202
|
addActivity,
|
|
4185
4203
|
aggregateOrders,
|
|
4186
4204
|
bulkDeleteImportedOrders,
|
|
4187
|
-
bulkMarkOrdersAsPaid,
|
|
4188
4205
|
bulkUpdateOrderTags,
|
|
4189
4206
|
bulkUpdateOrders,
|
|
4190
4207
|
cancelOrder,
|
|
4191
4208
|
captureAuthorizedPayments,
|
|
4192
4209
|
chargeMemberships,
|
|
4193
4210
|
createOrder,
|
|
4194
|
-
createPaymentGatewayOrder,
|
|
4195
4211
|
deleteActivity,
|
|
4196
4212
|
getOrder,
|
|
4197
4213
|
getPaymentCollectabilityStatus,
|
|
4198
4214
|
getRefundabilityStatus,
|
|
4199
4215
|
importOrder,
|
|
4200
|
-
markOrderAsPaid,
|
|
4201
4216
|
onOrderApproved,
|
|
4202
4217
|
onOrderCanceled,
|
|
4203
4218
|
onOrderCommitted,
|
|
@@ -4205,6 +4220,9 @@ var onOrderUpdated2 = (0, import_event_definition_modules.createEventModule)(onO
|
|
|
4205
4220
|
onOrderFulfilled,
|
|
4206
4221
|
onOrderPaymentStatusUpdated,
|
|
4207
4222
|
onOrderUpdated,
|
|
4223
|
+
paymentCollectionBulkMarkOrdersAsPaid,
|
|
4224
|
+
paymentCollectionCreatePaymentGatewayOrder,
|
|
4225
|
+
paymentCollectionMarkOrderAsPaid,
|
|
4208
4226
|
preparePaymentCollection,
|
|
4209
4227
|
recordManuallyCollectedPayment,
|
|
4210
4228
|
searchOrders,
|