@wix/auto_sdk_ecom_orders 1.0.144 → 1.0.145
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-CRTnOQB3.d.ts → ecom-v1-order-orders.universal-BlFIYeAo.d.ts} +66 -66
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +15 -15
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +15 -15
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +66 -66
- package/build/cjs/meta.js +15 -15
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-CRTnOQB3.d.mts → ecom-v1-order-orders.universal-BlFIYeAo.d.mts} +66 -66
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +15 -15
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +15 -15
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +66 -66
- package/build/es/meta.mjs +15 -15
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-CjdFmcMT.d.ts → ecom-v1-order-orders.universal-zh_hrpdy.d.ts} +66 -66
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +15 -15
- 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 +15 -15
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +66 -66
- package/build/internal/cjs/meta.js +15 -15
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{ecom-v1-order-orders.universal-CjdFmcMT.d.mts → ecom-v1-order-orders.universal-zh_hrpdy.d.mts} +66 -66
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +15 -15
- 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 +15 -15
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +66 -66
- package/build/internal/es/meta.mjs +15 -15
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -3251,6 +3251,71 @@ declare enum WebhookIdentityType {
|
|
|
3251
3251
|
}
|
|
3252
3252
|
/** @enumType */
|
|
3253
3253
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
3254
|
+
declare enum AdditionalFeeSource {
|
|
3255
|
+
UNKNOWN_ADDITIONAL_FEE_SOURCE = "UNKNOWN_ADDITIONAL_FEE_SOURCE",
|
|
3256
|
+
/** The additional fee was added by an additional fee service plugin. */
|
|
3257
|
+
SERVICE_PLUGIN = "SERVICE_PLUGIN",
|
|
3258
|
+
/** The additional fee was added to the item by a catalog or custom line item. */
|
|
3259
|
+
ITEM = "ITEM",
|
|
3260
|
+
/** The additional fee was added manually on request. */
|
|
3261
|
+
MANUAL = "MANUAL",
|
|
3262
|
+
/** The additional fee was added by the shipping provider. */
|
|
3263
|
+
SHIPPING = "SHIPPING",
|
|
3264
|
+
/** The additional fee was added by the Wix eCommerce platform. */
|
|
3265
|
+
PLATFORM = "PLATFORM"
|
|
3266
|
+
}
|
|
3267
|
+
/** @enumType */
|
|
3268
|
+
type AdditionalFeeSourceWithLiterals = AdditionalFeeSource | 'UNKNOWN_ADDITIONAL_FEE_SOURCE' | 'SERVICE_PLUGIN' | 'ITEM' | 'MANUAL' | 'SHIPPING' | 'PLATFORM';
|
|
3269
|
+
interface PlatformFeeSummary {
|
|
3270
|
+
/** Total sum of all platform fees. */
|
|
3271
|
+
total?: Price;
|
|
3272
|
+
/** Total amount of platform fees with `PASS_ON` charge type. */
|
|
3273
|
+
totalPassOn?: Price;
|
|
3274
|
+
/** Total amount of platform fees with `ABSORBED` charge type. */
|
|
3275
|
+
totalAbsorbed?: Price;
|
|
3276
|
+
/**
|
|
3277
|
+
* Specific information about each platform fee.
|
|
3278
|
+
* @maxSize 300
|
|
3279
|
+
*/
|
|
3280
|
+
fees?: PlatformFee[];
|
|
3281
|
+
}
|
|
3282
|
+
interface PlatformFee {
|
|
3283
|
+
/** Platform fee name. */
|
|
3284
|
+
name?: TranslatableString;
|
|
3285
|
+
/** Platform fee amount. */
|
|
3286
|
+
amount?: Price;
|
|
3287
|
+
/**
|
|
3288
|
+
* ID of the line item the platform fee applies to.
|
|
3289
|
+
* @format GUID
|
|
3290
|
+
*/
|
|
3291
|
+
lineItemId?: string;
|
|
3292
|
+
/** Platform fee charge type. */
|
|
3293
|
+
chargeType?: ChargeTypeWithLiterals;
|
|
3294
|
+
/**
|
|
3295
|
+
* Percentage rate charged as platform fee.
|
|
3296
|
+
* The fee rate expressed as a decimal fraction between 0 and 1. For example, `0.05` for 5%.
|
|
3297
|
+
* @format DECIMAL_VALUE
|
|
3298
|
+
* @decimalValue options { gte:0, lte:1, maxScale:4 }
|
|
3299
|
+
*/
|
|
3300
|
+
percentageRate?: string;
|
|
3301
|
+
}
|
|
3302
|
+
declare enum ChargeType {
|
|
3303
|
+
UNKNOWN_CHARGE_TYPE = "UNKNOWN_CHARGE_TYPE",
|
|
3304
|
+
/**
|
|
3305
|
+
* Platform fee passed on to buyer.
|
|
3306
|
+
*
|
|
3307
|
+
* This type increases the order total, and is visible to the buyer and merchant as an additional fee.
|
|
3308
|
+
*/
|
|
3309
|
+
PASS_ON = "PASS_ON",
|
|
3310
|
+
/**
|
|
3311
|
+
* Platform fee absorbed by merchant.
|
|
3312
|
+
*
|
|
3313
|
+
* This type does not increase the order total, and is only visible to the merchant.
|
|
3314
|
+
*/
|
|
3315
|
+
ABSORBED = "ABSORBED"
|
|
3316
|
+
}
|
|
3317
|
+
/** @enumType */
|
|
3318
|
+
type ChargeTypeWithLiterals = ChargeType | 'UNKNOWN_CHARGE_TYPE' | 'PASS_ON' | 'ABSORBED';
|
|
3254
3319
|
interface SendBuyerConfirmationEmailRequest {
|
|
3255
3320
|
/** @format GUID */
|
|
3256
3321
|
orderId?: string;
|
|
@@ -4827,71 +4892,6 @@ interface TriggerReindexOrderRequest {
|
|
|
4827
4892
|
*/
|
|
4828
4893
|
orderId?: string;
|
|
4829
4894
|
}
|
|
4830
|
-
declare enum AdditionalFeeSource {
|
|
4831
|
-
UNKNOWN_ADDITIONAL_FEE_SOURCE = "UNKNOWN_ADDITIONAL_FEE_SOURCE",
|
|
4832
|
-
/** The additional fee was added by an additional fee service plugin. */
|
|
4833
|
-
SERVICE_PLUGIN = "SERVICE_PLUGIN",
|
|
4834
|
-
/** The additional fee was added to the item by a catalog or custom line item. */
|
|
4835
|
-
ITEM = "ITEM",
|
|
4836
|
-
/** The additional fee was added manually on request. */
|
|
4837
|
-
MANUAL = "MANUAL",
|
|
4838
|
-
/** The additional fee was added by the shipping provider. */
|
|
4839
|
-
SHIPPING = "SHIPPING",
|
|
4840
|
-
/** The additional fee was added by the Wix eCommerce platform. */
|
|
4841
|
-
PLATFORM = "PLATFORM"
|
|
4842
|
-
}
|
|
4843
|
-
/** @enumType */
|
|
4844
|
-
type AdditionalFeeSourceWithLiterals = AdditionalFeeSource | 'UNKNOWN_ADDITIONAL_FEE_SOURCE' | 'SERVICE_PLUGIN' | 'ITEM' | 'MANUAL' | 'SHIPPING' | 'PLATFORM';
|
|
4845
|
-
interface PlatformFeeSummary {
|
|
4846
|
-
/** Total sum of all platform fees. */
|
|
4847
|
-
total?: Price;
|
|
4848
|
-
/** Total amount of platform fees with `PASS_ON` charge type. */
|
|
4849
|
-
totalPassOn?: Price;
|
|
4850
|
-
/** Total amount of platform fees with `ABSORBED` charge type. */
|
|
4851
|
-
totalAbsorbed?: Price;
|
|
4852
|
-
/**
|
|
4853
|
-
* Specific information about each platform fee.
|
|
4854
|
-
* @maxSize 300
|
|
4855
|
-
*/
|
|
4856
|
-
fees?: PlatformFee[];
|
|
4857
|
-
}
|
|
4858
|
-
interface PlatformFee {
|
|
4859
|
-
/** Platform fee name. */
|
|
4860
|
-
name?: TranslatableString;
|
|
4861
|
-
/** Platform fee amount. */
|
|
4862
|
-
amount?: Price;
|
|
4863
|
-
/**
|
|
4864
|
-
* ID of the line item the platform fee applies to.
|
|
4865
|
-
* @format GUID
|
|
4866
|
-
*/
|
|
4867
|
-
lineItemId?: string;
|
|
4868
|
-
/** Platform fee charge type. */
|
|
4869
|
-
chargeType?: ChargeTypeWithLiterals;
|
|
4870
|
-
/**
|
|
4871
|
-
* Percentage rate charged as platform fee.
|
|
4872
|
-
* The fee rate expressed as a decimal fraction between 0 and 1. For example, `0.05` for 5%.
|
|
4873
|
-
* @format DECIMAL_VALUE
|
|
4874
|
-
* @decimalValue options { gte:0, lte:1, maxScale:4 }
|
|
4875
|
-
*/
|
|
4876
|
-
percentageRate?: string;
|
|
4877
|
-
}
|
|
4878
|
-
declare enum ChargeType {
|
|
4879
|
-
UNKNOWN_CHARGE_TYPE = "UNKNOWN_CHARGE_TYPE",
|
|
4880
|
-
/**
|
|
4881
|
-
* Platform fee passed on to buyer.
|
|
4882
|
-
*
|
|
4883
|
-
* This type increases the order total, and is visible to the buyer and merchant as an additional fee.
|
|
4884
|
-
*/
|
|
4885
|
-
PASS_ON = "PASS_ON",
|
|
4886
|
-
/**
|
|
4887
|
-
* Platform fee absorbed by merchant.
|
|
4888
|
-
*
|
|
4889
|
-
* This type does not increase the order total, and is only visible to the merchant.
|
|
4890
|
-
*/
|
|
4891
|
-
ABSORBED = "ABSORBED"
|
|
4892
|
-
}
|
|
4893
|
-
/** @enumType */
|
|
4894
|
-
type ChargeTypeWithLiterals = ChargeType | 'UNKNOWN_CHARGE_TYPE' | 'PASS_ON' | 'ABSORBED';
|
|
4895
4895
|
interface DiffmatokyPayload {
|
|
4896
4896
|
left?: string;
|
|
4897
4897
|
right?: string;
|
|
@@ -8401,4 +8401,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
8401
8401
|
unassignTags?: Tags;
|
|
8402
8402
|
}
|
|
8403
8403
|
|
|
8404
|
-
export { type OrderStatusWithLiterals as $, type BulkUpdateOrdersResponse as A, type BulkDeleteImportedOrdersOptions as B, type CreatePaymentGatewayOrderResponse as C, type UpdateOrderLineItemIdentifiers as D, type UpdateOrderLineItem as E, type UpdateOrderLineItemResponse as F, type GetPaymentCollectabilityStatusResponse as G, type PublicActivity as H, type ImportOrderResponse as I, type AddActivityResponse as J, type AddActivitiesOptions as K, type AddActivitiesResponse as L, type MarkOrderAsPaidResponse as M, type UpdateActivityIdentifiers as N, type Order as O, type Price as P, type UpdateActivityResponse as Q, type RecordManuallyCollectedPaymentApplicationErrors as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type DeleteActivityIdentifiers as W, type DeleteActivityResponse as X, type CancelOrderOptions as Y, type CancelOrderResponse as Z, type CancelOrderApplicationErrors as _, type SetOrderNumberCounterResponse as a, type OrderLineItem as a$, type UpdateOrderStatusResponse as a0, type UpdateOrderStatusApplicationErrors as a1, type AggregateOrdersOptions as a2, type AggregateOrdersResponse as a3, type BulkUpdateOrderTagsOptions as a4, type BulkUpdateOrderTagsResponse as a5, type OrderApprovedEnvelope as a6, type OrderUpdatedEnvelope as a7, type OrderCanceledEnvelope as a8, type OrderCreatedEnvelope as a9, PaymentCollectabilityStatus as aA, RefundableStatus as aB, NonRefundableReason as aC, ManuallyRefundableReason as aD, RestockType as aE, TransactionStatus as aF, AuthorizationCaptureStatus as aG, AuthorizationVoidStatus as aH, Reason as aI, ActionType as aJ, ChargebackStatus as aK, MembershipPaymentStatus as aL, RefundStatus as aM, VersioningMode as aN, AdditionalFeeSource as aO, ChargeType as aP, SortOrder as aQ, OrderApprovalStrategy as aR, DeltaPaymentOptionType as aS, InventoryAction as aT, Placement as aU, SubdivisionType as aV, SourceType as aW, CustomFieldGroup as aX, ValueType as aY, DepositType as aZ, InvoiceStatus as a_, type OrderPaymentStatusUpdatedEnvelope as aa, DescriptionLineType as ab, ItemTypePreset as ac, PaymentOptionType as ad, JurisdictionType as ae, SubscriptionFrequency as af, AdjustmentType as ag, TaxableAddressType as ah, PaymentStatus as ai, FulfillmentStatus as aj, WeightUnit as ak, VatType as al, PickupMethod as am, OrderStatus as an, DiscountType as ao, DiscountReason as ap, LineItemQuantityChangeType as aq, ActivityType as ar, OrderActivityTypeEnumActivityType as as, AttributionSource as at, ChannelType as au, OrderActionType as av, WebhookIdentityType as aw, PreviewEmailType as ax, ScheduledAction as ay, DurationUnit as az, type BulkDeleteImportedOrdersResponse as b, type MerchantComment as b$, type ProductName as b0, type CatalogReference as b1, type DescriptionLine as b2, type DescriptionLineValueOneOf as b3, type DescriptionLineDescriptionLineValueOneOf as b4, type DescriptionLineName as b5, type PlainTextValue as b6, type Color as b7, type FocalPoint as b8, type PhysicalProperties as b9, type Address as bA, type StreetAddress as bB, type AddressLocation as bC, type FullAddressContactDetails as bD, type VatId as bE, type V1ShippingInformation as bF, type DeliveryLogistics as bG, type DeliveryLogisticsAddressOneOf as bH, type PickupDetails as bI, type PickupAddress as bJ, type DeliveryTimeSlot as bK, type ShippingPrice as bL, type ShippingRegion as bM, type TaxSummary as bN, type OrderTaxInfo as bO, type OrderTaxBreakdown as bP, type AppliedDiscount as bQ, type AppliedDiscountDiscountSourceOneOf as bR, type Coupon as bS, type MerchantDiscount as bT, type MerchantDiscountMerchantDiscountReasonOneOf as bU, type DiscountRule as bV, type DiscountRuleName as bW, type LineItemDiscount as bX, type Activity as bY, type ActivityContentOneOf as bZ, type CustomActivity as b_, type ItemType as ba, type ItemTypeItemTypeDataOneOf as bb, type ItemTaxFullDetails as bc, type LineItemTaxInfo as bd, type LineItemTaxBreakdown as be, type DigitalFile as bf, type SubscriptionInfo as bg, type SubscriptionTitle as bh, type SubscriptionDescription as bi, type SubscriptionSettings as bj, type FreeTrialPeriod as bk, type BillingAdjustment as bl, type BillingAdjustmentPriceSummary as bm, type PriceDescription as bn, type LocationAndQuantity as bo, type TaxableAddress as bp, type TaxableAddressTaxableAddressDataOneOf as bq, type ExtendedFields as br, type ModifierGroup as bs, type TranslatableString as bt, type ItemModifier as bu, type BuyerInfo as bv, type BuyerInfoIdOneOf as bw, type CurrencyConversionDetails as bx, type PriceSummary as by, type AddressWithContact as bz, type PreparePaymentCollectionOptions as c, type OrderSettingsAllowedActionsOneOf as c$, type OrderRefunded as c0, type OrderCreatedFromExchange as c1, type NewExchangeOrderCreated as c2, type LineItemExchangeData as c3, type DraftOrderChangesApplied as c4, type OrderChange as c5, type OrderChangeValueOneOf as c6, type LineItemChanges as c7, type LineItemQuantityChange as c8, type LineItemPriceChange as c9, type RegularPayment as cA, type RegularPaymentPaymentMethodDetailsOneOf as cB, type CreditCardDetails as cC, type PaymentCanceled as cD, type PaymentCanceledPaymentDetailsOneOf as cE, type PaymentDeclined as cF, type PaymentDeclinedPaymentDetailsOneOf as cG, type ReceiptCreated as cH, type ReceiptCreatedReceiptInfoOneOf as cI, type WixReceipt as cJ, type ExternalReceipt as cK, type ReceiptSent as cL, type ReceiptSentReceiptInfoOneOf as cM, type ChargebackCreated as cN, type ChargebackReversed as cO, type CreatedBy as cP, type CreatedByStringOneOf as cQ, type ChannelInfo as cR, type CustomField as cS, type BalanceSummary as cT, type Balance as cU, type AdditionalFee as cV, type FulfillmentStatusesAggregate as cW, type Tags as cX, type TagList as cY, type Location as cZ, type OrderSettings as c_, type LineItemProductNameChange as ca, type LineItemDescriptionLineChange as cb, type LineItemModifiersChange as cc, type ManagedLineItem as cd, type ManagedDiscount as ce, type TranslatedValue as cf, type LineItemAmount as cg, type ManagedAdditionalFee as ch, type TotalPriceChange as ci, type ShippingInformationChange as cj, type ShippingInformation as ck, type SavedPaymentMethod as cl, type AuthorizedPaymentCreated as cm, type AuthorizedPaymentCaptured as cn, type AuthorizedPaymentVoided as co, type RefundInitiated as cp, type RefundedPayment as cq, type RefundedPaymentKindOneOf as cr, type RegularPaymentRefund as cs, type GiftCardPaymentRefund as ct, type MembershipPaymentRefund as cu, type PaymentRefunded as cv, type PaymentRefundFailed as cw, type RefundedAsStoreCredit as cx, type PaymentPending as cy, type PaymentPendingPaymentDetailsOneOf as cz, type PreparePaymentCollectionResponse as d, type PreviewShippingConfirmationEmailRequest as d$, type CustomAllowedActions as d0, type FormInfo as d1, type FormIdentifier as d2, type OrderApproved as d3, type OrdersExperiments as d4, type OrderRejectedEventOrderRejected as d5, type OrderItemsRestocked as d6, type V1RestockItem as d7, type OrderImported as d8, type ImportedOrderDeleted as d9, type SendMerchantOrderReceivedNotificationRequest as dA, type SendMerchantOrderReceivedNotificationResponse as dB, type SendCancelRefundEmailRequest as dC, type SendCancelRefundEmailResponse as dD, type SendRefundEmailRequest as dE, type SendRefundEmailResponse as dF, type SendMerchantOrderReceivedPushRequest as dG, type SendMerchantOrderReceivedPushResponse as dH, type PreviewEmailByTypeRequest as dI, type PreviewEmailByTypeResponse as dJ, type PreviewRefundEmailRequest as dK, type RefundDetails as dL, type RefundItem as dM, type LineItemRefund as dN, type AdditionalFeeRefund as dO, type ShippingRefund as dP, type PreviewRefundEmailResponse as dQ, type PreviewCancelEmailRequest as dR, type PreviewCancelEmailResponse as dS, type PreviewCancelRefundEmailRequest as dT, type PreviewCancelRefundEmailResponse as dU, type PreviewBuyerPaymentsReceivedEmailRequest as dV, type PreviewBuyerPaymentsReceivedEmailResponse as dW, type PreviewBuyerConfirmationEmailRequest as dX, type PreviewBuyerConfirmationEmailResponse as dY, type PreviewBuyerPickupConfirmationEmailRequest as dZ, type PreviewBuyerPickupConfirmationEmailResponse as d_, type ImportOrderRequest as da, type SetOrderNumberCounterRequest as db, type BulkDeleteImportedOrdersRequest as dc, type DomainEvent as dd, type DomainEventBodyOneOf as de, type EntityCreatedEvent as df, type RestoreInfo as dg, type EntityUpdatedEvent as dh, type EntityDeletedEvent as di, type ActionEvent as dj, type MessageEnvelope as dk, type IdentificationData as dl, type IdentificationDataIdOneOf as dm, type SendBuyerConfirmationEmailRequest as dn, type SendBuyerConfirmationEmailResponse as dp, type SendBuyerPaymentsReceivedEmailRequest as dq, type SendBuyerPaymentsReceivedEmailResponse as dr, type SendBuyerPickupConfirmationEmailRequest as ds, type SendBuyerPickupConfirmationEmailResponse as dt, type BulkSendBuyerPickupConfirmationEmailsRequest as du, type BulkSendBuyerPickupConfirmationEmailsResponse as dv, type SendBuyerShippingConfirmationEmailRequest as dw, type SendBuyerShippingConfirmationEmailResponse as dx, type BulkSendBuyerShippingConfirmationEmailsRequest as dy, type BulkSendBuyerShippingConfirmationEmailsResponse as dz, type PreparePaymentCollectionApplicationErrors as e, type UpdateInternalDocumentsEventOperationOneOf as e$, type PreviewShippingConfirmationEmailResponse as e0, type PreviewResendDownloadLinksEmailRequest as e1, type PreviewResendDownloadLinksEmailResponse as e2, type Empty as e3, type PreparePaymentCollectionRequest as e4, type RedirectUrls as e5, type DelayedCaptureSettings as e6, type Duration as e7, type GetPaymentCollectabilityStatusRequest as e8, type RecordManuallyCollectedPaymentRequest as e9, type RegularPaymentDetailsPaymentMethodDetailsOneOf as eA, type CreditCardPaymentMethodDetails as eB, type AuthorizationDetails as eC, type AuthorizationCapture as eD, type AuthorizationActionFailureDetails as eE, type AuthorizationVoid as eF, type V1ScheduledAction as eG, type Chargeback as eH, type GiftCardPaymentDetails as eI, type MembershipPaymentDetails as eJ, type WixReceiptInfo as eK, type ExternalReceiptInfo as eL, type Refund as eM, type RefundTransaction as eN, type RefundStatusInfo as eO, type AggregatedRefundSummary as eP, type RefundItemsBreakdown as eQ, type LineItemRefundSummary as eR, type CalculateRefundRequest as eS, type CalculateRefundItemRequest as eT, type CalculateRefundResponse as eU, type CalculateRefundItemResponse as eV, type VoidAuthorizedPaymentsRequest as eW, type CaptureAuthorizedPaymentsRequest as eX, type ChargeSavedPaymentMethodRequest as eY, type ChargeSavedPaymentMethodResponse as eZ, type UpdateInternalDocumentsEvent as e_, type RecordManuallyCollectedPaymentResponse as ea, type MarkOrderAsPaidRequest as eb, type BulkMarkOrdersAsPaidRequest as ec, type BulkOrderResult as ed, type ItemMetadata as ee, type ApplicationError as ef, type BulkActionMetadata as eg, type GetRefundabilityStatusRequest as eh, type Refundability as ei, type RefundabilityAdditionalRefundabilityInfoOneOf as ej, type CreatePaymentGatewayOrderRequest as ek, type ChargedBy as el, type ChargeMembershipsRequest as em, type MembershipChargeItem as en, type MembershipName as eo, type ServiceProperties as ep, type ChargeMembershipsResponse as eq, type TriggerRefundRequest as er, type RefundSideEffects as es, type RestockInfo as et, type RestockItem as eu, type OrderTransactions as ev, type Payment as ew, type PaymentPaymentDetailsOneOf as ex, type PaymentReceiptInfoOneOf as ey, type RegularPaymentDetails as ez, type PaymentCollectionMarkOrderAsPaidApplicationErrors as f, type ArchiveOrderRequest as f$, type InternalDocument as f0, type InternalDocumentUpdateOperation as f1, type DeleteByIdsOperation as f2, type DeleteByFilterOperation as f3, type InternalDocumentUpdateByFilterOperation as f4, type InternalUpdateExistingOperation as f5, type VersionedDocumentUpdateOperation as f6, type VersionedDeleteByIdsOperation as f7, type VersionedDocumentId as f8, type TriggerReindexRequest as f9, type OrderCreateNotifications as fA, type CreateOrderResponse as fB, type UpdateOrderRequest as fC, type UpdateOrderResponse as fD, type BulkUpdateOrdersRequest as fE, type CommitDeltasRequest as fF, type DraftOrderDiffs as fG, type DraftOrderDiffsShippingUpdateInfoOneOf as fH, type DraftOrderDiffsBuyerUpdateInfoOneOf as fI, type DraftOrderDiffsBillingUpdateInfoOneOf as fJ, type DraftOrderDiffsRecipientUpdateInfoOneOf as fK, type V1LineItemDelta as fL, type V1LineItemDeltaDeltaOneOf as fM, type OrderLineItemChangedDetails as fN, type ItemChangedDetails as fO, type AppliedDiscountDelta as fP, type AppliedDiscountDeltaDeltaOneOf as fQ, type AdditionalFeeDelta as fR, type AdditionalFeeDeltaDeltaOneOf as fS, type DraftOrderCommitSettings as fT, type InventoryUpdateDetails as fU, type CommitDeltasResponse as fV, type OrderDeltasCommitted as fW, type CommittedDiffs as fX, type CommittedDiffsShippingUpdateInfoOneOf as fY, type LineItemDelta as fZ, type LineItemDeltaDeltaOneOf as f_, type TriggerReindexResponse as fa, type BatchOfTriggerReindexOrderRequest as fb, type TriggerReindexOrderRequest as fc, type PlatformFeeSummary as fd, type PlatformFee as fe, type DiffmatokyPayload as ff, type ErrorInformation as fg, type GetOrderRequest as fh, type GetOrderResponse as fi, type InternalQueryOrdersRequest as fj, type PlatformQuery as fk, type PlatformQueryPagingMethodOneOf as fl, type Sorting as fm, type PlatformPaging as fn, type CursorPaging as fo, type InternalQueryOrdersResponse as fp, type PlatformPagingMetadata as fq, type Cursors as fr, type QueryOrderRequest as fs, type QueryOrderResponse as ft, type SearchOrdersRequest as fu, type CursorSearch as fv, type CursorSearchPagingMethodOneOf as fw, type CursorPagingMetadata as fx, type CreateOrderRequest as fy, type OrderCreationSettings as fz, type BulkMarkOrdersAsPaidResponse as g, type BulkMarkAsFulfilledRequest as g$, type ArchiveOrderResponse as g0, type BulkArchiveOrdersRequest as g1, type BulkArchiveOrdersResponse as g2, type BulkArchiveOrdersByFilterRequest as g3, type BulkArchiveOrdersByFilterResponse as g4, type UnArchiveOrderRequest as g5, type UnArchiveOrderResponse as g6, type BulkUnArchiveOrdersRequest as g7, type BulkUnArchiveOrdersResponse as g8, type BulkUnArchiveOrdersByFilterRequest as g9, type ShippingConfirmationEmailSent as gA, type InvoiceAdded as gB, type InvoiceSent as gC, type FulfillerEmailSent as gD, type ShippingAddressEdited as gE, type EmailEdited as gF, type PickupReadyEmailSent as gG, type OrderPartiallyPaid as gH, type OrderPending as gI, type OrderRejected as gJ, type AddInternalActivityResponse as gK, type AddActivityRequest as gL, type PublicActivityContentOneOf as gM, type AddActivitiesRequest as gN, type UpdateActivityRequest as gO, type DeleteActivityRequest as gP, type UpdateLineItemsDescriptionLinesRequest as gQ, type LineItemUpdate as gR, type UpdateLineItemsDescriptionLinesResponse as gS, type MarkOrderAsSeenByHumanRequest as gT, type MarkOrderAsSeenByHumanResponse as gU, type CancelOrderRequest as gV, type OrderCanceledEventOrderCanceled as gW, type UpdateOrderStatusRequest as gX, type MarkAsFulfilledRequest as gY, type MarkAsFulfilledResponse as gZ, type FulfillmentStatusUpdated as g_, type BulkUnArchiveOrdersByFilterResponse as ga, type UpdateBuyerInfoRequest as gb, type BuyerInfoUpdate as gc, type UpdateBuyerInfoResponse as gd, type UpdateBuyerEmailRequest as ge, type UpdateBuyerEmailResponse as gf, type UpdateOrderShippingAddressRequest as gg, type UpdateOrderShippingAddressResponse as gh, type UpdateBillingContactDetailsRequest as gi, type UpdateBillingContactDetailsResponse as gj, type UpdateOrderLineItemRequest as gk, type UpdateOrderLineItemsRequest as gl, type MaskedOrderLineItem as gm, type UpdateOrderLineItemsResponse as gn, type AddInternalActivityRequest as go, type InternalActivity as gp, type InternalActivityContentOneOf as gq, type OrderPlaced as gr, type OrderPaid as gs, type OrderFulfilled as gt, type OrderNotFulfilled as gu, type OrderCanceled as gv, type DownloadLinkSent as gw, type TrackingNumberAdded as gx, type TrackingNumberEdited as gy, type TrackingLinkAdded as gz, type GetRefundabilityStatusResponse as h, type MetaData as h$, type BulkMarkAsFulfilledResponse as h0, type BulkMarkAsFulfilledByFilterRequest as h1, type BulkMarkAsFulfilledByFilterResponse as h2, type MarkAsUnfulfilledRequest as h3, type MarkAsUnfulfilledResponse as h4, type BulkMarkAsUnfulfilledRequest as h5, type BulkMarkAsUnfulfilledResponse as h6, type BulkMarkAsUnfulfilledByFilterRequest as h7, type BulkMarkAsUnfulfilledByFilterResponse as h8, type BulkSetBusinessLocationRequest as h9, type InvoiceFields as hA, type Customer as hB, type Email as hC, type QuotesAddress as hD, type AddressDescription as hE, type Phone as hF, type Company as hG, type CommonAddress as hH, type CommonAddressStreetOneOf as hI, type Subdivision as hJ, type StandardDetails as hK, type InvoiceDates as hL, type LineItems as hM, type LineItem as hN, type BigDecimalWrapper as hO, type LineItemTax as hP, type Source as hQ, type LineItemMetaData as hR, type Locale as hS, type TotalPrice as hT, type ItemizedFee as hU, type Discount as hV, type DiscountOneDiscountTypeOneOf as hW, type CalculatedTaxes as hX, type CalculatedTax as hY, type Payments as hZ, type InvoicesPayment as h_, type BulkSetBusinessLocationResponse as ha, type BulkSetBusinessLocationResult as hb, type V1MarkOrderAsPaidRequest as hc, type V1MarkOrderAsPaidResponse as hd, type PaymentStatusUpdated as he, type V1BulkMarkOrdersAsPaidRequest as hf, type V1BulkMarkOrdersAsPaidResponse as hg, type V1CreatePaymentGatewayOrderRequest as hh, type V1CreatePaymentGatewayOrderResponse as hi, type GetShipmentsRequest as hj, type GetShipmentsResponse as hk, type AggregateOrdersRequest as hl, type DecrementItemsQuantityRequest as hm, type DecrementData as hn, type DecrementItemsQuantityResponse as ho, type BulkUpdateOrderTagsRequest as hp, type BulkUpdateOrderTagsResult as hq, type Task as hr, type TaskKey as hs, type TaskAction as ht, type TaskActionActionOneOf as hu, type Complete as hv, type Cancel as hw, type Reschedule as hx, type InvoiceSentEvent as hy, type IdAndVersion as hz, type PaymentCollectionCreatePaymentGatewayOrderOptions as i, onOrderCanceled as i$, type InvoiceDynamicPriceTotals as i0, type CustomFieldValue as i1, type Value as i2, type Deposit as i3, type BaseEventMetadata as i4, type EventMetadata as i5, type OrderSearchSpec as i6, type DescriptionLineTypeWithLiterals as i7, type ItemTypePresetWithLiterals as i8, type PaymentOptionTypeWithLiterals as i9, type ManuallyRefundableReasonWithLiterals as iA, type RestockTypeWithLiterals as iB, type TransactionStatusWithLiterals as iC, type AuthorizationCaptureStatusWithLiterals as iD, type AuthorizationVoidStatusWithLiterals as iE, type ReasonWithLiterals as iF, type ActionTypeWithLiterals as iG, type ChargebackStatusWithLiterals as iH, type MembershipPaymentStatusWithLiterals as iI, type RefundStatusWithLiterals as iJ, type VersioningModeWithLiterals as iK, type AdditionalFeeSourceWithLiterals as iL, type ChargeTypeWithLiterals as iM, type SortOrderWithLiterals as iN, type OrderApprovalStrategyWithLiterals as iO, type DeltaPaymentOptionTypeWithLiterals as iP, type InventoryActionWithLiterals as iQ, type PlacementWithLiterals as iR, type SubdivisionTypeWithLiterals as iS, type SourceTypeWithLiterals as iT, type CustomFieldGroupWithLiterals as iU, type ValueTypeWithLiterals as iV, type DepositTypeWithLiterals as iW, type InvoiceStatusWithLiterals as iX, type CommonSearchWithEntityContext as iY, onOrderApproved as iZ, onOrderUpdated as i_, type JurisdictionTypeWithLiterals as ia, type SubscriptionFrequencyWithLiterals as ib, type AdjustmentTypeWithLiterals as ic, type TaxableAddressTypeWithLiterals as id, type PaymentStatusWithLiterals as ie, type FulfillmentStatusWithLiterals as ig, type WeightUnitWithLiterals as ih, type VatTypeWithLiterals as ii, type PickupMethodWithLiterals as ij, type DiscountTypeWithLiterals as ik, type DiscountReasonWithLiterals as il, type LineItemQuantityChangeTypeWithLiterals as im, type ActivityTypeWithLiterals as io, type OrderActivityTypeEnumActivityTypeWithLiterals as ip, type AttributionSourceWithLiterals as iq, type ChannelTypeWithLiterals as ir, type OrderActionTypeWithLiterals as is, type WebhookIdentityTypeWithLiterals as it, type PreviewEmailTypeWithLiterals as iu, type ScheduledActionWithLiterals as iv, type DurationUnitWithLiterals as iw, type PaymentCollectabilityStatusWithLiterals as ix, type RefundableStatusWithLiterals as iy, type NonRefundableReasonWithLiterals as iz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as j, onOrderCreated as j0, onOrderPaymentStatusUpdated as j1, importOrder as j2, setOrderNumberCounter as j3, bulkDeleteImportedOrders as j4, preparePaymentCollection as j5, getPaymentCollectabilityStatus as j6, recordManuallyCollectedPayment as j7, paymentCollectionMarkOrderAsPaid as j8, paymentCollectionBulkMarkOrdersAsPaid as j9, getRefundabilityStatus as ja, paymentCollectionCreatePaymentGatewayOrder as jb, chargeMemberships as jc, triggerRefund as jd, voidAuthorizedPayments as je, captureAuthorizedPayments as jf, getOrder as jg, createOrder as jh, updateOrder as ji, bulkUpdateOrders as jj, updateOrderLineItem as jk, addActivity as jl, addActivities as jm, updateActivity as jn, deleteActivity as jo, cancelOrder as jp, updateOrderStatus as jq, aggregateOrders as jr, bulkUpdateOrderTags as js, type ChargeMembershipsOptions as k, type PaymentRefund as l, type TriggerRefundResponse as m, type TriggerRefundApplicationErrors as n, type VoidAuthorizedPaymentsApplicationErrors as o, type PaymentCapture as p, type CaptureAuthorizedPaymentsResponse as q, type CaptureAuthorizedPaymentsApplicationErrors as r, type GetOrderApplicationErrors as s, type OrderSearch as t, type SearchOrdersResponse as u, type CreateOrderOptions as v, type CreateOrderApplicationErrors as w, type UpdateOrderApplicationErrors as x, type MaskedOrder as y, type BulkUpdateOrdersOptions as z };
|
|
8404
|
+
export { type OrderStatusWithLiterals as $, type BulkUpdateOrdersResponse as A, type BulkDeleteImportedOrdersOptions as B, type CreatePaymentGatewayOrderResponse as C, type UpdateOrderLineItemIdentifiers as D, type UpdateOrderLineItem as E, type UpdateOrderLineItemResponse as F, type GetPaymentCollectabilityStatusResponse as G, type PublicActivity as H, type ImportOrderResponse as I, type AddActivityResponse as J, type AddActivitiesOptions as K, type AddActivitiesResponse as L, type MarkOrderAsPaidResponse as M, type UpdateActivityIdentifiers as N, type Order as O, type Price as P, type UpdateActivityResponse as Q, type RecordManuallyCollectedPaymentApplicationErrors as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type DeleteActivityIdentifiers as W, type DeleteActivityResponse as X, type CancelOrderOptions as Y, type CancelOrderResponse as Z, type CancelOrderApplicationErrors as _, type SetOrderNumberCounterResponse as a, type OrderLineItem as a$, type UpdateOrderStatusResponse as a0, type UpdateOrderStatusApplicationErrors as a1, type AggregateOrdersOptions as a2, type AggregateOrdersResponse as a3, type BulkUpdateOrderTagsOptions as a4, type BulkUpdateOrderTagsResponse as a5, type OrderApprovedEnvelope as a6, type OrderUpdatedEnvelope as a7, type OrderCanceledEnvelope as a8, type OrderCreatedEnvelope as a9, ScheduledAction as aA, DurationUnit as aB, PaymentCollectabilityStatus as aC, RefundableStatus as aD, NonRefundableReason as aE, ManuallyRefundableReason as aF, RestockType as aG, TransactionStatus as aH, AuthorizationCaptureStatus as aI, AuthorizationVoidStatus as aJ, Reason as aK, ActionType as aL, ChargebackStatus as aM, MembershipPaymentStatus as aN, RefundStatus as aO, VersioningMode as aP, SortOrder as aQ, OrderApprovalStrategy as aR, DeltaPaymentOptionType as aS, InventoryAction as aT, Placement as aU, SubdivisionType as aV, SourceType as aW, CustomFieldGroup as aX, ValueType as aY, DepositType as aZ, InvoiceStatus as a_, type OrderPaymentStatusUpdatedEnvelope as aa, DescriptionLineType as ab, ItemTypePreset as ac, PaymentOptionType as ad, JurisdictionType as ae, SubscriptionFrequency as af, AdjustmentType as ag, TaxableAddressType as ah, PaymentStatus as ai, FulfillmentStatus as aj, WeightUnit as ak, VatType as al, PickupMethod as am, OrderStatus as an, DiscountType as ao, DiscountReason as ap, LineItemQuantityChangeType as aq, ActivityType as ar, OrderActivityTypeEnumActivityType as as, AttributionSource as at, ChannelType as au, OrderActionType as av, WebhookIdentityType as aw, AdditionalFeeSource as ax, ChargeType as ay, PreviewEmailType as az, type BulkDeleteImportedOrdersResponse as b, type MerchantComment as b$, type ProductName as b0, type CatalogReference as b1, type DescriptionLine as b2, type DescriptionLineValueOneOf as b3, type DescriptionLineDescriptionLineValueOneOf as b4, type DescriptionLineName as b5, type PlainTextValue as b6, type Color as b7, type FocalPoint as b8, type PhysicalProperties as b9, type Address as bA, type StreetAddress as bB, type AddressLocation as bC, type FullAddressContactDetails as bD, type VatId as bE, type V1ShippingInformation as bF, type DeliveryLogistics as bG, type DeliveryLogisticsAddressOneOf as bH, type PickupDetails as bI, type PickupAddress as bJ, type DeliveryTimeSlot as bK, type ShippingPrice as bL, type ShippingRegion as bM, type TaxSummary as bN, type OrderTaxInfo as bO, type OrderTaxBreakdown as bP, type AppliedDiscount as bQ, type AppliedDiscountDiscountSourceOneOf as bR, type Coupon as bS, type MerchantDiscount as bT, type MerchantDiscountMerchantDiscountReasonOneOf as bU, type DiscountRule as bV, type DiscountRuleName as bW, type LineItemDiscount as bX, type Activity as bY, type ActivityContentOneOf as bZ, type CustomActivity as b_, type ItemType as ba, type ItemTypeItemTypeDataOneOf as bb, type ItemTaxFullDetails as bc, type LineItemTaxInfo as bd, type LineItemTaxBreakdown as be, type DigitalFile as bf, type SubscriptionInfo as bg, type SubscriptionTitle as bh, type SubscriptionDescription as bi, type SubscriptionSettings as bj, type FreeTrialPeriod as bk, type BillingAdjustment as bl, type BillingAdjustmentPriceSummary as bm, type PriceDescription as bn, type LocationAndQuantity as bo, type TaxableAddress as bp, type TaxableAddressTaxableAddressDataOneOf as bq, type ExtendedFields as br, type ModifierGroup as bs, type TranslatableString as bt, type ItemModifier as bu, type BuyerInfo as bv, type BuyerInfoIdOneOf as bw, type CurrencyConversionDetails as bx, type PriceSummary as by, type AddressWithContact as bz, type PreparePaymentCollectionOptions as c, type OrderSettingsAllowedActionsOneOf as c$, type OrderRefunded as c0, type OrderCreatedFromExchange as c1, type NewExchangeOrderCreated as c2, type LineItemExchangeData as c3, type DraftOrderChangesApplied as c4, type OrderChange as c5, type OrderChangeValueOneOf as c6, type LineItemChanges as c7, type LineItemQuantityChange as c8, type LineItemPriceChange as c9, type RegularPayment as cA, type RegularPaymentPaymentMethodDetailsOneOf as cB, type CreditCardDetails as cC, type PaymentCanceled as cD, type PaymentCanceledPaymentDetailsOneOf as cE, type PaymentDeclined as cF, type PaymentDeclinedPaymentDetailsOneOf as cG, type ReceiptCreated as cH, type ReceiptCreatedReceiptInfoOneOf as cI, type WixReceipt as cJ, type ExternalReceipt as cK, type ReceiptSent as cL, type ReceiptSentReceiptInfoOneOf as cM, type ChargebackCreated as cN, type ChargebackReversed as cO, type CreatedBy as cP, type CreatedByStringOneOf as cQ, type ChannelInfo as cR, type CustomField as cS, type BalanceSummary as cT, type Balance as cU, type AdditionalFee as cV, type FulfillmentStatusesAggregate as cW, type Tags as cX, type TagList as cY, type Location as cZ, type OrderSettings as c_, type LineItemProductNameChange as ca, type LineItemDescriptionLineChange as cb, type LineItemModifiersChange as cc, type ManagedLineItem as cd, type ManagedDiscount as ce, type TranslatedValue as cf, type LineItemAmount as cg, type ManagedAdditionalFee as ch, type TotalPriceChange as ci, type ShippingInformationChange as cj, type ShippingInformation as ck, type SavedPaymentMethod as cl, type AuthorizedPaymentCreated as cm, type AuthorizedPaymentCaptured as cn, type AuthorizedPaymentVoided as co, type RefundInitiated as cp, type RefundedPayment as cq, type RefundedPaymentKindOneOf as cr, type RegularPaymentRefund as cs, type GiftCardPaymentRefund as ct, type MembershipPaymentRefund as cu, type PaymentRefunded as cv, type PaymentRefundFailed as cw, type RefundedAsStoreCredit as cx, type PaymentPending as cy, type PaymentPendingPaymentDetailsOneOf as cz, type PreparePaymentCollectionResponse as d, type PreviewBuyerPickupConfirmationEmailRequest as d$, type CustomAllowedActions as d0, type FormInfo as d1, type FormIdentifier as d2, type OrderApproved as d3, type OrdersExperiments as d4, type OrderRejectedEventOrderRejected as d5, type OrderItemsRestocked as d6, type V1RestockItem as d7, type OrderImported as d8, type ImportedOrderDeleted as d9, type BulkSendBuyerShippingConfirmationEmailsRequest as dA, type BulkSendBuyerShippingConfirmationEmailsResponse as dB, type SendMerchantOrderReceivedNotificationRequest as dC, type SendMerchantOrderReceivedNotificationResponse as dD, type SendCancelRefundEmailRequest as dE, type SendCancelRefundEmailResponse as dF, type SendRefundEmailRequest as dG, type SendRefundEmailResponse as dH, type SendMerchantOrderReceivedPushRequest as dI, type SendMerchantOrderReceivedPushResponse as dJ, type PreviewEmailByTypeRequest as dK, type PreviewEmailByTypeResponse as dL, type PreviewRefundEmailRequest as dM, type RefundDetails as dN, type RefundItem as dO, type LineItemRefund as dP, type AdditionalFeeRefund as dQ, type ShippingRefund as dR, type PreviewRefundEmailResponse as dS, type PreviewCancelEmailRequest as dT, type PreviewCancelEmailResponse as dU, type PreviewCancelRefundEmailRequest as dV, type PreviewCancelRefundEmailResponse as dW, type PreviewBuyerPaymentsReceivedEmailRequest as dX, type PreviewBuyerPaymentsReceivedEmailResponse as dY, type PreviewBuyerConfirmationEmailRequest as dZ, type PreviewBuyerConfirmationEmailResponse as d_, type ImportOrderRequest as da, type SetOrderNumberCounterRequest as db, type BulkDeleteImportedOrdersRequest as dc, type DomainEvent as dd, type DomainEventBodyOneOf as de, type EntityCreatedEvent as df, type RestoreInfo as dg, type EntityUpdatedEvent as dh, type EntityDeletedEvent as di, type ActionEvent as dj, type MessageEnvelope as dk, type IdentificationData as dl, type IdentificationDataIdOneOf as dm, type PlatformFeeSummary as dn, type PlatformFee as dp, type SendBuyerConfirmationEmailRequest as dq, type SendBuyerConfirmationEmailResponse as dr, type SendBuyerPaymentsReceivedEmailRequest as ds, type SendBuyerPaymentsReceivedEmailResponse as dt, type SendBuyerPickupConfirmationEmailRequest as du, type SendBuyerPickupConfirmationEmailResponse as dv, type BulkSendBuyerPickupConfirmationEmailsRequest as dw, type BulkSendBuyerPickupConfirmationEmailsResponse as dx, type SendBuyerShippingConfirmationEmailRequest as dy, type SendBuyerShippingConfirmationEmailResponse as dz, type PreparePaymentCollectionApplicationErrors as e, type ChargeSavedPaymentMethodResponse as e$, type PreviewBuyerPickupConfirmationEmailResponse as e0, type PreviewShippingConfirmationEmailRequest as e1, type PreviewShippingConfirmationEmailResponse as e2, type PreviewResendDownloadLinksEmailRequest as e3, type PreviewResendDownloadLinksEmailResponse as e4, type Empty as e5, type PreparePaymentCollectionRequest as e6, type RedirectUrls as e7, type DelayedCaptureSettings as e8, type Duration as e9, type PaymentReceiptInfoOneOf as eA, type RegularPaymentDetails as eB, type RegularPaymentDetailsPaymentMethodDetailsOneOf as eC, type CreditCardPaymentMethodDetails as eD, type AuthorizationDetails as eE, type AuthorizationCapture as eF, type AuthorizationActionFailureDetails as eG, type AuthorizationVoid as eH, type V1ScheduledAction as eI, type Chargeback as eJ, type GiftCardPaymentDetails as eK, type MembershipPaymentDetails as eL, type WixReceiptInfo as eM, type ExternalReceiptInfo as eN, type Refund as eO, type RefundTransaction as eP, type RefundStatusInfo as eQ, type AggregatedRefundSummary as eR, type RefundItemsBreakdown as eS, type LineItemRefundSummary as eT, type CalculateRefundRequest as eU, type CalculateRefundItemRequest as eV, type CalculateRefundResponse as eW, type CalculateRefundItemResponse as eX, type VoidAuthorizedPaymentsRequest as eY, type CaptureAuthorizedPaymentsRequest as eZ, type ChargeSavedPaymentMethodRequest as e_, type GetPaymentCollectabilityStatusRequest as ea, type RecordManuallyCollectedPaymentRequest as eb, type RecordManuallyCollectedPaymentResponse as ec, type MarkOrderAsPaidRequest as ed, type BulkMarkOrdersAsPaidRequest as ee, type BulkOrderResult as ef, type ItemMetadata as eg, type ApplicationError as eh, type BulkActionMetadata as ei, type GetRefundabilityStatusRequest as ej, type Refundability as ek, type RefundabilityAdditionalRefundabilityInfoOneOf as el, type CreatePaymentGatewayOrderRequest as em, type ChargedBy as en, type ChargeMembershipsRequest as eo, type MembershipChargeItem as ep, type MembershipName as eq, type ServiceProperties as er, type ChargeMembershipsResponse as es, type TriggerRefundRequest as et, type RefundSideEffects as eu, type RestockInfo as ev, type RestockItem as ew, type OrderTransactions as ex, type Payment as ey, type PaymentPaymentDetailsOneOf as ez, type PaymentCollectionMarkOrderAsPaidApplicationErrors as f, type ArchiveOrderRequest as f$, type UpdateInternalDocumentsEvent as f0, type UpdateInternalDocumentsEventOperationOneOf as f1, type InternalDocument as f2, type InternalDocumentUpdateOperation as f3, type DeleteByIdsOperation as f4, type DeleteByFilterOperation as f5, type InternalDocumentUpdateByFilterOperation as f6, type InternalUpdateExistingOperation as f7, type VersionedDocumentUpdateOperation as f8, type VersionedDeleteByIdsOperation as f9, type OrderCreateNotifications as fA, type CreateOrderResponse as fB, type UpdateOrderRequest as fC, type UpdateOrderResponse as fD, type BulkUpdateOrdersRequest as fE, type CommitDeltasRequest as fF, type DraftOrderDiffs as fG, type DraftOrderDiffsShippingUpdateInfoOneOf as fH, type DraftOrderDiffsBuyerUpdateInfoOneOf as fI, type DraftOrderDiffsBillingUpdateInfoOneOf as fJ, type DraftOrderDiffsRecipientUpdateInfoOneOf as fK, type V1LineItemDelta as fL, type V1LineItemDeltaDeltaOneOf as fM, type OrderLineItemChangedDetails as fN, type ItemChangedDetails as fO, type AppliedDiscountDelta as fP, type AppliedDiscountDeltaDeltaOneOf as fQ, type AdditionalFeeDelta as fR, type AdditionalFeeDeltaDeltaOneOf as fS, type DraftOrderCommitSettings as fT, type InventoryUpdateDetails as fU, type CommitDeltasResponse as fV, type OrderDeltasCommitted as fW, type CommittedDiffs as fX, type CommittedDiffsShippingUpdateInfoOneOf as fY, type LineItemDelta as fZ, type LineItemDeltaDeltaOneOf as f_, type VersionedDocumentId as fa, type TriggerReindexRequest as fb, type TriggerReindexResponse as fc, type BatchOfTriggerReindexOrderRequest as fd, type TriggerReindexOrderRequest as fe, type DiffmatokyPayload as ff, type ErrorInformation as fg, type GetOrderRequest as fh, type GetOrderResponse as fi, type InternalQueryOrdersRequest as fj, type PlatformQuery as fk, type PlatformQueryPagingMethodOneOf as fl, type Sorting as fm, type PlatformPaging as fn, type CursorPaging as fo, type InternalQueryOrdersResponse as fp, type PlatformPagingMetadata as fq, type Cursors as fr, type QueryOrderRequest as fs, type QueryOrderResponse as ft, type SearchOrdersRequest as fu, type CursorSearch as fv, type CursorSearchPagingMethodOneOf as fw, type CursorPagingMetadata as fx, type CreateOrderRequest as fy, type OrderCreationSettings as fz, type BulkMarkOrdersAsPaidResponse as g, type BulkMarkAsFulfilledRequest as g$, type ArchiveOrderResponse as g0, type BulkArchiveOrdersRequest as g1, type BulkArchiveOrdersResponse as g2, type BulkArchiveOrdersByFilterRequest as g3, type BulkArchiveOrdersByFilterResponse as g4, type UnArchiveOrderRequest as g5, type UnArchiveOrderResponse as g6, type BulkUnArchiveOrdersRequest as g7, type BulkUnArchiveOrdersResponse as g8, type BulkUnArchiveOrdersByFilterRequest as g9, type ShippingConfirmationEmailSent as gA, type InvoiceAdded as gB, type InvoiceSent as gC, type FulfillerEmailSent as gD, type ShippingAddressEdited as gE, type EmailEdited as gF, type PickupReadyEmailSent as gG, type OrderPartiallyPaid as gH, type OrderPending as gI, type OrderRejected as gJ, type AddInternalActivityResponse as gK, type AddActivityRequest as gL, type PublicActivityContentOneOf as gM, type AddActivitiesRequest as gN, type UpdateActivityRequest as gO, type DeleteActivityRequest as gP, type UpdateLineItemsDescriptionLinesRequest as gQ, type LineItemUpdate as gR, type UpdateLineItemsDescriptionLinesResponse as gS, type MarkOrderAsSeenByHumanRequest as gT, type MarkOrderAsSeenByHumanResponse as gU, type CancelOrderRequest as gV, type OrderCanceledEventOrderCanceled as gW, type UpdateOrderStatusRequest as gX, type MarkAsFulfilledRequest as gY, type MarkAsFulfilledResponse as gZ, type FulfillmentStatusUpdated as g_, type BulkUnArchiveOrdersByFilterResponse as ga, type UpdateBuyerInfoRequest as gb, type BuyerInfoUpdate as gc, type UpdateBuyerInfoResponse as gd, type UpdateBuyerEmailRequest as ge, type UpdateBuyerEmailResponse as gf, type UpdateOrderShippingAddressRequest as gg, type UpdateOrderShippingAddressResponse as gh, type UpdateBillingContactDetailsRequest as gi, type UpdateBillingContactDetailsResponse as gj, type UpdateOrderLineItemRequest as gk, type UpdateOrderLineItemsRequest as gl, type MaskedOrderLineItem as gm, type UpdateOrderLineItemsResponse as gn, type AddInternalActivityRequest as go, type InternalActivity as gp, type InternalActivityContentOneOf as gq, type OrderPlaced as gr, type OrderPaid as gs, type OrderFulfilled as gt, type OrderNotFulfilled as gu, type OrderCanceled as gv, type DownloadLinkSent as gw, type TrackingNumberAdded as gx, type TrackingNumberEdited as gy, type TrackingLinkAdded as gz, type GetRefundabilityStatusResponse as h, type MetaData as h$, type BulkMarkAsFulfilledResponse as h0, type BulkMarkAsFulfilledByFilterRequest as h1, type BulkMarkAsFulfilledByFilterResponse as h2, type MarkAsUnfulfilledRequest as h3, type MarkAsUnfulfilledResponse as h4, type BulkMarkAsUnfulfilledRequest as h5, type BulkMarkAsUnfulfilledResponse as h6, type BulkMarkAsUnfulfilledByFilterRequest as h7, type BulkMarkAsUnfulfilledByFilterResponse as h8, type BulkSetBusinessLocationRequest as h9, type InvoiceFields as hA, type Customer as hB, type Email as hC, type QuotesAddress as hD, type AddressDescription as hE, type Phone as hF, type Company as hG, type CommonAddress as hH, type CommonAddressStreetOneOf as hI, type Subdivision as hJ, type StandardDetails as hK, type InvoiceDates as hL, type LineItems as hM, type LineItem as hN, type BigDecimalWrapper as hO, type LineItemTax as hP, type Source as hQ, type LineItemMetaData as hR, type Locale as hS, type TotalPrice as hT, type ItemizedFee as hU, type Discount as hV, type DiscountOneDiscountTypeOneOf as hW, type CalculatedTaxes as hX, type CalculatedTax as hY, type Payments as hZ, type InvoicesPayment as h_, type BulkSetBusinessLocationResponse as ha, type BulkSetBusinessLocationResult as hb, type V1MarkOrderAsPaidRequest as hc, type V1MarkOrderAsPaidResponse as hd, type PaymentStatusUpdated as he, type V1BulkMarkOrdersAsPaidRequest as hf, type V1BulkMarkOrdersAsPaidResponse as hg, type V1CreatePaymentGatewayOrderRequest as hh, type V1CreatePaymentGatewayOrderResponse as hi, type GetShipmentsRequest as hj, type GetShipmentsResponse as hk, type AggregateOrdersRequest as hl, type DecrementItemsQuantityRequest as hm, type DecrementData as hn, type DecrementItemsQuantityResponse as ho, type BulkUpdateOrderTagsRequest as hp, type BulkUpdateOrderTagsResult as hq, type Task as hr, type TaskKey as hs, type TaskAction as ht, type TaskActionActionOneOf as hu, type Complete as hv, type Cancel as hw, type Reschedule as hx, type InvoiceSentEvent as hy, type IdAndVersion as hz, type PaymentCollectionCreatePaymentGatewayOrderOptions as i, onOrderCanceled as i$, type InvoiceDynamicPriceTotals as i0, type CustomFieldValue as i1, type Value as i2, type Deposit as i3, type BaseEventMetadata as i4, type EventMetadata as i5, type OrderSearchSpec as i6, type DescriptionLineTypeWithLiterals as i7, type ItemTypePresetWithLiterals as i8, type PaymentOptionTypeWithLiterals as i9, type RefundableStatusWithLiterals as iA, type NonRefundableReasonWithLiterals as iB, type ManuallyRefundableReasonWithLiterals as iC, type RestockTypeWithLiterals as iD, type TransactionStatusWithLiterals as iE, type AuthorizationCaptureStatusWithLiterals as iF, type AuthorizationVoidStatusWithLiterals as iG, type ReasonWithLiterals as iH, type ActionTypeWithLiterals as iI, type ChargebackStatusWithLiterals as iJ, type MembershipPaymentStatusWithLiterals as iK, type RefundStatusWithLiterals as iL, type VersioningModeWithLiterals as iM, type SortOrderWithLiterals as iN, type OrderApprovalStrategyWithLiterals as iO, type DeltaPaymentOptionTypeWithLiterals as iP, type InventoryActionWithLiterals as iQ, type PlacementWithLiterals as iR, type SubdivisionTypeWithLiterals as iS, type SourceTypeWithLiterals as iT, type CustomFieldGroupWithLiterals as iU, type ValueTypeWithLiterals as iV, type DepositTypeWithLiterals as iW, type InvoiceStatusWithLiterals as iX, type CommonSearchWithEntityContext as iY, onOrderApproved as iZ, onOrderUpdated as i_, type JurisdictionTypeWithLiterals as ia, type SubscriptionFrequencyWithLiterals as ib, type AdjustmentTypeWithLiterals as ic, type TaxableAddressTypeWithLiterals as id, type PaymentStatusWithLiterals as ie, type FulfillmentStatusWithLiterals as ig, type WeightUnitWithLiterals as ih, type VatTypeWithLiterals as ii, type PickupMethodWithLiterals as ij, type DiscountTypeWithLiterals as ik, type DiscountReasonWithLiterals as il, type LineItemQuantityChangeTypeWithLiterals as im, type ActivityTypeWithLiterals as io, type OrderActivityTypeEnumActivityTypeWithLiterals as ip, type AttributionSourceWithLiterals as iq, type ChannelTypeWithLiterals as ir, type OrderActionTypeWithLiterals as is, type WebhookIdentityTypeWithLiterals as it, type AdditionalFeeSourceWithLiterals as iu, type ChargeTypeWithLiterals as iv, type PreviewEmailTypeWithLiterals as iw, type ScheduledActionWithLiterals as ix, type DurationUnitWithLiterals as iy, type PaymentCollectabilityStatusWithLiterals as iz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as j, onOrderCreated as j0, onOrderPaymentStatusUpdated as j1, importOrder as j2, setOrderNumberCounter as j3, bulkDeleteImportedOrders as j4, preparePaymentCollection as j5, getPaymentCollectabilityStatus as j6, recordManuallyCollectedPayment as j7, paymentCollectionMarkOrderAsPaid as j8, paymentCollectionBulkMarkOrdersAsPaid as j9, getRefundabilityStatus as ja, paymentCollectionCreatePaymentGatewayOrder as jb, chargeMemberships as jc, triggerRefund as jd, voidAuthorizedPayments as je, captureAuthorizedPayments as jf, getOrder as jg, createOrder as jh, updateOrder as ji, bulkUpdateOrders as jj, updateOrderLineItem as jk, addActivity as jl, addActivities as jm, updateActivity as jn, deleteActivity as jo, cancelOrder as jp, updateOrderStatus as jq, aggregateOrders as jr, bulkUpdateOrderTags as js, type ChargeMembershipsOptions as k, type PaymentRefund as l, type TriggerRefundResponse as m, type TriggerRefundApplicationErrors as n, type VoidAuthorizedPaymentsApplicationErrors as o, type PaymentCapture as p, type CaptureAuthorizedPaymentsResponse as q, type CaptureAuthorizedPaymentsApplicationErrors as r, type GetOrderApplicationErrors as s, type OrderSearch as t, type SearchOrdersResponse as u, type CreateOrderOptions as v, type CreateOrderApplicationErrors as w, type UpdateOrderApplicationErrors as x, type MaskedOrder as y, type BulkUpdateOrdersOptions 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 RecordManuallyCollectedPaymentApplicationErrors, M as MarkOrderAsPaidResponse, f as PaymentCollectionMarkOrderAsPaidApplicationErrors, g as BulkMarkOrdersAsPaidResponse, h as GetRefundabilityStatusResponse, i as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, j as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, k as ChargeMembershipsOptions, l as PaymentRefund, T as TriggerRefundOptions, m as TriggerRefundResponse, n as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, o as VoidAuthorizedPaymentsApplicationErrors, p as PaymentCapture, q as CaptureAuthorizedPaymentsResponse, r as CaptureAuthorizedPaymentsApplicationErrors, s as GetOrderApplicationErrors, t as OrderSearch, u as SearchOrdersResponse, v as CreateOrderOptions, w as CreateOrderApplicationErrors, U as UpdateOrder, x as UpdateOrderApplicationErrors, y as MaskedOrder, z as BulkUpdateOrdersOptions, A as BulkUpdateOrdersResponse, D as UpdateOrderLineItemIdentifiers, E as UpdateOrderLineItem, F as UpdateOrderLineItemResponse, H as PublicActivity, J as AddActivityResponse, K as AddActivitiesOptions, L as AddActivitiesResponse, N as UpdateActivityIdentifiers, Q as UpdateActivityResponse, W as DeleteActivityIdentifiers, X as DeleteActivityResponse, Y as CancelOrderOptions, Z as CancelOrderResponse, _ as CancelOrderApplicationErrors, $ as OrderStatusWithLiterals, a0 as UpdateOrderStatusResponse, a1 as UpdateOrderStatusApplicationErrors, a2 as AggregateOrdersOptions, a3 as AggregateOrdersResponse, a4 as BulkUpdateOrderTagsOptions, a5 as BulkUpdateOrderTagsResponse, a6 as OrderApprovedEnvelope, a7 as OrderUpdatedEnvelope, a8 as OrderCanceledEnvelope, a9 as OrderCreatedEnvelope, aa as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-
|
|
3
|
-
export { dj as ActionEvent, aJ as ActionType, iG as ActionTypeWithLiterals, bY as Activity, bZ as ActivityContentOneOf, ar as ActivityType, io as ActivityTypeWithLiterals, gN as AddActivitiesRequest, gL as AddActivityRequest, go as AddInternalActivityRequest, gK as AddInternalActivityResponse, cV as AdditionalFee, fR as AdditionalFeeDelta, fS as AdditionalFeeDeltaDeltaOneOf, dO as AdditionalFeeRefund, aO as AdditionalFeeSource, iL as AdditionalFeeSourceWithLiterals, bA as Address, hE as AddressDescription, bC as AddressLocation, bz as AddressWithContact, ag as AdjustmentType, ic as AdjustmentTypeWithLiterals, hl as AggregateOrdersRequest, eP as AggregatedRefundSummary, ef as ApplicationError, bQ as AppliedDiscount, fP as AppliedDiscountDelta, fQ as AppliedDiscountDeltaDeltaOneOf, bR as AppliedDiscountDiscountSourceOneOf, f$ as ArchiveOrderRequest, g0 as ArchiveOrderResponse, at as AttributionSource, iq as AttributionSourceWithLiterals, eE as AuthorizationActionFailureDetails, eD as AuthorizationCapture, aG as AuthorizationCaptureStatus, iD as AuthorizationCaptureStatusWithLiterals, eC as AuthorizationDetails, eF as AuthorizationVoid, aH as AuthorizationVoidStatus, iE as AuthorizationVoidStatusWithLiterals, cn as AuthorizedPaymentCaptured, cm as AuthorizedPaymentCreated, co as AuthorizedPaymentVoided, cU as Balance, cT as BalanceSummary, i4 as BaseEventMetadata, fb as BatchOfTriggerReindexOrderRequest, hO as BigDecimalWrapper, bl as BillingAdjustment, bm as BillingAdjustmentPriceSummary, eg as BulkActionMetadata, g3 as BulkArchiveOrdersByFilterRequest, g4 as BulkArchiveOrdersByFilterResponse, g1 as BulkArchiveOrdersRequest, g2 as BulkArchiveOrdersResponse, dc as BulkDeleteImportedOrdersRequest, h1 as BulkMarkAsFulfilledByFilterRequest, h2 as BulkMarkAsFulfilledByFilterResponse, g$ as BulkMarkAsFulfilledRequest, h0 as BulkMarkAsFulfilledResponse, h7 as BulkMarkAsUnfulfilledByFilterRequest, h8 as BulkMarkAsUnfulfilledByFilterResponse, h5 as BulkMarkAsUnfulfilledRequest, h6 as BulkMarkAsUnfulfilledResponse, ec as BulkMarkOrdersAsPaidRequest, ed as BulkOrderResult, du as BulkSendBuyerPickupConfirmationEmailsRequest, dv as BulkSendBuyerPickupConfirmationEmailsResponse, dy as BulkSendBuyerShippingConfirmationEmailsRequest, dz as BulkSendBuyerShippingConfirmationEmailsResponse, h9 as BulkSetBusinessLocationRequest, ha as BulkSetBusinessLocationResponse, hb as BulkSetBusinessLocationResult, g9 as BulkUnArchiveOrdersByFilterRequest, ga as BulkUnArchiveOrdersByFilterResponse, g7 as BulkUnArchiveOrdersRequest, g8 as BulkUnArchiveOrdersResponse, hp as BulkUpdateOrderTagsRequest, hq as BulkUpdateOrderTagsResult, fE as BulkUpdateOrdersRequest, bv as BuyerInfo, bw as BuyerInfoIdOneOf, gc as BuyerInfoUpdate, eT as CalculateRefundItemRequest, eV as CalculateRefundItemResponse, eS as CalculateRefundRequest, eU as CalculateRefundResponse, hY as CalculatedTax, hX as CalculatedTaxes, hw as Cancel, gV as CancelOrderRequest, eX as CaptureAuthorizedPaymentsRequest, b1 as CatalogReference, cR as ChannelInfo, au as ChannelType, ir as ChannelTypeWithLiterals, em as ChargeMembershipsRequest, eq as ChargeMembershipsResponse, eY as ChargeSavedPaymentMethodRequest, eZ as ChargeSavedPaymentMethodResponse, aP as ChargeType, iM as ChargeTypeWithLiterals, eH as Chargeback, cN as ChargebackCreated, cO as ChargebackReversed, aK as ChargebackStatus, iH as ChargebackStatusWithLiterals, el as ChargedBy, b7 as Color, fF as CommitDeltasRequest, fV as CommitDeltasResponse, fX as CommittedDiffs, fY as CommittedDiffsShippingUpdateInfoOneOf, hH as CommonAddress, hI as CommonAddressStreetOneOf, iY as CommonSearchWithEntityContext, hG as Company, hv as Complete, bS as Coupon, fy as CreateOrderRequest, fB as CreateOrderResponse, ek as CreatePaymentGatewayOrderRequest, cP as CreatedBy, cQ as CreatedByStringOneOf, cC as CreditCardDetails, eB as CreditCardPaymentMethodDetails, bx as CurrencyConversionDetails, fo as CursorPaging, fx as CursorPagingMetadata, fv as CursorSearch, fw as CursorSearchPagingMethodOneOf, fr as Cursors, b_ as CustomActivity, d0 as CustomAllowedActions, cS as CustomField, aX as CustomFieldGroup, iU as CustomFieldGroupWithLiterals, i1 as CustomFieldValue, hB as Customer, hn as DecrementData, hm as DecrementItemsQuantityRequest, ho as DecrementItemsQuantityResponse, e6 as DelayedCaptureSettings, gP as DeleteActivityRequest, f3 as DeleteByFilterOperation, f2 as DeleteByIdsOperation, bG as DeliveryLogistics, bH as DeliveryLogisticsAddressOneOf, bK as DeliveryTimeSlot, aS as DeltaPaymentOptionType, iP as DeltaPaymentOptionTypeWithLiterals, i3 as Deposit, aZ as DepositType, iW as DepositTypeWithLiterals, b2 as DescriptionLine, b4 as DescriptionLineDescriptionLineValueOneOf, b5 as DescriptionLineName, ab as DescriptionLineType, i7 as DescriptionLineTypeWithLiterals, b3 as DescriptionLineValueOneOf, ff as DiffmatokyPayload, bf as DigitalFile, hV as Discount, hW as DiscountOneDiscountTypeOneOf, ap as DiscountReason, il as DiscountReasonWithLiterals, bV as DiscountRule, bW as DiscountRuleName, ao as DiscountType, ik as DiscountTypeWithLiterals, dd as DomainEvent, de as DomainEventBodyOneOf, gw as DownloadLinkSent, c4 as DraftOrderChangesApplied, fT as DraftOrderCommitSettings, fG as DraftOrderDiffs, fJ as DraftOrderDiffsBillingUpdateInfoOneOf, fI as DraftOrderDiffsBuyerUpdateInfoOneOf, fK as DraftOrderDiffsRecipientUpdateInfoOneOf, fH as DraftOrderDiffsShippingUpdateInfoOneOf, e7 as Duration, az as DurationUnit, iw as DurationUnitWithLiterals, hC as Email, gF as EmailEdited, e3 as Empty, df as EntityCreatedEvent, di as EntityDeletedEvent, dh as EntityUpdatedEvent, fg as ErrorInformation, i5 as EventMetadata, br as ExtendedFields, cK as ExternalReceipt, eL as ExternalReceiptInfo, b8 as FocalPoint, d2 as FormIdentifier, d1 as FormInfo, bk as FreeTrialPeriod, gD as FulfillerEmailSent, aj as FulfillmentStatus, g_ as FulfillmentStatusUpdated, ig as FulfillmentStatusWithLiterals, cW as FulfillmentStatusesAggregate, bD as FullAddressContactDetails, fh as GetOrderRequest, fi as GetOrderResponse, e8 as GetPaymentCollectabilityStatusRequest, eh as GetRefundabilityStatusRequest, hj as GetShipmentsRequest, hk as GetShipmentsResponse, eI as GiftCardPaymentDetails, ct as GiftCardPaymentRefund, hz as IdAndVersion, dl as IdentificationData, dm as IdentificationDataIdOneOf, da as ImportOrderRequest, d9 as ImportedOrderDeleted, gp as InternalActivity, gq as InternalActivityContentOneOf, f0 as InternalDocument, f4 as InternalDocumentUpdateByFilterOperation, f1 as InternalDocumentUpdateOperation, fj as InternalQueryOrdersRequest, fp as InternalQueryOrdersResponse, f5 as InternalUpdateExistingOperation, aT as InventoryAction, iQ as InventoryActionWithLiterals, fU as InventoryUpdateDetails, gB as InvoiceAdded, hL as InvoiceDates, i0 as InvoiceDynamicPriceTotals, hA as InvoiceFields, gC as InvoiceSent, hy as InvoiceSentEvent, a_ as InvoiceStatus, iX as InvoiceStatusWithLiterals, h_ as InvoicesPayment, fO as ItemChangedDetails, ee as ItemMetadata, bu as ItemModifier, bc as ItemTaxFullDetails, ba as ItemType, bb as ItemTypeItemTypeDataOneOf, ac as ItemTypePreset, i8 as ItemTypePresetWithLiterals, hU as ItemizedFee, ae as JurisdictionType, ia as JurisdictionTypeWithLiterals, hN as LineItem, cg as LineItemAmount, c7 as LineItemChanges, fZ as LineItemDelta, f_ as LineItemDeltaDeltaOneOf, cb as LineItemDescriptionLineChange, bX as LineItemDiscount, c3 as LineItemExchangeData, hR as LineItemMetaData, cc as LineItemModifiersChange, c9 as LineItemPriceChange, ca as LineItemProductNameChange, c8 as LineItemQuantityChange, aq as LineItemQuantityChangeType, im as LineItemQuantityChangeTypeWithLiterals, dN as LineItemRefund, eR as LineItemRefundSummary, hP as LineItemTax, be as LineItemTaxBreakdown, bd as LineItemTaxInfo, gR as LineItemUpdate, hM as LineItems, hS as Locale, cZ as Location, bo as LocationAndQuantity, ch as ManagedAdditionalFee, ce as ManagedDiscount, cd as ManagedLineItem, aD as ManuallyRefundableReason, iA as ManuallyRefundableReasonWithLiterals, gY as MarkAsFulfilledRequest, gZ as MarkAsFulfilledResponse, h3 as MarkAsUnfulfilledRequest, h4 as MarkAsUnfulfilledResponse, eb as MarkOrderAsPaidRequest, gT as MarkOrderAsSeenByHumanRequest, gU as MarkOrderAsSeenByHumanResponse, gm as MaskedOrderLineItem, en as MembershipChargeItem, eo as MembershipName, eJ as MembershipPaymentDetails, cu as MembershipPaymentRefund, aL as MembershipPaymentStatus, iI as MembershipPaymentStatusWithLiterals, b$ as MerchantComment, bT as MerchantDiscount, bU as MerchantDiscountMerchantDiscountReasonOneOf, dk as MessageEnvelope, h$ as MetaData, bs as ModifierGroup, c2 as NewExchangeOrderCreated, aC as NonRefundableReason, iz as NonRefundableReasonWithLiterals, av as OrderActionType, is as OrderActionTypeWithLiterals, as as OrderActivityTypeEnumActivityType, ip as OrderActivityTypeEnumActivityTypeWithLiterals, aR as OrderApprovalStrategy, iO as OrderApprovalStrategyWithLiterals, d3 as OrderApproved, gv as OrderCanceled, gW as OrderCanceledEventOrderCanceled, c5 as OrderChange, c6 as OrderChangeValueOneOf, fA as OrderCreateNotifications, c1 as OrderCreatedFromExchange, fz as OrderCreationSettings, fW as OrderDeltasCommitted, gt as OrderFulfilled, d8 as OrderImported, d6 as OrderItemsRestocked, a$ as OrderLineItem, fN as OrderLineItemChangedDetails, gu as OrderNotFulfilled, gs as OrderPaid, gH as OrderPartiallyPaid, gI as OrderPending, gr as OrderPlaced, c0 as OrderRefunded, gJ as OrderRejected, d5 as OrderRejectedEventOrderRejected, i6 as OrderSearchSpec, c_ as OrderSettings, c$ as OrderSettingsAllowedActionsOneOf, an as OrderStatus, bP as OrderTaxBreakdown, bO as OrderTaxInfo, ev as OrderTransactions, d4 as OrdersExperiments, ew as Payment, cD as PaymentCanceled, cE as PaymentCanceledPaymentDetailsOneOf, aA as PaymentCollectabilityStatus, ix as PaymentCollectabilityStatusWithLiterals, cF as PaymentDeclined, cG as PaymentDeclinedPaymentDetailsOneOf, ad as PaymentOptionType, i9 as PaymentOptionTypeWithLiterals, ex as PaymentPaymentDetailsOneOf, cy as PaymentPending, cz as PaymentPendingPaymentDetailsOneOf, ey as PaymentReceiptInfoOneOf, cw as PaymentRefundFailed, cv as PaymentRefunded, ai as PaymentStatus, he as PaymentStatusUpdated, ie as PaymentStatusWithLiterals, hZ as Payments, hF as Phone, b9 as PhysicalProperties, bJ as PickupAddress, bI as PickupDetails, am as PickupMethod, ij as PickupMethodWithLiterals, gG as PickupReadyEmailSent, aU as Placement, iR as PlacementWithLiterals, b6 as PlainTextValue, fe as PlatformFee, fd as PlatformFeeSummary, fn as PlatformPaging, fq as PlatformPagingMetadata, fk as PlatformQuery, fl as PlatformQueryPagingMethodOneOf, e4 as PreparePaymentCollectionRequest, dX as PreviewBuyerConfirmationEmailRequest, dY as PreviewBuyerConfirmationEmailResponse, dV as PreviewBuyerPaymentsReceivedEmailRequest, dW as PreviewBuyerPaymentsReceivedEmailResponse, dZ as PreviewBuyerPickupConfirmationEmailRequest, d_ as PreviewBuyerPickupConfirmationEmailResponse, dR as PreviewCancelEmailRequest, dS as PreviewCancelEmailResponse, dT as PreviewCancelRefundEmailRequest, dU as PreviewCancelRefundEmailResponse, dI as PreviewEmailByTypeRequest, dJ as PreviewEmailByTypeResponse, ax as PreviewEmailType, iu as PreviewEmailTypeWithLiterals, dK as PreviewRefundEmailRequest, dQ as PreviewRefundEmailResponse, e1 as PreviewResendDownloadLinksEmailRequest, e2 as PreviewResendDownloadLinksEmailResponse, d$ as PreviewShippingConfirmationEmailRequest, e0 as PreviewShippingConfirmationEmailResponse, bn as PriceDescription, by as PriceSummary, b0 as ProductName, gM as PublicActivityContentOneOf, fs as QueryOrderRequest, ft as QueryOrderResponse, hD as QuotesAddress, aI as Reason, iF as ReasonWithLiterals, cH as ReceiptCreated, cI as ReceiptCreatedReceiptInfoOneOf, cL as ReceiptSent, cM as ReceiptSentReceiptInfoOneOf, e9 as RecordManuallyCollectedPaymentRequest, ea as RecordManuallyCollectedPaymentResponse, e5 as RedirectUrls, eM as Refund, dL as RefundDetails, cp as RefundInitiated, dM as RefundItem, eQ as RefundItemsBreakdown, es as RefundSideEffects, aM as RefundStatus, eO as RefundStatusInfo, iJ as RefundStatusWithLiterals, eN as RefundTransaction, ei as Refundability, ej as RefundabilityAdditionalRefundabilityInfoOneOf, aB as RefundableStatus, iy as RefundableStatusWithLiterals, cx as RefundedAsStoreCredit, cq as RefundedPayment, cr as RefundedPaymentKindOneOf, cA as RegularPayment, ez as RegularPaymentDetails, eA as RegularPaymentDetailsPaymentMethodDetailsOneOf, cB as RegularPaymentPaymentMethodDetailsOneOf, cs as RegularPaymentRefund, hx as Reschedule, et as RestockInfo, eu as RestockItem, aE as RestockType, iB as RestockTypeWithLiterals, dg as RestoreInfo, cl as SavedPaymentMethod, ay as ScheduledAction, iv as ScheduledActionWithLiterals, fu as SearchOrdersRequest, dn as SendBuyerConfirmationEmailRequest, dp as SendBuyerConfirmationEmailResponse, dq as SendBuyerPaymentsReceivedEmailRequest, dr as SendBuyerPaymentsReceivedEmailResponse, ds as SendBuyerPickupConfirmationEmailRequest, dt as SendBuyerPickupConfirmationEmailResponse, dw as SendBuyerShippingConfirmationEmailRequest, dx as SendBuyerShippingConfirmationEmailResponse, dC as SendCancelRefundEmailRequest, dD as SendCancelRefundEmailResponse, dA as SendMerchantOrderReceivedNotificationRequest, dB as SendMerchantOrderReceivedNotificationResponse, dG as SendMerchantOrderReceivedPushRequest, dH as SendMerchantOrderReceivedPushResponse, dE as SendRefundEmailRequest, dF as SendRefundEmailResponse, ep as ServiceProperties, db as SetOrderNumberCounterRequest, gE as ShippingAddressEdited, gA as ShippingConfirmationEmailSent, ck as ShippingInformation, cj as ShippingInformationChange, bL as ShippingPrice, dP as ShippingRefund, bM as ShippingRegion, aQ as SortOrder, iN as SortOrderWithLiterals, fm as Sorting, hQ as Source, aW as SourceType, iT as SourceTypeWithLiterals, hK as StandardDetails, bB as StreetAddress, hJ as Subdivision, aV as SubdivisionType, iS as SubdivisionTypeWithLiterals, bi as SubscriptionDescription, af as SubscriptionFrequency, ib as SubscriptionFrequencyWithLiterals, bg as SubscriptionInfo, bj as SubscriptionSettings, bh as SubscriptionTitle, cY as TagList, cX as Tags, hr as Task, ht as TaskAction, hu as TaskActionActionOneOf, hs as TaskKey, bN as TaxSummary, bp as TaxableAddress, bq as TaxableAddressTaxableAddressDataOneOf, ah as TaxableAddressType, id as TaxableAddressTypeWithLiterals, hT as TotalPrice, ci as TotalPriceChange, gz as TrackingLinkAdded, gx as TrackingNumberAdded, gy as TrackingNumberEdited, aF as TransactionStatus, iC as TransactionStatusWithLiterals, bt as TranslatableString, cf as TranslatedValue, er as TriggerRefundRequest, fc as TriggerReindexOrderRequest, f9 as TriggerReindexRequest, fa as TriggerReindexResponse, g5 as UnArchiveOrderRequest, g6 as UnArchiveOrderResponse, gO as UpdateActivityRequest, gi as UpdateBillingContactDetailsRequest, gj as UpdateBillingContactDetailsResponse, ge as UpdateBuyerEmailRequest, gf as UpdateBuyerEmailResponse, gb as UpdateBuyerInfoRequest, gd as UpdateBuyerInfoResponse, e_ as UpdateInternalDocumentsEvent, e$ as UpdateInternalDocumentsEventOperationOneOf, gQ as UpdateLineItemsDescriptionLinesRequest, gS as UpdateLineItemsDescriptionLinesResponse, gk as UpdateOrderLineItemRequest, gl as UpdateOrderLineItemsRequest, gn as UpdateOrderLineItemsResponse, fC as UpdateOrderRequest, fD as UpdateOrderResponse, gg as UpdateOrderShippingAddressRequest, gh as UpdateOrderShippingAddressResponse, gX as UpdateOrderStatusRequest, hf as V1BulkMarkOrdersAsPaidRequest, hg as V1BulkMarkOrdersAsPaidResponse, hh as V1CreatePaymentGatewayOrderRequest, hi as V1CreatePaymentGatewayOrderResponse, fL as V1LineItemDelta, fM as V1LineItemDeltaDeltaOneOf, hc as V1MarkOrderAsPaidRequest, hd as V1MarkOrderAsPaidResponse, d7 as V1RestockItem, eG as V1ScheduledAction, bF as V1ShippingInformation, i2 as Value, aY as ValueType, iV as ValueTypeWithLiterals, bE as VatId, al as VatType, ii as VatTypeWithLiterals, f7 as VersionedDeleteByIdsOperation, f8 as VersionedDocumentId, f6 as VersionedDocumentUpdateOperation, aN as VersioningMode, iK as VersioningModeWithLiterals, eW as VoidAuthorizedPaymentsRequest, aw as WebhookIdentityType, it as WebhookIdentityTypeWithLiterals, ak as WeightUnit, ih as WeightUnitWithLiterals, cJ as WixReceipt, eK as WixReceiptInfo } from './ecom-v1-order-orders.universal-CjdFmcMT.mjs';
|
|
2
|
+
import { O as Order, I as ImportOrderResponse, S as SetOrderNumberCounterOptions, a as SetOrderNumberCounterResponse, B as BulkDeleteImportedOrdersOptions, b as BulkDeleteImportedOrdersResponse, P as Price, c as PreparePaymentCollectionOptions, d as PreparePaymentCollectionResponse, e as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, R as RecordManuallyCollectedPaymentApplicationErrors, M as MarkOrderAsPaidResponse, f as PaymentCollectionMarkOrderAsPaidApplicationErrors, g as BulkMarkOrdersAsPaidResponse, h as GetRefundabilityStatusResponse, i as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, j as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, k as ChargeMembershipsOptions, l as PaymentRefund, T as TriggerRefundOptions, m as TriggerRefundResponse, n as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, o as VoidAuthorizedPaymentsApplicationErrors, p as PaymentCapture, q as CaptureAuthorizedPaymentsResponse, r as CaptureAuthorizedPaymentsApplicationErrors, s as GetOrderApplicationErrors, t as OrderSearch, u as SearchOrdersResponse, v as CreateOrderOptions, w as CreateOrderApplicationErrors, U as UpdateOrder, x as UpdateOrderApplicationErrors, y as MaskedOrder, z as BulkUpdateOrdersOptions, A as BulkUpdateOrdersResponse, D as UpdateOrderLineItemIdentifiers, E as UpdateOrderLineItem, F as UpdateOrderLineItemResponse, H as PublicActivity, J as AddActivityResponse, K as AddActivitiesOptions, L as AddActivitiesResponse, N as UpdateActivityIdentifiers, Q as UpdateActivityResponse, W as DeleteActivityIdentifiers, X as DeleteActivityResponse, Y as CancelOrderOptions, Z as CancelOrderResponse, _ as CancelOrderApplicationErrors, $ as OrderStatusWithLiterals, a0 as UpdateOrderStatusResponse, a1 as UpdateOrderStatusApplicationErrors, a2 as AggregateOrdersOptions, a3 as AggregateOrdersResponse, a4 as BulkUpdateOrderTagsOptions, a5 as BulkUpdateOrderTagsResponse, a6 as OrderApprovedEnvelope, a7 as OrderUpdatedEnvelope, a8 as OrderCanceledEnvelope, a9 as OrderCreatedEnvelope, aa as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-zh_hrpdy.mjs';
|
|
3
|
+
export { dj as ActionEvent, aL as ActionType, iI as ActionTypeWithLiterals, bY as Activity, bZ as ActivityContentOneOf, ar as ActivityType, io as ActivityTypeWithLiterals, gN as AddActivitiesRequest, gL as AddActivityRequest, go as AddInternalActivityRequest, gK as AddInternalActivityResponse, cV as AdditionalFee, fR as AdditionalFeeDelta, fS as AdditionalFeeDeltaDeltaOneOf, dQ as AdditionalFeeRefund, ax as AdditionalFeeSource, iu as AdditionalFeeSourceWithLiterals, bA as Address, hE as AddressDescription, bC as AddressLocation, bz as AddressWithContact, ag as AdjustmentType, ic as AdjustmentTypeWithLiterals, hl as AggregateOrdersRequest, eR as AggregatedRefundSummary, eh as ApplicationError, bQ as AppliedDiscount, fP as AppliedDiscountDelta, fQ as AppliedDiscountDeltaDeltaOneOf, bR as AppliedDiscountDiscountSourceOneOf, f$ as ArchiveOrderRequest, g0 as ArchiveOrderResponse, at as AttributionSource, iq as AttributionSourceWithLiterals, eG as AuthorizationActionFailureDetails, eF as AuthorizationCapture, aI as AuthorizationCaptureStatus, iF as AuthorizationCaptureStatusWithLiterals, eE as AuthorizationDetails, eH as AuthorizationVoid, aJ as AuthorizationVoidStatus, iG as AuthorizationVoidStatusWithLiterals, cn as AuthorizedPaymentCaptured, cm as AuthorizedPaymentCreated, co as AuthorizedPaymentVoided, cU as Balance, cT as BalanceSummary, i4 as BaseEventMetadata, fd as BatchOfTriggerReindexOrderRequest, hO as BigDecimalWrapper, bl as BillingAdjustment, bm as BillingAdjustmentPriceSummary, ei as BulkActionMetadata, g3 as BulkArchiveOrdersByFilterRequest, g4 as BulkArchiveOrdersByFilterResponse, g1 as BulkArchiveOrdersRequest, g2 as BulkArchiveOrdersResponse, dc as BulkDeleteImportedOrdersRequest, h1 as BulkMarkAsFulfilledByFilterRequest, h2 as BulkMarkAsFulfilledByFilterResponse, g$ as BulkMarkAsFulfilledRequest, h0 as BulkMarkAsFulfilledResponse, h7 as BulkMarkAsUnfulfilledByFilterRequest, h8 as BulkMarkAsUnfulfilledByFilterResponse, h5 as BulkMarkAsUnfulfilledRequest, h6 as BulkMarkAsUnfulfilledResponse, ee as BulkMarkOrdersAsPaidRequest, ef as BulkOrderResult, dw as BulkSendBuyerPickupConfirmationEmailsRequest, dx as BulkSendBuyerPickupConfirmationEmailsResponse, dA as BulkSendBuyerShippingConfirmationEmailsRequest, dB as BulkSendBuyerShippingConfirmationEmailsResponse, h9 as BulkSetBusinessLocationRequest, ha as BulkSetBusinessLocationResponse, hb as BulkSetBusinessLocationResult, g9 as BulkUnArchiveOrdersByFilterRequest, ga as BulkUnArchiveOrdersByFilterResponse, g7 as BulkUnArchiveOrdersRequest, g8 as BulkUnArchiveOrdersResponse, hp as BulkUpdateOrderTagsRequest, hq as BulkUpdateOrderTagsResult, fE as BulkUpdateOrdersRequest, bv as BuyerInfo, bw as BuyerInfoIdOneOf, gc as BuyerInfoUpdate, eV as CalculateRefundItemRequest, eX as CalculateRefundItemResponse, eU as CalculateRefundRequest, eW as CalculateRefundResponse, hY as CalculatedTax, hX as CalculatedTaxes, hw as Cancel, gV as CancelOrderRequest, eZ as CaptureAuthorizedPaymentsRequest, b1 as CatalogReference, cR as ChannelInfo, au as ChannelType, ir as ChannelTypeWithLiterals, eo as ChargeMembershipsRequest, es as ChargeMembershipsResponse, e_ as ChargeSavedPaymentMethodRequest, e$ as ChargeSavedPaymentMethodResponse, ay as ChargeType, iv as ChargeTypeWithLiterals, eJ as Chargeback, cN as ChargebackCreated, cO as ChargebackReversed, aM as ChargebackStatus, iJ as ChargebackStatusWithLiterals, en as ChargedBy, b7 as Color, fF as CommitDeltasRequest, fV as CommitDeltasResponse, fX as CommittedDiffs, fY as CommittedDiffsShippingUpdateInfoOneOf, hH as CommonAddress, hI as CommonAddressStreetOneOf, iY as CommonSearchWithEntityContext, hG as Company, hv as Complete, bS as Coupon, fy as CreateOrderRequest, fB as CreateOrderResponse, em as CreatePaymentGatewayOrderRequest, cP as CreatedBy, cQ as CreatedByStringOneOf, cC as CreditCardDetails, eD as CreditCardPaymentMethodDetails, bx as CurrencyConversionDetails, fo as CursorPaging, fx as CursorPagingMetadata, fv as CursorSearch, fw as CursorSearchPagingMethodOneOf, fr as Cursors, b_ as CustomActivity, d0 as CustomAllowedActions, cS as CustomField, aX as CustomFieldGroup, iU as CustomFieldGroupWithLiterals, i1 as CustomFieldValue, hB as Customer, hn as DecrementData, hm as DecrementItemsQuantityRequest, ho as DecrementItemsQuantityResponse, e8 as DelayedCaptureSettings, gP as DeleteActivityRequest, f5 as DeleteByFilterOperation, f4 as DeleteByIdsOperation, bG as DeliveryLogistics, bH as DeliveryLogisticsAddressOneOf, bK as DeliveryTimeSlot, aS as DeltaPaymentOptionType, iP as DeltaPaymentOptionTypeWithLiterals, i3 as Deposit, aZ as DepositType, iW as DepositTypeWithLiterals, b2 as DescriptionLine, b4 as DescriptionLineDescriptionLineValueOneOf, b5 as DescriptionLineName, ab as DescriptionLineType, i7 as DescriptionLineTypeWithLiterals, b3 as DescriptionLineValueOneOf, ff as DiffmatokyPayload, bf as DigitalFile, hV as Discount, hW as DiscountOneDiscountTypeOneOf, ap as DiscountReason, il as DiscountReasonWithLiterals, bV as DiscountRule, bW as DiscountRuleName, ao as DiscountType, ik as DiscountTypeWithLiterals, dd as DomainEvent, de as DomainEventBodyOneOf, gw as DownloadLinkSent, c4 as DraftOrderChangesApplied, fT as DraftOrderCommitSettings, fG as DraftOrderDiffs, fJ as DraftOrderDiffsBillingUpdateInfoOneOf, fI as DraftOrderDiffsBuyerUpdateInfoOneOf, fK as DraftOrderDiffsRecipientUpdateInfoOneOf, fH as DraftOrderDiffsShippingUpdateInfoOneOf, e9 as Duration, aB as DurationUnit, iy as DurationUnitWithLiterals, hC as Email, gF as EmailEdited, e5 as Empty, df as EntityCreatedEvent, di as EntityDeletedEvent, dh as EntityUpdatedEvent, fg as ErrorInformation, i5 as EventMetadata, br as ExtendedFields, cK as ExternalReceipt, eN as ExternalReceiptInfo, b8 as FocalPoint, d2 as FormIdentifier, d1 as FormInfo, bk as FreeTrialPeriod, gD as FulfillerEmailSent, aj as FulfillmentStatus, g_ as FulfillmentStatusUpdated, ig as FulfillmentStatusWithLiterals, cW as FulfillmentStatusesAggregate, bD as FullAddressContactDetails, fh as GetOrderRequest, fi as GetOrderResponse, ea as GetPaymentCollectabilityStatusRequest, ej as GetRefundabilityStatusRequest, hj as GetShipmentsRequest, hk as GetShipmentsResponse, eK as GiftCardPaymentDetails, ct as GiftCardPaymentRefund, hz as IdAndVersion, dl as IdentificationData, dm as IdentificationDataIdOneOf, da as ImportOrderRequest, d9 as ImportedOrderDeleted, gp as InternalActivity, gq as InternalActivityContentOneOf, f2 as InternalDocument, f6 as InternalDocumentUpdateByFilterOperation, f3 as InternalDocumentUpdateOperation, fj as InternalQueryOrdersRequest, fp as InternalQueryOrdersResponse, f7 as InternalUpdateExistingOperation, aT as InventoryAction, iQ as InventoryActionWithLiterals, fU as InventoryUpdateDetails, gB as InvoiceAdded, hL as InvoiceDates, i0 as InvoiceDynamicPriceTotals, hA as InvoiceFields, gC as InvoiceSent, hy as InvoiceSentEvent, a_ as InvoiceStatus, iX as InvoiceStatusWithLiterals, h_ as InvoicesPayment, fO as ItemChangedDetails, eg as ItemMetadata, bu as ItemModifier, bc as ItemTaxFullDetails, ba as ItemType, bb as ItemTypeItemTypeDataOneOf, ac as ItemTypePreset, i8 as ItemTypePresetWithLiterals, hU as ItemizedFee, ae as JurisdictionType, ia as JurisdictionTypeWithLiterals, hN as LineItem, cg as LineItemAmount, c7 as LineItemChanges, fZ as LineItemDelta, f_ as LineItemDeltaDeltaOneOf, cb as LineItemDescriptionLineChange, bX as LineItemDiscount, c3 as LineItemExchangeData, hR as LineItemMetaData, cc as LineItemModifiersChange, c9 as LineItemPriceChange, ca as LineItemProductNameChange, c8 as LineItemQuantityChange, aq as LineItemQuantityChangeType, im as LineItemQuantityChangeTypeWithLiterals, dP as LineItemRefund, eT as LineItemRefundSummary, hP as LineItemTax, be as LineItemTaxBreakdown, bd as LineItemTaxInfo, gR as LineItemUpdate, hM as LineItems, hS as Locale, cZ as Location, bo as LocationAndQuantity, ch as ManagedAdditionalFee, ce as ManagedDiscount, cd as ManagedLineItem, aF as ManuallyRefundableReason, iC as ManuallyRefundableReasonWithLiterals, gY as MarkAsFulfilledRequest, gZ as MarkAsFulfilledResponse, h3 as MarkAsUnfulfilledRequest, h4 as MarkAsUnfulfilledResponse, ed as MarkOrderAsPaidRequest, gT as MarkOrderAsSeenByHumanRequest, gU as MarkOrderAsSeenByHumanResponse, gm as MaskedOrderLineItem, ep as MembershipChargeItem, eq as MembershipName, eL as MembershipPaymentDetails, cu as MembershipPaymentRefund, aN as MembershipPaymentStatus, iK as MembershipPaymentStatusWithLiterals, b$ as MerchantComment, bT as MerchantDiscount, bU as MerchantDiscountMerchantDiscountReasonOneOf, dk as MessageEnvelope, h$ as MetaData, bs as ModifierGroup, c2 as NewExchangeOrderCreated, aE as NonRefundableReason, iB as NonRefundableReasonWithLiterals, av as OrderActionType, is as OrderActionTypeWithLiterals, as as OrderActivityTypeEnumActivityType, ip as OrderActivityTypeEnumActivityTypeWithLiterals, aR as OrderApprovalStrategy, iO as OrderApprovalStrategyWithLiterals, d3 as OrderApproved, gv as OrderCanceled, gW as OrderCanceledEventOrderCanceled, c5 as OrderChange, c6 as OrderChangeValueOneOf, fA as OrderCreateNotifications, c1 as OrderCreatedFromExchange, fz as OrderCreationSettings, fW as OrderDeltasCommitted, gt as OrderFulfilled, d8 as OrderImported, d6 as OrderItemsRestocked, a$ as OrderLineItem, fN as OrderLineItemChangedDetails, gu as OrderNotFulfilled, gs as OrderPaid, gH as OrderPartiallyPaid, gI as OrderPending, gr as OrderPlaced, c0 as OrderRefunded, gJ as OrderRejected, d5 as OrderRejectedEventOrderRejected, i6 as OrderSearchSpec, c_ as OrderSettings, c$ as OrderSettingsAllowedActionsOneOf, an as OrderStatus, bP as OrderTaxBreakdown, bO as OrderTaxInfo, ex as OrderTransactions, d4 as OrdersExperiments, ey as Payment, cD as PaymentCanceled, cE as PaymentCanceledPaymentDetailsOneOf, aC as PaymentCollectabilityStatus, iz as PaymentCollectabilityStatusWithLiterals, cF as PaymentDeclined, cG as PaymentDeclinedPaymentDetailsOneOf, ad as PaymentOptionType, i9 as PaymentOptionTypeWithLiterals, ez as PaymentPaymentDetailsOneOf, cy as PaymentPending, cz as PaymentPendingPaymentDetailsOneOf, eA as PaymentReceiptInfoOneOf, cw as PaymentRefundFailed, cv as PaymentRefunded, ai as PaymentStatus, he as PaymentStatusUpdated, ie as PaymentStatusWithLiterals, hZ as Payments, hF as Phone, b9 as PhysicalProperties, bJ as PickupAddress, bI as PickupDetails, am as PickupMethod, ij as PickupMethodWithLiterals, gG as PickupReadyEmailSent, aU as Placement, iR as PlacementWithLiterals, b6 as PlainTextValue, dp as PlatformFee, dn as PlatformFeeSummary, fn as PlatformPaging, fq as PlatformPagingMetadata, fk as PlatformQuery, fl as PlatformQueryPagingMethodOneOf, e6 as PreparePaymentCollectionRequest, dZ as PreviewBuyerConfirmationEmailRequest, d_ as PreviewBuyerConfirmationEmailResponse, dX as PreviewBuyerPaymentsReceivedEmailRequest, dY as PreviewBuyerPaymentsReceivedEmailResponse, d$ as PreviewBuyerPickupConfirmationEmailRequest, e0 as PreviewBuyerPickupConfirmationEmailResponse, dT as PreviewCancelEmailRequest, dU as PreviewCancelEmailResponse, dV as PreviewCancelRefundEmailRequest, dW as PreviewCancelRefundEmailResponse, dK as PreviewEmailByTypeRequest, dL as PreviewEmailByTypeResponse, az as PreviewEmailType, iw as PreviewEmailTypeWithLiterals, dM as PreviewRefundEmailRequest, dS as PreviewRefundEmailResponse, e3 as PreviewResendDownloadLinksEmailRequest, e4 as PreviewResendDownloadLinksEmailResponse, e1 as PreviewShippingConfirmationEmailRequest, e2 as PreviewShippingConfirmationEmailResponse, bn as PriceDescription, by as PriceSummary, b0 as ProductName, gM as PublicActivityContentOneOf, fs as QueryOrderRequest, ft as QueryOrderResponse, hD as QuotesAddress, aK as Reason, iH as ReasonWithLiterals, cH as ReceiptCreated, cI as ReceiptCreatedReceiptInfoOneOf, cL as ReceiptSent, cM as ReceiptSentReceiptInfoOneOf, eb as RecordManuallyCollectedPaymentRequest, ec as RecordManuallyCollectedPaymentResponse, e7 as RedirectUrls, eO as Refund, dN as RefundDetails, cp as RefundInitiated, dO as RefundItem, eS as RefundItemsBreakdown, eu as RefundSideEffects, aO as RefundStatus, eQ as RefundStatusInfo, iL as RefundStatusWithLiterals, eP as RefundTransaction, ek as Refundability, el as RefundabilityAdditionalRefundabilityInfoOneOf, aD as RefundableStatus, iA as RefundableStatusWithLiterals, cx as RefundedAsStoreCredit, cq as RefundedPayment, cr as RefundedPaymentKindOneOf, cA as RegularPayment, eB as RegularPaymentDetails, eC as RegularPaymentDetailsPaymentMethodDetailsOneOf, cB as RegularPaymentPaymentMethodDetailsOneOf, cs as RegularPaymentRefund, hx as Reschedule, ev as RestockInfo, ew as RestockItem, aG as RestockType, iD as RestockTypeWithLiterals, dg as RestoreInfo, cl as SavedPaymentMethod, aA as ScheduledAction, ix as ScheduledActionWithLiterals, fu as SearchOrdersRequest, dq as SendBuyerConfirmationEmailRequest, dr as SendBuyerConfirmationEmailResponse, ds as SendBuyerPaymentsReceivedEmailRequest, dt as SendBuyerPaymentsReceivedEmailResponse, du as SendBuyerPickupConfirmationEmailRequest, dv as SendBuyerPickupConfirmationEmailResponse, dy as SendBuyerShippingConfirmationEmailRequest, dz as SendBuyerShippingConfirmationEmailResponse, dE as SendCancelRefundEmailRequest, dF as SendCancelRefundEmailResponse, dC as SendMerchantOrderReceivedNotificationRequest, dD as SendMerchantOrderReceivedNotificationResponse, dI as SendMerchantOrderReceivedPushRequest, dJ as SendMerchantOrderReceivedPushResponse, dG as SendRefundEmailRequest, dH as SendRefundEmailResponse, er as ServiceProperties, db as SetOrderNumberCounterRequest, gE as ShippingAddressEdited, gA as ShippingConfirmationEmailSent, ck as ShippingInformation, cj as ShippingInformationChange, bL as ShippingPrice, dR as ShippingRefund, bM as ShippingRegion, aQ as SortOrder, iN as SortOrderWithLiterals, fm as Sorting, hQ as Source, aW as SourceType, iT as SourceTypeWithLiterals, hK as StandardDetails, bB as StreetAddress, hJ as Subdivision, aV as SubdivisionType, iS as SubdivisionTypeWithLiterals, bi as SubscriptionDescription, af as SubscriptionFrequency, ib as SubscriptionFrequencyWithLiterals, bg as SubscriptionInfo, bj as SubscriptionSettings, bh as SubscriptionTitle, cY as TagList, cX as Tags, hr as Task, ht as TaskAction, hu as TaskActionActionOneOf, hs as TaskKey, bN as TaxSummary, bp as TaxableAddress, bq as TaxableAddressTaxableAddressDataOneOf, ah as TaxableAddressType, id as TaxableAddressTypeWithLiterals, hT as TotalPrice, ci as TotalPriceChange, gz as TrackingLinkAdded, gx as TrackingNumberAdded, gy as TrackingNumberEdited, aH as TransactionStatus, iE as TransactionStatusWithLiterals, bt as TranslatableString, cf as TranslatedValue, et as TriggerRefundRequest, fe as TriggerReindexOrderRequest, fb as TriggerReindexRequest, fc as TriggerReindexResponse, g5 as UnArchiveOrderRequest, g6 as UnArchiveOrderResponse, gO as UpdateActivityRequest, gi as UpdateBillingContactDetailsRequest, gj as UpdateBillingContactDetailsResponse, ge as UpdateBuyerEmailRequest, gf as UpdateBuyerEmailResponse, gb as UpdateBuyerInfoRequest, gd as UpdateBuyerInfoResponse, f0 as UpdateInternalDocumentsEvent, f1 as UpdateInternalDocumentsEventOperationOneOf, gQ as UpdateLineItemsDescriptionLinesRequest, gS as UpdateLineItemsDescriptionLinesResponse, gk as UpdateOrderLineItemRequest, gl as UpdateOrderLineItemsRequest, gn as UpdateOrderLineItemsResponse, fC as UpdateOrderRequest, fD as UpdateOrderResponse, gg as UpdateOrderShippingAddressRequest, gh as UpdateOrderShippingAddressResponse, gX as UpdateOrderStatusRequest, hf as V1BulkMarkOrdersAsPaidRequest, hg as V1BulkMarkOrdersAsPaidResponse, hh as V1CreatePaymentGatewayOrderRequest, hi as V1CreatePaymentGatewayOrderResponse, fL as V1LineItemDelta, fM as V1LineItemDeltaDeltaOneOf, hc as V1MarkOrderAsPaidRequest, hd as V1MarkOrderAsPaidResponse, d7 as V1RestockItem, eI as V1ScheduledAction, bF as V1ShippingInformation, i2 as Value, aY as ValueType, iV as ValueTypeWithLiterals, bE as VatId, al as VatType, ii as VatTypeWithLiterals, f9 as VersionedDeleteByIdsOperation, fa as VersionedDocumentId, f8 as VersionedDocumentUpdateOperation, aP as VersioningMode, iM as VersioningModeWithLiterals, eY as VoidAuthorizedPaymentsRequest, aw as WebhookIdentityType, it as WebhookIdentityTypeWithLiterals, ak as WeightUnit, ih as WeightUnitWithLiterals, cJ as WixReceipt, eM as WixReceiptInfo } from './ecom-v1-order-orders.universal-zh_hrpdy.mjs';
|
|
4
4
|
|
|
5
5
|
/** @internal */
|
|
6
6
|
declare function importOrder$1(httpClient: HttpClient): ImportOrderSignature;
|
|
@@ -1925,6 +1925,21 @@ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
|
|
|
1925
1925
|
WebhookIdentityType2["APP"] = "APP";
|
|
1926
1926
|
return WebhookIdentityType2;
|
|
1927
1927
|
})(WebhookIdentityType || {});
|
|
1928
|
+
var AdditionalFeeSource = /* @__PURE__ */ ((AdditionalFeeSource2) => {
|
|
1929
|
+
AdditionalFeeSource2["UNKNOWN_ADDITIONAL_FEE_SOURCE"] = "UNKNOWN_ADDITIONAL_FEE_SOURCE";
|
|
1930
|
+
AdditionalFeeSource2["SERVICE_PLUGIN"] = "SERVICE_PLUGIN";
|
|
1931
|
+
AdditionalFeeSource2["ITEM"] = "ITEM";
|
|
1932
|
+
AdditionalFeeSource2["MANUAL"] = "MANUAL";
|
|
1933
|
+
AdditionalFeeSource2["SHIPPING"] = "SHIPPING";
|
|
1934
|
+
AdditionalFeeSource2["PLATFORM"] = "PLATFORM";
|
|
1935
|
+
return AdditionalFeeSource2;
|
|
1936
|
+
})(AdditionalFeeSource || {});
|
|
1937
|
+
var ChargeType = /* @__PURE__ */ ((ChargeType2) => {
|
|
1938
|
+
ChargeType2["UNKNOWN_CHARGE_TYPE"] = "UNKNOWN_CHARGE_TYPE";
|
|
1939
|
+
ChargeType2["PASS_ON"] = "PASS_ON";
|
|
1940
|
+
ChargeType2["ABSORBED"] = "ABSORBED";
|
|
1941
|
+
return ChargeType2;
|
|
1942
|
+
})(ChargeType || {});
|
|
1928
1943
|
var PreviewEmailType = /* @__PURE__ */ ((PreviewEmailType2) => {
|
|
1929
1944
|
PreviewEmailType2["ORDER_PLACED"] = "ORDER_PLACED";
|
|
1930
1945
|
PreviewEmailType2["DOWNLOAD_LINKS"] = "DOWNLOAD_LINKS";
|
|
@@ -2056,21 +2071,6 @@ var VersioningMode = /* @__PURE__ */ ((VersioningMode2) => {
|
|
|
2056
2071
|
VersioningMode2["GREATER_OR_EQUAL"] = "GREATER_OR_EQUAL";
|
|
2057
2072
|
return VersioningMode2;
|
|
2058
2073
|
})(VersioningMode || {});
|
|
2059
|
-
var AdditionalFeeSource = /* @__PURE__ */ ((AdditionalFeeSource2) => {
|
|
2060
|
-
AdditionalFeeSource2["UNKNOWN_ADDITIONAL_FEE_SOURCE"] = "UNKNOWN_ADDITIONAL_FEE_SOURCE";
|
|
2061
|
-
AdditionalFeeSource2["SERVICE_PLUGIN"] = "SERVICE_PLUGIN";
|
|
2062
|
-
AdditionalFeeSource2["ITEM"] = "ITEM";
|
|
2063
|
-
AdditionalFeeSource2["MANUAL"] = "MANUAL";
|
|
2064
|
-
AdditionalFeeSource2["SHIPPING"] = "SHIPPING";
|
|
2065
|
-
AdditionalFeeSource2["PLATFORM"] = "PLATFORM";
|
|
2066
|
-
return AdditionalFeeSource2;
|
|
2067
|
-
})(AdditionalFeeSource || {});
|
|
2068
|
-
var ChargeType = /* @__PURE__ */ ((ChargeType2) => {
|
|
2069
|
-
ChargeType2["UNKNOWN_CHARGE_TYPE"] = "UNKNOWN_CHARGE_TYPE";
|
|
2070
|
-
ChargeType2["PASS_ON"] = "PASS_ON";
|
|
2071
|
-
ChargeType2["ABSORBED"] = "ABSORBED";
|
|
2072
|
-
return ChargeType2;
|
|
2073
|
-
})(ChargeType || {});
|
|
2074
2074
|
var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
|
|
2075
2075
|
SortOrder2["ASC"] = "ASC";
|
|
2076
2076
|
SortOrder2["DESC"] = "DESC";
|