@wix/auto_sdk_ecom_orders 1.0.254 → 1.0.256
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-KHoi3OZ9.d.ts → ecom-v1-order-orders.universal-D7hLED8N.d.ts} +42 -2
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +24 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +24 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +43 -3
- package/build/cjs/meta.js +23 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-KHoi3OZ9.d.mts → ecom-v1-order-orders.universal-D7hLED8N.d.mts} +42 -2
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +21 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +21 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +43 -3
- package/build/es/meta.mjs +20 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-BnQm5A1P.d.ts → ecom-v1-order-orders.universal-SnDmdo04.d.ts} +49 -3
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +24 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js +24 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +43 -3
- package/build/internal/cjs/meta.js +23 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{ecom-v1-order-orders.universal-BnQm5A1P.d.mts → ecom-v1-order-orders.universal-SnDmdo04.d.mts} +49 -3
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +21 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +21 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +43 -3
- package/build/internal/es/meta.mjs +20 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -2848,7 +2848,13 @@ declare enum ChannelType {
|
|
|
2848
2848
|
* @documentationMaturity preview
|
|
2849
2849
|
* @internal
|
|
2850
2850
|
*/
|
|
2851
|
-
WIX_INVOICES_PLATFORM = "WIX_INVOICES_PLATFORM"
|
|
2851
|
+
WIX_INVOICES_PLATFORM = "WIX_INVOICES_PLATFORM",
|
|
2852
|
+
/**
|
|
2853
|
+
* UCP (Universal Checkout Protocol) Agentic Checkout sales channel.
|
|
2854
|
+
* @documentationMaturity preview
|
|
2855
|
+
* @internal
|
|
2856
|
+
*/
|
|
2857
|
+
UCP_AGENTIC_CHECKOUT = "UCP_AGENTIC_CHECKOUT"
|
|
2852
2858
|
}
|
|
2853
2859
|
/** @enumType */
|
|
2854
2860
|
type ChannelTypeWithLiterals = ChannelType | 'UNSPECIFIED' | 'WEB' | 'POS' | 'EBAY' | 'AMAZON' | 'OTHER_PLATFORM' | 'WIX_APP_STORE' | 'WIX_INVOICES' | 'BACKOFFICE_MERCHANT' | 'WISH' | 'CLASS_PASS' | 'GLOBAL_E' | 'FACEBOOK' | 'ETSY' | 'TIKTOK' | 'FAIRE_COM' | 'PAYPAL_AGENTIC_CHECKOUT' | 'STRIPE_AGENTIC_CHECKOUT';
|
|
@@ -5458,7 +5464,7 @@ interface OrderTransactions {
|
|
|
5458
5464
|
*/
|
|
5459
5465
|
refunds?: Refund[];
|
|
5460
5466
|
}
|
|
5461
|
-
interface Payment extends PaymentPaymentDetailsOneOf, PaymentReceiptInfoOneOf {
|
|
5467
|
+
interface Payment extends PaymentPaymentDetailsOneOf, PaymentReceiptInfoOneOf, PaymentStatusDetailsOneOf {
|
|
5462
5468
|
/** Regular payment details. */
|
|
5463
5469
|
regularPaymentDetails?: RegularPaymentDetails;
|
|
5464
5470
|
/** Gift card payment details. */
|
|
@@ -5535,6 +5541,9 @@ interface PaymentReceiptInfoOneOf {
|
|
|
5535
5541
|
*/
|
|
5536
5542
|
externalReceipt?: ExternalReceiptInfo;
|
|
5537
5543
|
}
|
|
5544
|
+
/** @oneof */
|
|
5545
|
+
interface PaymentStatusDetailsOneOf {
|
|
5546
|
+
}
|
|
5538
5547
|
interface RegularPaymentDetails extends RegularPaymentDetailsPaymentMethodDetailsOneOf {
|
|
5539
5548
|
/** Credit card details. */
|
|
5540
5549
|
creditCardDetails?: CreditCardPaymentMethodDetails;
|
|
@@ -5929,6 +5938,43 @@ declare enum PaymentStatus {
|
|
|
5929
5938
|
}
|
|
5930
5939
|
/** @enumType */
|
|
5931
5940
|
type PaymentStatusWithLiterals = PaymentStatus | 'APPROVED' | 'PENDING' | 'PENDING_MERCHANT' | 'CANCELED' | 'DECLINED' | 'REFUNDED' | 'PARTIALLY_REFUNDED' | 'AUTHORIZED' | 'VOIDED';
|
|
5941
|
+
interface CanceledStatusDetails {
|
|
5942
|
+
reason?: CanceledReasonWithLiterals;
|
|
5943
|
+
}
|
|
5944
|
+
declare enum CanceledReason {
|
|
5945
|
+
/** Other payment with the same chargeCorrelationId failed before current payment started. */
|
|
5946
|
+
OTHER_PAYMENT_FAILURE = "OTHER_PAYMENT_FAILURE",
|
|
5947
|
+
/** Payment was not completed by user and expired. */
|
|
5948
|
+
EXPIRED = "EXPIRED"
|
|
5949
|
+
}
|
|
5950
|
+
/** @enumType */
|
|
5951
|
+
type CanceledReasonWithLiterals = CanceledReason | 'OTHER_PAYMENT_FAILURE' | 'EXPIRED';
|
|
5952
|
+
interface DeclinedStatusDetails {
|
|
5953
|
+
reason?: DeclinedReasonWithLiterals;
|
|
5954
|
+
}
|
|
5955
|
+
declare enum DeclinedReason {
|
|
5956
|
+
/** Corresponding charge failed. */
|
|
5957
|
+
CHARGE_FAILED = "CHARGE_FAILED",
|
|
5958
|
+
/** Payment details expired. */
|
|
5959
|
+
EXPIRED = "EXPIRED",
|
|
5960
|
+
/** Insufficient funds. */
|
|
5961
|
+
INSUFFICIENT_FUNDS = "INSUFFICIENT_FUNDS",
|
|
5962
|
+
/** Gift card was disabled before charge was attempted. */
|
|
5963
|
+
GIFT_CARD_DISABLED = "GIFT_CARD_DISABLED"
|
|
5964
|
+
}
|
|
5965
|
+
/** @enumType */
|
|
5966
|
+
type DeclinedReasonWithLiterals = DeclinedReason | 'CHARGE_FAILED' | 'EXPIRED' | 'INSUFFICIENT_FUNDS' | 'GIFT_CARD_DISABLED';
|
|
5967
|
+
interface VoidedStatusDetails {
|
|
5968
|
+
reason?: VoidedReasonWithLiterals;
|
|
5969
|
+
}
|
|
5970
|
+
declare enum VoidedReason {
|
|
5971
|
+
/** Payment was voided by merchant request. */
|
|
5972
|
+
MERCHANT_REQUEST = "MERCHANT_REQUEST",
|
|
5973
|
+
/** Other payment with the same chargeCorrelationId failed and caused rollback of all payments with same chargeCorrelationId. */
|
|
5974
|
+
OTHER_PAYMENT_FAILURE = "OTHER_PAYMENT_FAILURE"
|
|
5975
|
+
}
|
|
5976
|
+
/** @enumType */
|
|
5977
|
+
type VoidedReasonWithLiterals = VoidedReason | 'MERCHANT_REQUEST' | 'OTHER_PAYMENT_FAILURE';
|
|
5932
5978
|
interface Refund {
|
|
5933
5979
|
/**
|
|
5934
5980
|
* Refund ID.
|
|
@@ -9612,4 +9658,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
9612
9658
|
unassignTags?: TagsTags;
|
|
9613
9659
|
}
|
|
9614
9660
|
|
|
9615
|
-
export { type CancelOrderResponse as $, type MaskedOrder as A, type BulkDeleteImportedOrdersResponse as B, type CreatePaymentGatewayOrderResponse as C, type BulkUpdateOrdersOptions as D, type BulkUpdateOrdersResponse as E, type UpdateOrderLineItemIdentifiers as F, type GetPaymentCollectabilityStatusResponse as G, type UpdateOrderLineItem as H, type ImportOrderResponse as I, type UpdateOrderLineItemResponse as J, type PublicActivity as K, type AddActivityResponse as L, type MarkOrderAsPaidResponse as M, type AddActivitiesOptions as N, type Order as O, type Price as P, type AddActivitiesResponse as Q, type RecordManuallyCollectedPaymentOptions as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type UpdateActivityIdentifiers as W, type UpdateActivityResponse as X, type DeleteActivityIdentifiers as Y, type DeleteActivityResponse as Z, type CancelOrderOptions as _, type ImportOrderApplicationErrors as a, ActionType as a$, type CancelOrderApplicationErrors as a0, type OrderStatusWithLiterals as a1, type UpdateOrderStatusResponse as a2, type UpdateOrderStatusApplicationErrors as a3, type AggregateOrdersOptions as a4, type AggregateOrdersResponse as a5, type BulkUpdateOrderTagsOptions as a6, type BulkUpdateOrderTagsResponse as a7, type OrderApprovedEnvelope as a8, type OrderCanceledEnvelope as a9, ChannelType as aA, AdditionalFeeSource as aB, OrderActionType as aC, SpecificItemsCouponBehavior as aD, ChargeType as aE, VersioningMode as aF, DeltaPaymentOptionType as aG, InventoryAction as aH, WebhookIdentityType as aI, PreviewEmailType as aJ, State as aK, SiteCreatedContext as aL, Namespace as aM, DeleteStatus as aN, Origin as aO, ScheduledAction as aP, DurationUnit as aQ, PaymentCollectabilityStatus as aR, PredefinedPaymentMethod as aS, RefundableStatus as aT, NonRefundableReason as aU, ManuallyRefundableReason as aV, RestockType as aW, TransactionStatus as aX, AuthorizationCaptureStatus as aY, AuthorizationVoidStatus as aZ, Reason as a_, type OrderCommittedEnvelope as aa, type OrderCreatedEnvelope as ab, type OrderFulfilledEnvelope as ac, type OrderPaymentStatusUpdatedEnvelope as ad, type OrderUpdatedEnvelope as ae, DescriptionLineType as af, DimensionsUnit as ag, ItemTypePreset as ah, PaymentOptionType as ai, JurisdictionType as aj, SubscriptionFrequency as ak, ProductPeriodAlignment as al, AdjustmentType as am, TaxableAddressType as an, PaymentStatusEnumPaymentStatus as ao, FulfillmentStatus as ap, WeightUnit as aq, VatType as ar, PickupMethod as as, OrderStatus as at, DiscountType as au, DiscountReason as av, LineItemQuantityChangeType as aw, ActivityType as ax, OrderActivityTypeEnumActivityType as ay, AttributionSource as az, type SetOrderNumberCounterResponse as b, type DeliveryTimeSlot as b$, ChargebackStatus as b0, MembershipPaymentStatus as b1, PaymentStatus as b2, RefundStatus as b3, SortOrder as b4, OrderApprovalStrategy as b5, Placement as b6, SubdivisionType as b7, SourceType as b8, CustomFieldGroup as b9, type FreeTrialPeriod as bA, type BillingSettings as bB, type BillingAdjustment as bC, type BillingAdjustmentPriceSummary as bD, type PriceDescription as bE, type LocationAndQuantity as bF, type TaxableAddress as bG, type TaxableAddressTaxableAddressDataOneOf as bH, type ExtendedFields as bI, type ModifierGroup as bJ, type TranslatableString as bK, type ItemModifier as bL, type BuyerInfo as bM, type BuyerInfoIdOneOf as bN, type CurrencyConversionDetails as bO, type PriceSummary as bP, type AddressWithContact as bQ, type Address as bR, type StreetAddress as bS, type AddressLocation as bT, type FullAddressContactDetails as bU, type VatId as bV, type V1ShippingInformation as bW, type DeliveryLogistics as bX, type DeliveryLogisticsAddressOneOf as bY, type PickupDetails as bZ, type PickupAddress as b_, ValueType as ba, DepositType as bb, InvoiceStatus as bc, type OrderLineItem as bd, type ProductName as be, type CatalogReference as bf, type DescriptionLine as bg, type DescriptionLineValueOneOf as bh, type DescriptionLineDescriptionLineValueOneOf as bi, type DescriptionLineName as bj, type PlainTextValue as bk, type Color as bl, type FocalPoint as bm, type PhysicalProperties as bn, type Dimensions as bo, type ItemType as bp, type ItemTypeItemTypeDataOneOf as bq, type RestockLocation as br, type ItemTaxFullDetails as bs, type LineItemTaxInfo as bt, type LineItemTaxBreakdown as bu, type DigitalFile as bv, type SubscriptionInfo as bw, type SubscriptionTitle as bx, type SubscriptionDescription as by, type SubscriptionSettings as bz, type PreparePaymentCollectionOptions as c, type ReceiptCreatedReceiptInfoOneOf as c$, type ShippingPrice as c0, type ShippingRegion as c1, type TaxSummary as c2, type OrderTaxInfo as c3, type OrderTaxBreakdown as c4, type AppliedDiscount as c5, type AppliedDiscountDiscountSourceOneOf as c6, type Coupon as c7, type MerchantDiscount as c8, type MerchantDiscountMerchantDiscountReasonOneOf as c9, type ManagedAdditionalFee as cA, type TotalPriceChange as cB, type ShippingInformationChange as cC, type ShippingInformation as cD, type SavedPaymentMethod as cE, type AuthorizedPaymentCreated as cF, type AuthorizedPaymentCaptured as cG, type AuthorizedPaymentVoided as cH, type RefundInitiated as cI, type RefundedPayment as cJ, type RefundedPaymentKindOneOf as cK, type RegularPaymentRefund as cL, type GiftCardPaymentRefund as cM, type MembershipPaymentRefund as cN, type PaymentRefunded as cO, type PaymentRefundFailed as cP, type RefundedAsStoreCredit as cQ, type PaymentPending as cR, type PaymentPendingPaymentDetailsOneOf as cS, type RegularPayment as cT, type RegularPaymentPaymentMethodDetailsOneOf as cU, type CreditCardDetails as cV, type PaymentCanceled as cW, type PaymentCanceledPaymentDetailsOneOf as cX, type PaymentDeclined as cY, type PaymentDeclinedPaymentDetailsOneOf as cZ, type ReceiptCreated as c_, type DiscountRule as ca, type DiscountRuleName as cb, type LineItemDiscount as cc, type ItemCombination as cd, type ItemCombinationLineItem as ce, type Activity as cf, type ActivityContentOneOf as cg, type CustomActivity as ch, type MerchantComment as ci, type OrderRefunded as cj, type OrderCreatedFromExchange as ck, type NewExchangeOrderCreated as cl, type LineItemExchangeData as cm, type DraftOrderChangesApplied as cn, type OrderChange as co, type OrderChangeValueOneOf as cp, type LineItemChanges as cq, type LineItemQuantityChange as cr, type LineItemPriceChange as cs, type LineItemProductNameChange as ct, type LineItemDescriptionLineChange as cu, type LineItemModifiersChange as cv, type ManagedLineItem as cw, type ManagedDiscount as cx, type TranslatedValue as cy, type LineItemAmount as cz, type PreparePaymentCollectionResponse as d, type TriggerReindexResponse as d$, type WixReceipt as d0, type ExternalReceipt as d1, type ReceiptSent as d2, type ReceiptSentReceiptInfoOneOf as d3, type ChargebackCreated as d4, type ChargebackReversed as d5, type CreatedBy as d6, type CreatedByStringOneOf as d7, type ChannelInfo as d8, type CustomField as d9, type VersionedDocumentUpdateOperation as dA, type VersionedDeleteByIdsOperation as dB, type VersionedDocumentId as dC, type OrderApproved as dD, type OrdersExperiments as dE, type OrderRejectedEventOrderRejected as dF, type OrderItemsRestocked as dG, type V1RestockItem as dH, type OrderImported as dI, type ImportedOrderDeleted as dJ, type PaymentStatusUpdated as dK, type FulfillmentStatusUpdated as dL, type OrderCanceledEventOrderCanceled as dM, type OrderDeltasCommitted as dN, type CommittedDiffs as dO, type CommittedDiffsShippingUpdateInfoOneOf as dP, type ItemChangedDetails as dQ, type OrderLineItemChangedDetails as dR, type LineItemDelta as dS, type LineItemDeltaDeltaOneOf as dT, type AppliedDiscountDelta as dU, type AppliedDiscountDeltaDeltaOneOf as dV, type AdditionalFeeDelta as dW, type AdditionalFeeDeltaDeltaOneOf as dX, type DraftOrderCommitSettings as dY, type InventoryUpdateDetails as dZ, type TriggerReindexRequest as d_, type BalanceSummary as da, type Balance as db, type CashRounding as dc, type AdditionalFee as dd, type FulfillmentStatusesAggregate as de, type Tags as df, type TagList as dg, type Location as dh, type OrderSettings as di, type OrderSettingsAllowedActionsOneOf as dj, type OrderSettingsEditableByOneOf as dk, type CustomAllowedActions as dl, type OwnerApps as dm, type FormInfo as dn, type FormIdentifier as dp, type PlatformFeeSummary as dq, type PlatformFee as dr, type UpdateInternalDocumentsEvent as ds, type UpdateInternalDocumentsEventOperationOneOf as dt, type InternalDocument as du, type InternalDocumentUpdateOperation as dv, type DeleteByIdsOperation as dw, type DeleteByFilterOperation as dx, type InternalDocumentUpdateByFilterOperation as dy, type InternalUpdateExistingOperation as dz, type PreparePaymentCollectionApplicationErrors as e, type PreviewResendDownloadLinksEmailResponse as e$, type DomainEvent as e0, type DomainEventBodyOneOf as e1, type EntityCreatedEvent as e2, type RestoreInfo as e3, type EntityUpdatedEvent as e4, type EntityDeletedEvent as e5, type ActionEvent as e6, type Empty as e7, type TriggerReindexOrderRequest as e8, type MessageEnvelope as e9, type SendRefundEmailResponse as eA, type SendFulfillmentEmailRequest as eB, type SendFulfillmentEmailResponse as eC, type SendMerchantOrderReceivedPushRequest as eD, type SendMerchantOrderReceivedPushResponse as eE, type PreviewEmailByTypeRequest as eF, type PreviewEmailByTypeResponse as eG, type PreviewRefundEmailRequest as eH, type RefundDetails as eI, type RefundItem as eJ, type LineItemRefund as eK, type AdditionalFeeRefund as eL, type ShippingRefund as eM, type PreviewRefundEmailResponse as eN, type PreviewCancelEmailRequest as eO, type PreviewCancelEmailResponse as eP, type PreviewCancelRefundEmailRequest as eQ, type PreviewCancelRefundEmailResponse as eR, type PreviewBuyerPaymentsReceivedEmailRequest as eS, type PreviewBuyerPaymentsReceivedEmailResponse as eT, type PreviewBuyerConfirmationEmailRequest as eU, type PreviewBuyerConfirmationEmailResponse as eV, type PreviewBuyerPickupConfirmationEmailRequest as eW, type PreviewBuyerPickupConfirmationEmailResponse as eX, type PreviewShippingConfirmationEmailRequest as eY, type PreviewShippingConfirmationEmailResponse as eZ, type PreviewResendDownloadLinksEmailRequest as e_, type IdentificationData as ea, type IdentificationDataIdOneOf as eb, type AccountInfo as ec, type ImportOrderRequest as ed, type SetOrderNumberCounterRequest as ee, type BulkDeleteImportedOrdersRequest as ef, type V1TriggerReindexRequest as eg, type V1TriggerReindexResponse as eh, type V1TriggerReindexOrderRequest as ei, type SendBuyerConfirmationEmailRequest as ej, type SendBuyerConfirmationEmailResponse as ek, type SendBuyerPaymentsReceivedEmailRequest as el, type SendBuyerPaymentsReceivedEmailResponse as em, type SendBuyerPickupConfirmationEmailRequest as en, type SendBuyerPickupConfirmationEmailResponse as eo, type BulkSendBuyerPickupConfirmationEmailsRequest as ep, type BulkSendBuyerPickupConfirmationEmailsResponse as eq, type SendBuyerShippingConfirmationEmailRequest as er, type SendBuyerShippingConfirmationEmailResponse as es, type BulkSendBuyerShippingConfirmationEmailsRequest as et, type BulkSendBuyerShippingConfirmationEmailsResponse as eu, type SendMerchantOrderReceivedNotificationRequest as ev, type SendMerchantOrderReceivedNotificationResponse as ew, type SendCancelRefundEmailRequest as ex, type SendCancelRefundEmailResponse as ey, type SendRefundEmailRequest as ez, type RecordManuallyCollectedPaymentApplicationErrors as f, type ChargeMembershipsResponse as f$, type MetaSiteSpecialEvent as f0, type MetaSiteSpecialEventPayloadOneOf as f1, type Asset as f2, type SiteCreated as f3, type SiteTransferred as f4, type SiteDeleted as f5, type DeleteContext as f6, type SiteUndeleted as f7, type SitePublished as f8, type SiteUnpublished as f9, type AddToAutomationMigrationPopulationResponse as fA, type IsInAutomationMigrationPopulationRequest as fB, type IsInAutomationMigrationPopulationResponse as fC, type PreparePaymentCollectionRequest as fD, type RedirectUrls as fE, type DelayedCaptureSettings as fF, type Duration as fG, type GetPaymentCollectabilityStatusRequest as fH, type RecordManuallyCollectedPaymentRequest as fI, type UserDefinedPaymentMethodName as fJ, type UserDefinedPaymentMethodNameKindOneOf as fK, type RecordManuallyCollectedPaymentResponse as fL, type MarkOrderAsPaidRequest as fM, type BulkMarkOrdersAsPaidRequest as fN, type BulkOrderResult as fO, type ItemMetadata as fP, type ApplicationError as fQ, type BulkActionMetadata as fR, type GetRefundabilityStatusRequest as fS, type Refundability as fT, type RefundabilityAdditionalRefundabilityInfoOneOf as fU, type CreatePaymentGatewayOrderRequest as fV, type ChargedBy as fW, type ChargeMembershipsRequest as fX, type MembershipChargeItem as fY, type MembershipName as fZ, type ServiceProperties as f_, type SiteMarkedAsTemplate as fa, type SiteMarkedAsWixSite as fb, type ServiceProvisioned as fc, type ServiceRemoved as fd, type SiteRenamed as fe, type SiteHardDeleted as ff, type NamespaceChanged as fg, type StudioAssigned as fh, type StudioUnassigned as fi, type SiteUrlChanged as fj, type SitePurgedExternally as fk, type OdeditorAssigned as fl, type OdeditorUnassigned as fm, type PicassoAssigned as fn, type PicassoUnassigned as fo, type WixelAssigned as fp, type WixelUnassigned as fq, type StudioTwoAssigned as fr, type StudioTwoUnassigned as fs, type UserDomainMediaEnabled as ft, type UserDomainMediaDisabled as fu, type EditorlessAssigned as fv, type EditorlessUnassigned as fw, type HasCustomEmailConfigurationsRequest as fx, type HasCustomEmailConfigurationsResponse as fy, type AddToAutomationMigrationPopulationRequest as fz, type PaymentCollectionMarkOrderAsPaidOptions as g, type BulkUpdateOrdersRequest as g$, type TriggerRefundRequest as g0, type RefundSideEffects as g1, type RestockInfo as g2, type RestockItem as g3, type OrderTransactions as g4, type Payment as g5, type PaymentPaymentDetailsOneOf as g6, type PaymentReceiptInfoOneOf as g7, type RegularPaymentDetails as g8, type RegularPaymentDetailsPaymentMethodDetailsOneOf as g9, type ChargeSavedPaymentMethodResponse as gA, type DiffmatokyPayload as gB, type ErrorInformation as gC, type GetOrderRequest as gD, type GetOrderResponse as gE, type InternalQueryOrdersRequest as gF, type PlatformQuery as gG, type PlatformQueryPagingMethodOneOf as gH, type Sorting as gI, type PlatformPaging as gJ, type CursorPaging as gK, type InternalQueryOrdersResponse as gL, type PlatformPagingMetadata as gM, type Cursors as gN, type QueryOrderRequest as gO, type QueryOrderResponse as gP, type SearchOrdersRequest as gQ, type CursorSearch as gR, type CursorSearchPagingMethodOneOf as gS, type CursorPagingMetadata as gT, type CreateOrderRequest as gU, type OrderCreationSettings as gV, type OrderCreationSettingsEditableByOneOf as gW, type OrderCreateNotifications as gX, type CreateOrderResponse as gY, type UpdateOrderRequest as gZ, type UpdateOrderResponse as g_, type CreditCardPaymentMethodDetails as ga, type AuthorizationDetails as gb, type AuthorizationCapture as gc, type AuthorizationActionFailureDetails as gd, type AuthorizationVoid as ge, type V1ScheduledAction as gf, type Chargeback as gg, type PaymentMethodName as gh, type GiftCardPaymentDetails as gi, type MembershipPaymentDetails as gj, type WixReceiptInfo as gk, type ExternalReceiptInfo as gl, type CashRoundingDetails as gm, type Refund as gn, type RefundTransaction as go, type RefundStatusInfo as gp, type AggregatedRefundSummary as gq, type RefundItemsBreakdown as gr, type LineItemRefundSummary as gs, type CalculateRefundRequest as gt, type CalculateRefundItemRequest as gu, type CalculateRefundResponse as gv, type CalculateRefundItemResponse as gw, type VoidAuthorizedPaymentsRequest as gx, type CaptureAuthorizedPaymentsRequest as gy, type ChargeSavedPaymentMethodRequest as gz, type PaymentCollectionMarkOrderAsPaidApplicationErrors as h, type LineItemUpdate as h$, type CommitDeltasRequest as h0, type DraftOrderDiffs as h1, type DraftOrderDiffsShippingUpdateInfoOneOf as h2, type DraftOrderDiffsBuyerUpdateInfoOneOf as h3, type DraftOrderDiffsBillingUpdateInfoOneOf as h4, type DraftOrderDiffsRecipientUpdateInfoOneOf as h5, type V1LineItemDelta as h6, type V1LineItemDeltaDeltaOneOf as h7, type CommitDeltasResponse as h8, type ArchiveOrderRequest as h9, type InternalActivityContentOneOf as hA, type OrderPlaced as hB, type OrderPaid as hC, type OrderFulfilled as hD, type OrderNotFulfilled as hE, type OrderCanceled as hF, type DownloadLinkSent as hG, type TrackingNumberAdded as hH, type TrackingNumberEdited as hI, type TrackingLinkAdded as hJ, type ShippingConfirmationEmailSent as hK, type InvoiceAdded as hL, type InvoiceSent as hM, type FulfillerEmailSent as hN, type ShippingAddressEdited as hO, type EmailEdited as hP, type PickupReadyEmailSent as hQ, type OrderPartiallyPaid as hR, type OrderPending as hS, type OrderRejected as hT, type AddInternalActivityResponse as hU, type AddActivityRequest as hV, type PublicActivityContentOneOf as hW, type AddActivitiesRequest as hX, type UpdateActivityRequest as hY, type DeleteActivityRequest as hZ, type UpdateLineItemsDescriptionLinesRequest as h_, type ArchiveOrderResponse as ha, type BulkArchiveOrdersRequest as hb, type BulkArchiveOrdersResponse as hc, type BulkArchiveOrdersByFilterRequest as hd, type BulkArchiveOrdersByFilterResponse as he, type UnArchiveOrderRequest as hf, type UnArchiveOrderResponse as hg, type BulkUnArchiveOrdersRequest as hh, type BulkUnArchiveOrdersResponse as hi, type BulkUnArchiveOrdersByFilterRequest as hj, type BulkUnArchiveOrdersByFilterResponse as hk, type UpdateBuyerInfoRequest as hl, type BuyerInfoUpdate as hm, type UpdateBuyerInfoResponse as hn, type UpdateBuyerEmailRequest as ho, type UpdateBuyerEmailResponse as hp, type UpdateOrderShippingAddressRequest as hq, type UpdateOrderShippingAddressResponse as hr, type UpdateBillingContactDetailsRequest as hs, type UpdateBillingContactDetailsResponse as ht, type UpdateOrderLineItemRequest as hu, type UpdateOrderLineItemsRequest as hv, type MaskedOrderLineItem as hw, type UpdateOrderLineItemsResponse as hx, type AddInternalActivityRequest as hy, type InternalActivity as hz, type BulkMarkOrdersAsPaidResponse as i, type BigDecimalWrapper as i$, type UpdateLineItemsDescriptionLinesResponse as i0, type MarkOrderAsSeenByHumanRequest as i1, type MarkOrderAsSeenByHumanResponse as i2, type CancelOrderRequest as i3, type UpdateOrderStatusRequest as i4, type MarkAsFulfilledRequest as i5, type MarkAsFulfilledResponse as i6, type BulkMarkAsFulfilledRequest as i7, type BulkMarkAsFulfilledResponse as i8, type BulkMarkAsFulfilledByFilterRequest as i9, type TagsTagList as iA, type BulkUpdateOrderTagsResult as iB, type SendOrderUpdatedDomainEventRequest as iC, type SendOrderUpdatedDomainEventResponse as iD, type Task as iE, type TaskKey as iF, type TaskAction as iG, type TaskActionActionOneOf as iH, type Complete as iI, type Cancel as iJ, type Reschedule as iK, type InvoiceSentEvent as iL, type IdAndVersion as iM, type InvoiceFields as iN, type Customer as iO, type Email as iP, type QuotesAddress as iQ, type AddressDescription as iR, type Phone as iS, type Company as iT, type CommonAddress as iU, type CommonAddressStreetOneOf as iV, type Subdivision as iW, type StandardDetails as iX, type InvoiceDates as iY, type LineItems as iZ, type LineItem as i_, type BulkMarkAsFulfilledByFilterResponse as ia, type MarkAsUnfulfilledRequest as ib, type MarkAsUnfulfilledResponse as ic, type BulkMarkAsUnfulfilledRequest as id, type BulkMarkAsUnfulfilledResponse as ie, type BulkMarkAsUnfulfilledByFilterRequest as ig, type BulkMarkAsUnfulfilledByFilterResponse as ih, type BulkSetBusinessLocationRequest as ii, type BulkSetBusinessLocationResponse as ij, type BulkSetBusinessLocationResult as ik, type V1MarkOrderAsPaidRequest as il, type V1MarkOrderAsPaidResponse as im, type V1BulkMarkOrdersAsPaidRequest as io, type V1BulkMarkOrdersAsPaidResponse as ip, type V1CreatePaymentGatewayOrderRequest as iq, type V1CreatePaymentGatewayOrderResponse as ir, type GetShipmentsRequest as is, type GetShipmentsResponse as it, type AggregateOrdersRequest as iu, type DecrementItemsQuantityRequest as iv, type DecrementData as iw, type DecrementItemsQuantityResponse as ix, type BulkUpdateOrderTagsRequest as iy, type TagsTags as iz, type GetRefundabilityStatusResponse as j, type ManuallyRefundableReasonWithLiterals as j$, type LineItemTax as j0, type Source as j1, type LineItemMetaData as j2, type Locale as j3, type TotalPrice as j4, type ItemizedFee as j5, type Discount as j6, type DiscountOneDiscountTypeOneOf as j7, type CalculatedTaxes as j8, type CalculatedTax as j9, type DiscountTypeWithLiterals as jA, type DiscountReasonWithLiterals as jB, type LineItemQuantityChangeTypeWithLiterals as jC, type ActivityTypeWithLiterals as jD, type OrderActivityTypeEnumActivityTypeWithLiterals as jE, type AttributionSourceWithLiterals as jF, type ChannelTypeWithLiterals as jG, type AdditionalFeeSourceWithLiterals as jH, type OrderActionTypeWithLiterals as jI, type SpecificItemsCouponBehaviorWithLiterals as jJ, type ChargeTypeWithLiterals as jK, type VersioningModeWithLiterals as jL, type DeltaPaymentOptionTypeWithLiterals as jM, type InventoryActionWithLiterals as jN, type WebhookIdentityTypeWithLiterals as jO, type PreviewEmailTypeWithLiterals as jP, type StateWithLiterals as jQ, type SiteCreatedContextWithLiterals as jR, type NamespaceWithLiterals as jS, type DeleteStatusWithLiterals as jT, type OriginWithLiterals as jU, type ScheduledActionWithLiterals as jV, type DurationUnitWithLiterals as jW, type PaymentCollectabilityStatusWithLiterals as jX, type PredefinedPaymentMethodWithLiterals as jY, type RefundableStatusWithLiterals as jZ, type NonRefundableReasonWithLiterals as j_, type Payments as ja, type InvoicesPayment as jb, type MetaData as jc, type InvoiceDynamicPriceTotals as jd, type CustomFieldValue as je, type Value as jf, type Deposit as jg, type BaseEventMetadata as jh, type EventMetadata as ji, type AccountInfoMetadata as jj, type OrderSearchSpec as jk, utils as jl, type DescriptionLineTypeWithLiterals as jm, type DimensionsUnitWithLiterals as jn, type ItemTypePresetWithLiterals as jo, type PaymentOptionTypeWithLiterals as jp, type JurisdictionTypeWithLiterals as jq, type SubscriptionFrequencyWithLiterals as jr, type ProductPeriodAlignmentWithLiterals as js, type AdjustmentTypeWithLiterals as jt, type TaxableAddressTypeWithLiterals as ju, type PaymentStatusEnumPaymentStatusWithLiterals as jv, type FulfillmentStatusWithLiterals as jw, type WeightUnitWithLiterals as jx, type VatTypeWithLiterals as jy, type PickupMethodWithLiterals as jz, type PaymentCollectionCreatePaymentGatewayOrderOptions as k, type RestockTypeWithLiterals as k0, type TransactionStatusWithLiterals as k1, type AuthorizationCaptureStatusWithLiterals as k2, type AuthorizationVoidStatusWithLiterals as k3, type ReasonWithLiterals as k4, type ActionTypeWithLiterals as k5, type ChargebackStatusWithLiterals as k6, type MembershipPaymentStatusWithLiterals as k7, type PaymentStatusWithLiterals as k8, type RefundStatusWithLiterals as k9, paymentCollectionCreatePaymentGatewayOrder as kA, chargeMemberships as kB, triggerRefund as kC, voidAuthorizedPayments as kD, captureAuthorizedPayments as kE, getOrder as kF, createOrder as kG, updateOrder as kH, bulkUpdateOrders as kI, updateOrderLineItem as kJ, addActivity as kK, addActivities as kL, updateActivity as kM, deleteActivity as kN, cancelOrder as kO, updateOrderStatus as kP, aggregateOrders as kQ, bulkUpdateOrderTags as kR, type SortOrderWithLiterals as ka, type OrderApprovalStrategyWithLiterals as kb, type PlacementWithLiterals as kc, type SubdivisionTypeWithLiterals as kd, type SourceTypeWithLiterals as ke, type CustomFieldGroupWithLiterals as kf, type ValueTypeWithLiterals as kg, type DepositTypeWithLiterals as kh, type InvoiceStatusWithLiterals as ki, type CommonSearchWithEntityContext as kj, onOrderApproved as kk, onOrderCanceled as kl, onOrderCommitted as km, onOrderCreated as kn, onOrderFulfilled as ko, onOrderPaymentStatusUpdated as kp, onOrderUpdated as kq, importOrder as kr, setOrderNumberCounter as ks, bulkDeleteImportedOrders as kt, preparePaymentCollection as ku, getPaymentCollectabilityStatus as kv, recordManuallyCollectedPayment as kw, paymentCollectionMarkOrderAsPaid as kx, paymentCollectionBulkMarkOrdersAsPaid as ky, getRefundabilityStatus as kz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as l, type ChargeMembershipsOptions as m, type PaymentRefund as n, type TriggerRefundResponse as o, type TriggerRefundApplicationErrors as p, type VoidAuthorizedPaymentsApplicationErrors as q, type PaymentCapture as r, type CaptureAuthorizedPaymentsResponse as s, type CaptureAuthorizedPaymentsApplicationErrors as t, type GetOrderApplicationErrors as u, type OrderSearch as v, type SearchOrdersResponse as w, type CreateOrderOptions as x, type CreateOrderApplicationErrors as y, type UpdateOrderApplicationErrors as z };
|
|
9661
|
+
export { type CancelOrderResponse as $, type MaskedOrder as A, type BulkDeleteImportedOrdersResponse as B, type CreatePaymentGatewayOrderResponse as C, type BulkUpdateOrdersOptions as D, type BulkUpdateOrdersResponse as E, type UpdateOrderLineItemIdentifiers as F, type GetPaymentCollectabilityStatusResponse as G, type UpdateOrderLineItem as H, type ImportOrderResponse as I, type UpdateOrderLineItemResponse as J, type PublicActivity as K, type AddActivityResponse as L, type MarkOrderAsPaidResponse as M, type AddActivitiesOptions as N, type Order as O, type Price as P, type AddActivitiesResponse as Q, type RecordManuallyCollectedPaymentOptions as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type UpdateActivityIdentifiers as W, type UpdateActivityResponse as X, type DeleteActivityIdentifiers as Y, type DeleteActivityResponse as Z, type CancelOrderOptions as _, type ImportOrderApplicationErrors as a, ActionType as a$, type CancelOrderApplicationErrors as a0, type OrderStatusWithLiterals as a1, type UpdateOrderStatusResponse as a2, type UpdateOrderStatusApplicationErrors as a3, type AggregateOrdersOptions as a4, type AggregateOrdersResponse as a5, type BulkUpdateOrderTagsOptions as a6, type BulkUpdateOrderTagsResponse as a7, type OrderApprovedEnvelope as a8, type OrderCanceledEnvelope as a9, ChannelType as aA, AdditionalFeeSource as aB, OrderActionType as aC, SpecificItemsCouponBehavior as aD, ChargeType as aE, VersioningMode as aF, DeltaPaymentOptionType as aG, InventoryAction as aH, WebhookIdentityType as aI, PreviewEmailType as aJ, State as aK, SiteCreatedContext as aL, Namespace as aM, DeleteStatus as aN, Origin as aO, ScheduledAction as aP, DurationUnit as aQ, PaymentCollectabilityStatus as aR, PredefinedPaymentMethod as aS, RefundableStatus as aT, NonRefundableReason as aU, ManuallyRefundableReason as aV, RestockType as aW, TransactionStatus as aX, AuthorizationCaptureStatus as aY, AuthorizationVoidStatus as aZ, Reason as a_, type OrderCommittedEnvelope as aa, type OrderCreatedEnvelope as ab, type OrderFulfilledEnvelope as ac, type OrderPaymentStatusUpdatedEnvelope as ad, type OrderUpdatedEnvelope as ae, DescriptionLineType as af, DimensionsUnit as ag, ItemTypePreset as ah, PaymentOptionType as ai, JurisdictionType as aj, SubscriptionFrequency as ak, ProductPeriodAlignment as al, AdjustmentType as am, TaxableAddressType as an, PaymentStatusEnumPaymentStatus as ao, FulfillmentStatus as ap, WeightUnit as aq, VatType as ar, PickupMethod as as, OrderStatus as at, DiscountType as au, DiscountReason as av, LineItemQuantityChangeType as aw, ActivityType as ax, OrderActivityTypeEnumActivityType as ay, AttributionSource as az, type SetOrderNumberCounterResponse as b, type DeliveryLogisticsAddressOneOf as b$, ChargebackStatus as b0, MembershipPaymentStatus as b1, PaymentStatus as b2, CanceledReason as b3, DeclinedReason as b4, VoidedReason as b5, RefundStatus as b6, SortOrder as b7, OrderApprovalStrategy as b8, Placement as b9, type SubscriptionTitle as bA, type SubscriptionDescription as bB, type SubscriptionSettings as bC, type FreeTrialPeriod as bD, type BillingSettings as bE, type BillingAdjustment as bF, type BillingAdjustmentPriceSummary as bG, type PriceDescription as bH, type LocationAndQuantity as bI, type TaxableAddress as bJ, type TaxableAddressTaxableAddressDataOneOf as bK, type ExtendedFields as bL, type ModifierGroup as bM, type TranslatableString as bN, type ItemModifier as bO, type BuyerInfo as bP, type BuyerInfoIdOneOf as bQ, type CurrencyConversionDetails as bR, type PriceSummary as bS, type AddressWithContact as bT, type Address as bU, type StreetAddress as bV, type AddressLocation as bW, type FullAddressContactDetails as bX, type VatId as bY, type V1ShippingInformation as bZ, type DeliveryLogistics as b_, SubdivisionType as ba, SourceType as bb, CustomFieldGroup as bc, ValueType as bd, DepositType as be, InvoiceStatus as bf, type OrderLineItem as bg, type ProductName as bh, type CatalogReference as bi, type DescriptionLine as bj, type DescriptionLineValueOneOf as bk, type DescriptionLineDescriptionLineValueOneOf as bl, type DescriptionLineName as bm, type PlainTextValue as bn, type Color as bo, type FocalPoint as bp, type PhysicalProperties as bq, type Dimensions as br, type ItemType as bs, type ItemTypeItemTypeDataOneOf as bt, type RestockLocation as bu, type ItemTaxFullDetails as bv, type LineItemTaxInfo as bw, type LineItemTaxBreakdown as bx, type DigitalFile as by, type SubscriptionInfo as bz, type PreparePaymentCollectionOptions as c, type PaymentDeclined as c$, type PickupDetails as c0, type PickupAddress as c1, type DeliveryTimeSlot as c2, type ShippingPrice as c3, type ShippingRegion as c4, type TaxSummary as c5, type OrderTaxInfo as c6, type OrderTaxBreakdown as c7, type AppliedDiscount as c8, type AppliedDiscountDiscountSourceOneOf as c9, type ManagedDiscount as cA, type TranslatedValue as cB, type LineItemAmount as cC, type ManagedAdditionalFee as cD, type TotalPriceChange as cE, type ShippingInformationChange as cF, type ShippingInformation as cG, type SavedPaymentMethod as cH, type AuthorizedPaymentCreated as cI, type AuthorizedPaymentCaptured as cJ, type AuthorizedPaymentVoided as cK, type RefundInitiated as cL, type RefundedPayment as cM, type RefundedPaymentKindOneOf as cN, type RegularPaymentRefund as cO, type GiftCardPaymentRefund as cP, type MembershipPaymentRefund as cQ, type PaymentRefunded as cR, type PaymentRefundFailed as cS, type RefundedAsStoreCredit as cT, type PaymentPending as cU, type PaymentPendingPaymentDetailsOneOf as cV, type RegularPayment as cW, type RegularPaymentPaymentMethodDetailsOneOf as cX, type CreditCardDetails as cY, type PaymentCanceled as cZ, type PaymentCanceledPaymentDetailsOneOf as c_, type Coupon as ca, type MerchantDiscount as cb, type MerchantDiscountMerchantDiscountReasonOneOf as cc, type DiscountRule as cd, type DiscountRuleName as ce, type LineItemDiscount as cf, type ItemCombination as cg, type ItemCombinationLineItem as ch, type Activity as ci, type ActivityContentOneOf as cj, type CustomActivity as ck, type MerchantComment as cl, type OrderRefunded as cm, type OrderCreatedFromExchange as cn, type NewExchangeOrderCreated as co, type LineItemExchangeData as cp, type DraftOrderChangesApplied as cq, type OrderChange as cr, type OrderChangeValueOneOf as cs, type LineItemChanges as ct, type LineItemQuantityChange as cu, type LineItemPriceChange as cv, type LineItemProductNameChange as cw, type LineItemDescriptionLineChange as cx, type LineItemModifiersChange as cy, type ManagedLineItem as cz, type PreparePaymentCollectionResponse as d, type DraftOrderCommitSettings as d$, type PaymentDeclinedPaymentDetailsOneOf as d0, type ReceiptCreated as d1, type ReceiptCreatedReceiptInfoOneOf as d2, type WixReceipt as d3, type ExternalReceipt as d4, type ReceiptSent as d5, type ReceiptSentReceiptInfoOneOf as d6, type ChargebackCreated as d7, type ChargebackReversed as d8, type CreatedBy as d9, type DeleteByFilterOperation as dA, type InternalDocumentUpdateByFilterOperation as dB, type InternalUpdateExistingOperation as dC, type VersionedDocumentUpdateOperation as dD, type VersionedDeleteByIdsOperation as dE, type VersionedDocumentId as dF, type OrderApproved as dG, type OrdersExperiments as dH, type OrderRejectedEventOrderRejected as dI, type OrderItemsRestocked as dJ, type V1RestockItem as dK, type OrderImported as dL, type ImportedOrderDeleted as dM, type PaymentStatusUpdated as dN, type FulfillmentStatusUpdated as dO, type OrderCanceledEventOrderCanceled as dP, type OrderDeltasCommitted as dQ, type CommittedDiffs as dR, type CommittedDiffsShippingUpdateInfoOneOf as dS, type ItemChangedDetails as dT, type OrderLineItemChangedDetails as dU, type LineItemDelta as dV, type LineItemDeltaDeltaOneOf as dW, type AppliedDiscountDelta as dX, type AppliedDiscountDeltaDeltaOneOf as dY, type AdditionalFeeDelta as dZ, type AdditionalFeeDeltaDeltaOneOf as d_, type CreatedByStringOneOf as da, type ChannelInfo as db, type CustomField as dc, type BalanceSummary as dd, type Balance as de, type CashRounding as df, type AdditionalFee as dg, type FulfillmentStatusesAggregate as dh, type Tags as di, type TagList as dj, type Location as dk, type OrderSettings as dl, type OrderSettingsAllowedActionsOneOf as dm, type OrderSettingsEditableByOneOf as dn, type CustomAllowedActions as dp, type OwnerApps as dq, type FormInfo as dr, type FormIdentifier as ds, type PlatformFeeSummary as dt, type PlatformFee as du, type UpdateInternalDocumentsEvent as dv, type UpdateInternalDocumentsEventOperationOneOf as dw, type InternalDocument as dx, type InternalDocumentUpdateOperation as dy, type DeleteByIdsOperation as dz, type PreparePaymentCollectionApplicationErrors as e, type PreviewShippingConfirmationEmailRequest as e$, type InventoryUpdateDetails as e0, type TriggerReindexRequest as e1, type TriggerReindexResponse as e2, type DomainEvent as e3, type DomainEventBodyOneOf as e4, type EntityCreatedEvent as e5, type RestoreInfo as e6, type EntityUpdatedEvent as e7, type EntityDeletedEvent as e8, type ActionEvent as e9, type SendCancelRefundEmailRequest as eA, type SendCancelRefundEmailResponse as eB, type SendRefundEmailRequest as eC, type SendRefundEmailResponse as eD, type SendFulfillmentEmailRequest as eE, type SendFulfillmentEmailResponse as eF, type SendMerchantOrderReceivedPushRequest as eG, type SendMerchantOrderReceivedPushResponse as eH, type PreviewEmailByTypeRequest as eI, type PreviewEmailByTypeResponse as eJ, type PreviewRefundEmailRequest as eK, type RefundDetails as eL, type RefundItem as eM, type LineItemRefund as eN, type AdditionalFeeRefund as eO, type ShippingRefund as eP, type PreviewRefundEmailResponse as eQ, type PreviewCancelEmailRequest as eR, type PreviewCancelEmailResponse as eS, type PreviewCancelRefundEmailRequest as eT, type PreviewCancelRefundEmailResponse as eU, type PreviewBuyerPaymentsReceivedEmailRequest as eV, type PreviewBuyerPaymentsReceivedEmailResponse as eW, type PreviewBuyerConfirmationEmailRequest as eX, type PreviewBuyerConfirmationEmailResponse as eY, type PreviewBuyerPickupConfirmationEmailRequest as eZ, type PreviewBuyerPickupConfirmationEmailResponse as e_, type Empty as ea, type TriggerReindexOrderRequest as eb, type MessageEnvelope as ec, type IdentificationData as ed, type IdentificationDataIdOneOf as ee, type AccountInfo as ef, type ImportOrderRequest as eg, type SetOrderNumberCounterRequest as eh, type BulkDeleteImportedOrdersRequest as ei, type V1TriggerReindexRequest as ej, type V1TriggerReindexResponse as ek, type V1TriggerReindexOrderRequest as el, type SendBuyerConfirmationEmailRequest as em, type SendBuyerConfirmationEmailResponse as en, type SendBuyerPaymentsReceivedEmailRequest as eo, type SendBuyerPaymentsReceivedEmailResponse as ep, type SendBuyerPickupConfirmationEmailRequest as eq, type SendBuyerPickupConfirmationEmailResponse as er, type BulkSendBuyerPickupConfirmationEmailsRequest as es, type BulkSendBuyerPickupConfirmationEmailsResponse as et, type SendBuyerShippingConfirmationEmailRequest as eu, type SendBuyerShippingConfirmationEmailResponse as ev, type BulkSendBuyerShippingConfirmationEmailsRequest as ew, type BulkSendBuyerShippingConfirmationEmailsResponse as ex, type SendMerchantOrderReceivedNotificationRequest as ey, type SendMerchantOrderReceivedNotificationResponse as ez, type RecordManuallyCollectedPaymentApplicationErrors as f, type MembershipChargeItem as f$, type PreviewShippingConfirmationEmailResponse as f0, type PreviewResendDownloadLinksEmailRequest as f1, type PreviewResendDownloadLinksEmailResponse as f2, type MetaSiteSpecialEvent as f3, type MetaSiteSpecialEventPayloadOneOf as f4, type Asset as f5, type SiteCreated as f6, type SiteTransferred as f7, type SiteDeleted as f8, type DeleteContext as f9, type HasCustomEmailConfigurationsRequest as fA, type HasCustomEmailConfigurationsResponse as fB, type AddToAutomationMigrationPopulationRequest as fC, type AddToAutomationMigrationPopulationResponse as fD, type IsInAutomationMigrationPopulationRequest as fE, type IsInAutomationMigrationPopulationResponse as fF, type PreparePaymentCollectionRequest as fG, type RedirectUrls as fH, type DelayedCaptureSettings as fI, type Duration as fJ, type GetPaymentCollectabilityStatusRequest as fK, type RecordManuallyCollectedPaymentRequest as fL, type UserDefinedPaymentMethodName as fM, type UserDefinedPaymentMethodNameKindOneOf as fN, type RecordManuallyCollectedPaymentResponse as fO, type MarkOrderAsPaidRequest as fP, type BulkMarkOrdersAsPaidRequest as fQ, type BulkOrderResult as fR, type ItemMetadata as fS, type ApplicationError as fT, type BulkActionMetadata as fU, type GetRefundabilityStatusRequest as fV, type Refundability as fW, type RefundabilityAdditionalRefundabilityInfoOneOf as fX, type CreatePaymentGatewayOrderRequest as fY, type ChargedBy as fZ, type ChargeMembershipsRequest as f_, type SiteUndeleted as fa, type SitePublished as fb, type SiteUnpublished as fc, type SiteMarkedAsTemplate as fd, type SiteMarkedAsWixSite as fe, type ServiceProvisioned as ff, type ServiceRemoved as fg, type SiteRenamed as fh, type SiteHardDeleted as fi, type NamespaceChanged as fj, type StudioAssigned as fk, type StudioUnassigned as fl, type SiteUrlChanged as fm, type SitePurgedExternally as fn, type OdeditorAssigned as fo, type OdeditorUnassigned as fp, type PicassoAssigned as fq, type PicassoUnassigned as fr, type WixelAssigned as fs, type WixelUnassigned as ft, type StudioTwoAssigned as fu, type StudioTwoUnassigned as fv, type UserDomainMediaEnabled as fw, type UserDomainMediaDisabled as fx, type EditorlessAssigned as fy, type EditorlessUnassigned as fz, type PaymentCollectionMarkOrderAsPaidOptions as g, type CreateOrderRequest as g$, type MembershipName as g0, type ServiceProperties as g1, type ChargeMembershipsResponse as g2, type TriggerRefundRequest as g3, type RefundSideEffects as g4, type RestockInfo as g5, type RestockItem as g6, type OrderTransactions as g7, type Payment as g8, type PaymentPaymentDetailsOneOf as g9, type CalculateRefundRequest as gA, type CalculateRefundItemRequest as gB, type CalculateRefundResponse as gC, type CalculateRefundItemResponse as gD, type VoidAuthorizedPaymentsRequest as gE, type CaptureAuthorizedPaymentsRequest as gF, type ChargeSavedPaymentMethodRequest as gG, type ChargeSavedPaymentMethodResponse as gH, type DiffmatokyPayload as gI, type ErrorInformation as gJ, type GetOrderRequest as gK, type GetOrderResponse as gL, type InternalQueryOrdersRequest as gM, type PlatformQuery as gN, type PlatformQueryPagingMethodOneOf as gO, type Sorting as gP, type PlatformPaging as gQ, type CursorPaging as gR, type InternalQueryOrdersResponse as gS, type PlatformPagingMetadata as gT, type Cursors as gU, type QueryOrderRequest as gV, type QueryOrderResponse as gW, type SearchOrdersRequest as gX, type CursorSearch as gY, type CursorSearchPagingMethodOneOf as gZ, type CursorPagingMetadata as g_, type PaymentReceiptInfoOneOf as ga, type PaymentStatusDetailsOneOf as gb, type RegularPaymentDetails as gc, type RegularPaymentDetailsPaymentMethodDetailsOneOf as gd, type CreditCardPaymentMethodDetails as ge, type AuthorizationDetails as gf, type AuthorizationCapture as gg, type AuthorizationActionFailureDetails as gh, type AuthorizationVoid as gi, type V1ScheduledAction as gj, type Chargeback as gk, type PaymentMethodName as gl, type GiftCardPaymentDetails as gm, type MembershipPaymentDetails as gn, type WixReceiptInfo as go, type ExternalReceiptInfo as gp, type CashRoundingDetails as gq, type CanceledStatusDetails as gr, type DeclinedStatusDetails as gs, type VoidedStatusDetails as gt, type Refund as gu, type RefundTransaction as gv, type RefundStatusInfo as gw, type AggregatedRefundSummary as gx, type RefundItemsBreakdown as gy, type LineItemRefundSummary as gz, type PaymentCollectionMarkOrderAsPaidApplicationErrors as h, type AddInternalActivityResponse as h$, type OrderCreationSettings as h0, type OrderCreationSettingsEditableByOneOf as h1, type OrderCreateNotifications as h2, type CreateOrderResponse as h3, type UpdateOrderRequest as h4, type UpdateOrderResponse as h5, type BulkUpdateOrdersRequest as h6, type CommitDeltasRequest as h7, type DraftOrderDiffs as h8, type DraftOrderDiffsShippingUpdateInfoOneOf as h9, type UpdateBillingContactDetailsResponse as hA, type UpdateOrderLineItemRequest as hB, type UpdateOrderLineItemsRequest as hC, type MaskedOrderLineItem as hD, type UpdateOrderLineItemsResponse as hE, type AddInternalActivityRequest as hF, type InternalActivity as hG, type InternalActivityContentOneOf as hH, type OrderPlaced as hI, type OrderPaid as hJ, type OrderFulfilled as hK, type OrderNotFulfilled as hL, type OrderCanceled as hM, type DownloadLinkSent as hN, type TrackingNumberAdded as hO, type TrackingNumberEdited as hP, type TrackingLinkAdded as hQ, type ShippingConfirmationEmailSent as hR, type InvoiceAdded as hS, type InvoiceSent as hT, type FulfillerEmailSent as hU, type ShippingAddressEdited as hV, type EmailEdited as hW, type PickupReadyEmailSent as hX, type OrderPartiallyPaid as hY, type OrderPending as hZ, type OrderRejected as h_, type DraftOrderDiffsBuyerUpdateInfoOneOf as ha, type DraftOrderDiffsBillingUpdateInfoOneOf as hb, type DraftOrderDiffsRecipientUpdateInfoOneOf as hc, type V1LineItemDelta as hd, type V1LineItemDeltaDeltaOneOf as he, type CommitDeltasResponse as hf, type ArchiveOrderRequest as hg, type ArchiveOrderResponse as hh, type BulkArchiveOrdersRequest as hi, type BulkArchiveOrdersResponse as hj, type BulkArchiveOrdersByFilterRequest as hk, type BulkArchiveOrdersByFilterResponse as hl, type UnArchiveOrderRequest as hm, type UnArchiveOrderResponse as hn, type BulkUnArchiveOrdersRequest as ho, type BulkUnArchiveOrdersResponse as hp, type BulkUnArchiveOrdersByFilterRequest as hq, type BulkUnArchiveOrdersByFilterResponse as hr, type UpdateBuyerInfoRequest as hs, type BuyerInfoUpdate as ht, type UpdateBuyerInfoResponse as hu, type UpdateBuyerEmailRequest as hv, type UpdateBuyerEmailResponse as hw, type UpdateOrderShippingAddressRequest as hx, type UpdateOrderShippingAddressResponse as hy, type UpdateBillingContactDetailsRequest as hz, type BulkMarkOrdersAsPaidResponse as i, type CommonAddress as i$, type AddActivityRequest as i0, type PublicActivityContentOneOf as i1, type AddActivitiesRequest as i2, type UpdateActivityRequest as i3, type DeleteActivityRequest as i4, type UpdateLineItemsDescriptionLinesRequest as i5, type LineItemUpdate as i6, type UpdateLineItemsDescriptionLinesResponse as i7, type MarkOrderAsSeenByHumanRequest as i8, type MarkOrderAsSeenByHumanResponse as i9, type GetShipmentsResponse as iA, type AggregateOrdersRequest as iB, type DecrementItemsQuantityRequest as iC, type DecrementData as iD, type DecrementItemsQuantityResponse as iE, type BulkUpdateOrderTagsRequest as iF, type TagsTags as iG, type TagsTagList as iH, type BulkUpdateOrderTagsResult as iI, type SendOrderUpdatedDomainEventRequest as iJ, type SendOrderUpdatedDomainEventResponse as iK, type Task as iL, type TaskKey as iM, type TaskAction as iN, type TaskActionActionOneOf as iO, type Complete as iP, type Cancel as iQ, type Reschedule as iR, type InvoiceSentEvent as iS, type IdAndVersion as iT, type InvoiceFields as iU, type Customer as iV, type Email as iW, type QuotesAddress as iX, type AddressDescription as iY, type Phone as iZ, type Company as i_, type CancelOrderRequest as ia, type UpdateOrderStatusRequest as ib, type MarkAsFulfilledRequest as ic, type MarkAsFulfilledResponse as id, type BulkMarkAsFulfilledRequest as ie, type BulkMarkAsFulfilledResponse as ig, type BulkMarkAsFulfilledByFilterRequest as ih, type BulkMarkAsFulfilledByFilterResponse as ii, type MarkAsUnfulfilledRequest as ij, type MarkAsUnfulfilledResponse as ik, type BulkMarkAsUnfulfilledRequest as il, type BulkMarkAsUnfulfilledResponse as im, type BulkMarkAsUnfulfilledByFilterRequest as io, type BulkMarkAsUnfulfilledByFilterResponse as ip, type BulkSetBusinessLocationRequest as iq, type BulkSetBusinessLocationResponse as ir, type BulkSetBusinessLocationResult as is, type V1MarkOrderAsPaidRequest as it, type V1MarkOrderAsPaidResponse as iu, type V1BulkMarkOrdersAsPaidRequest as iv, type V1BulkMarkOrdersAsPaidResponse as iw, type V1CreatePaymentGatewayOrderRequest as ix, type V1CreatePaymentGatewayOrderResponse as iy, type GetShipmentsRequest as iz, type GetRefundabilityStatusResponse as j, type OriginWithLiterals as j$, type CommonAddressStreetOneOf as j0, type Subdivision as j1, type StandardDetails as j2, type InvoiceDates as j3, type LineItems as j4, type LineItem as j5, type BigDecimalWrapper as j6, type LineItemTax as j7, type Source as j8, type LineItemMetaData as j9, type AdjustmentTypeWithLiterals as jA, type TaxableAddressTypeWithLiterals as jB, type PaymentStatusEnumPaymentStatusWithLiterals as jC, type FulfillmentStatusWithLiterals as jD, type WeightUnitWithLiterals as jE, type VatTypeWithLiterals as jF, type PickupMethodWithLiterals as jG, type DiscountTypeWithLiterals as jH, type DiscountReasonWithLiterals as jI, type LineItemQuantityChangeTypeWithLiterals as jJ, type ActivityTypeWithLiterals as jK, type OrderActivityTypeEnumActivityTypeWithLiterals as jL, type AttributionSourceWithLiterals as jM, type ChannelTypeWithLiterals as jN, type AdditionalFeeSourceWithLiterals as jO, type OrderActionTypeWithLiterals as jP, type SpecificItemsCouponBehaviorWithLiterals as jQ, type ChargeTypeWithLiterals as jR, type VersioningModeWithLiterals as jS, type DeltaPaymentOptionTypeWithLiterals as jT, type InventoryActionWithLiterals as jU, type WebhookIdentityTypeWithLiterals as jV, type PreviewEmailTypeWithLiterals as jW, type StateWithLiterals as jX, type SiteCreatedContextWithLiterals as jY, type NamespaceWithLiterals as jZ, type DeleteStatusWithLiterals as j_, type Locale as ja, type TotalPrice as jb, type ItemizedFee as jc, type Discount as jd, type DiscountOneDiscountTypeOneOf as je, type CalculatedTaxes as jf, type CalculatedTax as jg, type Payments as jh, type InvoicesPayment as ji, type MetaData as jj, type InvoiceDynamicPriceTotals as jk, type CustomFieldValue as jl, type Value as jm, type Deposit as jn, type BaseEventMetadata as jo, type EventMetadata as jp, type AccountInfoMetadata as jq, type OrderSearchSpec as jr, utils as js, type DescriptionLineTypeWithLiterals as jt, type DimensionsUnitWithLiterals as ju, type ItemTypePresetWithLiterals as jv, type PaymentOptionTypeWithLiterals as jw, type JurisdictionTypeWithLiterals as jx, type SubscriptionFrequencyWithLiterals as jy, type ProductPeriodAlignmentWithLiterals as jz, type PaymentCollectionCreatePaymentGatewayOrderOptions as k, bulkUpdateOrderTags as k$, type ScheduledActionWithLiterals as k0, type DurationUnitWithLiterals as k1, type PaymentCollectabilityStatusWithLiterals as k2, type PredefinedPaymentMethodWithLiterals as k3, type RefundableStatusWithLiterals as k4, type NonRefundableReasonWithLiterals as k5, type ManuallyRefundableReasonWithLiterals as k6, type RestockTypeWithLiterals as k7, type TransactionStatusWithLiterals as k8, type AuthorizationCaptureStatusWithLiterals as k9, onOrderUpdated as kA, importOrder as kB, setOrderNumberCounter as kC, bulkDeleteImportedOrders as kD, preparePaymentCollection as kE, getPaymentCollectabilityStatus as kF, recordManuallyCollectedPayment as kG, paymentCollectionMarkOrderAsPaid as kH, paymentCollectionBulkMarkOrdersAsPaid as kI, getRefundabilityStatus as kJ, paymentCollectionCreatePaymentGatewayOrder as kK, chargeMemberships as kL, triggerRefund as kM, voidAuthorizedPayments as kN, captureAuthorizedPayments as kO, getOrder as kP, createOrder as kQ, updateOrder as kR, bulkUpdateOrders as kS, updateOrderLineItem as kT, addActivity as kU, addActivities as kV, updateActivity as kW, deleteActivity as kX, cancelOrder as kY, updateOrderStatus as kZ, aggregateOrders as k_, type AuthorizationVoidStatusWithLiterals as ka, type ReasonWithLiterals as kb, type ActionTypeWithLiterals as kc, type ChargebackStatusWithLiterals as kd, type MembershipPaymentStatusWithLiterals as ke, type PaymentStatusWithLiterals as kf, type CanceledReasonWithLiterals as kg, type DeclinedReasonWithLiterals as kh, type VoidedReasonWithLiterals as ki, type RefundStatusWithLiterals as kj, type SortOrderWithLiterals as kk, type OrderApprovalStrategyWithLiterals as kl, type PlacementWithLiterals as km, type SubdivisionTypeWithLiterals as kn, type SourceTypeWithLiterals as ko, type CustomFieldGroupWithLiterals as kp, type ValueTypeWithLiterals as kq, type DepositTypeWithLiterals as kr, type InvoiceStatusWithLiterals as ks, type CommonSearchWithEntityContext as kt, onOrderApproved as ku, onOrderCanceled as kv, onOrderCommitted as kw, onOrderCreated as kx, onOrderFulfilled as ky, onOrderPaymentStatusUpdated as kz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as l, type ChargeMembershipsOptions as m, type PaymentRefund as n, type TriggerRefundResponse as o, type TriggerRefundApplicationErrors as p, type VoidAuthorizedPaymentsApplicationErrors as q, type PaymentCapture as r, type CaptureAuthorizedPaymentsResponse as s, type CaptureAuthorizedPaymentsApplicationErrors as t, type GetOrderApplicationErrors as u, type OrderSearch as v, type SearchOrdersResponse as w, type CreateOrderOptions as x, type CreateOrderApplicationErrors as y, type UpdateOrderApplicationErrors as z };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { O as Order, I as ImportOrderResponse, a as ImportOrderApplicationErrors, S as SetOrderNumberCounterOptions, b as SetOrderNumberCounterResponse, B as BulkDeleteImportedOrdersResponse, P as Price, c as PreparePaymentCollectionOptions, d as PreparePaymentCollectionResponse, e as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, R as RecordManuallyCollectedPaymentOptions, f as RecordManuallyCollectedPaymentApplicationErrors, g as PaymentCollectionMarkOrderAsPaidOptions, M as MarkOrderAsPaidResponse, h as PaymentCollectionMarkOrderAsPaidApplicationErrors, i as BulkMarkOrdersAsPaidResponse, j as GetRefundabilityStatusResponse, k as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, l as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, m as ChargeMembershipsOptions, n as PaymentRefund, T as TriggerRefundOptions, o as TriggerRefundResponse, p as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, q as VoidAuthorizedPaymentsApplicationErrors, r as PaymentCapture, s as CaptureAuthorizedPaymentsResponse, t as CaptureAuthorizedPaymentsApplicationErrors, u as GetOrderApplicationErrors, v as OrderSearch, w as SearchOrdersResponse, x as CreateOrderOptions, y as CreateOrderApplicationErrors, U as UpdateOrder, z as UpdateOrderApplicationErrors, A as MaskedOrder, D as BulkUpdateOrdersOptions, E as BulkUpdateOrdersResponse, F as UpdateOrderLineItemIdentifiers, H as UpdateOrderLineItem, J as UpdateOrderLineItemResponse, K as PublicActivity, L as AddActivityResponse, N as AddActivitiesOptions, Q as AddActivitiesResponse, W as UpdateActivityIdentifiers, X as UpdateActivityResponse, Y as DeleteActivityIdentifiers, Z as DeleteActivityResponse, _ as CancelOrderOptions, $ as CancelOrderResponse, a0 as CancelOrderApplicationErrors, a1 as OrderStatusWithLiterals, a2 as UpdateOrderStatusResponse, a3 as UpdateOrderStatusApplicationErrors, a4 as AggregateOrdersOptions, a5 as AggregateOrdersResponse, a6 as BulkUpdateOrderTagsOptions, a7 as BulkUpdateOrderTagsResponse, a8 as OrderApprovedEnvelope, a9 as OrderCanceledEnvelope, aa as OrderCommittedEnvelope, ab as OrderCreatedEnvelope, ac as OrderFulfilledEnvelope, ad as OrderPaymentStatusUpdatedEnvelope, ae as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-
|
|
3
|
-
export { ec as AccountInfo, jj as AccountInfoMetadata, e6 as ActionEvent, a$ as ActionType, k5 as ActionTypeWithLiterals, cf as Activity, cg as ActivityContentOneOf, ax as ActivityType, jD as ActivityTypeWithLiterals, hX as AddActivitiesRequest, hV as AddActivityRequest, hy as AddInternalActivityRequest, hU as AddInternalActivityResponse, fz as AddToAutomationMigrationPopulationRequest, fA as AddToAutomationMigrationPopulationResponse, dd as AdditionalFee, dW as AdditionalFeeDelta, dX as AdditionalFeeDeltaDeltaOneOf, eL as AdditionalFeeRefund, aB as AdditionalFeeSource, jH as AdditionalFeeSourceWithLiterals, bR as Address, iR as AddressDescription, bT as AddressLocation, bQ as AddressWithContact, am as AdjustmentType, jt as AdjustmentTypeWithLiterals, iu as AggregateOrdersRequest, gq as AggregatedRefundSummary, fQ as ApplicationError, c5 as AppliedDiscount, dU as AppliedDiscountDelta, dV as AppliedDiscountDeltaDeltaOneOf, c6 as AppliedDiscountDiscountSourceOneOf, h9 as ArchiveOrderRequest, ha as ArchiveOrderResponse, f2 as Asset, az as AttributionSource, jF as AttributionSourceWithLiterals, gd as AuthorizationActionFailureDetails, gc as AuthorizationCapture, aY as AuthorizationCaptureStatus, k2 as AuthorizationCaptureStatusWithLiterals, gb as AuthorizationDetails, ge as AuthorizationVoid, aZ as AuthorizationVoidStatus, k3 as AuthorizationVoidStatusWithLiterals, cG as AuthorizedPaymentCaptured, cF as AuthorizedPaymentCreated, cH as AuthorizedPaymentVoided, db as Balance, da as BalanceSummary, jh as BaseEventMetadata, i$ as BigDecimalWrapper, bC as BillingAdjustment, bD as BillingAdjustmentPriceSummary, bB as BillingSettings, fR as BulkActionMetadata, hd as BulkArchiveOrdersByFilterRequest, he as BulkArchiveOrdersByFilterResponse, hb as BulkArchiveOrdersRequest, hc as BulkArchiveOrdersResponse, ef as BulkDeleteImportedOrdersRequest, i9 as BulkMarkAsFulfilledByFilterRequest, ia as BulkMarkAsFulfilledByFilterResponse, i7 as BulkMarkAsFulfilledRequest, i8 as BulkMarkAsFulfilledResponse, ig as BulkMarkAsUnfulfilledByFilterRequest, ih as BulkMarkAsUnfulfilledByFilterResponse, id as BulkMarkAsUnfulfilledRequest, ie as BulkMarkAsUnfulfilledResponse, fN as BulkMarkOrdersAsPaidRequest, fO as BulkOrderResult, ep as BulkSendBuyerPickupConfirmationEmailsRequest, eq as BulkSendBuyerPickupConfirmationEmailsResponse, et as BulkSendBuyerShippingConfirmationEmailsRequest, eu as BulkSendBuyerShippingConfirmationEmailsResponse, ii as BulkSetBusinessLocationRequest, ij as BulkSetBusinessLocationResponse, ik as BulkSetBusinessLocationResult, hj as BulkUnArchiveOrdersByFilterRequest, hk as BulkUnArchiveOrdersByFilterResponse, hh as BulkUnArchiveOrdersRequest, hi as BulkUnArchiveOrdersResponse, iy as BulkUpdateOrderTagsRequest, iB as BulkUpdateOrderTagsResult, g$ as BulkUpdateOrdersRequest, bM as BuyerInfo, bN as BuyerInfoIdOneOf, hm as BuyerInfoUpdate, gu as CalculateRefundItemRequest, gw as CalculateRefundItemResponse, gt as CalculateRefundRequest, gv as CalculateRefundResponse, j9 as CalculatedTax, j8 as CalculatedTaxes, iJ as Cancel, i3 as CancelOrderRequest, gy as CaptureAuthorizedPaymentsRequest, dc as CashRounding, gm as CashRoundingDetails, bf as CatalogReference, d8 as ChannelInfo, aA as ChannelType, jG as ChannelTypeWithLiterals, fX as ChargeMembershipsRequest, f$ as ChargeMembershipsResponse, gz as ChargeSavedPaymentMethodRequest, gA as ChargeSavedPaymentMethodResponse, aE as ChargeType, jK as ChargeTypeWithLiterals, gg as Chargeback, d4 as ChargebackCreated, d5 as ChargebackReversed, b0 as ChargebackStatus, k6 as ChargebackStatusWithLiterals, fW as ChargedBy, bl as Color, h0 as CommitDeltasRequest, h8 as CommitDeltasResponse, dO as CommittedDiffs, dP as CommittedDiffsShippingUpdateInfoOneOf, iU as CommonAddress, iV as CommonAddressStreetOneOf, kj as CommonSearchWithEntityContext, iT as Company, iI as Complete, c7 as Coupon, gU as CreateOrderRequest, gY as CreateOrderResponse, fV as CreatePaymentGatewayOrderRequest, d6 as CreatedBy, d7 as CreatedByStringOneOf, cV as CreditCardDetails, ga as CreditCardPaymentMethodDetails, bO as CurrencyConversionDetails, gK as CursorPaging, gT as CursorPagingMetadata, gR as CursorSearch, gS as CursorSearchPagingMethodOneOf, gN as Cursors, ch as CustomActivity, dl as CustomAllowedActions, d9 as CustomField, b9 as CustomFieldGroup, kf as CustomFieldGroupWithLiterals, je as CustomFieldValue, iO as Customer, iw as DecrementData, iv as DecrementItemsQuantityRequest, ix as DecrementItemsQuantityResponse, fF as DelayedCaptureSettings, hZ as DeleteActivityRequest, dx as DeleteByFilterOperation, dw as DeleteByIdsOperation, f6 as DeleteContext, aN as DeleteStatus, jT as DeleteStatusWithLiterals, bX as DeliveryLogistics, bY as DeliveryLogisticsAddressOneOf, b$ as DeliveryTimeSlot, aG as DeltaPaymentOptionType, jM as DeltaPaymentOptionTypeWithLiterals, jg as Deposit, bb as DepositType, kh as DepositTypeWithLiterals, bg as DescriptionLine, bi as DescriptionLineDescriptionLineValueOneOf, bj as DescriptionLineName, af as DescriptionLineType, jm as DescriptionLineTypeWithLiterals, bh as DescriptionLineValueOneOf, gB as DiffmatokyPayload, bv as DigitalFile, bo as Dimensions, ag as DimensionsUnit, jn as DimensionsUnitWithLiterals, j6 as Discount, j7 as DiscountOneDiscountTypeOneOf, av as DiscountReason, jB as DiscountReasonWithLiterals, ca as DiscountRule, cb as DiscountRuleName, au as DiscountType, jA as DiscountTypeWithLiterals, e0 as DomainEvent, e1 as DomainEventBodyOneOf, hG as DownloadLinkSent, cn as DraftOrderChangesApplied, dY as DraftOrderCommitSettings, h1 as DraftOrderDiffs, h4 as DraftOrderDiffsBillingUpdateInfoOneOf, h3 as DraftOrderDiffsBuyerUpdateInfoOneOf, h5 as DraftOrderDiffsRecipientUpdateInfoOneOf, h2 as DraftOrderDiffsShippingUpdateInfoOneOf, fG as Duration, aQ as DurationUnit, jW as DurationUnitWithLiterals, fv as EditorlessAssigned, fw as EditorlessUnassigned, iP as Email, hP as EmailEdited, e7 as Empty, e2 as EntityCreatedEvent, e5 as EntityDeletedEvent, e4 as EntityUpdatedEvent, gC as ErrorInformation, ji as EventMetadata, bI as ExtendedFields, d1 as ExternalReceipt, gl as ExternalReceiptInfo, bm as FocalPoint, dp as FormIdentifier, dn as FormInfo, bA as FreeTrialPeriod, hN as FulfillerEmailSent, ap as FulfillmentStatus, dL as FulfillmentStatusUpdated, jw as FulfillmentStatusWithLiterals, de as FulfillmentStatusesAggregate, bU as FullAddressContactDetails, gD as GetOrderRequest, gE as GetOrderResponse, fH as GetPaymentCollectabilityStatusRequest, fS as GetRefundabilityStatusRequest, is as GetShipmentsRequest, it as GetShipmentsResponse, gi as GiftCardPaymentDetails, cM as GiftCardPaymentRefund, fx as HasCustomEmailConfigurationsRequest, fy as HasCustomEmailConfigurationsResponse, iM as IdAndVersion, ea as IdentificationData, eb as IdentificationDataIdOneOf, ed as ImportOrderRequest, dJ as ImportedOrderDeleted, hz as InternalActivity, hA as InternalActivityContentOneOf, du as InternalDocument, dy as InternalDocumentUpdateByFilterOperation, dv as InternalDocumentUpdateOperation, gF as InternalQueryOrdersRequest, gL as InternalQueryOrdersResponse, dz as InternalUpdateExistingOperation, aH as InventoryAction, jN as InventoryActionWithLiterals, dZ as InventoryUpdateDetails, hL as InvoiceAdded, iY as InvoiceDates, jd as InvoiceDynamicPriceTotals, iN as InvoiceFields, hM as InvoiceSent, iL as InvoiceSentEvent, bc as InvoiceStatus, ki as InvoiceStatusWithLiterals, jb as InvoicesPayment, fB as IsInAutomationMigrationPopulationRequest, fC as IsInAutomationMigrationPopulationResponse, dQ as ItemChangedDetails, cd as ItemCombination, ce as ItemCombinationLineItem, fP as ItemMetadata, bL as ItemModifier, bs as ItemTaxFullDetails, bp as ItemType, bq as ItemTypeItemTypeDataOneOf, ah as ItemTypePreset, jo as ItemTypePresetWithLiterals, j5 as ItemizedFee, aj as JurisdictionType, jq as JurisdictionTypeWithLiterals, i_ as LineItem, cz as LineItemAmount, cq as LineItemChanges, dS as LineItemDelta, dT as LineItemDeltaDeltaOneOf, cu as LineItemDescriptionLineChange, cc as LineItemDiscount, cm as LineItemExchangeData, j2 as LineItemMetaData, cv as LineItemModifiersChange, cs as LineItemPriceChange, ct as LineItemProductNameChange, cr as LineItemQuantityChange, aw as LineItemQuantityChangeType, jC as LineItemQuantityChangeTypeWithLiterals, eK as LineItemRefund, gs as LineItemRefundSummary, j0 as LineItemTax, bu as LineItemTaxBreakdown, bt as LineItemTaxInfo, h$ as LineItemUpdate, iZ as LineItems, j3 as Locale, dh as Location, bF as LocationAndQuantity, cA as ManagedAdditionalFee, cx as ManagedDiscount, cw as ManagedLineItem, aV as ManuallyRefundableReason, j$ as ManuallyRefundableReasonWithLiterals, i5 as MarkAsFulfilledRequest, i6 as MarkAsFulfilledResponse, ib as MarkAsUnfulfilledRequest, ic as MarkAsUnfulfilledResponse, fM as MarkOrderAsPaidRequest, i1 as MarkOrderAsSeenByHumanRequest, i2 as MarkOrderAsSeenByHumanResponse, hw as MaskedOrderLineItem, fY as MembershipChargeItem, fZ as MembershipName, gj as MembershipPaymentDetails, cN as MembershipPaymentRefund, b1 as MembershipPaymentStatus, k7 as MembershipPaymentStatusWithLiterals, ci as MerchantComment, c8 as MerchantDiscount, c9 as MerchantDiscountMerchantDiscountReasonOneOf, e9 as MessageEnvelope, jc as MetaData, f0 as MetaSiteSpecialEvent, f1 as MetaSiteSpecialEventPayloadOneOf, bJ as ModifierGroup, aM as Namespace, fg as NamespaceChanged, jS as NamespaceWithLiterals, cl as NewExchangeOrderCreated, aU as NonRefundableReason, j_ as NonRefundableReasonWithLiterals, fl as OdeditorAssigned, fm as OdeditorUnassigned, aC as OrderActionType, jI as OrderActionTypeWithLiterals, ay as OrderActivityTypeEnumActivityType, jE as OrderActivityTypeEnumActivityTypeWithLiterals, b5 as OrderApprovalStrategy, kb as OrderApprovalStrategyWithLiterals, dD as OrderApproved, hF as OrderCanceled, dM as OrderCanceledEventOrderCanceled, co as OrderChange, cp as OrderChangeValueOneOf, gX as OrderCreateNotifications, ck as OrderCreatedFromExchange, gV as OrderCreationSettings, gW as OrderCreationSettingsEditableByOneOf, dN as OrderDeltasCommitted, hD as OrderFulfilled, dI as OrderImported, dG as OrderItemsRestocked, bd as OrderLineItem, dR as OrderLineItemChangedDetails, hE as OrderNotFulfilled, hC as OrderPaid, hR as OrderPartiallyPaid, hS as OrderPending, hB as OrderPlaced, cj as OrderRefunded, hT as OrderRejected, dF as OrderRejectedEventOrderRejected, jk as OrderSearchSpec, di as OrderSettings, dj as OrderSettingsAllowedActionsOneOf, dk as OrderSettingsEditableByOneOf, at as OrderStatus, c4 as OrderTaxBreakdown, c3 as OrderTaxInfo, g4 as OrderTransactions, dE as OrdersExperiments, aO as Origin, jU as OriginWithLiterals, dm as OwnerApps, g5 as Payment, cW as PaymentCanceled, cX as PaymentCanceledPaymentDetailsOneOf, aR as PaymentCollectabilityStatus, jX as PaymentCollectabilityStatusWithLiterals, cY as PaymentDeclined, cZ as PaymentDeclinedPaymentDetailsOneOf, gh as PaymentMethodName, ai as PaymentOptionType, jp as PaymentOptionTypeWithLiterals, g6 as PaymentPaymentDetailsOneOf, cR as PaymentPending, cS as PaymentPendingPaymentDetailsOneOf, g7 as PaymentReceiptInfoOneOf, cP as PaymentRefundFailed, cO as PaymentRefunded, b2 as PaymentStatus, ao as PaymentStatusEnumPaymentStatus, jv as PaymentStatusEnumPaymentStatusWithLiterals, dK as PaymentStatusUpdated, k8 as PaymentStatusWithLiterals, ja as Payments, iS as Phone, bn as PhysicalProperties, fn as PicassoAssigned, fo as PicassoUnassigned, b_ as PickupAddress, bZ as PickupDetails, as as PickupMethod, jz as PickupMethodWithLiterals, hQ as PickupReadyEmailSent, b6 as Placement, kc as PlacementWithLiterals, bk as PlainTextValue, dr as PlatformFee, dq as PlatformFeeSummary, gJ as PlatformPaging, gM as PlatformPagingMetadata, gG as PlatformQuery, gH as PlatformQueryPagingMethodOneOf, aS as PredefinedPaymentMethod, jY as PredefinedPaymentMethodWithLiterals, fD as PreparePaymentCollectionRequest, eU as PreviewBuyerConfirmationEmailRequest, eV as PreviewBuyerConfirmationEmailResponse, eS as PreviewBuyerPaymentsReceivedEmailRequest, eT as PreviewBuyerPaymentsReceivedEmailResponse, eW as PreviewBuyerPickupConfirmationEmailRequest, eX as PreviewBuyerPickupConfirmationEmailResponse, eO as PreviewCancelEmailRequest, eP as PreviewCancelEmailResponse, eQ as PreviewCancelRefundEmailRequest, eR as PreviewCancelRefundEmailResponse, eF as PreviewEmailByTypeRequest, eG as PreviewEmailByTypeResponse, aJ as PreviewEmailType, jP as PreviewEmailTypeWithLiterals, eH as PreviewRefundEmailRequest, eN as PreviewRefundEmailResponse, e_ as PreviewResendDownloadLinksEmailRequest, e$ as PreviewResendDownloadLinksEmailResponse, eY as PreviewShippingConfirmationEmailRequest, eZ as PreviewShippingConfirmationEmailResponse, bE as PriceDescription, bP as PriceSummary, be as ProductName, al as ProductPeriodAlignment, js as ProductPeriodAlignmentWithLiterals, hW as PublicActivityContentOneOf, gO as QueryOrderRequest, gP as QueryOrderResponse, iQ as QuotesAddress, a_ as Reason, k4 as ReasonWithLiterals, c_ as ReceiptCreated, c$ as ReceiptCreatedReceiptInfoOneOf, d2 as ReceiptSent, d3 as ReceiptSentReceiptInfoOneOf, fI as RecordManuallyCollectedPaymentRequest, fL as RecordManuallyCollectedPaymentResponse, fE as RedirectUrls, gn as Refund, eI as RefundDetails, cI as RefundInitiated, eJ as RefundItem, gr as RefundItemsBreakdown, g1 as RefundSideEffects, b3 as RefundStatus, gp as RefundStatusInfo, k9 as RefundStatusWithLiterals, go as RefundTransaction, fT as Refundability, fU as RefundabilityAdditionalRefundabilityInfoOneOf, aT as RefundableStatus, jZ as RefundableStatusWithLiterals, cQ as RefundedAsStoreCredit, cJ as RefundedPayment, cK as RefundedPaymentKindOneOf, cT as RegularPayment, g8 as RegularPaymentDetails, g9 as RegularPaymentDetailsPaymentMethodDetailsOneOf, cU as RegularPaymentPaymentMethodDetailsOneOf, cL as RegularPaymentRefund, iK as Reschedule, g2 as RestockInfo, g3 as RestockItem, br as RestockLocation, aW as RestockType, k0 as RestockTypeWithLiterals, e3 as RestoreInfo, cE as SavedPaymentMethod, aP as ScheduledAction, jV as ScheduledActionWithLiterals, gQ as SearchOrdersRequest, ej as SendBuyerConfirmationEmailRequest, ek as SendBuyerConfirmationEmailResponse, el as SendBuyerPaymentsReceivedEmailRequest, em as SendBuyerPaymentsReceivedEmailResponse, en as SendBuyerPickupConfirmationEmailRequest, eo as SendBuyerPickupConfirmationEmailResponse, er as SendBuyerShippingConfirmationEmailRequest, es as SendBuyerShippingConfirmationEmailResponse, ex as SendCancelRefundEmailRequest, ey as SendCancelRefundEmailResponse, eB as SendFulfillmentEmailRequest, eC as SendFulfillmentEmailResponse, ev as SendMerchantOrderReceivedNotificationRequest, ew as SendMerchantOrderReceivedNotificationResponse, eD as SendMerchantOrderReceivedPushRequest, eE as SendMerchantOrderReceivedPushResponse, iC as SendOrderUpdatedDomainEventRequest, iD as SendOrderUpdatedDomainEventResponse, ez as SendRefundEmailRequest, eA as SendRefundEmailResponse, f_ as ServiceProperties, fc as ServiceProvisioned, fd as ServiceRemoved, ee as SetOrderNumberCounterRequest, hO as ShippingAddressEdited, hK as ShippingConfirmationEmailSent, cD as ShippingInformation, cC as ShippingInformationChange, c0 as ShippingPrice, eM as ShippingRefund, c1 as ShippingRegion, f3 as SiteCreated, aL as SiteCreatedContext, jR as SiteCreatedContextWithLiterals, f5 as SiteDeleted, ff as SiteHardDeleted, fa as SiteMarkedAsTemplate, fb as SiteMarkedAsWixSite, f8 as SitePublished, fk as SitePurgedExternally, fe as SiteRenamed, f4 as SiteTransferred, f7 as SiteUndeleted, f9 as SiteUnpublished, fj as SiteUrlChanged, b4 as SortOrder, ka as SortOrderWithLiterals, gI as Sorting, j1 as Source, b8 as SourceType, ke as SourceTypeWithLiterals, aD as SpecificItemsCouponBehavior, jJ as SpecificItemsCouponBehaviorWithLiterals, iX as StandardDetails, aK as State, jQ as StateWithLiterals, bS as StreetAddress, fh as StudioAssigned, fr as StudioTwoAssigned, fs as StudioTwoUnassigned, fi as StudioUnassigned, iW as Subdivision, b7 as SubdivisionType, kd as SubdivisionTypeWithLiterals, by as SubscriptionDescription, ak as SubscriptionFrequency, jr as SubscriptionFrequencyWithLiterals, bw as SubscriptionInfo, bz as SubscriptionSettings, bx as SubscriptionTitle, dg as TagList, df as Tags, iA as TagsTagList, iz as TagsTags, iE as Task, iG as TaskAction, iH as TaskActionActionOneOf, iF as TaskKey, c2 as TaxSummary, bG as TaxableAddress, bH as TaxableAddressTaxableAddressDataOneOf, an as TaxableAddressType, ju as TaxableAddressTypeWithLiterals, j4 as TotalPrice, cB as TotalPriceChange, hJ as TrackingLinkAdded, hH as TrackingNumberAdded, hI as TrackingNumberEdited, aX as TransactionStatus, k1 as TransactionStatusWithLiterals, bK as TranslatableString, cy as TranslatedValue, g0 as TriggerRefundRequest, e8 as TriggerReindexOrderRequest, d_ as TriggerReindexRequest, d$ as TriggerReindexResponse, hf as UnArchiveOrderRequest, hg as UnArchiveOrderResponse, hY as UpdateActivityRequest, hs as UpdateBillingContactDetailsRequest, ht as UpdateBillingContactDetailsResponse, ho as UpdateBuyerEmailRequest, hp as UpdateBuyerEmailResponse, hl as UpdateBuyerInfoRequest, hn as UpdateBuyerInfoResponse, ds as UpdateInternalDocumentsEvent, dt as UpdateInternalDocumentsEventOperationOneOf, h_ as UpdateLineItemsDescriptionLinesRequest, i0 as UpdateLineItemsDescriptionLinesResponse, hu as UpdateOrderLineItemRequest, hv as UpdateOrderLineItemsRequest, hx as UpdateOrderLineItemsResponse, gZ as UpdateOrderRequest, g_ as UpdateOrderResponse, hq as UpdateOrderShippingAddressRequest, hr as UpdateOrderShippingAddressResponse, i4 as UpdateOrderStatusRequest, fJ as UserDefinedPaymentMethodName, fK as UserDefinedPaymentMethodNameKindOneOf, fu as UserDomainMediaDisabled, ft as UserDomainMediaEnabled, io as V1BulkMarkOrdersAsPaidRequest, ip as V1BulkMarkOrdersAsPaidResponse, iq as V1CreatePaymentGatewayOrderRequest, ir as V1CreatePaymentGatewayOrderResponse, h6 as V1LineItemDelta, h7 as V1LineItemDeltaDeltaOneOf, il as V1MarkOrderAsPaidRequest, im as V1MarkOrderAsPaidResponse, dH as V1RestockItem, gf as V1ScheduledAction, bW as V1ShippingInformation, ei as V1TriggerReindexOrderRequest, eg as V1TriggerReindexRequest, eh as V1TriggerReindexResponse, jf as Value, ba as ValueType, kg as ValueTypeWithLiterals, bV as VatId, ar as VatType, jy as VatTypeWithLiterals, dB as VersionedDeleteByIdsOperation, dC as VersionedDocumentId, dA as VersionedDocumentUpdateOperation, aF as VersioningMode, jL as VersioningModeWithLiterals, gx as VoidAuthorizedPaymentsRequest, aI as WebhookIdentityType, jO as WebhookIdentityTypeWithLiterals, aq as WeightUnit, jx as WeightUnitWithLiterals, d0 as WixReceipt, gk as WixReceiptInfo, fp as WixelAssigned, fq as WixelUnassigned, jl as utils } from './ecom-v1-order-orders.universal-BnQm5A1P.mjs';
|
|
2
|
+
import { O as Order, I as ImportOrderResponse, a as ImportOrderApplicationErrors, S as SetOrderNumberCounterOptions, b as SetOrderNumberCounterResponse, B as BulkDeleteImportedOrdersResponse, P as Price, c as PreparePaymentCollectionOptions, d as PreparePaymentCollectionResponse, e as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, R as RecordManuallyCollectedPaymentOptions, f as RecordManuallyCollectedPaymentApplicationErrors, g as PaymentCollectionMarkOrderAsPaidOptions, M as MarkOrderAsPaidResponse, h as PaymentCollectionMarkOrderAsPaidApplicationErrors, i as BulkMarkOrdersAsPaidResponse, j as GetRefundabilityStatusResponse, k as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, l as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, m as ChargeMembershipsOptions, n as PaymentRefund, T as TriggerRefundOptions, o as TriggerRefundResponse, p as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, q as VoidAuthorizedPaymentsApplicationErrors, r as PaymentCapture, s as CaptureAuthorizedPaymentsResponse, t as CaptureAuthorizedPaymentsApplicationErrors, u as GetOrderApplicationErrors, v as OrderSearch, w as SearchOrdersResponse, x as CreateOrderOptions, y as CreateOrderApplicationErrors, U as UpdateOrder, z as UpdateOrderApplicationErrors, A as MaskedOrder, D as BulkUpdateOrdersOptions, E as BulkUpdateOrdersResponse, F as UpdateOrderLineItemIdentifiers, H as UpdateOrderLineItem, J as UpdateOrderLineItemResponse, K as PublicActivity, L as AddActivityResponse, N as AddActivitiesOptions, Q as AddActivitiesResponse, W as UpdateActivityIdentifiers, X as UpdateActivityResponse, Y as DeleteActivityIdentifiers, Z as DeleteActivityResponse, _ as CancelOrderOptions, $ as CancelOrderResponse, a0 as CancelOrderApplicationErrors, a1 as OrderStatusWithLiterals, a2 as UpdateOrderStatusResponse, a3 as UpdateOrderStatusApplicationErrors, a4 as AggregateOrdersOptions, a5 as AggregateOrdersResponse, a6 as BulkUpdateOrderTagsOptions, a7 as BulkUpdateOrderTagsResponse, a8 as OrderApprovedEnvelope, a9 as OrderCanceledEnvelope, aa as OrderCommittedEnvelope, ab as OrderCreatedEnvelope, ac as OrderFulfilledEnvelope, ad as OrderPaymentStatusUpdatedEnvelope, ae as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-SnDmdo04.mjs';
|
|
3
|
+
export { ef as AccountInfo, jq as AccountInfoMetadata, e9 as ActionEvent, a$ as ActionType, kc as ActionTypeWithLiterals, ci as Activity, cj as ActivityContentOneOf, ax as ActivityType, jK as ActivityTypeWithLiterals, i2 as AddActivitiesRequest, i0 as AddActivityRequest, hF as AddInternalActivityRequest, h$ as AddInternalActivityResponse, fC as AddToAutomationMigrationPopulationRequest, fD as AddToAutomationMigrationPopulationResponse, dg as AdditionalFee, dZ as AdditionalFeeDelta, d_ as AdditionalFeeDeltaDeltaOneOf, eO as AdditionalFeeRefund, aB as AdditionalFeeSource, jO as AdditionalFeeSourceWithLiterals, bU as Address, iY as AddressDescription, bW as AddressLocation, bT as AddressWithContact, am as AdjustmentType, jA as AdjustmentTypeWithLiterals, iB as AggregateOrdersRequest, gx as AggregatedRefundSummary, fT as ApplicationError, c8 as AppliedDiscount, dX as AppliedDiscountDelta, dY as AppliedDiscountDeltaDeltaOneOf, c9 as AppliedDiscountDiscountSourceOneOf, hg as ArchiveOrderRequest, hh as ArchiveOrderResponse, f5 as Asset, az as AttributionSource, jM as AttributionSourceWithLiterals, gh as AuthorizationActionFailureDetails, gg as AuthorizationCapture, aY as AuthorizationCaptureStatus, k9 as AuthorizationCaptureStatusWithLiterals, gf as AuthorizationDetails, gi as AuthorizationVoid, aZ as AuthorizationVoidStatus, ka as AuthorizationVoidStatusWithLiterals, cJ as AuthorizedPaymentCaptured, cI as AuthorizedPaymentCreated, cK as AuthorizedPaymentVoided, de as Balance, dd as BalanceSummary, jo as BaseEventMetadata, j6 as BigDecimalWrapper, bF as BillingAdjustment, bG as BillingAdjustmentPriceSummary, bE as BillingSettings, fU as BulkActionMetadata, hk as BulkArchiveOrdersByFilterRequest, hl as BulkArchiveOrdersByFilterResponse, hi as BulkArchiveOrdersRequest, hj as BulkArchiveOrdersResponse, ei as BulkDeleteImportedOrdersRequest, ih as BulkMarkAsFulfilledByFilterRequest, ii as BulkMarkAsFulfilledByFilterResponse, ie as BulkMarkAsFulfilledRequest, ig as BulkMarkAsFulfilledResponse, io as BulkMarkAsUnfulfilledByFilterRequest, ip as BulkMarkAsUnfulfilledByFilterResponse, il as BulkMarkAsUnfulfilledRequest, im as BulkMarkAsUnfulfilledResponse, fQ as BulkMarkOrdersAsPaidRequest, fR as BulkOrderResult, es as BulkSendBuyerPickupConfirmationEmailsRequest, et as BulkSendBuyerPickupConfirmationEmailsResponse, ew as BulkSendBuyerShippingConfirmationEmailsRequest, ex as BulkSendBuyerShippingConfirmationEmailsResponse, iq as BulkSetBusinessLocationRequest, ir as BulkSetBusinessLocationResponse, is as BulkSetBusinessLocationResult, hq as BulkUnArchiveOrdersByFilterRequest, hr as BulkUnArchiveOrdersByFilterResponse, ho as BulkUnArchiveOrdersRequest, hp as BulkUnArchiveOrdersResponse, iF as BulkUpdateOrderTagsRequest, iI as BulkUpdateOrderTagsResult, h6 as BulkUpdateOrdersRequest, bP as BuyerInfo, bQ as BuyerInfoIdOneOf, ht as BuyerInfoUpdate, gB as CalculateRefundItemRequest, gD as CalculateRefundItemResponse, gA as CalculateRefundRequest, gC as CalculateRefundResponse, jg as CalculatedTax, jf as CalculatedTaxes, iQ as Cancel, ia as CancelOrderRequest, b3 as CanceledReason, kg as CanceledReasonWithLiterals, gr as CanceledStatusDetails, gF as CaptureAuthorizedPaymentsRequest, df as CashRounding, gq as CashRoundingDetails, bi as CatalogReference, db as ChannelInfo, aA as ChannelType, jN as ChannelTypeWithLiterals, f_ as ChargeMembershipsRequest, g2 as ChargeMembershipsResponse, gG as ChargeSavedPaymentMethodRequest, gH as ChargeSavedPaymentMethodResponse, aE as ChargeType, jR as ChargeTypeWithLiterals, gk as Chargeback, d7 as ChargebackCreated, d8 as ChargebackReversed, b0 as ChargebackStatus, kd as ChargebackStatusWithLiterals, fZ as ChargedBy, bo as Color, h7 as CommitDeltasRequest, hf as CommitDeltasResponse, dR as CommittedDiffs, dS as CommittedDiffsShippingUpdateInfoOneOf, i$ as CommonAddress, j0 as CommonAddressStreetOneOf, kt as CommonSearchWithEntityContext, i_ as Company, iP as Complete, ca as Coupon, g$ as CreateOrderRequest, h3 as CreateOrderResponse, fY as CreatePaymentGatewayOrderRequest, d9 as CreatedBy, da as CreatedByStringOneOf, cY as CreditCardDetails, ge as CreditCardPaymentMethodDetails, bR as CurrencyConversionDetails, gR as CursorPaging, g_ as CursorPagingMetadata, gY as CursorSearch, gZ as CursorSearchPagingMethodOneOf, gU as Cursors, ck as CustomActivity, dp as CustomAllowedActions, dc as CustomField, bc as CustomFieldGroup, kp as CustomFieldGroupWithLiterals, jl as CustomFieldValue, iV as Customer, b4 as DeclinedReason, kh as DeclinedReasonWithLiterals, gs as DeclinedStatusDetails, iD as DecrementData, iC as DecrementItemsQuantityRequest, iE as DecrementItemsQuantityResponse, fI as DelayedCaptureSettings, i4 as DeleteActivityRequest, dA as DeleteByFilterOperation, dz as DeleteByIdsOperation, f9 as DeleteContext, aN as DeleteStatus, j_ as DeleteStatusWithLiterals, b_ as DeliveryLogistics, b$ as DeliveryLogisticsAddressOneOf, c2 as DeliveryTimeSlot, aG as DeltaPaymentOptionType, jT as DeltaPaymentOptionTypeWithLiterals, jn as Deposit, be as DepositType, kr as DepositTypeWithLiterals, bj as DescriptionLine, bl as DescriptionLineDescriptionLineValueOneOf, bm as DescriptionLineName, af as DescriptionLineType, jt as DescriptionLineTypeWithLiterals, bk as DescriptionLineValueOneOf, gI as DiffmatokyPayload, by as DigitalFile, br as Dimensions, ag as DimensionsUnit, ju as DimensionsUnitWithLiterals, jd as Discount, je as DiscountOneDiscountTypeOneOf, av as DiscountReason, jI as DiscountReasonWithLiterals, cd as DiscountRule, ce as DiscountRuleName, au as DiscountType, jH as DiscountTypeWithLiterals, e3 as DomainEvent, e4 as DomainEventBodyOneOf, hN as DownloadLinkSent, cq as DraftOrderChangesApplied, d$ as DraftOrderCommitSettings, h8 as DraftOrderDiffs, hb as DraftOrderDiffsBillingUpdateInfoOneOf, ha as DraftOrderDiffsBuyerUpdateInfoOneOf, hc as DraftOrderDiffsRecipientUpdateInfoOneOf, h9 as DraftOrderDiffsShippingUpdateInfoOneOf, fJ as Duration, aQ as DurationUnit, k1 as DurationUnitWithLiterals, fy as EditorlessAssigned, fz as EditorlessUnassigned, iW as Email, hW as EmailEdited, ea as Empty, e5 as EntityCreatedEvent, e8 as EntityDeletedEvent, e7 as EntityUpdatedEvent, gJ as ErrorInformation, jp as EventMetadata, bL as ExtendedFields, d4 as ExternalReceipt, gp as ExternalReceiptInfo, bp as FocalPoint, ds as FormIdentifier, dr as FormInfo, bD as FreeTrialPeriod, hU as FulfillerEmailSent, ap as FulfillmentStatus, dO as FulfillmentStatusUpdated, jD as FulfillmentStatusWithLiterals, dh as FulfillmentStatusesAggregate, bX as FullAddressContactDetails, gK as GetOrderRequest, gL as GetOrderResponse, fK as GetPaymentCollectabilityStatusRequest, fV as GetRefundabilityStatusRequest, iz as GetShipmentsRequest, iA as GetShipmentsResponse, gm as GiftCardPaymentDetails, cP as GiftCardPaymentRefund, fA as HasCustomEmailConfigurationsRequest, fB as HasCustomEmailConfigurationsResponse, iT as IdAndVersion, ed as IdentificationData, ee as IdentificationDataIdOneOf, eg as ImportOrderRequest, dM as ImportedOrderDeleted, hG as InternalActivity, hH as InternalActivityContentOneOf, dx as InternalDocument, dB as InternalDocumentUpdateByFilterOperation, dy as InternalDocumentUpdateOperation, gM as InternalQueryOrdersRequest, gS as InternalQueryOrdersResponse, dC as InternalUpdateExistingOperation, aH as InventoryAction, jU as InventoryActionWithLiterals, e0 as InventoryUpdateDetails, hS as InvoiceAdded, j3 as InvoiceDates, jk as InvoiceDynamicPriceTotals, iU as InvoiceFields, hT as InvoiceSent, iS as InvoiceSentEvent, bf as InvoiceStatus, ks as InvoiceStatusWithLiterals, ji as InvoicesPayment, fE as IsInAutomationMigrationPopulationRequest, fF as IsInAutomationMigrationPopulationResponse, dT as ItemChangedDetails, cg as ItemCombination, ch as ItemCombinationLineItem, fS as ItemMetadata, bO as ItemModifier, bv as ItemTaxFullDetails, bs as ItemType, bt as ItemTypeItemTypeDataOneOf, ah as ItemTypePreset, jv as ItemTypePresetWithLiterals, jc as ItemizedFee, aj as JurisdictionType, jx as JurisdictionTypeWithLiterals, j5 as LineItem, cC as LineItemAmount, ct as LineItemChanges, dV as LineItemDelta, dW as LineItemDeltaDeltaOneOf, cx as LineItemDescriptionLineChange, cf as LineItemDiscount, cp as LineItemExchangeData, j9 as LineItemMetaData, cy as LineItemModifiersChange, cv as LineItemPriceChange, cw as LineItemProductNameChange, cu as LineItemQuantityChange, aw as LineItemQuantityChangeType, jJ as LineItemQuantityChangeTypeWithLiterals, eN as LineItemRefund, gz as LineItemRefundSummary, j7 as LineItemTax, bx as LineItemTaxBreakdown, bw as LineItemTaxInfo, i6 as LineItemUpdate, j4 as LineItems, ja as Locale, dk as Location, bI as LocationAndQuantity, cD as ManagedAdditionalFee, cA as ManagedDiscount, cz as ManagedLineItem, aV as ManuallyRefundableReason, k6 as ManuallyRefundableReasonWithLiterals, ic as MarkAsFulfilledRequest, id as MarkAsFulfilledResponse, ij as MarkAsUnfulfilledRequest, ik as MarkAsUnfulfilledResponse, fP as MarkOrderAsPaidRequest, i8 as MarkOrderAsSeenByHumanRequest, i9 as MarkOrderAsSeenByHumanResponse, hD as MaskedOrderLineItem, f$ as MembershipChargeItem, g0 as MembershipName, gn as MembershipPaymentDetails, cQ as MembershipPaymentRefund, b1 as MembershipPaymentStatus, ke as MembershipPaymentStatusWithLiterals, cl as MerchantComment, cb as MerchantDiscount, cc as MerchantDiscountMerchantDiscountReasonOneOf, ec as MessageEnvelope, jj as MetaData, f3 as MetaSiteSpecialEvent, f4 as MetaSiteSpecialEventPayloadOneOf, bM as ModifierGroup, aM as Namespace, fj as NamespaceChanged, jZ as NamespaceWithLiterals, co as NewExchangeOrderCreated, aU as NonRefundableReason, k5 as NonRefundableReasonWithLiterals, fo as OdeditorAssigned, fp as OdeditorUnassigned, aC as OrderActionType, jP as OrderActionTypeWithLiterals, ay as OrderActivityTypeEnumActivityType, jL as OrderActivityTypeEnumActivityTypeWithLiterals, b8 as OrderApprovalStrategy, kl as OrderApprovalStrategyWithLiterals, dG as OrderApproved, hM as OrderCanceled, dP as OrderCanceledEventOrderCanceled, cr as OrderChange, cs as OrderChangeValueOneOf, h2 as OrderCreateNotifications, cn as OrderCreatedFromExchange, h0 as OrderCreationSettings, h1 as OrderCreationSettingsEditableByOneOf, dQ as OrderDeltasCommitted, hK as OrderFulfilled, dL as OrderImported, dJ as OrderItemsRestocked, bg as OrderLineItem, dU as OrderLineItemChangedDetails, hL as OrderNotFulfilled, hJ as OrderPaid, hY as OrderPartiallyPaid, hZ as OrderPending, hI as OrderPlaced, cm as OrderRefunded, h_ as OrderRejected, dI as OrderRejectedEventOrderRejected, jr as OrderSearchSpec, dl as OrderSettings, dm as OrderSettingsAllowedActionsOneOf, dn as OrderSettingsEditableByOneOf, at as OrderStatus, c7 as OrderTaxBreakdown, c6 as OrderTaxInfo, g7 as OrderTransactions, dH as OrdersExperiments, aO as Origin, j$ as OriginWithLiterals, dq as OwnerApps, g8 as Payment, cZ as PaymentCanceled, c_ as PaymentCanceledPaymentDetailsOneOf, aR as PaymentCollectabilityStatus, k2 as PaymentCollectabilityStatusWithLiterals, c$ as PaymentDeclined, d0 as PaymentDeclinedPaymentDetailsOneOf, gl as PaymentMethodName, ai as PaymentOptionType, jw as PaymentOptionTypeWithLiterals, g9 as PaymentPaymentDetailsOneOf, cU as PaymentPending, cV as PaymentPendingPaymentDetailsOneOf, ga as PaymentReceiptInfoOneOf, cS as PaymentRefundFailed, cR as PaymentRefunded, b2 as PaymentStatus, gb as PaymentStatusDetailsOneOf, ao as PaymentStatusEnumPaymentStatus, jC as PaymentStatusEnumPaymentStatusWithLiterals, dN as PaymentStatusUpdated, kf as PaymentStatusWithLiterals, jh as Payments, iZ as Phone, bq as PhysicalProperties, fq as PicassoAssigned, fr as PicassoUnassigned, c1 as PickupAddress, c0 as PickupDetails, as as PickupMethod, jG as PickupMethodWithLiterals, hX as PickupReadyEmailSent, b9 as Placement, km as PlacementWithLiterals, bn as PlainTextValue, du as PlatformFee, dt as PlatformFeeSummary, gQ as PlatformPaging, gT as PlatformPagingMetadata, gN as PlatformQuery, gO as PlatformQueryPagingMethodOneOf, aS as PredefinedPaymentMethod, k3 as PredefinedPaymentMethodWithLiterals, fG as PreparePaymentCollectionRequest, eX as PreviewBuyerConfirmationEmailRequest, eY as PreviewBuyerConfirmationEmailResponse, eV as PreviewBuyerPaymentsReceivedEmailRequest, eW as PreviewBuyerPaymentsReceivedEmailResponse, eZ as PreviewBuyerPickupConfirmationEmailRequest, e_ as PreviewBuyerPickupConfirmationEmailResponse, eR as PreviewCancelEmailRequest, eS as PreviewCancelEmailResponse, eT as PreviewCancelRefundEmailRequest, eU as PreviewCancelRefundEmailResponse, eI as PreviewEmailByTypeRequest, eJ as PreviewEmailByTypeResponse, aJ as PreviewEmailType, jW as PreviewEmailTypeWithLiterals, eK as PreviewRefundEmailRequest, eQ as PreviewRefundEmailResponse, f1 as PreviewResendDownloadLinksEmailRequest, f2 as PreviewResendDownloadLinksEmailResponse, e$ as PreviewShippingConfirmationEmailRequest, f0 as PreviewShippingConfirmationEmailResponse, bH as PriceDescription, bS as PriceSummary, bh as ProductName, al as ProductPeriodAlignment, jz as ProductPeriodAlignmentWithLiterals, i1 as PublicActivityContentOneOf, gV as QueryOrderRequest, gW as QueryOrderResponse, iX as QuotesAddress, a_ as Reason, kb as ReasonWithLiterals, d1 as ReceiptCreated, d2 as ReceiptCreatedReceiptInfoOneOf, d5 as ReceiptSent, d6 as ReceiptSentReceiptInfoOneOf, fL as RecordManuallyCollectedPaymentRequest, fO as RecordManuallyCollectedPaymentResponse, fH as RedirectUrls, gu as Refund, eL as RefundDetails, cL as RefundInitiated, eM as RefundItem, gy as RefundItemsBreakdown, g4 as RefundSideEffects, b6 as RefundStatus, gw as RefundStatusInfo, kj as RefundStatusWithLiterals, gv as RefundTransaction, fW as Refundability, fX as RefundabilityAdditionalRefundabilityInfoOneOf, aT as RefundableStatus, k4 as RefundableStatusWithLiterals, cT as RefundedAsStoreCredit, cM as RefundedPayment, cN as RefundedPaymentKindOneOf, cW as RegularPayment, gc as RegularPaymentDetails, gd as RegularPaymentDetailsPaymentMethodDetailsOneOf, cX as RegularPaymentPaymentMethodDetailsOneOf, cO as RegularPaymentRefund, iR as Reschedule, g5 as RestockInfo, g6 as RestockItem, bu as RestockLocation, aW as RestockType, k7 as RestockTypeWithLiterals, e6 as RestoreInfo, cH as SavedPaymentMethod, aP as ScheduledAction, k0 as ScheduledActionWithLiterals, gX as SearchOrdersRequest, em as SendBuyerConfirmationEmailRequest, en as SendBuyerConfirmationEmailResponse, eo as SendBuyerPaymentsReceivedEmailRequest, ep as SendBuyerPaymentsReceivedEmailResponse, eq as SendBuyerPickupConfirmationEmailRequest, er as SendBuyerPickupConfirmationEmailResponse, eu as SendBuyerShippingConfirmationEmailRequest, ev as SendBuyerShippingConfirmationEmailResponse, eA as SendCancelRefundEmailRequest, eB as SendCancelRefundEmailResponse, eE as SendFulfillmentEmailRequest, eF as SendFulfillmentEmailResponse, ey as SendMerchantOrderReceivedNotificationRequest, ez as SendMerchantOrderReceivedNotificationResponse, eG as SendMerchantOrderReceivedPushRequest, eH as SendMerchantOrderReceivedPushResponse, iJ as SendOrderUpdatedDomainEventRequest, iK as SendOrderUpdatedDomainEventResponse, eC as SendRefundEmailRequest, eD as SendRefundEmailResponse, g1 as ServiceProperties, ff as ServiceProvisioned, fg as ServiceRemoved, eh as SetOrderNumberCounterRequest, hV as ShippingAddressEdited, hR as ShippingConfirmationEmailSent, cG as ShippingInformation, cF as ShippingInformationChange, c3 as ShippingPrice, eP as ShippingRefund, c4 as ShippingRegion, f6 as SiteCreated, aL as SiteCreatedContext, jY as SiteCreatedContextWithLiterals, f8 as SiteDeleted, fi as SiteHardDeleted, fd as SiteMarkedAsTemplate, fe as SiteMarkedAsWixSite, fb as SitePublished, fn as SitePurgedExternally, fh as SiteRenamed, f7 as SiteTransferred, fa as SiteUndeleted, fc as SiteUnpublished, fm as SiteUrlChanged, b7 as SortOrder, kk as SortOrderWithLiterals, gP as Sorting, j8 as Source, bb as SourceType, ko as SourceTypeWithLiterals, aD as SpecificItemsCouponBehavior, jQ as SpecificItemsCouponBehaviorWithLiterals, j2 as StandardDetails, aK as State, jX as StateWithLiterals, bV as StreetAddress, fk as StudioAssigned, fu as StudioTwoAssigned, fv as StudioTwoUnassigned, fl as StudioUnassigned, j1 as Subdivision, ba as SubdivisionType, kn as SubdivisionTypeWithLiterals, bB as SubscriptionDescription, ak as SubscriptionFrequency, jy as SubscriptionFrequencyWithLiterals, bz as SubscriptionInfo, bC as SubscriptionSettings, bA as SubscriptionTitle, dj as TagList, di as Tags, iH as TagsTagList, iG as TagsTags, iL as Task, iN as TaskAction, iO as TaskActionActionOneOf, iM as TaskKey, c5 as TaxSummary, bJ as TaxableAddress, bK as TaxableAddressTaxableAddressDataOneOf, an as TaxableAddressType, jB as TaxableAddressTypeWithLiterals, jb as TotalPrice, cE as TotalPriceChange, hQ as TrackingLinkAdded, hO as TrackingNumberAdded, hP as TrackingNumberEdited, aX as TransactionStatus, k8 as TransactionStatusWithLiterals, bN as TranslatableString, cB as TranslatedValue, g3 as TriggerRefundRequest, eb as TriggerReindexOrderRequest, e1 as TriggerReindexRequest, e2 as TriggerReindexResponse, hm as UnArchiveOrderRequest, hn as UnArchiveOrderResponse, i3 as UpdateActivityRequest, hz as UpdateBillingContactDetailsRequest, hA as UpdateBillingContactDetailsResponse, hv as UpdateBuyerEmailRequest, hw as UpdateBuyerEmailResponse, hs as UpdateBuyerInfoRequest, hu as UpdateBuyerInfoResponse, dv as UpdateInternalDocumentsEvent, dw as UpdateInternalDocumentsEventOperationOneOf, i5 as UpdateLineItemsDescriptionLinesRequest, i7 as UpdateLineItemsDescriptionLinesResponse, hB as UpdateOrderLineItemRequest, hC as UpdateOrderLineItemsRequest, hE as UpdateOrderLineItemsResponse, h4 as UpdateOrderRequest, h5 as UpdateOrderResponse, hx as UpdateOrderShippingAddressRequest, hy as UpdateOrderShippingAddressResponse, ib as UpdateOrderStatusRequest, fM as UserDefinedPaymentMethodName, fN as UserDefinedPaymentMethodNameKindOneOf, fx as UserDomainMediaDisabled, fw as UserDomainMediaEnabled, iv as V1BulkMarkOrdersAsPaidRequest, iw as V1BulkMarkOrdersAsPaidResponse, ix as V1CreatePaymentGatewayOrderRequest, iy as V1CreatePaymentGatewayOrderResponse, hd as V1LineItemDelta, he as V1LineItemDeltaDeltaOneOf, it as V1MarkOrderAsPaidRequest, iu as V1MarkOrderAsPaidResponse, dK as V1RestockItem, gj as V1ScheduledAction, bZ as V1ShippingInformation, el as V1TriggerReindexOrderRequest, ej as V1TriggerReindexRequest, ek as V1TriggerReindexResponse, jm as Value, bd as ValueType, kq as ValueTypeWithLiterals, bY as VatId, ar as VatType, jF as VatTypeWithLiterals, dE as VersionedDeleteByIdsOperation, dF as VersionedDocumentId, dD as VersionedDocumentUpdateOperation, aF as VersioningMode, jS as VersioningModeWithLiterals, gE as VoidAuthorizedPaymentsRequest, b5 as VoidedReason, ki as VoidedReasonWithLiterals, gt as VoidedStatusDetails, aI as WebhookIdentityType, jV as WebhookIdentityTypeWithLiterals, aq as WeightUnit, jE as WeightUnitWithLiterals, d3 as WixReceipt, go as WixReceiptInfo, fs as WixelAssigned, ft as WixelUnassigned, js as utils } from './ecom-v1-order-orders.universal-SnDmdo04.mjs';
|
|
4
4
|
|
|
5
5
|
/** @internal */
|
|
6
6
|
declare function importOrder$1(httpClient: HttpClient): ImportOrderSignature;
|
|
@@ -1909,6 +1909,7 @@ var ChannelType = /* @__PURE__ */ ((ChannelType2) => {
|
|
|
1909
1909
|
ChannelType2["PAYPAL_AGENTIC_CHECKOUT"] = "PAYPAL_AGENTIC_CHECKOUT";
|
|
1910
1910
|
ChannelType2["STRIPE_AGENTIC_CHECKOUT"] = "STRIPE_AGENTIC_CHECKOUT";
|
|
1911
1911
|
ChannelType2["WIX_INVOICES_PLATFORM"] = "WIX_INVOICES_PLATFORM";
|
|
1912
|
+
ChannelType2["UCP_AGENTIC_CHECKOUT"] = "UCP_AGENTIC_CHECKOUT";
|
|
1912
1913
|
return ChannelType2;
|
|
1913
1914
|
})(ChannelType || {});
|
|
1914
1915
|
var AdditionalFeeSource = /* @__PURE__ */ ((AdditionalFeeSource2) => {
|
|
@@ -2173,6 +2174,23 @@ var PaymentStatus = /* @__PURE__ */ ((PaymentStatus2) => {
|
|
|
2173
2174
|
PaymentStatus2["VOIDED"] = "VOIDED";
|
|
2174
2175
|
return PaymentStatus2;
|
|
2175
2176
|
})(PaymentStatus || {});
|
|
2177
|
+
var CanceledReason = /* @__PURE__ */ ((CanceledReason2) => {
|
|
2178
|
+
CanceledReason2["OTHER_PAYMENT_FAILURE"] = "OTHER_PAYMENT_FAILURE";
|
|
2179
|
+
CanceledReason2["EXPIRED"] = "EXPIRED";
|
|
2180
|
+
return CanceledReason2;
|
|
2181
|
+
})(CanceledReason || {});
|
|
2182
|
+
var DeclinedReason = /* @__PURE__ */ ((DeclinedReason2) => {
|
|
2183
|
+
DeclinedReason2["CHARGE_FAILED"] = "CHARGE_FAILED";
|
|
2184
|
+
DeclinedReason2["EXPIRED"] = "EXPIRED";
|
|
2185
|
+
DeclinedReason2["INSUFFICIENT_FUNDS"] = "INSUFFICIENT_FUNDS";
|
|
2186
|
+
DeclinedReason2["GIFT_CARD_DISABLED"] = "GIFT_CARD_DISABLED";
|
|
2187
|
+
return DeclinedReason2;
|
|
2188
|
+
})(DeclinedReason || {});
|
|
2189
|
+
var VoidedReason = /* @__PURE__ */ ((VoidedReason2) => {
|
|
2190
|
+
VoidedReason2["MERCHANT_REQUEST"] = "MERCHANT_REQUEST";
|
|
2191
|
+
VoidedReason2["OTHER_PAYMENT_FAILURE"] = "OTHER_PAYMENT_FAILURE";
|
|
2192
|
+
return VoidedReason2;
|
|
2193
|
+
})(VoidedReason || {});
|
|
2176
2194
|
var RefundStatus = /* @__PURE__ */ ((RefundStatus2) => {
|
|
2177
2195
|
RefundStatus2["PENDING"] = "PENDING";
|
|
2178
2196
|
RefundStatus2["SUCCEEDED"] = "SUCCEEDED";
|
|
@@ -4032,10 +4050,12 @@ export {
|
|
|
4032
4050
|
AttributionSource,
|
|
4033
4051
|
AuthorizationCaptureStatus,
|
|
4034
4052
|
AuthorizationVoidStatus,
|
|
4053
|
+
CanceledReason,
|
|
4035
4054
|
ChannelType,
|
|
4036
4055
|
ChargeType,
|
|
4037
4056
|
ChargebackStatus,
|
|
4038
4057
|
CustomFieldGroup,
|
|
4058
|
+
DeclinedReason,
|
|
4039
4059
|
DeleteStatus,
|
|
4040
4060
|
DeltaPaymentOptionType,
|
|
4041
4061
|
DepositType,
|
|
@@ -4085,6 +4105,7 @@ export {
|
|
|
4085
4105
|
ValueType,
|
|
4086
4106
|
VatType,
|
|
4087
4107
|
VersioningMode,
|
|
4108
|
+
VoidedReason,
|
|
4088
4109
|
WebhookIdentityType,
|
|
4089
4110
|
WeightUnit,
|
|
4090
4111
|
addActivities4 as addActivities,
|