@wix/auto_sdk_ecom_orders 1.0.192 → 1.0.193

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-BU92OyiT.d.ts → ecom-v1-order-orders.universal-Cs5iqgM-.d.ts} +163 -163
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +6 -6
  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 +6 -6
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +163 -163
  9. package/build/cjs/meta.js +6 -6
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{ecom-v1-order-orders.universal-BU92OyiT.d.mts → ecom-v1-order-orders.universal-Cs5iqgM-.d.mts} +163 -163
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +6 -6
  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 +6 -6
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +163 -163
  19. package/build/es/meta.mjs +6 -6
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{ecom-v1-order-orders.universal-CpYZINWD.d.ts → ecom-v1-order-orders.universal-X20B0fHU.d.ts} +163 -163
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +6 -6
  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 +6 -6
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +163 -163
  29. package/build/internal/cjs/meta.js +6 -6
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{ecom-v1-order-orders.universal-CpYZINWD.d.mts → ecom-v1-order-orders.universal-X20B0fHU.d.mts} +163 -163
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +6 -6
  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 +6 -6
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +163 -163
  39. package/build/internal/es/meta.mjs +6 -6
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -3270,168 +3270,6 @@ interface AccountInfo {
3270
3270
  */
3271
3271
  siteId?: string | null;
3272
3272
  }
3273
- interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
3274
- /** insert/update documents */
3275
- update?: InternalDocumentUpdateOperation;
3276
- /** delete by document ids */
3277
- deleteByIds?: DeleteByIdsOperation;
3278
- /** delete documents matching filter */
3279
- deleteByFilter?: DeleteByFilterOperation;
3280
- /** update internal documents matching filter */
3281
- updateByFilter?: InternalDocumentUpdateByFilterOperation;
3282
- /** update only existing documents */
3283
- updateExisting?: InternalUpdateExistingOperation;
3284
- /** insert/update documents with versioning */
3285
- versionedUpdate?: VersionedDocumentUpdateOperation;
3286
- /** delete by document ids with versioning */
3287
- versionedDeleteByIds?: VersionedDeleteByIdsOperation;
3288
- /**
3289
- * type of the documents
3290
- * @minLength 2
3291
- */
3292
- documentType?: string;
3293
- /**
3294
- * language of the documents (mandatory)
3295
- * @minLength 2
3296
- */
3297
- language?: string | null;
3298
- /**
3299
- * one or more search documents
3300
- * @deprecated
3301
- */
3302
- addDocuments?: InternalDocument[];
3303
- /**
3304
- * one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
3305
- * @deprecated
3306
- */
3307
- removeDocumentIds?: string[];
3308
- /** id to pass to processing notification */
3309
- correlationId?: string | null;
3310
- /** when event was created / issued */
3311
- issuedAt?: Date | null;
3312
- }
3313
- /** @oneof */
3314
- interface UpdateInternalDocumentsEventOperationOneOf {
3315
- /** insert/update documents */
3316
- update?: InternalDocumentUpdateOperation;
3317
- /** delete by document ids */
3318
- deleteByIds?: DeleteByIdsOperation;
3319
- /** delete documents matching filter */
3320
- deleteByFilter?: DeleteByFilterOperation;
3321
- /** update internal documents matching filter */
3322
- updateByFilter?: InternalDocumentUpdateByFilterOperation;
3323
- /** update only existing documents */
3324
- updateExisting?: InternalUpdateExistingOperation;
3325
- /** insert/update documents with versioning */
3326
- versionedUpdate?: VersionedDocumentUpdateOperation;
3327
- /** delete by document ids with versioning */
3328
- versionedDeleteByIds?: VersionedDeleteByIdsOperation;
3329
- }
3330
- interface InternalDocument {
3331
- /** document with mandatory fields (id) and with fields specific to the type of the document */
3332
- document?: Record<string, any> | null;
3333
- }
3334
- interface InternalDocumentUpdateOperation {
3335
- /** documents to index or update */
3336
- documents?: InternalDocument[];
3337
- }
3338
- interface DeleteByIdsOperation {
3339
- /** ids of the documents to delete */
3340
- documentIds?: string[];
3341
- /**
3342
- * tenant id for custom tenancy strategy
3343
- * @minLength 2
3344
- * @maxLength 300
3345
- */
3346
- tenantId?: string | null;
3347
- }
3348
- interface DeleteByFilterOperation {
3349
- /** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
3350
- filter?: Record<string, any> | null;
3351
- /**
3352
- * tenant id for custom tenancy strategy
3353
- * @minLength 2
3354
- * @maxLength 300
3355
- */
3356
- tenantId?: string | null;
3357
- }
3358
- interface InternalDocumentUpdateByFilterOperation {
3359
- /** documents matching this filter will be updated */
3360
- filter?: Record<string, any> | null;
3361
- /** partial document to apply */
3362
- document?: InternalDocument;
3363
- /**
3364
- * tenant id for custom tenancy strategy
3365
- * @minLength 2
3366
- * @maxLength 300
3367
- */
3368
- tenantId?: string | null;
3369
- }
3370
- interface InternalUpdateExistingOperation {
3371
- /** documents to update */
3372
- documents?: InternalDocument[];
3373
- }
3374
- interface VersionedDocumentUpdateOperation {
3375
- /** documents to create or overwrite */
3376
- documents?: InternalDocument[];
3377
- /** versioning mode to use instead of default */
3378
- versioningMode?: VersioningModeWithLiterals;
3379
- }
3380
- declare enum VersioningMode {
3381
- /** use default versioning mode agreed with search team */
3382
- DEFAULT = "DEFAULT",
3383
- /** execute only if version is greater than existing */
3384
- GREATER_THAN = "GREATER_THAN",
3385
- /** execute only if version is greater or equal to existing */
3386
- GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
3387
- }
3388
- /** @enumType */
3389
- type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
3390
- interface VersionedDeleteByIdsOperation {
3391
- /** ids with version of the documents to delete */
3392
- documentIds?: VersionedDocumentId[];
3393
- /**
3394
- * tenant id for custom tenancy strategy
3395
- * @minLength 2
3396
- * @maxLength 300
3397
- */
3398
- tenantId?: string | null;
3399
- }
3400
- interface VersionedDocumentId {
3401
- /** document id */
3402
- documentId?: string;
3403
- /** document version */
3404
- version?: string;
3405
- /** versioning mode to use instead of default */
3406
- versioningMode?: VersioningModeWithLiterals;
3407
- }
3408
- interface TriggerReindexRequest {
3409
- /** @format GUID */
3410
- metasiteId?: string;
3411
- /**
3412
- * @minLength 1
3413
- * @maxLength 100
3414
- * @maxSize 100
3415
- */
3416
- orderIds?: string[];
3417
- }
3418
- interface TriggerReindexResponse {
3419
- }
3420
- interface Empty {
3421
- }
3422
- interface BatchOfTriggerReindexOrderRequest {
3423
- /** @maxSize 25 */
3424
- requests?: TriggerReindexOrderRequest[];
3425
- }
3426
- interface TriggerReindexOrderRequest {
3427
- /** @format GUID */
3428
- metasiteId?: string;
3429
- /**
3430
- * @minLength 1
3431
- * @maxLength 100
3432
- */
3433
- orderId?: string;
3434
- }
3435
3273
  interface SendBuyerConfirmationEmailRequest {
3436
3274
  /** @format GUID */
3437
3275
  orderId?: string;
@@ -3724,6 +3562,8 @@ interface PreviewResendDownloadLinksEmailRequest {
3724
3562
  interface PreviewResendDownloadLinksEmailResponse {
3725
3563
  emailPreview?: string;
3726
3564
  }
3565
+ interface Empty {
3566
+ }
3727
3567
  interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
3728
3568
  /** Emitted on a meta site creation. */
3729
3569
  siteCreated?: SiteCreated;
@@ -5379,6 +5219,166 @@ interface ChargeSavedPaymentMethodResponse {
5379
5219
  /** Payment gateway's order ID (e.g Wix Payments) */
5380
5220
  paymentGatewayOrderId?: string;
5381
5221
  }
5222
+ interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
5223
+ /** insert/update documents */
5224
+ update?: InternalDocumentUpdateOperation;
5225
+ /** delete by document ids */
5226
+ deleteByIds?: DeleteByIdsOperation;
5227
+ /** delete documents matching filter */
5228
+ deleteByFilter?: DeleteByFilterOperation;
5229
+ /** update internal documents matching filter */
5230
+ updateByFilter?: InternalDocumentUpdateByFilterOperation;
5231
+ /** update only existing documents */
5232
+ updateExisting?: InternalUpdateExistingOperation;
5233
+ /** insert/update documents with versioning */
5234
+ versionedUpdate?: VersionedDocumentUpdateOperation;
5235
+ /** delete by document ids with versioning */
5236
+ versionedDeleteByIds?: VersionedDeleteByIdsOperation;
5237
+ /**
5238
+ * type of the documents
5239
+ * @minLength 2
5240
+ */
5241
+ documentType?: string;
5242
+ /**
5243
+ * language of the documents (mandatory)
5244
+ * @minLength 2
5245
+ */
5246
+ language?: string | null;
5247
+ /**
5248
+ * one or more search documents
5249
+ * @deprecated
5250
+ */
5251
+ addDocuments?: InternalDocument[];
5252
+ /**
5253
+ * one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
5254
+ * @deprecated
5255
+ */
5256
+ removeDocumentIds?: string[];
5257
+ /** id to pass to processing notification */
5258
+ correlationId?: string | null;
5259
+ /** when event was created / issued */
5260
+ issuedAt?: Date | null;
5261
+ }
5262
+ /** @oneof */
5263
+ interface UpdateInternalDocumentsEventOperationOneOf {
5264
+ /** insert/update documents */
5265
+ update?: InternalDocumentUpdateOperation;
5266
+ /** delete by document ids */
5267
+ deleteByIds?: DeleteByIdsOperation;
5268
+ /** delete documents matching filter */
5269
+ deleteByFilter?: DeleteByFilterOperation;
5270
+ /** update internal documents matching filter */
5271
+ updateByFilter?: InternalDocumentUpdateByFilterOperation;
5272
+ /** update only existing documents */
5273
+ updateExisting?: InternalUpdateExistingOperation;
5274
+ /** insert/update documents with versioning */
5275
+ versionedUpdate?: VersionedDocumentUpdateOperation;
5276
+ /** delete by document ids with versioning */
5277
+ versionedDeleteByIds?: VersionedDeleteByIdsOperation;
5278
+ }
5279
+ interface InternalDocument {
5280
+ /** document with mandatory fields (id) and with fields specific to the type of the document */
5281
+ document?: Record<string, any> | null;
5282
+ }
5283
+ interface InternalDocumentUpdateOperation {
5284
+ /** documents to index or update */
5285
+ documents?: InternalDocument[];
5286
+ }
5287
+ interface DeleteByIdsOperation {
5288
+ /** ids of the documents to delete */
5289
+ documentIds?: string[];
5290
+ /**
5291
+ * tenant id for custom tenancy strategy
5292
+ * @minLength 2
5293
+ * @maxLength 300
5294
+ */
5295
+ tenantId?: string | null;
5296
+ }
5297
+ interface DeleteByFilterOperation {
5298
+ /** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
5299
+ filter?: Record<string, any> | null;
5300
+ /**
5301
+ * tenant id for custom tenancy strategy
5302
+ * @minLength 2
5303
+ * @maxLength 300
5304
+ */
5305
+ tenantId?: string | null;
5306
+ }
5307
+ interface InternalDocumentUpdateByFilterOperation {
5308
+ /** documents matching this filter will be updated */
5309
+ filter?: Record<string, any> | null;
5310
+ /** partial document to apply */
5311
+ document?: InternalDocument;
5312
+ /**
5313
+ * tenant id for custom tenancy strategy
5314
+ * @minLength 2
5315
+ * @maxLength 300
5316
+ */
5317
+ tenantId?: string | null;
5318
+ }
5319
+ interface InternalUpdateExistingOperation {
5320
+ /** documents to update */
5321
+ documents?: InternalDocument[];
5322
+ }
5323
+ interface VersionedDocumentUpdateOperation {
5324
+ /** documents to create or overwrite */
5325
+ documents?: InternalDocument[];
5326
+ /** versioning mode to use instead of default */
5327
+ versioningMode?: VersioningModeWithLiterals;
5328
+ }
5329
+ declare enum VersioningMode {
5330
+ /** use default versioning mode agreed with search team */
5331
+ DEFAULT = "DEFAULT",
5332
+ /** execute only if version is greater than existing */
5333
+ GREATER_THAN = "GREATER_THAN",
5334
+ /** execute only if version is greater or equal to existing */
5335
+ GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
5336
+ }
5337
+ /** @enumType */
5338
+ type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
5339
+ interface VersionedDeleteByIdsOperation {
5340
+ /** ids with version of the documents to delete */
5341
+ documentIds?: VersionedDocumentId[];
5342
+ /**
5343
+ * tenant id for custom tenancy strategy
5344
+ * @minLength 2
5345
+ * @maxLength 300
5346
+ */
5347
+ tenantId?: string | null;
5348
+ }
5349
+ interface VersionedDocumentId {
5350
+ /** document id */
5351
+ documentId?: string;
5352
+ /** document version */
5353
+ version?: string;
5354
+ /** versioning mode to use instead of default */
5355
+ versioningMode?: VersioningModeWithLiterals;
5356
+ }
5357
+ interface TriggerReindexRequest {
5358
+ /** @format GUID */
5359
+ metasiteId?: string;
5360
+ /**
5361
+ * @minLength 1
5362
+ * @maxLength 100
5363
+ * @maxSize 100
5364
+ */
5365
+ orderIds?: string[];
5366
+ }
5367
+ interface TriggerReindexResponse {
5368
+ }
5369
+ interface BatchOfTriggerReindexOrderRequest {
5370
+ /** @maxSize 25 */
5371
+ requests?: TriggerReindexOrderRequest[];
5372
+ }
5373
+ interface TriggerReindexOrderRequest {
5374
+ /** @format GUID */
5375
+ metasiteId?: string;
5376
+ /**
5377
+ * @minLength 1
5378
+ * @maxLength 100
5379
+ */
5380
+ orderId?: string;
5381
+ }
5382
5382
  interface DiffmatokyPayload {
5383
5383
  left?: string;
5384
5384
  right?: string;
@@ -8509,4 +8509,4 @@ interface BulkUpdateOrderTagsOptions {
8509
8509
  unassignTags?: Tags;
8510
8510
  }
8511
8511
 
8512
- export { ChannelType as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, AdjustmentType as E, PaymentStatus as F, type GetPaymentCollectabilityStatusResponse as G, FulfillmentStatus as H, ItemTypePreset as I, JurisdictionType as J, VatType as K, PickupMethod as L, type MaskedOrder as M, OrderStatus as N, type Order as O, type Price as P, DiscountType as Q, DiscountReason as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, LineItemQuantityChangeType as X, ActivityType as Y, OrderActivityTypeEnumActivityType as Z, AttributionSource as _, type PreparePaymentCollectionOptions as a, type LocationAndQuantity as a$, AdditionalFeeSource as a0, OrderActionType as a1, ChargeType as a2, WebhookIdentityType as a3, VersioningMode as a4, PreviewEmailType as a5, State as a6, SiteCreatedContext as a7, Namespace as a8, DeleteStatus as a9, InvoiceStatus as aA, type OrderLineItem as aB, type ProductName as aC, type CatalogReference as aD, type DescriptionLine as aE, type DescriptionLineValueOneOf as aF, type DescriptionLineDescriptionLineValueOneOf as aG, type DescriptionLineName as aH, type PlainTextValue as aI, type Color as aJ, type FocalPoint as aK, type PhysicalProperties as aL, type Dimensions as aM, type ItemType as aN, type ItemTypeItemTypeDataOneOf as aO, type ItemTaxFullDetails as aP, type LineItemTaxInfo as aQ, type LineItemTaxBreakdown as aR, type DigitalFile as aS, type SubscriptionInfo as aT, type SubscriptionTitle as aU, type SubscriptionDescription as aV, type SubscriptionSettings as aW, type FreeTrialPeriod as aX, type BillingAdjustment as aY, type BillingAdjustmentPriceSummary as aZ, type PriceDescription as a_, ScheduledAction as aa, DurationUnit as ab, PaymentCollectabilityStatus as ac, PredefinedPaymentMethod as ad, RefundableStatus as ae, NonRefundableReason as af, ManuallyRefundableReason as ag, RestockType as ah, TransactionStatus as ai, AuthorizationCaptureStatus as aj, AuthorizationVoidStatus as ak, Reason as al, ActionType as am, ChargebackStatus as an, MembershipPaymentStatus as ao, RefundStatus 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, type PreparePaymentCollectionResponse as b, type AuthorizedPaymentCreated as b$, type TaxableAddress as b0, type TaxableAddressTaxableAddressDataOneOf as b1, type ExtendedFields as b2, type ModifierGroup as b3, type TranslatableString as b4, type ItemModifier as b5, type BuyerInfo as b6, type BuyerInfoIdOneOf as b7, type CurrencyConversionDetails as b8, type PriceSummary as b9, type ItemCombinationLineItem as bA, type Activity as bB, type ActivityContentOneOf as bC, type CustomActivity as bD, type MerchantComment as bE, type OrderRefunded as bF, type OrderCreatedFromExchange as bG, type NewExchangeOrderCreated as bH, type LineItemExchangeData as bI, type DraftOrderChangesApplied as bJ, type OrderChange as bK, type OrderChangeValueOneOf as bL, type LineItemChanges as bM, type LineItemQuantityChange as bN, type LineItemPriceChange as bO, type LineItemProductNameChange as bP, type LineItemDescriptionLineChange as bQ, type LineItemModifiersChange as bR, type ManagedLineItem as bS, type ManagedDiscount as bT, type TranslatedValue as bU, type LineItemAmount as bV, type ManagedAdditionalFee as bW, type TotalPriceChange as bX, type ShippingInformationChange as bY, type ShippingInformation as bZ, type SavedPaymentMethod as b_, type AddressWithContact as ba, type Address as bb, type StreetAddress as bc, type AddressLocation as bd, type FullAddressContactDetails as be, type VatId as bf, type V1ShippingInformation as bg, type DeliveryLogistics as bh, type DeliveryLogisticsAddressOneOf as bi, type PickupDetails as bj, type PickupAddress as bk, type DeliveryTimeSlot as bl, type ShippingPrice as bm, type ShippingRegion as bn, type TaxSummary as bo, type OrderTaxInfo as bp, type OrderTaxBreakdown as bq, type AppliedDiscount as br, type AppliedDiscountDiscountSourceOneOf as bs, type Coupon as bt, type MerchantDiscount as bu, type MerchantDiscountMerchantDiscountReasonOneOf as bv, type DiscountRule as bw, type DiscountRuleName as bx, type LineItemDiscount as by, type ItemCombination as bz, type PreparePaymentCollectionApplicationErrors as c, type EntityCreatedEvent as c$, type AuthorizedPaymentCaptured as c0, type AuthorizedPaymentVoided as c1, type RefundInitiated as c2, type RefundedPayment as c3, type RefundedPaymentKindOneOf as c4, type RegularPaymentRefund as c5, type GiftCardPaymentRefund as c6, type MembershipPaymentRefund as c7, type PaymentRefunded as c8, type PaymentRefundFailed as c9, type Tags as cA, type TagList as cB, type Location as cC, type OrderSettings as cD, type OrderSettingsAllowedActionsOneOf as cE, type OrderSettingsEditableByOneOf as cF, type CustomAllowedActions as cG, type OwnerApps as cH, type FormInfo as cI, type FormIdentifier as cJ, type PlatformFeeSummary as cK, type PlatformFee as cL, type OrderApproved as cM, type OrdersExperiments as cN, type OrderRejectedEventOrderRejected as cO, type OrderItemsRestocked as cP, type V1RestockItem as cQ, type OrderImported as cR, type ImportedOrderDeleted as cS, type ImportOrderRequest as cT, type ImportOrderResponse as cU, type SetOrderNumberCounterRequest as cV, type SetOrderNumberCounterResponse as cW, type BulkDeleteImportedOrdersRequest as cX, type BulkDeleteImportedOrdersResponse as cY, type DomainEvent as cZ, type DomainEventBodyOneOf as c_, type RefundedAsStoreCredit as ca, type PaymentPending as cb, type PaymentPendingPaymentDetailsOneOf as cc, type RegularPayment as cd, type RegularPaymentPaymentMethodDetailsOneOf as ce, type CreditCardDetails as cf, type PaymentCanceled as cg, type PaymentCanceledPaymentDetailsOneOf as ch, type PaymentDeclined as ci, type PaymentDeclinedPaymentDetailsOneOf as cj, type ReceiptCreated as ck, type ReceiptCreatedReceiptInfoOneOf as cl, type WixReceipt as cm, type ExternalReceipt as cn, type ReceiptSent as co, type ReceiptSentReceiptInfoOneOf as cp, type ChargebackCreated as cq, type ChargebackReversed as cr, type CreatedBy as cs, type CreatedByStringOneOf as ct, type ChannelInfo as cu, type CustomField as cv, type BalanceSummary as cw, type Balance as cx, type AdditionalFee as cy, type FulfillmentStatusesAggregate as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type PreviewBuyerPickupConfirmationEmailResponse as d$, type RestoreInfo as d0, type EntityUpdatedEvent as d1, type EntityDeletedEvent as d2, type ActionEvent as d3, type MessageEnvelope as d4, type IdentificationData as d5, type IdentificationDataIdOneOf as d6, type AccountInfo as d7, type UpdateInternalDocumentsEvent as d8, type UpdateInternalDocumentsEventOperationOneOf as d9, type BulkSendBuyerShippingConfirmationEmailsResponse as dA, type SendMerchantOrderReceivedNotificationRequest as dB, type SendMerchantOrderReceivedNotificationResponse as dC, type SendCancelRefundEmailRequest as dD, type SendCancelRefundEmailResponse as dE, type SendRefundEmailRequest as dF, type SendRefundEmailResponse as dG, type SendMerchantOrderReceivedPushRequest as dH, type SendMerchantOrderReceivedPushResponse as dI, type PreviewEmailByTypeRequest as dJ, type PreviewEmailByTypeResponse as dK, type PreviewRefundEmailRequest as dL, type RefundDetails as dM, type RefundItem as dN, type LineItemRefund as dO, type AdditionalFeeRefund as dP, type ShippingRefund as dQ, type PreviewRefundEmailResponse as dR, type PreviewCancelEmailRequest as dS, type PreviewCancelEmailResponse as dT, type PreviewCancelRefundEmailRequest as dU, type PreviewCancelRefundEmailResponse as dV, type PreviewBuyerPaymentsReceivedEmailRequest as dW, type PreviewBuyerPaymentsReceivedEmailResponse as dX, type PreviewBuyerConfirmationEmailRequest as dY, type PreviewBuyerConfirmationEmailResponse as dZ, type PreviewBuyerPickupConfirmationEmailRequest as d_, type InternalDocument as da, type InternalDocumentUpdateOperation as db, type DeleteByIdsOperation as dc, type DeleteByFilterOperation as dd, type InternalDocumentUpdateByFilterOperation as de, type InternalUpdateExistingOperation as df, type VersionedDocumentUpdateOperation as dg, type VersionedDeleteByIdsOperation as dh, type VersionedDocumentId as di, type TriggerReindexRequest as dj, type TriggerReindexResponse as dk, type Empty as dl, type BatchOfTriggerReindexOrderRequest as dm, type TriggerReindexOrderRequest as dn, type SendBuyerConfirmationEmailRequest as dp, type SendBuyerConfirmationEmailResponse as dq, type SendBuyerPaymentsReceivedEmailRequest as dr, type SendBuyerPaymentsReceivedEmailResponse as ds, type SendBuyerPickupConfirmationEmailRequest as dt, type SendBuyerPickupConfirmationEmailResponse as du, type BulkSendBuyerPickupConfirmationEmailsRequest as dv, type BulkSendBuyerPickupConfirmationEmailsResponse as dw, type SendBuyerShippingConfirmationEmailRequest as dx, type SendBuyerShippingConfirmationEmailResponse as dy, type BulkSendBuyerShippingConfirmationEmailsRequest as dz, type PaymentCapture as e, type ChargedBy as e$, type PreviewShippingConfirmationEmailRequest as e0, type PreviewShippingConfirmationEmailResponse as e1, type PreviewResendDownloadLinksEmailRequest as e2, type PreviewResendDownloadLinksEmailResponse as e3, type MetaSiteSpecialEvent as e4, type MetaSiteSpecialEventPayloadOneOf as e5, type Asset as e6, type SiteCreated as e7, type SiteTransferred as e8, type SiteDeleted as e9, type HasCustomEmailConfigurationsResponse as eA, type AddToAutomationMigrationPopulationRequest as eB, type AddToAutomationMigrationPopulationResponse as eC, type IsInAutomationMigrationPopulationRequest as eD, type IsInAutomationMigrationPopulationResponse as eE, type PreparePaymentCollectionRequest as eF, type RedirectUrls as eG, type DelayedCaptureSettings as eH, type Duration as eI, type GetPaymentCollectabilityStatusRequest as eJ, type RecordManuallyCollectedPaymentRequest as eK, type UserDefinedPaymentMethodName as eL, type UserDefinedPaymentMethodNameKindOneOf as eM, type RecordManuallyCollectedPaymentResponse as eN, type MarkOrderAsPaidRequest as eO, type MarkOrderAsPaidResponse as eP, type BulkMarkOrdersAsPaidRequest as eQ, type BulkMarkOrdersAsPaidResponse as eR, type BulkOrderResult as eS, type ItemMetadata as eT, type ApplicationError as eU, type BulkActionMetadata as eV, type GetRefundabilityStatusRequest as eW, type GetRefundabilityStatusResponse as eX, type Refundability as eY, type RefundabilityAdditionalRefundabilityInfoOneOf as eZ, type CreatePaymentGatewayOrderRequest as e_, type DeleteContext as ea, type SiteUndeleted as eb, type SitePublished as ec, type SiteUnpublished as ed, type SiteMarkedAsTemplate as ee, type SiteMarkedAsWixSite as ef, type ServiceProvisioned as eg, type ServiceRemoved as eh, type SiteRenamed as ei, type SiteHardDeleted as ej, type NamespaceChanged as ek, type StudioAssigned as el, type StudioUnassigned as em, type SiteUrlChanged as en, type SitePurgedExternally as eo, type OdeditorAssigned as ep, type OdeditorUnassigned as eq, type PicassoAssigned as er, type PicassoUnassigned as es, type WixelAssigned as et, type WixelUnassigned as eu, type StudioTwoAssigned as ev, type StudioTwoUnassigned as ew, type UserDomainMediaEnabled as ex, type UserDomainMediaDisabled as ey, type HasCustomEmailConfigurationsRequest as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type CreateOrderRequest as f$, type CreatePaymentGatewayOrderResponse as f0, type ChargeMembershipsRequest as f1, type MembershipChargeItem as f2, type MembershipName as f3, type ServiceProperties as f4, type ChargeMembershipsResponse as f5, type TriggerRefundRequest as f6, type PaymentRefund as f7, type RefundSideEffects as f8, type RestockInfo as f9, type CalculateRefundRequest as fA, type CalculateRefundItemRequest as fB, type CalculateRefundResponse as fC, type CalculateRefundItemResponse as fD, type VoidAuthorizedPaymentsRequest as fE, type CaptureAuthorizedPaymentsRequest as fF, type ChargeSavedPaymentMethodRequest as fG, type ChargeSavedPaymentMethodResponse as fH, type DiffmatokyPayload as fI, type ErrorInformation as fJ, type GetOrderRequest as fK, type GetOrderResponse as fL, type InternalQueryOrdersRequest as fM, type PlatformQuery as fN, type PlatformQueryPagingMethodOneOf as fO, type Sorting as fP, type PlatformPaging as fQ, type CursorPaging as fR, type InternalQueryOrdersResponse as fS, type PlatformPagingMetadata as fT, type Cursors as fU, type QueryOrderRequest as fV, type QueryOrderResponse as fW, type SearchOrdersRequest as fX, type CursorSearch as fY, type CursorSearchPagingMethodOneOf as fZ, type CursorPagingMetadata as f_, type RestockItem as fa, type TriggerRefundResponse as fb, type OrderTransactions as fc, type Payment as fd, type PaymentPaymentDetailsOneOf as fe, type PaymentReceiptInfoOneOf as ff, type RegularPaymentDetails as fg, type RegularPaymentDetailsPaymentMethodDetailsOneOf as fh, type CreditCardPaymentMethodDetails as fi, type AuthorizationDetails as fj, type AuthorizationCapture as fk, type AuthorizationActionFailureDetails as fl, type AuthorizationVoid as fm, type V1ScheduledAction as fn, type Chargeback as fo, type PaymentMethodName as fp, type GiftCardPaymentDetails as fq, type MembershipPaymentDetails as fr, type WixReceiptInfo as fs, type ExternalReceiptInfo as ft, type Refund as fu, type RefundTransaction as fv, type RefundStatusInfo as fw, type AggregatedRefundSummary as fx, type RefundItemsBreakdown as fy, type LineItemRefundSummary as fz, type GetOrderApplicationErrors as g, type DownloadLinkSent as g$, type OrderCreationSettings as g0, type OrderCreationSettingsEditableByOneOf as g1, type OrderCreateNotifications as g2, type CreateOrderResponse as g3, type UpdateOrderRequest as g4, type UpdateOrderResponse as g5, type BulkUpdateOrdersRequest as g6, type CommitDeltasRequest as g7, type DraftOrderDiffs as g8, type DraftOrderDiffsShippingUpdateInfoOneOf as g9, type UnArchiveOrderResponse as gA, type BulkUnArchiveOrdersRequest as gB, type BulkUnArchiveOrdersResponse as gC, type BulkUnArchiveOrdersByFilterRequest as gD, type BulkUnArchiveOrdersByFilterResponse as gE, type UpdateBuyerInfoRequest as gF, type BuyerInfoUpdate as gG, type UpdateBuyerInfoResponse as gH, type UpdateBuyerEmailRequest as gI, type UpdateBuyerEmailResponse as gJ, type UpdateOrderShippingAddressRequest as gK, type UpdateOrderShippingAddressResponse as gL, type UpdateBillingContactDetailsRequest as gM, type UpdateBillingContactDetailsResponse as gN, type UpdateOrderLineItemRequest as gO, type UpdateOrderLineItemResponse as gP, type UpdateOrderLineItemsRequest as gQ, type MaskedOrderLineItem as gR, type UpdateOrderLineItemsResponse as gS, type AddInternalActivityRequest as gT, type InternalActivity as gU, type InternalActivityContentOneOf as gV, type OrderPlaced as gW, type OrderPaid as gX, type OrderFulfilled as gY, type OrderNotFulfilled as gZ, type OrderCanceled as g_, type DraftOrderDiffsBuyerUpdateInfoOneOf as ga, type DraftOrderDiffsBillingUpdateInfoOneOf as gb, type DraftOrderDiffsRecipientUpdateInfoOneOf as gc, type V1LineItemDelta as gd, type V1LineItemDeltaDeltaOneOf as ge, type OrderLineItemChangedDetails as gf, type ItemChangedDetails as gg, type AppliedDiscountDelta as gh, type AppliedDiscountDeltaDeltaOneOf as gi, type AdditionalFeeDelta as gj, type AdditionalFeeDeltaDeltaOneOf as gk, type DraftOrderCommitSettings as gl, type InventoryUpdateDetails as gm, type CommitDeltasResponse as gn, type OrderDeltasCommitted as go, type CommittedDiffs as gp, type CommittedDiffsShippingUpdateInfoOneOf as gq, type LineItemDelta as gr, type LineItemDeltaDeltaOneOf as gs, type ArchiveOrderRequest as gt, type ArchiveOrderResponse as gu, type BulkArchiveOrdersRequest as gv, type BulkArchiveOrdersResponse as gw, type BulkArchiveOrdersByFilterRequest as gx, type BulkArchiveOrdersByFilterResponse as gy, type UnArchiveOrderRequest as gz, type OrderSearch as h, type BulkUpdateOrderTagsResult as h$, type TrackingNumberAdded as h0, type TrackingNumberEdited as h1, type TrackingLinkAdded as h2, type ShippingConfirmationEmailSent as h3, type InvoiceAdded as h4, type InvoiceSent as h5, type FulfillerEmailSent as h6, type ShippingAddressEdited as h7, type EmailEdited as h8, type PickupReadyEmailSent as h9, type BulkMarkAsFulfilledResponse as hA, type BulkMarkAsFulfilledByFilterRequest as hB, type BulkMarkAsFulfilledByFilterResponse as hC, type MarkAsUnfulfilledRequest as hD, type MarkAsUnfulfilledResponse as hE, type BulkMarkAsUnfulfilledRequest as hF, type BulkMarkAsUnfulfilledResponse as hG, type BulkMarkAsUnfulfilledByFilterRequest as hH, type BulkMarkAsUnfulfilledByFilterResponse as hI, type BulkSetBusinessLocationRequest as hJ, type BulkSetBusinessLocationResponse as hK, type BulkSetBusinessLocationResult as hL, type V1MarkOrderAsPaidRequest as hM, type V1MarkOrderAsPaidResponse as hN, type PaymentStatusUpdated as hO, type V1BulkMarkOrdersAsPaidRequest as hP, type V1BulkMarkOrdersAsPaidResponse as hQ, type V1CreatePaymentGatewayOrderRequest as hR, type V1CreatePaymentGatewayOrderResponse as hS, type GetShipmentsRequest as hT, type GetShipmentsResponse as hU, type AggregateOrdersRequest as hV, type AggregateOrdersResponse as hW, type DecrementItemsQuantityRequest as hX, type DecrementData as hY, type DecrementItemsQuantityResponse as hZ, type BulkUpdateOrderTagsRequest as h_, type OrderPartiallyPaid as ha, type OrderPending as hb, type OrderRejected as hc, type AddInternalActivityResponse as hd, type AddActivityRequest as he, type PublicActivity as hf, type PublicActivityContentOneOf as hg, type AddActivityResponse as hh, type AddActivitiesRequest as hi, type UpdateActivityRequest as hj, type UpdateActivityResponse as hk, type DeleteActivityRequest as hl, type DeleteActivityResponse as hm, type UpdateLineItemsDescriptionLinesRequest as hn, type LineItemUpdate as ho, type UpdateLineItemsDescriptionLinesResponse as hp, type MarkOrderAsSeenByHumanRequest as hq, type MarkOrderAsSeenByHumanResponse as hr, type CancelOrderRequest as hs, type OrderCanceledEventOrderCanceled as ht, type UpdateOrderStatusRequest as hu, type UpdateOrderStatusResponse as hv, type MarkAsFulfilledRequest as hw, type MarkAsFulfilledResponse as hx, type FulfillmentStatusUpdated as hy, type BulkMarkAsFulfilledRequest as hz, type CreateOrderOptions as i, type ItemTypePresetWithLiterals as i$, type SendOrderUpdatedDomainEventRequest as i0, type SendOrderUpdatedDomainEventResponse as i1, type Task as i2, type TaskKey as i3, type TaskAction as i4, type TaskActionActionOneOf as i5, type Complete as i6, type Cancel as i7, type Reschedule as i8, type InvoiceSentEvent as i9, type CalculatedTaxes as iA, type CalculatedTax as iB, type Payments as iC, type InvoicesPayment as iD, type MetaData as iE, type InvoiceDynamicPriceTotals as iF, type CustomFieldValue as iG, type Value as iH, type Deposit as iI, type BaseEventMetadata as iJ, type EventMetadata as iK, type AccountInfoMetadata as iL, type SetOrderNumberCounterOptions as iM, type BulkDeleteImportedOrdersOptions as iN, type RecordManuallyCollectedPaymentOptions as iO, type PaymentCollectionMarkOrderAsPaidOptions as iP, type PaymentCollectionCreatePaymentGatewayOrderOptions as iQ, type ChargeMembershipsOptions as iR, type TriggerRefundOptions as iS, type OrderSearchSpec as iT, type UpdateOrderLineItemIdentifiers as iU, type UpdateOrderLineItem as iV, type UpdateActivityIdentifiers as iW, type DeleteActivityIdentifiers as iX, type AggregateOrdersOptions as iY, type DescriptionLineTypeWithLiterals as iZ, type DimensionsUnitWithLiterals as i_, type IdAndVersion as ia, type InvoiceFields as ib, type Customer as ic, type Email as id, type QuotesAddress as ie, type AddressDescription as ig, type Phone as ih, type Company as ii, type CommonAddress as ij, type CommonAddressStreetOneOf as ik, type Subdivision as il, type StandardDetails as im, type InvoiceDates as io, type LineItems as ip, type LineItem as iq, type BigDecimalWrapper as ir, type LineItemTax as is, type Source as it, type LineItemMetaData as iu, type Locale as iv, type TotalPrice as iw, type ItemizedFee as ix, type Discount as iy, type DiscountOneDiscountTypeOneOf as iz, type CreateOrderApplicationErrors as j, onOrderCanceled as j$, type PaymentOptionTypeWithLiterals as j0, type JurisdictionTypeWithLiterals as j1, type SubscriptionFrequencyWithLiterals as j2, type AdjustmentTypeWithLiterals as j3, type TaxableAddressTypeWithLiterals as j4, type PaymentStatusWithLiterals as j5, type FulfillmentStatusWithLiterals as j6, type WeightUnitWithLiterals as j7, type VatTypeWithLiterals as j8, type PickupMethodWithLiterals as j9, type TransactionStatusWithLiterals as jA, type AuthorizationCaptureStatusWithLiterals as jB, type AuthorizationVoidStatusWithLiterals as jC, type ReasonWithLiterals as jD, type ActionTypeWithLiterals as jE, type ChargebackStatusWithLiterals as jF, type MembershipPaymentStatusWithLiterals as jG, type RefundStatusWithLiterals as jH, type SortOrderWithLiterals as jI, type OrderApprovalStrategyWithLiterals as jJ, type DeltaPaymentOptionTypeWithLiterals as jK, type InventoryActionWithLiterals as jL, type PlacementWithLiterals as jM, type SubdivisionTypeWithLiterals as jN, type SourceTypeWithLiterals as jO, type CustomFieldGroupWithLiterals as jP, type ValueTypeWithLiterals as jQ, type DepositTypeWithLiterals as jR, type InvoiceStatusWithLiterals as jS, type RecordManuallyCollectedPaymentApplicationErrors as jT, type PaymentCollectionMarkOrderAsPaidApplicationErrors as jU, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as jV, type TriggerRefundApplicationErrors as jW, type UpdateOrderStatusApplicationErrors as jX, type CommonSearchWithEntityContext as jY, onOrderApproved as jZ, onOrderUpdated as j_, type OrderStatusWithLiterals as ja, type DiscountTypeWithLiterals as jb, type DiscountReasonWithLiterals as jc, type LineItemQuantityChangeTypeWithLiterals as jd, type ActivityTypeWithLiterals as je, type OrderActivityTypeEnumActivityTypeWithLiterals as jf, type AttributionSourceWithLiterals as jg, type ChannelTypeWithLiterals as jh, type AdditionalFeeSourceWithLiterals as ji, type OrderActionTypeWithLiterals as jj, type ChargeTypeWithLiterals as jk, type WebhookIdentityTypeWithLiterals as jl, type VersioningModeWithLiterals as jm, type PreviewEmailTypeWithLiterals as jn, type StateWithLiterals as jo, type SiteCreatedContextWithLiterals as jp, type NamespaceWithLiterals as jq, type DeleteStatusWithLiterals as jr, type ScheduledActionWithLiterals as js, type DurationUnitWithLiterals as jt, type PaymentCollectabilityStatusWithLiterals as ju, type PredefinedPaymentMethodWithLiterals as jv, type RefundableStatusWithLiterals as jw, type NonRefundableReasonWithLiterals as jx, type ManuallyRefundableReasonWithLiterals as jy, type RestockTypeWithLiterals as jz, type UpdateOrderApplicationErrors as k, onOrderCreated as k0, onOrderPaymentStatusUpdated as k1, preparePaymentCollection as k2, getPaymentCollectabilityStatus as k3, voidAuthorizedPayments as k4, captureAuthorizedPayments as k5, getOrder as k6, createOrder as k7, updateOrder as k8, bulkUpdateOrders as k9, addActivities as ka, cancelOrder as kb, bulkUpdateOrderTags as kc, type BulkUpdateOrdersResponse as l, type AddActivitiesResponse as m, type CancelOrderOptions as n, type CancelOrderResponse as o, type CancelOrderApplicationErrors as p, type BulkUpdateOrderTagsOptions as q, type BulkUpdateOrderTagsResponse as r, type OrderApprovedEnvelope as s, type OrderUpdatedEnvelope as t, type OrderCanceledEnvelope as u, type OrderCreatedEnvelope as v, type OrderPaymentStatusUpdatedEnvelope as w, DimensionsUnit as x, PaymentOptionType as y, SubscriptionFrequency as z };
8512
+ export { ChannelType as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, AdjustmentType as E, PaymentStatus as F, type GetPaymentCollectabilityStatusResponse as G, FulfillmentStatus as H, ItemTypePreset as I, JurisdictionType as J, VatType as K, PickupMethod as L, type MaskedOrder as M, OrderStatus as N, type Order as O, type Price as P, DiscountType as Q, DiscountReason as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, LineItemQuantityChangeType as X, ActivityType as Y, OrderActivityTypeEnumActivityType as Z, AttributionSource as _, type PreparePaymentCollectionOptions as a, type LocationAndQuantity as a$, AdditionalFeeSource as a0, OrderActionType as a1, ChargeType as a2, WebhookIdentityType as a3, PreviewEmailType as a4, State as a5, SiteCreatedContext as a6, Namespace as a7, DeleteStatus as a8, ScheduledAction as a9, InvoiceStatus as aA, type OrderLineItem as aB, type ProductName as aC, type CatalogReference as aD, type DescriptionLine as aE, type DescriptionLineValueOneOf as aF, type DescriptionLineDescriptionLineValueOneOf as aG, type DescriptionLineName as aH, type PlainTextValue as aI, type Color as aJ, type FocalPoint as aK, type PhysicalProperties as aL, type Dimensions as aM, type ItemType as aN, type ItemTypeItemTypeDataOneOf as aO, type ItemTaxFullDetails as aP, type LineItemTaxInfo as aQ, type LineItemTaxBreakdown as aR, type DigitalFile as aS, type SubscriptionInfo as aT, type SubscriptionTitle as aU, type SubscriptionDescription as aV, type SubscriptionSettings as aW, type FreeTrialPeriod as aX, type BillingAdjustment as aY, type BillingAdjustmentPriceSummary as aZ, type PriceDescription as a_, DurationUnit as aa, PaymentCollectabilityStatus as ab, PredefinedPaymentMethod 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, type PreparePaymentCollectionResponse as b, type AuthorizedPaymentCreated as b$, type TaxableAddress as b0, type TaxableAddressTaxableAddressDataOneOf as b1, type ExtendedFields as b2, type ModifierGroup as b3, type TranslatableString as b4, type ItemModifier as b5, type BuyerInfo as b6, type BuyerInfoIdOneOf as b7, type CurrencyConversionDetails as b8, type PriceSummary as b9, type ItemCombinationLineItem as bA, type Activity as bB, type ActivityContentOneOf as bC, type CustomActivity as bD, type MerchantComment as bE, type OrderRefunded as bF, type OrderCreatedFromExchange as bG, type NewExchangeOrderCreated as bH, type LineItemExchangeData as bI, type DraftOrderChangesApplied as bJ, type OrderChange as bK, type OrderChangeValueOneOf as bL, type LineItemChanges as bM, type LineItemQuantityChange as bN, type LineItemPriceChange as bO, type LineItemProductNameChange as bP, type LineItemDescriptionLineChange as bQ, type LineItemModifiersChange as bR, type ManagedLineItem as bS, type ManagedDiscount as bT, type TranslatedValue as bU, type LineItemAmount as bV, type ManagedAdditionalFee as bW, type TotalPriceChange as bX, type ShippingInformationChange as bY, type ShippingInformation as bZ, type SavedPaymentMethod as b_, type AddressWithContact as ba, type Address as bb, type StreetAddress as bc, type AddressLocation as bd, type FullAddressContactDetails as be, type VatId as bf, type V1ShippingInformation as bg, type DeliveryLogistics as bh, type DeliveryLogisticsAddressOneOf as bi, type PickupDetails as bj, type PickupAddress as bk, type DeliveryTimeSlot as bl, type ShippingPrice as bm, type ShippingRegion as bn, type TaxSummary as bo, type OrderTaxInfo as bp, type OrderTaxBreakdown as bq, type AppliedDiscount as br, type AppliedDiscountDiscountSourceOneOf as bs, type Coupon as bt, type MerchantDiscount as bu, type MerchantDiscountMerchantDiscountReasonOneOf as bv, type DiscountRule as bw, type DiscountRuleName as bx, type LineItemDiscount as by, type ItemCombination as bz, type PreparePaymentCollectionApplicationErrors as c, type EntityCreatedEvent as c$, type AuthorizedPaymentCaptured as c0, type AuthorizedPaymentVoided as c1, type RefundInitiated as c2, type RefundedPayment as c3, type RefundedPaymentKindOneOf as c4, type RegularPaymentRefund as c5, type GiftCardPaymentRefund as c6, type MembershipPaymentRefund as c7, type PaymentRefunded as c8, type PaymentRefundFailed as c9, type Tags as cA, type TagList as cB, type Location as cC, type OrderSettings as cD, type OrderSettingsAllowedActionsOneOf as cE, type OrderSettingsEditableByOneOf as cF, type CustomAllowedActions as cG, type OwnerApps as cH, type FormInfo as cI, type FormIdentifier as cJ, type PlatformFeeSummary as cK, type PlatformFee as cL, type OrderApproved as cM, type OrdersExperiments as cN, type OrderRejectedEventOrderRejected as cO, type OrderItemsRestocked as cP, type V1RestockItem as cQ, type OrderImported as cR, type ImportedOrderDeleted as cS, type ImportOrderRequest as cT, type ImportOrderResponse as cU, type SetOrderNumberCounterRequest as cV, type SetOrderNumberCounterResponse as cW, type BulkDeleteImportedOrdersRequest as cX, type BulkDeleteImportedOrdersResponse as cY, type DomainEvent as cZ, type DomainEventBodyOneOf as c_, type RefundedAsStoreCredit as ca, type PaymentPending as cb, type PaymentPendingPaymentDetailsOneOf as cc, type RegularPayment as cd, type RegularPaymentPaymentMethodDetailsOneOf as ce, type CreditCardDetails as cf, type PaymentCanceled as cg, type PaymentCanceledPaymentDetailsOneOf as ch, type PaymentDeclined as ci, type PaymentDeclinedPaymentDetailsOneOf as cj, type ReceiptCreated as ck, type ReceiptCreatedReceiptInfoOneOf as cl, type WixReceipt as cm, type ExternalReceipt as cn, type ReceiptSent as co, type ReceiptSentReceiptInfoOneOf as cp, type ChargebackCreated as cq, type ChargebackReversed as cr, type CreatedBy as cs, type CreatedByStringOneOf as ct, type ChannelInfo as cu, type CustomField as cv, type BalanceSummary as cw, type Balance as cx, type AdditionalFee as cy, type FulfillmentStatusesAggregate as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type SiteMarkedAsTemplate as d$, type RestoreInfo as d0, type EntityUpdatedEvent as d1, type EntityDeletedEvent as d2, type ActionEvent as d3, type MessageEnvelope as d4, type IdentificationData as d5, type IdentificationDataIdOneOf as d6, type AccountInfo as d7, type SendBuyerConfirmationEmailRequest as d8, type SendBuyerConfirmationEmailResponse as d9, type ShippingRefund as dA, type PreviewRefundEmailResponse as dB, type PreviewCancelEmailRequest as dC, type PreviewCancelEmailResponse as dD, type PreviewCancelRefundEmailRequest as dE, type PreviewCancelRefundEmailResponse as dF, type PreviewBuyerPaymentsReceivedEmailRequest as dG, type PreviewBuyerPaymentsReceivedEmailResponse as dH, type PreviewBuyerConfirmationEmailRequest as dI, type PreviewBuyerConfirmationEmailResponse as dJ, type PreviewBuyerPickupConfirmationEmailRequest as dK, type PreviewBuyerPickupConfirmationEmailResponse as dL, type PreviewShippingConfirmationEmailRequest as dM, type PreviewShippingConfirmationEmailResponse as dN, type PreviewResendDownloadLinksEmailRequest as dO, type PreviewResendDownloadLinksEmailResponse as dP, type Empty as dQ, type MetaSiteSpecialEvent as dR, type MetaSiteSpecialEventPayloadOneOf as dS, type Asset as dT, type SiteCreated as dU, type SiteTransferred as dV, type SiteDeleted as dW, type DeleteContext as dX, type SiteUndeleted as dY, type SitePublished as dZ, type SiteUnpublished as d_, type SendBuyerPaymentsReceivedEmailRequest as da, type SendBuyerPaymentsReceivedEmailResponse as db, type SendBuyerPickupConfirmationEmailRequest as dc, type SendBuyerPickupConfirmationEmailResponse as dd, type BulkSendBuyerPickupConfirmationEmailsRequest as de, type BulkSendBuyerPickupConfirmationEmailsResponse as df, type SendBuyerShippingConfirmationEmailRequest as dg, type SendBuyerShippingConfirmationEmailResponse as dh, type BulkSendBuyerShippingConfirmationEmailsRequest as di, type BulkSendBuyerShippingConfirmationEmailsResponse as dj, type SendMerchantOrderReceivedNotificationRequest as dk, type SendMerchantOrderReceivedNotificationResponse as dl, type SendCancelRefundEmailRequest as dm, type SendCancelRefundEmailResponse as dn, type SendRefundEmailRequest as dp, type SendRefundEmailResponse as dq, type SendMerchantOrderReceivedPushRequest as dr, type SendMerchantOrderReceivedPushResponse as ds, type PreviewEmailByTypeRequest as dt, type PreviewEmailByTypeResponse as du, type PreviewRefundEmailRequest as dv, type RefundDetails as dw, type RefundItem as dx, type LineItemRefund as dy, type AdditionalFeeRefund as dz, type PaymentCapture as e, type PaymentPaymentDetailsOneOf as e$, type SiteMarkedAsWixSite as e0, type ServiceProvisioned as e1, type ServiceRemoved as e2, type SiteRenamed as e3, type SiteHardDeleted as e4, type NamespaceChanged as e5, type StudioAssigned as e6, type StudioUnassigned as e7, type SiteUrlChanged as e8, type SitePurgedExternally as e9, type MarkOrderAsPaidResponse as eA, type BulkMarkOrdersAsPaidRequest as eB, type BulkMarkOrdersAsPaidResponse as eC, type BulkOrderResult as eD, type ItemMetadata as eE, type ApplicationError as eF, type BulkActionMetadata as eG, type GetRefundabilityStatusRequest as eH, type GetRefundabilityStatusResponse as eI, type Refundability as eJ, type RefundabilityAdditionalRefundabilityInfoOneOf as eK, type CreatePaymentGatewayOrderRequest as eL, type ChargedBy as eM, type CreatePaymentGatewayOrderResponse 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 PaymentRefund as eU, type RefundSideEffects as eV, type RestockInfo as eW, type RestockItem as eX, type TriggerRefundResponse as eY, type OrderTransactions as eZ, type Payment as e_, type OdeditorAssigned as ea, type OdeditorUnassigned as eb, type PicassoAssigned as ec, type PicassoUnassigned as ed, type WixelAssigned as ee, type WixelUnassigned as ef, type StudioTwoAssigned as eg, type StudioTwoUnassigned as eh, type UserDomainMediaEnabled as ei, type UserDomainMediaDisabled as ej, type HasCustomEmailConfigurationsRequest as ek, type HasCustomEmailConfigurationsResponse as el, type AddToAutomationMigrationPopulationRequest as em, type AddToAutomationMigrationPopulationResponse as en, type IsInAutomationMigrationPopulationRequest as eo, type IsInAutomationMigrationPopulationResponse as ep, type PreparePaymentCollectionRequest as eq, type RedirectUrls as er, type DelayedCaptureSettings as es, type Duration as et, type GetPaymentCollectabilityStatusRequest as eu, type RecordManuallyCollectedPaymentRequest as ev, type UserDefinedPaymentMethodName as ew, type UserDefinedPaymentMethodNameKindOneOf as ex, type RecordManuallyCollectedPaymentResponse as ey, type MarkOrderAsPaidRequest as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type CreateOrderRequest as f$, type PaymentReceiptInfoOneOf as f0, type RegularPaymentDetails as f1, type RegularPaymentDetailsPaymentMethodDetailsOneOf as f2, type CreditCardPaymentMethodDetails as f3, type AuthorizationDetails as f4, type AuthorizationCapture as f5, type AuthorizationActionFailureDetails as f6, type AuthorizationVoid as f7, type V1ScheduledAction as f8, type Chargeback as f9, type InternalUpdateExistingOperation as fA, type VersionedDocumentUpdateOperation as fB, type VersionedDeleteByIdsOperation as fC, type VersionedDocumentId as fD, type TriggerReindexRequest as fE, type TriggerReindexResponse as fF, type BatchOfTriggerReindexOrderRequest as fG, type TriggerReindexOrderRequest as fH, type DiffmatokyPayload as fI, type ErrorInformation as fJ, type GetOrderRequest as fK, type GetOrderResponse as fL, type InternalQueryOrdersRequest as fM, type PlatformQuery as fN, type PlatformQueryPagingMethodOneOf as fO, type Sorting as fP, type PlatformPaging as fQ, type CursorPaging as fR, type InternalQueryOrdersResponse as fS, type PlatformPagingMetadata as fT, type Cursors as fU, type QueryOrderRequest as fV, type QueryOrderResponse as fW, type SearchOrdersRequest as fX, type CursorSearch as fY, type CursorSearchPagingMethodOneOf as fZ, type CursorPagingMetadata as f_, type PaymentMethodName as fa, type GiftCardPaymentDetails as fb, type MembershipPaymentDetails as fc, type WixReceiptInfo as fd, type ExternalReceiptInfo as fe, type Refund as ff, type RefundTransaction as fg, type RefundStatusInfo as fh, type AggregatedRefundSummary as fi, type RefundItemsBreakdown as fj, type LineItemRefundSummary as fk, type CalculateRefundRequest as fl, type CalculateRefundItemRequest as fm, type CalculateRefundResponse as fn, type CalculateRefundItemResponse as fo, type VoidAuthorizedPaymentsRequest as fp, type CaptureAuthorizedPaymentsRequest as fq, type ChargeSavedPaymentMethodRequest as fr, type ChargeSavedPaymentMethodResponse as fs, type UpdateInternalDocumentsEvent as ft, type UpdateInternalDocumentsEventOperationOneOf as fu, type InternalDocument as fv, type InternalDocumentUpdateOperation as fw, type DeleteByIdsOperation as fx, type DeleteByFilterOperation as fy, type InternalDocumentUpdateByFilterOperation as fz, type GetOrderApplicationErrors as g, type DownloadLinkSent as g$, type OrderCreationSettings as g0, type OrderCreationSettingsEditableByOneOf as g1, type OrderCreateNotifications as g2, type CreateOrderResponse as g3, type UpdateOrderRequest as g4, type UpdateOrderResponse as g5, type BulkUpdateOrdersRequest as g6, type CommitDeltasRequest as g7, type DraftOrderDiffs as g8, type DraftOrderDiffsShippingUpdateInfoOneOf as g9, type UnArchiveOrderResponse as gA, type BulkUnArchiveOrdersRequest as gB, type BulkUnArchiveOrdersResponse as gC, type BulkUnArchiveOrdersByFilterRequest as gD, type BulkUnArchiveOrdersByFilterResponse as gE, type UpdateBuyerInfoRequest as gF, type BuyerInfoUpdate as gG, type UpdateBuyerInfoResponse as gH, type UpdateBuyerEmailRequest as gI, type UpdateBuyerEmailResponse as gJ, type UpdateOrderShippingAddressRequest as gK, type UpdateOrderShippingAddressResponse as gL, type UpdateBillingContactDetailsRequest as gM, type UpdateBillingContactDetailsResponse as gN, type UpdateOrderLineItemRequest as gO, type UpdateOrderLineItemResponse as gP, type UpdateOrderLineItemsRequest as gQ, type MaskedOrderLineItem as gR, type UpdateOrderLineItemsResponse as gS, type AddInternalActivityRequest as gT, type InternalActivity as gU, type InternalActivityContentOneOf as gV, type OrderPlaced as gW, type OrderPaid as gX, type OrderFulfilled as gY, type OrderNotFulfilled as gZ, type OrderCanceled as g_, type DraftOrderDiffsBuyerUpdateInfoOneOf as ga, type DraftOrderDiffsBillingUpdateInfoOneOf as gb, type DraftOrderDiffsRecipientUpdateInfoOneOf as gc, type V1LineItemDelta as gd, type V1LineItemDeltaDeltaOneOf as ge, type OrderLineItemChangedDetails as gf, type ItemChangedDetails as gg, type AppliedDiscountDelta as gh, type AppliedDiscountDeltaDeltaOneOf as gi, type AdditionalFeeDelta as gj, type AdditionalFeeDeltaDeltaOneOf as gk, type DraftOrderCommitSettings as gl, type InventoryUpdateDetails as gm, type CommitDeltasResponse as gn, type OrderDeltasCommitted as go, type CommittedDiffs as gp, type CommittedDiffsShippingUpdateInfoOneOf as gq, type LineItemDelta as gr, type LineItemDeltaDeltaOneOf as gs, type ArchiveOrderRequest as gt, type ArchiveOrderResponse as gu, type BulkArchiveOrdersRequest as gv, type BulkArchiveOrdersResponse as gw, type BulkArchiveOrdersByFilterRequest as gx, type BulkArchiveOrdersByFilterResponse as gy, type UnArchiveOrderRequest as gz, type OrderSearch as h, type BulkUpdateOrderTagsResult as h$, type TrackingNumberAdded as h0, type TrackingNumberEdited as h1, type TrackingLinkAdded as h2, type ShippingConfirmationEmailSent as h3, type InvoiceAdded as h4, type InvoiceSent as h5, type FulfillerEmailSent as h6, type ShippingAddressEdited as h7, type EmailEdited as h8, type PickupReadyEmailSent as h9, type BulkMarkAsFulfilledResponse as hA, type BulkMarkAsFulfilledByFilterRequest as hB, type BulkMarkAsFulfilledByFilterResponse as hC, type MarkAsUnfulfilledRequest as hD, type MarkAsUnfulfilledResponse as hE, type BulkMarkAsUnfulfilledRequest as hF, type BulkMarkAsUnfulfilledResponse as hG, type BulkMarkAsUnfulfilledByFilterRequest as hH, type BulkMarkAsUnfulfilledByFilterResponse as hI, type BulkSetBusinessLocationRequest as hJ, type BulkSetBusinessLocationResponse as hK, type BulkSetBusinessLocationResult as hL, type V1MarkOrderAsPaidRequest as hM, type V1MarkOrderAsPaidResponse as hN, type PaymentStatusUpdated as hO, type V1BulkMarkOrdersAsPaidRequest as hP, type V1BulkMarkOrdersAsPaidResponse as hQ, type V1CreatePaymentGatewayOrderRequest as hR, type V1CreatePaymentGatewayOrderResponse as hS, type GetShipmentsRequest as hT, type GetShipmentsResponse as hU, type AggregateOrdersRequest as hV, type AggregateOrdersResponse as hW, type DecrementItemsQuantityRequest as hX, type DecrementData as hY, type DecrementItemsQuantityResponse as hZ, type BulkUpdateOrderTagsRequest as h_, type OrderPartiallyPaid as ha, type OrderPending as hb, type OrderRejected as hc, type AddInternalActivityResponse as hd, type AddActivityRequest as he, type PublicActivity as hf, type PublicActivityContentOneOf as hg, type AddActivityResponse as hh, type AddActivitiesRequest as hi, type UpdateActivityRequest as hj, type UpdateActivityResponse as hk, type DeleteActivityRequest as hl, type DeleteActivityResponse as hm, type UpdateLineItemsDescriptionLinesRequest as hn, type LineItemUpdate as ho, type UpdateLineItemsDescriptionLinesResponse as hp, type MarkOrderAsSeenByHumanRequest as hq, type MarkOrderAsSeenByHumanResponse as hr, type CancelOrderRequest as hs, type OrderCanceledEventOrderCanceled as ht, type UpdateOrderStatusRequest as hu, type UpdateOrderStatusResponse as hv, type MarkAsFulfilledRequest as hw, type MarkAsFulfilledResponse as hx, type FulfillmentStatusUpdated as hy, type BulkMarkAsFulfilledRequest as hz, type CreateOrderOptions as i, type ItemTypePresetWithLiterals as i$, type SendOrderUpdatedDomainEventRequest as i0, type SendOrderUpdatedDomainEventResponse as i1, type Task as i2, type TaskKey as i3, type TaskAction as i4, type TaskActionActionOneOf as i5, type Complete as i6, type Cancel as i7, type Reschedule as i8, type InvoiceSentEvent as i9, type CalculatedTaxes as iA, type CalculatedTax as iB, type Payments as iC, type InvoicesPayment as iD, type MetaData as iE, type InvoiceDynamicPriceTotals as iF, type CustomFieldValue as iG, type Value as iH, type Deposit as iI, type BaseEventMetadata as iJ, type EventMetadata as iK, type AccountInfoMetadata as iL, type SetOrderNumberCounterOptions as iM, type BulkDeleteImportedOrdersOptions as iN, type RecordManuallyCollectedPaymentOptions as iO, type PaymentCollectionMarkOrderAsPaidOptions as iP, type PaymentCollectionCreatePaymentGatewayOrderOptions as iQ, type ChargeMembershipsOptions as iR, type TriggerRefundOptions as iS, type OrderSearchSpec as iT, type UpdateOrderLineItemIdentifiers as iU, type UpdateOrderLineItem as iV, type UpdateActivityIdentifiers as iW, type DeleteActivityIdentifiers as iX, type AggregateOrdersOptions as iY, type DescriptionLineTypeWithLiterals as iZ, type DimensionsUnitWithLiterals as i_, type IdAndVersion as ia, type InvoiceFields as ib, type Customer as ic, type Email as id, type QuotesAddress as ie, type AddressDescription as ig, type Phone as ih, type Company as ii, type CommonAddress as ij, type CommonAddressStreetOneOf as ik, type Subdivision as il, type StandardDetails as im, type InvoiceDates as io, type LineItems as ip, type LineItem as iq, type BigDecimalWrapper as ir, type LineItemTax as is, type Source as it, type LineItemMetaData as iu, type Locale as iv, type TotalPrice as iw, type ItemizedFee as ix, type Discount as iy, type DiscountOneDiscountTypeOneOf as iz, type CreateOrderApplicationErrors as j, onOrderCanceled as j$, type PaymentOptionTypeWithLiterals as j0, type JurisdictionTypeWithLiterals as j1, type SubscriptionFrequencyWithLiterals as j2, type AdjustmentTypeWithLiterals as j3, type TaxableAddressTypeWithLiterals as j4, type PaymentStatusWithLiterals as j5, type FulfillmentStatusWithLiterals as j6, type WeightUnitWithLiterals as j7, type VatTypeWithLiterals as j8, type PickupMethodWithLiterals as j9, type AuthorizationCaptureStatusWithLiterals as jA, type AuthorizationVoidStatusWithLiterals as jB, type ReasonWithLiterals as jC, type ActionTypeWithLiterals as jD, type ChargebackStatusWithLiterals as jE, type MembershipPaymentStatusWithLiterals as jF, type RefundStatusWithLiterals as jG, type VersioningModeWithLiterals as jH, type SortOrderWithLiterals as jI, type OrderApprovalStrategyWithLiterals as jJ, type DeltaPaymentOptionTypeWithLiterals as jK, type InventoryActionWithLiterals as jL, type PlacementWithLiterals as jM, type SubdivisionTypeWithLiterals as jN, type SourceTypeWithLiterals as jO, type CustomFieldGroupWithLiterals as jP, type ValueTypeWithLiterals as jQ, type DepositTypeWithLiterals as jR, type InvoiceStatusWithLiterals as jS, type RecordManuallyCollectedPaymentApplicationErrors as jT, type PaymentCollectionMarkOrderAsPaidApplicationErrors as jU, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as jV, type TriggerRefundApplicationErrors as jW, type UpdateOrderStatusApplicationErrors as jX, type CommonSearchWithEntityContext as jY, onOrderApproved as jZ, onOrderUpdated as j_, type OrderStatusWithLiterals as ja, type DiscountTypeWithLiterals as jb, type DiscountReasonWithLiterals as jc, type LineItemQuantityChangeTypeWithLiterals as jd, type ActivityTypeWithLiterals as je, type OrderActivityTypeEnumActivityTypeWithLiterals as jf, type AttributionSourceWithLiterals as jg, type ChannelTypeWithLiterals as jh, type AdditionalFeeSourceWithLiterals as ji, type OrderActionTypeWithLiterals as jj, type ChargeTypeWithLiterals as jk, type WebhookIdentityTypeWithLiterals as jl, type PreviewEmailTypeWithLiterals as jm, type StateWithLiterals as jn, type SiteCreatedContextWithLiterals as jo, type NamespaceWithLiterals as jp, type DeleteStatusWithLiterals as jq, type ScheduledActionWithLiterals as jr, type DurationUnitWithLiterals as js, type PaymentCollectabilityStatusWithLiterals as jt, type PredefinedPaymentMethodWithLiterals as ju, type RefundableStatusWithLiterals as jv, type NonRefundableReasonWithLiterals as jw, type ManuallyRefundableReasonWithLiterals as jx, type RestockTypeWithLiterals as jy, type TransactionStatusWithLiterals as jz, type UpdateOrderApplicationErrors as k, onOrderCreated as k0, onOrderPaymentStatusUpdated as k1, preparePaymentCollection as k2, getPaymentCollectabilityStatus as k3, voidAuthorizedPayments as k4, captureAuthorizedPayments as k5, getOrder as k6, createOrder as k7, updateOrder as k8, bulkUpdateOrders as k9, addActivities as ka, cancelOrder as kb, bulkUpdateOrderTags as kc, type BulkUpdateOrdersResponse as l, type AddActivitiesResponse as m, type CancelOrderOptions as n, type CancelOrderResponse as o, type CancelOrderApplicationErrors as p, type BulkUpdateOrderTagsOptions as q, type BulkUpdateOrderTagsResponse as r, type OrderApprovedEnvelope as s, type OrderUpdatedEnvelope as t, type OrderCanceledEnvelope as u, type OrderCreatedEnvelope as v, type OrderPaymentStatusUpdatedEnvelope as w, DimensionsUnit as x, PaymentOptionType as y, SubscriptionFrequency as z };
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { P as Price, a as PreparePaymentCollectionOptions, b as PreparePaymentCollectionResponse, c as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, V as VoidAuthorizedPaymentsResponse, d as VoidAuthorizedPaymentsApplicationErrors, e as PaymentCapture, C as CaptureAuthorizedPaymentsResponse, f as CaptureAuthorizedPaymentsApplicationErrors, O as Order, g as GetOrderApplicationErrors, h as OrderSearch, S as SearchOrdersResponse, i as CreateOrderOptions, j as CreateOrderApplicationErrors, U as UpdateOrder, k as UpdateOrderApplicationErrors, M as MaskedOrder, B as BulkUpdateOrdersOptions, l as BulkUpdateOrdersResponse, A as AddActivitiesOptions, m as AddActivitiesResponse, n as CancelOrderOptions, o as CancelOrderResponse, p as CancelOrderApplicationErrors, q as BulkUpdateOrderTagsOptions, r as BulkUpdateOrderTagsResponse, s as OrderApprovedEnvelope, t as OrderUpdatedEnvelope, u as OrderCanceledEnvelope, v as OrderCreatedEnvelope, w as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-BU92OyiT.js';
3
- export { d7 as AccountInfo, iL as AccountInfoMetadata, d3 as ActionEvent, am as ActionType, jE as ActionTypeWithLiterals, bB as Activity, bC as ActivityContentOneOf, Y as ActivityType, je as ActivityTypeWithLiterals, hi as AddActivitiesRequest, he as AddActivityRequest, hh as AddActivityResponse, gT as AddInternalActivityRequest, hd as AddInternalActivityResponse, eB as AddToAutomationMigrationPopulationRequest, eC as AddToAutomationMigrationPopulationResponse, cy as AdditionalFee, gj as AdditionalFeeDelta, gk as AdditionalFeeDeltaDeltaOneOf, dP as AdditionalFeeRefund, a0 as AdditionalFeeSource, ji as AdditionalFeeSourceWithLiterals, bb as Address, ig as AddressDescription, bd as AddressLocation, ba as AddressWithContact, E as AdjustmentType, j3 as AdjustmentTypeWithLiterals, iY as AggregateOrdersOptions, hV as AggregateOrdersRequest, hW as AggregateOrdersResponse, fx as AggregatedRefundSummary, eU as ApplicationError, br as AppliedDiscount, gh as AppliedDiscountDelta, gi as AppliedDiscountDeltaDeltaOneOf, bs as AppliedDiscountDiscountSourceOneOf, gt as ArchiveOrderRequest, gu as ArchiveOrderResponse, e6 as Asset, _ as AttributionSource, jg as AttributionSourceWithLiterals, fl as AuthorizationActionFailureDetails, fk as AuthorizationCapture, aj as AuthorizationCaptureStatus, jB as AuthorizationCaptureStatusWithLiterals, fj as AuthorizationDetails, fm as AuthorizationVoid, ak as AuthorizationVoidStatus, jC as AuthorizationVoidStatusWithLiterals, c0 as AuthorizedPaymentCaptured, b$ as AuthorizedPaymentCreated, c1 as AuthorizedPaymentVoided, cx as Balance, cw as BalanceSummary, iJ as BaseEventMetadata, dm as BatchOfTriggerReindexOrderRequest, ir as BigDecimalWrapper, aY as BillingAdjustment, aZ as BillingAdjustmentPriceSummary, eV as BulkActionMetadata, gx as BulkArchiveOrdersByFilterRequest, gy as BulkArchiveOrdersByFilterResponse, gv as BulkArchiveOrdersRequest, gw as BulkArchiveOrdersResponse, iN as BulkDeleteImportedOrdersOptions, cX as BulkDeleteImportedOrdersRequest, cY as BulkDeleteImportedOrdersResponse, hB as BulkMarkAsFulfilledByFilterRequest, hC as BulkMarkAsFulfilledByFilterResponse, hz as BulkMarkAsFulfilledRequest, hA as BulkMarkAsFulfilledResponse, hH as BulkMarkAsUnfulfilledByFilterRequest, hI as BulkMarkAsUnfulfilledByFilterResponse, hF as BulkMarkAsUnfulfilledRequest, hG as BulkMarkAsUnfulfilledResponse, eQ as BulkMarkOrdersAsPaidRequest, eR as BulkMarkOrdersAsPaidResponse, eS as BulkOrderResult, dv as BulkSendBuyerPickupConfirmationEmailsRequest, dw as BulkSendBuyerPickupConfirmationEmailsResponse, dz as BulkSendBuyerShippingConfirmationEmailsRequest, dA as BulkSendBuyerShippingConfirmationEmailsResponse, hJ as BulkSetBusinessLocationRequest, hK as BulkSetBusinessLocationResponse, hL as BulkSetBusinessLocationResult, gD as BulkUnArchiveOrdersByFilterRequest, gE as BulkUnArchiveOrdersByFilterResponse, gB as BulkUnArchiveOrdersRequest, gC as BulkUnArchiveOrdersResponse, h_ as BulkUpdateOrderTagsRequest, h$ as BulkUpdateOrderTagsResult, g6 as BulkUpdateOrdersRequest, b6 as BuyerInfo, b7 as BuyerInfoIdOneOf, gG as BuyerInfoUpdate, fB as CalculateRefundItemRequest, fD as CalculateRefundItemResponse, fA as CalculateRefundRequest, fC as CalculateRefundResponse, iB as CalculatedTax, iA as CalculatedTaxes, i7 as Cancel, hs as CancelOrderRequest, fF as CaptureAuthorizedPaymentsRequest, aD as CatalogReference, cu as ChannelInfo, $ as ChannelType, jh as ChannelTypeWithLiterals, iR as ChargeMembershipsOptions, f1 as ChargeMembershipsRequest, f5 as ChargeMembershipsResponse, fG as ChargeSavedPaymentMethodRequest, fH as ChargeSavedPaymentMethodResponse, a2 as ChargeType, jk as ChargeTypeWithLiterals, fo as Chargeback, cq as ChargebackCreated, cr as ChargebackReversed, an as ChargebackStatus, jF as ChargebackStatusWithLiterals, e$ as ChargedBy, aJ as Color, g7 as CommitDeltasRequest, gn as CommitDeltasResponse, gp as CommittedDiffs, gq as CommittedDiffsShippingUpdateInfoOneOf, ij as CommonAddress, ik as CommonAddressStreetOneOf, jY as CommonSearchWithEntityContext, ii as Company, i6 as Complete, bt as Coupon, f$ as CreateOrderRequest, g3 as CreateOrderResponse, e_ as CreatePaymentGatewayOrderRequest, f0 as CreatePaymentGatewayOrderResponse, cs as CreatedBy, ct as CreatedByStringOneOf, cf as CreditCardDetails, fi as CreditCardPaymentMethodDetails, b8 as CurrencyConversionDetails, fR as CursorPaging, f_ as CursorPagingMetadata, fY as CursorSearch, fZ as CursorSearchPagingMethodOneOf, fU as Cursors, bD as CustomActivity, cG as CustomAllowedActions, cv as CustomField, ax as CustomFieldGroup, jP as CustomFieldGroupWithLiterals, iG as CustomFieldValue, ic as Customer, hY as DecrementData, hX as DecrementItemsQuantityRequest, hZ as DecrementItemsQuantityResponse, eH as DelayedCaptureSettings, iX as DeleteActivityIdentifiers, hl as DeleteActivityRequest, hm as DeleteActivityResponse, dd as DeleteByFilterOperation, dc as DeleteByIdsOperation, ea as DeleteContext, a9 as DeleteStatus, jr as DeleteStatusWithLiterals, bh as DeliveryLogistics, bi as DeliveryLogisticsAddressOneOf, bl as DeliveryTimeSlot, as as DeltaPaymentOptionType, jK as DeltaPaymentOptionTypeWithLiterals, iI as Deposit, az as DepositType, jR as DepositTypeWithLiterals, aE as DescriptionLine, aG as DescriptionLineDescriptionLineValueOneOf, aH as DescriptionLineName, D as DescriptionLineType, iZ as DescriptionLineTypeWithLiterals, aF as DescriptionLineValueOneOf, fI as DiffmatokyPayload, aS as DigitalFile, aM as Dimensions, x as DimensionsUnit, i_ as DimensionsUnitWithLiterals, iy as Discount, iz as DiscountOneDiscountTypeOneOf, R as DiscountReason, jc as DiscountReasonWithLiterals, bw as DiscountRule, bx as DiscountRuleName, Q as DiscountType, jb as DiscountTypeWithLiterals, cZ as DomainEvent, c_ as DomainEventBodyOneOf, g$ as DownloadLinkSent, bJ as DraftOrderChangesApplied, gl as DraftOrderCommitSettings, g8 as DraftOrderDiffs, gb as DraftOrderDiffsBillingUpdateInfoOneOf, ga as DraftOrderDiffsBuyerUpdateInfoOneOf, gc as DraftOrderDiffsRecipientUpdateInfoOneOf, g9 as DraftOrderDiffsShippingUpdateInfoOneOf, eI as Duration, ab as DurationUnit, jt as DurationUnitWithLiterals, id as Email, h8 as EmailEdited, dl as Empty, c$ as EntityCreatedEvent, d2 as EntityDeletedEvent, d1 as EntityUpdatedEvent, fJ as ErrorInformation, iK as EventMetadata, b2 as ExtendedFields, cn as ExternalReceipt, ft as ExternalReceiptInfo, aK as FocalPoint, cJ as FormIdentifier, cI as FormInfo, aX as FreeTrialPeriod, h6 as FulfillerEmailSent, H as FulfillmentStatus, hy as FulfillmentStatusUpdated, j6 as FulfillmentStatusWithLiterals, cz as FulfillmentStatusesAggregate, be as FullAddressContactDetails, fK as GetOrderRequest, fL as GetOrderResponse, eJ as GetPaymentCollectabilityStatusRequest, eW as GetRefundabilityStatusRequest, eX as GetRefundabilityStatusResponse, hT as GetShipmentsRequest, hU as GetShipmentsResponse, fq as GiftCardPaymentDetails, c6 as GiftCardPaymentRefund, ez as HasCustomEmailConfigurationsRequest, eA as HasCustomEmailConfigurationsResponse, ia as IdAndVersion, d5 as IdentificationData, d6 as IdentificationDataIdOneOf, cT as ImportOrderRequest, cU as ImportOrderResponse, cS as ImportedOrderDeleted, gU as InternalActivity, gV as InternalActivityContentOneOf, da as InternalDocument, de as InternalDocumentUpdateByFilterOperation, db as InternalDocumentUpdateOperation, fM as InternalQueryOrdersRequest, fS as InternalQueryOrdersResponse, df as InternalUpdateExistingOperation, at as InventoryAction, jL as InventoryActionWithLiterals, gm as InventoryUpdateDetails, h4 as InvoiceAdded, io as InvoiceDates, iF as InvoiceDynamicPriceTotals, ib as InvoiceFields, h5 as InvoiceSent, i9 as InvoiceSentEvent, aA as InvoiceStatus, jS as InvoiceStatusWithLiterals, iD as InvoicesPayment, eD as IsInAutomationMigrationPopulationRequest, eE as IsInAutomationMigrationPopulationResponse, gg as ItemChangedDetails, bz as ItemCombination, bA as ItemCombinationLineItem, eT as ItemMetadata, b5 as ItemModifier, aP as ItemTaxFullDetails, aN as ItemType, aO as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, i$ as ItemTypePresetWithLiterals, ix as ItemizedFee, J as JurisdictionType, j1 as JurisdictionTypeWithLiterals, iq as LineItem, bV as LineItemAmount, bM as LineItemChanges, gr as LineItemDelta, gs as LineItemDeltaDeltaOneOf, bQ as LineItemDescriptionLineChange, by as LineItemDiscount, bI as LineItemExchangeData, iu as LineItemMetaData, bR as LineItemModifiersChange, bO as LineItemPriceChange, bP as LineItemProductNameChange, bN as LineItemQuantityChange, X as LineItemQuantityChangeType, jd as LineItemQuantityChangeTypeWithLiterals, dO as LineItemRefund, fz as LineItemRefundSummary, is as LineItemTax, aR as LineItemTaxBreakdown, aQ as LineItemTaxInfo, ho as LineItemUpdate, ip as LineItems, iv as Locale, cC as Location, a$ as LocationAndQuantity, bW as ManagedAdditionalFee, bT as ManagedDiscount, bS as ManagedLineItem, ag as ManuallyRefundableReason, jy as ManuallyRefundableReasonWithLiterals, hw as MarkAsFulfilledRequest, hx as MarkAsFulfilledResponse, hD as MarkAsUnfulfilledRequest, hE as MarkAsUnfulfilledResponse, eO as MarkOrderAsPaidRequest, eP as MarkOrderAsPaidResponse, hq as MarkOrderAsSeenByHumanRequest, hr as MarkOrderAsSeenByHumanResponse, gR as MaskedOrderLineItem, f2 as MembershipChargeItem, f3 as MembershipName, fr as MembershipPaymentDetails, c7 as MembershipPaymentRefund, ao as MembershipPaymentStatus, jG as MembershipPaymentStatusWithLiterals, bE as MerchantComment, bu as MerchantDiscount, bv as MerchantDiscountMerchantDiscountReasonOneOf, d4 as MessageEnvelope, iE as MetaData, e4 as MetaSiteSpecialEvent, e5 as MetaSiteSpecialEventPayloadOneOf, b3 as ModifierGroup, a8 as Namespace, ek as NamespaceChanged, jq as NamespaceWithLiterals, bH as NewExchangeOrderCreated, af as NonRefundableReason, jx as NonRefundableReasonWithLiterals, ep as OdeditorAssigned, eq as OdeditorUnassigned, a1 as OrderActionType, jj as OrderActionTypeWithLiterals, Z as OrderActivityTypeEnumActivityType, jf as OrderActivityTypeEnumActivityTypeWithLiterals, ar as OrderApprovalStrategy, jJ as OrderApprovalStrategyWithLiterals, cM as OrderApproved, g_ as OrderCanceled, ht as OrderCanceledEventOrderCanceled, bK as OrderChange, bL as OrderChangeValueOneOf, g2 as OrderCreateNotifications, bG as OrderCreatedFromExchange, g0 as OrderCreationSettings, g1 as OrderCreationSettingsEditableByOneOf, go as OrderDeltasCommitted, gY as OrderFulfilled, cR as OrderImported, cP as OrderItemsRestocked, aB as OrderLineItem, gf as OrderLineItemChangedDetails, gZ as OrderNotFulfilled, gX as OrderPaid, ha as OrderPartiallyPaid, hb as OrderPending, gW as OrderPlaced, bF as OrderRefunded, hc as OrderRejected, cO as OrderRejectedEventOrderRejected, iT as OrderSearchSpec, cD as OrderSettings, cE as OrderSettingsAllowedActionsOneOf, cF as OrderSettingsEditableByOneOf, N as OrderStatus, ja as OrderStatusWithLiterals, bq as OrderTaxBreakdown, bp as OrderTaxInfo, fc as OrderTransactions, cN as OrdersExperiments, cH as OwnerApps, fd as Payment, cg as PaymentCanceled, ch as PaymentCanceledPaymentDetailsOneOf, ac as PaymentCollectabilityStatus, ju as PaymentCollectabilityStatusWithLiterals, jV as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, iQ as PaymentCollectionCreatePaymentGatewayOrderOptions, jU as PaymentCollectionMarkOrderAsPaidApplicationErrors, iP as PaymentCollectionMarkOrderAsPaidOptions, ci as PaymentDeclined, cj as PaymentDeclinedPaymentDetailsOneOf, fp as PaymentMethodName, y as PaymentOptionType, j0 as PaymentOptionTypeWithLiterals, fe as PaymentPaymentDetailsOneOf, cb as PaymentPending, cc as PaymentPendingPaymentDetailsOneOf, ff as PaymentReceiptInfoOneOf, f7 as PaymentRefund, c9 as PaymentRefundFailed, c8 as PaymentRefunded, F as PaymentStatus, hO as PaymentStatusUpdated, j5 as PaymentStatusWithLiterals, iC as Payments, ih as Phone, aL as PhysicalProperties, er as PicassoAssigned, es as PicassoUnassigned, bk as PickupAddress, bj as PickupDetails, L as PickupMethod, j9 as PickupMethodWithLiterals, h9 as PickupReadyEmailSent, au as Placement, jM as PlacementWithLiterals, aI as PlainTextValue, cL as PlatformFee, cK as PlatformFeeSummary, fQ as PlatformPaging, fT as PlatformPagingMetadata, fN as PlatformQuery, fO as PlatformQueryPagingMethodOneOf, ad as PredefinedPaymentMethod, jv as PredefinedPaymentMethodWithLiterals, eF as PreparePaymentCollectionRequest, dY as PreviewBuyerConfirmationEmailRequest, dZ as PreviewBuyerConfirmationEmailResponse, dW as PreviewBuyerPaymentsReceivedEmailRequest, dX as PreviewBuyerPaymentsReceivedEmailResponse, d_ as PreviewBuyerPickupConfirmationEmailRequest, d$ as PreviewBuyerPickupConfirmationEmailResponse, dS as PreviewCancelEmailRequest, dT as PreviewCancelEmailResponse, dU as PreviewCancelRefundEmailRequest, dV as PreviewCancelRefundEmailResponse, dJ as PreviewEmailByTypeRequest, dK as PreviewEmailByTypeResponse, a5 as PreviewEmailType, jn as PreviewEmailTypeWithLiterals, dL as PreviewRefundEmailRequest, dR as PreviewRefundEmailResponse, e2 as PreviewResendDownloadLinksEmailRequest, e3 as PreviewResendDownloadLinksEmailResponse, e0 as PreviewShippingConfirmationEmailRequest, e1 as PreviewShippingConfirmationEmailResponse, a_ as PriceDescription, b9 as PriceSummary, aC as ProductName, hf as PublicActivity, hg as PublicActivityContentOneOf, fV as QueryOrderRequest, fW as QueryOrderResponse, ie as QuotesAddress, al as Reason, jD as ReasonWithLiterals, ck as ReceiptCreated, cl as ReceiptCreatedReceiptInfoOneOf, co as ReceiptSent, cp as ReceiptSentReceiptInfoOneOf, jT as RecordManuallyCollectedPaymentApplicationErrors, iO as RecordManuallyCollectedPaymentOptions, eK as RecordManuallyCollectedPaymentRequest, eN as RecordManuallyCollectedPaymentResponse, eG as RedirectUrls, fu as Refund, dM as RefundDetails, c2 as RefundInitiated, dN as RefundItem, fy as RefundItemsBreakdown, f8 as RefundSideEffects, ap as RefundStatus, fw as RefundStatusInfo, jH as RefundStatusWithLiterals, fv as RefundTransaction, eY as Refundability, eZ as RefundabilityAdditionalRefundabilityInfoOneOf, ae as RefundableStatus, jw as RefundableStatusWithLiterals, ca as RefundedAsStoreCredit, c3 as RefundedPayment, c4 as RefundedPaymentKindOneOf, cd as RegularPayment, fg as RegularPaymentDetails, fh as RegularPaymentDetailsPaymentMethodDetailsOneOf, ce as RegularPaymentPaymentMethodDetailsOneOf, c5 as RegularPaymentRefund, i8 as Reschedule, f9 as RestockInfo, fa as RestockItem, ah as RestockType, jz as RestockTypeWithLiterals, d0 as RestoreInfo, b_ as SavedPaymentMethod, aa as ScheduledAction, js as ScheduledActionWithLiterals, fX as SearchOrdersRequest, dp as SendBuyerConfirmationEmailRequest, dq as SendBuyerConfirmationEmailResponse, dr as SendBuyerPaymentsReceivedEmailRequest, ds as SendBuyerPaymentsReceivedEmailResponse, dt as SendBuyerPickupConfirmationEmailRequest, du as SendBuyerPickupConfirmationEmailResponse, dx as SendBuyerShippingConfirmationEmailRequest, dy as SendBuyerShippingConfirmationEmailResponse, dD as SendCancelRefundEmailRequest, dE as SendCancelRefundEmailResponse, dB as SendMerchantOrderReceivedNotificationRequest, dC as SendMerchantOrderReceivedNotificationResponse, dH as SendMerchantOrderReceivedPushRequest, dI as SendMerchantOrderReceivedPushResponse, i0 as SendOrderUpdatedDomainEventRequest, i1 as SendOrderUpdatedDomainEventResponse, dF as SendRefundEmailRequest, dG as SendRefundEmailResponse, f4 as ServiceProperties, eg as ServiceProvisioned, eh as ServiceRemoved, iM as SetOrderNumberCounterOptions, cV as SetOrderNumberCounterRequest, cW as SetOrderNumberCounterResponse, h7 as ShippingAddressEdited, h3 as ShippingConfirmationEmailSent, bZ as ShippingInformation, bY as ShippingInformationChange, bm as ShippingPrice, dQ as ShippingRefund, bn as ShippingRegion, e7 as SiteCreated, a7 as SiteCreatedContext, jp as SiteCreatedContextWithLiterals, e9 as SiteDeleted, ej as SiteHardDeleted, ee as SiteMarkedAsTemplate, ef as SiteMarkedAsWixSite, ec as SitePublished, eo as SitePurgedExternally, ei as SiteRenamed, e8 as SiteTransferred, eb as SiteUndeleted, ed as SiteUnpublished, en as SiteUrlChanged, aq as SortOrder, jI as SortOrderWithLiterals, fP as Sorting, it as Source, aw as SourceType, jO as SourceTypeWithLiterals, im as StandardDetails, a6 as State, jo as StateWithLiterals, bc as StreetAddress, el as StudioAssigned, ev as StudioTwoAssigned, ew as StudioTwoUnassigned, em as StudioUnassigned, il as Subdivision, av as SubdivisionType, jN as SubdivisionTypeWithLiterals, aV as SubscriptionDescription, z as SubscriptionFrequency, j2 as SubscriptionFrequencyWithLiterals, aT as SubscriptionInfo, aW as SubscriptionSettings, aU as SubscriptionTitle, cB as TagList, cA as Tags, i2 as Task, i4 as TaskAction, i5 as TaskActionActionOneOf, i3 as TaskKey, bo as TaxSummary, b0 as TaxableAddress, b1 as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, j4 as TaxableAddressTypeWithLiterals, iw as TotalPrice, bX as TotalPriceChange, h2 as TrackingLinkAdded, h0 as TrackingNumberAdded, h1 as TrackingNumberEdited, ai as TransactionStatus, jA as TransactionStatusWithLiterals, b4 as TranslatableString, bU as TranslatedValue, jW as TriggerRefundApplicationErrors, iS as TriggerRefundOptions, f6 as TriggerRefundRequest, fb as TriggerRefundResponse, dn as TriggerReindexOrderRequest, dj as TriggerReindexRequest, dk as TriggerReindexResponse, gz as UnArchiveOrderRequest, gA as UnArchiveOrderResponse, iW as UpdateActivityIdentifiers, hj as UpdateActivityRequest, hk as UpdateActivityResponse, gM as UpdateBillingContactDetailsRequest, gN as UpdateBillingContactDetailsResponse, gI as UpdateBuyerEmailRequest, gJ as UpdateBuyerEmailResponse, gF as UpdateBuyerInfoRequest, gH as UpdateBuyerInfoResponse, d8 as UpdateInternalDocumentsEvent, d9 as UpdateInternalDocumentsEventOperationOneOf, hn as UpdateLineItemsDescriptionLinesRequest, hp as UpdateLineItemsDescriptionLinesResponse, iV as UpdateOrderLineItem, iU as UpdateOrderLineItemIdentifiers, gO as UpdateOrderLineItemRequest, gP as UpdateOrderLineItemResponse, gQ as UpdateOrderLineItemsRequest, gS as UpdateOrderLineItemsResponse, g4 as UpdateOrderRequest, g5 as UpdateOrderResponse, gK as UpdateOrderShippingAddressRequest, gL as UpdateOrderShippingAddressResponse, jX as UpdateOrderStatusApplicationErrors, hu as UpdateOrderStatusRequest, hv as UpdateOrderStatusResponse, eL as UserDefinedPaymentMethodName, eM as UserDefinedPaymentMethodNameKindOneOf, ey as UserDomainMediaDisabled, ex as UserDomainMediaEnabled, hP as V1BulkMarkOrdersAsPaidRequest, hQ as V1BulkMarkOrdersAsPaidResponse, hR as V1CreatePaymentGatewayOrderRequest, hS as V1CreatePaymentGatewayOrderResponse, gd as V1LineItemDelta, ge as V1LineItemDeltaDeltaOneOf, hM as V1MarkOrderAsPaidRequest, hN as V1MarkOrderAsPaidResponse, cQ as V1RestockItem, fn as V1ScheduledAction, bg as V1ShippingInformation, iH as Value, ay as ValueType, jQ as ValueTypeWithLiterals, bf as VatId, K as VatType, j8 as VatTypeWithLiterals, dh as VersionedDeleteByIdsOperation, di as VersionedDocumentId, dg as VersionedDocumentUpdateOperation, a4 as VersioningMode, jm as VersioningModeWithLiterals, fE as VoidAuthorizedPaymentsRequest, a3 as WebhookIdentityType, jl as WebhookIdentityTypeWithLiterals, W as WeightUnit, j7 as WeightUnitWithLiterals, cm as WixReceipt, fs as WixReceiptInfo, et as WixelAssigned, eu as WixelUnassigned } from './ecom-v1-order-orders.universal-BU92OyiT.js';
2
+ import { P as Price, a as PreparePaymentCollectionOptions, b as PreparePaymentCollectionResponse, c as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, V as VoidAuthorizedPaymentsResponse, d as VoidAuthorizedPaymentsApplicationErrors, e as PaymentCapture, C as CaptureAuthorizedPaymentsResponse, f as CaptureAuthorizedPaymentsApplicationErrors, O as Order, g as GetOrderApplicationErrors, h as OrderSearch, S as SearchOrdersResponse, i as CreateOrderOptions, j as CreateOrderApplicationErrors, U as UpdateOrder, k as UpdateOrderApplicationErrors, M as MaskedOrder, B as BulkUpdateOrdersOptions, l as BulkUpdateOrdersResponse, A as AddActivitiesOptions, m as AddActivitiesResponse, n as CancelOrderOptions, o as CancelOrderResponse, p as CancelOrderApplicationErrors, q as BulkUpdateOrderTagsOptions, r as BulkUpdateOrderTagsResponse, s as OrderApprovedEnvelope, t as OrderUpdatedEnvelope, u as OrderCanceledEnvelope, v as OrderCreatedEnvelope, w as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-Cs5iqgM-.js';
3
+ export { d7 as AccountInfo, iL as AccountInfoMetadata, d3 as ActionEvent, al as ActionType, jD as ActionTypeWithLiterals, bB as Activity, bC as ActivityContentOneOf, Y as ActivityType, je as ActivityTypeWithLiterals, hi as AddActivitiesRequest, he as AddActivityRequest, hh as AddActivityResponse, gT as AddInternalActivityRequest, hd as AddInternalActivityResponse, em as AddToAutomationMigrationPopulationRequest, en as AddToAutomationMigrationPopulationResponse, cy as AdditionalFee, gj as AdditionalFeeDelta, gk as AdditionalFeeDeltaDeltaOneOf, dz as AdditionalFeeRefund, a0 as AdditionalFeeSource, ji as AdditionalFeeSourceWithLiterals, bb as Address, ig as AddressDescription, bd as AddressLocation, ba as AddressWithContact, E as AdjustmentType, j3 as AdjustmentTypeWithLiterals, iY as AggregateOrdersOptions, hV as AggregateOrdersRequest, hW as AggregateOrdersResponse, fi as AggregatedRefundSummary, eF as ApplicationError, br as AppliedDiscount, gh as AppliedDiscountDelta, gi as AppliedDiscountDeltaDeltaOneOf, bs as AppliedDiscountDiscountSourceOneOf, gt as ArchiveOrderRequest, gu as ArchiveOrderResponse, dT as Asset, _ as AttributionSource, jg as AttributionSourceWithLiterals, f6 as AuthorizationActionFailureDetails, f5 as AuthorizationCapture, ai as AuthorizationCaptureStatus, jA as AuthorizationCaptureStatusWithLiterals, f4 as AuthorizationDetails, f7 as AuthorizationVoid, aj as AuthorizationVoidStatus, jB as AuthorizationVoidStatusWithLiterals, c0 as AuthorizedPaymentCaptured, b$ as AuthorizedPaymentCreated, c1 as AuthorizedPaymentVoided, cx as Balance, cw as BalanceSummary, iJ as BaseEventMetadata, fG as BatchOfTriggerReindexOrderRequest, ir as BigDecimalWrapper, aY as BillingAdjustment, aZ as BillingAdjustmentPriceSummary, eG as BulkActionMetadata, gx as BulkArchiveOrdersByFilterRequest, gy as BulkArchiveOrdersByFilterResponse, gv as BulkArchiveOrdersRequest, gw as BulkArchiveOrdersResponse, iN as BulkDeleteImportedOrdersOptions, cX as BulkDeleteImportedOrdersRequest, cY as BulkDeleteImportedOrdersResponse, hB as BulkMarkAsFulfilledByFilterRequest, hC as BulkMarkAsFulfilledByFilterResponse, hz as BulkMarkAsFulfilledRequest, hA as BulkMarkAsFulfilledResponse, hH as BulkMarkAsUnfulfilledByFilterRequest, hI as BulkMarkAsUnfulfilledByFilterResponse, hF as BulkMarkAsUnfulfilledRequest, hG as BulkMarkAsUnfulfilledResponse, eB as BulkMarkOrdersAsPaidRequest, eC as BulkMarkOrdersAsPaidResponse, eD as BulkOrderResult, de as BulkSendBuyerPickupConfirmationEmailsRequest, df as BulkSendBuyerPickupConfirmationEmailsResponse, di as BulkSendBuyerShippingConfirmationEmailsRequest, dj as BulkSendBuyerShippingConfirmationEmailsResponse, hJ as BulkSetBusinessLocationRequest, hK as BulkSetBusinessLocationResponse, hL as BulkSetBusinessLocationResult, gD as BulkUnArchiveOrdersByFilterRequest, gE as BulkUnArchiveOrdersByFilterResponse, gB as BulkUnArchiveOrdersRequest, gC as BulkUnArchiveOrdersResponse, h_ as BulkUpdateOrderTagsRequest, h$ as BulkUpdateOrderTagsResult, g6 as BulkUpdateOrdersRequest, b6 as BuyerInfo, b7 as BuyerInfoIdOneOf, gG as BuyerInfoUpdate, fm as CalculateRefundItemRequest, fo as CalculateRefundItemResponse, fl as CalculateRefundRequest, fn as CalculateRefundResponse, iB as CalculatedTax, iA as CalculatedTaxes, i7 as Cancel, hs as CancelOrderRequest, fq as CaptureAuthorizedPaymentsRequest, aD as CatalogReference, cu as ChannelInfo, $ as ChannelType, jh as ChannelTypeWithLiterals, iR as ChargeMembershipsOptions, eO as ChargeMembershipsRequest, eS as ChargeMembershipsResponse, fr as ChargeSavedPaymentMethodRequest, fs as ChargeSavedPaymentMethodResponse, a2 as ChargeType, jk as ChargeTypeWithLiterals, f9 as Chargeback, cq as ChargebackCreated, cr as ChargebackReversed, am as ChargebackStatus, jE as ChargebackStatusWithLiterals, eM as ChargedBy, aJ as Color, g7 as CommitDeltasRequest, gn as CommitDeltasResponse, gp as CommittedDiffs, gq as CommittedDiffsShippingUpdateInfoOneOf, ij as CommonAddress, ik as CommonAddressStreetOneOf, jY as CommonSearchWithEntityContext, ii as Company, i6 as Complete, bt as Coupon, f$ as CreateOrderRequest, g3 as CreateOrderResponse, eL as CreatePaymentGatewayOrderRequest, eN as CreatePaymentGatewayOrderResponse, cs as CreatedBy, ct as CreatedByStringOneOf, cf as CreditCardDetails, f3 as CreditCardPaymentMethodDetails, b8 as CurrencyConversionDetails, fR as CursorPaging, f_ as CursorPagingMetadata, fY as CursorSearch, fZ as CursorSearchPagingMethodOneOf, fU as Cursors, bD as CustomActivity, cG as CustomAllowedActions, cv as CustomField, ax as CustomFieldGroup, jP as CustomFieldGroupWithLiterals, iG as CustomFieldValue, ic as Customer, hY as DecrementData, hX as DecrementItemsQuantityRequest, hZ as DecrementItemsQuantityResponse, es as DelayedCaptureSettings, iX as DeleteActivityIdentifiers, hl as DeleteActivityRequest, hm as DeleteActivityResponse, fy as DeleteByFilterOperation, fx as DeleteByIdsOperation, dX as DeleteContext, a8 as DeleteStatus, jq as DeleteStatusWithLiterals, bh as DeliveryLogistics, bi as DeliveryLogisticsAddressOneOf, bl as DeliveryTimeSlot, as as DeltaPaymentOptionType, jK as DeltaPaymentOptionTypeWithLiterals, iI as Deposit, az as DepositType, jR as DepositTypeWithLiterals, aE as DescriptionLine, aG as DescriptionLineDescriptionLineValueOneOf, aH as DescriptionLineName, D as DescriptionLineType, iZ as DescriptionLineTypeWithLiterals, aF as DescriptionLineValueOneOf, fI as DiffmatokyPayload, aS as DigitalFile, aM as Dimensions, x as DimensionsUnit, i_ as DimensionsUnitWithLiterals, iy as Discount, iz as DiscountOneDiscountTypeOneOf, R as DiscountReason, jc as DiscountReasonWithLiterals, bw as DiscountRule, bx as DiscountRuleName, Q as DiscountType, jb as DiscountTypeWithLiterals, cZ as DomainEvent, c_ as DomainEventBodyOneOf, g$ as DownloadLinkSent, bJ as DraftOrderChangesApplied, gl as DraftOrderCommitSettings, g8 as DraftOrderDiffs, gb as DraftOrderDiffsBillingUpdateInfoOneOf, ga as DraftOrderDiffsBuyerUpdateInfoOneOf, gc as DraftOrderDiffsRecipientUpdateInfoOneOf, g9 as DraftOrderDiffsShippingUpdateInfoOneOf, et as Duration, aa as DurationUnit, js as DurationUnitWithLiterals, id as Email, h8 as EmailEdited, dQ as Empty, c$ as EntityCreatedEvent, d2 as EntityDeletedEvent, d1 as EntityUpdatedEvent, fJ as ErrorInformation, iK as EventMetadata, b2 as ExtendedFields, cn as ExternalReceipt, fe as ExternalReceiptInfo, aK as FocalPoint, cJ as FormIdentifier, cI as FormInfo, aX as FreeTrialPeriod, h6 as FulfillerEmailSent, H as FulfillmentStatus, hy as FulfillmentStatusUpdated, j6 as FulfillmentStatusWithLiterals, cz as FulfillmentStatusesAggregate, be as FullAddressContactDetails, fK as GetOrderRequest, fL as GetOrderResponse, eu as GetPaymentCollectabilityStatusRequest, eH as GetRefundabilityStatusRequest, eI as GetRefundabilityStatusResponse, hT as GetShipmentsRequest, hU as GetShipmentsResponse, fb as GiftCardPaymentDetails, c6 as GiftCardPaymentRefund, ek as HasCustomEmailConfigurationsRequest, el as HasCustomEmailConfigurationsResponse, ia as IdAndVersion, d5 as IdentificationData, d6 as IdentificationDataIdOneOf, cT as ImportOrderRequest, cU as ImportOrderResponse, cS as ImportedOrderDeleted, gU as InternalActivity, gV as InternalActivityContentOneOf, fv as InternalDocument, fz as InternalDocumentUpdateByFilterOperation, fw as InternalDocumentUpdateOperation, fM as InternalQueryOrdersRequest, fS as InternalQueryOrdersResponse, fA as InternalUpdateExistingOperation, at as InventoryAction, jL as InventoryActionWithLiterals, gm as InventoryUpdateDetails, h4 as InvoiceAdded, io as InvoiceDates, iF as InvoiceDynamicPriceTotals, ib as InvoiceFields, h5 as InvoiceSent, i9 as InvoiceSentEvent, aA as InvoiceStatus, jS as InvoiceStatusWithLiterals, iD as InvoicesPayment, eo as IsInAutomationMigrationPopulationRequest, ep as IsInAutomationMigrationPopulationResponse, gg as ItemChangedDetails, bz as ItemCombination, bA as ItemCombinationLineItem, eE as ItemMetadata, b5 as ItemModifier, aP as ItemTaxFullDetails, aN as ItemType, aO as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, i$ as ItemTypePresetWithLiterals, ix as ItemizedFee, J as JurisdictionType, j1 as JurisdictionTypeWithLiterals, iq as LineItem, bV as LineItemAmount, bM as LineItemChanges, gr as LineItemDelta, gs as LineItemDeltaDeltaOneOf, bQ as LineItemDescriptionLineChange, by as LineItemDiscount, bI as LineItemExchangeData, iu as LineItemMetaData, bR as LineItemModifiersChange, bO as LineItemPriceChange, bP as LineItemProductNameChange, bN as LineItemQuantityChange, X as LineItemQuantityChangeType, jd as LineItemQuantityChangeTypeWithLiterals, dy as LineItemRefund, fk as LineItemRefundSummary, is as LineItemTax, aR as LineItemTaxBreakdown, aQ as LineItemTaxInfo, ho as LineItemUpdate, ip as LineItems, iv as Locale, cC as Location, a$ as LocationAndQuantity, bW as ManagedAdditionalFee, bT as ManagedDiscount, bS as ManagedLineItem, af as ManuallyRefundableReason, jx as ManuallyRefundableReasonWithLiterals, hw as MarkAsFulfilledRequest, hx as MarkAsFulfilledResponse, hD as MarkAsUnfulfilledRequest, hE as MarkAsUnfulfilledResponse, ez as MarkOrderAsPaidRequest, eA as MarkOrderAsPaidResponse, hq as MarkOrderAsSeenByHumanRequest, hr as MarkOrderAsSeenByHumanResponse, gR as MaskedOrderLineItem, eP as MembershipChargeItem, eQ as MembershipName, fc as MembershipPaymentDetails, c7 as MembershipPaymentRefund, an as MembershipPaymentStatus, jF as MembershipPaymentStatusWithLiterals, bE as MerchantComment, bu as MerchantDiscount, bv as MerchantDiscountMerchantDiscountReasonOneOf, d4 as MessageEnvelope, iE as MetaData, dR as MetaSiteSpecialEvent, dS as MetaSiteSpecialEventPayloadOneOf, b3 as ModifierGroup, a7 as Namespace, e5 as NamespaceChanged, jp as NamespaceWithLiterals, bH as NewExchangeOrderCreated, ae as NonRefundableReason, jw as NonRefundableReasonWithLiterals, ea as OdeditorAssigned, eb as OdeditorUnassigned, a1 as OrderActionType, jj as OrderActionTypeWithLiterals, Z as OrderActivityTypeEnumActivityType, jf as OrderActivityTypeEnumActivityTypeWithLiterals, ar as OrderApprovalStrategy, jJ as OrderApprovalStrategyWithLiterals, cM as OrderApproved, g_ as OrderCanceled, ht as OrderCanceledEventOrderCanceled, bK as OrderChange, bL as OrderChangeValueOneOf, g2 as OrderCreateNotifications, bG as OrderCreatedFromExchange, g0 as OrderCreationSettings, g1 as OrderCreationSettingsEditableByOneOf, go as OrderDeltasCommitted, gY as OrderFulfilled, cR as OrderImported, cP as OrderItemsRestocked, aB as OrderLineItem, gf as OrderLineItemChangedDetails, gZ as OrderNotFulfilled, gX as OrderPaid, ha as OrderPartiallyPaid, hb as OrderPending, gW as OrderPlaced, bF as OrderRefunded, hc as OrderRejected, cO as OrderRejectedEventOrderRejected, iT as OrderSearchSpec, cD as OrderSettings, cE as OrderSettingsAllowedActionsOneOf, cF as OrderSettingsEditableByOneOf, N as OrderStatus, ja as OrderStatusWithLiterals, bq as OrderTaxBreakdown, bp as OrderTaxInfo, eZ as OrderTransactions, cN as OrdersExperiments, cH as OwnerApps, e_ as Payment, cg as PaymentCanceled, ch as PaymentCanceledPaymentDetailsOneOf, ab as PaymentCollectabilityStatus, jt as PaymentCollectabilityStatusWithLiterals, jV as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, iQ as PaymentCollectionCreatePaymentGatewayOrderOptions, jU as PaymentCollectionMarkOrderAsPaidApplicationErrors, iP as PaymentCollectionMarkOrderAsPaidOptions, ci as PaymentDeclined, cj as PaymentDeclinedPaymentDetailsOneOf, fa as PaymentMethodName, y as PaymentOptionType, j0 as PaymentOptionTypeWithLiterals, e$ as PaymentPaymentDetailsOneOf, cb as PaymentPending, cc as PaymentPendingPaymentDetailsOneOf, f0 as PaymentReceiptInfoOneOf, eU as PaymentRefund, c9 as PaymentRefundFailed, c8 as PaymentRefunded, F as PaymentStatus, hO as PaymentStatusUpdated, j5 as PaymentStatusWithLiterals, iC as Payments, ih as Phone, aL as PhysicalProperties, ec as PicassoAssigned, ed as PicassoUnassigned, bk as PickupAddress, bj as PickupDetails, L as PickupMethod, j9 as PickupMethodWithLiterals, h9 as PickupReadyEmailSent, au as Placement, jM as PlacementWithLiterals, aI as PlainTextValue, cL as PlatformFee, cK as PlatformFeeSummary, fQ as PlatformPaging, fT as PlatformPagingMetadata, fN as PlatformQuery, fO as PlatformQueryPagingMethodOneOf, ac as PredefinedPaymentMethod, ju as PredefinedPaymentMethodWithLiterals, eq as PreparePaymentCollectionRequest, dI as PreviewBuyerConfirmationEmailRequest, dJ as PreviewBuyerConfirmationEmailResponse, dG as PreviewBuyerPaymentsReceivedEmailRequest, dH as PreviewBuyerPaymentsReceivedEmailResponse, dK as PreviewBuyerPickupConfirmationEmailRequest, dL as PreviewBuyerPickupConfirmationEmailResponse, dC as PreviewCancelEmailRequest, dD as PreviewCancelEmailResponse, dE as PreviewCancelRefundEmailRequest, dF as PreviewCancelRefundEmailResponse, dt as PreviewEmailByTypeRequest, du as PreviewEmailByTypeResponse, a4 as PreviewEmailType, jm as PreviewEmailTypeWithLiterals, dv as PreviewRefundEmailRequest, dB as PreviewRefundEmailResponse, dO as PreviewResendDownloadLinksEmailRequest, dP as PreviewResendDownloadLinksEmailResponse, dM as PreviewShippingConfirmationEmailRequest, dN as PreviewShippingConfirmationEmailResponse, a_ as PriceDescription, b9 as PriceSummary, aC as ProductName, hf as PublicActivity, hg as PublicActivityContentOneOf, fV as QueryOrderRequest, fW as QueryOrderResponse, ie as QuotesAddress, ak as Reason, jC as ReasonWithLiterals, ck as ReceiptCreated, cl as ReceiptCreatedReceiptInfoOneOf, co as ReceiptSent, cp as ReceiptSentReceiptInfoOneOf, jT as RecordManuallyCollectedPaymentApplicationErrors, iO as RecordManuallyCollectedPaymentOptions, ev as RecordManuallyCollectedPaymentRequest, ey as RecordManuallyCollectedPaymentResponse, er as RedirectUrls, ff as Refund, dw as RefundDetails, c2 as RefundInitiated, dx as RefundItem, fj as RefundItemsBreakdown, eV as RefundSideEffects, ao as RefundStatus, fh as RefundStatusInfo, jG as RefundStatusWithLiterals, fg as RefundTransaction, eJ as Refundability, eK as RefundabilityAdditionalRefundabilityInfoOneOf, ad as RefundableStatus, jv as RefundableStatusWithLiterals, ca as RefundedAsStoreCredit, c3 as RefundedPayment, c4 as RefundedPaymentKindOneOf, cd as RegularPayment, f1 as RegularPaymentDetails, f2 as RegularPaymentDetailsPaymentMethodDetailsOneOf, ce as RegularPaymentPaymentMethodDetailsOneOf, c5 as RegularPaymentRefund, i8 as Reschedule, eW as RestockInfo, eX as RestockItem, ag as RestockType, jy as RestockTypeWithLiterals, d0 as RestoreInfo, b_ as SavedPaymentMethod, a9 as ScheduledAction, jr as ScheduledActionWithLiterals, fX as SearchOrdersRequest, d8 as SendBuyerConfirmationEmailRequest, d9 as SendBuyerConfirmationEmailResponse, da as SendBuyerPaymentsReceivedEmailRequest, db as SendBuyerPaymentsReceivedEmailResponse, dc as SendBuyerPickupConfirmationEmailRequest, dd as SendBuyerPickupConfirmationEmailResponse, dg as SendBuyerShippingConfirmationEmailRequest, dh as SendBuyerShippingConfirmationEmailResponse, dm as SendCancelRefundEmailRequest, dn as SendCancelRefundEmailResponse, dk as SendMerchantOrderReceivedNotificationRequest, dl as SendMerchantOrderReceivedNotificationResponse, dr as SendMerchantOrderReceivedPushRequest, ds as SendMerchantOrderReceivedPushResponse, i0 as SendOrderUpdatedDomainEventRequest, i1 as SendOrderUpdatedDomainEventResponse, dp as SendRefundEmailRequest, dq as SendRefundEmailResponse, eR as ServiceProperties, e1 as ServiceProvisioned, e2 as ServiceRemoved, iM as SetOrderNumberCounterOptions, cV as SetOrderNumberCounterRequest, cW as SetOrderNumberCounterResponse, h7 as ShippingAddressEdited, h3 as ShippingConfirmationEmailSent, bZ as ShippingInformation, bY as ShippingInformationChange, bm as ShippingPrice, dA as ShippingRefund, bn as ShippingRegion, dU as SiteCreated, a6 as SiteCreatedContext, jo as SiteCreatedContextWithLiterals, dW as SiteDeleted, e4 as SiteHardDeleted, d$ as SiteMarkedAsTemplate, e0 as SiteMarkedAsWixSite, dZ as SitePublished, e9 as SitePurgedExternally, e3 as SiteRenamed, dV as SiteTransferred, dY as SiteUndeleted, d_ as SiteUnpublished, e8 as SiteUrlChanged, aq as SortOrder, jI as SortOrderWithLiterals, fP as Sorting, it as Source, aw as SourceType, jO as SourceTypeWithLiterals, im as StandardDetails, a5 as State, jn as StateWithLiterals, bc as StreetAddress, e6 as StudioAssigned, eg as StudioTwoAssigned, eh as StudioTwoUnassigned, e7 as StudioUnassigned, il as Subdivision, av as SubdivisionType, jN as SubdivisionTypeWithLiterals, aV as SubscriptionDescription, z as SubscriptionFrequency, j2 as SubscriptionFrequencyWithLiterals, aT as SubscriptionInfo, aW as SubscriptionSettings, aU as SubscriptionTitle, cB as TagList, cA as Tags, i2 as Task, i4 as TaskAction, i5 as TaskActionActionOneOf, i3 as TaskKey, bo as TaxSummary, b0 as TaxableAddress, b1 as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, j4 as TaxableAddressTypeWithLiterals, iw as TotalPrice, bX as TotalPriceChange, h2 as TrackingLinkAdded, h0 as TrackingNumberAdded, h1 as TrackingNumberEdited, ah as TransactionStatus, jz as TransactionStatusWithLiterals, b4 as TranslatableString, bU as TranslatedValue, jW as TriggerRefundApplicationErrors, iS as TriggerRefundOptions, eT as TriggerRefundRequest, eY as TriggerRefundResponse, fH as TriggerReindexOrderRequest, fE as TriggerReindexRequest, fF as TriggerReindexResponse, gz as UnArchiveOrderRequest, gA as UnArchiveOrderResponse, iW as UpdateActivityIdentifiers, hj as UpdateActivityRequest, hk as UpdateActivityResponse, gM as UpdateBillingContactDetailsRequest, gN as UpdateBillingContactDetailsResponse, gI as UpdateBuyerEmailRequest, gJ as UpdateBuyerEmailResponse, gF as UpdateBuyerInfoRequest, gH as UpdateBuyerInfoResponse, ft as UpdateInternalDocumentsEvent, fu as UpdateInternalDocumentsEventOperationOneOf, hn as UpdateLineItemsDescriptionLinesRequest, hp as UpdateLineItemsDescriptionLinesResponse, iV as UpdateOrderLineItem, iU as UpdateOrderLineItemIdentifiers, gO as UpdateOrderLineItemRequest, gP as UpdateOrderLineItemResponse, gQ as UpdateOrderLineItemsRequest, gS as UpdateOrderLineItemsResponse, g4 as UpdateOrderRequest, g5 as UpdateOrderResponse, gK as UpdateOrderShippingAddressRequest, gL as UpdateOrderShippingAddressResponse, jX as UpdateOrderStatusApplicationErrors, hu as UpdateOrderStatusRequest, hv as UpdateOrderStatusResponse, ew as UserDefinedPaymentMethodName, ex as UserDefinedPaymentMethodNameKindOneOf, ej as UserDomainMediaDisabled, ei as UserDomainMediaEnabled, hP as V1BulkMarkOrdersAsPaidRequest, hQ as V1BulkMarkOrdersAsPaidResponse, hR as V1CreatePaymentGatewayOrderRequest, hS as V1CreatePaymentGatewayOrderResponse, gd as V1LineItemDelta, ge as V1LineItemDeltaDeltaOneOf, hM as V1MarkOrderAsPaidRequest, hN as V1MarkOrderAsPaidResponse, cQ as V1RestockItem, f8 as V1ScheduledAction, bg as V1ShippingInformation, iH as Value, ay as ValueType, jQ as ValueTypeWithLiterals, bf as VatId, K as VatType, j8 as VatTypeWithLiterals, fC as VersionedDeleteByIdsOperation, fD as VersionedDocumentId, fB as VersionedDocumentUpdateOperation, ap as VersioningMode, jH as VersioningModeWithLiterals, fp as VoidAuthorizedPaymentsRequest, a3 as WebhookIdentityType, jl as WebhookIdentityTypeWithLiterals, W as WeightUnit, j7 as WeightUnitWithLiterals, cm as WixReceipt, fd as WixReceiptInfo, ee as WixelAssigned, ef as WixelUnassigned } from './ecom-v1-order-orders.universal-Cs5iqgM-.js';
4
4
 
5
5
  declare function preparePaymentCollection$1(httpClient: HttpClient): PreparePaymentCollectionSignature;
6
6
  interface PreparePaymentCollectionSignature {
@@ -2066,12 +2066,6 @@ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
2066
2066
  WebhookIdentityType2["APP"] = "APP";
2067
2067
  return WebhookIdentityType2;
2068
2068
  })(WebhookIdentityType || {});
2069
- var VersioningMode = /* @__PURE__ */ ((VersioningMode2) => {
2070
- VersioningMode2["DEFAULT"] = "DEFAULT";
2071
- VersioningMode2["GREATER_THAN"] = "GREATER_THAN";
2072
- VersioningMode2["GREATER_OR_EQUAL"] = "GREATER_OR_EQUAL";
2073
- return VersioningMode2;
2074
- })(VersioningMode || {});
2075
2069
  var PreviewEmailType = /* @__PURE__ */ ((PreviewEmailType2) => {
2076
2070
  PreviewEmailType2["ORDER_PLACED"] = "ORDER_PLACED";
2077
2071
  PreviewEmailType2["DOWNLOAD_LINKS"] = "DOWNLOAD_LINKS";
@@ -2267,6 +2261,12 @@ var RefundStatus = /* @__PURE__ */ ((RefundStatus2) => {
2267
2261
  RefundStatus2["STARTED"] = "STARTED";
2268
2262
  return RefundStatus2;
2269
2263
  })(RefundStatus || {});
2264
+ var VersioningMode = /* @__PURE__ */ ((VersioningMode2) => {
2265
+ VersioningMode2["DEFAULT"] = "DEFAULT";
2266
+ VersioningMode2["GREATER_THAN"] = "GREATER_THAN";
2267
+ VersioningMode2["GREATER_OR_EQUAL"] = "GREATER_OR_EQUAL";
2268
+ return VersioningMode2;
2269
+ })(VersioningMode || {});
2270
2270
  var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
2271
2271
  SortOrder2["ASC"] = "ASC";
2272
2272
  SortOrder2["DESC"] = "DESC";