@wix/auto_sdk_ecom_orders 1.0.169 → 1.0.170

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-C4PB-9NO.d.ts → ecom-v1-order-orders.universal-DOiNub2z.d.ts} +166 -166
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +36 -40
  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 +27 -29
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +169 -169
  9. package/build/cjs/meta.js +27 -29
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{ecom-v1-order-orders.universal-C4PB-9NO.d.mts → ecom-v1-order-orders.universal-DOiNub2z.d.mts} +166 -166
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +33 -37
  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 +24 -26
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +169 -169
  19. package/build/es/meta.mjs +24 -26
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{ecom-v1-order-orders.universal-ClLqcVyj.d.ts → ecom-v1-order-orders.universal-B4pk8rWZ.d.ts} +171 -171
  22. package/build/internal/cjs/index.d.ts +15 -15
  23. package/build/internal/cjs/index.js +36 -40
  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 +27 -29
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +169 -169
  29. package/build/internal/cjs/meta.js +27 -29
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{ecom-v1-order-orders.universal-ClLqcVyj.d.mts → ecom-v1-order-orders.universal-B4pk8rWZ.d.mts} +171 -171
  32. package/build/internal/es/index.d.mts +15 -15
  33. package/build/internal/es/index.mjs +33 -37
  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 +24 -26
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +169 -169
  39. package/build/internal/es/meta.mjs +24 -26
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -3226,168 +3226,6 @@ interface AccountInfo {
3226
3226
  */
3227
3227
  siteId?: string | null;
3228
3228
  }
3229
- interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
3230
- /** insert/update documents */
3231
- update?: InternalDocumentUpdateOperation;
3232
- /** delete by document ids */
3233
- deleteByIds?: DeleteByIdsOperation;
3234
- /** delete documents matching filter */
3235
- deleteByFilter?: DeleteByFilterOperation;
3236
- /** update internal documents matching filter */
3237
- updateByFilter?: InternalDocumentUpdateByFilterOperation;
3238
- /** update only existing documents */
3239
- updateExisting?: InternalUpdateExistingOperation;
3240
- /** insert/update documents with versioning */
3241
- versionedUpdate?: VersionedDocumentUpdateOperation;
3242
- /** delete by document ids with versioning */
3243
- versionedDeleteByIds?: VersionedDeleteByIdsOperation;
3244
- /**
3245
- * type of the documents
3246
- * @minLength 2
3247
- */
3248
- documentType?: string;
3249
- /**
3250
- * language of the documents (mandatory)
3251
- * @minLength 2
3252
- */
3253
- language?: string | null;
3254
- /**
3255
- * one or more search documents
3256
- * @deprecated
3257
- */
3258
- addDocuments?: InternalDocument[];
3259
- /**
3260
- * one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
3261
- * @deprecated
3262
- */
3263
- removeDocumentIds?: string[];
3264
- /** id to pass to processing notification */
3265
- correlationId?: string | null;
3266
- /** when event was created / issued */
3267
- issuedAt?: Date | null;
3268
- }
3269
- /** @oneof */
3270
- interface UpdateInternalDocumentsEventOperationOneOf {
3271
- /** insert/update documents */
3272
- update?: InternalDocumentUpdateOperation;
3273
- /** delete by document ids */
3274
- deleteByIds?: DeleteByIdsOperation;
3275
- /** delete documents matching filter */
3276
- deleteByFilter?: DeleteByFilterOperation;
3277
- /** update internal documents matching filter */
3278
- updateByFilter?: InternalDocumentUpdateByFilterOperation;
3279
- /** update only existing documents */
3280
- updateExisting?: InternalUpdateExistingOperation;
3281
- /** insert/update documents with versioning */
3282
- versionedUpdate?: VersionedDocumentUpdateOperation;
3283
- /** delete by document ids with versioning */
3284
- versionedDeleteByIds?: VersionedDeleteByIdsOperation;
3285
- }
3286
- interface InternalDocument {
3287
- /** document with mandatory fields (id) and with fields specific to the type of the document */
3288
- document?: Record<string, any> | null;
3289
- }
3290
- interface InternalDocumentUpdateOperation {
3291
- /** documents to index or update */
3292
- documents?: InternalDocument[];
3293
- }
3294
- interface DeleteByIdsOperation {
3295
- /** ids of the documents to delete */
3296
- documentIds?: string[];
3297
- /**
3298
- * tenant id for custom tenancy strategy
3299
- * @minLength 2
3300
- * @maxLength 300
3301
- */
3302
- tenantId?: string | null;
3303
- }
3304
- interface DeleteByFilterOperation {
3305
- /** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
3306
- filter?: Record<string, any> | null;
3307
- /**
3308
- * tenant id for custom tenancy strategy
3309
- * @minLength 2
3310
- * @maxLength 300
3311
- */
3312
- tenantId?: string | null;
3313
- }
3314
- interface InternalDocumentUpdateByFilterOperation {
3315
- /** documents matching this filter will be updated */
3316
- filter?: Record<string, any> | null;
3317
- /** partial document to apply */
3318
- document?: InternalDocument;
3319
- /**
3320
- * tenant id for custom tenancy strategy
3321
- * @minLength 2
3322
- * @maxLength 300
3323
- */
3324
- tenantId?: string | null;
3325
- }
3326
- interface InternalUpdateExistingOperation {
3327
- /** documents to update */
3328
- documents?: InternalDocument[];
3329
- }
3330
- interface VersionedDocumentUpdateOperation {
3331
- /** documents to create or overwrite */
3332
- documents?: InternalDocument[];
3333
- /** versioning mode to use instead of default */
3334
- versioningMode?: VersioningModeWithLiterals;
3335
- }
3336
- declare enum VersioningMode {
3337
- /** use default versioning mode agreed with search team */
3338
- DEFAULT = "DEFAULT",
3339
- /** execute only if version is greater than existing */
3340
- GREATER_THAN = "GREATER_THAN",
3341
- /** execute only if version is greater or equal to existing */
3342
- GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
3343
- }
3344
- /** @enumType */
3345
- type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
3346
- interface VersionedDeleteByIdsOperation {
3347
- /** ids with version of the documents to delete */
3348
- documentIds?: VersionedDocumentId[];
3349
- /**
3350
- * tenant id for custom tenancy strategy
3351
- * @minLength 2
3352
- * @maxLength 300
3353
- */
3354
- tenantId?: string | null;
3355
- }
3356
- interface VersionedDocumentId {
3357
- /** document id */
3358
- documentId?: string;
3359
- /** document version */
3360
- version?: string;
3361
- /** versioning mode to use instead of default */
3362
- versioningMode?: VersioningModeWithLiterals;
3363
- }
3364
- interface TriggerReindexRequest {
3365
- /** @format GUID */
3366
- metasiteId?: string;
3367
- /**
3368
- * @minLength 1
3369
- * @maxLength 100
3370
- * @maxSize 100
3371
- */
3372
- orderIds?: string[];
3373
- }
3374
- interface TriggerReindexResponse {
3375
- }
3376
- interface Empty {
3377
- }
3378
- interface BatchOfTriggerReindexOrderRequest {
3379
- /** @maxSize 25 */
3380
- requests?: TriggerReindexOrderRequest[];
3381
- }
3382
- interface TriggerReindexOrderRequest {
3383
- /** @format GUID */
3384
- metasiteId?: string;
3385
- /**
3386
- * @minLength 1
3387
- * @maxLength 100
3388
- */
3389
- orderId?: string;
3390
- }
3391
3229
  interface SendBuyerConfirmationEmailRequest {
3392
3230
  /** @format GUID */
3393
3231
  orderId?: string;
@@ -3680,6 +3518,8 @@ interface PreviewResendDownloadLinksEmailRequest {
3680
3518
  interface PreviewResendDownloadLinksEmailResponse {
3681
3519
  emailPreview?: string;
3682
3520
  }
3521
+ interface Empty {
3522
+ }
3683
3523
  interface PreparePaymentCollectionRequest {
3684
3524
  /**
3685
3525
  * Ecom order ID.
@@ -4744,6 +4584,166 @@ interface ChargeSavedPaymentMethodResponse {
4744
4584
  /** Payment gateway's order ID (e.g Wix Payments) */
4745
4585
  paymentGatewayOrderId?: string;
4746
4586
  }
4587
+ interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
4588
+ /** insert/update documents */
4589
+ update?: InternalDocumentUpdateOperation;
4590
+ /** delete by document ids */
4591
+ deleteByIds?: DeleteByIdsOperation;
4592
+ /** delete documents matching filter */
4593
+ deleteByFilter?: DeleteByFilterOperation;
4594
+ /** update internal documents matching filter */
4595
+ updateByFilter?: InternalDocumentUpdateByFilterOperation;
4596
+ /** update only existing documents */
4597
+ updateExisting?: InternalUpdateExistingOperation;
4598
+ /** insert/update documents with versioning */
4599
+ versionedUpdate?: VersionedDocumentUpdateOperation;
4600
+ /** delete by document ids with versioning */
4601
+ versionedDeleteByIds?: VersionedDeleteByIdsOperation;
4602
+ /**
4603
+ * type of the documents
4604
+ * @minLength 2
4605
+ */
4606
+ documentType?: string;
4607
+ /**
4608
+ * language of the documents (mandatory)
4609
+ * @minLength 2
4610
+ */
4611
+ language?: string | null;
4612
+ /**
4613
+ * one or more search documents
4614
+ * @deprecated
4615
+ */
4616
+ addDocuments?: InternalDocument[];
4617
+ /**
4618
+ * one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
4619
+ * @deprecated
4620
+ */
4621
+ removeDocumentIds?: string[];
4622
+ /** id to pass to processing notification */
4623
+ correlationId?: string | null;
4624
+ /** when event was created / issued */
4625
+ issuedAt?: Date | null;
4626
+ }
4627
+ /** @oneof */
4628
+ interface UpdateInternalDocumentsEventOperationOneOf {
4629
+ /** insert/update documents */
4630
+ update?: InternalDocumentUpdateOperation;
4631
+ /** delete by document ids */
4632
+ deleteByIds?: DeleteByIdsOperation;
4633
+ /** delete documents matching filter */
4634
+ deleteByFilter?: DeleteByFilterOperation;
4635
+ /** update internal documents matching filter */
4636
+ updateByFilter?: InternalDocumentUpdateByFilterOperation;
4637
+ /** update only existing documents */
4638
+ updateExisting?: InternalUpdateExistingOperation;
4639
+ /** insert/update documents with versioning */
4640
+ versionedUpdate?: VersionedDocumentUpdateOperation;
4641
+ /** delete by document ids with versioning */
4642
+ versionedDeleteByIds?: VersionedDeleteByIdsOperation;
4643
+ }
4644
+ interface InternalDocument {
4645
+ /** document with mandatory fields (id) and with fields specific to the type of the document */
4646
+ document?: Record<string, any> | null;
4647
+ }
4648
+ interface InternalDocumentUpdateOperation {
4649
+ /** documents to index or update */
4650
+ documents?: InternalDocument[];
4651
+ }
4652
+ interface DeleteByIdsOperation {
4653
+ /** ids of the documents to delete */
4654
+ documentIds?: string[];
4655
+ /**
4656
+ * tenant id for custom tenancy strategy
4657
+ * @minLength 2
4658
+ * @maxLength 300
4659
+ */
4660
+ tenantId?: string | null;
4661
+ }
4662
+ interface DeleteByFilterOperation {
4663
+ /** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
4664
+ filter?: Record<string, any> | null;
4665
+ /**
4666
+ * tenant id for custom tenancy strategy
4667
+ * @minLength 2
4668
+ * @maxLength 300
4669
+ */
4670
+ tenantId?: string | null;
4671
+ }
4672
+ interface InternalDocumentUpdateByFilterOperation {
4673
+ /** documents matching this filter will be updated */
4674
+ filter?: Record<string, any> | null;
4675
+ /** partial document to apply */
4676
+ document?: InternalDocument;
4677
+ /**
4678
+ * tenant id for custom tenancy strategy
4679
+ * @minLength 2
4680
+ * @maxLength 300
4681
+ */
4682
+ tenantId?: string | null;
4683
+ }
4684
+ interface InternalUpdateExistingOperation {
4685
+ /** documents to update */
4686
+ documents?: InternalDocument[];
4687
+ }
4688
+ interface VersionedDocumentUpdateOperation {
4689
+ /** documents to create or overwrite */
4690
+ documents?: InternalDocument[];
4691
+ /** versioning mode to use instead of default */
4692
+ versioningMode?: VersioningModeWithLiterals;
4693
+ }
4694
+ declare enum VersioningMode {
4695
+ /** use default versioning mode agreed with search team */
4696
+ DEFAULT = "DEFAULT",
4697
+ /** execute only if version is greater than existing */
4698
+ GREATER_THAN = "GREATER_THAN",
4699
+ /** execute only if version is greater or equal to existing */
4700
+ GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
4701
+ }
4702
+ /** @enumType */
4703
+ type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
4704
+ interface VersionedDeleteByIdsOperation {
4705
+ /** ids with version of the documents to delete */
4706
+ documentIds?: VersionedDocumentId[];
4707
+ /**
4708
+ * tenant id for custom tenancy strategy
4709
+ * @minLength 2
4710
+ * @maxLength 300
4711
+ */
4712
+ tenantId?: string | null;
4713
+ }
4714
+ interface VersionedDocumentId {
4715
+ /** document id */
4716
+ documentId?: string;
4717
+ /** document version */
4718
+ version?: string;
4719
+ /** versioning mode to use instead of default */
4720
+ versioningMode?: VersioningModeWithLiterals;
4721
+ }
4722
+ interface TriggerReindexRequest {
4723
+ /** @format GUID */
4724
+ metasiteId?: string;
4725
+ /**
4726
+ * @minLength 1
4727
+ * @maxLength 100
4728
+ * @maxSize 100
4729
+ */
4730
+ orderIds?: string[];
4731
+ }
4732
+ interface TriggerReindexResponse {
4733
+ }
4734
+ interface BatchOfTriggerReindexOrderRequest {
4735
+ /** @maxSize 25 */
4736
+ requests?: TriggerReindexOrderRequest[];
4737
+ }
4738
+ interface TriggerReindexOrderRequest {
4739
+ /** @format GUID */
4740
+ metasiteId?: string;
4741
+ /**
4742
+ * @minLength 1
4743
+ * @maxLength 100
4744
+ */
4745
+ orderId?: string;
4746
+ }
4747
4747
  interface DiffmatokyPayload {
4748
4748
  left?: string;
4749
4749
  right?: string;
@@ -6706,7 +6706,7 @@ type RecordManuallyCollectedPaymentApplicationErrors = {
6706
6706
  data?: Record<string, any>;
6707
6707
  };
6708
6708
  /** @docsIgnore */
6709
- type PaymentCollectionMarkOrderAsPaidApplicationErrors = {
6709
+ type MarkOrderAsPaidApplicationErrors = {
6710
6710
  code?: 'ORDER_ALREADY_PAID';
6711
6711
  description?: string;
6712
6712
  data?: Record<string, any>;
@@ -6720,7 +6720,7 @@ type PaymentCollectionMarkOrderAsPaidApplicationErrors = {
6720
6720
  data?: Record<string, any>;
6721
6721
  };
6722
6722
  /** @docsIgnore */
6723
- type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors = {
6723
+ type CreatePaymentGatewayOrderApplicationErrors = {
6724
6724
  code?: 'ORDER_ALREADY_PAID';
6725
6725
  description?: string;
6726
6726
  data?: Record<string, any>;
@@ -7117,7 +7117,7 @@ interface PreparePaymentCollectionOptions {
7117
7117
  * @fqn com.wix.ecom.orders.payments_collector.v1.PaymentsCollector.GetPaymentCollectabilityStatus
7118
7118
  */
7119
7119
  declare function getPaymentCollectabilityStatus(ecomOrderId: string): Promise<NonNullablePaths<GetPaymentCollectabilityStatusResponse, `status` | `amount.amount` | `amount.formattedAmount`, 3>>;
7120
- interface PaymentCollectionCreatePaymentGatewayOrderOptions {
7120
+ interface CreatePaymentGatewayOrderOptions {
7121
7121
  /** Information about the user who initiated the payment. */
7122
7122
  chargedBy?: ChargedBy;
7123
7123
  }
@@ -7860,4 +7860,4 @@ interface BulkUpdateOrderTagsOptions {
7860
7860
  unassignTags?: Tags;
7861
7861
  }
7862
7862
 
7863
- export { AdditionalFeeSource as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PaymentStatus as E, FulfillmentStatus as F, type GetPaymentCollectabilityStatusResponse as G, VatType as H, ItemTypePreset as I, JurisdictionType as J, PickupMethod as K, OrderStatus as L, type MaskedOrder as M, DiscountType as N, type Order as O, type Price as P, DiscountReason as Q, LineItemQuantityChangeType as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, ActivityType as X, OrderActivityTypeEnumActivityType as Y, AttributionSource as Z, ChannelType as _, type PreparePaymentCollectionOptions as a, type BuyerInfo as a$, OrderActionType as a0, ChargeType as a1, WebhookIdentityType as a2, VersioningMode as a3, PreviewEmailType as a4, ScheduledAction as a5, DurationUnit as a6, PaymentCollectabilityStatus as a7, RefundableStatus as a8, NonRefundableReason as a9, type DescriptionLineDescriptionLineValueOneOf as aA, type DescriptionLineName as aB, type PlainTextValue as aC, type Color as aD, type FocalPoint as aE, type PhysicalProperties as aF, type ItemType as aG, type ItemTypeItemTypeDataOneOf as aH, type ItemTaxFullDetails as aI, type LineItemTaxInfo as aJ, type LineItemTaxBreakdown as aK, type DigitalFile as aL, type SubscriptionInfo as aM, type SubscriptionTitle as aN, type SubscriptionDescription as aO, type SubscriptionSettings as aP, type FreeTrialPeriod as aQ, type BillingAdjustment as aR, type BillingAdjustmentPriceSummary as aS, type PriceDescription as aT, type LocationAndQuantity as aU, type TaxableAddress as aV, type TaxableAddressTaxableAddressDataOneOf as aW, type ExtendedFields as aX, type ModifierGroup as aY, type TranslatableString as aZ, type ItemModifier as a_, ManuallyRefundableReason as aa, RestockType as ab, TransactionStatus as ac, AuthorizationCaptureStatus as ad, AuthorizationVoidStatus as ae, Reason as af, ActionType as ag, ChargebackStatus as ah, MembershipPaymentStatus as ai, RefundStatus as aj, SortOrder as ak, OrderApprovalStrategy as al, DeltaPaymentOptionType as am, InventoryAction as an, Placement as ao, SubdivisionType as ap, SourceType as aq, CustomFieldGroup as ar, ValueType as as, DepositType as at, InvoiceStatus as au, type OrderLineItem as av, type ProductName as aw, type CatalogReference as ax, type DescriptionLine as ay, type DescriptionLineValueOneOf as az, type PreparePaymentCollectionResponse as b, type GiftCardPaymentRefund as b$, type BuyerInfoIdOneOf as b0, type CurrencyConversionDetails as b1, type PriceSummary as b2, type AddressWithContact as b3, type Address as b4, type StreetAddress as b5, type AddressLocation as b6, type FullAddressContactDetails as b7, type VatId as b8, type V1ShippingInformation as b9, type NewExchangeOrderCreated as bA, type LineItemExchangeData as bB, type DraftOrderChangesApplied as bC, type OrderChange as bD, type OrderChangeValueOneOf as bE, type LineItemChanges as bF, type LineItemQuantityChange as bG, type LineItemPriceChange as bH, type LineItemProductNameChange as bI, type LineItemDescriptionLineChange as bJ, type LineItemModifiersChange as bK, type ManagedLineItem as bL, type ManagedDiscount as bM, type TranslatedValue as bN, type LineItemAmount as bO, type ManagedAdditionalFee as bP, type TotalPriceChange as bQ, type ShippingInformationChange as bR, type ShippingInformation as bS, type SavedPaymentMethod as bT, type AuthorizedPaymentCreated as bU, type AuthorizedPaymentCaptured as bV, type AuthorizedPaymentVoided as bW, type RefundInitiated as bX, type RefundedPayment as bY, type RefundedPaymentKindOneOf as bZ, type RegularPaymentRefund as b_, type DeliveryLogistics as ba, type DeliveryLogisticsAddressOneOf as bb, type PickupDetails as bc, type PickupAddress as bd, type DeliveryTimeSlot as be, type ShippingPrice as bf, type ShippingRegion as bg, type TaxSummary as bh, type OrderTaxInfo as bi, type OrderTaxBreakdown as bj, type AppliedDiscount as bk, type AppliedDiscountDiscountSourceOneOf as bl, type Coupon as bm, type MerchantDiscount as bn, type MerchantDiscountMerchantDiscountReasonOneOf as bo, type DiscountRule as bp, type DiscountRuleName as bq, type LineItemDiscount as br, type ItemCombination as bs, type ItemCombinationLineItem as bt, type Activity as bu, type ActivityContentOneOf as bv, type CustomActivity as bw, type MerchantComment as bx, type OrderRefunded as by, type OrderCreatedFromExchange as bz, type PreparePaymentCollectionApplicationErrors as c, type IdentificationDataIdOneOf as c$, type MembershipPaymentRefund as c0, type PaymentRefunded as c1, type PaymentRefundFailed as c2, type RefundedAsStoreCredit as c3, type PaymentPending as c4, type PaymentPendingPaymentDetailsOneOf as c5, type RegularPayment as c6, type RegularPaymentPaymentMethodDetailsOneOf as c7, type CreditCardDetails as c8, type PaymentCanceled as c9, type OwnerApps as cA, type FormInfo as cB, type FormIdentifier as cC, type PlatformFeeSummary as cD, type PlatformFee as cE, type OrderApproved as cF, type OrdersExperiments as cG, type OrderRejectedEventOrderRejected as cH, type OrderItemsRestocked as cI, type V1RestockItem as cJ, type OrderImported as cK, type ImportedOrderDeleted as cL, type ImportOrderRequest as cM, type ImportOrderResponse as cN, type SetOrderNumberCounterRequest as cO, type SetOrderNumberCounterResponse as cP, type BulkDeleteImportedOrdersRequest as cQ, type BulkDeleteImportedOrdersResponse as cR, type DomainEvent as cS, type DomainEventBodyOneOf as cT, type EntityCreatedEvent as cU, type RestoreInfo as cV, type EntityUpdatedEvent as cW, type EntityDeletedEvent as cX, type ActionEvent as cY, type MessageEnvelope as cZ, type IdentificationData as c_, type PaymentCanceledPaymentDetailsOneOf as ca, type PaymentDeclined as cb, type PaymentDeclinedPaymentDetailsOneOf as cc, type ReceiptCreated as cd, type ReceiptCreatedReceiptInfoOneOf as ce, type WixReceipt as cf, type ExternalReceipt as cg, type ReceiptSent as ch, type ReceiptSentReceiptInfoOneOf as ci, type ChargebackCreated as cj, type ChargebackReversed as ck, type CreatedBy as cl, type CreatedByStringOneOf as cm, type ChannelInfo as cn, type CustomField as co, type BalanceSummary as cp, type Balance as cq, type AdditionalFee as cr, type FulfillmentStatusesAggregate as cs, type Tags as ct, type TagList as cu, type Location as cv, type OrderSettings as cw, type OrderSettingsAllowedActionsOneOf as cx, type OrderSettingsEditableByOneOf as cy, type CustomAllowedActions as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type DelayedCaptureSettings as d$, type AccountInfo as d0, type UpdateInternalDocumentsEvent as d1, type UpdateInternalDocumentsEventOperationOneOf as d2, type InternalDocument as d3, type InternalDocumentUpdateOperation as d4, type DeleteByIdsOperation as d5, type DeleteByFilterOperation as d6, type InternalDocumentUpdateByFilterOperation as d7, type InternalUpdateExistingOperation as d8, type VersionedDocumentUpdateOperation as d9, type SendMerchantOrderReceivedPushRequest as dA, type SendMerchantOrderReceivedPushResponse as dB, type PreviewEmailByTypeRequest as dC, type PreviewEmailByTypeResponse as dD, type PreviewRefundEmailRequest as dE, type RefundDetails as dF, type RefundItem as dG, type LineItemRefund as dH, type AdditionalFeeRefund as dI, type ShippingRefund as dJ, type PreviewRefundEmailResponse as dK, type PreviewCancelEmailRequest as dL, type PreviewCancelEmailResponse as dM, type PreviewCancelRefundEmailRequest as dN, type PreviewCancelRefundEmailResponse as dO, type PreviewBuyerPaymentsReceivedEmailRequest as dP, type PreviewBuyerPaymentsReceivedEmailResponse as dQ, type PreviewBuyerConfirmationEmailRequest as dR, type PreviewBuyerConfirmationEmailResponse as dS, type PreviewBuyerPickupConfirmationEmailRequest as dT, type PreviewBuyerPickupConfirmationEmailResponse as dU, type PreviewShippingConfirmationEmailRequest as dV, type PreviewShippingConfirmationEmailResponse as dW, type PreviewResendDownloadLinksEmailRequest as dX, type PreviewResendDownloadLinksEmailResponse as dY, type PreparePaymentCollectionRequest as dZ, type RedirectUrls as d_, type VersionedDeleteByIdsOperation as da, type VersionedDocumentId as db, type TriggerReindexRequest as dc, type TriggerReindexResponse as dd, type Empty as de, type BatchOfTriggerReindexOrderRequest as df, type TriggerReindexOrderRequest as dg, type SendBuyerConfirmationEmailRequest as dh, type SendBuyerConfirmationEmailResponse as di, type SendBuyerPaymentsReceivedEmailRequest as dj, type SendBuyerPaymentsReceivedEmailResponse as dk, type SendBuyerPickupConfirmationEmailRequest as dl, type SendBuyerPickupConfirmationEmailResponse as dm, type BulkSendBuyerPickupConfirmationEmailsRequest as dn, type BulkSendBuyerPickupConfirmationEmailsResponse as dp, type SendBuyerShippingConfirmationEmailRequest as dq, type SendBuyerShippingConfirmationEmailResponse as dr, type BulkSendBuyerShippingConfirmationEmailsRequest as ds, type BulkSendBuyerShippingConfirmationEmailsResponse as dt, type SendMerchantOrderReceivedNotificationRequest as du, type SendMerchantOrderReceivedNotificationResponse as dv, type SendCancelRefundEmailRequest as dw, type SendCancelRefundEmailResponse as dx, type SendRefundEmailRequest as dy, type SendRefundEmailResponse as dz, type PaymentCapture as e, type GetOrderRequest as e$, type Duration as e0, type GetPaymentCollectabilityStatusRequest as e1, type RecordManuallyCollectedPaymentRequest as e2, type RecordManuallyCollectedPaymentResponse as e3, type MarkOrderAsPaidRequest as e4, type MarkOrderAsPaidResponse as e5, type BulkMarkOrdersAsPaidRequest as e6, type BulkMarkOrdersAsPaidResponse as e7, type BulkOrderResult as e8, type ItemMetadata as e9, type CreditCardPaymentMethodDetails as eA, type AuthorizationDetails as eB, type AuthorizationCapture as eC, type AuthorizationActionFailureDetails as eD, type AuthorizationVoid as eE, type V1ScheduledAction as eF, type Chargeback as eG, type GiftCardPaymentDetails as eH, type MembershipPaymentDetails as eI, type WixReceiptInfo as eJ, type ExternalReceiptInfo as eK, type Refund as eL, type RefundTransaction as eM, type RefundStatusInfo as eN, type AggregatedRefundSummary as eO, type RefundItemsBreakdown as eP, type LineItemRefundSummary as eQ, type CalculateRefundRequest as eR, type CalculateRefundItemRequest as eS, type CalculateRefundResponse as eT, type CalculateRefundItemResponse as eU, type VoidAuthorizedPaymentsRequest as eV, type CaptureAuthorizedPaymentsRequest as eW, type ChargeSavedPaymentMethodRequest as eX, type ChargeSavedPaymentMethodResponse as eY, type DiffmatokyPayload as eZ, type ErrorInformation as e_, type ApplicationError as ea, type BulkActionMetadata as eb, type GetRefundabilityStatusRequest as ec, type GetRefundabilityStatusResponse as ed, type Refundability as ee, type RefundabilityAdditionalRefundabilityInfoOneOf as ef, type CreatePaymentGatewayOrderRequest as eg, type ChargedBy as eh, type CreatePaymentGatewayOrderResponse as ei, type ChargeMembershipsRequest as ej, type MembershipChargeItem as ek, type MembershipName as el, type ServiceProperties as em, type ChargeMembershipsResponse as en, type TriggerRefundRequest as eo, type PaymentRefund as ep, type RefundSideEffects as eq, type RestockInfo as er, type RestockItem as es, type TriggerRefundResponse as et, type OrderTransactions as eu, type Payment as ev, type PaymentPaymentDetailsOneOf as ew, type PaymentReceiptInfoOneOf as ex, type RegularPaymentDetails as ey, type RegularPaymentDetailsPaymentMethodDetailsOneOf as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type UpdateOrderShippingAddressResponse as f$, type GetOrderResponse as f0, type InternalQueryOrdersRequest as f1, type PlatformQuery as f2, type PlatformQueryPagingMethodOneOf as f3, type Sorting as f4, type PlatformPaging as f5, type CursorPaging as f6, type InternalQueryOrdersResponse as f7, type PlatformPagingMetadata as f8, type Cursors as f9, type AdditionalFeeDeltaDeltaOneOf as fA, type DraftOrderCommitSettings as fB, type InventoryUpdateDetails as fC, type CommitDeltasResponse as fD, type OrderDeltasCommitted as fE, type CommittedDiffs as fF, type CommittedDiffsShippingUpdateInfoOneOf as fG, type LineItemDelta as fH, type LineItemDeltaDeltaOneOf as fI, type ArchiveOrderRequest as fJ, type ArchiveOrderResponse as fK, type BulkArchiveOrdersRequest as fL, type BulkArchiveOrdersResponse as fM, type BulkArchiveOrdersByFilterRequest as fN, type BulkArchiveOrdersByFilterResponse as fO, type UnArchiveOrderRequest as fP, type UnArchiveOrderResponse as fQ, type BulkUnArchiveOrdersRequest as fR, type BulkUnArchiveOrdersResponse as fS, type BulkUnArchiveOrdersByFilterRequest as fT, type BulkUnArchiveOrdersByFilterResponse as fU, type UpdateBuyerInfoRequest as fV, type BuyerInfoUpdate as fW, type UpdateBuyerInfoResponse as fX, type UpdateBuyerEmailRequest as fY, type UpdateBuyerEmailResponse as fZ, type UpdateOrderShippingAddressRequest as f_, type QueryOrderRequest as fa, type QueryOrderResponse as fb, type SearchOrdersRequest as fc, type CursorSearch as fd, type CursorSearchPagingMethodOneOf as fe, type CursorPagingMetadata as ff, type CreateOrderRequest as fg, type OrderCreationSettings as fh, type OrderCreateNotifications as fi, type CreateOrderResponse as fj, type UpdateOrderRequest as fk, type UpdateOrderResponse as fl, type BulkUpdateOrdersRequest as fm, type CommitDeltasRequest as fn, type DraftOrderDiffs as fo, type DraftOrderDiffsShippingUpdateInfoOneOf as fp, type DraftOrderDiffsBuyerUpdateInfoOneOf as fq, type DraftOrderDiffsBillingUpdateInfoOneOf as fr, type DraftOrderDiffsRecipientUpdateInfoOneOf as fs, type V1LineItemDelta as ft, type V1LineItemDeltaDeltaOneOf as fu, type OrderLineItemChangedDetails as fv, type ItemChangedDetails as fw, type AppliedDiscountDelta as fx, type AppliedDiscountDeltaDeltaOneOf as fy, type AdditionalFeeDelta as fz, type GetOrderApplicationErrors as g, type BulkSetBusinessLocationResult as g$, type UpdateBillingContactDetailsRequest as g0, type UpdateBillingContactDetailsResponse as g1, type UpdateOrderLineItemRequest as g2, type UpdateOrderLineItemResponse as g3, type UpdateOrderLineItemsRequest as g4, type MaskedOrderLineItem as g5, type UpdateOrderLineItemsResponse as g6, type AddInternalActivityRequest as g7, type InternalActivity as g8, type InternalActivityContentOneOf as g9, type UpdateActivityResponse as gA, type DeleteActivityRequest as gB, type DeleteActivityResponse as gC, type UpdateLineItemsDescriptionLinesRequest as gD, type LineItemUpdate as gE, type UpdateLineItemsDescriptionLinesResponse as gF, type MarkOrderAsSeenByHumanRequest as gG, type MarkOrderAsSeenByHumanResponse as gH, type CancelOrderRequest as gI, type OrderCanceledEventOrderCanceled as gJ, type UpdateOrderStatusRequest as gK, type UpdateOrderStatusResponse as gL, type MarkAsFulfilledRequest as gM, type MarkAsFulfilledResponse as gN, type FulfillmentStatusUpdated as gO, type BulkMarkAsFulfilledRequest as gP, type BulkMarkAsFulfilledResponse as gQ, type BulkMarkAsFulfilledByFilterRequest as gR, type BulkMarkAsFulfilledByFilterResponse as gS, type MarkAsUnfulfilledRequest as gT, type MarkAsUnfulfilledResponse as gU, type BulkMarkAsUnfulfilledRequest as gV, type BulkMarkAsUnfulfilledResponse as gW, type BulkMarkAsUnfulfilledByFilterRequest as gX, type BulkMarkAsUnfulfilledByFilterResponse as gY, type BulkSetBusinessLocationRequest as gZ, type BulkSetBusinessLocationResponse as g_, type OrderPlaced as ga, type OrderPaid as gb, type OrderFulfilled as gc, type OrderNotFulfilled as gd, type OrderCanceled as ge, type DownloadLinkSent as gf, type TrackingNumberAdded as gg, type TrackingNumberEdited as gh, type TrackingLinkAdded as gi, type ShippingConfirmationEmailSent as gj, type InvoiceAdded as gk, type InvoiceSent as gl, type FulfillerEmailSent as gm, type ShippingAddressEdited as gn, type EmailEdited as go, type PickupReadyEmailSent as gp, type OrderPartiallyPaid as gq, type OrderPending as gr, type OrderRejected as gs, type AddInternalActivityResponse as gt, type AddActivityRequest as gu, type PublicActivity as gv, type PublicActivityContentOneOf as gw, type AddActivityResponse as gx, type AddActivitiesRequest as gy, type UpdateActivityRequest as gz, type OrderSearch as h, type ChargeMembershipsOptions as h$, type V1MarkOrderAsPaidRequest as h0, type V1MarkOrderAsPaidResponse as h1, type PaymentStatusUpdated as h2, type V1BulkMarkOrdersAsPaidRequest as h3, type V1BulkMarkOrdersAsPaidResponse as h4, type V1CreatePaymentGatewayOrderRequest as h5, type V1CreatePaymentGatewayOrderResponse as h6, type GetShipmentsRequest as h7, type GetShipmentsResponse as h8, type AggregateOrdersRequest as h9, type InvoiceDates as hA, type LineItems as hB, type LineItem as hC, type BigDecimalWrapper as hD, type LineItemTax as hE, type Source as hF, type LineItemMetaData as hG, type Locale as hH, type TotalPrice as hI, type ItemizedFee as hJ, type Discount as hK, type DiscountOneDiscountTypeOneOf as hL, type CalculatedTaxes as hM, type CalculatedTax as hN, type Payments as hO, type InvoicesPayment as hP, type MetaData as hQ, type InvoiceDynamicPriceTotals as hR, type CustomFieldValue as hS, type Value as hT, type Deposit as hU, type BaseEventMetadata as hV, type EventMetadata as hW, type AccountInfoMetadata as hX, type SetOrderNumberCounterOptions as hY, type BulkDeleteImportedOrdersOptions as hZ, type PaymentCollectionCreatePaymentGatewayOrderOptions as h_, type AggregateOrdersResponse as ha, type DecrementItemsQuantityRequest as hb, type DecrementData as hc, type DecrementItemsQuantityResponse as hd, type BulkUpdateOrderTagsRequest as he, type BulkUpdateOrderTagsResult as hf, type Task as hg, type TaskKey as hh, type TaskAction as hi, type TaskActionActionOneOf as hj, type Complete as hk, type Cancel as hl, type Reschedule as hm, type InvoiceSentEvent as hn, type IdAndVersion as ho, type InvoiceFields as hp, type Customer as hq, type Email as hr, type QuotesAddress as hs, type AddressDescription as ht, type Phone as hu, type Company as hv, type CommonAddress as hw, type CommonAddressStreetOneOf as hx, type Subdivision as hy, type StandardDetails as hz, type CreateOrderOptions as i, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as i$, type TriggerRefundOptions as i0, type OrderSearchSpec as i1, type UpdateOrderLineItemIdentifiers as i2, type UpdateOrderLineItem as i3, type UpdateActivityIdentifiers as i4, type DeleteActivityIdentifiers as i5, type AggregateOrdersOptions as i6, type DescriptionLineTypeWithLiterals as i7, type ItemTypePresetWithLiterals as i8, type PaymentOptionTypeWithLiterals as i9, type DurationUnitWithLiterals as iA, type PaymentCollectabilityStatusWithLiterals as iB, type RefundableStatusWithLiterals as iC, type NonRefundableReasonWithLiterals as iD, type ManuallyRefundableReasonWithLiterals as iE, type RestockTypeWithLiterals as iF, type TransactionStatusWithLiterals as iG, type AuthorizationCaptureStatusWithLiterals as iH, type AuthorizationVoidStatusWithLiterals as iI, type ReasonWithLiterals as iJ, type ActionTypeWithLiterals as iK, type ChargebackStatusWithLiterals as iL, type MembershipPaymentStatusWithLiterals as iM, type RefundStatusWithLiterals as iN, type SortOrderWithLiterals as iO, type OrderApprovalStrategyWithLiterals as iP, type DeltaPaymentOptionTypeWithLiterals as iQ, type InventoryActionWithLiterals as iR, type PlacementWithLiterals as iS, type SubdivisionTypeWithLiterals as iT, type SourceTypeWithLiterals as iU, type CustomFieldGroupWithLiterals as iV, type ValueTypeWithLiterals as iW, type DepositTypeWithLiterals as iX, type InvoiceStatusWithLiterals as iY, type RecordManuallyCollectedPaymentApplicationErrors as iZ, type PaymentCollectionMarkOrderAsPaidApplicationErrors as i_, type JurisdictionTypeWithLiterals as ia, type SubscriptionFrequencyWithLiterals as ib, type AdjustmentTypeWithLiterals as ic, type TaxableAddressTypeWithLiterals as id, type PaymentStatusWithLiterals as ie, type FulfillmentStatusWithLiterals as ig, type WeightUnitWithLiterals as ih, type VatTypeWithLiterals as ii, type PickupMethodWithLiterals as ij, type OrderStatusWithLiterals as ik, type DiscountTypeWithLiterals as il, type DiscountReasonWithLiterals as im, type LineItemQuantityChangeTypeWithLiterals as io, type ActivityTypeWithLiterals as ip, type OrderActivityTypeEnumActivityTypeWithLiterals as iq, type AttributionSourceWithLiterals as ir, type ChannelTypeWithLiterals as is, type AdditionalFeeSourceWithLiterals as it, type OrderActionTypeWithLiterals as iu, type ChargeTypeWithLiterals as iv, type WebhookIdentityTypeWithLiterals as iw, type VersioningModeWithLiterals as ix, type PreviewEmailTypeWithLiterals as iy, type ScheduledActionWithLiterals as iz, type CreateOrderApplicationErrors as j, type TriggerRefundApplicationErrors as j0, type UpdateOrderStatusApplicationErrors as j1, type CommonSearchWithEntityContext as j2, onOrderApproved as j3, onOrderUpdated as j4, onOrderCanceled as j5, onOrderCreated as j6, onOrderPaymentStatusUpdated as j7, preparePaymentCollection as j8, getPaymentCollectabilityStatus as j9, voidAuthorizedPayments as ja, captureAuthorizedPayments as jb, getOrder as jc, createOrder as jd, updateOrder as je, bulkUpdateOrders as jf, addActivities as jg, cancelOrder as jh, bulkUpdateOrderTags as ji, type UpdateOrderApplicationErrors as k, 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, PaymentOptionType as x, SubscriptionFrequency as y, AdjustmentType as z };
7863
+ export { AdditionalFeeSource as $, type AddActivitiesOptions as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PaymentStatus as E, FulfillmentStatus as F, type GetPaymentCollectabilityStatusResponse as G, VatType as H, ItemTypePreset as I, JurisdictionType as J, PickupMethod as K, OrderStatus as L, type MaskedOrder as M, DiscountType as N, type Order as O, type Price as P, DiscountReason as Q, LineItemQuantityChangeType as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, ActivityType as X, OrderActivityTypeEnumActivityType as Y, AttributionSource as Z, ChannelType as _, type PreparePaymentCollectionOptions as a, type BuyerInfo as a$, OrderActionType as a0, ChargeType as a1, WebhookIdentityType as a2, PreviewEmailType as a3, ScheduledAction as a4, DurationUnit as a5, PaymentCollectabilityStatus as a6, RefundableStatus as a7, NonRefundableReason as a8, ManuallyRefundableReason as a9, type DescriptionLineDescriptionLineValueOneOf as aA, type DescriptionLineName as aB, type PlainTextValue as aC, type Color as aD, type FocalPoint as aE, type PhysicalProperties as aF, type ItemType as aG, type ItemTypeItemTypeDataOneOf as aH, type ItemTaxFullDetails as aI, type LineItemTaxInfo as aJ, type LineItemTaxBreakdown as aK, type DigitalFile as aL, type SubscriptionInfo as aM, type SubscriptionTitle as aN, type SubscriptionDescription as aO, type SubscriptionSettings as aP, type FreeTrialPeriod as aQ, type BillingAdjustment as aR, type BillingAdjustmentPriceSummary as aS, type PriceDescription as aT, type LocationAndQuantity as aU, type TaxableAddress as aV, type TaxableAddressTaxableAddressDataOneOf as aW, type ExtendedFields as aX, type ModifierGroup as aY, type TranslatableString as aZ, type ItemModifier as a_, RestockType as aa, TransactionStatus as ab, AuthorizationCaptureStatus as ac, AuthorizationVoidStatus as ad, Reason as ae, ActionType as af, ChargebackStatus as ag, MembershipPaymentStatus as ah, RefundStatus as ai, VersioningMode as aj, SortOrder as ak, OrderApprovalStrategy as al, DeltaPaymentOptionType as am, InventoryAction as an, Placement as ao, SubdivisionType as ap, SourceType as aq, CustomFieldGroup as ar, ValueType as as, DepositType as at, InvoiceStatus as au, type OrderLineItem as av, type ProductName as aw, type CatalogReference as ax, type DescriptionLine as ay, type DescriptionLineValueOneOf as az, type PreparePaymentCollectionResponse as b, type GiftCardPaymentRefund as b$, type BuyerInfoIdOneOf as b0, type CurrencyConversionDetails as b1, type PriceSummary as b2, type AddressWithContact as b3, type Address as b4, type StreetAddress as b5, type AddressLocation as b6, type FullAddressContactDetails as b7, type VatId as b8, type V1ShippingInformation as b9, type NewExchangeOrderCreated as bA, type LineItemExchangeData as bB, type DraftOrderChangesApplied as bC, type OrderChange as bD, type OrderChangeValueOneOf as bE, type LineItemChanges as bF, type LineItemQuantityChange as bG, type LineItemPriceChange as bH, type LineItemProductNameChange as bI, type LineItemDescriptionLineChange as bJ, type LineItemModifiersChange as bK, type ManagedLineItem as bL, type ManagedDiscount as bM, type TranslatedValue as bN, type LineItemAmount as bO, type ManagedAdditionalFee as bP, type TotalPriceChange as bQ, type ShippingInformationChange as bR, type ShippingInformation as bS, type SavedPaymentMethod as bT, type AuthorizedPaymentCreated as bU, type AuthorizedPaymentCaptured as bV, type AuthorizedPaymentVoided as bW, type RefundInitiated as bX, type RefundedPayment as bY, type RefundedPaymentKindOneOf as bZ, type RegularPaymentRefund as b_, type DeliveryLogistics as ba, type DeliveryLogisticsAddressOneOf as bb, type PickupDetails as bc, type PickupAddress as bd, type DeliveryTimeSlot as be, type ShippingPrice as bf, type ShippingRegion as bg, type TaxSummary as bh, type OrderTaxInfo as bi, type OrderTaxBreakdown as bj, type AppliedDiscount as bk, type AppliedDiscountDiscountSourceOneOf as bl, type Coupon as bm, type MerchantDiscount as bn, type MerchantDiscountMerchantDiscountReasonOneOf as bo, type DiscountRule as bp, type DiscountRuleName as bq, type LineItemDiscount as br, type ItemCombination as bs, type ItemCombinationLineItem as bt, type Activity as bu, type ActivityContentOneOf as bv, type CustomActivity as bw, type MerchantComment as bx, type OrderRefunded as by, type OrderCreatedFromExchange as bz, type PreparePaymentCollectionApplicationErrors as c, type IdentificationDataIdOneOf as c$, type MembershipPaymentRefund as c0, type PaymentRefunded as c1, type PaymentRefundFailed as c2, type RefundedAsStoreCredit as c3, type PaymentPending as c4, type PaymentPendingPaymentDetailsOneOf as c5, type RegularPayment as c6, type RegularPaymentPaymentMethodDetailsOneOf as c7, type CreditCardDetails as c8, type PaymentCanceled as c9, type OwnerApps as cA, type FormInfo as cB, type FormIdentifier as cC, type PlatformFeeSummary as cD, type PlatformFee as cE, type OrderApproved as cF, type OrdersExperiments as cG, type OrderRejectedEventOrderRejected as cH, type OrderItemsRestocked as cI, type V1RestockItem as cJ, type OrderImported as cK, type ImportedOrderDeleted as cL, type ImportOrderRequest as cM, type ImportOrderResponse as cN, type SetOrderNumberCounterRequest as cO, type SetOrderNumberCounterResponse as cP, type BulkDeleteImportedOrdersRequest as cQ, type BulkDeleteImportedOrdersResponse as cR, type DomainEvent as cS, type DomainEventBodyOneOf as cT, type EntityCreatedEvent as cU, type RestoreInfo as cV, type EntityUpdatedEvent as cW, type EntityDeletedEvent as cX, type ActionEvent as cY, type MessageEnvelope as cZ, type IdentificationData as c_, type PaymentCanceledPaymentDetailsOneOf as ca, type PaymentDeclined as cb, type PaymentDeclinedPaymentDetailsOneOf as cc, type ReceiptCreated as cd, type ReceiptCreatedReceiptInfoOneOf as ce, type WixReceipt as cf, type ExternalReceipt as cg, type ReceiptSent as ch, type ReceiptSentReceiptInfoOneOf as ci, type ChargebackCreated as cj, type ChargebackReversed as ck, type CreatedBy as cl, type CreatedByStringOneOf as cm, type ChannelInfo as cn, type CustomField as co, type BalanceSummary as cp, type Balance as cq, type AdditionalFee as cr, type FulfillmentStatusesAggregate as cs, type Tags as ct, type TagList as cu, type Location as cv, type OrderSettings as cw, type OrderSettingsAllowedActionsOneOf as cx, type OrderSettingsEditableByOneOf as cy, type CustomAllowedActions as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type Refundability as d$, type AccountInfo as d0, type SendBuyerConfirmationEmailRequest as d1, type SendBuyerConfirmationEmailResponse as d2, type SendBuyerPaymentsReceivedEmailRequest as d3, type SendBuyerPaymentsReceivedEmailResponse as d4, type SendBuyerPickupConfirmationEmailRequest as d5, type SendBuyerPickupConfirmationEmailResponse as d6, type BulkSendBuyerPickupConfirmationEmailsRequest as d7, type BulkSendBuyerPickupConfirmationEmailsResponse as d8, type SendBuyerShippingConfirmationEmailRequest as d9, type PreviewBuyerPaymentsReceivedEmailResponse as dA, type PreviewBuyerConfirmationEmailRequest as dB, type PreviewBuyerConfirmationEmailResponse as dC, type PreviewBuyerPickupConfirmationEmailRequest as dD, type PreviewBuyerPickupConfirmationEmailResponse as dE, type PreviewShippingConfirmationEmailRequest as dF, type PreviewShippingConfirmationEmailResponse as dG, type PreviewResendDownloadLinksEmailRequest as dH, type PreviewResendDownloadLinksEmailResponse as dI, type Empty as dJ, type PreparePaymentCollectionRequest as dK, type RedirectUrls as dL, type DelayedCaptureSettings as dM, type Duration as dN, type GetPaymentCollectabilityStatusRequest as dO, type RecordManuallyCollectedPaymentRequest as dP, type RecordManuallyCollectedPaymentResponse as dQ, type MarkOrderAsPaidRequest as dR, type MarkOrderAsPaidResponse as dS, type BulkMarkOrdersAsPaidRequest as dT, type BulkMarkOrdersAsPaidResponse as dU, type BulkOrderResult as dV, type ItemMetadata as dW, type ApplicationError as dX, type BulkActionMetadata as dY, type GetRefundabilityStatusRequest as dZ, type GetRefundabilityStatusResponse as d_, type SendBuyerShippingConfirmationEmailResponse as da, type BulkSendBuyerShippingConfirmationEmailsRequest as db, type BulkSendBuyerShippingConfirmationEmailsResponse as dc, type SendMerchantOrderReceivedNotificationRequest as dd, type SendMerchantOrderReceivedNotificationResponse as de, type SendCancelRefundEmailRequest as df, type SendCancelRefundEmailResponse as dg, type SendRefundEmailRequest as dh, type SendRefundEmailResponse as di, type SendMerchantOrderReceivedPushRequest as dj, type SendMerchantOrderReceivedPushResponse as dk, type PreviewEmailByTypeRequest as dl, type PreviewEmailByTypeResponse as dm, type PreviewRefundEmailRequest as dn, type RefundDetails as dp, type RefundItem as dq, type LineItemRefund as dr, type AdditionalFeeRefund as ds, type ShippingRefund as dt, type PreviewRefundEmailResponse as du, type PreviewCancelEmailRequest as dv, type PreviewCancelEmailResponse as dw, type PreviewCancelRefundEmailRequest as dx, type PreviewCancelRefundEmailResponse as dy, type PreviewBuyerPaymentsReceivedEmailRequest as dz, type PaymentCapture as e, type GetOrderRequest as e$, type RefundabilityAdditionalRefundabilityInfoOneOf as e0, type CreatePaymentGatewayOrderRequest as e1, type ChargedBy as e2, type CreatePaymentGatewayOrderResponse as e3, type ChargeMembershipsRequest as e4, type MembershipChargeItem as e5, type MembershipName as e6, type ServiceProperties as e7, type ChargeMembershipsResponse as e8, type TriggerRefundRequest as e9, type RefundItemsBreakdown as eA, type LineItemRefundSummary as eB, type CalculateRefundRequest as eC, type CalculateRefundItemRequest as eD, type CalculateRefundResponse as eE, type CalculateRefundItemResponse as eF, type VoidAuthorizedPaymentsRequest as eG, type CaptureAuthorizedPaymentsRequest as eH, type ChargeSavedPaymentMethodRequest as eI, type ChargeSavedPaymentMethodResponse as eJ, type UpdateInternalDocumentsEvent as eK, type UpdateInternalDocumentsEventOperationOneOf as eL, type InternalDocument as eM, type InternalDocumentUpdateOperation as eN, type DeleteByIdsOperation as eO, type DeleteByFilterOperation as eP, type InternalDocumentUpdateByFilterOperation as eQ, type InternalUpdateExistingOperation as eR, type VersionedDocumentUpdateOperation as eS, type VersionedDeleteByIdsOperation as eT, type VersionedDocumentId as eU, type TriggerReindexRequest as eV, type TriggerReindexResponse as eW, type BatchOfTriggerReindexOrderRequest as eX, type TriggerReindexOrderRequest as eY, type DiffmatokyPayload as eZ, type ErrorInformation as e_, type PaymentRefund as ea, type RefundSideEffects as eb, type RestockInfo as ec, type RestockItem as ed, type TriggerRefundResponse as ee, type OrderTransactions as ef, type Payment as eg, type PaymentPaymentDetailsOneOf as eh, type PaymentReceiptInfoOneOf as ei, type RegularPaymentDetails as ej, type RegularPaymentDetailsPaymentMethodDetailsOneOf as ek, type CreditCardPaymentMethodDetails as el, type AuthorizationDetails as em, type AuthorizationCapture as en, type AuthorizationActionFailureDetails as eo, type AuthorizationVoid as ep, type V1ScheduledAction as eq, type Chargeback as er, type GiftCardPaymentDetails as es, type MembershipPaymentDetails as et, type WixReceiptInfo as eu, type ExternalReceiptInfo as ev, type Refund as ew, type RefundTransaction as ex, type RefundStatusInfo as ey, type AggregatedRefundSummary as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type UpdateOrderShippingAddressResponse as f$, type GetOrderResponse as f0, type InternalQueryOrdersRequest as f1, type PlatformQuery as f2, type PlatformQueryPagingMethodOneOf as f3, type Sorting as f4, type PlatformPaging as f5, type CursorPaging as f6, type InternalQueryOrdersResponse as f7, type PlatformPagingMetadata as f8, type Cursors as f9, type AdditionalFeeDeltaDeltaOneOf as fA, type DraftOrderCommitSettings as fB, type InventoryUpdateDetails as fC, type CommitDeltasResponse as fD, type OrderDeltasCommitted as fE, type CommittedDiffs as fF, type CommittedDiffsShippingUpdateInfoOneOf as fG, type LineItemDelta as fH, type LineItemDeltaDeltaOneOf as fI, type ArchiveOrderRequest as fJ, type ArchiveOrderResponse as fK, type BulkArchiveOrdersRequest as fL, type BulkArchiveOrdersResponse as fM, type BulkArchiveOrdersByFilterRequest as fN, type BulkArchiveOrdersByFilterResponse as fO, type UnArchiveOrderRequest as fP, type UnArchiveOrderResponse as fQ, type BulkUnArchiveOrdersRequest as fR, type BulkUnArchiveOrdersResponse as fS, type BulkUnArchiveOrdersByFilterRequest as fT, type BulkUnArchiveOrdersByFilterResponse as fU, type UpdateBuyerInfoRequest as fV, type BuyerInfoUpdate as fW, type UpdateBuyerInfoResponse as fX, type UpdateBuyerEmailRequest as fY, type UpdateBuyerEmailResponse as fZ, type UpdateOrderShippingAddressRequest as f_, type QueryOrderRequest as fa, type QueryOrderResponse as fb, type SearchOrdersRequest as fc, type CursorSearch as fd, type CursorSearchPagingMethodOneOf as fe, type CursorPagingMetadata as ff, type CreateOrderRequest as fg, type OrderCreationSettings as fh, type OrderCreateNotifications as fi, type CreateOrderResponse as fj, type UpdateOrderRequest as fk, type UpdateOrderResponse as fl, type BulkUpdateOrdersRequest as fm, type CommitDeltasRequest as fn, type DraftOrderDiffs as fo, type DraftOrderDiffsShippingUpdateInfoOneOf as fp, type DraftOrderDiffsBuyerUpdateInfoOneOf as fq, type DraftOrderDiffsBillingUpdateInfoOneOf as fr, type DraftOrderDiffsRecipientUpdateInfoOneOf as fs, type V1LineItemDelta as ft, type V1LineItemDeltaDeltaOneOf as fu, type OrderLineItemChangedDetails as fv, type ItemChangedDetails as fw, type AppliedDiscountDelta as fx, type AppliedDiscountDeltaDeltaOneOf as fy, type AdditionalFeeDelta as fz, type GetOrderApplicationErrors as g, type BulkSetBusinessLocationResult as g$, type UpdateBillingContactDetailsRequest as g0, type UpdateBillingContactDetailsResponse as g1, type UpdateOrderLineItemRequest as g2, type UpdateOrderLineItemResponse as g3, type UpdateOrderLineItemsRequest as g4, type MaskedOrderLineItem as g5, type UpdateOrderLineItemsResponse as g6, type AddInternalActivityRequest as g7, type InternalActivity as g8, type InternalActivityContentOneOf as g9, type UpdateActivityResponse as gA, type DeleteActivityRequest as gB, type DeleteActivityResponse as gC, type UpdateLineItemsDescriptionLinesRequest as gD, type LineItemUpdate as gE, type UpdateLineItemsDescriptionLinesResponse as gF, type MarkOrderAsSeenByHumanRequest as gG, type MarkOrderAsSeenByHumanResponse as gH, type CancelOrderRequest as gI, type OrderCanceledEventOrderCanceled as gJ, type UpdateOrderStatusRequest as gK, type UpdateOrderStatusResponse as gL, type MarkAsFulfilledRequest as gM, type MarkAsFulfilledResponse as gN, type FulfillmentStatusUpdated as gO, type BulkMarkAsFulfilledRequest as gP, type BulkMarkAsFulfilledResponse as gQ, type BulkMarkAsFulfilledByFilterRequest as gR, type BulkMarkAsFulfilledByFilterResponse as gS, type MarkAsUnfulfilledRequest as gT, type MarkAsUnfulfilledResponse as gU, type BulkMarkAsUnfulfilledRequest as gV, type BulkMarkAsUnfulfilledResponse as gW, type BulkMarkAsUnfulfilledByFilterRequest as gX, type BulkMarkAsUnfulfilledByFilterResponse as gY, type BulkSetBusinessLocationRequest as gZ, type BulkSetBusinessLocationResponse as g_, type OrderPlaced as ga, type OrderPaid as gb, type OrderFulfilled as gc, type OrderNotFulfilled as gd, type OrderCanceled as ge, type DownloadLinkSent as gf, type TrackingNumberAdded as gg, type TrackingNumberEdited as gh, type TrackingLinkAdded as gi, type ShippingConfirmationEmailSent as gj, type InvoiceAdded as gk, type InvoiceSent as gl, type FulfillerEmailSent as gm, type ShippingAddressEdited as gn, type EmailEdited as go, type PickupReadyEmailSent as gp, type OrderPartiallyPaid as gq, type OrderPending as gr, type OrderRejected as gs, type AddInternalActivityResponse as gt, type AddActivityRequest as gu, type PublicActivity as gv, type PublicActivityContentOneOf as gw, type AddActivityResponse as gx, type AddActivitiesRequest as gy, type UpdateActivityRequest as gz, type OrderSearch as h, type ChargeMembershipsOptions as h$, type V1MarkOrderAsPaidRequest as h0, type V1MarkOrderAsPaidResponse as h1, type PaymentStatusUpdated as h2, type V1BulkMarkOrdersAsPaidRequest as h3, type V1BulkMarkOrdersAsPaidResponse as h4, type V1CreatePaymentGatewayOrderRequest as h5, type V1CreatePaymentGatewayOrderResponse as h6, type GetShipmentsRequest as h7, type GetShipmentsResponse as h8, type AggregateOrdersRequest as h9, type InvoiceDates as hA, type LineItems as hB, type LineItem as hC, type BigDecimalWrapper as hD, type LineItemTax as hE, type Source as hF, type LineItemMetaData as hG, type Locale as hH, type TotalPrice as hI, type ItemizedFee as hJ, type Discount as hK, type DiscountOneDiscountTypeOneOf as hL, type CalculatedTaxes as hM, type CalculatedTax as hN, type Payments as hO, type InvoicesPayment as hP, type MetaData as hQ, type InvoiceDynamicPriceTotals as hR, type CustomFieldValue as hS, type Value as hT, type Deposit as hU, type BaseEventMetadata as hV, type EventMetadata as hW, type AccountInfoMetadata as hX, type SetOrderNumberCounterOptions as hY, type BulkDeleteImportedOrdersOptions as hZ, type CreatePaymentGatewayOrderOptions as h_, type AggregateOrdersResponse as ha, type DecrementItemsQuantityRequest as hb, type DecrementData as hc, type DecrementItemsQuantityResponse as hd, type BulkUpdateOrderTagsRequest as he, type BulkUpdateOrderTagsResult as hf, type Task as hg, type TaskKey as hh, type TaskAction as hi, type TaskActionActionOneOf as hj, type Complete as hk, type Cancel as hl, type Reschedule as hm, type InvoiceSentEvent as hn, type IdAndVersion as ho, type InvoiceFields as hp, type Customer as hq, type Email as hr, type QuotesAddress as hs, type AddressDescription as ht, type Phone as hu, type Company as hv, type CommonAddress as hw, type CommonAddressStreetOneOf as hx, type Subdivision as hy, type StandardDetails as hz, type CreateOrderOptions as i, type CreatePaymentGatewayOrderApplicationErrors as i$, type TriggerRefundOptions as i0, type OrderSearchSpec as i1, type UpdateOrderLineItemIdentifiers as i2, type UpdateOrderLineItem as i3, type UpdateActivityIdentifiers as i4, type DeleteActivityIdentifiers as i5, type AggregateOrdersOptions as i6, type DescriptionLineTypeWithLiterals as i7, type ItemTypePresetWithLiterals as i8, type PaymentOptionTypeWithLiterals as i9, type PaymentCollectabilityStatusWithLiterals as iA, type RefundableStatusWithLiterals as iB, type NonRefundableReasonWithLiterals as iC, type ManuallyRefundableReasonWithLiterals as iD, type RestockTypeWithLiterals as iE, type TransactionStatusWithLiterals as iF, type AuthorizationCaptureStatusWithLiterals as iG, type AuthorizationVoidStatusWithLiterals as iH, type ReasonWithLiterals as iI, type ActionTypeWithLiterals as iJ, type ChargebackStatusWithLiterals as iK, type MembershipPaymentStatusWithLiterals as iL, type RefundStatusWithLiterals as iM, type VersioningModeWithLiterals as iN, type SortOrderWithLiterals as iO, type OrderApprovalStrategyWithLiterals as iP, type DeltaPaymentOptionTypeWithLiterals as iQ, type InventoryActionWithLiterals as iR, type PlacementWithLiterals as iS, type SubdivisionTypeWithLiterals as iT, type SourceTypeWithLiterals as iU, type CustomFieldGroupWithLiterals as iV, type ValueTypeWithLiterals as iW, type DepositTypeWithLiterals as iX, type InvoiceStatusWithLiterals as iY, type RecordManuallyCollectedPaymentApplicationErrors as iZ, type MarkOrderAsPaidApplicationErrors as i_, type JurisdictionTypeWithLiterals as ia, type SubscriptionFrequencyWithLiterals as ib, type AdjustmentTypeWithLiterals as ic, type TaxableAddressTypeWithLiterals as id, type PaymentStatusWithLiterals as ie, type FulfillmentStatusWithLiterals as ig, type WeightUnitWithLiterals as ih, type VatTypeWithLiterals as ii, type PickupMethodWithLiterals as ij, type OrderStatusWithLiterals as ik, type DiscountTypeWithLiterals as il, type DiscountReasonWithLiterals as im, type LineItemQuantityChangeTypeWithLiterals as io, type ActivityTypeWithLiterals as ip, type OrderActivityTypeEnumActivityTypeWithLiterals as iq, type AttributionSourceWithLiterals as ir, type ChannelTypeWithLiterals as is, type AdditionalFeeSourceWithLiterals as it, type OrderActionTypeWithLiterals as iu, type ChargeTypeWithLiterals as iv, type WebhookIdentityTypeWithLiterals as iw, type PreviewEmailTypeWithLiterals as ix, type ScheduledActionWithLiterals as iy, type DurationUnitWithLiterals as iz, type CreateOrderApplicationErrors as j, type TriggerRefundApplicationErrors as j0, type UpdateOrderStatusApplicationErrors as j1, type CommonSearchWithEntityContext as j2, onOrderApproved as j3, onOrderUpdated as j4, onOrderCanceled as j5, onOrderCreated as j6, onOrderPaymentStatusUpdated as j7, preparePaymentCollection as j8, getPaymentCollectabilityStatus as j9, voidAuthorizedPayments as ja, captureAuthorizedPayments as jb, getOrder as jc, createOrder as jd, updateOrder as je, bulkUpdateOrders as jf, addActivities as jg, cancelOrder as jh, bulkUpdateOrderTags as ji, type UpdateOrderApplicationErrors as k, 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, PaymentOptionType as x, SubscriptionFrequency as y, AdjustmentType 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-C4PB-9NO.js';
3
- export { d0 as AccountInfo, hX as AccountInfoMetadata, cY as ActionEvent, ag as ActionType, iK as ActionTypeWithLiterals, bu as Activity, bv as ActivityContentOneOf, X as ActivityType, ip as ActivityTypeWithLiterals, gy as AddActivitiesRequest, gu as AddActivityRequest, gx as AddActivityResponse, g7 as AddInternalActivityRequest, gt as AddInternalActivityResponse, cr as AdditionalFee, fz as AdditionalFeeDelta, fA as AdditionalFeeDeltaDeltaOneOf, dI as AdditionalFeeRefund, $ as AdditionalFeeSource, it as AdditionalFeeSourceWithLiterals, b4 as Address, ht as AddressDescription, b6 as AddressLocation, b3 as AddressWithContact, z as AdjustmentType, ic as AdjustmentTypeWithLiterals, i6 as AggregateOrdersOptions, h9 as AggregateOrdersRequest, ha as AggregateOrdersResponse, eO as AggregatedRefundSummary, ea as ApplicationError, bk as AppliedDiscount, fx as AppliedDiscountDelta, fy as AppliedDiscountDeltaDeltaOneOf, bl as AppliedDiscountDiscountSourceOneOf, fJ as ArchiveOrderRequest, fK as ArchiveOrderResponse, Z as AttributionSource, ir as AttributionSourceWithLiterals, eD as AuthorizationActionFailureDetails, eC as AuthorizationCapture, ad as AuthorizationCaptureStatus, iH as AuthorizationCaptureStatusWithLiterals, eB as AuthorizationDetails, eE as AuthorizationVoid, ae as AuthorizationVoidStatus, iI as AuthorizationVoidStatusWithLiterals, bV as AuthorizedPaymentCaptured, bU as AuthorizedPaymentCreated, bW as AuthorizedPaymentVoided, cq as Balance, cp as BalanceSummary, hV as BaseEventMetadata, df as BatchOfTriggerReindexOrderRequest, hD as BigDecimalWrapper, aR as BillingAdjustment, aS as BillingAdjustmentPriceSummary, eb as BulkActionMetadata, fN as BulkArchiveOrdersByFilterRequest, fO as BulkArchiveOrdersByFilterResponse, fL as BulkArchiveOrdersRequest, fM as BulkArchiveOrdersResponse, hZ as BulkDeleteImportedOrdersOptions, cQ as BulkDeleteImportedOrdersRequest, cR as BulkDeleteImportedOrdersResponse, gR as BulkMarkAsFulfilledByFilterRequest, gS as BulkMarkAsFulfilledByFilterResponse, gP as BulkMarkAsFulfilledRequest, gQ as BulkMarkAsFulfilledResponse, gX as BulkMarkAsUnfulfilledByFilterRequest, gY as BulkMarkAsUnfulfilledByFilterResponse, gV as BulkMarkAsUnfulfilledRequest, gW as BulkMarkAsUnfulfilledResponse, e6 as BulkMarkOrdersAsPaidRequest, e7 as BulkMarkOrdersAsPaidResponse, e8 as BulkOrderResult, dn as BulkSendBuyerPickupConfirmationEmailsRequest, dp as BulkSendBuyerPickupConfirmationEmailsResponse, ds as BulkSendBuyerShippingConfirmationEmailsRequest, dt as BulkSendBuyerShippingConfirmationEmailsResponse, gZ as BulkSetBusinessLocationRequest, g_ as BulkSetBusinessLocationResponse, g$ as BulkSetBusinessLocationResult, fT as BulkUnArchiveOrdersByFilterRequest, fU as BulkUnArchiveOrdersByFilterResponse, fR as BulkUnArchiveOrdersRequest, fS as BulkUnArchiveOrdersResponse, he as BulkUpdateOrderTagsRequest, hf as BulkUpdateOrderTagsResult, fm as BulkUpdateOrdersRequest, a$ as BuyerInfo, b0 as BuyerInfoIdOneOf, fW as BuyerInfoUpdate, eS as CalculateRefundItemRequest, eU as CalculateRefundItemResponse, eR as CalculateRefundRequest, eT as CalculateRefundResponse, hN as CalculatedTax, hM as CalculatedTaxes, hl as Cancel, gI as CancelOrderRequest, eW as CaptureAuthorizedPaymentsRequest, ax as CatalogReference, cn as ChannelInfo, _ as ChannelType, is as ChannelTypeWithLiterals, h$ as ChargeMembershipsOptions, ej as ChargeMembershipsRequest, en as ChargeMembershipsResponse, eX as ChargeSavedPaymentMethodRequest, eY as ChargeSavedPaymentMethodResponse, a1 as ChargeType, iv as ChargeTypeWithLiterals, eG as Chargeback, cj as ChargebackCreated, ck as ChargebackReversed, ah as ChargebackStatus, iL as ChargebackStatusWithLiterals, eh as ChargedBy, aD as Color, fn as CommitDeltasRequest, fD as CommitDeltasResponse, fF as CommittedDiffs, fG as CommittedDiffsShippingUpdateInfoOneOf, hw as CommonAddress, hx as CommonAddressStreetOneOf, j2 as CommonSearchWithEntityContext, hv as Company, hk as Complete, bm as Coupon, fg as CreateOrderRequest, fj as CreateOrderResponse, eg as CreatePaymentGatewayOrderRequest, ei as CreatePaymentGatewayOrderResponse, cl as CreatedBy, cm as CreatedByStringOneOf, c8 as CreditCardDetails, eA as CreditCardPaymentMethodDetails, b1 as CurrencyConversionDetails, f6 as CursorPaging, ff as CursorPagingMetadata, fd as CursorSearch, fe as CursorSearchPagingMethodOneOf, f9 as Cursors, bw as CustomActivity, cz as CustomAllowedActions, co as CustomField, ar as CustomFieldGroup, iV as CustomFieldGroupWithLiterals, hS as CustomFieldValue, hq as Customer, hc as DecrementData, hb as DecrementItemsQuantityRequest, hd as DecrementItemsQuantityResponse, d$ as DelayedCaptureSettings, i5 as DeleteActivityIdentifiers, gB as DeleteActivityRequest, gC as DeleteActivityResponse, d6 as DeleteByFilterOperation, d5 as DeleteByIdsOperation, ba as DeliveryLogistics, bb as DeliveryLogisticsAddressOneOf, be as DeliveryTimeSlot, am as DeltaPaymentOptionType, iQ as DeltaPaymentOptionTypeWithLiterals, hU as Deposit, at as DepositType, iX as DepositTypeWithLiterals, ay as DescriptionLine, aA as DescriptionLineDescriptionLineValueOneOf, aB as DescriptionLineName, D as DescriptionLineType, i7 as DescriptionLineTypeWithLiterals, az as DescriptionLineValueOneOf, eZ as DiffmatokyPayload, aL as DigitalFile, hK as Discount, hL as DiscountOneDiscountTypeOneOf, Q as DiscountReason, im as DiscountReasonWithLiterals, bp as DiscountRule, bq as DiscountRuleName, N as DiscountType, il as DiscountTypeWithLiterals, cS as DomainEvent, cT as DomainEventBodyOneOf, gf as DownloadLinkSent, bC as DraftOrderChangesApplied, fB as DraftOrderCommitSettings, fo as DraftOrderDiffs, fr as DraftOrderDiffsBillingUpdateInfoOneOf, fq as DraftOrderDiffsBuyerUpdateInfoOneOf, fs as DraftOrderDiffsRecipientUpdateInfoOneOf, fp as DraftOrderDiffsShippingUpdateInfoOneOf, e0 as Duration, a6 as DurationUnit, iA as DurationUnitWithLiterals, hr as Email, go as EmailEdited, de as Empty, cU as EntityCreatedEvent, cX as EntityDeletedEvent, cW as EntityUpdatedEvent, e_ as ErrorInformation, hW as EventMetadata, aX as ExtendedFields, cg as ExternalReceipt, eK as ExternalReceiptInfo, aE as FocalPoint, cC as FormIdentifier, cB as FormInfo, aQ as FreeTrialPeriod, gm as FulfillerEmailSent, F as FulfillmentStatus, gO as FulfillmentStatusUpdated, ig as FulfillmentStatusWithLiterals, cs as FulfillmentStatusesAggregate, b7 as FullAddressContactDetails, e$ as GetOrderRequest, f0 as GetOrderResponse, e1 as GetPaymentCollectabilityStatusRequest, ec as GetRefundabilityStatusRequest, ed as GetRefundabilityStatusResponse, h7 as GetShipmentsRequest, h8 as GetShipmentsResponse, eH as GiftCardPaymentDetails, b$ as GiftCardPaymentRefund, ho as IdAndVersion, c_ as IdentificationData, c$ as IdentificationDataIdOneOf, cM as ImportOrderRequest, cN as ImportOrderResponse, cL as ImportedOrderDeleted, g8 as InternalActivity, g9 as InternalActivityContentOneOf, d3 as InternalDocument, d7 as InternalDocumentUpdateByFilterOperation, d4 as InternalDocumentUpdateOperation, f1 as InternalQueryOrdersRequest, f7 as InternalQueryOrdersResponse, d8 as InternalUpdateExistingOperation, an as InventoryAction, iR as InventoryActionWithLiterals, fC as InventoryUpdateDetails, gk as InvoiceAdded, hA as InvoiceDates, hR as InvoiceDynamicPriceTotals, hp as InvoiceFields, gl as InvoiceSent, hn as InvoiceSentEvent, au as InvoiceStatus, iY as InvoiceStatusWithLiterals, hP as InvoicesPayment, fw as ItemChangedDetails, bs as ItemCombination, bt as ItemCombinationLineItem, e9 as ItemMetadata, a_ as ItemModifier, aI as ItemTaxFullDetails, aG as ItemType, aH as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, i8 as ItemTypePresetWithLiterals, hJ as ItemizedFee, J as JurisdictionType, ia as JurisdictionTypeWithLiterals, hC as LineItem, bO as LineItemAmount, bF as LineItemChanges, fH as LineItemDelta, fI as LineItemDeltaDeltaOneOf, bJ as LineItemDescriptionLineChange, br as LineItemDiscount, bB as LineItemExchangeData, hG as LineItemMetaData, bK as LineItemModifiersChange, bH as LineItemPriceChange, bI as LineItemProductNameChange, bG as LineItemQuantityChange, R as LineItemQuantityChangeType, io as LineItemQuantityChangeTypeWithLiterals, dH as LineItemRefund, eQ as LineItemRefundSummary, hE as LineItemTax, aK as LineItemTaxBreakdown, aJ as LineItemTaxInfo, gE as LineItemUpdate, hB as LineItems, hH as Locale, cv as Location, aU as LocationAndQuantity, bP as ManagedAdditionalFee, bM as ManagedDiscount, bL as ManagedLineItem, aa as ManuallyRefundableReason, iE as ManuallyRefundableReasonWithLiterals, gM as MarkAsFulfilledRequest, gN as MarkAsFulfilledResponse, gT as MarkAsUnfulfilledRequest, gU as MarkAsUnfulfilledResponse, e4 as MarkOrderAsPaidRequest, e5 as MarkOrderAsPaidResponse, gG as MarkOrderAsSeenByHumanRequest, gH as MarkOrderAsSeenByHumanResponse, g5 as MaskedOrderLineItem, ek as MembershipChargeItem, el as MembershipName, eI as MembershipPaymentDetails, c0 as MembershipPaymentRefund, ai as MembershipPaymentStatus, iM as MembershipPaymentStatusWithLiterals, bx as MerchantComment, bn as MerchantDiscount, bo as MerchantDiscountMerchantDiscountReasonOneOf, cZ as MessageEnvelope, hQ as MetaData, aY as ModifierGroup, bA as NewExchangeOrderCreated, a9 as NonRefundableReason, iD as NonRefundableReasonWithLiterals, a0 as OrderActionType, iu as OrderActionTypeWithLiterals, Y as OrderActivityTypeEnumActivityType, iq as OrderActivityTypeEnumActivityTypeWithLiterals, al as OrderApprovalStrategy, iP as OrderApprovalStrategyWithLiterals, cF as OrderApproved, ge as OrderCanceled, gJ as OrderCanceledEventOrderCanceled, bD as OrderChange, bE as OrderChangeValueOneOf, fi as OrderCreateNotifications, bz as OrderCreatedFromExchange, fh as OrderCreationSettings, fE as OrderDeltasCommitted, gc as OrderFulfilled, cK as OrderImported, cI as OrderItemsRestocked, av as OrderLineItem, fv as OrderLineItemChangedDetails, gd as OrderNotFulfilled, gb as OrderPaid, gq as OrderPartiallyPaid, gr as OrderPending, ga as OrderPlaced, by as OrderRefunded, gs as OrderRejected, cH as OrderRejectedEventOrderRejected, i1 as OrderSearchSpec, cw as OrderSettings, cx as OrderSettingsAllowedActionsOneOf, cy as OrderSettingsEditableByOneOf, L as OrderStatus, ik as OrderStatusWithLiterals, bj as OrderTaxBreakdown, bi as OrderTaxInfo, eu as OrderTransactions, cG as OrdersExperiments, cA as OwnerApps, ev as Payment, c9 as PaymentCanceled, ca as PaymentCanceledPaymentDetailsOneOf, a7 as PaymentCollectabilityStatus, iB as PaymentCollectabilityStatusWithLiterals, i$ as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, h_ as PaymentCollectionCreatePaymentGatewayOrderOptions, i_ as PaymentCollectionMarkOrderAsPaidApplicationErrors, cb as PaymentDeclined, cc as PaymentDeclinedPaymentDetailsOneOf, x as PaymentOptionType, i9 as PaymentOptionTypeWithLiterals, ew as PaymentPaymentDetailsOneOf, c4 as PaymentPending, c5 as PaymentPendingPaymentDetailsOneOf, ex as PaymentReceiptInfoOneOf, ep as PaymentRefund, c2 as PaymentRefundFailed, c1 as PaymentRefunded, E as PaymentStatus, h2 as PaymentStatusUpdated, ie as PaymentStatusWithLiterals, hO as Payments, hu as Phone, aF as PhysicalProperties, bd as PickupAddress, bc as PickupDetails, K as PickupMethod, ij as PickupMethodWithLiterals, gp as PickupReadyEmailSent, ao as Placement, iS as PlacementWithLiterals, aC as PlainTextValue, cE as PlatformFee, cD as PlatformFeeSummary, f5 as PlatformPaging, f8 as PlatformPagingMetadata, f2 as PlatformQuery, f3 as PlatformQueryPagingMethodOneOf, dZ as PreparePaymentCollectionRequest, dR as PreviewBuyerConfirmationEmailRequest, dS as PreviewBuyerConfirmationEmailResponse, dP as PreviewBuyerPaymentsReceivedEmailRequest, dQ as PreviewBuyerPaymentsReceivedEmailResponse, dT as PreviewBuyerPickupConfirmationEmailRequest, dU as PreviewBuyerPickupConfirmationEmailResponse, dL as PreviewCancelEmailRequest, dM as PreviewCancelEmailResponse, dN as PreviewCancelRefundEmailRequest, dO as PreviewCancelRefundEmailResponse, dC as PreviewEmailByTypeRequest, dD as PreviewEmailByTypeResponse, a4 as PreviewEmailType, iy as PreviewEmailTypeWithLiterals, dE as PreviewRefundEmailRequest, dK as PreviewRefundEmailResponse, dX as PreviewResendDownloadLinksEmailRequest, dY as PreviewResendDownloadLinksEmailResponse, dV as PreviewShippingConfirmationEmailRequest, dW as PreviewShippingConfirmationEmailResponse, aT as PriceDescription, b2 as PriceSummary, aw as ProductName, gv as PublicActivity, gw as PublicActivityContentOneOf, fa as QueryOrderRequest, fb as QueryOrderResponse, hs as QuotesAddress, af as Reason, iJ as ReasonWithLiterals, cd as ReceiptCreated, ce as ReceiptCreatedReceiptInfoOneOf, ch as ReceiptSent, ci as ReceiptSentReceiptInfoOneOf, iZ as RecordManuallyCollectedPaymentApplicationErrors, e2 as RecordManuallyCollectedPaymentRequest, e3 as RecordManuallyCollectedPaymentResponse, d_ as RedirectUrls, eL as Refund, dF as RefundDetails, bX as RefundInitiated, dG as RefundItem, eP as RefundItemsBreakdown, eq as RefundSideEffects, aj as RefundStatus, eN as RefundStatusInfo, iN as RefundStatusWithLiterals, eM as RefundTransaction, ee as Refundability, ef as RefundabilityAdditionalRefundabilityInfoOneOf, a8 as RefundableStatus, iC as RefundableStatusWithLiterals, c3 as RefundedAsStoreCredit, bY as RefundedPayment, bZ as RefundedPaymentKindOneOf, c6 as RegularPayment, ey as RegularPaymentDetails, ez as RegularPaymentDetailsPaymentMethodDetailsOneOf, c7 as RegularPaymentPaymentMethodDetailsOneOf, b_ as RegularPaymentRefund, hm as Reschedule, er as RestockInfo, es as RestockItem, ab as RestockType, iF as RestockTypeWithLiterals, cV as RestoreInfo, bT as SavedPaymentMethod, a5 as ScheduledAction, iz as ScheduledActionWithLiterals, fc as SearchOrdersRequest, dh as SendBuyerConfirmationEmailRequest, di as SendBuyerConfirmationEmailResponse, dj as SendBuyerPaymentsReceivedEmailRequest, dk as SendBuyerPaymentsReceivedEmailResponse, dl as SendBuyerPickupConfirmationEmailRequest, dm as SendBuyerPickupConfirmationEmailResponse, dq as SendBuyerShippingConfirmationEmailRequest, dr as SendBuyerShippingConfirmationEmailResponse, dw as SendCancelRefundEmailRequest, dx as SendCancelRefundEmailResponse, du as SendMerchantOrderReceivedNotificationRequest, dv as SendMerchantOrderReceivedNotificationResponse, dA as SendMerchantOrderReceivedPushRequest, dB as SendMerchantOrderReceivedPushResponse, dy as SendRefundEmailRequest, dz as SendRefundEmailResponse, em as ServiceProperties, hY as SetOrderNumberCounterOptions, cO as SetOrderNumberCounterRequest, cP as SetOrderNumberCounterResponse, gn as ShippingAddressEdited, gj as ShippingConfirmationEmailSent, bS as ShippingInformation, bR as ShippingInformationChange, bf as ShippingPrice, dJ as ShippingRefund, bg as ShippingRegion, ak as SortOrder, iO as SortOrderWithLiterals, f4 as Sorting, hF as Source, aq as SourceType, iU as SourceTypeWithLiterals, hz as StandardDetails, b5 as StreetAddress, hy as Subdivision, ap as SubdivisionType, iT as SubdivisionTypeWithLiterals, aO as SubscriptionDescription, y as SubscriptionFrequency, ib as SubscriptionFrequencyWithLiterals, aM as SubscriptionInfo, aP as SubscriptionSettings, aN as SubscriptionTitle, cu as TagList, ct as Tags, hg as Task, hi as TaskAction, hj as TaskActionActionOneOf, hh as TaskKey, bh as TaxSummary, aV as TaxableAddress, aW as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, id as TaxableAddressTypeWithLiterals, hI as TotalPrice, bQ as TotalPriceChange, gi as TrackingLinkAdded, gg as TrackingNumberAdded, gh as TrackingNumberEdited, ac as TransactionStatus, iG as TransactionStatusWithLiterals, aZ as TranslatableString, bN as TranslatedValue, j0 as TriggerRefundApplicationErrors, i0 as TriggerRefundOptions, eo as TriggerRefundRequest, et as TriggerRefundResponse, dg as TriggerReindexOrderRequest, dc as TriggerReindexRequest, dd as TriggerReindexResponse, fP as UnArchiveOrderRequest, fQ as UnArchiveOrderResponse, i4 as UpdateActivityIdentifiers, gz as UpdateActivityRequest, gA as UpdateActivityResponse, g0 as UpdateBillingContactDetailsRequest, g1 as UpdateBillingContactDetailsResponse, fY as UpdateBuyerEmailRequest, fZ as UpdateBuyerEmailResponse, fV as UpdateBuyerInfoRequest, fX as UpdateBuyerInfoResponse, d1 as UpdateInternalDocumentsEvent, d2 as UpdateInternalDocumentsEventOperationOneOf, gD as UpdateLineItemsDescriptionLinesRequest, gF as UpdateLineItemsDescriptionLinesResponse, i3 as UpdateOrderLineItem, i2 as UpdateOrderLineItemIdentifiers, g2 as UpdateOrderLineItemRequest, g3 as UpdateOrderLineItemResponse, g4 as UpdateOrderLineItemsRequest, g6 as UpdateOrderLineItemsResponse, fk as UpdateOrderRequest, fl as UpdateOrderResponse, f_ as UpdateOrderShippingAddressRequest, f$ as UpdateOrderShippingAddressResponse, j1 as UpdateOrderStatusApplicationErrors, gK as UpdateOrderStatusRequest, gL as UpdateOrderStatusResponse, h3 as V1BulkMarkOrdersAsPaidRequest, h4 as V1BulkMarkOrdersAsPaidResponse, h5 as V1CreatePaymentGatewayOrderRequest, h6 as V1CreatePaymentGatewayOrderResponse, ft as V1LineItemDelta, fu as V1LineItemDeltaDeltaOneOf, h0 as V1MarkOrderAsPaidRequest, h1 as V1MarkOrderAsPaidResponse, cJ as V1RestockItem, eF as V1ScheduledAction, b9 as V1ShippingInformation, hT as Value, as as ValueType, iW as ValueTypeWithLiterals, b8 as VatId, H as VatType, ii as VatTypeWithLiterals, da as VersionedDeleteByIdsOperation, db as VersionedDocumentId, d9 as VersionedDocumentUpdateOperation, a3 as VersioningMode, ix as VersioningModeWithLiterals, eV as VoidAuthorizedPaymentsRequest, a2 as WebhookIdentityType, iw as WebhookIdentityTypeWithLiterals, W as WeightUnit, ih as WeightUnitWithLiterals, cf as WixReceipt, eJ as WixReceiptInfo } from './ecom-v1-order-orders.universal-C4PB-9NO.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-DOiNub2z.js';
3
+ export { d0 as AccountInfo, hX as AccountInfoMetadata, cY as ActionEvent, af as ActionType, iJ as ActionTypeWithLiterals, bu as Activity, bv as ActivityContentOneOf, X as ActivityType, ip as ActivityTypeWithLiterals, gy as AddActivitiesRequest, gu as AddActivityRequest, gx as AddActivityResponse, g7 as AddInternalActivityRequest, gt as AddInternalActivityResponse, cr as AdditionalFee, fz as AdditionalFeeDelta, fA as AdditionalFeeDeltaDeltaOneOf, ds as AdditionalFeeRefund, $ as AdditionalFeeSource, it as AdditionalFeeSourceWithLiterals, b4 as Address, ht as AddressDescription, b6 as AddressLocation, b3 as AddressWithContact, z as AdjustmentType, ic as AdjustmentTypeWithLiterals, i6 as AggregateOrdersOptions, h9 as AggregateOrdersRequest, ha as AggregateOrdersResponse, ez as AggregatedRefundSummary, dX as ApplicationError, bk as AppliedDiscount, fx as AppliedDiscountDelta, fy as AppliedDiscountDeltaDeltaOneOf, bl as AppliedDiscountDiscountSourceOneOf, fJ as ArchiveOrderRequest, fK as ArchiveOrderResponse, Z as AttributionSource, ir as AttributionSourceWithLiterals, eo as AuthorizationActionFailureDetails, en as AuthorizationCapture, ac as AuthorizationCaptureStatus, iG as AuthorizationCaptureStatusWithLiterals, em as AuthorizationDetails, ep as AuthorizationVoid, ad as AuthorizationVoidStatus, iH as AuthorizationVoidStatusWithLiterals, bV as AuthorizedPaymentCaptured, bU as AuthorizedPaymentCreated, bW as AuthorizedPaymentVoided, cq as Balance, cp as BalanceSummary, hV as BaseEventMetadata, eX as BatchOfTriggerReindexOrderRequest, hD as BigDecimalWrapper, aR as BillingAdjustment, aS as BillingAdjustmentPriceSummary, dY as BulkActionMetadata, fN as BulkArchiveOrdersByFilterRequest, fO as BulkArchiveOrdersByFilterResponse, fL as BulkArchiveOrdersRequest, fM as BulkArchiveOrdersResponse, hZ as BulkDeleteImportedOrdersOptions, cQ as BulkDeleteImportedOrdersRequest, cR as BulkDeleteImportedOrdersResponse, gR as BulkMarkAsFulfilledByFilterRequest, gS as BulkMarkAsFulfilledByFilterResponse, gP as BulkMarkAsFulfilledRequest, gQ as BulkMarkAsFulfilledResponse, gX as BulkMarkAsUnfulfilledByFilterRequest, gY as BulkMarkAsUnfulfilledByFilterResponse, gV as BulkMarkAsUnfulfilledRequest, gW as BulkMarkAsUnfulfilledResponse, dT as BulkMarkOrdersAsPaidRequest, dU as BulkMarkOrdersAsPaidResponse, dV as BulkOrderResult, d7 as BulkSendBuyerPickupConfirmationEmailsRequest, d8 as BulkSendBuyerPickupConfirmationEmailsResponse, db as BulkSendBuyerShippingConfirmationEmailsRequest, dc as BulkSendBuyerShippingConfirmationEmailsResponse, gZ as BulkSetBusinessLocationRequest, g_ as BulkSetBusinessLocationResponse, g$ as BulkSetBusinessLocationResult, fT as BulkUnArchiveOrdersByFilterRequest, fU as BulkUnArchiveOrdersByFilterResponse, fR as BulkUnArchiveOrdersRequest, fS as BulkUnArchiveOrdersResponse, he as BulkUpdateOrderTagsRequest, hf as BulkUpdateOrderTagsResult, fm as BulkUpdateOrdersRequest, a$ as BuyerInfo, b0 as BuyerInfoIdOneOf, fW as BuyerInfoUpdate, eD as CalculateRefundItemRequest, eF as CalculateRefundItemResponse, eC as CalculateRefundRequest, eE as CalculateRefundResponse, hN as CalculatedTax, hM as CalculatedTaxes, hl as Cancel, gI as CancelOrderRequest, eH as CaptureAuthorizedPaymentsRequest, ax as CatalogReference, cn as ChannelInfo, _ as ChannelType, is as ChannelTypeWithLiterals, h$ as ChargeMembershipsOptions, e4 as ChargeMembershipsRequest, e8 as ChargeMembershipsResponse, eI as ChargeSavedPaymentMethodRequest, eJ as ChargeSavedPaymentMethodResponse, a1 as ChargeType, iv as ChargeTypeWithLiterals, er as Chargeback, cj as ChargebackCreated, ck as ChargebackReversed, ag as ChargebackStatus, iK as ChargebackStatusWithLiterals, e2 as ChargedBy, aD as Color, fn as CommitDeltasRequest, fD as CommitDeltasResponse, fF as CommittedDiffs, fG as CommittedDiffsShippingUpdateInfoOneOf, hw as CommonAddress, hx as CommonAddressStreetOneOf, j2 as CommonSearchWithEntityContext, hv as Company, hk as Complete, bm as Coupon, fg as CreateOrderRequest, fj as CreateOrderResponse, i$ as CreatePaymentGatewayOrderApplicationErrors, h_ as CreatePaymentGatewayOrderOptions, e1 as CreatePaymentGatewayOrderRequest, e3 as CreatePaymentGatewayOrderResponse, cl as CreatedBy, cm as CreatedByStringOneOf, c8 as CreditCardDetails, el as CreditCardPaymentMethodDetails, b1 as CurrencyConversionDetails, f6 as CursorPaging, ff as CursorPagingMetadata, fd as CursorSearch, fe as CursorSearchPagingMethodOneOf, f9 as Cursors, bw as CustomActivity, cz as CustomAllowedActions, co as CustomField, ar as CustomFieldGroup, iV as CustomFieldGroupWithLiterals, hS as CustomFieldValue, hq as Customer, hc as DecrementData, hb as DecrementItemsQuantityRequest, hd as DecrementItemsQuantityResponse, dM as DelayedCaptureSettings, i5 as DeleteActivityIdentifiers, gB as DeleteActivityRequest, gC as DeleteActivityResponse, eP as DeleteByFilterOperation, eO as DeleteByIdsOperation, ba as DeliveryLogistics, bb as DeliveryLogisticsAddressOneOf, be as DeliveryTimeSlot, am as DeltaPaymentOptionType, iQ as DeltaPaymentOptionTypeWithLiterals, hU as Deposit, at as DepositType, iX as DepositTypeWithLiterals, ay as DescriptionLine, aA as DescriptionLineDescriptionLineValueOneOf, aB as DescriptionLineName, D as DescriptionLineType, i7 as DescriptionLineTypeWithLiterals, az as DescriptionLineValueOneOf, eZ as DiffmatokyPayload, aL as DigitalFile, hK as Discount, hL as DiscountOneDiscountTypeOneOf, Q as DiscountReason, im as DiscountReasonWithLiterals, bp as DiscountRule, bq as DiscountRuleName, N as DiscountType, il as DiscountTypeWithLiterals, cS as DomainEvent, cT as DomainEventBodyOneOf, gf as DownloadLinkSent, bC as DraftOrderChangesApplied, fB as DraftOrderCommitSettings, fo as DraftOrderDiffs, fr as DraftOrderDiffsBillingUpdateInfoOneOf, fq as DraftOrderDiffsBuyerUpdateInfoOneOf, fs as DraftOrderDiffsRecipientUpdateInfoOneOf, fp as DraftOrderDiffsShippingUpdateInfoOneOf, dN as Duration, a5 as DurationUnit, iz as DurationUnitWithLiterals, hr as Email, go as EmailEdited, dJ as Empty, cU as EntityCreatedEvent, cX as EntityDeletedEvent, cW as EntityUpdatedEvent, e_ as ErrorInformation, hW as EventMetadata, aX as ExtendedFields, cg as ExternalReceipt, ev as ExternalReceiptInfo, aE as FocalPoint, cC as FormIdentifier, cB as FormInfo, aQ as FreeTrialPeriod, gm as FulfillerEmailSent, F as FulfillmentStatus, gO as FulfillmentStatusUpdated, ig as FulfillmentStatusWithLiterals, cs as FulfillmentStatusesAggregate, b7 as FullAddressContactDetails, e$ as GetOrderRequest, f0 as GetOrderResponse, dO as GetPaymentCollectabilityStatusRequest, dZ as GetRefundabilityStatusRequest, d_ as GetRefundabilityStatusResponse, h7 as GetShipmentsRequest, h8 as GetShipmentsResponse, es as GiftCardPaymentDetails, b$ as GiftCardPaymentRefund, ho as IdAndVersion, c_ as IdentificationData, c$ as IdentificationDataIdOneOf, cM as ImportOrderRequest, cN as ImportOrderResponse, cL as ImportedOrderDeleted, g8 as InternalActivity, g9 as InternalActivityContentOneOf, eM as InternalDocument, eQ as InternalDocumentUpdateByFilterOperation, eN as InternalDocumentUpdateOperation, f1 as InternalQueryOrdersRequest, f7 as InternalQueryOrdersResponse, eR as InternalUpdateExistingOperation, an as InventoryAction, iR as InventoryActionWithLiterals, fC as InventoryUpdateDetails, gk as InvoiceAdded, hA as InvoiceDates, hR as InvoiceDynamicPriceTotals, hp as InvoiceFields, gl as InvoiceSent, hn as InvoiceSentEvent, au as InvoiceStatus, iY as InvoiceStatusWithLiterals, hP as InvoicesPayment, fw as ItemChangedDetails, bs as ItemCombination, bt as ItemCombinationLineItem, dW as ItemMetadata, a_ as ItemModifier, aI as ItemTaxFullDetails, aG as ItemType, aH as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, i8 as ItemTypePresetWithLiterals, hJ as ItemizedFee, J as JurisdictionType, ia as JurisdictionTypeWithLiterals, hC as LineItem, bO as LineItemAmount, bF as LineItemChanges, fH as LineItemDelta, fI as LineItemDeltaDeltaOneOf, bJ as LineItemDescriptionLineChange, br as LineItemDiscount, bB as LineItemExchangeData, hG as LineItemMetaData, bK as LineItemModifiersChange, bH as LineItemPriceChange, bI as LineItemProductNameChange, bG as LineItemQuantityChange, R as LineItemQuantityChangeType, io as LineItemQuantityChangeTypeWithLiterals, dr as LineItemRefund, eB as LineItemRefundSummary, hE as LineItemTax, aK as LineItemTaxBreakdown, aJ as LineItemTaxInfo, gE as LineItemUpdate, hB as LineItems, hH as Locale, cv as Location, aU as LocationAndQuantity, bP as ManagedAdditionalFee, bM as ManagedDiscount, bL as ManagedLineItem, a9 as ManuallyRefundableReason, iD as ManuallyRefundableReasonWithLiterals, gM as MarkAsFulfilledRequest, gN as MarkAsFulfilledResponse, gT as MarkAsUnfulfilledRequest, gU as MarkAsUnfulfilledResponse, i_ as MarkOrderAsPaidApplicationErrors, dR as MarkOrderAsPaidRequest, dS as MarkOrderAsPaidResponse, gG as MarkOrderAsSeenByHumanRequest, gH as MarkOrderAsSeenByHumanResponse, g5 as MaskedOrderLineItem, e5 as MembershipChargeItem, e6 as MembershipName, et as MembershipPaymentDetails, c0 as MembershipPaymentRefund, ah as MembershipPaymentStatus, iL as MembershipPaymentStatusWithLiterals, bx as MerchantComment, bn as MerchantDiscount, bo as MerchantDiscountMerchantDiscountReasonOneOf, cZ as MessageEnvelope, hQ as MetaData, aY as ModifierGroup, bA as NewExchangeOrderCreated, a8 as NonRefundableReason, iC as NonRefundableReasonWithLiterals, a0 as OrderActionType, iu as OrderActionTypeWithLiterals, Y as OrderActivityTypeEnumActivityType, iq as OrderActivityTypeEnumActivityTypeWithLiterals, al as OrderApprovalStrategy, iP as OrderApprovalStrategyWithLiterals, cF as OrderApproved, ge as OrderCanceled, gJ as OrderCanceledEventOrderCanceled, bD as OrderChange, bE as OrderChangeValueOneOf, fi as OrderCreateNotifications, bz as OrderCreatedFromExchange, fh as OrderCreationSettings, fE as OrderDeltasCommitted, gc as OrderFulfilled, cK as OrderImported, cI as OrderItemsRestocked, av as OrderLineItem, fv as OrderLineItemChangedDetails, gd as OrderNotFulfilled, gb as OrderPaid, gq as OrderPartiallyPaid, gr as OrderPending, ga as OrderPlaced, by as OrderRefunded, gs as OrderRejected, cH as OrderRejectedEventOrderRejected, i1 as OrderSearchSpec, cw as OrderSettings, cx as OrderSettingsAllowedActionsOneOf, cy as OrderSettingsEditableByOneOf, L as OrderStatus, ik as OrderStatusWithLiterals, bj as OrderTaxBreakdown, bi as OrderTaxInfo, ef as OrderTransactions, cG as OrdersExperiments, cA as OwnerApps, eg as Payment, c9 as PaymentCanceled, ca as PaymentCanceledPaymentDetailsOneOf, a6 as PaymentCollectabilityStatus, iA as PaymentCollectabilityStatusWithLiterals, cb as PaymentDeclined, cc as PaymentDeclinedPaymentDetailsOneOf, x as PaymentOptionType, i9 as PaymentOptionTypeWithLiterals, eh as PaymentPaymentDetailsOneOf, c4 as PaymentPending, c5 as PaymentPendingPaymentDetailsOneOf, ei as PaymentReceiptInfoOneOf, ea as PaymentRefund, c2 as PaymentRefundFailed, c1 as PaymentRefunded, E as PaymentStatus, h2 as PaymentStatusUpdated, ie as PaymentStatusWithLiterals, hO as Payments, hu as Phone, aF as PhysicalProperties, bd as PickupAddress, bc as PickupDetails, K as PickupMethod, ij as PickupMethodWithLiterals, gp as PickupReadyEmailSent, ao as Placement, iS as PlacementWithLiterals, aC as PlainTextValue, cE as PlatformFee, cD as PlatformFeeSummary, f5 as PlatformPaging, f8 as PlatformPagingMetadata, f2 as PlatformQuery, f3 as PlatformQueryPagingMethodOneOf, dK as PreparePaymentCollectionRequest, dB as PreviewBuyerConfirmationEmailRequest, dC as PreviewBuyerConfirmationEmailResponse, dz as PreviewBuyerPaymentsReceivedEmailRequest, dA as PreviewBuyerPaymentsReceivedEmailResponse, dD as PreviewBuyerPickupConfirmationEmailRequest, dE as PreviewBuyerPickupConfirmationEmailResponse, dv as PreviewCancelEmailRequest, dw as PreviewCancelEmailResponse, dx as PreviewCancelRefundEmailRequest, dy as PreviewCancelRefundEmailResponse, dl as PreviewEmailByTypeRequest, dm as PreviewEmailByTypeResponse, a3 as PreviewEmailType, ix as PreviewEmailTypeWithLiterals, dn as PreviewRefundEmailRequest, du as PreviewRefundEmailResponse, dH as PreviewResendDownloadLinksEmailRequest, dI as PreviewResendDownloadLinksEmailResponse, dF as PreviewShippingConfirmationEmailRequest, dG as PreviewShippingConfirmationEmailResponse, aT as PriceDescription, b2 as PriceSummary, aw as ProductName, gv as PublicActivity, gw as PublicActivityContentOneOf, fa as QueryOrderRequest, fb as QueryOrderResponse, hs as QuotesAddress, ae as Reason, iI as ReasonWithLiterals, cd as ReceiptCreated, ce as ReceiptCreatedReceiptInfoOneOf, ch as ReceiptSent, ci as ReceiptSentReceiptInfoOneOf, iZ as RecordManuallyCollectedPaymentApplicationErrors, dP as RecordManuallyCollectedPaymentRequest, dQ as RecordManuallyCollectedPaymentResponse, dL as RedirectUrls, ew as Refund, dp as RefundDetails, bX as RefundInitiated, dq as RefundItem, eA as RefundItemsBreakdown, eb as RefundSideEffects, ai as RefundStatus, ey as RefundStatusInfo, iM as RefundStatusWithLiterals, ex as RefundTransaction, d$ as Refundability, e0 as RefundabilityAdditionalRefundabilityInfoOneOf, a7 as RefundableStatus, iB as RefundableStatusWithLiterals, c3 as RefundedAsStoreCredit, bY as RefundedPayment, bZ as RefundedPaymentKindOneOf, c6 as RegularPayment, ej as RegularPaymentDetails, ek as RegularPaymentDetailsPaymentMethodDetailsOneOf, c7 as RegularPaymentPaymentMethodDetailsOneOf, b_ as RegularPaymentRefund, hm as Reschedule, ec as RestockInfo, ed as RestockItem, aa as RestockType, iE as RestockTypeWithLiterals, cV as RestoreInfo, bT as SavedPaymentMethod, a4 as ScheduledAction, iy as ScheduledActionWithLiterals, fc as SearchOrdersRequest, d1 as SendBuyerConfirmationEmailRequest, d2 as SendBuyerConfirmationEmailResponse, d3 as SendBuyerPaymentsReceivedEmailRequest, d4 as SendBuyerPaymentsReceivedEmailResponse, d5 as SendBuyerPickupConfirmationEmailRequest, d6 as SendBuyerPickupConfirmationEmailResponse, d9 as SendBuyerShippingConfirmationEmailRequest, da as SendBuyerShippingConfirmationEmailResponse, df as SendCancelRefundEmailRequest, dg as SendCancelRefundEmailResponse, dd as SendMerchantOrderReceivedNotificationRequest, de as SendMerchantOrderReceivedNotificationResponse, dj as SendMerchantOrderReceivedPushRequest, dk as SendMerchantOrderReceivedPushResponse, dh as SendRefundEmailRequest, di as SendRefundEmailResponse, e7 as ServiceProperties, hY as SetOrderNumberCounterOptions, cO as SetOrderNumberCounterRequest, cP as SetOrderNumberCounterResponse, gn as ShippingAddressEdited, gj as ShippingConfirmationEmailSent, bS as ShippingInformation, bR as ShippingInformationChange, bf as ShippingPrice, dt as ShippingRefund, bg as ShippingRegion, ak as SortOrder, iO as SortOrderWithLiterals, f4 as Sorting, hF as Source, aq as SourceType, iU as SourceTypeWithLiterals, hz as StandardDetails, b5 as StreetAddress, hy as Subdivision, ap as SubdivisionType, iT as SubdivisionTypeWithLiterals, aO as SubscriptionDescription, y as SubscriptionFrequency, ib as SubscriptionFrequencyWithLiterals, aM as SubscriptionInfo, aP as SubscriptionSettings, aN as SubscriptionTitle, cu as TagList, ct as Tags, hg as Task, hi as TaskAction, hj as TaskActionActionOneOf, hh as TaskKey, bh as TaxSummary, aV as TaxableAddress, aW as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, id as TaxableAddressTypeWithLiterals, hI as TotalPrice, bQ as TotalPriceChange, gi as TrackingLinkAdded, gg as TrackingNumberAdded, gh as TrackingNumberEdited, ab as TransactionStatus, iF as TransactionStatusWithLiterals, aZ as TranslatableString, bN as TranslatedValue, j0 as TriggerRefundApplicationErrors, i0 as TriggerRefundOptions, e9 as TriggerRefundRequest, ee as TriggerRefundResponse, eY as TriggerReindexOrderRequest, eV as TriggerReindexRequest, eW as TriggerReindexResponse, fP as UnArchiveOrderRequest, fQ as UnArchiveOrderResponse, i4 as UpdateActivityIdentifiers, gz as UpdateActivityRequest, gA as UpdateActivityResponse, g0 as UpdateBillingContactDetailsRequest, g1 as UpdateBillingContactDetailsResponse, fY as UpdateBuyerEmailRequest, fZ as UpdateBuyerEmailResponse, fV as UpdateBuyerInfoRequest, fX as UpdateBuyerInfoResponse, eK as UpdateInternalDocumentsEvent, eL as UpdateInternalDocumentsEventOperationOneOf, gD as UpdateLineItemsDescriptionLinesRequest, gF as UpdateLineItemsDescriptionLinesResponse, i3 as UpdateOrderLineItem, i2 as UpdateOrderLineItemIdentifiers, g2 as UpdateOrderLineItemRequest, g3 as UpdateOrderLineItemResponse, g4 as UpdateOrderLineItemsRequest, g6 as UpdateOrderLineItemsResponse, fk as UpdateOrderRequest, fl as UpdateOrderResponse, f_ as UpdateOrderShippingAddressRequest, f$ as UpdateOrderShippingAddressResponse, j1 as UpdateOrderStatusApplicationErrors, gK as UpdateOrderStatusRequest, gL as UpdateOrderStatusResponse, h3 as V1BulkMarkOrdersAsPaidRequest, h4 as V1BulkMarkOrdersAsPaidResponse, h5 as V1CreatePaymentGatewayOrderRequest, h6 as V1CreatePaymentGatewayOrderResponse, ft as V1LineItemDelta, fu as V1LineItemDeltaDeltaOneOf, h0 as V1MarkOrderAsPaidRequest, h1 as V1MarkOrderAsPaidResponse, cJ as V1RestockItem, eq as V1ScheduledAction, b9 as V1ShippingInformation, hT as Value, as as ValueType, iW as ValueTypeWithLiterals, b8 as VatId, H as VatType, ii as VatTypeWithLiterals, eT as VersionedDeleteByIdsOperation, eU as VersionedDocumentId, eS as VersionedDocumentUpdateOperation, aj as VersioningMode, iN as VersioningModeWithLiterals, eG as VoidAuthorizedPaymentsRequest, a2 as WebhookIdentityType, iw as WebhookIdentityTypeWithLiterals, W as WeightUnit, ih as WeightUnitWithLiterals, cf as WixReceipt, eu as WixReceiptInfo } from './ecom-v1-order-orders.universal-DOiNub2z.js';
4
4
 
5
5
  declare function preparePaymentCollection$1(httpClient: HttpClient): PreparePaymentCollectionSignature;
6
6
  interface PreparePaymentCollectionSignature {