@wix/auto_sdk_ecom_orders 1.0.225 → 1.0.227
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-cW_bf4vG.d.ts → ecom-v1-order-orders.universal-BM1Fu7MO.d.ts} +19 -6
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +27 -13
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +27 -13
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +19 -6
- package/build/cjs/meta.js +27 -13
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-cW_bf4vG.d.mts → ecom-v1-order-orders.universal-BM1Fu7MO.d.mts} +19 -6
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +26 -13
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +26 -13
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +19 -6
- package/build/es/meta.mjs +26 -13
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-UePQMlea.d.ts → ecom-v1-order-orders.universal-BUB6Je7V.d.ts} +35 -6
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +27 -13
- 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 +27 -13
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +19 -6
- package/build/internal/cjs/meta.js +27 -13
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{ecom-v1-order-orders.universal-UePQMlea.d.mts → ecom-v1-order-orders.universal-BUB6Je7V.d.mts} +35 -6
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +26 -13
- 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 +26 -13
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +19 -6
- package/build/internal/es/meta.mjs +26 -13
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -41,7 +41,7 @@ interface Order {
|
|
|
41
41
|
/** Buyer information. */
|
|
42
42
|
buyerInfo?: BuyerInfo;
|
|
43
43
|
/** Order payment status. */
|
|
44
|
-
paymentStatus?:
|
|
44
|
+
paymentStatus?: PaymentStatusEnumPaymentStatusWithLiterals;
|
|
45
45
|
/**
|
|
46
46
|
* Order fulfillment status.
|
|
47
47
|
* @readonly
|
|
@@ -1055,7 +1055,7 @@ interface BuyerInfoIdOneOf {
|
|
|
1055
1055
|
*/
|
|
1056
1056
|
memberId?: string;
|
|
1057
1057
|
}
|
|
1058
|
-
declare enum
|
|
1058
|
+
declare enum PaymentStatusEnumPaymentStatus {
|
|
1059
1059
|
UNSPECIFIED = "UNSPECIFIED",
|
|
1060
1060
|
/**
|
|
1061
1061
|
* `NOT_PAID` can apply to an order made online, but not yet paid. In such cases `order.status` will be `INITIALIZED`.
|
|
@@ -1097,7 +1097,7 @@ declare enum PaymentStatus {
|
|
|
1097
1097
|
DECLINED = "DECLINED"
|
|
1098
1098
|
}
|
|
1099
1099
|
/** @enumType */
|
|
1100
|
-
type
|
|
1100
|
+
type PaymentStatusEnumPaymentStatusWithLiterals = PaymentStatusEnumPaymentStatus | 'UNSPECIFIED' | 'NOT_PAID' | 'PAID' | 'PARTIALLY_REFUNDED' | 'FULLY_REFUNDED' | 'PENDING' | 'PARTIALLY_PAID' | 'PENDING_MERCHANT' | 'CANCELED' | 'DECLINED';
|
|
1101
1101
|
declare enum FulfillmentStatus {
|
|
1102
1102
|
/** None of the order items are fulfilled or the order was manually marked as unfulfilled. */
|
|
1103
1103
|
NOT_FULFILLED = "NOT_FULFILLED",
|
|
@@ -3101,6 +3101,14 @@ interface OrderSettings extends OrderSettingsAllowedActionsOneOf, OrderSettingsE
|
|
|
3101
3101
|
* @internal
|
|
3102
3102
|
*/
|
|
3103
3103
|
specificItemsCouponBehavior?: SpecificItemsCouponBehaviorWithLiterals;
|
|
3104
|
+
/**
|
|
3105
|
+
* Whether to automatically generate an invoice when this order will be PAID.
|
|
3106
|
+
* If `false`, no invoice is auto-generated for this order.
|
|
3107
|
+
*
|
|
3108
|
+
* Default: `true`
|
|
3109
|
+
* @internal
|
|
3110
|
+
*/
|
|
3111
|
+
createInvoice?: boolean | null;
|
|
3104
3112
|
}
|
|
3105
3113
|
/** @oneof */
|
|
3106
3114
|
interface OrderSettingsAllowedActionsOneOf {
|
|
@@ -3344,7 +3352,7 @@ interface PaymentStatusUpdated {
|
|
|
3344
3352
|
/** The order that was updated */
|
|
3345
3353
|
order?: Order;
|
|
3346
3354
|
/** The previous status (before the update) */
|
|
3347
|
-
previousPaymentStatus?:
|
|
3355
|
+
previousPaymentStatus?: PaymentStatusEnumPaymentStatusWithLiterals;
|
|
3348
3356
|
}
|
|
3349
3357
|
/** Triggered when the fulfillment status of an order is updated */
|
|
3350
3358
|
interface FulfillmentStatusUpdated {
|
|
@@ -5686,6 +5694,19 @@ interface CashRoundingDetails {
|
|
|
5686
5694
|
*/
|
|
5687
5695
|
roundingAdjustment?: CashRounding;
|
|
5688
5696
|
}
|
|
5697
|
+
declare enum PaymentStatus {
|
|
5698
|
+
APPROVED = "APPROVED",
|
|
5699
|
+
PENDING = "PENDING",
|
|
5700
|
+
PENDING_MERCHANT = "PENDING_MERCHANT",
|
|
5701
|
+
CANCELED = "CANCELED",
|
|
5702
|
+
DECLINED = "DECLINED",
|
|
5703
|
+
REFUNDED = "REFUNDED",
|
|
5704
|
+
PARTIALLY_REFUNDED = "PARTIALLY_REFUNDED",
|
|
5705
|
+
AUTHORIZED = "AUTHORIZED",
|
|
5706
|
+
VOIDED = "VOIDED"
|
|
5707
|
+
}
|
|
5708
|
+
/** @enumType */
|
|
5709
|
+
type PaymentStatusWithLiterals = PaymentStatus | 'APPROVED' | 'PENDING' | 'PENDING_MERCHANT' | 'CANCELED' | 'DECLINED' | 'REFUNDED' | 'PARTIALLY_REFUNDED' | 'AUTHORIZED' | 'VOIDED';
|
|
5689
5710
|
interface Refund {
|
|
5690
5711
|
/**
|
|
5691
5712
|
* Refund ID.
|
|
@@ -6285,6 +6306,14 @@ interface OrderCreationSettings extends OrderCreationSettingsEditableByOneOf {
|
|
|
6285
6306
|
orderApprovalStrategy?: OrderApprovalStrategyWithLiterals;
|
|
6286
6307
|
/** Notification settings to be applied on order creation */
|
|
6287
6308
|
notifications?: OrderCreateNotifications;
|
|
6309
|
+
/**
|
|
6310
|
+
* Whether to automatically generate an invoice when this order will be PAID.
|
|
6311
|
+
* If `false`, no invoice is auto-generated for this order.
|
|
6312
|
+
*
|
|
6313
|
+
* Default: `true`
|
|
6314
|
+
* @internal
|
|
6315
|
+
*/
|
|
6316
|
+
createInvoice?: boolean | null;
|
|
6288
6317
|
}
|
|
6289
6318
|
/** @oneof */
|
|
6290
6319
|
interface OrderCreationSettingsEditableByOneOf {
|
|
@@ -8894,7 +8923,7 @@ interface UpdateOrder {
|
|
|
8894
8923
|
/** Buyer information. */
|
|
8895
8924
|
buyerInfo?: BuyerInfo;
|
|
8896
8925
|
/** Order payment status. */
|
|
8897
|
-
paymentStatus?:
|
|
8926
|
+
paymentStatus?: PaymentStatusEnumPaymentStatusWithLiterals;
|
|
8898
8927
|
/**
|
|
8899
8928
|
* Order fulfillment status.
|
|
8900
8929
|
* @readonly
|
|
@@ -9478,4 +9507,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
9478
9507
|
unassignTags?: TagsTags;
|
|
9479
9508
|
}
|
|
9480
9509
|
|
|
9481
|
-
export { type CancelOrderResponse as $, type MaskedOrder as A, type BulkDeleteImportedOrdersOptions 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 SetOrderNumberCounterResponse as a, MembershipPaymentStatus 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, AdditionalFeeSource as aA, OrderActionType as aB, SpecificItemsCouponBehavior as aC, ChargeType as aD, DeltaPaymentOptionType as aE, InventoryAction as aF, WebhookIdentityType as aG, PreviewEmailType as aH, State as aI, SiteCreatedContext as aJ, Namespace as aK, DeleteStatus as aL, Origin as aM, ScheduledAction as aN, DurationUnit as aO, PaymentCollectabilityStatus as aP, PredefinedPaymentMethod as aQ, RefundableStatus as aR, NonRefundableReason as aS, ManuallyRefundableReason as aT, RestockType as aU, TransactionStatus as aV, AuthorizationCaptureStatus as aW, AuthorizationVoidStatus as aX, Reason as aY, ActionType as aZ, ChargebackStatus 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, AdjustmentType as al, TaxableAddressType as am, PaymentStatus as an, FulfillmentStatus as ao, WeightUnit as ap, VatType as aq, PickupMethod as ar, OrderStatus as as, DiscountType as at, DiscountReason as au, LineItemQuantityChangeType as av, ActivityType as aw, OrderActivityTypeEnumActivityType as ax, AttributionSource as ay, ChannelType as az, type BulkDeleteImportedOrdersResponse as b, type TaxSummary as b$, RefundStatus as b0, VersioningMode as b1, SortOrder as b2, OrderApprovalStrategy as b3, Placement as b4, SubdivisionType as b5, SourceType as b6, CustomFieldGroup as b7, ValueType as b8, DepositType as b9, type BillingAdjustmentPriceSummary as bA, type PriceDescription as bB, type LocationAndQuantity as bC, type TaxableAddress as bD, type TaxableAddressTaxableAddressDataOneOf as bE, type ExtendedFields as bF, type ModifierGroup as bG, type TranslatableString as bH, type ItemModifier as bI, type BuyerInfo as bJ, type BuyerInfoIdOneOf as bK, type CurrencyConversionDetails as bL, type PriceSummary as bM, type AddressWithContact as bN, type Address as bO, type StreetAddress as bP, type AddressLocation as bQ, type FullAddressContactDetails as bR, type VatId as bS, type V1ShippingInformation as bT, type DeliveryLogistics as bU, type DeliveryLogisticsAddressOneOf as bV, type PickupDetails as bW, type PickupAddress as bX, type DeliveryTimeSlot as bY, type ShippingPrice as bZ, type ShippingRegion as b_, InvoiceStatus as ba, type OrderLineItem as bb, type ProductName as bc, type CatalogReference as bd, type DescriptionLine as be, type DescriptionLineValueOneOf as bf, type DescriptionLineDescriptionLineValueOneOf as bg, type DescriptionLineName as bh, type PlainTextValue as bi, type Color as bj, type FocalPoint as bk, type PhysicalProperties as bl, type Dimensions as bm, type ItemType as bn, type ItemTypeItemTypeDataOneOf as bo, type RestockLocation as bp, type ItemTaxFullDetails as bq, type LineItemTaxInfo as br, type LineItemTaxBreakdown as bs, type DigitalFile as bt, type SubscriptionInfo as bu, type SubscriptionTitle as bv, type SubscriptionDescription as bw, type SubscriptionSettings as bx, type FreeTrialPeriod as by, type BillingAdjustment as bz, type PreparePaymentCollectionOptions as c, type ReceiptSent as c$, type OrderTaxInfo as c0, type OrderTaxBreakdown as c1, type AppliedDiscount as c2, type AppliedDiscountDiscountSourceOneOf as c3, type Coupon as c4, type MerchantDiscount as c5, type MerchantDiscountMerchantDiscountReasonOneOf as c6, type DiscountRule as c7, type DiscountRuleName as c8, type LineItemDiscount as c9, type ShippingInformation as cA, type SavedPaymentMethod as cB, type AuthorizedPaymentCreated as cC, type AuthorizedPaymentCaptured as cD, type AuthorizedPaymentVoided as cE, type RefundInitiated as cF, type RefundedPayment as cG, type RefundedPaymentKindOneOf as cH, type RegularPaymentRefund as cI, type GiftCardPaymentRefund as cJ, type MembershipPaymentRefund as cK, type PaymentRefunded as cL, type PaymentRefundFailed as cM, type RefundedAsStoreCredit as cN, type PaymentPending as cO, type PaymentPendingPaymentDetailsOneOf as cP, type RegularPayment as cQ, type RegularPaymentPaymentMethodDetailsOneOf as cR, type CreditCardDetails as cS, type PaymentCanceled as cT, type PaymentCanceledPaymentDetailsOneOf as cU, type PaymentDeclined as cV, type PaymentDeclinedPaymentDetailsOneOf as cW, type ReceiptCreated as cX, type ReceiptCreatedReceiptInfoOneOf as cY, type WixReceipt as cZ, type ExternalReceipt as c_, type ItemCombination as ca, type ItemCombinationLineItem as cb, type Activity as cc, type ActivityContentOneOf as cd, type CustomActivity as ce, type MerchantComment as cf, type OrderRefunded as cg, type OrderCreatedFromExchange as ch, type NewExchangeOrderCreated as ci, type LineItemExchangeData as cj, type DraftOrderChangesApplied as ck, type OrderChange as cl, type OrderChangeValueOneOf as cm, type LineItemChanges as cn, type LineItemQuantityChange as co, type LineItemPriceChange as cp, type LineItemProductNameChange as cq, type LineItemDescriptionLineChange as cr, type LineItemModifiersChange as cs, type ManagedLineItem as ct, type ManagedDiscount as cu, type TranslatedValue as cv, type LineItemAmount as cw, type ManagedAdditionalFee as cx, type TotalPriceChange as cy, type ShippingInformationChange as cz, type PreparePaymentCollectionResponse as d, type SendBuyerConfirmationEmailResponse as d$, type ReceiptSentReceiptInfoOneOf as d0, type ChargebackCreated as d1, type ChargebackReversed as d2, type CreatedBy as d3, type CreatedByStringOneOf as d4, type ChannelInfo as d5, type CustomField as d6, type BalanceSummary as d7, type Balance as d8, type CashRounding as d9, type CommittedDiffs as dA, type CommittedDiffsShippingUpdateInfoOneOf as dB, type ItemChangedDetails as dC, type OrderLineItemChangedDetails as dD, type LineItemDelta as dE, type LineItemDeltaDeltaOneOf as dF, type AppliedDiscountDelta as dG, type AppliedDiscountDeltaDeltaOneOf as dH, type AdditionalFeeDelta as dI, type AdditionalFeeDeltaDeltaOneOf as dJ, type DraftOrderCommitSettings as dK, type InventoryUpdateDetails as dL, type ImportOrderRequest as dM, type SetOrderNumberCounterRequest as dN, type BulkDeleteImportedOrdersRequest as dO, type DomainEvent as dP, type DomainEventBodyOneOf as dQ, type EntityCreatedEvent as dR, type RestoreInfo as dS, type EntityUpdatedEvent as dT, type EntityDeletedEvent as dU, type ActionEvent as dV, type MessageEnvelope as dW, type IdentificationData as dX, type IdentificationDataIdOneOf as dY, type AccountInfo as dZ, type SendBuyerConfirmationEmailRequest as d_, type AdditionalFee as da, type FulfillmentStatusesAggregate as db, type Tags as dc, type TagList as dd, type Location as de, type OrderSettings as df, type OrderSettingsAllowedActionsOneOf as dg, type OrderSettingsEditableByOneOf as dh, type CustomAllowedActions as di, type OwnerApps as dj, type FormInfo as dk, type FormIdentifier as dl, type PlatformFeeSummary as dm, type PlatformFee as dn, type OrderApproved as dp, type OrdersExperiments as dq, type OrderRejectedEventOrderRejected as dr, type OrderItemsRestocked as ds, type V1RestockItem as dt, type OrderImported as du, type ImportedOrderDeleted as dv, type PaymentStatusUpdated as dw, type FulfillmentStatusUpdated as dx, type OrderCanceledEventOrderCanceled as dy, type OrderDeltasCommitted as dz, type PreparePaymentCollectionApplicationErrors as e, type SiteUrlChanged as e$, type SendBuyerPaymentsReceivedEmailRequest as e0, type SendBuyerPaymentsReceivedEmailResponse as e1, type SendBuyerPickupConfirmationEmailRequest as e2, type SendBuyerPickupConfirmationEmailResponse as e3, type BulkSendBuyerPickupConfirmationEmailsRequest as e4, type BulkSendBuyerPickupConfirmationEmailsResponse as e5, type SendBuyerShippingConfirmationEmailRequest as e6, type SendBuyerShippingConfirmationEmailResponse as e7, type BulkSendBuyerShippingConfirmationEmailsRequest as e8, type BulkSendBuyerShippingConfirmationEmailsResponse as e9, type PreviewBuyerConfirmationEmailResponse as eA, type PreviewBuyerPickupConfirmationEmailRequest as eB, type PreviewBuyerPickupConfirmationEmailResponse as eC, type PreviewShippingConfirmationEmailRequest as eD, type PreviewShippingConfirmationEmailResponse as eE, type PreviewResendDownloadLinksEmailRequest as eF, type PreviewResendDownloadLinksEmailResponse as eG, type Empty as eH, type MetaSiteSpecialEvent as eI, type MetaSiteSpecialEventPayloadOneOf as eJ, type Asset as eK, type SiteCreated as eL, type SiteTransferred as eM, type SiteDeleted as eN, type DeleteContext as eO, type SiteUndeleted as eP, type SitePublished as eQ, type SiteUnpublished as eR, type SiteMarkedAsTemplate as eS, type SiteMarkedAsWixSite as eT, type ServiceProvisioned as eU, type ServiceRemoved as eV, type SiteRenamed as eW, type SiteHardDeleted as eX, type NamespaceChanged as eY, type StudioAssigned as eZ, type StudioUnassigned as e_, type SendMerchantOrderReceivedNotificationRequest as ea, type SendMerchantOrderReceivedNotificationResponse as eb, type SendCancelRefundEmailRequest as ec, type SendCancelRefundEmailResponse as ed, type SendRefundEmailRequest as ee, type SendRefundEmailResponse as ef, type SendFulfillmentEmailRequest as eg, type SendFulfillmentEmailResponse as eh, type SendMerchantOrderReceivedPushRequest as ei, type SendMerchantOrderReceivedPushResponse as ej, type PreviewEmailByTypeRequest as ek, type PreviewEmailByTypeResponse as el, type PreviewRefundEmailRequest as em, type RefundDetails as en, type RefundItem as eo, type LineItemRefund as ep, type AdditionalFeeRefund as eq, type ShippingRefund as er, type PreviewRefundEmailResponse as es, type PreviewCancelEmailRequest as et, type PreviewCancelEmailResponse as eu, type PreviewCancelRefundEmailRequest as ev, type PreviewCancelRefundEmailResponse as ew, type PreviewBuyerPaymentsReceivedEmailRequest as ex, type PreviewBuyerPaymentsReceivedEmailResponse as ey, type PreviewBuyerConfirmationEmailRequest as ez, type RecordManuallyCollectedPaymentApplicationErrors as f, type MembershipPaymentDetails as f$, type SitePurgedExternally as f0, type OdeditorAssigned as f1, type OdeditorUnassigned as f2, type PicassoAssigned as f3, type PicassoUnassigned as f4, type WixelAssigned as f5, type WixelUnassigned as f6, type StudioTwoAssigned as f7, type StudioTwoUnassigned as f8, type UserDomainMediaEnabled as f9, type RefundabilityAdditionalRefundabilityInfoOneOf as fA, type CreatePaymentGatewayOrderRequest as fB, type ChargedBy as fC, type ChargeMembershipsRequest as fD, type MembershipChargeItem as fE, type MembershipName as fF, type ServiceProperties as fG, type ChargeMembershipsResponse as fH, type TriggerRefundRequest as fI, type RefundSideEffects as fJ, type RestockInfo as fK, type RestockItem as fL, type OrderTransactions as fM, type Payment as fN, type PaymentPaymentDetailsOneOf as fO, type PaymentReceiptInfoOneOf as fP, type RegularPaymentDetails as fQ, type RegularPaymentDetailsPaymentMethodDetailsOneOf as fR, type CreditCardPaymentMethodDetails as fS, type AuthorizationDetails as fT, type AuthorizationCapture as fU, type AuthorizationActionFailureDetails as fV, type AuthorizationVoid as fW, type V1ScheduledAction as fX, type Chargeback as fY, type PaymentMethodName as fZ, type GiftCardPaymentDetails as f_, type UserDomainMediaDisabled as fa, type EditorlessAssigned as fb, type EditorlessUnassigned as fc, type HasCustomEmailConfigurationsRequest as fd, type HasCustomEmailConfigurationsResponse as fe, type AddToAutomationMigrationPopulationRequest as ff, type AddToAutomationMigrationPopulationResponse as fg, type IsInAutomationMigrationPopulationRequest as fh, type IsInAutomationMigrationPopulationResponse as fi, type PreparePaymentCollectionRequest as fj, type RedirectUrls as fk, type DelayedCaptureSettings as fl, type Duration as fm, type GetPaymentCollectabilityStatusRequest as fn, type RecordManuallyCollectedPaymentRequest as fo, type UserDefinedPaymentMethodName as fp, type UserDefinedPaymentMethodNameKindOneOf as fq, type RecordManuallyCollectedPaymentResponse as fr, type MarkOrderAsPaidRequest as fs, type BulkMarkOrdersAsPaidRequest as ft, type BulkOrderResult as fu, type ItemMetadata as fv, type ApplicationError as fw, type BulkActionMetadata as fx, type GetRefundabilityStatusRequest as fy, type Refundability as fz, type PaymentCollectionMarkOrderAsPaidOptions as g, type DraftOrderDiffsRecipientUpdateInfoOneOf as g$, type WixReceiptInfo as g0, type ExternalReceiptInfo as g1, type CashRoundingDetails as g2, type Refund as g3, type RefundTransaction as g4, type RefundStatusInfo as g5, type AggregatedRefundSummary as g6, type RefundItemsBreakdown as g7, type LineItemRefundSummary as g8, type CalculateRefundRequest as g9, type PlatformQuery as gA, type PlatformQueryPagingMethodOneOf as gB, type Sorting as gC, type PlatformPaging as gD, type CursorPaging as gE, type InternalQueryOrdersResponse as gF, type PlatformPagingMetadata as gG, type Cursors as gH, type QueryOrderRequest as gI, type QueryOrderResponse as gJ, type SearchOrdersRequest as gK, type CursorSearch as gL, type CursorSearchPagingMethodOneOf as gM, type CursorPagingMetadata as gN, type CreateOrderRequest as gO, type OrderCreationSettings as gP, type OrderCreationSettingsEditableByOneOf as gQ, type OrderCreateNotifications as gR, type CreateOrderResponse as gS, type UpdateOrderRequest as gT, type UpdateOrderResponse as gU, type BulkUpdateOrdersRequest as gV, type CommitDeltasRequest as gW, type DraftOrderDiffs as gX, type DraftOrderDiffsShippingUpdateInfoOneOf as gY, type DraftOrderDiffsBuyerUpdateInfoOneOf as gZ, type DraftOrderDiffsBillingUpdateInfoOneOf as g_, type CalculateRefundItemRequest as ga, type CalculateRefundResponse as gb, type CalculateRefundItemResponse as gc, type VoidAuthorizedPaymentsRequest as gd, type CaptureAuthorizedPaymentsRequest as ge, type ChargeSavedPaymentMethodRequest as gf, type ChargeSavedPaymentMethodResponse as gg, type UpdateInternalDocumentsEvent as gh, type UpdateInternalDocumentsEventOperationOneOf as gi, type InternalDocument as gj, type InternalDocumentUpdateOperation as gk, type DeleteByIdsOperation as gl, type DeleteByFilterOperation as gm, type InternalDocumentUpdateByFilterOperation as gn, type InternalUpdateExistingOperation as go, type VersionedDocumentUpdateOperation as gp, type VersionedDeleteByIdsOperation as gq, type VersionedDocumentId as gr, type TriggerReindexRequest as gs, type TriggerReindexResponse as gt, type TriggerReindexOrderRequest as gu, type DiffmatokyPayload as gv, type ErrorInformation as gw, type GetOrderRequest as gx, type GetOrderResponse as gy, type InternalQueryOrdersRequest as gz, type PaymentCollectionMarkOrderAsPaidApplicationErrors as h, type MarkAsFulfilledRequest as h$, type V1LineItemDelta as h0, type V1LineItemDeltaDeltaOneOf as h1, type CommitDeltasResponse as h2, type ArchiveOrderRequest as h3, type ArchiveOrderResponse as h4, type BulkArchiveOrdersRequest as h5, type BulkArchiveOrdersResponse as h6, type BulkArchiveOrdersByFilterRequest as h7, type BulkArchiveOrdersByFilterResponse as h8, type UnArchiveOrderRequest as h9, type DownloadLinkSent as hA, type TrackingNumberAdded as hB, type TrackingNumberEdited as hC, type TrackingLinkAdded as hD, type ShippingConfirmationEmailSent as hE, type InvoiceAdded as hF, type InvoiceSent as hG, type FulfillerEmailSent as hH, type ShippingAddressEdited as hI, type EmailEdited as hJ, type PickupReadyEmailSent as hK, type OrderPartiallyPaid as hL, type OrderPending as hM, type OrderRejected as hN, type AddInternalActivityResponse as hO, type AddActivityRequest as hP, type PublicActivityContentOneOf as hQ, type AddActivitiesRequest as hR, type UpdateActivityRequest as hS, type DeleteActivityRequest as hT, type UpdateLineItemsDescriptionLinesRequest as hU, type LineItemUpdate as hV, type UpdateLineItemsDescriptionLinesResponse as hW, type MarkOrderAsSeenByHumanRequest as hX, type MarkOrderAsSeenByHumanResponse as hY, type CancelOrderRequest as hZ, type UpdateOrderStatusRequest as h_, type UnArchiveOrderResponse as ha, type BulkUnArchiveOrdersRequest as hb, type BulkUnArchiveOrdersResponse as hc, type BulkUnArchiveOrdersByFilterRequest as hd, type BulkUnArchiveOrdersByFilterResponse as he, type UpdateBuyerInfoRequest as hf, type BuyerInfoUpdate as hg, type UpdateBuyerInfoResponse as hh, type UpdateBuyerEmailRequest as hi, type UpdateBuyerEmailResponse as hj, type UpdateOrderShippingAddressRequest as hk, type UpdateOrderShippingAddressResponse as hl, type UpdateBillingContactDetailsRequest as hm, type UpdateBillingContactDetailsResponse as hn, type UpdateOrderLineItemRequest as ho, type UpdateOrderLineItemsRequest as hp, type MaskedOrderLineItem as hq, type UpdateOrderLineItemsResponse as hr, type AddInternalActivityRequest as hs, type InternalActivity as ht, type InternalActivityContentOneOf as hu, type OrderPlaced as hv, type OrderPaid as hw, type OrderFulfilled as hx, type OrderNotFulfilled as hy, type OrderCanceled as hz, type BulkMarkOrdersAsPaidResponse as i, type ItemizedFee as i$, type MarkAsFulfilledResponse as i0, type BulkMarkAsFulfilledRequest as i1, type BulkMarkAsFulfilledResponse as i2, type BulkMarkAsFulfilledByFilterRequest as i3, type BulkMarkAsFulfilledByFilterResponse as i4, type MarkAsUnfulfilledRequest as i5, type MarkAsUnfulfilledResponse as i6, type BulkMarkAsUnfulfilledRequest as i7, type BulkMarkAsUnfulfilledResponse as i8, type BulkMarkAsUnfulfilledByFilterRequest as i9, type TaskAction as iA, type TaskActionActionOneOf as iB, type Complete as iC, type Cancel as iD, type Reschedule as iE, type InvoiceSentEvent as iF, type IdAndVersion as iG, type InvoiceFields as iH, type Customer as iI, type Email as iJ, type QuotesAddress as iK, type AddressDescription as iL, type Phone as iM, type Company as iN, type CommonAddress as iO, type CommonAddressStreetOneOf as iP, type Subdivision as iQ, type StandardDetails as iR, type InvoiceDates as iS, type LineItems as iT, type LineItem as iU, type BigDecimalWrapper as iV, type LineItemTax as iW, type Source as iX, type LineItemMetaData as iY, type Locale as iZ, type TotalPrice as i_, type BulkMarkAsUnfulfilledByFilterResponse as ia, type BulkSetBusinessLocationRequest as ib, type BulkSetBusinessLocationResponse as ic, type BulkSetBusinessLocationResult as id, type V1MarkOrderAsPaidRequest as ie, type V1MarkOrderAsPaidResponse as ig, type V1BulkMarkOrdersAsPaidRequest as ih, type V1BulkMarkOrdersAsPaidResponse as ii, type V1CreatePaymentGatewayOrderRequest as ij, type V1CreatePaymentGatewayOrderResponse as ik, type GetShipmentsRequest as il, type GetShipmentsResponse as im, type AggregateOrdersRequest as io, type DecrementItemsQuantityRequest as ip, type DecrementData as iq, type DecrementItemsQuantityResponse as ir, type BulkUpdateOrderTagsRequest as is, type TagsTags as it, type TagsTagList as iu, type BulkUpdateOrderTagsResult as iv, type SendOrderUpdatedDomainEventRequest as iw, type SendOrderUpdatedDomainEventResponse as ix, type Task as iy, type TaskKey as iz, type GetRefundabilityStatusResponse as j, type MembershipPaymentStatusWithLiterals as j$, type Discount as j0, type DiscountOneDiscountTypeOneOf as j1, type CalculatedTaxes as j2, type CalculatedTax as j3, type Payments as j4, type InvoicesPayment as j5, type MetaData as j6, type InvoiceDynamicPriceTotals as j7, type CustomFieldValue as j8, type Value as j9, type AdditionalFeeSourceWithLiterals as jA, type OrderActionTypeWithLiterals as jB, type SpecificItemsCouponBehaviorWithLiterals as jC, type ChargeTypeWithLiterals as jD, type DeltaPaymentOptionTypeWithLiterals as jE, type InventoryActionWithLiterals as jF, type WebhookIdentityTypeWithLiterals as jG, type PreviewEmailTypeWithLiterals as jH, type StateWithLiterals as jI, type SiteCreatedContextWithLiterals as jJ, type NamespaceWithLiterals as jK, type DeleteStatusWithLiterals as jL, type OriginWithLiterals as jM, type ScheduledActionWithLiterals as jN, type DurationUnitWithLiterals as jO, type PaymentCollectabilityStatusWithLiterals as jP, type PredefinedPaymentMethodWithLiterals as jQ, type RefundableStatusWithLiterals as jR, type NonRefundableReasonWithLiterals as jS, type ManuallyRefundableReasonWithLiterals as jT, type RestockTypeWithLiterals as jU, type TransactionStatusWithLiterals as jV, type AuthorizationCaptureStatusWithLiterals as jW, type AuthorizationVoidStatusWithLiterals as jX, type ReasonWithLiterals as jY, type ActionTypeWithLiterals as jZ, type ChargebackStatusWithLiterals as j_, type Deposit as ja, type BaseEventMetadata as jb, type EventMetadata as jc, type AccountInfoMetadata as jd, type OrderSearchSpec as je, utils as jf, type DescriptionLineTypeWithLiterals as jg, type DimensionsUnitWithLiterals as jh, type ItemTypePresetWithLiterals as ji, type PaymentOptionTypeWithLiterals as jj, type JurisdictionTypeWithLiterals as jk, type SubscriptionFrequencyWithLiterals as jl, type AdjustmentTypeWithLiterals as jm, type TaxableAddressTypeWithLiterals as jn, type PaymentStatusWithLiterals as jo, type FulfillmentStatusWithLiterals as jp, type WeightUnitWithLiterals as jq, type VatTypeWithLiterals as jr, type PickupMethodWithLiterals as js, type DiscountTypeWithLiterals as jt, type DiscountReasonWithLiterals as ju, type LineItemQuantityChangeTypeWithLiterals as jv, type ActivityTypeWithLiterals as jw, type OrderActivityTypeEnumActivityTypeWithLiterals as jx, type AttributionSourceWithLiterals as jy, type ChannelTypeWithLiterals as jz, type PaymentCollectionCreatePaymentGatewayOrderOptions as k, type RefundStatusWithLiterals as k0, type VersioningModeWithLiterals as k1, type SortOrderWithLiterals as k2, type OrderApprovalStrategyWithLiterals as k3, type PlacementWithLiterals as k4, type SubdivisionTypeWithLiterals as k5, type SourceTypeWithLiterals as k6, type CustomFieldGroupWithLiterals as k7, type ValueTypeWithLiterals as k8, type DepositTypeWithLiterals as k9, bulkUpdateOrders as kA, updateOrderLineItem as kB, addActivity as kC, addActivities as kD, updateActivity as kE, deleteActivity as kF, cancelOrder as kG, updateOrderStatus as kH, aggregateOrders as kI, bulkUpdateOrderTags as kJ, type InvoiceStatusWithLiterals as ka, type CommonSearchWithEntityContext as kb, onOrderApproved as kc, onOrderCanceled as kd, onOrderCommitted as ke, onOrderCreated as kf, onOrderFulfilled as kg, onOrderPaymentStatusUpdated as kh, onOrderUpdated as ki, importOrder as kj, setOrderNumberCounter as kk, bulkDeleteImportedOrders as kl, preparePaymentCollection as km, getPaymentCollectabilityStatus as kn, recordManuallyCollectedPayment as ko, paymentCollectionMarkOrderAsPaid as kp, paymentCollectionBulkMarkOrdersAsPaid as kq, getRefundabilityStatus as kr, paymentCollectionCreatePaymentGatewayOrder as ks, chargeMemberships as kt, triggerRefund as ku, voidAuthorizedPayments as kv, captureAuthorizedPayments as kw, getOrder as kx, createOrder as ky, updateOrder 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 };
|
|
9510
|
+
export { type CancelOrderResponse as $, type MaskedOrder as A, type BulkDeleteImportedOrdersOptions 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 SetOrderNumberCounterResponse as a, MembershipPaymentStatus 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, AdditionalFeeSource as aA, OrderActionType as aB, SpecificItemsCouponBehavior as aC, ChargeType as aD, DeltaPaymentOptionType as aE, InventoryAction as aF, WebhookIdentityType as aG, PreviewEmailType as aH, State as aI, SiteCreatedContext as aJ, Namespace as aK, DeleteStatus as aL, Origin as aM, ScheduledAction as aN, DurationUnit as aO, PaymentCollectabilityStatus as aP, PredefinedPaymentMethod as aQ, RefundableStatus as aR, NonRefundableReason as aS, ManuallyRefundableReason as aT, RestockType as aU, TransactionStatus as aV, AuthorizationCaptureStatus as aW, AuthorizationVoidStatus as aX, Reason as aY, ActionType as aZ, ChargebackStatus 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, AdjustmentType as al, TaxableAddressType as am, PaymentStatusEnumPaymentStatus as an, FulfillmentStatus as ao, WeightUnit as ap, VatType as aq, PickupMethod as ar, OrderStatus as as, DiscountType as at, DiscountReason as au, LineItemQuantityChangeType as av, ActivityType as aw, OrderActivityTypeEnumActivityType as ax, AttributionSource as ay, ChannelType as az, type BulkDeleteImportedOrdersResponse as b, type ShippingRegion as b$, PaymentStatus as b0, RefundStatus as b1, VersioningMode as b2, SortOrder as b3, OrderApprovalStrategy as b4, Placement as b5, SubdivisionType as b6, SourceType as b7, CustomFieldGroup as b8, ValueType as b9, type BillingAdjustment as bA, type BillingAdjustmentPriceSummary as bB, type PriceDescription as bC, type LocationAndQuantity as bD, type TaxableAddress as bE, type TaxableAddressTaxableAddressDataOneOf as bF, type ExtendedFields as bG, type ModifierGroup as bH, type TranslatableString as bI, type ItemModifier as bJ, type BuyerInfo as bK, type BuyerInfoIdOneOf as bL, type CurrencyConversionDetails as bM, type PriceSummary as bN, type AddressWithContact as bO, type Address as bP, type StreetAddress as bQ, type AddressLocation as bR, type FullAddressContactDetails as bS, type VatId as bT, type V1ShippingInformation as bU, type DeliveryLogistics as bV, type DeliveryLogisticsAddressOneOf as bW, type PickupDetails as bX, type PickupAddress as bY, type DeliveryTimeSlot as bZ, type ShippingPrice as b_, DepositType as ba, InvoiceStatus as bb, type OrderLineItem as bc, type ProductName as bd, type CatalogReference as be, type DescriptionLine as bf, type DescriptionLineValueOneOf as bg, type DescriptionLineDescriptionLineValueOneOf as bh, type DescriptionLineName as bi, type PlainTextValue as bj, type Color as bk, type FocalPoint as bl, type PhysicalProperties as bm, type Dimensions as bn, type ItemType as bo, type ItemTypeItemTypeDataOneOf as bp, type RestockLocation as bq, type ItemTaxFullDetails as br, type LineItemTaxInfo as bs, type LineItemTaxBreakdown as bt, type DigitalFile as bu, type SubscriptionInfo as bv, type SubscriptionTitle as bw, type SubscriptionDescription as bx, type SubscriptionSettings as by, type FreeTrialPeriod as bz, type PreparePaymentCollectionOptions as c, type ExternalReceipt as c$, type TaxSummary as c0, type OrderTaxInfo as c1, type OrderTaxBreakdown as c2, type AppliedDiscount as c3, type AppliedDiscountDiscountSourceOneOf as c4, type Coupon as c5, type MerchantDiscount as c6, type MerchantDiscountMerchantDiscountReasonOneOf as c7, type DiscountRule as c8, type DiscountRuleName as c9, type ShippingInformationChange as cA, type ShippingInformation as cB, type SavedPaymentMethod as cC, type AuthorizedPaymentCreated as cD, type AuthorizedPaymentCaptured as cE, type AuthorizedPaymentVoided as cF, type RefundInitiated as cG, type RefundedPayment as cH, type RefundedPaymentKindOneOf as cI, type RegularPaymentRefund as cJ, type GiftCardPaymentRefund as cK, type MembershipPaymentRefund as cL, type PaymentRefunded as cM, type PaymentRefundFailed as cN, type RefundedAsStoreCredit as cO, type PaymentPending as cP, type PaymentPendingPaymentDetailsOneOf as cQ, type RegularPayment as cR, type RegularPaymentPaymentMethodDetailsOneOf as cS, type CreditCardDetails as cT, type PaymentCanceled as cU, type PaymentCanceledPaymentDetailsOneOf as cV, type PaymentDeclined as cW, type PaymentDeclinedPaymentDetailsOneOf as cX, type ReceiptCreated as cY, type ReceiptCreatedReceiptInfoOneOf as cZ, type WixReceipt as c_, type LineItemDiscount as ca, type ItemCombination as cb, type ItemCombinationLineItem as cc, type Activity as cd, type ActivityContentOneOf as ce, type CustomActivity as cf, type MerchantComment as cg, type OrderRefunded as ch, type OrderCreatedFromExchange as ci, type NewExchangeOrderCreated as cj, type LineItemExchangeData as ck, type DraftOrderChangesApplied as cl, type OrderChange as cm, type OrderChangeValueOneOf as cn, type LineItemChanges as co, type LineItemQuantityChange as cp, type LineItemPriceChange as cq, type LineItemProductNameChange as cr, type LineItemDescriptionLineChange as cs, type LineItemModifiersChange as ct, type ManagedLineItem as cu, type ManagedDiscount as cv, type TranslatedValue as cw, type LineItemAmount as cx, type ManagedAdditionalFee as cy, type TotalPriceChange as cz, type PreparePaymentCollectionResponse as d, type SendBuyerConfirmationEmailRequest as d$, type ReceiptSent as d0, type ReceiptSentReceiptInfoOneOf as d1, type ChargebackCreated as d2, type ChargebackReversed as d3, type CreatedBy as d4, type CreatedByStringOneOf as d5, type ChannelInfo as d6, type CustomField as d7, type BalanceSummary as d8, type Balance as d9, type OrderDeltasCommitted as dA, type CommittedDiffs as dB, type CommittedDiffsShippingUpdateInfoOneOf as dC, type ItemChangedDetails as dD, type OrderLineItemChangedDetails as dE, type LineItemDelta as dF, type LineItemDeltaDeltaOneOf as dG, type AppliedDiscountDelta as dH, type AppliedDiscountDeltaDeltaOneOf as dI, type AdditionalFeeDelta as dJ, type AdditionalFeeDeltaDeltaOneOf as dK, type DraftOrderCommitSettings as dL, type InventoryUpdateDetails as dM, type ImportOrderRequest as dN, type SetOrderNumberCounterRequest as dO, type BulkDeleteImportedOrdersRequest as dP, type DomainEvent as dQ, type DomainEventBodyOneOf as dR, type EntityCreatedEvent as dS, type RestoreInfo as dT, type EntityUpdatedEvent as dU, type EntityDeletedEvent as dV, type ActionEvent as dW, type MessageEnvelope as dX, type IdentificationData as dY, type IdentificationDataIdOneOf as dZ, type AccountInfo as d_, type CashRounding as da, type AdditionalFee as db, type FulfillmentStatusesAggregate as dc, type Tags as dd, type TagList as de, type Location as df, type OrderSettings as dg, type OrderSettingsAllowedActionsOneOf as dh, type OrderSettingsEditableByOneOf as di, type CustomAllowedActions as dj, type OwnerApps as dk, type FormInfo as dl, type FormIdentifier as dm, type PlatformFeeSummary as dn, type PlatformFee as dp, type OrderApproved as dq, type OrdersExperiments as dr, type OrderRejectedEventOrderRejected as ds, type OrderItemsRestocked as dt, type V1RestockItem as du, type OrderImported as dv, type ImportedOrderDeleted as dw, type PaymentStatusUpdated as dx, type FulfillmentStatusUpdated as dy, type OrderCanceledEventOrderCanceled as dz, type PreparePaymentCollectionApplicationErrors as e, type StudioUnassigned as e$, type SendBuyerConfirmationEmailResponse as e0, type SendBuyerPaymentsReceivedEmailRequest as e1, type SendBuyerPaymentsReceivedEmailResponse as e2, type SendBuyerPickupConfirmationEmailRequest as e3, type SendBuyerPickupConfirmationEmailResponse as e4, type BulkSendBuyerPickupConfirmationEmailsRequest as e5, type BulkSendBuyerPickupConfirmationEmailsResponse as e6, type SendBuyerShippingConfirmationEmailRequest as e7, type SendBuyerShippingConfirmationEmailResponse as e8, type BulkSendBuyerShippingConfirmationEmailsRequest as e9, type PreviewBuyerConfirmationEmailRequest as eA, type PreviewBuyerConfirmationEmailResponse as eB, type PreviewBuyerPickupConfirmationEmailRequest as eC, type PreviewBuyerPickupConfirmationEmailResponse as eD, type PreviewShippingConfirmationEmailRequest as eE, type PreviewShippingConfirmationEmailResponse as eF, type PreviewResendDownloadLinksEmailRequest as eG, type PreviewResendDownloadLinksEmailResponse as eH, type Empty as eI, type MetaSiteSpecialEvent as eJ, type MetaSiteSpecialEventPayloadOneOf as eK, type Asset as eL, type SiteCreated as eM, type SiteTransferred as eN, type SiteDeleted as eO, type DeleteContext as eP, type SiteUndeleted as eQ, type SitePublished as eR, type SiteUnpublished as eS, type SiteMarkedAsTemplate as eT, type SiteMarkedAsWixSite as eU, type ServiceProvisioned as eV, type ServiceRemoved as eW, type SiteRenamed as eX, type SiteHardDeleted as eY, type NamespaceChanged as eZ, type StudioAssigned as e_, type BulkSendBuyerShippingConfirmationEmailsResponse as ea, type SendMerchantOrderReceivedNotificationRequest as eb, type SendMerchantOrderReceivedNotificationResponse as ec, type SendCancelRefundEmailRequest as ed, type SendCancelRefundEmailResponse as ee, type SendRefundEmailRequest as ef, type SendRefundEmailResponse as eg, type SendFulfillmentEmailRequest as eh, type SendFulfillmentEmailResponse as ei, type SendMerchantOrderReceivedPushRequest as ej, type SendMerchantOrderReceivedPushResponse as ek, type PreviewEmailByTypeRequest as el, type PreviewEmailByTypeResponse as em, type PreviewRefundEmailRequest as en, type RefundDetails as eo, type RefundItem as ep, type LineItemRefund as eq, type AdditionalFeeRefund as er, type ShippingRefund as es, type PreviewRefundEmailResponse as et, type PreviewCancelEmailRequest as eu, type PreviewCancelEmailResponse as ev, type PreviewCancelRefundEmailRequest as ew, type PreviewCancelRefundEmailResponse as ex, type PreviewBuyerPaymentsReceivedEmailRequest as ey, type PreviewBuyerPaymentsReceivedEmailResponse as ez, type RecordManuallyCollectedPaymentApplicationErrors as f, type GiftCardPaymentDetails as f$, type SiteUrlChanged as f0, type SitePurgedExternally as f1, type OdeditorAssigned as f2, type OdeditorUnassigned as f3, type PicassoAssigned as f4, type PicassoUnassigned as f5, type WixelAssigned as f6, type WixelUnassigned as f7, type StudioTwoAssigned as f8, type StudioTwoUnassigned as f9, type Refundability as fA, type RefundabilityAdditionalRefundabilityInfoOneOf as fB, type CreatePaymentGatewayOrderRequest as fC, type ChargedBy as fD, type ChargeMembershipsRequest as fE, type MembershipChargeItem as fF, type MembershipName as fG, type ServiceProperties as fH, type ChargeMembershipsResponse as fI, type TriggerRefundRequest as fJ, type RefundSideEffects as fK, type RestockInfo as fL, type RestockItem as fM, type OrderTransactions as fN, type Payment as fO, type PaymentPaymentDetailsOneOf as fP, type PaymentReceiptInfoOneOf as fQ, type RegularPaymentDetails as fR, type RegularPaymentDetailsPaymentMethodDetailsOneOf as fS, type CreditCardPaymentMethodDetails as fT, type AuthorizationDetails as fU, type AuthorizationCapture as fV, type AuthorizationActionFailureDetails as fW, type AuthorizationVoid as fX, type V1ScheduledAction as fY, type Chargeback as fZ, type PaymentMethodName as f_, type UserDomainMediaEnabled as fa, type UserDomainMediaDisabled as fb, type EditorlessAssigned as fc, type EditorlessUnassigned as fd, type HasCustomEmailConfigurationsRequest as fe, type HasCustomEmailConfigurationsResponse as ff, type AddToAutomationMigrationPopulationRequest as fg, type AddToAutomationMigrationPopulationResponse as fh, type IsInAutomationMigrationPopulationRequest as fi, type IsInAutomationMigrationPopulationResponse as fj, type PreparePaymentCollectionRequest as fk, type RedirectUrls as fl, type DelayedCaptureSettings as fm, type Duration as fn, type GetPaymentCollectabilityStatusRequest as fo, type RecordManuallyCollectedPaymentRequest as fp, type UserDefinedPaymentMethodName as fq, type UserDefinedPaymentMethodNameKindOneOf as fr, type RecordManuallyCollectedPaymentResponse as fs, type MarkOrderAsPaidRequest as ft, type BulkMarkOrdersAsPaidRequest as fu, type BulkOrderResult as fv, type ItemMetadata as fw, type ApplicationError as fx, type BulkActionMetadata as fy, type GetRefundabilityStatusRequest as fz, type PaymentCollectionMarkOrderAsPaidOptions as g, type DraftOrderDiffsBillingUpdateInfoOneOf as g$, type MembershipPaymentDetails as g0, type WixReceiptInfo as g1, type ExternalReceiptInfo as g2, type CashRoundingDetails as g3, type Refund as g4, type RefundTransaction as g5, type RefundStatusInfo as g6, type AggregatedRefundSummary as g7, type RefundItemsBreakdown as g8, type LineItemRefundSummary as g9, type InternalQueryOrdersRequest as gA, type PlatformQuery as gB, type PlatformQueryPagingMethodOneOf as gC, type Sorting as gD, type PlatformPaging as gE, type CursorPaging as gF, type InternalQueryOrdersResponse as gG, type PlatformPagingMetadata as gH, type Cursors as gI, type QueryOrderRequest as gJ, type QueryOrderResponse as gK, type SearchOrdersRequest as gL, type CursorSearch as gM, type CursorSearchPagingMethodOneOf as gN, type CursorPagingMetadata as gO, type CreateOrderRequest as gP, type OrderCreationSettings as gQ, type OrderCreationSettingsEditableByOneOf as gR, type OrderCreateNotifications as gS, type CreateOrderResponse as gT, type UpdateOrderRequest as gU, type UpdateOrderResponse as gV, type BulkUpdateOrdersRequest as gW, type CommitDeltasRequest as gX, type DraftOrderDiffs as gY, type DraftOrderDiffsShippingUpdateInfoOneOf as gZ, type DraftOrderDiffsBuyerUpdateInfoOneOf as g_, 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 UpdateInternalDocumentsEvent as gi, type UpdateInternalDocumentsEventOperationOneOf as gj, type InternalDocument as gk, type InternalDocumentUpdateOperation as gl, type DeleteByIdsOperation as gm, type DeleteByFilterOperation as gn, type InternalDocumentUpdateByFilterOperation as go, type InternalUpdateExistingOperation as gp, type VersionedDocumentUpdateOperation as gq, type VersionedDeleteByIdsOperation as gr, type VersionedDocumentId as gs, type TriggerReindexRequest as gt, type TriggerReindexResponse as gu, type TriggerReindexOrderRequest as gv, type DiffmatokyPayload as gw, type ErrorInformation as gx, type GetOrderRequest as gy, type GetOrderResponse as gz, type PaymentCollectionMarkOrderAsPaidApplicationErrors as h, type UpdateOrderStatusRequest as h$, type DraftOrderDiffsRecipientUpdateInfoOneOf as h0, type V1LineItemDelta as h1, type V1LineItemDeltaDeltaOneOf as h2, type CommitDeltasResponse as h3, type ArchiveOrderRequest as h4, type ArchiveOrderResponse as h5, type BulkArchiveOrdersRequest as h6, type BulkArchiveOrdersResponse as h7, type BulkArchiveOrdersByFilterRequest as h8, type BulkArchiveOrdersByFilterResponse as h9, type OrderCanceled as hA, type DownloadLinkSent as hB, type TrackingNumberAdded as hC, type TrackingNumberEdited as hD, type TrackingLinkAdded as hE, type ShippingConfirmationEmailSent as hF, type InvoiceAdded as hG, type InvoiceSent as hH, type FulfillerEmailSent as hI, type ShippingAddressEdited as hJ, type EmailEdited as hK, type PickupReadyEmailSent as hL, type OrderPartiallyPaid as hM, type OrderPending as hN, type OrderRejected as hO, type AddInternalActivityResponse as hP, type AddActivityRequest as hQ, type PublicActivityContentOneOf as hR, type AddActivitiesRequest as hS, type UpdateActivityRequest as hT, type DeleteActivityRequest as hU, type UpdateLineItemsDescriptionLinesRequest as hV, type LineItemUpdate as hW, type UpdateLineItemsDescriptionLinesResponse as hX, type MarkOrderAsSeenByHumanRequest as hY, type MarkOrderAsSeenByHumanResponse as hZ, type CancelOrderRequest as h_, type UnArchiveOrderRequest as ha, type UnArchiveOrderResponse as hb, type BulkUnArchiveOrdersRequest as hc, type BulkUnArchiveOrdersResponse as hd, type BulkUnArchiveOrdersByFilterRequest as he, type BulkUnArchiveOrdersByFilterResponse as hf, type UpdateBuyerInfoRequest as hg, type BuyerInfoUpdate as hh, type UpdateBuyerInfoResponse as hi, type UpdateBuyerEmailRequest as hj, type UpdateBuyerEmailResponse as hk, type UpdateOrderShippingAddressRequest as hl, type UpdateOrderShippingAddressResponse as hm, type UpdateBillingContactDetailsRequest as hn, type UpdateBillingContactDetailsResponse as ho, type UpdateOrderLineItemRequest as hp, type UpdateOrderLineItemsRequest as hq, type MaskedOrderLineItem as hr, type UpdateOrderLineItemsResponse as hs, type AddInternalActivityRequest as ht, type InternalActivity as hu, type InternalActivityContentOneOf as hv, type OrderPlaced as hw, type OrderPaid as hx, type OrderFulfilled as hy, type OrderNotFulfilled as hz, type BulkMarkOrdersAsPaidResponse as i, type TotalPrice as i$, type MarkAsFulfilledRequest as i0, type MarkAsFulfilledResponse as i1, type BulkMarkAsFulfilledRequest as i2, type BulkMarkAsFulfilledResponse as i3, type BulkMarkAsFulfilledByFilterRequest as i4, type BulkMarkAsFulfilledByFilterResponse as i5, type MarkAsUnfulfilledRequest as i6, type MarkAsUnfulfilledResponse as i7, type BulkMarkAsUnfulfilledRequest as i8, type BulkMarkAsUnfulfilledResponse as i9, type TaskKey as iA, type TaskAction as iB, type TaskActionActionOneOf as iC, type Complete as iD, type Cancel as iE, type Reschedule as iF, type InvoiceSentEvent as iG, type IdAndVersion as iH, type InvoiceFields as iI, type Customer as iJ, type Email as iK, type QuotesAddress as iL, type AddressDescription as iM, type Phone as iN, type Company as iO, type CommonAddress as iP, type CommonAddressStreetOneOf as iQ, type Subdivision as iR, type StandardDetails as iS, type InvoiceDates as iT, type LineItems as iU, type LineItem as iV, type BigDecimalWrapper as iW, type LineItemTax as iX, type Source as iY, type LineItemMetaData as iZ, type Locale as i_, type BulkMarkAsUnfulfilledByFilterRequest as ia, type BulkMarkAsUnfulfilledByFilterResponse as ib, type BulkSetBusinessLocationRequest as ic, type BulkSetBusinessLocationResponse as id, type BulkSetBusinessLocationResult as ie, type V1MarkOrderAsPaidRequest as ig, type V1MarkOrderAsPaidResponse as ih, type V1BulkMarkOrdersAsPaidRequest as ii, type V1BulkMarkOrdersAsPaidResponse as ij, type V1CreatePaymentGatewayOrderRequest as ik, type V1CreatePaymentGatewayOrderResponse as il, type GetShipmentsRequest as im, type GetShipmentsResponse as io, type AggregateOrdersRequest as ip, type DecrementItemsQuantityRequest as iq, type DecrementData as ir, type DecrementItemsQuantityResponse as is, type BulkUpdateOrderTagsRequest as it, type TagsTags as iu, type TagsTagList as iv, type BulkUpdateOrderTagsResult as iw, type SendOrderUpdatedDomainEventRequest as ix, type SendOrderUpdatedDomainEventResponse as iy, type Task as iz, type GetRefundabilityStatusResponse as j, type ChargebackStatusWithLiterals as j$, type ItemizedFee as j0, type Discount as j1, type DiscountOneDiscountTypeOneOf as j2, type CalculatedTaxes as j3, type CalculatedTax as j4, type Payments as j5, type InvoicesPayment as j6, type MetaData as j7, type InvoiceDynamicPriceTotals as j8, type CustomFieldValue as j9, type ChannelTypeWithLiterals as jA, type AdditionalFeeSourceWithLiterals as jB, type OrderActionTypeWithLiterals as jC, type SpecificItemsCouponBehaviorWithLiterals as jD, type ChargeTypeWithLiterals as jE, type DeltaPaymentOptionTypeWithLiterals as jF, type InventoryActionWithLiterals as jG, type WebhookIdentityTypeWithLiterals as jH, type PreviewEmailTypeWithLiterals as jI, type StateWithLiterals as jJ, type SiteCreatedContextWithLiterals as jK, type NamespaceWithLiterals as jL, type DeleteStatusWithLiterals as jM, type OriginWithLiterals as jN, type ScheduledActionWithLiterals as jO, type DurationUnitWithLiterals as jP, type PaymentCollectabilityStatusWithLiterals as jQ, type PredefinedPaymentMethodWithLiterals as jR, type RefundableStatusWithLiterals as jS, type NonRefundableReasonWithLiterals as jT, type ManuallyRefundableReasonWithLiterals as jU, type RestockTypeWithLiterals as jV, type TransactionStatusWithLiterals as jW, type AuthorizationCaptureStatusWithLiterals as jX, type AuthorizationVoidStatusWithLiterals as jY, type ReasonWithLiterals as jZ, type ActionTypeWithLiterals as j_, type Value as ja, type Deposit as jb, type BaseEventMetadata as jc, type EventMetadata as jd, type AccountInfoMetadata as je, type OrderSearchSpec as jf, utils as jg, type DescriptionLineTypeWithLiterals as jh, type DimensionsUnitWithLiterals as ji, type ItemTypePresetWithLiterals as jj, type PaymentOptionTypeWithLiterals as jk, type JurisdictionTypeWithLiterals as jl, type SubscriptionFrequencyWithLiterals as jm, type AdjustmentTypeWithLiterals as jn, type TaxableAddressTypeWithLiterals as jo, type PaymentStatusEnumPaymentStatusWithLiterals as jp, type FulfillmentStatusWithLiterals as jq, type WeightUnitWithLiterals as jr, type VatTypeWithLiterals as js, type PickupMethodWithLiterals as jt, type DiscountTypeWithLiterals as ju, type DiscountReasonWithLiterals as jv, type LineItemQuantityChangeTypeWithLiterals as jw, type ActivityTypeWithLiterals as jx, type OrderActivityTypeEnumActivityTypeWithLiterals as jy, type AttributionSourceWithLiterals as jz, type PaymentCollectionCreatePaymentGatewayOrderOptions as k, type MembershipPaymentStatusWithLiterals as k0, type PaymentStatusWithLiterals as k1, type RefundStatusWithLiterals as k2, type VersioningModeWithLiterals as k3, type SortOrderWithLiterals as k4, type OrderApprovalStrategyWithLiterals as k5, type PlacementWithLiterals as k6, type SubdivisionTypeWithLiterals as k7, type SourceTypeWithLiterals as k8, type CustomFieldGroupWithLiterals as k9, createOrder as kA, updateOrder as kB, bulkUpdateOrders as kC, updateOrderLineItem as kD, addActivity as kE, addActivities as kF, updateActivity as kG, deleteActivity as kH, cancelOrder as kI, updateOrderStatus as kJ, aggregateOrders as kK, bulkUpdateOrderTags as kL, type ValueTypeWithLiterals as ka, type DepositTypeWithLiterals as kb, type InvoiceStatusWithLiterals as kc, type CommonSearchWithEntityContext as kd, onOrderApproved as ke, onOrderCanceled as kf, onOrderCommitted as kg, onOrderCreated as kh, onOrderFulfilled as ki, onOrderPaymentStatusUpdated as kj, onOrderUpdated as kk, importOrder as kl, setOrderNumberCounter as km, bulkDeleteImportedOrders as kn, preparePaymentCollection as ko, getPaymentCollectabilityStatus as kp, recordManuallyCollectedPayment as kq, paymentCollectionMarkOrderAsPaid as kr, paymentCollectionBulkMarkOrdersAsPaid as ks, getRefundabilityStatus as kt, paymentCollectionCreatePaymentGatewayOrder as ku, chargeMemberships as kv, triggerRefund as kw, voidAuthorizedPayments as kx, captureAuthorizedPayments as ky, getOrder 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, S as SetOrderNumberCounterOptions, a as SetOrderNumberCounterResponse, B as BulkDeleteImportedOrdersOptions, 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 { dZ as AccountInfo, jd as AccountInfoMetadata, dV as ActionEvent, aZ as ActionType, jZ as ActionTypeWithLiterals, cc as Activity, cd as ActivityContentOneOf, aw as ActivityType, jw as ActivityTypeWithLiterals, hR as AddActivitiesRequest, hP as AddActivityRequest, hs as AddInternalActivityRequest, hO as AddInternalActivityResponse, ff as AddToAutomationMigrationPopulationRequest, fg as AddToAutomationMigrationPopulationResponse, da as AdditionalFee, dI as AdditionalFeeDelta, dJ as AdditionalFeeDeltaDeltaOneOf, eq as AdditionalFeeRefund, aA as AdditionalFeeSource, jA as AdditionalFeeSourceWithLiterals, bO as Address, iL as AddressDescription, bQ as AddressLocation, bN as AddressWithContact, al as AdjustmentType, jm as AdjustmentTypeWithLiterals, io as AggregateOrdersRequest, g6 as AggregatedRefundSummary, fw as ApplicationError, c2 as AppliedDiscount, dG as AppliedDiscountDelta, dH as AppliedDiscountDeltaDeltaOneOf, c3 as AppliedDiscountDiscountSourceOneOf, h3 as ArchiveOrderRequest, h4 as ArchiveOrderResponse, eK as Asset, ay as AttributionSource, jy as AttributionSourceWithLiterals, fV as AuthorizationActionFailureDetails, fU as AuthorizationCapture, aW as AuthorizationCaptureStatus, jW as AuthorizationCaptureStatusWithLiterals, fT as AuthorizationDetails, fW as AuthorizationVoid, aX as AuthorizationVoidStatus, jX as AuthorizationVoidStatusWithLiterals, cD as AuthorizedPaymentCaptured, cC as AuthorizedPaymentCreated, cE as AuthorizedPaymentVoided, d8 as Balance, d7 as BalanceSummary, jb as BaseEventMetadata, iV as BigDecimalWrapper, bz as BillingAdjustment, bA as BillingAdjustmentPriceSummary, fx as BulkActionMetadata, h7 as BulkArchiveOrdersByFilterRequest, h8 as BulkArchiveOrdersByFilterResponse, h5 as BulkArchiveOrdersRequest, h6 as BulkArchiveOrdersResponse, dO as BulkDeleteImportedOrdersRequest, i3 as BulkMarkAsFulfilledByFilterRequest, i4 as BulkMarkAsFulfilledByFilterResponse, i1 as BulkMarkAsFulfilledRequest, i2 as BulkMarkAsFulfilledResponse, i9 as BulkMarkAsUnfulfilledByFilterRequest, ia as BulkMarkAsUnfulfilledByFilterResponse, i7 as BulkMarkAsUnfulfilledRequest, i8 as BulkMarkAsUnfulfilledResponse, ft as BulkMarkOrdersAsPaidRequest, fu as BulkOrderResult, e4 as BulkSendBuyerPickupConfirmationEmailsRequest, e5 as BulkSendBuyerPickupConfirmationEmailsResponse, e8 as BulkSendBuyerShippingConfirmationEmailsRequest, e9 as BulkSendBuyerShippingConfirmationEmailsResponse, ib as BulkSetBusinessLocationRequest, ic as BulkSetBusinessLocationResponse, id as BulkSetBusinessLocationResult, hd as BulkUnArchiveOrdersByFilterRequest, he as BulkUnArchiveOrdersByFilterResponse, hb as BulkUnArchiveOrdersRequest, hc as BulkUnArchiveOrdersResponse, is as BulkUpdateOrderTagsRequest, iv as BulkUpdateOrderTagsResult, gV as BulkUpdateOrdersRequest, bJ as BuyerInfo, bK as BuyerInfoIdOneOf, hg as BuyerInfoUpdate, ga as CalculateRefundItemRequest, gc as CalculateRefundItemResponse, g9 as CalculateRefundRequest, gb as CalculateRefundResponse, j3 as CalculatedTax, j2 as CalculatedTaxes, iD as Cancel, hZ as CancelOrderRequest, ge as CaptureAuthorizedPaymentsRequest, d9 as CashRounding, g2 as CashRoundingDetails, bd as CatalogReference, d5 as ChannelInfo, az as ChannelType, jz as ChannelTypeWithLiterals, fD as ChargeMembershipsRequest, fH as ChargeMembershipsResponse, gf as ChargeSavedPaymentMethodRequest, gg as ChargeSavedPaymentMethodResponse, aD as ChargeType, jD as ChargeTypeWithLiterals, fY as Chargeback, d1 as ChargebackCreated, d2 as ChargebackReversed, a_ as ChargebackStatus, j_ as ChargebackStatusWithLiterals, fC as ChargedBy, bj as Color, gW as CommitDeltasRequest, h2 as CommitDeltasResponse, dA as CommittedDiffs, dB as CommittedDiffsShippingUpdateInfoOneOf, iO as CommonAddress, iP as CommonAddressStreetOneOf, kb as CommonSearchWithEntityContext, iN as Company, iC as Complete, c4 as Coupon, gO as CreateOrderRequest, gS as CreateOrderResponse, fB as CreatePaymentGatewayOrderRequest, d3 as CreatedBy, d4 as CreatedByStringOneOf, cS as CreditCardDetails, fS as CreditCardPaymentMethodDetails, bL as CurrencyConversionDetails, gE as CursorPaging, gN as CursorPagingMetadata, gL as CursorSearch, gM as CursorSearchPagingMethodOneOf, gH as Cursors, ce as CustomActivity, di as CustomAllowedActions, d6 as CustomField, b7 as CustomFieldGroup, k7 as CustomFieldGroupWithLiterals, j8 as CustomFieldValue, iI as Customer, iq as DecrementData, ip as DecrementItemsQuantityRequest, ir as DecrementItemsQuantityResponse, fl as DelayedCaptureSettings, hT as DeleteActivityRequest, gm as DeleteByFilterOperation, gl as DeleteByIdsOperation, eO as DeleteContext, aL as DeleteStatus, jL as DeleteStatusWithLiterals, bU as DeliveryLogistics, bV as DeliveryLogisticsAddressOneOf, bY as DeliveryTimeSlot, aE as DeltaPaymentOptionType, jE as DeltaPaymentOptionTypeWithLiterals, ja as Deposit, b9 as DepositType, k9 as DepositTypeWithLiterals, be as DescriptionLine, bg as DescriptionLineDescriptionLineValueOneOf, bh as DescriptionLineName, af as DescriptionLineType, jg as DescriptionLineTypeWithLiterals, bf as DescriptionLineValueOneOf, gv as DiffmatokyPayload, bt as DigitalFile, bm as Dimensions, ag as DimensionsUnit, jh as DimensionsUnitWithLiterals, j0 as Discount, j1 as DiscountOneDiscountTypeOneOf, au as DiscountReason, ju as DiscountReasonWithLiterals, c7 as DiscountRule, c8 as DiscountRuleName, at as DiscountType, jt as DiscountTypeWithLiterals, dP as DomainEvent, dQ as DomainEventBodyOneOf, hA as DownloadLinkSent, ck as DraftOrderChangesApplied, dK as DraftOrderCommitSettings, gX as DraftOrderDiffs, g_ as DraftOrderDiffsBillingUpdateInfoOneOf, gZ as DraftOrderDiffsBuyerUpdateInfoOneOf, g$ as DraftOrderDiffsRecipientUpdateInfoOneOf, gY as DraftOrderDiffsShippingUpdateInfoOneOf, fm as Duration, aO as DurationUnit, jO as DurationUnitWithLiterals, fb as EditorlessAssigned, fc as EditorlessUnassigned, iJ as Email, hJ as EmailEdited, eH as Empty, dR as EntityCreatedEvent, dU as EntityDeletedEvent, dT as EntityUpdatedEvent, gw as ErrorInformation, jc as EventMetadata, bF as ExtendedFields, c_ as ExternalReceipt, g1 as ExternalReceiptInfo, bk as FocalPoint, dl as FormIdentifier, dk as FormInfo, by as FreeTrialPeriod, hH as FulfillerEmailSent, ao as FulfillmentStatus, dx as FulfillmentStatusUpdated, jp as FulfillmentStatusWithLiterals, db as FulfillmentStatusesAggregate, bR as FullAddressContactDetails, gx as GetOrderRequest, gy as GetOrderResponse, fn as GetPaymentCollectabilityStatusRequest, fy as GetRefundabilityStatusRequest, il as GetShipmentsRequest, im as GetShipmentsResponse, f_ as GiftCardPaymentDetails, cJ as GiftCardPaymentRefund, fd as HasCustomEmailConfigurationsRequest, fe as HasCustomEmailConfigurationsResponse, iG as IdAndVersion, dX as IdentificationData, dY as IdentificationDataIdOneOf, dM as ImportOrderRequest, dv as ImportedOrderDeleted, ht as InternalActivity, hu as InternalActivityContentOneOf, gj as InternalDocument, gn as InternalDocumentUpdateByFilterOperation, gk as InternalDocumentUpdateOperation, gz as InternalQueryOrdersRequest, gF as InternalQueryOrdersResponse, go as InternalUpdateExistingOperation, aF as InventoryAction, jF as InventoryActionWithLiterals, dL as InventoryUpdateDetails, hF as InvoiceAdded, iS as InvoiceDates, j7 as InvoiceDynamicPriceTotals, iH as InvoiceFields, hG as InvoiceSent, iF as InvoiceSentEvent, ba as InvoiceStatus, ka as InvoiceStatusWithLiterals, j5 as InvoicesPayment, fh as IsInAutomationMigrationPopulationRequest, fi as IsInAutomationMigrationPopulationResponse, dC as ItemChangedDetails, ca as ItemCombination, cb as ItemCombinationLineItem, fv as ItemMetadata, bI as ItemModifier, bq as ItemTaxFullDetails, bn as ItemType, bo as ItemTypeItemTypeDataOneOf, ah as ItemTypePreset, ji as ItemTypePresetWithLiterals, i$ as ItemizedFee, aj as JurisdictionType, jk as JurisdictionTypeWithLiterals, iU as LineItem, cw as LineItemAmount, cn as LineItemChanges, dE as LineItemDelta, dF as LineItemDeltaDeltaOneOf, cr as LineItemDescriptionLineChange, c9 as LineItemDiscount, cj as LineItemExchangeData, iY as LineItemMetaData, cs as LineItemModifiersChange, cp as LineItemPriceChange, cq as LineItemProductNameChange, co as LineItemQuantityChange, av as LineItemQuantityChangeType, jv as LineItemQuantityChangeTypeWithLiterals, ep as LineItemRefund, g8 as LineItemRefundSummary, iW as LineItemTax, bs as LineItemTaxBreakdown, br as LineItemTaxInfo, hV as LineItemUpdate, iT as LineItems, iZ as Locale, de as Location, bC as LocationAndQuantity, cx as ManagedAdditionalFee, cu as ManagedDiscount, ct as ManagedLineItem, aT as ManuallyRefundableReason, jT as ManuallyRefundableReasonWithLiterals, h$ as MarkAsFulfilledRequest, i0 as MarkAsFulfilledResponse, i5 as MarkAsUnfulfilledRequest, i6 as MarkAsUnfulfilledResponse, fs as MarkOrderAsPaidRequest, hX as MarkOrderAsSeenByHumanRequest, hY as MarkOrderAsSeenByHumanResponse, hq as MaskedOrderLineItem, fE as MembershipChargeItem, fF as MembershipName, f$ as MembershipPaymentDetails, cK as MembershipPaymentRefund, a$ as MembershipPaymentStatus, j$ as MembershipPaymentStatusWithLiterals, cf as MerchantComment, c5 as MerchantDiscount, c6 as MerchantDiscountMerchantDiscountReasonOneOf, dW as MessageEnvelope, j6 as MetaData, eI as MetaSiteSpecialEvent, eJ as MetaSiteSpecialEventPayloadOneOf, bG as ModifierGroup, aK as Namespace, eY as NamespaceChanged, jK as NamespaceWithLiterals, ci as NewExchangeOrderCreated, aS as NonRefundableReason, jS as NonRefundableReasonWithLiterals, f1 as OdeditorAssigned, f2 as OdeditorUnassigned, aB as OrderActionType, jB as OrderActionTypeWithLiterals, ax as OrderActivityTypeEnumActivityType, jx as OrderActivityTypeEnumActivityTypeWithLiterals, b3 as OrderApprovalStrategy, k3 as OrderApprovalStrategyWithLiterals, dp as OrderApproved, hz as OrderCanceled, dy as OrderCanceledEventOrderCanceled, cl as OrderChange, cm as OrderChangeValueOneOf, gR as OrderCreateNotifications, ch as OrderCreatedFromExchange, gP as OrderCreationSettings, gQ as OrderCreationSettingsEditableByOneOf, dz as OrderDeltasCommitted, hx as OrderFulfilled, du as OrderImported, ds as OrderItemsRestocked, bb as OrderLineItem, dD as OrderLineItemChangedDetails, hy as OrderNotFulfilled, hw as OrderPaid, hL as OrderPartiallyPaid, hM as OrderPending, hv as OrderPlaced, cg as OrderRefunded, hN as OrderRejected, dr as OrderRejectedEventOrderRejected, je as OrderSearchSpec, df as OrderSettings, dg as OrderSettingsAllowedActionsOneOf, dh as OrderSettingsEditableByOneOf, as as OrderStatus, c1 as OrderTaxBreakdown, c0 as OrderTaxInfo, fM as OrderTransactions, dq as OrdersExperiments, aM as Origin, jM as OriginWithLiterals, dj as OwnerApps, fN as Payment, cT as PaymentCanceled, cU as PaymentCanceledPaymentDetailsOneOf, aP as PaymentCollectabilityStatus, jP as PaymentCollectabilityStatusWithLiterals, cV as PaymentDeclined, cW as PaymentDeclinedPaymentDetailsOneOf, fZ as PaymentMethodName, ai as PaymentOptionType, jj as PaymentOptionTypeWithLiterals, fO as PaymentPaymentDetailsOneOf, cO as PaymentPending, cP as PaymentPendingPaymentDetailsOneOf, fP as PaymentReceiptInfoOneOf, cM as PaymentRefundFailed, cL as PaymentRefunded, an as PaymentStatus, dw as PaymentStatusUpdated, jo as PaymentStatusWithLiterals, j4 as Payments, iM as Phone, bl as PhysicalProperties, f3 as PicassoAssigned, f4 as PicassoUnassigned, bX as PickupAddress, bW as PickupDetails, ar as PickupMethod, js as PickupMethodWithLiterals, hK as PickupReadyEmailSent, b4 as Placement, k4 as PlacementWithLiterals, bi as PlainTextValue, dn as PlatformFee, dm as PlatformFeeSummary, gD as PlatformPaging, gG as PlatformPagingMetadata, gA as PlatformQuery, gB as PlatformQueryPagingMethodOneOf, aQ as PredefinedPaymentMethod, jQ as PredefinedPaymentMethodWithLiterals, fj as PreparePaymentCollectionRequest, ez as PreviewBuyerConfirmationEmailRequest, eA as PreviewBuyerConfirmationEmailResponse, ex as PreviewBuyerPaymentsReceivedEmailRequest, ey as PreviewBuyerPaymentsReceivedEmailResponse, eB as PreviewBuyerPickupConfirmationEmailRequest, eC as PreviewBuyerPickupConfirmationEmailResponse, et as PreviewCancelEmailRequest, eu as PreviewCancelEmailResponse, ev as PreviewCancelRefundEmailRequest, ew as PreviewCancelRefundEmailResponse, ek as PreviewEmailByTypeRequest, el as PreviewEmailByTypeResponse, aH as PreviewEmailType, jH as PreviewEmailTypeWithLiterals, em as PreviewRefundEmailRequest, es as PreviewRefundEmailResponse, eF as PreviewResendDownloadLinksEmailRequest, eG as PreviewResendDownloadLinksEmailResponse, eD as PreviewShippingConfirmationEmailRequest, eE as PreviewShippingConfirmationEmailResponse, bB as PriceDescription, bM as PriceSummary, bc as ProductName, hQ as PublicActivityContentOneOf, gI as QueryOrderRequest, gJ as QueryOrderResponse, iK as QuotesAddress, aY as Reason, jY as ReasonWithLiterals, cX as ReceiptCreated, cY as ReceiptCreatedReceiptInfoOneOf, c$ as ReceiptSent, d0 as ReceiptSentReceiptInfoOneOf, fo as RecordManuallyCollectedPaymentRequest, fr as RecordManuallyCollectedPaymentResponse, fk as RedirectUrls, g3 as Refund, en as RefundDetails, cF as RefundInitiated, eo as RefundItem, g7 as RefundItemsBreakdown, fJ as RefundSideEffects, b0 as RefundStatus, g5 as RefundStatusInfo, k0 as RefundStatusWithLiterals, g4 as RefundTransaction, fz as Refundability, fA as RefundabilityAdditionalRefundabilityInfoOneOf, aR as RefundableStatus, jR as RefundableStatusWithLiterals, cN as RefundedAsStoreCredit, cG as RefundedPayment, cH as RefundedPaymentKindOneOf, cQ as RegularPayment, fQ as RegularPaymentDetails, fR as RegularPaymentDetailsPaymentMethodDetailsOneOf, cR as RegularPaymentPaymentMethodDetailsOneOf, cI as RegularPaymentRefund, iE as Reschedule, fK as RestockInfo, fL as RestockItem, bp as RestockLocation, aU as RestockType, jU as RestockTypeWithLiterals, dS as RestoreInfo, cB as SavedPaymentMethod, aN as ScheduledAction, jN as ScheduledActionWithLiterals, gK as SearchOrdersRequest, d_ as SendBuyerConfirmationEmailRequest, d$ as SendBuyerConfirmationEmailResponse, e0 as SendBuyerPaymentsReceivedEmailRequest, e1 as SendBuyerPaymentsReceivedEmailResponse, e2 as SendBuyerPickupConfirmationEmailRequest, e3 as SendBuyerPickupConfirmationEmailResponse, e6 as SendBuyerShippingConfirmationEmailRequest, e7 as SendBuyerShippingConfirmationEmailResponse, ec as SendCancelRefundEmailRequest, ed as SendCancelRefundEmailResponse, eg as SendFulfillmentEmailRequest, eh as SendFulfillmentEmailResponse, ea as SendMerchantOrderReceivedNotificationRequest, eb as SendMerchantOrderReceivedNotificationResponse, ei as SendMerchantOrderReceivedPushRequest, ej as SendMerchantOrderReceivedPushResponse, iw as SendOrderUpdatedDomainEventRequest, ix as SendOrderUpdatedDomainEventResponse, ee as SendRefundEmailRequest, ef as SendRefundEmailResponse, fG as ServiceProperties, eU as ServiceProvisioned, eV as ServiceRemoved, dN as SetOrderNumberCounterRequest, hI as ShippingAddressEdited, hE as ShippingConfirmationEmailSent, cA as ShippingInformation, cz as ShippingInformationChange, bZ as ShippingPrice, er as ShippingRefund, b_ as ShippingRegion, eL as SiteCreated, aJ as SiteCreatedContext, jJ as SiteCreatedContextWithLiterals, eN as SiteDeleted, eX as SiteHardDeleted, eS as SiteMarkedAsTemplate, eT as SiteMarkedAsWixSite, eQ as SitePublished, f0 as SitePurgedExternally, eW as SiteRenamed, eM as SiteTransferred, eP as SiteUndeleted, eR as SiteUnpublished, e$ as SiteUrlChanged, b2 as SortOrder, k2 as SortOrderWithLiterals, gC as Sorting, iX as Source, b6 as SourceType, k6 as SourceTypeWithLiterals, aC as SpecificItemsCouponBehavior, jC as SpecificItemsCouponBehaviorWithLiterals, iR as StandardDetails, aI as State, jI as StateWithLiterals, bP as StreetAddress, eZ as StudioAssigned, f7 as StudioTwoAssigned, f8 as StudioTwoUnassigned, e_ as StudioUnassigned, iQ as Subdivision, b5 as SubdivisionType, k5 as SubdivisionTypeWithLiterals, bw as SubscriptionDescription, ak as SubscriptionFrequency, jl as SubscriptionFrequencyWithLiterals, bu as SubscriptionInfo, bx as SubscriptionSettings, bv as SubscriptionTitle, dd as TagList, dc as Tags, iu as TagsTagList, it as TagsTags, iy as Task, iA as TaskAction, iB as TaskActionActionOneOf, iz as TaskKey, b$ as TaxSummary, bD as TaxableAddress, bE as TaxableAddressTaxableAddressDataOneOf, am as TaxableAddressType, jn as TaxableAddressTypeWithLiterals, i_ as TotalPrice, cy as TotalPriceChange, hD as TrackingLinkAdded, hB as TrackingNumberAdded, hC as TrackingNumberEdited, aV as TransactionStatus, jV as TransactionStatusWithLiterals, bH as TranslatableString, cv as TranslatedValue, fI as TriggerRefundRequest, gu as TriggerReindexOrderRequest, gs as TriggerReindexRequest, gt as TriggerReindexResponse, h9 as UnArchiveOrderRequest, ha as UnArchiveOrderResponse, hS as UpdateActivityRequest, hm as UpdateBillingContactDetailsRequest, hn as UpdateBillingContactDetailsResponse, hi as UpdateBuyerEmailRequest, hj as UpdateBuyerEmailResponse, hf as UpdateBuyerInfoRequest, hh as UpdateBuyerInfoResponse, gh as UpdateInternalDocumentsEvent, gi as UpdateInternalDocumentsEventOperationOneOf, hU as UpdateLineItemsDescriptionLinesRequest, hW as UpdateLineItemsDescriptionLinesResponse, ho as UpdateOrderLineItemRequest, hp as UpdateOrderLineItemsRequest, hr as UpdateOrderLineItemsResponse, gT as UpdateOrderRequest, gU as UpdateOrderResponse, hk as UpdateOrderShippingAddressRequest, hl as UpdateOrderShippingAddressResponse, h_ as UpdateOrderStatusRequest, fp as UserDefinedPaymentMethodName, fq as UserDefinedPaymentMethodNameKindOneOf, fa as UserDomainMediaDisabled, f9 as UserDomainMediaEnabled, ih as V1BulkMarkOrdersAsPaidRequest, ii as V1BulkMarkOrdersAsPaidResponse, ij as V1CreatePaymentGatewayOrderRequest, ik as V1CreatePaymentGatewayOrderResponse, h0 as V1LineItemDelta, h1 as V1LineItemDeltaDeltaOneOf, ie as V1MarkOrderAsPaidRequest, ig as V1MarkOrderAsPaidResponse, dt as V1RestockItem, fX as V1ScheduledAction, bT as V1ShippingInformation, j9 as Value, b8 as ValueType, k8 as ValueTypeWithLiterals, bS as VatId, aq as VatType, jr as VatTypeWithLiterals, gq as VersionedDeleteByIdsOperation, gr as VersionedDocumentId, gp as VersionedDocumentUpdateOperation, b1 as VersioningMode, k1 as VersioningModeWithLiterals, gd as VoidAuthorizedPaymentsRequest, aG as WebhookIdentityType, jG as WebhookIdentityTypeWithLiterals, ap as WeightUnit, jq as WeightUnitWithLiterals, cZ as WixReceipt, g0 as WixReceiptInfo, f5 as WixelAssigned, f6 as WixelUnassigned, jf as utils } from './ecom-v1-order-orders.universal-UePQMlea.mjs';
|
|
2
|
+
import { O as Order, I as ImportOrderResponse, S as SetOrderNumberCounterOptions, a as SetOrderNumberCounterResponse, B as BulkDeleteImportedOrdersOptions, 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-BUB6Je7V.mjs';
|
|
3
|
+
export { d_ as AccountInfo, je as AccountInfoMetadata, dW as ActionEvent, aZ as ActionType, j_ as ActionTypeWithLiterals, cd as Activity, ce as ActivityContentOneOf, aw as ActivityType, jx as ActivityTypeWithLiterals, hS as AddActivitiesRequest, hQ as AddActivityRequest, ht as AddInternalActivityRequest, hP as AddInternalActivityResponse, fg as AddToAutomationMigrationPopulationRequest, fh as AddToAutomationMigrationPopulationResponse, db as AdditionalFee, dJ as AdditionalFeeDelta, dK as AdditionalFeeDeltaDeltaOneOf, er as AdditionalFeeRefund, aA as AdditionalFeeSource, jB as AdditionalFeeSourceWithLiterals, bP as Address, iM as AddressDescription, bR as AddressLocation, bO as AddressWithContact, al as AdjustmentType, jn as AdjustmentTypeWithLiterals, ip as AggregateOrdersRequest, g7 as AggregatedRefundSummary, fx as ApplicationError, c3 as AppliedDiscount, dH as AppliedDiscountDelta, dI as AppliedDiscountDeltaDeltaOneOf, c4 as AppliedDiscountDiscountSourceOneOf, h4 as ArchiveOrderRequest, h5 as ArchiveOrderResponse, eL as Asset, ay as AttributionSource, jz as AttributionSourceWithLiterals, fW as AuthorizationActionFailureDetails, fV as AuthorizationCapture, aW as AuthorizationCaptureStatus, jX as AuthorizationCaptureStatusWithLiterals, fU as AuthorizationDetails, fX as AuthorizationVoid, aX as AuthorizationVoidStatus, jY as AuthorizationVoidStatusWithLiterals, cE as AuthorizedPaymentCaptured, cD as AuthorizedPaymentCreated, cF as AuthorizedPaymentVoided, d9 as Balance, d8 as BalanceSummary, jc as BaseEventMetadata, iW as BigDecimalWrapper, bA as BillingAdjustment, bB as BillingAdjustmentPriceSummary, fy as BulkActionMetadata, h8 as BulkArchiveOrdersByFilterRequest, h9 as BulkArchiveOrdersByFilterResponse, h6 as BulkArchiveOrdersRequest, h7 as BulkArchiveOrdersResponse, dP as BulkDeleteImportedOrdersRequest, i4 as BulkMarkAsFulfilledByFilterRequest, i5 as BulkMarkAsFulfilledByFilterResponse, i2 as BulkMarkAsFulfilledRequest, i3 as BulkMarkAsFulfilledResponse, ia as BulkMarkAsUnfulfilledByFilterRequest, ib as BulkMarkAsUnfulfilledByFilterResponse, i8 as BulkMarkAsUnfulfilledRequest, i9 as BulkMarkAsUnfulfilledResponse, fu as BulkMarkOrdersAsPaidRequest, fv as BulkOrderResult, e5 as BulkSendBuyerPickupConfirmationEmailsRequest, e6 as BulkSendBuyerPickupConfirmationEmailsResponse, e9 as BulkSendBuyerShippingConfirmationEmailsRequest, ea as BulkSendBuyerShippingConfirmationEmailsResponse, ic as BulkSetBusinessLocationRequest, id as BulkSetBusinessLocationResponse, ie as BulkSetBusinessLocationResult, he as BulkUnArchiveOrdersByFilterRequest, hf as BulkUnArchiveOrdersByFilterResponse, hc as BulkUnArchiveOrdersRequest, hd as BulkUnArchiveOrdersResponse, it as BulkUpdateOrderTagsRequest, iw as BulkUpdateOrderTagsResult, gW as BulkUpdateOrdersRequest, bK as BuyerInfo, bL as BuyerInfoIdOneOf, hh as BuyerInfoUpdate, gb as CalculateRefundItemRequest, gd as CalculateRefundItemResponse, ga as CalculateRefundRequest, gc as CalculateRefundResponse, j4 as CalculatedTax, j3 as CalculatedTaxes, iE as Cancel, h_ as CancelOrderRequest, gf as CaptureAuthorizedPaymentsRequest, da as CashRounding, g3 as CashRoundingDetails, be as CatalogReference, d6 as ChannelInfo, az as ChannelType, jA as ChannelTypeWithLiterals, fE as ChargeMembershipsRequest, fI as ChargeMembershipsResponse, gg as ChargeSavedPaymentMethodRequest, gh as ChargeSavedPaymentMethodResponse, aD as ChargeType, jE as ChargeTypeWithLiterals, fZ as Chargeback, d2 as ChargebackCreated, d3 as ChargebackReversed, a_ as ChargebackStatus, j$ as ChargebackStatusWithLiterals, fD as ChargedBy, bk as Color, gX as CommitDeltasRequest, h3 as CommitDeltasResponse, dB as CommittedDiffs, dC as CommittedDiffsShippingUpdateInfoOneOf, iP as CommonAddress, iQ as CommonAddressStreetOneOf, kd as CommonSearchWithEntityContext, iO as Company, iD as Complete, c5 as Coupon, gP as CreateOrderRequest, gT as CreateOrderResponse, fC as CreatePaymentGatewayOrderRequest, d4 as CreatedBy, d5 as CreatedByStringOneOf, cT as CreditCardDetails, fT as CreditCardPaymentMethodDetails, bM as CurrencyConversionDetails, gF as CursorPaging, gO as CursorPagingMetadata, gM as CursorSearch, gN as CursorSearchPagingMethodOneOf, gI as Cursors, cf as CustomActivity, dj as CustomAllowedActions, d7 as CustomField, b8 as CustomFieldGroup, k9 as CustomFieldGroupWithLiterals, j9 as CustomFieldValue, iJ as Customer, ir as DecrementData, iq as DecrementItemsQuantityRequest, is as DecrementItemsQuantityResponse, fm as DelayedCaptureSettings, hU as DeleteActivityRequest, gn as DeleteByFilterOperation, gm as DeleteByIdsOperation, eP as DeleteContext, aL as DeleteStatus, jM as DeleteStatusWithLiterals, bV as DeliveryLogistics, bW as DeliveryLogisticsAddressOneOf, bZ as DeliveryTimeSlot, aE as DeltaPaymentOptionType, jF as DeltaPaymentOptionTypeWithLiterals, jb as Deposit, ba as DepositType, kb as DepositTypeWithLiterals, bf as DescriptionLine, bh as DescriptionLineDescriptionLineValueOneOf, bi as DescriptionLineName, af as DescriptionLineType, jh as DescriptionLineTypeWithLiterals, bg as DescriptionLineValueOneOf, gw as DiffmatokyPayload, bu as DigitalFile, bn as Dimensions, ag as DimensionsUnit, ji as DimensionsUnitWithLiterals, j1 as Discount, j2 as DiscountOneDiscountTypeOneOf, au as DiscountReason, jv as DiscountReasonWithLiterals, c8 as DiscountRule, c9 as DiscountRuleName, at as DiscountType, ju as DiscountTypeWithLiterals, dQ as DomainEvent, dR as DomainEventBodyOneOf, hB as DownloadLinkSent, cl as DraftOrderChangesApplied, dL as DraftOrderCommitSettings, gY as DraftOrderDiffs, g$ as DraftOrderDiffsBillingUpdateInfoOneOf, g_ as DraftOrderDiffsBuyerUpdateInfoOneOf, h0 as DraftOrderDiffsRecipientUpdateInfoOneOf, gZ as DraftOrderDiffsShippingUpdateInfoOneOf, fn as Duration, aO as DurationUnit, jP as DurationUnitWithLiterals, fc as EditorlessAssigned, fd as EditorlessUnassigned, iK as Email, hK as EmailEdited, eI as Empty, dS as EntityCreatedEvent, dV as EntityDeletedEvent, dU as EntityUpdatedEvent, gx as ErrorInformation, jd as EventMetadata, bG as ExtendedFields, c$ as ExternalReceipt, g2 as ExternalReceiptInfo, bl as FocalPoint, dm as FormIdentifier, dl as FormInfo, bz as FreeTrialPeriod, hI as FulfillerEmailSent, ao as FulfillmentStatus, dy as FulfillmentStatusUpdated, jq as FulfillmentStatusWithLiterals, dc as FulfillmentStatusesAggregate, bS as FullAddressContactDetails, gy as GetOrderRequest, gz as GetOrderResponse, fo as GetPaymentCollectabilityStatusRequest, fz as GetRefundabilityStatusRequest, im as GetShipmentsRequest, io as GetShipmentsResponse, f$ as GiftCardPaymentDetails, cK as GiftCardPaymentRefund, fe as HasCustomEmailConfigurationsRequest, ff as HasCustomEmailConfigurationsResponse, iH as IdAndVersion, dY as IdentificationData, dZ as IdentificationDataIdOneOf, dN as ImportOrderRequest, dw as ImportedOrderDeleted, hu as InternalActivity, hv as InternalActivityContentOneOf, gk as InternalDocument, go as InternalDocumentUpdateByFilterOperation, gl as InternalDocumentUpdateOperation, gA as InternalQueryOrdersRequest, gG as InternalQueryOrdersResponse, gp as InternalUpdateExistingOperation, aF as InventoryAction, jG as InventoryActionWithLiterals, dM as InventoryUpdateDetails, hG as InvoiceAdded, iT as InvoiceDates, j8 as InvoiceDynamicPriceTotals, iI as InvoiceFields, hH as InvoiceSent, iG as InvoiceSentEvent, bb as InvoiceStatus, kc as InvoiceStatusWithLiterals, j6 as InvoicesPayment, fi as IsInAutomationMigrationPopulationRequest, fj as IsInAutomationMigrationPopulationResponse, dD as ItemChangedDetails, cb as ItemCombination, cc as ItemCombinationLineItem, fw as ItemMetadata, bJ as ItemModifier, br as ItemTaxFullDetails, bo as ItemType, bp as ItemTypeItemTypeDataOneOf, ah as ItemTypePreset, jj as ItemTypePresetWithLiterals, j0 as ItemizedFee, aj as JurisdictionType, jl as JurisdictionTypeWithLiterals, iV as LineItem, cx as LineItemAmount, co as LineItemChanges, dF as LineItemDelta, dG as LineItemDeltaDeltaOneOf, cs as LineItemDescriptionLineChange, ca as LineItemDiscount, ck as LineItemExchangeData, iZ as LineItemMetaData, ct as LineItemModifiersChange, cq as LineItemPriceChange, cr as LineItemProductNameChange, cp as LineItemQuantityChange, av as LineItemQuantityChangeType, jw as LineItemQuantityChangeTypeWithLiterals, eq as LineItemRefund, g9 as LineItemRefundSummary, iX as LineItemTax, bt as LineItemTaxBreakdown, bs as LineItemTaxInfo, hW as LineItemUpdate, iU as LineItems, i_ as Locale, df as Location, bD as LocationAndQuantity, cy as ManagedAdditionalFee, cv as ManagedDiscount, cu as ManagedLineItem, aT as ManuallyRefundableReason, jU as ManuallyRefundableReasonWithLiterals, i0 as MarkAsFulfilledRequest, i1 as MarkAsFulfilledResponse, i6 as MarkAsUnfulfilledRequest, i7 as MarkAsUnfulfilledResponse, ft as MarkOrderAsPaidRequest, hY as MarkOrderAsSeenByHumanRequest, hZ as MarkOrderAsSeenByHumanResponse, hr as MaskedOrderLineItem, fF as MembershipChargeItem, fG as MembershipName, g0 as MembershipPaymentDetails, cL as MembershipPaymentRefund, a$ as MembershipPaymentStatus, k0 as MembershipPaymentStatusWithLiterals, cg as MerchantComment, c6 as MerchantDiscount, c7 as MerchantDiscountMerchantDiscountReasonOneOf, dX as MessageEnvelope, j7 as MetaData, eJ as MetaSiteSpecialEvent, eK as MetaSiteSpecialEventPayloadOneOf, bH as ModifierGroup, aK as Namespace, eZ as NamespaceChanged, jL as NamespaceWithLiterals, cj as NewExchangeOrderCreated, aS as NonRefundableReason, jT as NonRefundableReasonWithLiterals, f2 as OdeditorAssigned, f3 as OdeditorUnassigned, aB as OrderActionType, jC as OrderActionTypeWithLiterals, ax as OrderActivityTypeEnumActivityType, jy as OrderActivityTypeEnumActivityTypeWithLiterals, b4 as OrderApprovalStrategy, k5 as OrderApprovalStrategyWithLiterals, dq as OrderApproved, hA as OrderCanceled, dz as OrderCanceledEventOrderCanceled, cm as OrderChange, cn as OrderChangeValueOneOf, gS as OrderCreateNotifications, ci as OrderCreatedFromExchange, gQ as OrderCreationSettings, gR as OrderCreationSettingsEditableByOneOf, dA as OrderDeltasCommitted, hy as OrderFulfilled, dv as OrderImported, dt as OrderItemsRestocked, bc as OrderLineItem, dE as OrderLineItemChangedDetails, hz as OrderNotFulfilled, hx as OrderPaid, hM as OrderPartiallyPaid, hN as OrderPending, hw as OrderPlaced, ch as OrderRefunded, hO as OrderRejected, ds as OrderRejectedEventOrderRejected, jf as OrderSearchSpec, dg as OrderSettings, dh as OrderSettingsAllowedActionsOneOf, di as OrderSettingsEditableByOneOf, as as OrderStatus, c2 as OrderTaxBreakdown, c1 as OrderTaxInfo, fN as OrderTransactions, dr as OrdersExperiments, aM as Origin, jN as OriginWithLiterals, dk as OwnerApps, fO as Payment, cU as PaymentCanceled, cV as PaymentCanceledPaymentDetailsOneOf, aP as PaymentCollectabilityStatus, jQ as PaymentCollectabilityStatusWithLiterals, cW as PaymentDeclined, cX as PaymentDeclinedPaymentDetailsOneOf, f_ as PaymentMethodName, ai as PaymentOptionType, jk as PaymentOptionTypeWithLiterals, fP as PaymentPaymentDetailsOneOf, cP as PaymentPending, cQ as PaymentPendingPaymentDetailsOneOf, fQ as PaymentReceiptInfoOneOf, cN as PaymentRefundFailed, cM as PaymentRefunded, b0 as PaymentStatus, an as PaymentStatusEnumPaymentStatus, jp as PaymentStatusEnumPaymentStatusWithLiterals, dx as PaymentStatusUpdated, k1 as PaymentStatusWithLiterals, j5 as Payments, iN as Phone, bm as PhysicalProperties, f4 as PicassoAssigned, f5 as PicassoUnassigned, bY as PickupAddress, bX as PickupDetails, ar as PickupMethod, jt as PickupMethodWithLiterals, hL as PickupReadyEmailSent, b5 as Placement, k6 as PlacementWithLiterals, bj as PlainTextValue, dp as PlatformFee, dn as PlatformFeeSummary, gE as PlatformPaging, gH as PlatformPagingMetadata, gB as PlatformQuery, gC as PlatformQueryPagingMethodOneOf, aQ as PredefinedPaymentMethod, jR as PredefinedPaymentMethodWithLiterals, fk as PreparePaymentCollectionRequest, eA as PreviewBuyerConfirmationEmailRequest, eB as PreviewBuyerConfirmationEmailResponse, ey as PreviewBuyerPaymentsReceivedEmailRequest, ez as PreviewBuyerPaymentsReceivedEmailResponse, eC as PreviewBuyerPickupConfirmationEmailRequest, eD as PreviewBuyerPickupConfirmationEmailResponse, eu as PreviewCancelEmailRequest, ev as PreviewCancelEmailResponse, ew as PreviewCancelRefundEmailRequest, ex as PreviewCancelRefundEmailResponse, el as PreviewEmailByTypeRequest, em as PreviewEmailByTypeResponse, aH as PreviewEmailType, jI as PreviewEmailTypeWithLiterals, en as PreviewRefundEmailRequest, et as PreviewRefundEmailResponse, eG as PreviewResendDownloadLinksEmailRequest, eH as PreviewResendDownloadLinksEmailResponse, eE as PreviewShippingConfirmationEmailRequest, eF as PreviewShippingConfirmationEmailResponse, bC as PriceDescription, bN as PriceSummary, bd as ProductName, hR as PublicActivityContentOneOf, gJ as QueryOrderRequest, gK as QueryOrderResponse, iL as QuotesAddress, aY as Reason, jZ as ReasonWithLiterals, cY as ReceiptCreated, cZ as ReceiptCreatedReceiptInfoOneOf, d0 as ReceiptSent, d1 as ReceiptSentReceiptInfoOneOf, fp as RecordManuallyCollectedPaymentRequest, fs as RecordManuallyCollectedPaymentResponse, fl as RedirectUrls, g4 as Refund, eo as RefundDetails, cG as RefundInitiated, ep as RefundItem, g8 as RefundItemsBreakdown, fK as RefundSideEffects, b1 as RefundStatus, g6 as RefundStatusInfo, k2 as RefundStatusWithLiterals, g5 as RefundTransaction, fA as Refundability, fB as RefundabilityAdditionalRefundabilityInfoOneOf, aR as RefundableStatus, jS as RefundableStatusWithLiterals, cO as RefundedAsStoreCredit, cH as RefundedPayment, cI as RefundedPaymentKindOneOf, cR as RegularPayment, fR as RegularPaymentDetails, fS as RegularPaymentDetailsPaymentMethodDetailsOneOf, cS as RegularPaymentPaymentMethodDetailsOneOf, cJ as RegularPaymentRefund, iF as Reschedule, fL as RestockInfo, fM as RestockItem, bq as RestockLocation, aU as RestockType, jV as RestockTypeWithLiterals, dT as RestoreInfo, cC as SavedPaymentMethod, aN as ScheduledAction, jO as ScheduledActionWithLiterals, gL as SearchOrdersRequest, d$ as SendBuyerConfirmationEmailRequest, e0 as SendBuyerConfirmationEmailResponse, e1 as SendBuyerPaymentsReceivedEmailRequest, e2 as SendBuyerPaymentsReceivedEmailResponse, e3 as SendBuyerPickupConfirmationEmailRequest, e4 as SendBuyerPickupConfirmationEmailResponse, e7 as SendBuyerShippingConfirmationEmailRequest, e8 as SendBuyerShippingConfirmationEmailResponse, ed as SendCancelRefundEmailRequest, ee as SendCancelRefundEmailResponse, eh as SendFulfillmentEmailRequest, ei as SendFulfillmentEmailResponse, eb as SendMerchantOrderReceivedNotificationRequest, ec as SendMerchantOrderReceivedNotificationResponse, ej as SendMerchantOrderReceivedPushRequest, ek as SendMerchantOrderReceivedPushResponse, ix as SendOrderUpdatedDomainEventRequest, iy as SendOrderUpdatedDomainEventResponse, ef as SendRefundEmailRequest, eg as SendRefundEmailResponse, fH as ServiceProperties, eV as ServiceProvisioned, eW as ServiceRemoved, dO as SetOrderNumberCounterRequest, hJ as ShippingAddressEdited, hF as ShippingConfirmationEmailSent, cB as ShippingInformation, cA as ShippingInformationChange, b_ as ShippingPrice, es as ShippingRefund, b$ as ShippingRegion, eM as SiteCreated, aJ as SiteCreatedContext, jK as SiteCreatedContextWithLiterals, eO as SiteDeleted, eY as SiteHardDeleted, eT as SiteMarkedAsTemplate, eU as SiteMarkedAsWixSite, eR as SitePublished, f1 as SitePurgedExternally, eX as SiteRenamed, eN as SiteTransferred, eQ as SiteUndeleted, eS as SiteUnpublished, f0 as SiteUrlChanged, b3 as SortOrder, k4 as SortOrderWithLiterals, gD as Sorting, iY as Source, b7 as SourceType, k8 as SourceTypeWithLiterals, aC as SpecificItemsCouponBehavior, jD as SpecificItemsCouponBehaviorWithLiterals, iS as StandardDetails, aI as State, jJ as StateWithLiterals, bQ as StreetAddress, e_ as StudioAssigned, f8 as StudioTwoAssigned, f9 as StudioTwoUnassigned, e$ as StudioUnassigned, iR as Subdivision, b6 as SubdivisionType, k7 as SubdivisionTypeWithLiterals, bx as SubscriptionDescription, ak as SubscriptionFrequency, jm as SubscriptionFrequencyWithLiterals, bv as SubscriptionInfo, by as SubscriptionSettings, bw as SubscriptionTitle, de as TagList, dd as Tags, iv as TagsTagList, iu as TagsTags, iz as Task, iB as TaskAction, iC as TaskActionActionOneOf, iA as TaskKey, c0 as TaxSummary, bE as TaxableAddress, bF as TaxableAddressTaxableAddressDataOneOf, am as TaxableAddressType, jo as TaxableAddressTypeWithLiterals, i$ as TotalPrice, cz as TotalPriceChange, hE as TrackingLinkAdded, hC as TrackingNumberAdded, hD as TrackingNumberEdited, aV as TransactionStatus, jW as TransactionStatusWithLiterals, bI as TranslatableString, cw as TranslatedValue, fJ as TriggerRefundRequest, gv as TriggerReindexOrderRequest, gt as TriggerReindexRequest, gu as TriggerReindexResponse, ha as UnArchiveOrderRequest, hb as UnArchiveOrderResponse, hT as UpdateActivityRequest, hn as UpdateBillingContactDetailsRequest, ho as UpdateBillingContactDetailsResponse, hj as UpdateBuyerEmailRequest, hk as UpdateBuyerEmailResponse, hg as UpdateBuyerInfoRequest, hi as UpdateBuyerInfoResponse, gi as UpdateInternalDocumentsEvent, gj as UpdateInternalDocumentsEventOperationOneOf, hV as UpdateLineItemsDescriptionLinesRequest, hX as UpdateLineItemsDescriptionLinesResponse, hp as UpdateOrderLineItemRequest, hq as UpdateOrderLineItemsRequest, hs as UpdateOrderLineItemsResponse, gU as UpdateOrderRequest, gV as UpdateOrderResponse, hl as UpdateOrderShippingAddressRequest, hm as UpdateOrderShippingAddressResponse, h$ as UpdateOrderStatusRequest, fq as UserDefinedPaymentMethodName, fr as UserDefinedPaymentMethodNameKindOneOf, fb as UserDomainMediaDisabled, fa as UserDomainMediaEnabled, ii as V1BulkMarkOrdersAsPaidRequest, ij as V1BulkMarkOrdersAsPaidResponse, ik as V1CreatePaymentGatewayOrderRequest, il as V1CreatePaymentGatewayOrderResponse, h1 as V1LineItemDelta, h2 as V1LineItemDeltaDeltaOneOf, ig as V1MarkOrderAsPaidRequest, ih as V1MarkOrderAsPaidResponse, du as V1RestockItem, fY as V1ScheduledAction, bU as V1ShippingInformation, ja as Value, b9 as ValueType, ka as ValueTypeWithLiterals, bT as VatId, aq as VatType, js as VatTypeWithLiterals, gr as VersionedDeleteByIdsOperation, gs as VersionedDocumentId, gq as VersionedDocumentUpdateOperation, b2 as VersioningMode, k3 as VersioningModeWithLiterals, ge as VoidAuthorizedPaymentsRequest, aG as WebhookIdentityType, jH as WebhookIdentityTypeWithLiterals, ap as WeightUnit, jr as WeightUnitWithLiterals, c_ as WixReceipt, g1 as WixReceiptInfo, f6 as WixelAssigned, f7 as WixelUnassigned, jg as utils } from './ecom-v1-order-orders.universal-BUB6Je7V.mjs';
|
|
4
4
|
|
|
5
5
|
/** @internal */
|
|
6
6
|
declare function importOrder$1(httpClient: HttpClient): ImportOrderSignature;
|
|
@@ -1735,19 +1735,19 @@ var TaxableAddressType = /* @__PURE__ */ ((TaxableAddressType2) => {
|
|
|
1735
1735
|
TaxableAddressType2["SHIPPING"] = "SHIPPING";
|
|
1736
1736
|
return TaxableAddressType2;
|
|
1737
1737
|
})(TaxableAddressType || {});
|
|
1738
|
-
var
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
return
|
|
1750
|
-
})(
|
|
1738
|
+
var PaymentStatusEnumPaymentStatus = /* @__PURE__ */ ((PaymentStatusEnumPaymentStatus2) => {
|
|
1739
|
+
PaymentStatusEnumPaymentStatus2["UNSPECIFIED"] = "UNSPECIFIED";
|
|
1740
|
+
PaymentStatusEnumPaymentStatus2["NOT_PAID"] = "NOT_PAID";
|
|
1741
|
+
PaymentStatusEnumPaymentStatus2["PAID"] = "PAID";
|
|
1742
|
+
PaymentStatusEnumPaymentStatus2["PARTIALLY_REFUNDED"] = "PARTIALLY_REFUNDED";
|
|
1743
|
+
PaymentStatusEnumPaymentStatus2["FULLY_REFUNDED"] = "FULLY_REFUNDED";
|
|
1744
|
+
PaymentStatusEnumPaymentStatus2["PENDING"] = "PENDING";
|
|
1745
|
+
PaymentStatusEnumPaymentStatus2["PARTIALLY_PAID"] = "PARTIALLY_PAID";
|
|
1746
|
+
PaymentStatusEnumPaymentStatus2["PENDING_MERCHANT"] = "PENDING_MERCHANT";
|
|
1747
|
+
PaymentStatusEnumPaymentStatus2["CANCELED"] = "CANCELED";
|
|
1748
|
+
PaymentStatusEnumPaymentStatus2["DECLINED"] = "DECLINED";
|
|
1749
|
+
return PaymentStatusEnumPaymentStatus2;
|
|
1750
|
+
})(PaymentStatusEnumPaymentStatus || {});
|
|
1751
1751
|
var FulfillmentStatus = /* @__PURE__ */ ((FulfillmentStatus2) => {
|
|
1752
1752
|
FulfillmentStatus2["NOT_FULFILLED"] = "NOT_FULFILLED";
|
|
1753
1753
|
FulfillmentStatus2["FULFILLED"] = "FULFILLED";
|
|
@@ -2145,6 +2145,18 @@ var MembershipPaymentStatus = /* @__PURE__ */ ((MembershipPaymentStatus2) => {
|
|
|
2145
2145
|
MembershipPaymentStatus2["VOIDED"] = "VOIDED";
|
|
2146
2146
|
return MembershipPaymentStatus2;
|
|
2147
2147
|
})(MembershipPaymentStatus || {});
|
|
2148
|
+
var PaymentStatus = /* @__PURE__ */ ((PaymentStatus2) => {
|
|
2149
|
+
PaymentStatus2["APPROVED"] = "APPROVED";
|
|
2150
|
+
PaymentStatus2["PENDING"] = "PENDING";
|
|
2151
|
+
PaymentStatus2["PENDING_MERCHANT"] = "PENDING_MERCHANT";
|
|
2152
|
+
PaymentStatus2["CANCELED"] = "CANCELED";
|
|
2153
|
+
PaymentStatus2["DECLINED"] = "DECLINED";
|
|
2154
|
+
PaymentStatus2["REFUNDED"] = "REFUNDED";
|
|
2155
|
+
PaymentStatus2["PARTIALLY_REFUNDED"] = "PARTIALLY_REFUNDED";
|
|
2156
|
+
PaymentStatus2["AUTHORIZED"] = "AUTHORIZED";
|
|
2157
|
+
PaymentStatus2["VOIDED"] = "VOIDED";
|
|
2158
|
+
return PaymentStatus2;
|
|
2159
|
+
})(PaymentStatus || {});
|
|
2148
2160
|
var RefundStatus = /* @__PURE__ */ ((RefundStatus2) => {
|
|
2149
2161
|
RefundStatus2["PENDING"] = "PENDING";
|
|
2150
2162
|
RefundStatus2["SUCCEEDED"] = "SUCCEEDED";
|
|
@@ -4042,6 +4054,7 @@ export {
|
|
|
4042
4054
|
PaymentCollectabilityStatus,
|
|
4043
4055
|
PaymentOptionType,
|
|
4044
4056
|
PaymentStatus,
|
|
4057
|
+
PaymentStatusEnumPaymentStatus,
|
|
4045
4058
|
PickupMethod,
|
|
4046
4059
|
Placement,
|
|
4047
4060
|
PredefinedPaymentMethod,
|