@wix/auto_sdk_ecom_orders 1.0.145 → 1.0.147

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.
Files changed (41) hide show
  1. package/build/cjs/{ecom-v1-order-orders.universal-BlFIYeAo.d.ts → ecom-v1-order-orders.universal-CoyGOJOi.d.ts} +68 -68
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +19 -16
  4. package/build/cjs/index.js.map +1 -1
  5. package/build/cjs/index.typings.d.ts +2 -2
  6. package/build/cjs/index.typings.js +19 -16
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +68 -68
  9. package/build/cjs/meta.js +19 -16
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{ecom-v1-order-orders.universal-BlFIYeAo.d.mts → ecom-v1-order-orders.universal-CoyGOJOi.d.mts} +68 -68
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +19 -16
  14. package/build/es/index.mjs.map +1 -1
  15. package/build/es/index.typings.d.mts +2 -2
  16. package/build/es/index.typings.mjs +19 -16
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +68 -68
  19. package/build/es/meta.mjs +19 -16
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{ecom-v1-order-orders.universal-zh_hrpdy.d.ts → ecom-v1-order-orders.universal-DDISw1y8.d.ts} +80 -69
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +19 -16
  24. package/build/internal/cjs/index.js.map +1 -1
  25. package/build/internal/cjs/index.typings.d.ts +2 -2
  26. package/build/internal/cjs/index.typings.js +19 -16
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +68 -68
  29. package/build/internal/cjs/meta.js +19 -16
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{ecom-v1-order-orders.universal-zh_hrpdy.d.mts → ecom-v1-order-orders.universal-DDISw1y8.d.mts} +80 -69
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +19 -16
  34. package/build/internal/es/index.mjs.map +1 -1
  35. package/build/internal/es/index.typings.d.mts +2 -2
  36. package/build/internal/es/index.typings.mjs +19 -16
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +68 -68
  39. package/build/internal/es/meta.mjs +19 -16
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -2856,6 +2856,21 @@ interface AdditionalFee {
2856
2856
  */
2857
2857
  source?: AdditionalFeeSourceWithLiterals;
2858
2858
  }
2859
+ declare enum AdditionalFeeSource {
2860
+ UNKNOWN_ADDITIONAL_FEE_SOURCE = "UNKNOWN_ADDITIONAL_FEE_SOURCE",
2861
+ /** The additional fee was added by an additional fee service plugin. */
2862
+ SERVICE_PLUGIN = "SERVICE_PLUGIN",
2863
+ /** The additional fee was added to the item by a catalog or custom line item. */
2864
+ ITEM = "ITEM",
2865
+ /** The additional fee was added manually on request. */
2866
+ MANUAL = "MANUAL",
2867
+ /** The additional fee was added by the shipping provider. */
2868
+ SHIPPING = "SHIPPING",
2869
+ /** The additional fee was added by the Wix eCommerce platform. */
2870
+ PLATFORM = "PLATFORM"
2871
+ }
2872
+ /** @enumType */
2873
+ type AdditionalFeeSourceWithLiterals = AdditionalFeeSource | 'UNKNOWN_ADDITIONAL_FEE_SOURCE' | 'SERVICE_PLUGIN' | 'ITEM' | 'MANUAL' | 'SHIPPING' | 'PLATFORM';
2859
2874
  interface FulfillmentStatusesAggregate {
2860
2875
  /** Unique string values based on Fulfillment entities statuses */
2861
2876
  statuses?: string[] | null;
@@ -3026,6 +3041,56 @@ interface FormIdentifier {
3026
3041
  /** @maxLength 100 */
3027
3042
  namespace?: string;
3028
3043
  }
3044
+ interface PlatformFeeSummary {
3045
+ /** Total sum of all platform fees. */
3046
+ total?: Price;
3047
+ /** Total amount of platform fees with `PASS_ON` charge type. */
3048
+ totalPassOn?: Price;
3049
+ /** Total amount of platform fees with `ABSORBED` charge type. */
3050
+ totalAbsorbed?: Price;
3051
+ /**
3052
+ * Specific information about each platform fee.
3053
+ * @maxSize 300
3054
+ */
3055
+ fees?: PlatformFee[];
3056
+ }
3057
+ interface PlatformFee {
3058
+ /** Platform fee name. */
3059
+ name?: TranslatableString;
3060
+ /** Platform fee amount. */
3061
+ amount?: Price;
3062
+ /**
3063
+ * ID of the line item the platform fee applies to.
3064
+ * @format GUID
3065
+ */
3066
+ lineItemId?: string;
3067
+ /** Platform fee charge type. */
3068
+ chargeType?: ChargeTypeWithLiterals;
3069
+ /**
3070
+ * Percentage rate charged as platform fee.
3071
+ * The fee rate expressed as a decimal fraction between 0 and 1. For example, `0.05` for 5%.
3072
+ * @format DECIMAL_VALUE
3073
+ * @decimalValue options { gte:0, lte:1, maxScale:4 }
3074
+ */
3075
+ percentageRate?: string;
3076
+ }
3077
+ declare enum ChargeType {
3078
+ UNKNOWN_CHARGE_TYPE = "UNKNOWN_CHARGE_TYPE",
3079
+ /**
3080
+ * Platform fee passed on to buyer.
3081
+ *
3082
+ * This type increases the order total, and is visible to the buyer and merchant as an additional fee.
3083
+ */
3084
+ PASS_ON = "PASS_ON",
3085
+ /**
3086
+ * Platform fee absorbed by merchant.
3087
+ *
3088
+ * This type does not increase the order total, and is only visible to the merchant.
3089
+ */
3090
+ ABSORBED = "ABSORBED"
3091
+ }
3092
+ /** @enumType */
3093
+ type ChargeTypeWithLiterals = ChargeType | 'UNKNOWN_CHARGE_TYPE' | 'PASS_ON' | 'ABSORBED';
3029
3094
  /** Triggered when the order status changes to approved */
3030
3095
  interface OrderApproved {
3031
3096
  /** The order that was updated */
@@ -3251,71 +3316,6 @@ declare enum WebhookIdentityType {
3251
3316
  }
3252
3317
  /** @enumType */
3253
3318
  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';
3319
3319
  interface SendBuyerConfirmationEmailRequest {
3320
3320
  /** @format GUID */
3321
3321
  orderId?: string;
@@ -3989,6 +3989,12 @@ interface ServiceProperties {
3989
3989
  * @max 10000
3990
3990
  */
3991
3991
  numberOfParticipants?: number | null;
3992
+ /**
3993
+ * Date and time the service is to be ended, in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format.
3994
+ * For example, the date and time a class will end.
3995
+ * @internal
3996
+ */
3997
+ endDate?: Date | null;
3992
3998
  }
3993
3999
  interface ChargeMembershipsResponse {
3994
4000
  }
@@ -4157,7 +4163,7 @@ interface PaymentReceiptInfoOneOf {
4157
4163
  externalReceipt?: ExternalReceiptInfo;
4158
4164
  }
4159
4165
  interface RegularPaymentDetails extends RegularPaymentDetailsPaymentMethodDetailsOneOf {
4160
- /** Whether regular card used */
4166
+ /** Credit card details. */
4161
4167
  creditCardDetails?: CreditCardPaymentMethodDetails;
4162
4168
  /**
4163
4169
  * Wix Payments order ID.
@@ -4204,15 +4210,20 @@ interface RegularPaymentDetails extends RegularPaymentDetailsPaymentMethodDetail
4204
4210
  */
4205
4211
  chargebacks?: Chargeback[];
4206
4212
  /**
4207
- * Payment method ID
4213
+ * Payment method ID.
4208
4214
  * @internal
4209
4215
  * @maxLength 36
4210
4216
  */
4211
4217
  paymentMethodId?: string | null;
4218
+ /**
4219
+ * Platform fee amount.
4220
+ * @internal
4221
+ */
4222
+ platformFee?: Price;
4212
4223
  }
4213
4224
  /** @oneof */
4214
4225
  interface RegularPaymentDetailsPaymentMethodDetailsOneOf {
4215
- /** Whether regular card used */
4226
+ /** Credit card details. */
4216
4227
  creditCardDetails?: CreditCardPaymentMethodDetails;
4217
4228
  }
4218
4229
  declare enum TransactionStatus {
@@ -8401,4 +8412,4 @@ interface BulkUpdateOrderTagsOptions {
8401
8412
  unassignTags?: Tags;
8402
8413
  }
8403
8414
 
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 };
8415
+ 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, AdditionalFeeSource as av, OrderActionType as aw, ChargeType as ax, WebhookIdentityType 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 PlatformFeeSummary as d3, type PlatformFee as d4, type OrderApproved as d5, type OrdersExperiments as d6, type OrderRejectedEventOrderRejected as d7, type OrderItemsRestocked as d8, type V1RestockItem 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 OrderImported as da, type ImportedOrderDeleted as db, type ImportOrderRequest as dc, type SetOrderNumberCounterRequest as dd, type BulkDeleteImportedOrdersRequest as de, type DomainEvent as df, type DomainEventBodyOneOf as dg, type EntityCreatedEvent as dh, type RestoreInfo as di, type EntityUpdatedEvent as dj, type EntityDeletedEvent as dk, type ActionEvent as dl, type MessageEnvelope as dm, type IdentificationData as dn, type IdentificationDataIdOneOf 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 AdditionalFeeSourceWithLiterals as is, type OrderActionTypeWithLiterals as it, type ChargeTypeWithLiterals as iu, type WebhookIdentityTypeWithLiterals 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-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';
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-DDISw1y8.mjs';
3
+ export { dl 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, av as AdditionalFeeSource, is 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, de 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, ax as ChargeType, iu 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, df as DomainEvent, dg 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, dh as EntityCreatedEvent, dk as EntityDeletedEvent, dj 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, dn as IdentificationData, dp as IdentificationDataIdOneOf, dc as ImportOrderRequest, db 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, dm as MessageEnvelope, h$ as MetaData, bs as ModifierGroup, c2 as NewExchangeOrderCreated, aE as NonRefundableReason, iB as NonRefundableReasonWithLiterals, aw as OrderActionType, it as OrderActionTypeWithLiterals, as as OrderActivityTypeEnumActivityType, ip as OrderActivityTypeEnumActivityTypeWithLiterals, aR as OrderApprovalStrategy, iO as OrderApprovalStrategyWithLiterals, d5 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, da as OrderImported, d8 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, d7 as OrderRejectedEventOrderRejected, i6 as OrderSearchSpec, c_ as OrderSettings, c$ as OrderSettingsAllowedActionsOneOf, an as OrderStatus, bP as OrderTaxBreakdown, bO as OrderTaxInfo, ex as OrderTransactions, d6 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, d4 as PlatformFee, d3 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, di 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, dd 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, d9 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, ay as WebhookIdentityType, iv as WebhookIdentityTypeWithLiterals, ak as WeightUnit, ih as WeightUnitWithLiterals, cJ as WixReceipt, eM as WixReceiptInfo } from './ecom-v1-order-orders.universal-DDISw1y8.mjs';
4
4
 
5
5
  /** @internal */
6
6
  declare function importOrder$1(httpClient: HttpClient): ImportOrderSignature;
@@ -515,7 +515,10 @@ function chargeMemberships(payload) {
515
515
  const serializedData = transformPaths(payload, [
516
516
  {
517
517
  transformFn: transformSDKTimestampToRESTTimestamp,
518
- paths: [{ path: "membershipCharges.serviceProperties.scheduledDate" }]
518
+ paths: [
519
+ { path: "membershipCharges.serviceProperties.scheduledDate" },
520
+ { path: "membershipCharges.serviceProperties.endDate" }
521
+ ]
519
522
  }
520
523
  ]);
521
524
  const metadata = {
@@ -1899,6 +1902,15 @@ var ChannelType = /* @__PURE__ */ ((ChannelType2) => {
1899
1902
  ChannelType2["PAYPAL_AGENTIC_CHECKOUT"] = "PAYPAL_AGENTIC_CHECKOUT";
1900
1903
  return ChannelType2;
1901
1904
  })(ChannelType || {});
1905
+ var AdditionalFeeSource = /* @__PURE__ */ ((AdditionalFeeSource2) => {
1906
+ AdditionalFeeSource2["UNKNOWN_ADDITIONAL_FEE_SOURCE"] = "UNKNOWN_ADDITIONAL_FEE_SOURCE";
1907
+ AdditionalFeeSource2["SERVICE_PLUGIN"] = "SERVICE_PLUGIN";
1908
+ AdditionalFeeSource2["ITEM"] = "ITEM";
1909
+ AdditionalFeeSource2["MANUAL"] = "MANUAL";
1910
+ AdditionalFeeSource2["SHIPPING"] = "SHIPPING";
1911
+ AdditionalFeeSource2["PLATFORM"] = "PLATFORM";
1912
+ return AdditionalFeeSource2;
1913
+ })(AdditionalFeeSource || {});
1902
1914
  var OrderActionType = /* @__PURE__ */ ((OrderActionType2) => {
1903
1915
  OrderActionType2["EDIT"] = "EDIT";
1904
1916
  OrderActionType2["UPDATE"] = "UPDATE";
@@ -1917,6 +1929,12 @@ var OrderActionType = /* @__PURE__ */ ((OrderActionType2) => {
1917
1929
  OrderActionType2["MODIFY_INVENTORY"] = "MODIFY_INVENTORY";
1918
1930
  return OrderActionType2;
1919
1931
  })(OrderActionType || {});
1932
+ var ChargeType = /* @__PURE__ */ ((ChargeType2) => {
1933
+ ChargeType2["UNKNOWN_CHARGE_TYPE"] = "UNKNOWN_CHARGE_TYPE";
1934
+ ChargeType2["PASS_ON"] = "PASS_ON";
1935
+ ChargeType2["ABSORBED"] = "ABSORBED";
1936
+ return ChargeType2;
1937
+ })(ChargeType || {});
1920
1938
  var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
1921
1939
  WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
1922
1940
  WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
@@ -1925,21 +1943,6 @@ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
1925
1943
  WebhookIdentityType2["APP"] = "APP";
1926
1944
  return WebhookIdentityType2;
1927
1945
  })(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 || {});
1943
1946
  var PreviewEmailType = /* @__PURE__ */ ((PreviewEmailType2) => {
1944
1947
  PreviewEmailType2["ORDER_PLACED"] = "ORDER_PLACED";
1945
1948
  PreviewEmailType2["DOWNLOAD_LINKS"] = "DOWNLOAD_LINKS";