@wix/auto_sdk_ecom_orders 1.0.217 → 1.0.219
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-CF0kleOw.d.ts → ecom-v1-order-orders.universal-CXi8ZvaS.d.ts} +28 -1
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +8 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +8 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +27 -2
- package/build/cjs/meta.js +8 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-CF0kleOw.d.mts → ecom-v1-order-orders.universal-CXi8ZvaS.d.mts} +28 -1
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +7 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +7 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +27 -2
- package/build/es/meta.mjs +7 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-dDfQOcE9.d.ts → ecom-v1-order-orders.universal-BpdIFm1L.d.ts} +62 -1
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +8 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js +8 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +27 -2
- package/build/internal/cjs/meta.js +8 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{ecom-v1-order-orders.universal-dDfQOcE9.d.mts → ecom-v1-order-orders.universal-BpdIFm1L.d.mts} +62 -1
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +7 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +7 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +27 -2
- package/build/internal/es/meta.mjs +7 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -258,9 +258,22 @@ interface OrderLineItem {
|
|
|
258
258
|
refundQuantity?: number | null;
|
|
259
259
|
/**
|
|
260
260
|
* Number of items restocked.
|
|
261
|
+
*
|
|
262
|
+
* For a per-location breakdown, see `restockLocations`.
|
|
261
263
|
* @max 100000
|
|
262
264
|
*/
|
|
263
265
|
restockQuantity?: number | null;
|
|
266
|
+
/**
|
|
267
|
+
* Per-location restock breakdown.
|
|
268
|
+
*
|
|
269
|
+
* Populated when items are restocked to specific locations.
|
|
270
|
+
* The sum of all `quantity` values equals `restockQuantity`.
|
|
271
|
+
* Empty when no location-specific restock was performed.
|
|
272
|
+
* @internal
|
|
273
|
+
* @maxSize 5
|
|
274
|
+
* @readonly
|
|
275
|
+
*/
|
|
276
|
+
restockLocations?: RestockLocation[];
|
|
264
277
|
/** Line item price after line item discounts for display purposes. */
|
|
265
278
|
price?: Price;
|
|
266
279
|
/**
|
|
@@ -583,6 +596,20 @@ declare enum ItemTypePreset {
|
|
|
583
596
|
}
|
|
584
597
|
/** @enumType */
|
|
585
598
|
type ItemTypePresetWithLiterals = ItemTypePreset | 'UNRECOGNISED' | 'PHYSICAL' | 'DIGITAL' | 'GIFT_CARD' | 'SERVICE';
|
|
599
|
+
/** Quantity of items restocked at a specific location. */
|
|
600
|
+
interface RestockLocation {
|
|
601
|
+
/**
|
|
602
|
+
* ID of the location where items were restocked.
|
|
603
|
+
* @format GUID
|
|
604
|
+
*/
|
|
605
|
+
locationId?: string;
|
|
606
|
+
/**
|
|
607
|
+
* Number of items restocked at this location.
|
|
608
|
+
* @min 1
|
|
609
|
+
* @max 100000
|
|
610
|
+
*/
|
|
611
|
+
quantity?: number;
|
|
612
|
+
}
|
|
586
613
|
/** Type of selected payment option for catalog item */
|
|
587
614
|
declare enum PaymentOptionType {
|
|
588
615
|
/** The entire payment for this item happens as part of the checkout. */
|
|
@@ -3312,6 +3339,12 @@ interface V1RestockItem {
|
|
|
3312
3339
|
* @max 100000
|
|
3313
3340
|
*/
|
|
3314
3341
|
quantity?: number;
|
|
3342
|
+
/**
|
|
3343
|
+
* Per-location breakdown of restock quantities.
|
|
3344
|
+
* @internal
|
|
3345
|
+
* @maxSize 5
|
|
3346
|
+
*/
|
|
3347
|
+
restockLocations?: RestockLocation[];
|
|
3315
3348
|
}
|
|
3316
3349
|
/** Triggered when order is imported */
|
|
3317
3350
|
interface OrderImported {
|
|
@@ -4806,7 +4839,16 @@ interface HasCustomEmailConfigurationsResponse {
|
|
|
4806
4839
|
interface AddToAutomationMigrationPopulationRequest {
|
|
4807
4840
|
/** When true, sends custom email configurations to automation system via email */
|
|
4808
4841
|
sendCustomEmailConfigs?: boolean;
|
|
4842
|
+
/** Origin of the migration request. Defaults to OPT_IN when UNKNOWN_ORIGIN. */
|
|
4843
|
+
origin?: OriginWithLiterals;
|
|
4844
|
+
}
|
|
4845
|
+
declare enum Origin {
|
|
4846
|
+
UNKNOWN_ORIGIN = "UNKNOWN_ORIGIN",
|
|
4847
|
+
OPT_IN = "OPT_IN",
|
|
4848
|
+
MIGRATION = "MIGRATION"
|
|
4809
4849
|
}
|
|
4850
|
+
/** @enumType */
|
|
4851
|
+
type OriginWithLiterals = Origin | 'UNKNOWN_ORIGIN' | 'OPT_IN' | 'MIGRATION';
|
|
4810
4852
|
interface AddToAutomationMigrationPopulationResponse {
|
|
4811
4853
|
success?: boolean;
|
|
4812
4854
|
}
|
|
@@ -5332,6 +5374,12 @@ interface RestockItem {
|
|
|
5332
5374
|
* @max 100000
|
|
5333
5375
|
*/
|
|
5334
5376
|
quantity?: number;
|
|
5377
|
+
/**
|
|
5378
|
+
* Per-location breakdown of restock quantities.
|
|
5379
|
+
* @internal
|
|
5380
|
+
* @maxSize 5
|
|
5381
|
+
*/
|
|
5382
|
+
restockLocations?: RestockLocation[];
|
|
5335
5383
|
}
|
|
5336
5384
|
interface TriggerRefundResponse {
|
|
5337
5385
|
/** All order's transactions after the refunds were added */
|
|
@@ -9162,9 +9210,22 @@ interface UpdateOrderLineItem {
|
|
|
9162
9210
|
refundQuantity?: number | null;
|
|
9163
9211
|
/**
|
|
9164
9212
|
* Number of items restocked.
|
|
9213
|
+
*
|
|
9214
|
+
* For a per-location breakdown, see `restockLocations`.
|
|
9165
9215
|
* @max 100000
|
|
9166
9216
|
*/
|
|
9167
9217
|
restockQuantity?: number | null;
|
|
9218
|
+
/**
|
|
9219
|
+
* Per-location restock breakdown.
|
|
9220
|
+
*
|
|
9221
|
+
* Populated when items are restocked to specific locations.
|
|
9222
|
+
* The sum of all `quantity` values equals `restockQuantity`.
|
|
9223
|
+
* Empty when no location-specific restock was performed.
|
|
9224
|
+
* @internal
|
|
9225
|
+
* @maxSize 5
|
|
9226
|
+
* @readonly
|
|
9227
|
+
*/
|
|
9228
|
+
restockLocations?: RestockLocation[];
|
|
9168
9229
|
/** Line item price after line item discounts for display purposes. */
|
|
9169
9230
|
price?: Price;
|
|
9170
9231
|
/**
|
|
@@ -9446,4 +9507,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
9446
9507
|
unassignTags?: TagsTags;
|
|
9447
9508
|
}
|
|
9448
9509
|
|
|
9449
|
-
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, VersioningMode as aH, PreviewEmailType as aI, State as aJ, SiteCreatedContext as aK, Namespace as aL, DeleteStatus 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 OrderTaxBreakdown as b$, RefundStatus as b0, SortOrder as b1, OrderApprovalStrategy as b2, Placement as b3, SubdivisionType as b4, SourceType as b5, CustomFieldGroup as b6, ValueType as b7, DepositType as b8, InvoiceStatus as b9, type LocationAndQuantity as bA, type TaxableAddress as bB, type TaxableAddressTaxableAddressDataOneOf as bC, type ExtendedFields as bD, type ModifierGroup as bE, type TranslatableString as bF, type ItemModifier as bG, type BuyerInfo as bH, type BuyerInfoIdOneOf as bI, type CurrencyConversionDetails as bJ, type PriceSummary as bK, type AddressWithContact as bL, type Address as bM, type StreetAddress as bN, type AddressLocation as bO, type FullAddressContactDetails as bP, type VatId as bQ, type V1ShippingInformation as bR, type DeliveryLogistics as bS, type DeliveryLogisticsAddressOneOf as bT, type PickupDetails as bU, type PickupAddress as bV, type DeliveryTimeSlot as bW, type ShippingPrice as bX, type ShippingRegion as bY, type TaxSummary as bZ, type OrderTaxInfo as b_, type OrderLineItem as ba, type ProductName as bb, type CatalogReference as bc, type DescriptionLine as bd, type DescriptionLineValueOneOf as be, type DescriptionLineDescriptionLineValueOneOf as bf, type DescriptionLineName as bg, type PlainTextValue as bh, type Color as bi, type FocalPoint as bj, type PhysicalProperties as bk, type Dimensions as bl, type ItemType as bm, type ItemTypeItemTypeDataOneOf as bn, type ItemTaxFullDetails as bo, type LineItemTaxInfo as bp, type LineItemTaxBreakdown as bq, type DigitalFile as br, type SubscriptionInfo as bs, type SubscriptionTitle as bt, type SubscriptionDescription as bu, type SubscriptionSettings as bv, type FreeTrialPeriod as bw, type BillingAdjustment as bx, type BillingAdjustmentPriceSummary as by, type PriceDescription as bz, type PreparePaymentCollectionOptions as c, type ChargebackCreated as c$, type AppliedDiscount as c0, type AppliedDiscountDiscountSourceOneOf as c1, type Coupon as c2, type MerchantDiscount as c3, type MerchantDiscountMerchantDiscountReasonOneOf as c4, type DiscountRule as c5, type DiscountRuleName as c6, type LineItemDiscount as c7, type ItemCombination as c8, type ItemCombinationLineItem as c9, type AuthorizedPaymentCreated as cA, type AuthorizedPaymentCaptured as cB, type AuthorizedPaymentVoided as cC, type RefundInitiated as cD, type RefundedPayment as cE, type RefundedPaymentKindOneOf as cF, type RegularPaymentRefund as cG, type GiftCardPaymentRefund as cH, type MembershipPaymentRefund as cI, type PaymentRefunded as cJ, type PaymentRefundFailed as cK, type RefundedAsStoreCredit as cL, type PaymentPending as cM, type PaymentPendingPaymentDetailsOneOf as cN, type RegularPayment as cO, type RegularPaymentPaymentMethodDetailsOneOf as cP, type CreditCardDetails as cQ, type PaymentCanceled as cR, type PaymentCanceledPaymentDetailsOneOf as cS, type PaymentDeclined as cT, type PaymentDeclinedPaymentDetailsOneOf as cU, type ReceiptCreated as cV, type ReceiptCreatedReceiptInfoOneOf as cW, type WixReceipt as cX, type ExternalReceipt as cY, type ReceiptSent as cZ, type ReceiptSentReceiptInfoOneOf as c_, type Activity as ca, type ActivityContentOneOf as cb, type CustomActivity as cc, type MerchantComment as cd, type OrderRefunded as ce, type OrderCreatedFromExchange as cf, type NewExchangeOrderCreated as cg, type LineItemExchangeData as ch, type DraftOrderChangesApplied as ci, type OrderChange as cj, type OrderChangeValueOneOf as ck, type LineItemChanges as cl, type LineItemQuantityChange as cm, type LineItemPriceChange as cn, type LineItemProductNameChange as co, type LineItemDescriptionLineChange as cp, type LineItemModifiersChange as cq, type ManagedLineItem as cr, type ManagedDiscount as cs, type TranslatedValue as ct, type LineItemAmount as cu, type ManagedAdditionalFee as cv, type TotalPriceChange as cw, type ShippingInformationChange as cx, type ShippingInformation as cy, type SavedPaymentMethod as cz, type PreparePaymentCollectionResponse as d, type InternalDocumentUpdateOperation as d$, type ChargebackReversed as d0, type CreatedBy as d1, type CreatedByStringOneOf as d2, type ChannelInfo as d3, type CustomField as d4, type BalanceSummary as d5, type Balance as d6, type CashRounding as d7, type AdditionalFee as d8, type FulfillmentStatusesAggregate as d9, type ItemChangedDetails as dA, type OrderLineItemChangedDetails as dB, type LineItemDelta as dC, type LineItemDeltaDeltaOneOf as dD, type AppliedDiscountDelta as dE, type AppliedDiscountDeltaDeltaOneOf as dF, type AdditionalFeeDelta as dG, type AdditionalFeeDeltaDeltaOneOf as dH, type DraftOrderCommitSettings as dI, type InventoryUpdateDetails as dJ, type ImportOrderRequest as dK, type SetOrderNumberCounterRequest as dL, type BulkDeleteImportedOrdersRequest as dM, type DomainEvent as dN, type DomainEventBodyOneOf as dO, type EntityCreatedEvent as dP, type RestoreInfo as dQ, type EntityUpdatedEvent as dR, type EntityDeletedEvent as dS, type ActionEvent as dT, type MessageEnvelope as dU, type IdentificationData as dV, type IdentificationDataIdOneOf as dW, type AccountInfo as dX, type UpdateInternalDocumentsEvent as dY, type UpdateInternalDocumentsEventOperationOneOf as dZ, type InternalDocument as d_, type Tags as da, type TagList as db, type Location as dc, type OrderSettings as dd, type OrderSettingsAllowedActionsOneOf as de, type OrderSettingsEditableByOneOf as df, type CustomAllowedActions as dg, type OwnerApps as dh, type FormInfo as di, type FormIdentifier as dj, type PlatformFeeSummary as dk, type PlatformFee as dl, type OrderApproved as dm, type OrdersExperiments as dn, type OrderRejectedEventOrderRejected as dp, type OrderItemsRestocked as dq, type V1RestockItem as dr, type OrderImported as ds, type ImportedOrderDeleted as dt, type PaymentStatusUpdated as du, type FulfillmentStatusUpdated as dv, type OrderCanceledEventOrderCanceled as dw, type OrderDeltasCommitted as dx, type CommittedDiffs as dy, type CommittedDiffsShippingUpdateInfoOneOf as dz, type PreparePaymentCollectionApplicationErrors as e, type SiteUndeleted as e$, type DeleteByIdsOperation as e0, type DeleteByFilterOperation as e1, type InternalDocumentUpdateByFilterOperation as e2, type InternalUpdateExistingOperation as e3, type VersionedDocumentUpdateOperation as e4, type VersionedDeleteByIdsOperation as e5, type VersionedDocumentId as e6, type TriggerReindexRequest as e7, type TriggerReindexResponse as e8, type Empty as e9, type RefundDetails as eA, type RefundItem as eB, type LineItemRefund as eC, type AdditionalFeeRefund as eD, type ShippingRefund as eE, type PreviewRefundEmailResponse as eF, type PreviewCancelEmailRequest as eG, type PreviewCancelEmailResponse as eH, type PreviewCancelRefundEmailRequest as eI, type PreviewCancelRefundEmailResponse as eJ, type PreviewBuyerPaymentsReceivedEmailRequest as eK, type PreviewBuyerPaymentsReceivedEmailResponse as eL, type PreviewBuyerConfirmationEmailRequest as eM, type PreviewBuyerConfirmationEmailResponse as eN, type PreviewBuyerPickupConfirmationEmailRequest as eO, type PreviewBuyerPickupConfirmationEmailResponse as eP, type PreviewShippingConfirmationEmailRequest as eQ, type PreviewShippingConfirmationEmailResponse as eR, type PreviewResendDownloadLinksEmailRequest as eS, type PreviewResendDownloadLinksEmailResponse as eT, type MetaSiteSpecialEvent as eU, type MetaSiteSpecialEventPayloadOneOf as eV, type Asset as eW, type SiteCreated as eX, type SiteTransferred as eY, type SiteDeleted as eZ, type DeleteContext as e_, type TriggerReindexOrderRequest as ea, type SendBuyerConfirmationEmailRequest as eb, type SendBuyerConfirmationEmailResponse as ec, type SendBuyerPaymentsReceivedEmailRequest as ed, type SendBuyerPaymentsReceivedEmailResponse as ee, type SendBuyerPickupConfirmationEmailRequest as ef, type SendBuyerPickupConfirmationEmailResponse as eg, type BulkSendBuyerPickupConfirmationEmailsRequest as eh, type BulkSendBuyerPickupConfirmationEmailsResponse as ei, type SendBuyerShippingConfirmationEmailRequest as ej, type SendBuyerShippingConfirmationEmailResponse as ek, type BulkSendBuyerShippingConfirmationEmailsRequest as el, type BulkSendBuyerShippingConfirmationEmailsResponse as em, type SendMerchantOrderReceivedNotificationRequest as en, type SendMerchantOrderReceivedNotificationResponse as eo, type SendCancelRefundEmailRequest as ep, type SendCancelRefundEmailResponse as eq, type SendRefundEmailRequest as er, type SendRefundEmailResponse as es, type SendFulfillmentEmailRequest as et, type SendFulfillmentEmailResponse as eu, type SendMerchantOrderReceivedPushRequest as ev, type SendMerchantOrderReceivedPushResponse as ew, type PreviewEmailByTypeRequest as ex, type PreviewEmailByTypeResponse as ey, type PreviewRefundEmailRequest as ez, type RecordManuallyCollectedPaymentApplicationErrors as f, type PaymentReceiptInfoOneOf as f$, type SitePublished as f0, type SiteUnpublished as f1, type SiteMarkedAsTemplate as f2, type SiteMarkedAsWixSite as f3, type ServiceProvisioned as f4, type ServiceRemoved as f5, type SiteRenamed as f6, type SiteHardDeleted as f7, type NamespaceChanged as f8, type StudioAssigned as f9, type RecordManuallyCollectedPaymentRequest as fA, type UserDefinedPaymentMethodName as fB, type UserDefinedPaymentMethodNameKindOneOf as fC, type RecordManuallyCollectedPaymentResponse as fD, type MarkOrderAsPaidRequest as fE, type BulkMarkOrdersAsPaidRequest as fF, type BulkOrderResult as fG, type ItemMetadata as fH, type ApplicationError as fI, type BulkActionMetadata as fJ, type GetRefundabilityStatusRequest as fK, type Refundability as fL, type RefundabilityAdditionalRefundabilityInfoOneOf as fM, type CreatePaymentGatewayOrderRequest as fN, type ChargedBy as fO, type ChargeMembershipsRequest as fP, type MembershipChargeItem as fQ, type MembershipName as fR, type ServiceProperties as fS, type ChargeMembershipsResponse as fT, type TriggerRefundRequest as fU, type RefundSideEffects as fV, type RestockInfo as fW, type RestockItem as fX, type OrderTransactions as fY, type Payment as fZ, type PaymentPaymentDetailsOneOf as f_, type StudioUnassigned as fa, type SiteUrlChanged as fb, type SitePurgedExternally as fc, type OdeditorAssigned as fd, type OdeditorUnassigned as fe, type PicassoAssigned as ff, type PicassoUnassigned as fg, type WixelAssigned as fh, type WixelUnassigned as fi, type StudioTwoAssigned as fj, type StudioTwoUnassigned as fk, type UserDomainMediaEnabled as fl, type UserDomainMediaDisabled as fm, type EditorlessAssigned as fn, type EditorlessUnassigned as fo, type HasCustomEmailConfigurationsRequest as fp, type HasCustomEmailConfigurationsResponse as fq, type AddToAutomationMigrationPopulationRequest as fr, type AddToAutomationMigrationPopulationResponse as fs, type IsInAutomationMigrationPopulationRequest as ft, type IsInAutomationMigrationPopulationResponse as fu, type PreparePaymentCollectionRequest as fv, type RedirectUrls as fw, type DelayedCaptureSettings as fx, type Duration as fy, type GetPaymentCollectabilityStatusRequest as fz, type PaymentCollectionMarkOrderAsPaidOptions as g, type V1LineItemDeltaDeltaOneOf as g$, type RegularPaymentDetails as g0, type RegularPaymentDetailsPaymentMethodDetailsOneOf as g1, type CreditCardPaymentMethodDetails as g2, type AuthorizationDetails as g3, type AuthorizationCapture as g4, type AuthorizationActionFailureDetails as g5, type AuthorizationVoid as g6, type V1ScheduledAction as g7, type Chargeback as g8, type PaymentMethodName as g9, type Sorting as gA, type PlatformPaging as gB, type CursorPaging as gC, type InternalQueryOrdersResponse as gD, type PlatformPagingMetadata as gE, type Cursors as gF, type QueryOrderRequest as gG, type QueryOrderResponse as gH, type SearchOrdersRequest as gI, type CursorSearch as gJ, type CursorSearchPagingMethodOneOf as gK, type CursorPagingMetadata as gL, type CreateOrderRequest as gM, type OrderCreationSettings as gN, type OrderCreationSettingsEditableByOneOf as gO, type OrderCreateNotifications as gP, type CreateOrderResponse as gQ, type UpdateOrderRequest as gR, type UpdateOrderResponse as gS, type BulkUpdateOrdersRequest as gT, type CommitDeltasRequest as gU, type DraftOrderDiffs as gV, type DraftOrderDiffsShippingUpdateInfoOneOf as gW, type DraftOrderDiffsBuyerUpdateInfoOneOf as gX, type DraftOrderDiffsBillingUpdateInfoOneOf as gY, type DraftOrderDiffsRecipientUpdateInfoOneOf as gZ, type V1LineItemDelta as g_, type GiftCardPaymentDetails as ga, type MembershipPaymentDetails as gb, type WixReceiptInfo as gc, type ExternalReceiptInfo as gd, type CashRoundingDetails as ge, type Refund as gf, type RefundTransaction as gg, type RefundStatusInfo as gh, type AggregatedRefundSummary as gi, type RefundItemsBreakdown as gj, type LineItemRefundSummary as gk, type CalculateRefundRequest as gl, type CalculateRefundItemRequest as gm, type CalculateRefundResponse as gn, type CalculateRefundItemResponse as go, type VoidAuthorizedPaymentsRequest as gp, type CaptureAuthorizedPaymentsRequest as gq, type ChargeSavedPaymentMethodRequest as gr, type ChargeSavedPaymentMethodResponse as gs, type DiffmatokyPayload as gt, type ErrorInformation as gu, type GetOrderRequest as gv, type GetOrderResponse as gw, type InternalQueryOrdersRequest as gx, type PlatformQuery as gy, type PlatformQueryPagingMethodOneOf as gz, type PaymentCollectionMarkOrderAsPaidApplicationErrors as h, type BulkMarkAsFulfilledRequest as h$, type CommitDeltasResponse as h0, type ArchiveOrderRequest as h1, type ArchiveOrderResponse as h2, type BulkArchiveOrdersRequest as h3, type BulkArchiveOrdersResponse as h4, type BulkArchiveOrdersByFilterRequest as h5, type BulkArchiveOrdersByFilterResponse as h6, type UnArchiveOrderRequest as h7, type UnArchiveOrderResponse as h8, type BulkUnArchiveOrdersRequest as h9, type TrackingNumberEdited as hA, type TrackingLinkAdded as hB, type ShippingConfirmationEmailSent as hC, type InvoiceAdded as hD, type InvoiceSent as hE, type FulfillerEmailSent as hF, type ShippingAddressEdited as hG, type EmailEdited as hH, type PickupReadyEmailSent as hI, type OrderPartiallyPaid as hJ, type OrderPending as hK, type OrderRejected as hL, type AddInternalActivityResponse as hM, type AddActivityRequest as hN, type PublicActivityContentOneOf as hO, type AddActivitiesRequest as hP, type UpdateActivityRequest as hQ, type DeleteActivityRequest as hR, type UpdateLineItemsDescriptionLinesRequest as hS, type LineItemUpdate as hT, type UpdateLineItemsDescriptionLinesResponse as hU, type MarkOrderAsSeenByHumanRequest as hV, type MarkOrderAsSeenByHumanResponse as hW, type CancelOrderRequest as hX, type UpdateOrderStatusRequest as hY, type MarkAsFulfilledRequest as hZ, type MarkAsFulfilledResponse as h_, type BulkUnArchiveOrdersResponse as ha, type BulkUnArchiveOrdersByFilterRequest as hb, type BulkUnArchiveOrdersByFilterResponse as hc, type UpdateBuyerInfoRequest as hd, type BuyerInfoUpdate as he, type UpdateBuyerInfoResponse as hf, type UpdateBuyerEmailRequest as hg, type UpdateBuyerEmailResponse as hh, type UpdateOrderShippingAddressRequest as hi, type UpdateOrderShippingAddressResponse as hj, type UpdateBillingContactDetailsRequest as hk, type UpdateBillingContactDetailsResponse as hl, type UpdateOrderLineItemRequest as hm, type UpdateOrderLineItemsRequest as hn, type MaskedOrderLineItem as ho, type UpdateOrderLineItemsResponse as hp, type AddInternalActivityRequest as hq, type InternalActivity as hr, type InternalActivityContentOneOf as hs, type OrderPlaced as ht, type OrderPaid as hu, type OrderFulfilled as hv, type OrderNotFulfilled as hw, type OrderCanceled as hx, type DownloadLinkSent as hy, type TrackingNumberAdded as hz, type BulkMarkOrdersAsPaidResponse as i, type DiscountOneDiscountTypeOneOf as i$, type BulkMarkAsFulfilledResponse as i0, type BulkMarkAsFulfilledByFilterRequest as i1, type BulkMarkAsFulfilledByFilterResponse as i2, type MarkAsUnfulfilledRequest as i3, type MarkAsUnfulfilledResponse as i4, type BulkMarkAsUnfulfilledRequest as i5, type BulkMarkAsUnfulfilledResponse as i6, type BulkMarkAsUnfulfilledByFilterRequest as i7, type BulkMarkAsUnfulfilledByFilterResponse as i8, type BulkSetBusinessLocationRequest as i9, type Complete as iA, type Cancel as iB, type Reschedule as iC, type InvoiceSentEvent as iD, type IdAndVersion as iE, type InvoiceFields as iF, type Customer as iG, type Email as iH, type QuotesAddress as iI, type AddressDescription as iJ, type Phone as iK, type Company as iL, type CommonAddress as iM, type CommonAddressStreetOneOf as iN, type Subdivision as iO, type StandardDetails as iP, type InvoiceDates as iQ, type LineItems as iR, type LineItem as iS, type BigDecimalWrapper as iT, type LineItemTax as iU, type Source as iV, type LineItemMetaData as iW, type Locale as iX, type TotalPrice as iY, type ItemizedFee as iZ, type Discount as i_, type BulkSetBusinessLocationResponse as ia, type BulkSetBusinessLocationResult as ib, type V1MarkOrderAsPaidRequest as ic, type V1MarkOrderAsPaidResponse as id, type V1BulkMarkOrdersAsPaidRequest as ie, type V1BulkMarkOrdersAsPaidResponse as ig, type V1CreatePaymentGatewayOrderRequest as ih, type V1CreatePaymentGatewayOrderResponse as ii, type GetShipmentsRequest as ij, type GetShipmentsResponse as ik, type AggregateOrdersRequest as il, type DecrementItemsQuantityRequest as im, type DecrementData as io, type DecrementItemsQuantityResponse as ip, type BulkUpdateOrderTagsRequest as iq, type TagsTags as ir, type TagsTagList as is, type BulkUpdateOrderTagsResult as it, type SendOrderUpdatedDomainEventRequest as iu, type SendOrderUpdatedDomainEventResponse as iv, type Task as iw, type TaskKey as ix, type TaskAction as iy, type TaskActionActionOneOf as iz, type GetRefundabilityStatusResponse as j, type SortOrderWithLiterals as j$, type CalculatedTaxes as j0, type CalculatedTax as j1, type Payments as j2, type InvoicesPayment as j3, type MetaData as j4, type InvoiceDynamicPriceTotals as j5, type CustomFieldValue as j6, type Value as j7, type Deposit as j8, type BaseEventMetadata as j9, type SpecificItemsCouponBehaviorWithLiterals as jA, type ChargeTypeWithLiterals as jB, type DeltaPaymentOptionTypeWithLiterals as jC, type InventoryActionWithLiterals as jD, type WebhookIdentityTypeWithLiterals as jE, type VersioningModeWithLiterals as jF, type PreviewEmailTypeWithLiterals as jG, type StateWithLiterals as jH, type SiteCreatedContextWithLiterals as jI, type NamespaceWithLiterals as jJ, type DeleteStatusWithLiterals as jK, type ScheduledActionWithLiterals as jL, type DurationUnitWithLiterals as jM, type PaymentCollectabilityStatusWithLiterals as jN, type PredefinedPaymentMethodWithLiterals as jO, type RefundableStatusWithLiterals as jP, type NonRefundableReasonWithLiterals as jQ, type ManuallyRefundableReasonWithLiterals as jR, type RestockTypeWithLiterals as jS, type TransactionStatusWithLiterals as jT, type AuthorizationCaptureStatusWithLiterals as jU, type AuthorizationVoidStatusWithLiterals as jV, type ReasonWithLiterals as jW, type ActionTypeWithLiterals as jX, type ChargebackStatusWithLiterals as jY, type MembershipPaymentStatusWithLiterals as jZ, type RefundStatusWithLiterals as j_, type EventMetadata as ja, type AccountInfoMetadata as jb, type OrderSearchSpec as jc, utils as jd, type DescriptionLineTypeWithLiterals as je, type DimensionsUnitWithLiterals as jf, type ItemTypePresetWithLiterals as jg, type PaymentOptionTypeWithLiterals as jh, type JurisdictionTypeWithLiterals as ji, type SubscriptionFrequencyWithLiterals as jj, type AdjustmentTypeWithLiterals as jk, type TaxableAddressTypeWithLiterals as jl, type PaymentStatusWithLiterals as jm, type FulfillmentStatusWithLiterals as jn, type WeightUnitWithLiterals as jo, type VatTypeWithLiterals as jp, type PickupMethodWithLiterals as jq, type DiscountTypeWithLiterals as jr, type DiscountReasonWithLiterals as js, type LineItemQuantityChangeTypeWithLiterals as jt, type ActivityTypeWithLiterals as ju, type OrderActivityTypeEnumActivityTypeWithLiterals as jv, type AttributionSourceWithLiterals as jw, type ChannelTypeWithLiterals as jx, type AdditionalFeeSourceWithLiterals as jy, type OrderActionTypeWithLiterals as jz, type PaymentCollectionCreatePaymentGatewayOrderOptions as k, type OrderApprovalStrategyWithLiterals as k0, type PlacementWithLiterals as k1, type SubdivisionTypeWithLiterals as k2, type SourceTypeWithLiterals as k3, type CustomFieldGroupWithLiterals as k4, type ValueTypeWithLiterals as k5, type DepositTypeWithLiterals as k6, type InvoiceStatusWithLiterals as k7, type CommonSearchWithEntityContext as k8, onOrderApproved as k9, addActivities as kA, updateActivity as kB, deleteActivity as kC, cancelOrder as kD, updateOrderStatus as kE, aggregateOrders as kF, bulkUpdateOrderTags as kG, onOrderCanceled as ka, onOrderCommitted as kb, onOrderCreated as kc, onOrderFulfilled as kd, onOrderPaymentStatusUpdated as ke, onOrderUpdated as kf, importOrder as kg, setOrderNumberCounter as kh, bulkDeleteImportedOrders as ki, preparePaymentCollection as kj, getPaymentCollectabilityStatus as kk, recordManuallyCollectedPayment as kl, paymentCollectionMarkOrderAsPaid as km, paymentCollectionBulkMarkOrdersAsPaid as kn, getRefundabilityStatus as ko, paymentCollectionCreatePaymentGatewayOrder as kp, chargeMemberships as kq, triggerRefund as kr, voidAuthorizedPayments as ks, captureAuthorizedPayments as kt, getOrder as ku, createOrder as kv, updateOrder as kw, bulkUpdateOrders as kx, updateOrderLineItem as ky, addActivity 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, ChargebackStatus 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, VersioningMode as aH, PreviewEmailType as aI, State as aJ, SiteCreatedContext as aK, Namespace as aL, DeleteStatus as aM, Origin as aN, ScheduledAction as aO, DurationUnit as aP, PaymentCollectabilityStatus as aQ, PredefinedPaymentMethod as aR, RefundableStatus as aS, NonRefundableReason as aT, ManuallyRefundableReason as aU, RestockType as aV, TransactionStatus as aW, AuthorizationCaptureStatus as aX, AuthorizationVoidStatus as aY, Reason as aZ, ActionType 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$, MembershipPaymentStatus as b0, RefundStatus 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 UpdateInternalDocumentsEventOperationOneOf 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 UpdateInternalDocumentsEvent 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 SiteDeleted as e$, type InternalDocument as e0, type InternalDocumentUpdateOperation as e1, type DeleteByIdsOperation as e2, type DeleteByFilterOperation as e3, type InternalDocumentUpdateByFilterOperation as e4, type InternalUpdateExistingOperation as e5, type VersionedDocumentUpdateOperation as e6, type VersionedDeleteByIdsOperation as e7, type VersionedDocumentId as e8, type TriggerReindexRequest as e9, type PreviewEmailByTypeResponse as eA, type PreviewRefundEmailRequest as eB, type RefundDetails as eC, type RefundItem as eD, type LineItemRefund as eE, type AdditionalFeeRefund as eF, type ShippingRefund as eG, type PreviewRefundEmailResponse as eH, type PreviewCancelEmailRequest as eI, type PreviewCancelEmailResponse as eJ, type PreviewCancelRefundEmailRequest as eK, type PreviewCancelRefundEmailResponse as eL, type PreviewBuyerPaymentsReceivedEmailRequest as eM, type PreviewBuyerPaymentsReceivedEmailResponse as eN, type PreviewBuyerConfirmationEmailRequest as eO, type PreviewBuyerConfirmationEmailResponse as eP, type PreviewBuyerPickupConfirmationEmailRequest as eQ, type PreviewBuyerPickupConfirmationEmailResponse as eR, type PreviewShippingConfirmationEmailRequest as eS, type PreviewShippingConfirmationEmailResponse as eT, type PreviewResendDownloadLinksEmailRequest as eU, type PreviewResendDownloadLinksEmailResponse as eV, type MetaSiteSpecialEvent as eW, type MetaSiteSpecialEventPayloadOneOf as eX, type Asset as eY, type SiteCreated as eZ, type SiteTransferred as e_, type TriggerReindexResponse as ea, type Empty as eb, type TriggerReindexOrderRequest as ec, type SendBuyerConfirmationEmailRequest as ed, type SendBuyerConfirmationEmailResponse as ee, type SendBuyerPaymentsReceivedEmailRequest as ef, type SendBuyerPaymentsReceivedEmailResponse as eg, type SendBuyerPickupConfirmationEmailRequest as eh, type SendBuyerPickupConfirmationEmailResponse as ei, type BulkSendBuyerPickupConfirmationEmailsRequest as ej, type BulkSendBuyerPickupConfirmationEmailsResponse as ek, type SendBuyerShippingConfirmationEmailRequest as el, type SendBuyerShippingConfirmationEmailResponse as em, type BulkSendBuyerShippingConfirmationEmailsRequest as en, type BulkSendBuyerShippingConfirmationEmailsResponse as eo, type SendMerchantOrderReceivedNotificationRequest as ep, type SendMerchantOrderReceivedNotificationResponse as eq, type SendCancelRefundEmailRequest as er, type SendCancelRefundEmailResponse as es, type SendRefundEmailRequest as et, type SendRefundEmailResponse as eu, type SendFulfillmentEmailRequest as ev, type SendFulfillmentEmailResponse as ew, type SendMerchantOrderReceivedPushRequest as ex, type SendMerchantOrderReceivedPushResponse as ey, type PreviewEmailByTypeRequest as ez, type RecordManuallyCollectedPaymentApplicationErrors as f, type Payment as f$, type DeleteContext as f0, type SiteUndeleted as f1, type SitePublished as f2, type SiteUnpublished as f3, type SiteMarkedAsTemplate as f4, type SiteMarkedAsWixSite as f5, type ServiceProvisioned as f6, type ServiceRemoved as f7, type SiteRenamed as f8, type SiteHardDeleted as f9, type Duration as fA, type GetPaymentCollectabilityStatusRequest as fB, type RecordManuallyCollectedPaymentRequest as fC, type UserDefinedPaymentMethodName as fD, type UserDefinedPaymentMethodNameKindOneOf as fE, type RecordManuallyCollectedPaymentResponse as fF, type MarkOrderAsPaidRequest as fG, type BulkMarkOrdersAsPaidRequest as fH, type BulkOrderResult as fI, type ItemMetadata as fJ, type ApplicationError as fK, type BulkActionMetadata as fL, type GetRefundabilityStatusRequest as fM, type Refundability as fN, type RefundabilityAdditionalRefundabilityInfoOneOf as fO, type CreatePaymentGatewayOrderRequest as fP, type ChargedBy as fQ, type ChargeMembershipsRequest as fR, type MembershipChargeItem as fS, type MembershipName as fT, type ServiceProperties as fU, type ChargeMembershipsResponse as fV, type TriggerRefundRequest as fW, type RefundSideEffects as fX, type RestockInfo as fY, type RestockItem as fZ, type OrderTransactions as f_, type NamespaceChanged as fa, type StudioAssigned as fb, type StudioUnassigned as fc, type SiteUrlChanged as fd, type SitePurgedExternally as fe, type OdeditorAssigned as ff, type OdeditorUnassigned as fg, type PicassoAssigned as fh, type PicassoUnassigned as fi, type WixelAssigned as fj, type WixelUnassigned as fk, type StudioTwoAssigned as fl, type StudioTwoUnassigned as fm, type UserDomainMediaEnabled as fn, type UserDomainMediaDisabled as fo, type EditorlessAssigned as fp, type EditorlessUnassigned as fq, type HasCustomEmailConfigurationsRequest as fr, type HasCustomEmailConfigurationsResponse as fs, type AddToAutomationMigrationPopulationRequest as ft, type AddToAutomationMigrationPopulationResponse as fu, type IsInAutomationMigrationPopulationRequest as fv, type IsInAutomationMigrationPopulationResponse as fw, type PreparePaymentCollectionRequest as fx, type RedirectUrls as fy, type DelayedCaptureSettings as fz, type PaymentCollectionMarkOrderAsPaidOptions as g, type DraftOrderDiffsRecipientUpdateInfoOneOf as g$, type PaymentPaymentDetailsOneOf as g0, type PaymentReceiptInfoOneOf as g1, type RegularPaymentDetails as g2, type RegularPaymentDetailsPaymentMethodDetailsOneOf as g3, type CreditCardPaymentMethodDetails as g4, type AuthorizationDetails as g5, type AuthorizationCapture as g6, type AuthorizationActionFailureDetails as g7, type AuthorizationVoid as g8, type V1ScheduledAction 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 Chargeback as ga, type PaymentMethodName as gb, type GiftCardPaymentDetails as gc, type MembershipPaymentDetails as gd, type WixReceiptInfo as ge, type ExternalReceiptInfo as gf, type CashRoundingDetails as gg, type Refund as gh, type RefundTransaction as gi, type RefundStatusInfo as gj, type AggregatedRefundSummary as gk, type RefundItemsBreakdown as gl, type LineItemRefundSummary as gm, type CalculateRefundRequest as gn, type CalculateRefundItemRequest as go, type CalculateRefundResponse as gp, type CalculateRefundItemResponse as gq, type VoidAuthorizedPaymentsRequest as gr, type CaptureAuthorizedPaymentsRequest as gs, type ChargeSavedPaymentMethodRequest as gt, type ChargeSavedPaymentMethodResponse 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 ChargebackStatusWithLiterals 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 VersioningModeWithLiterals 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 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 MembershipPaymentStatusWithLiterals as k0, type RefundStatusWithLiterals 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 };
|
|
@@ -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 { dX as AccountInfo, jb as AccountInfoMetadata, dT as ActionEvent, aZ as ActionType, jX as ActionTypeWithLiterals, ca as Activity, cb as ActivityContentOneOf, aw as ActivityType, ju as ActivityTypeWithLiterals, hP as AddActivitiesRequest, hN as AddActivityRequest, hq as AddInternalActivityRequest, hM as AddInternalActivityResponse, fr as AddToAutomationMigrationPopulationRequest, fs as AddToAutomationMigrationPopulationResponse, d8 as AdditionalFee, dG as AdditionalFeeDelta, dH as AdditionalFeeDeltaDeltaOneOf, eD as AdditionalFeeRefund, aA as AdditionalFeeSource, jy as AdditionalFeeSourceWithLiterals, bM as Address, iJ as AddressDescription, bO as AddressLocation, bL as AddressWithContact, al as AdjustmentType, jk as AdjustmentTypeWithLiterals, il as AggregateOrdersRequest, gi as AggregatedRefundSummary, fI as ApplicationError, c0 as AppliedDiscount, dE as AppliedDiscountDelta, dF as AppliedDiscountDeltaDeltaOneOf, c1 as AppliedDiscountDiscountSourceOneOf, h1 as ArchiveOrderRequest, h2 as ArchiveOrderResponse, eW as Asset, ay as AttributionSource, jw as AttributionSourceWithLiterals, g5 as AuthorizationActionFailureDetails, g4 as AuthorizationCapture, aW as AuthorizationCaptureStatus, jU as AuthorizationCaptureStatusWithLiterals, g3 as AuthorizationDetails, g6 as AuthorizationVoid, aX as AuthorizationVoidStatus, jV as AuthorizationVoidStatusWithLiterals, cB as AuthorizedPaymentCaptured, cA as AuthorizedPaymentCreated, cC as AuthorizedPaymentVoided, d6 as Balance, d5 as BalanceSummary, j9 as BaseEventMetadata, iT as BigDecimalWrapper, bx as BillingAdjustment, by as BillingAdjustmentPriceSummary, fJ as BulkActionMetadata, h5 as BulkArchiveOrdersByFilterRequest, h6 as BulkArchiveOrdersByFilterResponse, h3 as BulkArchiveOrdersRequest, h4 as BulkArchiveOrdersResponse, dM as BulkDeleteImportedOrdersRequest, i1 as BulkMarkAsFulfilledByFilterRequest, i2 as BulkMarkAsFulfilledByFilterResponse, h$ as BulkMarkAsFulfilledRequest, i0 as BulkMarkAsFulfilledResponse, i7 as BulkMarkAsUnfulfilledByFilterRequest, i8 as BulkMarkAsUnfulfilledByFilterResponse, i5 as BulkMarkAsUnfulfilledRequest, i6 as BulkMarkAsUnfulfilledResponse, fF as BulkMarkOrdersAsPaidRequest, fG as BulkOrderResult, eh as BulkSendBuyerPickupConfirmationEmailsRequest, ei as BulkSendBuyerPickupConfirmationEmailsResponse, el as BulkSendBuyerShippingConfirmationEmailsRequest, em as BulkSendBuyerShippingConfirmationEmailsResponse, i9 as BulkSetBusinessLocationRequest, ia as BulkSetBusinessLocationResponse, ib as BulkSetBusinessLocationResult, hb as BulkUnArchiveOrdersByFilterRequest, hc as BulkUnArchiveOrdersByFilterResponse, h9 as BulkUnArchiveOrdersRequest, ha as BulkUnArchiveOrdersResponse, iq as BulkUpdateOrderTagsRequest, it as BulkUpdateOrderTagsResult, gT as BulkUpdateOrdersRequest, bH as BuyerInfo, bI as BuyerInfoIdOneOf, he as BuyerInfoUpdate, gm as CalculateRefundItemRequest, go as CalculateRefundItemResponse, gl as CalculateRefundRequest, gn as CalculateRefundResponse, j1 as CalculatedTax, j0 as CalculatedTaxes, iB as Cancel, hX as CancelOrderRequest, gq as CaptureAuthorizedPaymentsRequest, d7 as CashRounding, ge as CashRoundingDetails, bc as CatalogReference, d3 as ChannelInfo, az as ChannelType, jx as ChannelTypeWithLiterals, fP as ChargeMembershipsRequest, fT as ChargeMembershipsResponse, gr as ChargeSavedPaymentMethodRequest, gs as ChargeSavedPaymentMethodResponse, aD as ChargeType, jB as ChargeTypeWithLiterals, g8 as Chargeback, c$ as ChargebackCreated, d0 as ChargebackReversed, a_ as ChargebackStatus, jY as ChargebackStatusWithLiterals, fO as ChargedBy, bi as Color, gU as CommitDeltasRequest, h0 as CommitDeltasResponse, dy as CommittedDiffs, dz as CommittedDiffsShippingUpdateInfoOneOf, iM as CommonAddress, iN as CommonAddressStreetOneOf, k8 as CommonSearchWithEntityContext, iL as Company, iA as Complete, c2 as Coupon, gM as CreateOrderRequest, gQ as CreateOrderResponse, fN as CreatePaymentGatewayOrderRequest, d1 as CreatedBy, d2 as CreatedByStringOneOf, cQ as CreditCardDetails, g2 as CreditCardPaymentMethodDetails, bJ as CurrencyConversionDetails, gC as CursorPaging, gL as CursorPagingMetadata, gJ as CursorSearch, gK as CursorSearchPagingMethodOneOf, gF as Cursors, cc as CustomActivity, dg as CustomAllowedActions, d4 as CustomField, b6 as CustomFieldGroup, k4 as CustomFieldGroupWithLiterals, j6 as CustomFieldValue, iG as Customer, io as DecrementData, im as DecrementItemsQuantityRequest, ip as DecrementItemsQuantityResponse, fx as DelayedCaptureSettings, hR as DeleteActivityRequest, e1 as DeleteByFilterOperation, e0 as DeleteByIdsOperation, e_ as DeleteContext, aM as DeleteStatus, jK as DeleteStatusWithLiterals, bS as DeliveryLogistics, bT as DeliveryLogisticsAddressOneOf, bW as DeliveryTimeSlot, aE as DeltaPaymentOptionType, jC as DeltaPaymentOptionTypeWithLiterals, j8 as Deposit, b8 as DepositType, k6 as DepositTypeWithLiterals, bd as DescriptionLine, bf as DescriptionLineDescriptionLineValueOneOf, bg as DescriptionLineName, af as DescriptionLineType, je as DescriptionLineTypeWithLiterals, be as DescriptionLineValueOneOf, gt as DiffmatokyPayload, br as DigitalFile, bl as Dimensions, ag as DimensionsUnit, jf as DimensionsUnitWithLiterals, i_ as Discount, i$ as DiscountOneDiscountTypeOneOf, au as DiscountReason, js as DiscountReasonWithLiterals, c5 as DiscountRule, c6 as DiscountRuleName, at as DiscountType, jr as DiscountTypeWithLiterals, dN as DomainEvent, dO as DomainEventBodyOneOf, hy as DownloadLinkSent, ci as DraftOrderChangesApplied, dI as DraftOrderCommitSettings, gV as DraftOrderDiffs, gY as DraftOrderDiffsBillingUpdateInfoOneOf, gX as DraftOrderDiffsBuyerUpdateInfoOneOf, gZ as DraftOrderDiffsRecipientUpdateInfoOneOf, gW as DraftOrderDiffsShippingUpdateInfoOneOf, fy as Duration, aO as DurationUnit, jM as DurationUnitWithLiterals, fn as EditorlessAssigned, fo as EditorlessUnassigned, iH as Email, hH as EmailEdited, e9 as Empty, dP as EntityCreatedEvent, dS as EntityDeletedEvent, dR as EntityUpdatedEvent, gu as ErrorInformation, ja as EventMetadata, bD as ExtendedFields, cY as ExternalReceipt, gd as ExternalReceiptInfo, bj as FocalPoint, dj as FormIdentifier, di as FormInfo, bw as FreeTrialPeriod, hF as FulfillerEmailSent, ao as FulfillmentStatus, dv as FulfillmentStatusUpdated, jn as FulfillmentStatusWithLiterals, d9 as FulfillmentStatusesAggregate, bP as FullAddressContactDetails, gv as GetOrderRequest, gw as GetOrderResponse, fz as GetPaymentCollectabilityStatusRequest, fK as GetRefundabilityStatusRequest, ij as GetShipmentsRequest, ik as GetShipmentsResponse, ga as GiftCardPaymentDetails, cH as GiftCardPaymentRefund, fp as HasCustomEmailConfigurationsRequest, fq as HasCustomEmailConfigurationsResponse, iE as IdAndVersion, dV as IdentificationData, dW as IdentificationDataIdOneOf, dK as ImportOrderRequest, dt as ImportedOrderDeleted, hr as InternalActivity, hs as InternalActivityContentOneOf, d_ as InternalDocument, e2 as InternalDocumentUpdateByFilterOperation, d$ as InternalDocumentUpdateOperation, gx as InternalQueryOrdersRequest, gD as InternalQueryOrdersResponse, e3 as InternalUpdateExistingOperation, aF as InventoryAction, jD as InventoryActionWithLiterals, dJ as InventoryUpdateDetails, hD as InvoiceAdded, iQ as InvoiceDates, j5 as InvoiceDynamicPriceTotals, iF as InvoiceFields, hE as InvoiceSent, iD as InvoiceSentEvent, b9 as InvoiceStatus, k7 as InvoiceStatusWithLiterals, j3 as InvoicesPayment, ft as IsInAutomationMigrationPopulationRequest, fu as IsInAutomationMigrationPopulationResponse, dA as ItemChangedDetails, c8 as ItemCombination, c9 as ItemCombinationLineItem, fH as ItemMetadata, bG as ItemModifier, bo as ItemTaxFullDetails, bm as ItemType, bn as ItemTypeItemTypeDataOneOf, ah as ItemTypePreset, jg as ItemTypePresetWithLiterals, iZ as ItemizedFee, aj as JurisdictionType, ji as JurisdictionTypeWithLiterals, iS as LineItem, cu as LineItemAmount, cl as LineItemChanges, dC as LineItemDelta, dD as LineItemDeltaDeltaOneOf, cp as LineItemDescriptionLineChange, c7 as LineItemDiscount, ch as LineItemExchangeData, iW as LineItemMetaData, cq as LineItemModifiersChange, cn as LineItemPriceChange, co as LineItemProductNameChange, cm as LineItemQuantityChange, av as LineItemQuantityChangeType, jt as LineItemQuantityChangeTypeWithLiterals, eC as LineItemRefund, gk as LineItemRefundSummary, iU as LineItemTax, bq as LineItemTaxBreakdown, bp as LineItemTaxInfo, hT as LineItemUpdate, iR as LineItems, iX as Locale, dc as Location, bA as LocationAndQuantity, cv as ManagedAdditionalFee, cs as ManagedDiscount, cr as ManagedLineItem, aT as ManuallyRefundableReason, jR as ManuallyRefundableReasonWithLiterals, hZ as MarkAsFulfilledRequest, h_ as MarkAsFulfilledResponse, i3 as MarkAsUnfulfilledRequest, i4 as MarkAsUnfulfilledResponse, fE as MarkOrderAsPaidRequest, hV as MarkOrderAsSeenByHumanRequest, hW as MarkOrderAsSeenByHumanResponse, ho as MaskedOrderLineItem, fQ as MembershipChargeItem, fR as MembershipName, gb as MembershipPaymentDetails, cI as MembershipPaymentRefund, a$ as MembershipPaymentStatus, jZ as MembershipPaymentStatusWithLiterals, cd as MerchantComment, c3 as MerchantDiscount, c4 as MerchantDiscountMerchantDiscountReasonOneOf, dU as MessageEnvelope, j4 as MetaData, eU as MetaSiteSpecialEvent, eV as MetaSiteSpecialEventPayloadOneOf, bE as ModifierGroup, aL as Namespace, f8 as NamespaceChanged, jJ as NamespaceWithLiterals, cg as NewExchangeOrderCreated, aS as NonRefundableReason, jQ as NonRefundableReasonWithLiterals, fd as OdeditorAssigned, fe as OdeditorUnassigned, aB as OrderActionType, jz as OrderActionTypeWithLiterals, ax as OrderActivityTypeEnumActivityType, jv as OrderActivityTypeEnumActivityTypeWithLiterals, b2 as OrderApprovalStrategy, k0 as OrderApprovalStrategyWithLiterals, dm as OrderApproved, hx as OrderCanceled, dw as OrderCanceledEventOrderCanceled, cj as OrderChange, ck as OrderChangeValueOneOf, gP as OrderCreateNotifications, cf as OrderCreatedFromExchange, gN as OrderCreationSettings, gO as OrderCreationSettingsEditableByOneOf, dx as OrderDeltasCommitted, hv as OrderFulfilled, ds as OrderImported, dq as OrderItemsRestocked, ba as OrderLineItem, dB as OrderLineItemChangedDetails, hw as OrderNotFulfilled, hu as OrderPaid, hJ as OrderPartiallyPaid, hK as OrderPending, ht as OrderPlaced, ce as OrderRefunded, hL as OrderRejected, dp as OrderRejectedEventOrderRejected, jc as OrderSearchSpec, dd as OrderSettings, de as OrderSettingsAllowedActionsOneOf, df as OrderSettingsEditableByOneOf, as as OrderStatus, b$ as OrderTaxBreakdown, b_ as OrderTaxInfo, fY as OrderTransactions, dn as OrdersExperiments, dh as OwnerApps, fZ as Payment, cR as PaymentCanceled, cS as PaymentCanceledPaymentDetailsOneOf, aP as PaymentCollectabilityStatus, jN as PaymentCollectabilityStatusWithLiterals, cT as PaymentDeclined, cU as PaymentDeclinedPaymentDetailsOneOf, g9 as PaymentMethodName, ai as PaymentOptionType, jh as PaymentOptionTypeWithLiterals, f_ as PaymentPaymentDetailsOneOf, cM as PaymentPending, cN as PaymentPendingPaymentDetailsOneOf, f$ as PaymentReceiptInfoOneOf, cK as PaymentRefundFailed, cJ as PaymentRefunded, an as PaymentStatus, du as PaymentStatusUpdated, jm as PaymentStatusWithLiterals, j2 as Payments, iK as Phone, bk as PhysicalProperties, ff as PicassoAssigned, fg as PicassoUnassigned, bV as PickupAddress, bU as PickupDetails, ar as PickupMethod, jq as PickupMethodWithLiterals, hI as PickupReadyEmailSent, b3 as Placement, k1 as PlacementWithLiterals, bh as PlainTextValue, dl as PlatformFee, dk as PlatformFeeSummary, gB as PlatformPaging, gE as PlatformPagingMetadata, gy as PlatformQuery, gz as PlatformQueryPagingMethodOneOf, aQ as PredefinedPaymentMethod, jO as PredefinedPaymentMethodWithLiterals, fv as PreparePaymentCollectionRequest, eM as PreviewBuyerConfirmationEmailRequest, eN as PreviewBuyerConfirmationEmailResponse, eK as PreviewBuyerPaymentsReceivedEmailRequest, eL as PreviewBuyerPaymentsReceivedEmailResponse, eO as PreviewBuyerPickupConfirmationEmailRequest, eP as PreviewBuyerPickupConfirmationEmailResponse, eG as PreviewCancelEmailRequest, eH as PreviewCancelEmailResponse, eI as PreviewCancelRefundEmailRequest, eJ as PreviewCancelRefundEmailResponse, ex as PreviewEmailByTypeRequest, ey as PreviewEmailByTypeResponse, aI as PreviewEmailType, jG as PreviewEmailTypeWithLiterals, ez as PreviewRefundEmailRequest, eF as PreviewRefundEmailResponse, eS as PreviewResendDownloadLinksEmailRequest, eT as PreviewResendDownloadLinksEmailResponse, eQ as PreviewShippingConfirmationEmailRequest, eR as PreviewShippingConfirmationEmailResponse, bz as PriceDescription, bK as PriceSummary, bb as ProductName, hO as PublicActivityContentOneOf, gG as QueryOrderRequest, gH as QueryOrderResponse, iI as QuotesAddress, aY as Reason, jW as ReasonWithLiterals, cV as ReceiptCreated, cW as ReceiptCreatedReceiptInfoOneOf, cZ as ReceiptSent, c_ as ReceiptSentReceiptInfoOneOf, fA as RecordManuallyCollectedPaymentRequest, fD as RecordManuallyCollectedPaymentResponse, fw as RedirectUrls, gf as Refund, eA as RefundDetails, cD as RefundInitiated, eB as RefundItem, gj as RefundItemsBreakdown, fV as RefundSideEffects, b0 as RefundStatus, gh as RefundStatusInfo, j_ as RefundStatusWithLiterals, gg as RefundTransaction, fL as Refundability, fM as RefundabilityAdditionalRefundabilityInfoOneOf, aR as RefundableStatus, jP as RefundableStatusWithLiterals, cL as RefundedAsStoreCredit, cE as RefundedPayment, cF as RefundedPaymentKindOneOf, cO as RegularPayment, g0 as RegularPaymentDetails, g1 as RegularPaymentDetailsPaymentMethodDetailsOneOf, cP as RegularPaymentPaymentMethodDetailsOneOf, cG as RegularPaymentRefund, iC as Reschedule, fW as RestockInfo, fX as RestockItem, aU as RestockType, jS as RestockTypeWithLiterals, dQ as RestoreInfo, cz as SavedPaymentMethod, aN as ScheduledAction, jL as ScheduledActionWithLiterals, gI as SearchOrdersRequest, eb as SendBuyerConfirmationEmailRequest, ec as SendBuyerConfirmationEmailResponse, ed as SendBuyerPaymentsReceivedEmailRequest, ee as SendBuyerPaymentsReceivedEmailResponse, ef as SendBuyerPickupConfirmationEmailRequest, eg as SendBuyerPickupConfirmationEmailResponse, ej as SendBuyerShippingConfirmationEmailRequest, ek as SendBuyerShippingConfirmationEmailResponse, ep as SendCancelRefundEmailRequest, eq as SendCancelRefundEmailResponse, et as SendFulfillmentEmailRequest, eu as SendFulfillmentEmailResponse, en as SendMerchantOrderReceivedNotificationRequest, eo as SendMerchantOrderReceivedNotificationResponse, ev as SendMerchantOrderReceivedPushRequest, ew as SendMerchantOrderReceivedPushResponse, iu as SendOrderUpdatedDomainEventRequest, iv as SendOrderUpdatedDomainEventResponse, er as SendRefundEmailRequest, es as SendRefundEmailResponse, fS as ServiceProperties, f4 as ServiceProvisioned, f5 as ServiceRemoved, dL as SetOrderNumberCounterRequest, hG as ShippingAddressEdited, hC as ShippingConfirmationEmailSent, cy as ShippingInformation, cx as ShippingInformationChange, bX as ShippingPrice, eE as ShippingRefund, bY as ShippingRegion, eX as SiteCreated, aK as SiteCreatedContext, jI as SiteCreatedContextWithLiterals, eZ as SiteDeleted, f7 as SiteHardDeleted, f2 as SiteMarkedAsTemplate, f3 as SiteMarkedAsWixSite, f0 as SitePublished, fc as SitePurgedExternally, f6 as SiteRenamed, eY as SiteTransferred, e$ as SiteUndeleted, f1 as SiteUnpublished, fb as SiteUrlChanged, b1 as SortOrder, j$ as SortOrderWithLiterals, gA as Sorting, iV as Source, b5 as SourceType, k3 as SourceTypeWithLiterals, aC as SpecificItemsCouponBehavior, jA as SpecificItemsCouponBehaviorWithLiterals, iP as StandardDetails, aJ as State, jH as StateWithLiterals, bN as StreetAddress, f9 as StudioAssigned, fj as StudioTwoAssigned, fk as StudioTwoUnassigned, fa as StudioUnassigned, iO as Subdivision, b4 as SubdivisionType, k2 as SubdivisionTypeWithLiterals, bu as SubscriptionDescription, ak as SubscriptionFrequency, jj as SubscriptionFrequencyWithLiterals, bs as SubscriptionInfo, bv as SubscriptionSettings, bt as SubscriptionTitle, db as TagList, da as Tags, is as TagsTagList, ir as TagsTags, iw as Task, iy as TaskAction, iz as TaskActionActionOneOf, ix as TaskKey, bZ as TaxSummary, bB as TaxableAddress, bC as TaxableAddressTaxableAddressDataOneOf, am as TaxableAddressType, jl as TaxableAddressTypeWithLiterals, iY as TotalPrice, cw as TotalPriceChange, hB as TrackingLinkAdded, hz as TrackingNumberAdded, hA as TrackingNumberEdited, aV as TransactionStatus, jT as TransactionStatusWithLiterals, bF as TranslatableString, ct as TranslatedValue, fU as TriggerRefundRequest, ea as TriggerReindexOrderRequest, e7 as TriggerReindexRequest, e8 as TriggerReindexResponse, h7 as UnArchiveOrderRequest, h8 as UnArchiveOrderResponse, hQ as UpdateActivityRequest, hk as UpdateBillingContactDetailsRequest, hl as UpdateBillingContactDetailsResponse, hg as UpdateBuyerEmailRequest, hh as UpdateBuyerEmailResponse, hd as UpdateBuyerInfoRequest, hf as UpdateBuyerInfoResponse, dY as UpdateInternalDocumentsEvent, dZ as UpdateInternalDocumentsEventOperationOneOf, hS as UpdateLineItemsDescriptionLinesRequest, hU as UpdateLineItemsDescriptionLinesResponse, hm as UpdateOrderLineItemRequest, hn as UpdateOrderLineItemsRequest, hp as UpdateOrderLineItemsResponse, gR as UpdateOrderRequest, gS as UpdateOrderResponse, hi as UpdateOrderShippingAddressRequest, hj as UpdateOrderShippingAddressResponse, hY as UpdateOrderStatusRequest, fB as UserDefinedPaymentMethodName, fC as UserDefinedPaymentMethodNameKindOneOf, fm as UserDomainMediaDisabled, fl as UserDomainMediaEnabled, ie as V1BulkMarkOrdersAsPaidRequest, ig as V1BulkMarkOrdersAsPaidResponse, ih as V1CreatePaymentGatewayOrderRequest, ii as V1CreatePaymentGatewayOrderResponse, g_ as V1LineItemDelta, g$ as V1LineItemDeltaDeltaOneOf, ic as V1MarkOrderAsPaidRequest, id as V1MarkOrderAsPaidResponse, dr as V1RestockItem, g7 as V1ScheduledAction, bR as V1ShippingInformation, j7 as Value, b7 as ValueType, k5 as ValueTypeWithLiterals, bQ as VatId, aq as VatType, jp as VatTypeWithLiterals, e5 as VersionedDeleteByIdsOperation, e6 as VersionedDocumentId, e4 as VersionedDocumentUpdateOperation, aH as VersioningMode, jF as VersioningModeWithLiterals, gp as VoidAuthorizedPaymentsRequest, aG as WebhookIdentityType, jE as WebhookIdentityTypeWithLiterals, ap as WeightUnit, jo as WeightUnitWithLiterals, cX as WixReceipt, gc as WixReceiptInfo, fh as WixelAssigned, fi as WixelUnassigned, jd as utils } from './ecom-v1-order-orders.universal-dDfQOcE9.js';
|
|
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-BpdIFm1L.js';
|
|
3
|
+
export { dZ as AccountInfo, jd as AccountInfoMetadata, dV as ActionEvent, a_ as ActionType, j_ 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, ft as AddToAutomationMigrationPopulationRequest, fu as AddToAutomationMigrationPopulationResponse, da as AdditionalFee, dI as AdditionalFeeDelta, dJ as AdditionalFeeDeltaDeltaOneOf, eF 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, gk as AggregatedRefundSummary, fK as ApplicationError, c2 as AppliedDiscount, dG as AppliedDiscountDelta, dH as AppliedDiscountDeltaDeltaOneOf, c3 as AppliedDiscountDiscountSourceOneOf, h3 as ArchiveOrderRequest, h4 as ArchiveOrderResponse, eY as Asset, ay as AttributionSource, jy as AttributionSourceWithLiterals, g7 as AuthorizationActionFailureDetails, g6 as AuthorizationCapture, aX as AuthorizationCaptureStatus, jX as AuthorizationCaptureStatusWithLiterals, g5 as AuthorizationDetails, g8 as AuthorizationVoid, aY as AuthorizationVoidStatus, jY 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, fL 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, fH as BulkMarkOrdersAsPaidRequest, fI as BulkOrderResult, ej as BulkSendBuyerPickupConfirmationEmailsRequest, ek as BulkSendBuyerPickupConfirmationEmailsResponse, en as BulkSendBuyerShippingConfirmationEmailsRequest, eo 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, go as CalculateRefundItemRequest, gq as CalculateRefundItemResponse, gn as CalculateRefundRequest, gp as CalculateRefundResponse, j3 as CalculatedTax, j2 as CalculatedTaxes, iD as Cancel, hZ as CancelOrderRequest, gs as CaptureAuthorizedPaymentsRequest, d9 as CashRounding, gg as CashRoundingDetails, bd as CatalogReference, d5 as ChannelInfo, az as ChannelType, jz as ChannelTypeWithLiterals, fR as ChargeMembershipsRequest, fV as ChargeMembershipsResponse, gt as ChargeSavedPaymentMethodRequest, gu as ChargeSavedPaymentMethodResponse, aD as ChargeType, jD as ChargeTypeWithLiterals, ga as Chargeback, d1 as ChargebackCreated, d2 as ChargebackReversed, a$ as ChargebackStatus, j$ as ChargebackStatusWithLiterals, fQ 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, fP as CreatePaymentGatewayOrderRequest, d3 as CreatedBy, d4 as CreatedByStringOneOf, cS as CreditCardDetails, g4 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, fz as DelayedCaptureSettings, hT as DeleteActivityRequest, e3 as DeleteByFilterOperation, e2 as DeleteByIdsOperation, f0 as DeleteContext, aM as DeleteStatus, jM 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, fA as Duration, aP as DurationUnit, jP as DurationUnitWithLiterals, fp as EditorlessAssigned, fq as EditorlessUnassigned, iJ as Email, hJ as EmailEdited, eb as Empty, dR as EntityCreatedEvent, dU as EntityDeletedEvent, dT as EntityUpdatedEvent, gw as ErrorInformation, jc as EventMetadata, bF as ExtendedFields, c_ as ExternalReceipt, gf 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, fB as GetPaymentCollectabilityStatusRequest, fM as GetRefundabilityStatusRequest, il as GetShipmentsRequest, im as GetShipmentsResponse, gc as GiftCardPaymentDetails, cJ as GiftCardPaymentRefund, fr as HasCustomEmailConfigurationsRequest, fs as HasCustomEmailConfigurationsResponse, iG as IdAndVersion, dX as IdentificationData, dY as IdentificationDataIdOneOf, dM as ImportOrderRequest, dv as ImportedOrderDeleted, ht as InternalActivity, hu as InternalActivityContentOneOf, e0 as InternalDocument, e4 as InternalDocumentUpdateByFilterOperation, e1 as InternalDocumentUpdateOperation, gz as InternalQueryOrdersRequest, gF as InternalQueryOrdersResponse, e5 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, fv as IsInAutomationMigrationPopulationRequest, fw as IsInAutomationMigrationPopulationResponse, dC as ItemChangedDetails, ca as ItemCombination, cb as ItemCombinationLineItem, fJ 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, eE as LineItemRefund, gm 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, aU as ManuallyRefundableReason, jU as ManuallyRefundableReasonWithLiterals, h$ as MarkAsFulfilledRequest, i0 as MarkAsFulfilledResponse, i5 as MarkAsUnfulfilledRequest, i6 as MarkAsUnfulfilledResponse, fG as MarkOrderAsPaidRequest, hX as MarkOrderAsSeenByHumanRequest, hY as MarkOrderAsSeenByHumanResponse, hq as MaskedOrderLineItem, fS as MembershipChargeItem, fT as MembershipName, gd as MembershipPaymentDetails, cK as MembershipPaymentRefund, b0 as MembershipPaymentStatus, k0 as MembershipPaymentStatusWithLiterals, cf as MerchantComment, c5 as MerchantDiscount, c6 as MerchantDiscountMerchantDiscountReasonOneOf, dW as MessageEnvelope, j6 as MetaData, eW as MetaSiteSpecialEvent, eX as MetaSiteSpecialEventPayloadOneOf, bG as ModifierGroup, aL as Namespace, fa as NamespaceChanged, jL as NamespaceWithLiterals, ci as NewExchangeOrderCreated, aT as NonRefundableReason, jT as NonRefundableReasonWithLiterals, ff as OdeditorAssigned, fg 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, f_ as OrderTransactions, dq as OrdersExperiments, aN as Origin, jN as OriginWithLiterals, dj as OwnerApps, f$ as Payment, cT as PaymentCanceled, cU as PaymentCanceledPaymentDetailsOneOf, aQ as PaymentCollectabilityStatus, jQ as PaymentCollectabilityStatusWithLiterals, cV as PaymentDeclined, cW as PaymentDeclinedPaymentDetailsOneOf, gb as PaymentMethodName, ai as PaymentOptionType, jj as PaymentOptionTypeWithLiterals, g0 as PaymentPaymentDetailsOneOf, cO as PaymentPending, cP as PaymentPendingPaymentDetailsOneOf, g1 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, fh as PicassoAssigned, fi 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, aR as PredefinedPaymentMethod, jR as PredefinedPaymentMethodWithLiterals, fx as PreparePaymentCollectionRequest, eO as PreviewBuyerConfirmationEmailRequest, eP as PreviewBuyerConfirmationEmailResponse, eM as PreviewBuyerPaymentsReceivedEmailRequest, eN as PreviewBuyerPaymentsReceivedEmailResponse, eQ as PreviewBuyerPickupConfirmationEmailRequest, eR as PreviewBuyerPickupConfirmationEmailResponse, eI as PreviewCancelEmailRequest, eJ as PreviewCancelEmailResponse, eK as PreviewCancelRefundEmailRequest, eL as PreviewCancelRefundEmailResponse, ez as PreviewEmailByTypeRequest, eA as PreviewEmailByTypeResponse, aI as PreviewEmailType, jI as PreviewEmailTypeWithLiterals, eB as PreviewRefundEmailRequest, eH as PreviewRefundEmailResponse, eU as PreviewResendDownloadLinksEmailRequest, eV as PreviewResendDownloadLinksEmailResponse, eS as PreviewShippingConfirmationEmailRequest, eT as PreviewShippingConfirmationEmailResponse, bB as PriceDescription, bM as PriceSummary, bc as ProductName, hQ as PublicActivityContentOneOf, gI as QueryOrderRequest, gJ as QueryOrderResponse, iK as QuotesAddress, aZ as Reason, jZ as ReasonWithLiterals, cX as ReceiptCreated, cY as ReceiptCreatedReceiptInfoOneOf, c$ as ReceiptSent, d0 as ReceiptSentReceiptInfoOneOf, fC as RecordManuallyCollectedPaymentRequest, fF as RecordManuallyCollectedPaymentResponse, fy as RedirectUrls, gh as Refund, eC as RefundDetails, cF as RefundInitiated, eD as RefundItem, gl as RefundItemsBreakdown, fX as RefundSideEffects, b1 as RefundStatus, gj as RefundStatusInfo, k1 as RefundStatusWithLiterals, gi as RefundTransaction, fN as Refundability, fO as RefundabilityAdditionalRefundabilityInfoOneOf, aS as RefundableStatus, jS as RefundableStatusWithLiterals, cN as RefundedAsStoreCredit, cG as RefundedPayment, cH as RefundedPaymentKindOneOf, cQ as RegularPayment, g2 as RegularPaymentDetails, g3 as RegularPaymentDetailsPaymentMethodDetailsOneOf, cR as RegularPaymentPaymentMethodDetailsOneOf, cI as RegularPaymentRefund, iE as Reschedule, fY as RestockInfo, fZ as RestockItem, bp as RestockLocation, aV as RestockType, jV as RestockTypeWithLiterals, dS as RestoreInfo, cB as SavedPaymentMethod, aO as ScheduledAction, jO as ScheduledActionWithLiterals, gK as SearchOrdersRequest, ed as SendBuyerConfirmationEmailRequest, ee as SendBuyerConfirmationEmailResponse, ef as SendBuyerPaymentsReceivedEmailRequest, eg as SendBuyerPaymentsReceivedEmailResponse, eh as SendBuyerPickupConfirmationEmailRequest, ei as SendBuyerPickupConfirmationEmailResponse, el as SendBuyerShippingConfirmationEmailRequest, em as SendBuyerShippingConfirmationEmailResponse, er as SendCancelRefundEmailRequest, es as SendCancelRefundEmailResponse, ev as SendFulfillmentEmailRequest, ew as SendFulfillmentEmailResponse, ep as SendMerchantOrderReceivedNotificationRequest, eq as SendMerchantOrderReceivedNotificationResponse, ex as SendMerchantOrderReceivedPushRequest, ey as SendMerchantOrderReceivedPushResponse, iw as SendOrderUpdatedDomainEventRequest, ix as SendOrderUpdatedDomainEventResponse, et as SendRefundEmailRequest, eu as SendRefundEmailResponse, fU as ServiceProperties, f6 as ServiceProvisioned, f7 as ServiceRemoved, dN as SetOrderNumberCounterRequest, hI as ShippingAddressEdited, hE as ShippingConfirmationEmailSent, cA as ShippingInformation, cz as ShippingInformationChange, bZ as ShippingPrice, eG as ShippingRefund, b_ as ShippingRegion, eZ as SiteCreated, aK as SiteCreatedContext, jK as SiteCreatedContextWithLiterals, e$ as SiteDeleted, f9 as SiteHardDeleted, f4 as SiteMarkedAsTemplate, f5 as SiteMarkedAsWixSite, f2 as SitePublished, fe as SitePurgedExternally, f8 as SiteRenamed, e_ as SiteTransferred, f1 as SiteUndeleted, f3 as SiteUnpublished, fd 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, aJ as State, jJ as StateWithLiterals, bP as StreetAddress, fb as StudioAssigned, fl as StudioTwoAssigned, fm as StudioTwoUnassigned, fc 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, aW as TransactionStatus, jW as TransactionStatusWithLiterals, bH as TranslatableString, cv as TranslatedValue, fW as TriggerRefundRequest, ec as TriggerReindexOrderRequest, e9 as TriggerReindexRequest, ea 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, d_ as UpdateInternalDocumentsEvent, d$ 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, fD as UserDefinedPaymentMethodName, fE as UserDefinedPaymentMethodNameKindOneOf, fo as UserDomainMediaDisabled, fn 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, g9 as V1ScheduledAction, bT as V1ShippingInformation, j9 as Value, b8 as ValueType, k8 as ValueTypeWithLiterals, bS as VatId, aq as VatType, jr as VatTypeWithLiterals, e7 as VersionedDeleteByIdsOperation, e8 as VersionedDocumentId, e6 as VersionedDocumentUpdateOperation, aH as VersioningMode, jH as VersioningModeWithLiterals, gr as VoidAuthorizedPaymentsRequest, aG as WebhookIdentityType, jG as WebhookIdentityTypeWithLiterals, ap as WeightUnit, jq as WeightUnitWithLiterals, cZ as WixReceipt, ge as WixReceiptInfo, fj as WixelAssigned, fk as WixelUnassigned, jf as utils } from './ecom-v1-order-orders.universal-BpdIFm1L.js';
|
|
4
4
|
|
|
5
5
|
/** @internal */
|
|
6
6
|
declare function importOrder$1(httpClient: HttpClient): ImportOrderSignature;
|
|
@@ -53,6 +53,7 @@ __export(index_exports, {
|
|
|
53
53
|
OrderActivityTypeEnumActivityType: () => OrderActivityTypeEnumActivityType,
|
|
54
54
|
OrderApprovalStrategy: () => OrderApprovalStrategy,
|
|
55
55
|
OrderStatus: () => OrderStatus,
|
|
56
|
+
Origin: () => Origin,
|
|
56
57
|
PaymentCollectabilityStatus: () => PaymentCollectabilityStatus,
|
|
57
58
|
PaymentOptionType: () => PaymentOptionType,
|
|
58
59
|
PaymentStatus: () => PaymentStatus,
|
|
@@ -2164,6 +2165,12 @@ var DeleteStatus = /* @__PURE__ */ ((DeleteStatus2) => {
|
|
|
2164
2165
|
DeleteStatus2["PURGED_EXTERNALLY"] = "PURGED_EXTERNALLY";
|
|
2165
2166
|
return DeleteStatus2;
|
|
2166
2167
|
})(DeleteStatus || {});
|
|
2168
|
+
var Origin = /* @__PURE__ */ ((Origin2) => {
|
|
2169
|
+
Origin2["UNKNOWN_ORIGIN"] = "UNKNOWN_ORIGIN";
|
|
2170
|
+
Origin2["OPT_IN"] = "OPT_IN";
|
|
2171
|
+
Origin2["MIGRATION"] = "MIGRATION";
|
|
2172
|
+
return Origin2;
|
|
2173
|
+
})(Origin || {});
|
|
2167
2174
|
var ScheduledAction = /* @__PURE__ */ ((ScheduledAction2) => {
|
|
2168
2175
|
ScheduledAction2["UNSPECIFIED"] = "UNSPECIFIED";
|
|
2169
2176
|
ScheduledAction2["VOID"] = "VOID";
|
|
@@ -4171,6 +4178,7 @@ var onOrderUpdated2 = (0, import_event_definition_modules.createEventModule)(onO
|
|
|
4171
4178
|
OrderActivityTypeEnumActivityType,
|
|
4172
4179
|
OrderApprovalStrategy,
|
|
4173
4180
|
OrderStatus,
|
|
4181
|
+
Origin,
|
|
4174
4182
|
PaymentCollectabilityStatus,
|
|
4175
4183
|
PaymentOptionType,
|
|
4176
4184
|
PaymentStatus,
|