@wix/auto_sdk_ecom_orders 1.0.120 → 1.0.122

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-BP7eX-NQ.d.ts → ecom-v1-order-orders.universal-DQz5sZTn.d.ts} +166 -138
  2. package/build/cjs/index.d.ts +13 -3
  3. package/build/cjs/index.js +175 -45
  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 +166 -45
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +142 -139
  9. package/build/cjs/meta.js +135 -45
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{ecom-v1-order-orders.universal-BP7eX-NQ.d.mts → ecom-v1-order-orders.universal-DQz5sZTn.d.mts} +166 -138
  12. package/build/es/index.d.mts +13 -3
  13. package/build/es/index.mjs +174 -45
  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 +165 -45
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +142 -139
  19. package/build/es/meta.mjs +134 -45
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{ecom-v1-order-orders.universal-aWzdipsT.d.ts → ecom-v1-order-orders.universal-BqtKuGgP.d.ts} +166 -138
  22. package/build/internal/cjs/index.d.ts +13 -3
  23. package/build/internal/cjs/index.js +175 -45
  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 +166 -45
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +142 -139
  29. package/build/internal/cjs/meta.js +135 -45
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{ecom-v1-order-orders.universal-aWzdipsT.d.mts → ecom-v1-order-orders.universal-BqtKuGgP.d.mts} +166 -138
  32. package/build/internal/es/index.d.mts +13 -3
  33. package/build/internal/es/index.mjs +174 -45
  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 +165 -45
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +142 -139
  39. package/build/internal/es/meta.mjs +134 -45
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -2440,6 +2440,142 @@ declare enum ActivityType {
2440
2440
  }
2441
2441
  /** @enumType */
2442
2442
  type ActivityTypeWithLiterals = ActivityType | 'ORDER_REFUNDED' | 'ORDER_PLACED' | 'ORDER_PAID' | 'ORDER_FULFILLED' | 'ORDER_NOT_FULFILLED' | 'ORDER_CANCELED' | 'DOWNLOAD_LINK_SENT' | 'TRACKING_NUMBER_ADDED' | 'TRACKING_NUMBER_EDITED' | 'TRACKING_LINK_ADDED' | 'SHIPPING_CONFIRMATION_EMAIL_SENT' | 'INVOICE_ADDED' | 'INVOICE_REMOVED' | 'INVOICE_SENT' | 'FULFILLER_EMAIL_SENT' | 'SHIPPING_ADDRESS_EDITED' | 'EMAIL_EDITED' | 'PICKUP_READY_EMAIL_SENT' | 'CUSTOM_ACTIVITY' | 'MERCHANT_COMMENT' | 'ORDER_CREATED_FROM_EXCHANGE' | 'NEW_EXCHANGE_ORDER_CREATED' | 'ORDER_PARTIALLY_PAID' | 'DRAFT_ORDER_CHANGES_APPLIED' | 'SAVED_PAYMENT_METHOD' | 'AUTHORIZED_PAYMENT_CREATED' | 'AUTHORIZED_PAYMENT_CAPTURED' | 'AUTHORIZED_PAYMENT_VOIDED' | 'REFUND_INITIATED' | 'PAYMENT_REFUNDED' | 'PAYMENT_REFUND_FAILED' | 'REFUNDED_AS_STORE_CREDIT' | 'PAYMENT_PENDING' | 'PAYMENT_CANCELED' | 'PAYMENT_DECLINED' | 'ORDER_PENDING' | 'ORDER_REJECTED' | 'RECEIPT_CREATED' | 'RECEIPT_SENT' | 'CHARGEBACK_CREATED' | 'CHARGEBACK_REVERSED';
2443
+ declare enum OrderActivityTypeEnumActivityType {
2444
+ /** Default value. This value is unused. */
2445
+ UNKNOWN_ACTIVITY_TYPE = "UNKNOWN_ACTIVITY_TYPE",
2446
+ /** New order was created and placed. */
2447
+ ORDER_PLACED = "ORDER_PLACED",
2448
+ /** Order payment was completed and confirmed. */
2449
+ ORDER_PAID = "ORDER_PAID",
2450
+ /** Order items were marked as fulfilled (shipped or ready for pickup). */
2451
+ ORDER_FULFILLED = "ORDER_FULFILLED",
2452
+ /** Order fulfillment status was changed to not fulfilled. */
2453
+ ORDER_NOT_FULFILLED = "ORDER_NOT_FULFILLED",
2454
+ /** Order was canceled by merchant or customer. */
2455
+ ORDER_CANCELED = "ORDER_CANCELED",
2456
+ /** Download link was sent for digital items in the order. */
2457
+ DOWNLOAD_LINK_SENT = "DOWNLOAD_LINK_SENT",
2458
+ /** Shipping tracking number was added to the order. */
2459
+ TRACKING_NUMBER_ADDED = "TRACKING_NUMBER_ADDED",
2460
+ /** Existing shipping tracking number was modified. */
2461
+ TRACKING_NUMBER_EDITED = "TRACKING_NUMBER_EDITED",
2462
+ /** Tracking link for shipment was added to the order. */
2463
+ TRACKING_LINK_ADDED = "TRACKING_LINK_ADDED",
2464
+ /** Email confirming shipment was sent to the customer. */
2465
+ SHIPPING_CONFIRMATION_EMAIL_SENT = "SHIPPING_CONFIRMATION_EMAIL_SENT",
2466
+ /** Invoice document was added to the order. */
2467
+ INVOICE_ADDED = "INVOICE_ADDED",
2468
+ /** Invoice was removed from the order. */
2469
+ INVOICE_REMOVED = "INVOICE_REMOVED",
2470
+ /** Invoice was sent to the customer via email. */
2471
+ INVOICE_SENT = "INVOICE_SENT",
2472
+ /** Notification email was sent to the order fulfiller. */
2473
+ FULFILLER_EMAIL_SENT = "FULFILLER_EMAIL_SENT",
2474
+ /** Order's shipping address was modified. */
2475
+ SHIPPING_ADDRESS_EDITED = "SHIPPING_ADDRESS_EDITED",
2476
+ /** Order's contact email address was changed. */
2477
+ EMAIL_EDITED = "EMAIL_EDITED",
2478
+ /** Email notification for pickup readiness was sent. */
2479
+ PICKUP_READY_EMAIL_SENT = "PICKUP_READY_EMAIL_SENT",
2480
+ /** Custom activity created by a third-party application. */
2481
+ CUSTOM_ACTIVITY = "CUSTOM_ACTIVITY",
2482
+ /** Comment added to the order by a merchant. */
2483
+ MERCHANT_COMMENT = "MERCHANT_COMMENT",
2484
+ /** Order was created as a result of an exchange. */
2485
+ ORDER_CREATED_FROM_EXCHANGE = "ORDER_CREATED_FROM_EXCHANGE",
2486
+ /** New exchange order was created from this order. */
2487
+ NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
2488
+ /** Partial payment was received for the order. */
2489
+ ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
2490
+ /** Changes were applied to a draft order. */
2491
+ DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
2492
+ /** Payment method was saved for future use. */
2493
+ SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
2494
+ /**
2495
+ * Payment was authorized but not yet captured.
2496
+ * @documentationMaturity preview
2497
+ */
2498
+ AUTHORIZED_PAYMENT_CREATED = "AUTHORIZED_PAYMENT_CREATED",
2499
+ /**
2500
+ * Previously authorized payment was captured.
2501
+ * @documentationMaturity preview
2502
+ */
2503
+ AUTHORIZED_PAYMENT_CAPTURED = "AUTHORIZED_PAYMENT_CAPTURED",
2504
+ /**
2505
+ * Previously authorized payment was voided.
2506
+ * @documentationMaturity preview
2507
+ */
2508
+ AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED",
2509
+ /**
2510
+ * Refund process was initiated.
2511
+ * @documentationMaturity preview
2512
+ */
2513
+ REFUND_INITIATED = "REFUND_INITIATED",
2514
+ /**
2515
+ * Payment was successfully refunded.
2516
+ * @documentationMaturity preview
2517
+ */
2518
+ PAYMENT_REFUNDED = "PAYMENT_REFUNDED",
2519
+ /**
2520
+ * Attempt to refund payment failed.
2521
+ * @documentationMaturity preview
2522
+ */
2523
+ PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED",
2524
+ /**
2525
+ * Refund was issued as store credit.
2526
+ * @documentationMaturity preview
2527
+ */
2528
+ REFUNDED_AS_STORE_CREDIT = "REFUNDED_AS_STORE_CREDIT",
2529
+ /**
2530
+ * Payment is awaiting processing or confirmation.
2531
+ * @documentationMaturity preview
2532
+ */
2533
+ PAYMENT_PENDING = "PAYMENT_PENDING",
2534
+ /**
2535
+ * Payment was canceled before completion.
2536
+ * @documentationMaturity preview
2537
+ */
2538
+ PAYMENT_CANCELED = "PAYMENT_CANCELED",
2539
+ /**
2540
+ * Payment was declined by payment provider.
2541
+ * @documentationMaturity preview
2542
+ */
2543
+ PAYMENT_DECLINED = "PAYMENT_DECLINED",
2544
+ /**
2545
+ * Order is awaiting approval or processing.
2546
+ * @documentationMaturity preview
2547
+ */
2548
+ ORDER_PENDING = "ORDER_PENDING",
2549
+ /**
2550
+ * Order was rejected by merchant.
2551
+ * @documentationMaturity preview
2552
+ */
2553
+ ORDER_REJECTED = "ORDER_REJECTED",
2554
+ /**
2555
+ * Receipt was generated for a payment.
2556
+ * @documentationMaturity preview
2557
+ */
2558
+ RECEIPT_CREATED = "RECEIPT_CREATED",
2559
+ /**
2560
+ * Receipt was sent to the customer.
2561
+ * @documentationMaturity preview
2562
+ */
2563
+ RECEIPT_SENT = "RECEIPT_SENT",
2564
+ /**
2565
+ * Chargeback was created for one of the order's payments.
2566
+ * @documentationMaturity preview
2567
+ */
2568
+ CHARGEBACK_CREATED = "CHARGEBACK_CREATED",
2569
+ /**
2570
+ * Chargeback was resolved in merchant's favor.
2571
+ * @documentationMaturity preview
2572
+ */
2573
+ CHARGEBACK_REVERSED = "CHARGEBACK_REVERSED",
2574
+ /** Order was refunded, either partially or fully. */
2575
+ ORDER_REFUNDED = "ORDER_REFUNDED"
2576
+ }
2577
+ /** @enumType */
2578
+ type OrderActivityTypeEnumActivityTypeWithLiterals = OrderActivityTypeEnumActivityType | 'UNKNOWN_ACTIVITY_TYPE' | 'ORDER_PLACED' | 'ORDER_PAID' | 'ORDER_FULFILLED' | 'ORDER_NOT_FULFILLED' | 'ORDER_CANCELED' | 'DOWNLOAD_LINK_SENT' | 'TRACKING_NUMBER_ADDED' | 'TRACKING_NUMBER_EDITED' | 'TRACKING_LINK_ADDED' | 'SHIPPING_CONFIRMATION_EMAIL_SENT' | 'INVOICE_ADDED' | 'INVOICE_REMOVED' | 'INVOICE_SENT' | 'FULFILLER_EMAIL_SENT' | 'SHIPPING_ADDRESS_EDITED' | 'EMAIL_EDITED' | 'PICKUP_READY_EMAIL_SENT' | 'CUSTOM_ACTIVITY' | 'MERCHANT_COMMENT' | 'ORDER_CREATED_FROM_EXCHANGE' | 'NEW_EXCHANGE_ORDER_CREATED' | 'ORDER_PARTIALLY_PAID' | 'DRAFT_ORDER_CHANGES_APPLIED' | 'SAVED_PAYMENT_METHOD' | 'AUTHORIZED_PAYMENT_CREATED' | 'AUTHORIZED_PAYMENT_CAPTURED' | 'AUTHORIZED_PAYMENT_VOIDED' | 'REFUND_INITIATED' | 'PAYMENT_REFUNDED' | 'PAYMENT_REFUND_FAILED' | 'REFUNDED_AS_STORE_CREDIT' | 'PAYMENT_PENDING' | 'PAYMENT_CANCELED' | 'PAYMENT_DECLINED' | 'ORDER_PENDING' | 'ORDER_REJECTED' | 'RECEIPT_CREATED' | 'RECEIPT_SENT' | 'CHARGEBACK_CREATED' | 'CHARGEBACK_REVERSED' | 'ORDER_REFUNDED';
2443
2579
  declare enum AttributionSource {
2444
2580
  UNSPECIFIED = "UNSPECIFIED",
2445
2581
  FACEBOOK_ADS = "FACEBOOK_ADS"
@@ -4608,142 +4744,6 @@ interface TriggerReindexOrderRequest {
4608
4744
  */
4609
4745
  orderId?: string;
4610
4746
  }
4611
- declare enum OrderActivityTypeEnumActivityType {
4612
- /** Default value. This value is unused. */
4613
- UNKNOWN_ACTIVITY_TYPE = "UNKNOWN_ACTIVITY_TYPE",
4614
- /** New order was created and placed. */
4615
- ORDER_PLACED = "ORDER_PLACED",
4616
- /** Order payment was completed and confirmed. */
4617
- ORDER_PAID = "ORDER_PAID",
4618
- /** Order items were marked as fulfilled (shipped or ready for pickup). */
4619
- ORDER_FULFILLED = "ORDER_FULFILLED",
4620
- /** Order fulfillment status was changed to not fulfilled. */
4621
- ORDER_NOT_FULFILLED = "ORDER_NOT_FULFILLED",
4622
- /** Order was canceled by merchant or customer. */
4623
- ORDER_CANCELED = "ORDER_CANCELED",
4624
- /** Download link was sent for digital items in the order. */
4625
- DOWNLOAD_LINK_SENT = "DOWNLOAD_LINK_SENT",
4626
- /** Shipping tracking number was added to the order. */
4627
- TRACKING_NUMBER_ADDED = "TRACKING_NUMBER_ADDED",
4628
- /** Existing shipping tracking number was modified. */
4629
- TRACKING_NUMBER_EDITED = "TRACKING_NUMBER_EDITED",
4630
- /** Tracking link for shipment was added to the order. */
4631
- TRACKING_LINK_ADDED = "TRACKING_LINK_ADDED",
4632
- /** Email confirming shipment was sent to the customer. */
4633
- SHIPPING_CONFIRMATION_EMAIL_SENT = "SHIPPING_CONFIRMATION_EMAIL_SENT",
4634
- /** Invoice document was added to the order. */
4635
- INVOICE_ADDED = "INVOICE_ADDED",
4636
- /** Invoice was removed from the order. */
4637
- INVOICE_REMOVED = "INVOICE_REMOVED",
4638
- /** Invoice was sent to the customer via email. */
4639
- INVOICE_SENT = "INVOICE_SENT",
4640
- /** Notification email was sent to the order fulfiller. */
4641
- FULFILLER_EMAIL_SENT = "FULFILLER_EMAIL_SENT",
4642
- /** Order's shipping address was modified. */
4643
- SHIPPING_ADDRESS_EDITED = "SHIPPING_ADDRESS_EDITED",
4644
- /** Order's contact email address was changed. */
4645
- EMAIL_EDITED = "EMAIL_EDITED",
4646
- /** Email notification for pickup readiness was sent. */
4647
- PICKUP_READY_EMAIL_SENT = "PICKUP_READY_EMAIL_SENT",
4648
- /** Custom activity created by a third-party application. */
4649
- CUSTOM_ACTIVITY = "CUSTOM_ACTIVITY",
4650
- /** Comment added to the order by a merchant. */
4651
- MERCHANT_COMMENT = "MERCHANT_COMMENT",
4652
- /** Order was created as a result of an exchange. */
4653
- ORDER_CREATED_FROM_EXCHANGE = "ORDER_CREATED_FROM_EXCHANGE",
4654
- /** New exchange order was created from this order. */
4655
- NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
4656
- /** Partial payment was received for the order. */
4657
- ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
4658
- /** Changes were applied to a draft order. */
4659
- DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
4660
- /** Payment method was saved for future use. */
4661
- SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
4662
- /**
4663
- * Payment was authorized but not yet captured.
4664
- * @documentationMaturity preview
4665
- */
4666
- AUTHORIZED_PAYMENT_CREATED = "AUTHORIZED_PAYMENT_CREATED",
4667
- /**
4668
- * Previously authorized payment was captured.
4669
- * @documentationMaturity preview
4670
- */
4671
- AUTHORIZED_PAYMENT_CAPTURED = "AUTHORIZED_PAYMENT_CAPTURED",
4672
- /**
4673
- * Previously authorized payment was voided.
4674
- * @documentationMaturity preview
4675
- */
4676
- AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED",
4677
- /**
4678
- * Refund process was initiated.
4679
- * @documentationMaturity preview
4680
- */
4681
- REFUND_INITIATED = "REFUND_INITIATED",
4682
- /**
4683
- * Payment was successfully refunded.
4684
- * @documentationMaturity preview
4685
- */
4686
- PAYMENT_REFUNDED = "PAYMENT_REFUNDED",
4687
- /**
4688
- * Attempt to refund payment failed.
4689
- * @documentationMaturity preview
4690
- */
4691
- PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED",
4692
- /**
4693
- * Refund was issued as store credit.
4694
- * @documentationMaturity preview
4695
- */
4696
- REFUNDED_AS_STORE_CREDIT = "REFUNDED_AS_STORE_CREDIT",
4697
- /**
4698
- * Payment is awaiting processing or confirmation.
4699
- * @documentationMaturity preview
4700
- */
4701
- PAYMENT_PENDING = "PAYMENT_PENDING",
4702
- /**
4703
- * Payment was canceled before completion.
4704
- * @documentationMaturity preview
4705
- */
4706
- PAYMENT_CANCELED = "PAYMENT_CANCELED",
4707
- /**
4708
- * Payment was declined by payment provider.
4709
- * @documentationMaturity preview
4710
- */
4711
- PAYMENT_DECLINED = "PAYMENT_DECLINED",
4712
- /**
4713
- * Order is awaiting approval or processing.
4714
- * @documentationMaturity preview
4715
- */
4716
- ORDER_PENDING = "ORDER_PENDING",
4717
- /**
4718
- * Order was rejected by merchant.
4719
- * @documentationMaturity preview
4720
- */
4721
- ORDER_REJECTED = "ORDER_REJECTED",
4722
- /**
4723
- * Receipt was generated for a payment.
4724
- * @documentationMaturity preview
4725
- */
4726
- RECEIPT_CREATED = "RECEIPT_CREATED",
4727
- /**
4728
- * Receipt was sent to the customer.
4729
- * @documentationMaturity preview
4730
- */
4731
- RECEIPT_SENT = "RECEIPT_SENT",
4732
- /**
4733
- * Chargeback was created for one of the order's payments.
4734
- * @documentationMaturity preview
4735
- */
4736
- CHARGEBACK_CREATED = "CHARGEBACK_CREATED",
4737
- /**
4738
- * Chargeback was resolved in merchant's favor.
4739
- * @documentationMaturity preview
4740
- */
4741
- CHARGEBACK_REVERSED = "CHARGEBACK_REVERSED",
4742
- /** Order was refunded, either partially or fully. */
4743
- ORDER_REFUNDED = "ORDER_REFUNDED"
4744
- }
4745
- /** @enumType */
4746
- type OrderActivityTypeEnumActivityTypeWithLiterals = OrderActivityTypeEnumActivityType | 'UNKNOWN_ACTIVITY_TYPE' | 'ORDER_PLACED' | 'ORDER_PAID' | 'ORDER_FULFILLED' | 'ORDER_NOT_FULFILLED' | 'ORDER_CANCELED' | 'DOWNLOAD_LINK_SENT' | 'TRACKING_NUMBER_ADDED' | 'TRACKING_NUMBER_EDITED' | 'TRACKING_LINK_ADDED' | 'SHIPPING_CONFIRMATION_EMAIL_SENT' | 'INVOICE_ADDED' | 'INVOICE_REMOVED' | 'INVOICE_SENT' | 'FULFILLER_EMAIL_SENT' | 'SHIPPING_ADDRESS_EDITED' | 'EMAIL_EDITED' | 'PICKUP_READY_EMAIL_SENT' | 'CUSTOM_ACTIVITY' | 'MERCHANT_COMMENT' | 'ORDER_CREATED_FROM_EXCHANGE' | 'NEW_EXCHANGE_ORDER_CREATED' | 'ORDER_PARTIALLY_PAID' | 'DRAFT_ORDER_CHANGES_APPLIED' | 'SAVED_PAYMENT_METHOD' | 'AUTHORIZED_PAYMENT_CREATED' | 'AUTHORIZED_PAYMENT_CAPTURED' | 'AUTHORIZED_PAYMENT_VOIDED' | 'REFUND_INITIATED' | 'PAYMENT_REFUNDED' | 'PAYMENT_REFUND_FAILED' | 'REFUNDED_AS_STORE_CREDIT' | 'PAYMENT_PENDING' | 'PAYMENT_CANCELED' | 'PAYMENT_DECLINED' | 'ORDER_PENDING' | 'ORDER_REJECTED' | 'RECEIPT_CREATED' | 'RECEIPT_SENT' | 'CHARGEBACK_CREATED' | 'CHARGEBACK_REVERSED' | 'ORDER_REFUNDED';
4747
4747
  interface DiffmatokyPayload {
4748
4748
  left?: string;
4749
4749
  right?: string;
@@ -5921,7 +5921,7 @@ interface AddActivitiesRequest {
5921
5921
  * Order ID.
5922
5922
  * @format GUID
5923
5923
  */
5924
- orderId?: string;
5924
+ orderId: string;
5925
5925
  /**
5926
5926
  * Activities to add. Deprecated.
5927
5927
  * @maxSize 300
@@ -8096,6 +8096,34 @@ interface UpdateOrderLineItem {
8096
8096
  * @targetRemovalDate 2024-11-01
8097
8097
  */
8098
8098
  declare function addActivity(_id: string, activity: PublicActivity): Promise<NonNullablePaths<AddActivityResponse, `order.number` | `order.lineItems` | `order.lineItems.${number}._id` | `order.lineItems.${number}.productName.original` | `order.lineItems.${number}.catalogReference.catalogItemId` | `order.lineItems.${number}.catalogReference.appId` | `order.lineItems.${number}.quantity` | `order.lineItems.${number}.totalDiscount.amount` | `order.lineItems.${number}.totalDiscount.formattedAmount` | `order.lineItems.${number}.physicalProperties.shippable` | `order.lineItems.${number}.itemType.preset` | `order.lineItems.${number}.itemType.custom` | `order.lineItems.${number}.paymentOption` | `order.lineItems.${number}.taxDetails.taxRate` | `order.lineItems.${number}.taxInfo.taxIncludedInPrice` | `order.lineItems.${number}.digitalFile.fileId` | `order.lineItems.${number}.subscriptionInfo.cycleNumber` | `order.lineItems.${number}.subscriptionInfo.subscriptionOptionTitle` | `order.lineItems.${number}.subscriptionInfo.subscriptionSettings.frequency` | `order.lineItems.${number}.subscriptionInfo.subscriptionSettings.autoRenewal` | `order.lineItems.${number}.subscriptionInfo.subscriptionSettings.enableCustomerCancellation` | `order.lineItems.${number}.priceDescription.original` | `order.lineItems.${number}.taxableAddress.addressType` | `order.buyerInfo.visitorId` | `order.buyerInfo.memberId` | `order.paymentStatus` | `order.fulfillmentStatus` | `order.weightUnit` | `order.taxIncludedInPrices` | `order.billingInfo.address.streetAddress.number` | `order.billingInfo.address.streetAddress.name` | `order.billingInfo.contactDetails.vatId._id` | `order.billingInfo.contactDetails.vatId.type` | `order.shippingInfo.title` | `order.shippingInfo.logistics.pickupDetails.pickupMethod` | `order.status` | `order.taxInfo.taxBreakdown` | `order.taxInfo.taxBreakdown.${number}.taxName` | `order.taxInfo.taxBreakdown.${number}.taxType` | `order.taxInfo.taxBreakdown.${number}.jurisdiction` | `order.taxInfo.taxBreakdown.${number}.jurisdictionType` | `order.taxInfo.taxBreakdown.${number}.rate` | `order.appliedDiscounts` | `order.appliedDiscounts.${number}.coupon._id` | `order.appliedDiscounts.${number}.coupon.code` | `order.appliedDiscounts.${number}.coupon.name` | `order.appliedDiscounts.${number}.merchantDiscount.discountReason` | `order.appliedDiscounts.${number}.discountRule._id` | `order.appliedDiscounts.${number}.discountRule.name.original` | `order.appliedDiscounts.${number}.discountType` | `order.activities` | `order.activities.${number}.customActivity.appId` | `order.activities.${number}.customActivity.type` | `order.activities.${number}.merchantComment.message` | `order.activities.${number}.orderRefunded.manual` | `order.activities.${number}.orderRefunded.reason` | `order.activities.${number}.draftOrderChangesApplied.draftOrderId` | `order.activities.${number}.savedPaymentMethod.name` | `order.activities.${number}.authorizedPaymentCreated.paymentId` | `order.activities.${number}.authorizedPaymentCaptured.paymentId` | `order.activities.${number}.authorizedPaymentVoided.paymentId` | `order.activities.${number}.refundInitiated.refundId` | `order.activities.${number}.paymentRefunded.refundId` | `order.activities.${number}.paymentRefundFailed.refundId` | `order.activities.${number}.paymentPending.paymentId` | `order.activities.${number}.paymentCanceled.paymentId` | `order.activities.${number}.paymentDeclined.paymentId` | `order.activities.${number}.receiptCreated.wixReceipt.receiptId` | `order.activities.${number}.receiptCreated.paymentId` | `order.activities.${number}.receiptSent.paymentId` | `order.activities.${number}.chargebackCreated.paymentId` | `order.activities.${number}.chargebackCreated.chargebackId` | `order.activities.${number}.chargebackReversed.paymentId` | `order.activities.${number}.chargebackReversed.chargebackId` | `order.activities.${number}.type` | `order.activities.${number}.activityType` | `order.attributionSource` | `order.createdBy.userId` | `order.createdBy.memberId` | `order.createdBy.visitorId` | `order.createdBy.appId` | `order.channelInfo.type` | `order.customFields` | `order.customFields.${number}.title` | `order.balanceSummary.balance.amount` | `order.balanceSummary.balance.formattedAmount` | `order.additionalFees` | `order.additionalFees.${number}.name` | `order.additionalFees.${number}._id` | `order.tags.privateTags.tagIds` | `order.businessLocation._id` | `order.businessLocation.name` | `activityId`, 7>>;
8099
+ /**
8100
+ * Adds merchant comments to an order.
8101
+ * > **Note:** Activities with type CustomActivity not supported
8102
+ * @param orderId - Order ID.
8103
+ * @public
8104
+ * @documentationMaturity preview
8105
+ * @requiredField options.orderActivities.activityType
8106
+ * @requiredField orderId
8107
+ * @permissionId ECOM.MODIFY_ORDERS
8108
+ * @applicableIdentity APP
8109
+ * @fqn com.wix.ecom.orders.v1.Orders.AddActivities
8110
+ */
8111
+ declare function addActivities(orderId: string, options?: NonNullablePaths<AddActivitiesOptions, `orderActivities.${number}.activityType`, 4>): Promise<NonNullablePaths<AddActivitiesResponse, `order.number` | `order.lineItems` | `order.lineItems.${number}._id` | `order.lineItems.${number}.productName.original` | `order.lineItems.${number}.catalogReference.catalogItemId` | `order.lineItems.${number}.catalogReference.appId` | `order.lineItems.${number}.quantity` | `order.lineItems.${number}.totalDiscount.amount` | `order.lineItems.${number}.totalDiscount.formattedAmount` | `order.lineItems.${number}.physicalProperties.shippable` | `order.lineItems.${number}.itemType.preset` | `order.lineItems.${number}.itemType.custom` | `order.lineItems.${number}.paymentOption` | `order.lineItems.${number}.taxDetails.taxRate` | `order.lineItems.${number}.taxInfo.taxIncludedInPrice` | `order.lineItems.${number}.digitalFile.fileId` | `order.lineItems.${number}.subscriptionInfo.cycleNumber` | `order.lineItems.${number}.subscriptionInfo.subscriptionOptionTitle` | `order.lineItems.${number}.subscriptionInfo.subscriptionSettings.frequency` | `order.lineItems.${number}.subscriptionInfo.subscriptionSettings.autoRenewal` | `order.lineItems.${number}.subscriptionInfo.subscriptionSettings.enableCustomerCancellation` | `order.lineItems.${number}.priceDescription.original` | `order.lineItems.${number}.taxableAddress.addressType` | `order.buyerInfo.visitorId` | `order.buyerInfo.memberId` | `order.paymentStatus` | `order.fulfillmentStatus` | `order.weightUnit` | `order.taxIncludedInPrices` | `order.billingInfo.address.streetAddress.number` | `order.billingInfo.address.streetAddress.name` | `order.billingInfo.contactDetails.vatId._id` | `order.billingInfo.contactDetails.vatId.type` | `order.shippingInfo.title` | `order.shippingInfo.logistics.pickupDetails.pickupMethod` | `order.status` | `order.taxInfo.taxBreakdown` | `order.taxInfo.taxBreakdown.${number}.taxName` | `order.taxInfo.taxBreakdown.${number}.taxType` | `order.taxInfo.taxBreakdown.${number}.jurisdiction` | `order.taxInfo.taxBreakdown.${number}.jurisdictionType` | `order.taxInfo.taxBreakdown.${number}.rate` | `order.appliedDiscounts` | `order.appliedDiscounts.${number}.coupon._id` | `order.appliedDiscounts.${number}.coupon.code` | `order.appliedDiscounts.${number}.coupon.name` | `order.appliedDiscounts.${number}.merchantDiscount.discountReason` | `order.appliedDiscounts.${number}.discountRule._id` | `order.appliedDiscounts.${number}.discountRule.name.original` | `order.appliedDiscounts.${number}.discountType` | `order.activities` | `order.activities.${number}.customActivity.appId` | `order.activities.${number}.customActivity.type` | `order.activities.${number}.merchantComment.message` | `order.activities.${number}.orderRefunded.manual` | `order.activities.${number}.orderRefunded.reason` | `order.activities.${number}.draftOrderChangesApplied.draftOrderId` | `order.activities.${number}.savedPaymentMethod.name` | `order.activities.${number}.authorizedPaymentCreated.paymentId` | `order.activities.${number}.authorizedPaymentCaptured.paymentId` | `order.activities.${number}.authorizedPaymentVoided.paymentId` | `order.activities.${number}.refundInitiated.refundId` | `order.activities.${number}.paymentRefunded.refundId` | `order.activities.${number}.paymentRefundFailed.refundId` | `order.activities.${number}.paymentPending.paymentId` | `order.activities.${number}.paymentCanceled.paymentId` | `order.activities.${number}.paymentDeclined.paymentId` | `order.activities.${number}.receiptCreated.wixReceipt.receiptId` | `order.activities.${number}.receiptCreated.paymentId` | `order.activities.${number}.receiptSent.paymentId` | `order.activities.${number}.chargebackCreated.paymentId` | `order.activities.${number}.chargebackCreated.chargebackId` | `order.activities.${number}.chargebackReversed.paymentId` | `order.activities.${number}.chargebackReversed.chargebackId` | `order.activities.${number}.type` | `order.activities.${number}.activityType` | `order.attributionSource` | `order.createdBy.userId` | `order.createdBy.memberId` | `order.createdBy.visitorId` | `order.createdBy.appId` | `order.channelInfo.type` | `order.customFields` | `order.customFields.${number}.title` | `order.balanceSummary.balance.amount` | `order.balanceSummary.balance.formattedAmount` | `order.additionalFees` | `order.additionalFees.${number}.name` | `order.additionalFees.${number}._id` | `order.tags.privateTags.tagIds` | `order.businessLocation._id` | `order.businessLocation.name` | `activityIds`, 7>>;
8112
+ interface AddActivitiesOptions {
8113
+ /**
8114
+ * Activities to add. Deprecated.
8115
+ * @maxSize 300
8116
+ * @deprecated Activities to add. Deprecated.
8117
+ * @replacedBy order_activities
8118
+ * @targetRemovalDate 2026-01-01
8119
+ */
8120
+ activities?: PublicActivity[];
8121
+ /**
8122
+ * Activities to add.
8123
+ * @maxSize 300
8124
+ */
8125
+ orderActivities?: Activity[];
8126
+ }
8099
8127
  /**
8100
8128
  * Updates an order's activity.
8101
8129
  * @param activity - Activity info.
@@ -8248,4 +8276,4 @@ interface BulkUpdateOrderTagsOptions {
8248
8276
  unassignTags?: Tags;
8249
8277
  }
8250
8278
 
8251
- export { type CancelOrderApplicationErrors as $, type BulkUpdateOrdersResponse as A, type BulkDeleteImportedOrdersOptions as B, type CreatePaymentGatewayOrderResponse as C, type CommitDeltasOptions as D, type CommitDeltasResponse as E, type CommitDeltasApplicationErrors as F, type GetPaymentCollectabilityStatusResponse as G, type UpdateOrderLineItemIdentifiers as H, type ImportOrderResponse as I, type UpdateOrderLineItem as J, type UpdateOrderLineItemResponse as K, type PublicActivity as L, type MarkOrderAsPaidResponse as M, type AddActivityResponse as N, type Order as O, type Price as P, type UpdateActivityIdentifiers as Q, type RecordManuallyCollectedPaymentApplicationErrors as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type UpdateActivityResponse as W, type DeleteActivityIdentifiers as X, type DeleteActivityResponse as Y, type CancelOrderOptions as Z, type CancelOrderResponse as _, type SetOrderNumberCounterResponse as a, type ProductName as a$, type OrderStatusWithLiterals as a0, type UpdateOrderStatusResponse as a1, type UpdateOrderStatusApplicationErrors as a2, type AggregateOrdersOptions as a3, type AggregateOrdersResponse as a4, type BulkUpdateOrderTagsOptions as a5, type BulkUpdateOrderTagsResponse as a6, type OrderApprovedEnvelope as a7, type OrderUpdatedEnvelope as a8, type OrderCanceledEnvelope as a9, PaymentCollectabilityStatus as aA, RefundableStatus as aB, NonRefundableReason as aC, ManuallyRefundableReason as aD, RestockType as aE, TransactionStatus as aF, AuthorizationCaptureStatus as aG, AuthorizationVoidStatus as aH, Reason as aI, ActionType as aJ, ChargebackStatus as aK, MembershipPaymentStatus as aL, RefundStatus as aM, VersioningMode as aN, OrderActivityTypeEnumActivityType as aO, SortOrder as aP, OrderApprovalStrategy as aQ, DeltaPaymentOptionType as aR, InventoryAction as aS, Placement as aT, SubdivisionType as aU, SourceType as aV, CustomFieldGroup as aW, ValueType as aX, DepositType as aY, InvoiceStatus as aZ, type OrderLineItem as a_, type OrderCreatedEnvelope as aa, type OrderPaymentStatusUpdatedEnvelope as ab, DescriptionLineType as ac, ItemTypePreset as ad, PaymentOptionType as ae, JurisdictionType as af, SubscriptionFrequency as ag, AdjustmentType as ah, TaxableAddressType as ai, PaymentStatus as aj, FulfillmentStatus as ak, WeightUnit as al, VatType as am, PickupMethod as an, OrderStatus as ao, DiscountType as ap, DiscountReason as aq, LineItemQuantityChangeType as ar, ActivityType as as, AttributionSource as at, ChannelType as au, OrderActionType as av, WebhookIdentityType as aw, PreviewEmailType as ax, ScheduledAction as ay, DurationUnit as az, type BulkDeleteImportedOrdersResponse as b, type OrderRefunded as b$, type CatalogReference as b0, type DescriptionLine as b1, type DescriptionLineValueOneOf as b2, type DescriptionLineDescriptionLineValueOneOf as b3, type DescriptionLineName as b4, type PlainTextValue as b5, type Color as b6, type FocalPoint as b7, type PhysicalProperties as b8, type ItemType as b9, type StreetAddress as bA, type AddressLocation as bB, type FullAddressContactDetails as bC, type VatId as bD, type V1ShippingInformation as bE, type DeliveryLogistics as bF, type DeliveryLogisticsAddressOneOf as bG, type PickupDetails as bH, type PickupAddress as bI, type DeliveryTimeSlot as bJ, type ShippingPrice as bK, type ShippingRegion as bL, type TaxSummary as bM, type OrderTaxInfo as bN, type OrderTaxBreakdown as bO, type AppliedDiscount as bP, type AppliedDiscountDiscountSourceOneOf as bQ, type Coupon as bR, type MerchantDiscount as bS, type MerchantDiscountMerchantDiscountReasonOneOf as bT, type DiscountRule as bU, type DiscountRuleName as bV, type LineItemDiscount as bW, type Activity as bX, type ActivityContentOneOf as bY, type CustomActivity as bZ, type MerchantComment as b_, type ItemTypeItemTypeDataOneOf as ba, type ItemTaxFullDetails as bb, type LineItemTaxInfo as bc, type LineItemTaxBreakdown as bd, type DigitalFile as be, type SubscriptionInfo as bf, type SubscriptionTitle as bg, type SubscriptionDescription as bh, type SubscriptionSettings as bi, type FreeTrialPeriod as bj, type BillingAdjustment as bk, type BillingAdjustmentPriceSummary as bl, type PriceDescription as bm, type LocationAndQuantity as bn, type TaxableAddress as bo, type TaxableAddressTaxableAddressDataOneOf as bp, type ExtendedFields as bq, type ModifierGroup as br, type TranslatableString as bs, type ItemModifier as bt, type BuyerInfo as bu, type BuyerInfoIdOneOf as bv, type CurrencyConversionDetails as bw, type PriceSummary as bx, type AddressWithContact as by, type Address as bz, type PreparePaymentCollectionOptions as c, type CustomAllowedActions as c$, type OrderCreatedFromExchange as c0, type NewExchangeOrderCreated as c1, type LineItemExchangeData as c2, type DraftOrderChangesApplied as c3, type OrderChange as c4, type OrderChangeValueOneOf as c5, type LineItemChanges as c6, type LineItemQuantityChange as c7, type LineItemPriceChange as c8, type LineItemProductNameChange as c9, type RegularPaymentPaymentMethodDetailsOneOf as cA, type CreditCardDetails as cB, type PaymentCanceled as cC, type PaymentCanceledPaymentDetailsOneOf as cD, type PaymentDeclined as cE, type PaymentDeclinedPaymentDetailsOneOf as cF, type ReceiptCreated as cG, type ReceiptCreatedReceiptInfoOneOf as cH, type WixReceipt as cI, type ExternalReceipt as cJ, type ReceiptSent as cK, type ReceiptSentReceiptInfoOneOf as cL, type ChargebackCreated as cM, type ChargebackReversed as cN, type CreatedBy as cO, type CreatedByStringOneOf as cP, type ChannelInfo as cQ, type CustomField as cR, type BalanceSummary as cS, type Balance as cT, type AdditionalFee as cU, type FulfillmentStatusesAggregate as cV, type Tags as cW, type TagList as cX, type Location as cY, type OrderSettings as cZ, type OrderSettingsAllowedActionsOneOf as c_, type LineItemDescriptionLineChange as ca, type LineItemModifiersChange as cb, type ManagedLineItem as cc, type ManagedDiscount as cd, type TranslatedValue as ce, type LineItemAmount as cf, type ManagedAdditionalFee as cg, type TotalPriceChange as ch, type ShippingInformationChange as ci, type ShippingInformation as cj, type SavedPaymentMethod as ck, type AuthorizedPaymentCreated as cl, type AuthorizedPaymentCaptured as cm, type AuthorizedPaymentVoided as cn, type RefundInitiated as co, type RefundedPayment as cp, type RefundedPaymentKindOneOf as cq, type RegularPaymentRefund as cr, type GiftCardPaymentRefund as cs, type MembershipPaymentRefund as ct, type PaymentRefunded as cu, type PaymentRefundFailed as cv, type RefundedAsStoreCredit as cw, type PaymentPending as cx, type PaymentPendingPaymentDetailsOneOf as cy, type RegularPayment as cz, type PreparePaymentCollectionResponse as d, type PreviewResendDownloadLinksEmailResponse as d$, type OrderApproved as d0, type OrdersExperiments as d1, type OrderRejectedEventOrderRejected as d2, type OrderItemsRestocked as d3, type V1RestockItem as d4, type OrderImported as d5, type ImportedOrderDeleted as d6, type ImportOrderRequest as d7, type SetOrderNumberCounterRequest as d8, type BulkDeleteImportedOrdersRequest as d9, type SendCancelRefundEmailResponse as dA, type SendRefundEmailRequest as dB, type SendRefundEmailResponse as dC, type SendMerchantOrderReceivedPushRequest as dD, type SendMerchantOrderReceivedPushResponse as dE, type PreviewEmailByTypeRequest as dF, type PreviewEmailByTypeResponse as dG, type PreviewRefundEmailRequest as dH, type RefundDetails as dI, type RefundItem as dJ, type LineItemRefund as dK, type AdditionalFeeRefund as dL, type ShippingRefund as dM, type PreviewRefundEmailResponse as dN, type PreviewCancelEmailRequest as dO, type PreviewCancelEmailResponse as dP, type PreviewCancelRefundEmailRequest as dQ, type PreviewCancelRefundEmailResponse as dR, type PreviewBuyerPaymentsReceivedEmailRequest as dS, type PreviewBuyerPaymentsReceivedEmailResponse as dT, type PreviewBuyerConfirmationEmailRequest as dU, type PreviewBuyerConfirmationEmailResponse as dV, type PreviewBuyerPickupConfirmationEmailRequest as dW, type PreviewBuyerPickupConfirmationEmailResponse as dX, type PreviewShippingConfirmationEmailRequest as dY, type PreviewShippingConfirmationEmailResponse as dZ, type PreviewResendDownloadLinksEmailRequest as d_, type DomainEvent as da, type DomainEventBodyOneOf as db, type EntityCreatedEvent as dc, type RestoreInfo as dd, type EntityUpdatedEvent as de, type EntityDeletedEvent as df, type ActionEvent as dg, type MessageEnvelope as dh, type IdentificationData as di, type IdentificationDataIdOneOf as dj, type SendBuyerConfirmationEmailRequest as dk, type SendBuyerConfirmationEmailResponse as dl, type SendBuyerPaymentsReceivedEmailRequest as dm, type SendBuyerPaymentsReceivedEmailResponse as dn, type SendBuyerPickupConfirmationEmailRequest as dp, type SendBuyerPickupConfirmationEmailResponse as dq, type BulkSendBuyerPickupConfirmationEmailsRequest as dr, type BulkSendBuyerPickupConfirmationEmailsResponse as ds, type SendBuyerShippingConfirmationEmailRequest as dt, type SendBuyerShippingConfirmationEmailResponse as du, type BulkSendBuyerShippingConfirmationEmailsRequest as dv, type BulkSendBuyerShippingConfirmationEmailsResponse as dw, type SendMerchantOrderReceivedNotificationRequest as dx, type SendMerchantOrderReceivedNotificationResponse as dy, type SendCancelRefundEmailRequest as dz, type PreparePaymentCollectionApplicationErrors as e, type DeleteByIdsOperation as e$, type Empty as e0, type PreparePaymentCollectionRequest as e1, type RedirectUrls as e2, type DelayedCaptureSettings as e3, type Duration as e4, type GetPaymentCollectabilityStatusRequest as e5, type RecordManuallyCollectedPaymentRequest as e6, type RecordManuallyCollectedPaymentResponse as e7, type MarkOrderAsPaidRequest as e8, type BulkMarkOrdersAsPaidRequest as e9, type AuthorizationCapture as eA, type AuthorizationActionFailureDetails as eB, type AuthorizationVoid as eC, type V1ScheduledAction as eD, type Chargeback as eE, type GiftCardPaymentDetails as eF, type MembershipPaymentDetails as eG, type WixReceiptInfo as eH, type ExternalReceiptInfo as eI, type Refund as eJ, type RefundTransaction as eK, type RefundStatusInfo as eL, type AggregatedRefundSummary as eM, type RefundItemsBreakdown as eN, type LineItemRefundSummary as eO, type CalculateRefundRequest as eP, type CalculateRefundItemRequest as eQ, type CalculateRefundResponse as eR, type CalculateRefundItemResponse as eS, type VoidAuthorizedPaymentsRequest as eT, type CaptureAuthorizedPaymentsRequest as eU, type ChargeSavedPaymentMethodRequest as eV, type ChargeSavedPaymentMethodResponse as eW, type UpdateInternalDocumentsEvent as eX, type UpdateInternalDocumentsEventOperationOneOf as eY, type InternalDocument as eZ, type InternalDocumentUpdateOperation as e_, type BulkOrderResult as ea, type ItemMetadata as eb, type ApplicationError as ec, type BulkActionMetadata as ed, type GetRefundabilityStatusRequest as ee, type Refundability as ef, type RefundabilityAdditionalRefundabilityInfoOneOf as eg, type CreatePaymentGatewayOrderRequest as eh, type ChargedBy 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 RefundSideEffects as ep, type RestockInfo as eq, type RestockItem as er, type OrderTransactions as es, type Payment as et, type PaymentPaymentDetailsOneOf as eu, type PaymentReceiptInfoOneOf as ev, type RegularPaymentDetails as ew, type RegularPaymentDetailsPaymentMethodDetailsOneOf as ex, type CreditCardPaymentMethodDetails as ey, type AuthorizationDetails as ez, type PaymentCollectionMarkOrderAsPaidApplicationErrors as f, type UnArchiveOrderRequest as f$, type DeleteByFilterOperation as f0, type InternalDocumentUpdateByFilterOperation as f1, type InternalUpdateExistingOperation as f2, type VersionedDocumentUpdateOperation as f3, type VersionedDeleteByIdsOperation as f4, type VersionedDocumentId as f5, type TriggerReindexRequest as f6, type TriggerReindexResponse as f7, type BatchOfTriggerReindexOrderRequest as f8, type TriggerReindexOrderRequest as f9, type CommitDeltasRequest as fA, type DraftOrderDiffs as fB, type DraftOrderDiffsShippingUpdateInfoOneOf as fC, type DraftOrderDiffsBuyerUpdateInfoOneOf as fD, type DraftOrderDiffsBillingUpdateInfoOneOf as fE, type DraftOrderDiffsRecipientUpdateInfoOneOf as fF, type V1LineItemDelta as fG, type V1LineItemDeltaDeltaOneOf as fH, type OrderLineItemChangedDetails as fI, type ItemChangedDetails as fJ, type AppliedDiscountDelta as fK, type AppliedDiscountDeltaDeltaOneOf as fL, type AdditionalFeeDelta as fM, type AdditionalFeeDeltaDeltaOneOf as fN, type DraftOrderCommitSettings as fO, type InventoryUpdateDetails as fP, type OrderDeltasCommitted as fQ, type CommittedDiffs as fR, type CommittedDiffsShippingUpdateInfoOneOf as fS, type LineItemDelta as fT, type LineItemDeltaDeltaOneOf as fU, type ArchiveOrderRequest as fV, type ArchiveOrderResponse as fW, type BulkArchiveOrdersRequest as fX, type BulkArchiveOrdersResponse as fY, type BulkArchiveOrdersByFilterRequest as fZ, type BulkArchiveOrdersByFilterResponse as f_, type DiffmatokyPayload as fa, type ErrorInformation as fb, type GetOrderRequest as fc, type GetOrderResponse as fd, type InternalQueryOrdersRequest as fe, type PlatformQuery as ff, type PlatformQueryPagingMethodOneOf as fg, type Sorting as fh, type PlatformPaging as fi, type CursorPaging as fj, type InternalQueryOrdersResponse as fk, type PlatformPagingMetadata as fl, type Cursors as fm, type QueryOrderRequest as fn, type QueryOrderResponse as fo, type SearchOrdersRequest as fp, type CursorSearch as fq, type CursorSearchPagingMethodOneOf as fr, type CursorPagingMetadata as fs, type CreateOrderRequest as ft, type OrderCreationSettings as fu, type OrderCreateNotifications as fv, type CreateOrderResponse as fw, type UpdateOrderRequest as fx, type UpdateOrderResponse as fy, type BulkUpdateOrdersRequest as fz, type BulkMarkOrdersAsPaidResponse as g, type MarkAsUnfulfilledResponse as g$, type UnArchiveOrderResponse as g0, type BulkUnArchiveOrdersRequest as g1, type BulkUnArchiveOrdersResponse as g2, type BulkUnArchiveOrdersByFilterRequest as g3, type BulkUnArchiveOrdersByFilterResponse as g4, type UpdateBuyerInfoRequest as g5, type BuyerInfoUpdate as g6, type UpdateBuyerInfoResponse as g7, type UpdateBuyerEmailRequest as g8, type UpdateBuyerEmailResponse as g9, type PickupReadyEmailSent as gA, type OrderPartiallyPaid as gB, type OrderPending as gC, type OrderRejected as gD, type AddInternalActivityResponse as gE, type AddActivityRequest as gF, type PublicActivityContentOneOf as gG, type AddActivitiesRequest as gH, type AddActivitiesResponse as gI, type UpdateActivityRequest as gJ, type DeleteActivityRequest as gK, type UpdateLineItemsDescriptionLinesRequest as gL, type LineItemUpdate as gM, type UpdateLineItemsDescriptionLinesResponse as gN, type MarkOrderAsSeenByHumanRequest as gO, type MarkOrderAsSeenByHumanResponse as gP, type CancelOrderRequest as gQ, type OrderCanceledEventOrderCanceled as gR, type UpdateOrderStatusRequest as gS, type MarkAsFulfilledRequest as gT, type MarkAsFulfilledResponse as gU, type FulfillmentStatusUpdated as gV, type BulkMarkAsFulfilledRequest as gW, type BulkMarkAsFulfilledResponse as gX, type BulkMarkAsFulfilledByFilterRequest as gY, type BulkMarkAsFulfilledByFilterResponse as gZ, type MarkAsUnfulfilledRequest as g_, type UpdateOrderShippingAddressRequest as ga, type UpdateOrderShippingAddressResponse as gb, type UpdateBillingContactDetailsRequest as gc, type UpdateBillingContactDetailsResponse as gd, type UpdateOrderLineItemRequest as ge, type UpdateOrderLineItemsRequest as gf, type MaskedOrderLineItem as gg, type UpdateOrderLineItemsResponse as gh, type AddInternalActivityRequest as gi, type InternalActivity as gj, type InternalActivityContentOneOf as gk, type OrderPlaced as gl, type OrderPaid as gm, type OrderFulfilled as gn, type OrderNotFulfilled as go, type OrderCanceled as gp, type DownloadLinkSent as gq, type TrackingNumberAdded as gr, type TrackingNumberEdited as gs, type TrackingLinkAdded as gt, type ShippingConfirmationEmailSent as gu, type InvoiceAdded as gv, type InvoiceSent as gw, type FulfillerEmailSent as gx, type ShippingAddressEdited as gy, type EmailEdited as gz, type GetRefundabilityStatusResponse as h, type BaseEventMetadata as h$, type BulkMarkAsUnfulfilledRequest as h0, type BulkMarkAsUnfulfilledResponse as h1, type BulkMarkAsUnfulfilledByFilterRequest as h2, type BulkMarkAsUnfulfilledByFilterResponse as h3, type BulkSetBusinessLocationRequest as h4, type BulkSetBusinessLocationResponse as h5, type BulkSetBusinessLocationResult as h6, type V1MarkOrderAsPaidRequest as h7, type V1MarkOrderAsPaidResponse as h8, type PaymentStatusUpdated as h9, type Phone as hA, type Company as hB, type CommonAddress as hC, type CommonAddressStreetOneOf as hD, type Subdivision as hE, type StandardDetails as hF, type InvoiceDates as hG, type LineItems as hH, type LineItem as hI, type BigDecimalWrapper as hJ, type LineItemTax as hK, type Source as hL, type LineItemMetaData as hM, type Locale as hN, type TotalPrice as hO, type ItemizedFee as hP, type Discount as hQ, type DiscountOneDiscountTypeOneOf as hR, type CalculatedTaxes as hS, type CalculatedTax as hT, type Payments as hU, type InvoicesPayment as hV, type MetaData as hW, type InvoiceDynamicPriceTotals as hX, type CustomFieldValue as hY, type Value as hZ, type Deposit as h_, type V1BulkMarkOrdersAsPaidRequest as ha, type V1BulkMarkOrdersAsPaidResponse as hb, type V1CreatePaymentGatewayOrderRequest as hc, type V1CreatePaymentGatewayOrderResponse as hd, type GetShipmentsRequest as he, type GetShipmentsResponse as hf, type AggregateOrdersRequest as hg, type DecrementItemsQuantityRequest as hh, type DecrementData as hi, type DecrementItemsQuantityResponse as hj, type BulkUpdateOrderTagsRequest as hk, type BulkUpdateOrderTagsResult as hl, type Task as hm, type TaskKey as hn, type TaskAction as ho, type TaskActionActionOneOf as hp, type Complete as hq, type Cancel as hr, type Reschedule as hs, type InvoiceSentEvent as ht, type IdAndVersion as hu, type InvoiceFields as hv, type Customer as hw, type Email as hx, type QuotesAddress as hy, type AddressDescription as hz, type PaymentCollectionCreatePaymentGatewayOrderOptions as i, getPaymentCollectabilityStatus as i$, type EventMetadata as i0, type OrderSearchSpec as i1, type DescriptionLineTypeWithLiterals as i2, type ItemTypePresetWithLiterals as i3, type PaymentOptionTypeWithLiterals as i4, type JurisdictionTypeWithLiterals as i5, type SubscriptionFrequencyWithLiterals as i6, type AdjustmentTypeWithLiterals as i7, type TaxableAddressTypeWithLiterals as i8, type PaymentStatusWithLiterals as i9, type ActionTypeWithLiterals as iA, type ChargebackStatusWithLiterals as iB, type MembershipPaymentStatusWithLiterals as iC, type RefundStatusWithLiterals as iD, type VersioningModeWithLiterals as iE, type OrderActivityTypeEnumActivityTypeWithLiterals as iF, type SortOrderWithLiterals as iG, type OrderApprovalStrategyWithLiterals as iH, type DeltaPaymentOptionTypeWithLiterals as iI, type InventoryActionWithLiterals as iJ, type PlacementWithLiterals as iK, type SubdivisionTypeWithLiterals as iL, type SourceTypeWithLiterals as iM, type CustomFieldGroupWithLiterals as iN, type ValueTypeWithLiterals as iO, type DepositTypeWithLiterals as iP, type InvoiceStatusWithLiterals as iQ, type CommonSearchWithEntityContext as iR, onOrderApproved as iS, onOrderUpdated as iT, onOrderCanceled as iU, onOrderCreated as iV, onOrderPaymentStatusUpdated as iW, importOrder as iX, setOrderNumberCounter as iY, bulkDeleteImportedOrders as iZ, preparePaymentCollection as i_, type FulfillmentStatusWithLiterals as ia, type WeightUnitWithLiterals as ib, type VatTypeWithLiterals as ic, type PickupMethodWithLiterals as id, type DiscountTypeWithLiterals as ie, type DiscountReasonWithLiterals as ig, type LineItemQuantityChangeTypeWithLiterals as ih, type ActivityTypeWithLiterals as ii, type AttributionSourceWithLiterals as ij, type ChannelTypeWithLiterals as ik, type OrderActionTypeWithLiterals as il, type WebhookIdentityTypeWithLiterals as im, type PreviewEmailTypeWithLiterals as io, type ScheduledActionWithLiterals as ip, type DurationUnitWithLiterals as iq, type PaymentCollectabilityStatusWithLiterals as ir, type RefundableStatusWithLiterals as is, type NonRefundableReasonWithLiterals as it, type ManuallyRefundableReasonWithLiterals as iu, type RestockTypeWithLiterals as iv, type TransactionStatusWithLiterals as iw, type AuthorizationCaptureStatusWithLiterals as ix, type AuthorizationVoidStatusWithLiterals as iy, type ReasonWithLiterals as iz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as j, recordManuallyCollectedPayment as j0, paymentCollectionMarkOrderAsPaid as j1, paymentCollectionBulkMarkOrdersAsPaid as j2, getRefundabilityStatus as j3, paymentCollectionCreatePaymentGatewayOrder as j4, chargeMemberships as j5, triggerRefund as j6, voidAuthorizedPayments as j7, captureAuthorizedPayments as j8, getOrder as j9, createOrder as ja, updateOrder as jb, bulkUpdateOrders as jc, commitDeltas as jd, updateOrderLineItem as je, addActivity as jf, updateActivity as jg, deleteActivity as jh, cancelOrder as ji, updateOrderStatus as jj, aggregateOrders as jk, bulkUpdateOrderTags as jl, type ChargeMembershipsOptions as k, type PaymentRefund as l, type TriggerRefundResponse as m, type TriggerRefundApplicationErrors as n, type VoidAuthorizedPaymentsApplicationErrors as o, type PaymentCapture as p, type CaptureAuthorizedPaymentsResponse as q, type CaptureAuthorizedPaymentsApplicationErrors as r, type GetOrderApplicationErrors as s, type OrderSearch as t, type SearchOrdersResponse as u, type CreateOrderOptions as v, type CreateOrderApplicationErrors as w, type UpdateOrderApplicationErrors as x, type MaskedOrder as y, type BulkUpdateOrdersOptions as z };
8279
+ export { type CancelOrderOptions as $, type BulkUpdateOrdersResponse as A, type BulkDeleteImportedOrdersOptions as B, type CreatePaymentGatewayOrderResponse as C, type CommitDeltasOptions as D, type CommitDeltasResponse as E, type CommitDeltasApplicationErrors as F, type GetPaymentCollectabilityStatusResponse as G, type UpdateOrderLineItemIdentifiers as H, type ImportOrderResponse as I, type UpdateOrderLineItem as J, type UpdateOrderLineItemResponse as K, type PublicActivity as L, type MarkOrderAsPaidResponse as M, type AddActivityResponse as N, type Order as O, type Price as P, type AddActivitiesOptions as Q, type RecordManuallyCollectedPaymentApplicationErrors as R, type SetOrderNumberCounterOptions as S, type TriggerRefundOptions as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, type AddActivitiesResponse as W, type UpdateActivityIdentifiers as X, type UpdateActivityResponse as Y, type DeleteActivityIdentifiers as Z, type DeleteActivityResponse as _, type SetOrderNumberCounterResponse as a, InvoiceStatus as a$, type CancelOrderResponse as a0, type CancelOrderApplicationErrors as a1, type OrderStatusWithLiterals as a2, type UpdateOrderStatusResponse as a3, type UpdateOrderStatusApplicationErrors as a4, type AggregateOrdersOptions as a5, type AggregateOrdersResponse as a6, type BulkUpdateOrderTagsOptions as a7, type BulkUpdateOrderTagsResponse as a8, type OrderApprovedEnvelope as a9, PreviewEmailType as aA, ScheduledAction as aB, DurationUnit as aC, PaymentCollectabilityStatus as aD, RefundableStatus as aE, NonRefundableReason as aF, ManuallyRefundableReason as aG, RestockType as aH, TransactionStatus as aI, AuthorizationCaptureStatus as aJ, AuthorizationVoidStatus as aK, Reason as aL, ActionType as aM, ChargebackStatus as aN, MembershipPaymentStatus as aO, RefundStatus as aP, VersioningMode as aQ, SortOrder as aR, OrderApprovalStrategy as aS, DeltaPaymentOptionType as aT, InventoryAction as aU, Placement as aV, SubdivisionType as aW, SourceType as aX, CustomFieldGroup as aY, ValueType as aZ, DepositType as a_, type OrderUpdatedEnvelope as aa, type OrderCanceledEnvelope as ab, type OrderCreatedEnvelope as ac, type OrderPaymentStatusUpdatedEnvelope as ad, DescriptionLineType as ae, ItemTypePreset as af, PaymentOptionType as ag, JurisdictionType as ah, SubscriptionFrequency as ai, AdjustmentType as aj, TaxableAddressType as ak, PaymentStatus as al, FulfillmentStatus as am, WeightUnit as an, VatType as ao, PickupMethod as ap, OrderStatus as aq, DiscountType as ar, DiscountReason as as, LineItemQuantityChangeType as at, ActivityType as au, OrderActivityTypeEnumActivityType as av, AttributionSource as aw, ChannelType as ax, OrderActionType as ay, WebhookIdentityType as az, type BulkDeleteImportedOrdersResponse as b, type CustomActivity as b$, type OrderLineItem as b0, type ProductName as b1, type CatalogReference as b2, type DescriptionLine as b3, type DescriptionLineValueOneOf as b4, type DescriptionLineDescriptionLineValueOneOf as b5, type DescriptionLineName as b6, type PlainTextValue as b7, type Color as b8, type FocalPoint as b9, type AddressWithContact as bA, type Address as bB, type StreetAddress as bC, type AddressLocation as bD, type FullAddressContactDetails as bE, type VatId as bF, type V1ShippingInformation as bG, type DeliveryLogistics as bH, type DeliveryLogisticsAddressOneOf as bI, type PickupDetails as bJ, type PickupAddress as bK, type DeliveryTimeSlot as bL, type ShippingPrice as bM, type ShippingRegion as bN, type TaxSummary as bO, type OrderTaxInfo as bP, type OrderTaxBreakdown as bQ, type AppliedDiscount as bR, type AppliedDiscountDiscountSourceOneOf as bS, type Coupon as bT, type MerchantDiscount as bU, type MerchantDiscountMerchantDiscountReasonOneOf as bV, type DiscountRule as bW, type DiscountRuleName as bX, type LineItemDiscount as bY, type Activity as bZ, type ActivityContentOneOf as b_, type PhysicalProperties as ba, type ItemType as bb, type ItemTypeItemTypeDataOneOf as bc, type ItemTaxFullDetails as bd, type LineItemTaxInfo as be, type LineItemTaxBreakdown as bf, type DigitalFile as bg, type SubscriptionInfo as bh, type SubscriptionTitle as bi, type SubscriptionDescription as bj, type SubscriptionSettings as bk, type FreeTrialPeriod as bl, type BillingAdjustment as bm, type BillingAdjustmentPriceSummary as bn, type PriceDescription as bo, type LocationAndQuantity as bp, type TaxableAddress as bq, type TaxableAddressTaxableAddressDataOneOf as br, type ExtendedFields as bs, type ModifierGroup as bt, type TranslatableString as bu, type ItemModifier as bv, type BuyerInfo as bw, type BuyerInfoIdOneOf as bx, type CurrencyConversionDetails as by, type PriceSummary as bz, type PreparePaymentCollectionOptions as c, type OrderSettings as c$, type MerchantComment as c0, type OrderRefunded as c1, type OrderCreatedFromExchange as c2, type NewExchangeOrderCreated as c3, type LineItemExchangeData as c4, type DraftOrderChangesApplied as c5, type OrderChange as c6, type OrderChangeValueOneOf as c7, type LineItemChanges as c8, type LineItemQuantityChange as c9, type PaymentPendingPaymentDetailsOneOf as cA, type RegularPayment as cB, type RegularPaymentPaymentMethodDetailsOneOf as cC, type CreditCardDetails as cD, type PaymentCanceled as cE, type PaymentCanceledPaymentDetailsOneOf as cF, type PaymentDeclined as cG, type PaymentDeclinedPaymentDetailsOneOf as cH, type ReceiptCreated as cI, type ReceiptCreatedReceiptInfoOneOf as cJ, type WixReceipt as cK, type ExternalReceipt as cL, type ReceiptSent as cM, type ReceiptSentReceiptInfoOneOf as cN, type ChargebackCreated as cO, type ChargebackReversed as cP, type CreatedBy as cQ, type CreatedByStringOneOf as cR, type ChannelInfo as cS, type CustomField as cT, type BalanceSummary as cU, type Balance as cV, type AdditionalFee as cW, type FulfillmentStatusesAggregate as cX, type Tags as cY, type TagList as cZ, type Location as c_, type LineItemPriceChange as ca, type LineItemProductNameChange as cb, type LineItemDescriptionLineChange as cc, type LineItemModifiersChange as cd, type ManagedLineItem as ce, type ManagedDiscount as cf, type TranslatedValue as cg, type LineItemAmount as ch, type ManagedAdditionalFee as ci, type TotalPriceChange as cj, type ShippingInformationChange as ck, type ShippingInformation as cl, type SavedPaymentMethod as cm, type AuthorizedPaymentCreated as cn, type AuthorizedPaymentCaptured as co, type AuthorizedPaymentVoided as cp, type RefundInitiated as cq, type RefundedPayment as cr, type RefundedPaymentKindOneOf as cs, type RegularPaymentRefund as ct, type GiftCardPaymentRefund as cu, type MembershipPaymentRefund as cv, type PaymentRefunded as cw, type PaymentRefundFailed as cx, type RefundedAsStoreCredit as cy, type PaymentPending as cz, type PreparePaymentCollectionResponse as d, type PreviewShippingConfirmationEmailResponse as d$, type OrderSettingsAllowedActionsOneOf as d0, type CustomAllowedActions as d1, type OrderApproved as d2, type OrdersExperiments as d3, type OrderRejectedEventOrderRejected as d4, type OrderItemsRestocked as d5, type V1RestockItem as d6, type OrderImported as d7, type ImportedOrderDeleted as d8, type ImportOrderRequest as d9, type SendMerchantOrderReceivedNotificationResponse as dA, type SendCancelRefundEmailRequest as dB, type SendCancelRefundEmailResponse as dC, type SendRefundEmailRequest as dD, type SendRefundEmailResponse as dE, type SendMerchantOrderReceivedPushRequest as dF, type SendMerchantOrderReceivedPushResponse as dG, type PreviewEmailByTypeRequest as dH, type PreviewEmailByTypeResponse as dI, type PreviewRefundEmailRequest as dJ, type RefundDetails as dK, type RefundItem as dL, type LineItemRefund as dM, type AdditionalFeeRefund as dN, type ShippingRefund as dO, type PreviewRefundEmailResponse as dP, type PreviewCancelEmailRequest as dQ, type PreviewCancelEmailResponse as dR, type PreviewCancelRefundEmailRequest as dS, type PreviewCancelRefundEmailResponse as dT, type PreviewBuyerPaymentsReceivedEmailRequest as dU, type PreviewBuyerPaymentsReceivedEmailResponse as dV, type PreviewBuyerConfirmationEmailRequest as dW, type PreviewBuyerConfirmationEmailResponse as dX, type PreviewBuyerPickupConfirmationEmailRequest as dY, type PreviewBuyerPickupConfirmationEmailResponse as dZ, type PreviewShippingConfirmationEmailRequest as d_, type SetOrderNumberCounterRequest as da, type BulkDeleteImportedOrdersRequest as db, type DomainEvent as dc, type DomainEventBodyOneOf as dd, type EntityCreatedEvent as de, type RestoreInfo as df, type EntityUpdatedEvent as dg, type EntityDeletedEvent as dh, type ActionEvent as di, type MessageEnvelope as dj, type IdentificationData as dk, type IdentificationDataIdOneOf as dl, type SendBuyerConfirmationEmailRequest as dm, type SendBuyerConfirmationEmailResponse as dn, type SendBuyerPaymentsReceivedEmailRequest as dp, type SendBuyerPaymentsReceivedEmailResponse as dq, type SendBuyerPickupConfirmationEmailRequest as dr, type SendBuyerPickupConfirmationEmailResponse as ds, type BulkSendBuyerPickupConfirmationEmailsRequest as dt, type BulkSendBuyerPickupConfirmationEmailsResponse as du, type SendBuyerShippingConfirmationEmailRequest as dv, type SendBuyerShippingConfirmationEmailResponse as dw, type BulkSendBuyerShippingConfirmationEmailsRequest as dx, type BulkSendBuyerShippingConfirmationEmailsResponse as dy, type SendMerchantOrderReceivedNotificationRequest as dz, type PreparePaymentCollectionApplicationErrors as e, type InternalDocument as e$, type PreviewResendDownloadLinksEmailRequest as e0, type PreviewResendDownloadLinksEmailResponse as e1, type Empty as e2, type PreparePaymentCollectionRequest as e3, type RedirectUrls as e4, type DelayedCaptureSettings as e5, type Duration as e6, type GetPaymentCollectabilityStatusRequest as e7, type RecordManuallyCollectedPaymentRequest as e8, type RecordManuallyCollectedPaymentResponse 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 UpdateInternalDocumentsEvent as eZ, type UpdateInternalDocumentsEventOperationOneOf as e_, type MarkOrderAsPaidRequest as ea, type BulkMarkOrdersAsPaidRequest as eb, type BulkOrderResult as ec, type ItemMetadata as ed, type ApplicationError as ee, type BulkActionMetadata as ef, type GetRefundabilityStatusRequest as eg, type Refundability as eh, type RefundabilityAdditionalRefundabilityInfoOneOf as ei, type CreatePaymentGatewayOrderRequest as ej, type ChargedBy as ek, type ChargeMembershipsRequest as el, type MembershipChargeItem as em, type MembershipName as en, type ServiceProperties as eo, type ChargeMembershipsResponse as ep, type TriggerRefundRequest as eq, type RefundSideEffects as er, type RestockInfo as es, type RestockItem 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 PaymentCollectionMarkOrderAsPaidApplicationErrors as f, type BulkArchiveOrdersByFilterRequest as f$, type InternalDocumentUpdateOperation as f0, type DeleteByIdsOperation as f1, type DeleteByFilterOperation as f2, type InternalDocumentUpdateByFilterOperation as f3, type InternalUpdateExistingOperation as f4, type VersionedDocumentUpdateOperation as f5, type VersionedDeleteByIdsOperation as f6, type VersionedDocumentId as f7, type TriggerReindexRequest as f8, type TriggerReindexResponse as f9, type UpdateOrderResponse as fA, type BulkUpdateOrdersRequest as fB, type CommitDeltasRequest as fC, type DraftOrderDiffs as fD, type DraftOrderDiffsShippingUpdateInfoOneOf as fE, type DraftOrderDiffsBuyerUpdateInfoOneOf as fF, type DraftOrderDiffsBillingUpdateInfoOneOf as fG, type DraftOrderDiffsRecipientUpdateInfoOneOf as fH, type V1LineItemDelta as fI, type V1LineItemDeltaDeltaOneOf as fJ, type OrderLineItemChangedDetails as fK, type ItemChangedDetails as fL, type AppliedDiscountDelta as fM, type AppliedDiscountDeltaDeltaOneOf as fN, type AdditionalFeeDelta as fO, type AdditionalFeeDeltaDeltaOneOf as fP, type DraftOrderCommitSettings as fQ, type InventoryUpdateDetails as fR, type OrderDeltasCommitted as fS, type CommittedDiffs as fT, type CommittedDiffsShippingUpdateInfoOneOf as fU, type LineItemDelta as fV, type LineItemDeltaDeltaOneOf as fW, type ArchiveOrderRequest as fX, type ArchiveOrderResponse as fY, type BulkArchiveOrdersRequest as fZ, type BulkArchiveOrdersResponse as f_, type BatchOfTriggerReindexOrderRequest as fa, type TriggerReindexOrderRequest as fb, type DiffmatokyPayload as fc, type ErrorInformation as fd, type GetOrderRequest as fe, type GetOrderResponse as ff, type InternalQueryOrdersRequest as fg, type PlatformQuery as fh, type PlatformQueryPagingMethodOneOf as fi, type Sorting as fj, type PlatformPaging as fk, type CursorPaging as fl, type InternalQueryOrdersResponse as fm, type PlatformPagingMetadata as fn, type Cursors as fo, type QueryOrderRequest as fp, type QueryOrderResponse as fq, type SearchOrdersRequest as fr, type CursorSearch as fs, type CursorSearchPagingMethodOneOf as ft, type CursorPagingMetadata as fu, type CreateOrderRequest as fv, type OrderCreationSettings as fw, type OrderCreateNotifications as fx, type CreateOrderResponse as fy, type UpdateOrderRequest as fz, type BulkMarkOrdersAsPaidResponse as g, type MarkAsUnfulfilledRequest as g$, type BulkArchiveOrdersByFilterResponse as g0, type UnArchiveOrderRequest as g1, type UnArchiveOrderResponse as g2, type BulkUnArchiveOrdersRequest as g3, type BulkUnArchiveOrdersResponse as g4, type BulkUnArchiveOrdersByFilterRequest as g5, type BulkUnArchiveOrdersByFilterResponse as g6, type UpdateBuyerInfoRequest as g7, type BuyerInfoUpdate as g8, type UpdateBuyerInfoResponse as g9, type ShippingAddressEdited as gA, type EmailEdited as gB, type PickupReadyEmailSent as gC, type OrderPartiallyPaid as gD, type OrderPending as gE, type OrderRejected as gF, type AddInternalActivityResponse as gG, type AddActivityRequest as gH, type PublicActivityContentOneOf as gI, type AddActivitiesRequest as gJ, type UpdateActivityRequest as gK, type DeleteActivityRequest as gL, type UpdateLineItemsDescriptionLinesRequest as gM, type LineItemUpdate as gN, type UpdateLineItemsDescriptionLinesResponse as gO, type MarkOrderAsSeenByHumanRequest as gP, type MarkOrderAsSeenByHumanResponse as gQ, type CancelOrderRequest as gR, type OrderCanceledEventOrderCanceled as gS, type UpdateOrderStatusRequest as gT, type MarkAsFulfilledRequest as gU, type MarkAsFulfilledResponse as gV, type FulfillmentStatusUpdated as gW, type BulkMarkAsFulfilledRequest as gX, type BulkMarkAsFulfilledResponse as gY, type BulkMarkAsFulfilledByFilterRequest as gZ, type BulkMarkAsFulfilledByFilterResponse as g_, type UpdateBuyerEmailRequest as ga, type UpdateBuyerEmailResponse as gb, type UpdateOrderShippingAddressRequest as gc, type UpdateOrderShippingAddressResponse as gd, type UpdateBillingContactDetailsRequest as ge, type UpdateBillingContactDetailsResponse as gf, type UpdateOrderLineItemRequest as gg, type UpdateOrderLineItemsRequest as gh, type MaskedOrderLineItem as gi, type UpdateOrderLineItemsResponse as gj, type AddInternalActivityRequest as gk, type InternalActivity as gl, type InternalActivityContentOneOf as gm, type OrderPlaced as gn, type OrderPaid as go, type OrderFulfilled as gp, type OrderNotFulfilled as gq, type OrderCanceled as gr, type DownloadLinkSent as gs, type TrackingNumberAdded as gt, type TrackingNumberEdited as gu, type TrackingLinkAdded as gv, type ShippingConfirmationEmailSent as gw, type InvoiceAdded as gx, type InvoiceSent as gy, type FulfillerEmailSent as gz, type GetRefundabilityStatusResponse as h, type Deposit as h$, type MarkAsUnfulfilledResponse as h0, type BulkMarkAsUnfulfilledRequest as h1, type BulkMarkAsUnfulfilledResponse as h2, type BulkMarkAsUnfulfilledByFilterRequest as h3, type BulkMarkAsUnfulfilledByFilterResponse as h4, type BulkSetBusinessLocationRequest as h5, type BulkSetBusinessLocationResponse as h6, type BulkSetBusinessLocationResult as h7, type V1MarkOrderAsPaidRequest as h8, type V1MarkOrderAsPaidResponse as h9, type AddressDescription as hA, type Phone as hB, type Company as hC, type CommonAddress as hD, type CommonAddressStreetOneOf as hE, type Subdivision as hF, type StandardDetails as hG, type InvoiceDates as hH, type LineItems as hI, type LineItem as hJ, type BigDecimalWrapper as hK, type LineItemTax as hL, type Source as hM, type LineItemMetaData as hN, type Locale as hO, type TotalPrice as hP, type ItemizedFee as hQ, type Discount as hR, type DiscountOneDiscountTypeOneOf as hS, type CalculatedTaxes as hT, type CalculatedTax as hU, type Payments as hV, type InvoicesPayment as hW, type MetaData as hX, type InvoiceDynamicPriceTotals as hY, type CustomFieldValue as hZ, type Value as h_, type PaymentStatusUpdated as ha, type V1BulkMarkOrdersAsPaidRequest as hb, type V1BulkMarkOrdersAsPaidResponse as hc, type V1CreatePaymentGatewayOrderRequest as hd, type V1CreatePaymentGatewayOrderResponse as he, type GetShipmentsRequest as hf, type GetShipmentsResponse as hg, type AggregateOrdersRequest as hh, type DecrementItemsQuantityRequest as hi, type DecrementData as hj, type DecrementItemsQuantityResponse as hk, type BulkUpdateOrderTagsRequest as hl, type BulkUpdateOrderTagsResult as hm, type Task as hn, type TaskKey as ho, type TaskAction as hp, type TaskActionActionOneOf as hq, type Complete as hr, type Cancel as hs, type Reschedule as ht, type InvoiceSentEvent as hu, type IdAndVersion as hv, type InvoiceFields as hw, type Customer as hx, type Email as hy, type QuotesAddress as hz, type PaymentCollectionCreatePaymentGatewayOrderOptions as i, preparePaymentCollection as i$, type BaseEventMetadata as i0, type EventMetadata as i1, type OrderSearchSpec as i2, type DescriptionLineTypeWithLiterals as i3, type ItemTypePresetWithLiterals as i4, type PaymentOptionTypeWithLiterals as i5, type JurisdictionTypeWithLiterals as i6, type SubscriptionFrequencyWithLiterals as i7, type AdjustmentTypeWithLiterals as i8, type TaxableAddressTypeWithLiterals as i9, type AuthorizationVoidStatusWithLiterals as iA, type ReasonWithLiterals as iB, type ActionTypeWithLiterals as iC, type ChargebackStatusWithLiterals as iD, type MembershipPaymentStatusWithLiterals as iE, type RefundStatusWithLiterals as iF, type VersioningModeWithLiterals as iG, type SortOrderWithLiterals as iH, type OrderApprovalStrategyWithLiterals as iI, type DeltaPaymentOptionTypeWithLiterals as iJ, type InventoryActionWithLiterals as iK, type PlacementWithLiterals as iL, type SubdivisionTypeWithLiterals as iM, type SourceTypeWithLiterals as iN, type CustomFieldGroupWithLiterals as iO, type ValueTypeWithLiterals as iP, type DepositTypeWithLiterals as iQ, type InvoiceStatusWithLiterals as iR, type CommonSearchWithEntityContext as iS, onOrderApproved as iT, onOrderUpdated as iU, onOrderCanceled as iV, onOrderCreated as iW, onOrderPaymentStatusUpdated as iX, importOrder as iY, setOrderNumberCounter as iZ, bulkDeleteImportedOrders as i_, type PaymentStatusWithLiterals as ia, type FulfillmentStatusWithLiterals as ib, type WeightUnitWithLiterals as ic, type VatTypeWithLiterals as id, type PickupMethodWithLiterals as ie, type DiscountTypeWithLiterals as ig, type DiscountReasonWithLiterals as ih, type LineItemQuantityChangeTypeWithLiterals as ii, type ActivityTypeWithLiterals as ij, type OrderActivityTypeEnumActivityTypeWithLiterals as ik, type AttributionSourceWithLiterals as il, type ChannelTypeWithLiterals as im, type OrderActionTypeWithLiterals as io, type WebhookIdentityTypeWithLiterals as ip, type PreviewEmailTypeWithLiterals as iq, type ScheduledActionWithLiterals as ir, type DurationUnitWithLiterals as is, type PaymentCollectabilityStatusWithLiterals as it, type RefundableStatusWithLiterals as iu, type NonRefundableReasonWithLiterals as iv, type ManuallyRefundableReasonWithLiterals as iw, type RestockTypeWithLiterals as ix, type TransactionStatusWithLiterals as iy, type AuthorizationCaptureStatusWithLiterals as iz, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as j, getPaymentCollectabilityStatus as j0, recordManuallyCollectedPayment as j1, paymentCollectionMarkOrderAsPaid as j2, paymentCollectionBulkMarkOrdersAsPaid as j3, getRefundabilityStatus as j4, paymentCollectionCreatePaymentGatewayOrder as j5, chargeMemberships as j6, triggerRefund as j7, voidAuthorizedPayments as j8, captureAuthorizedPayments as j9, getOrder as ja, createOrder as jb, updateOrder as jc, bulkUpdateOrders as jd, commitDeltas as je, updateOrderLineItem as jf, addActivity as jg, addActivities as jh, updateActivity as ji, deleteActivity as jj, cancelOrder as jk, updateOrderStatus as jl, aggregateOrders as jm, bulkUpdateOrderTags as jn, type ChargeMembershipsOptions as k, type PaymentRefund as l, type TriggerRefundResponse as m, type TriggerRefundApplicationErrors as n, type VoidAuthorizedPaymentsApplicationErrors as o, type PaymentCapture as p, type CaptureAuthorizedPaymentsResponse as q, type CaptureAuthorizedPaymentsApplicationErrors as r, type GetOrderApplicationErrors as s, type OrderSearch as t, type SearchOrdersResponse as u, type CreateOrderOptions as v, type CreateOrderApplicationErrors as w, type UpdateOrderApplicationErrors as x, type MaskedOrder as y, type BulkUpdateOrdersOptions as z };
@@ -1,6 +1,6 @@
1
1
  import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
2
- import { O as Order, I as ImportOrderResponse, S as SetOrderNumberCounterOptions, a as SetOrderNumberCounterResponse, B as BulkDeleteImportedOrdersOptions, b as BulkDeleteImportedOrdersResponse, P as Price, c as PreparePaymentCollectionOptions, d as PreparePaymentCollectionResponse, e as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, R as RecordManuallyCollectedPaymentApplicationErrors, M as MarkOrderAsPaidResponse, f as PaymentCollectionMarkOrderAsPaidApplicationErrors, g as BulkMarkOrdersAsPaidResponse, h as GetRefundabilityStatusResponse, i as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, j as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, k as ChargeMembershipsOptions, l as PaymentRefund, T as TriggerRefundOptions, m as TriggerRefundResponse, n as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, o as VoidAuthorizedPaymentsApplicationErrors, p as PaymentCapture, q as CaptureAuthorizedPaymentsResponse, r as CaptureAuthorizedPaymentsApplicationErrors, s as GetOrderApplicationErrors, t as OrderSearch, u as SearchOrdersResponse, v as CreateOrderOptions, w as CreateOrderApplicationErrors, U as UpdateOrder, x as UpdateOrderApplicationErrors, y as MaskedOrder, z as BulkUpdateOrdersOptions, A as BulkUpdateOrdersResponse, D as CommitDeltasOptions, E as CommitDeltasResponse, F as CommitDeltasApplicationErrors, H as UpdateOrderLineItemIdentifiers, J as UpdateOrderLineItem, K as UpdateOrderLineItemResponse, L as PublicActivity, N as AddActivityResponse, Q as UpdateActivityIdentifiers, W as UpdateActivityResponse, X as DeleteActivityIdentifiers, Y as DeleteActivityResponse, Z as CancelOrderOptions, _ as CancelOrderResponse, $ as CancelOrderApplicationErrors, a0 as OrderStatusWithLiterals, a1 as UpdateOrderStatusResponse, a2 as UpdateOrderStatusApplicationErrors, a3 as AggregateOrdersOptions, a4 as AggregateOrdersResponse, a5 as BulkUpdateOrderTagsOptions, a6 as BulkUpdateOrderTagsResponse, a7 as OrderApprovedEnvelope, a8 as OrderUpdatedEnvelope, a9 as OrderCanceledEnvelope, aa as OrderCreatedEnvelope, ab as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-aWzdipsT.js';
3
- export { dg as ActionEvent, aJ as ActionType, iA as ActionTypeWithLiterals, bX as Activity, bY as ActivityContentOneOf, as as ActivityType, ii as ActivityTypeWithLiterals, gH as AddActivitiesRequest, gI as AddActivitiesResponse, gF as AddActivityRequest, gi as AddInternalActivityRequest, gE as AddInternalActivityResponse, cU as AdditionalFee, fM as AdditionalFeeDelta, fN as AdditionalFeeDeltaDeltaOneOf, dL as AdditionalFeeRefund, bz as Address, hz as AddressDescription, bB as AddressLocation, by as AddressWithContact, ah as AdjustmentType, i7 as AdjustmentTypeWithLiterals, hg as AggregateOrdersRequest, eM as AggregatedRefundSummary, ec as ApplicationError, bP as AppliedDiscount, fK as AppliedDiscountDelta, fL as AppliedDiscountDeltaDeltaOneOf, bQ as AppliedDiscountDiscountSourceOneOf, fV as ArchiveOrderRequest, fW as ArchiveOrderResponse, at as AttributionSource, ij as AttributionSourceWithLiterals, eB as AuthorizationActionFailureDetails, eA as AuthorizationCapture, aG as AuthorizationCaptureStatus, ix as AuthorizationCaptureStatusWithLiterals, ez as AuthorizationDetails, eC as AuthorizationVoid, aH as AuthorizationVoidStatus, iy as AuthorizationVoidStatusWithLiterals, cm as AuthorizedPaymentCaptured, cl as AuthorizedPaymentCreated, cn as AuthorizedPaymentVoided, cT as Balance, cS as BalanceSummary, h$ as BaseEventMetadata, f8 as BatchOfTriggerReindexOrderRequest, hJ as BigDecimalWrapper, bk as BillingAdjustment, bl as BillingAdjustmentPriceSummary, ed as BulkActionMetadata, fZ as BulkArchiveOrdersByFilterRequest, f_ as BulkArchiveOrdersByFilterResponse, fX as BulkArchiveOrdersRequest, fY as BulkArchiveOrdersResponse, d9 as BulkDeleteImportedOrdersRequest, gY as BulkMarkAsFulfilledByFilterRequest, gZ as BulkMarkAsFulfilledByFilterResponse, gW as BulkMarkAsFulfilledRequest, gX as BulkMarkAsFulfilledResponse, h2 as BulkMarkAsUnfulfilledByFilterRequest, h3 as BulkMarkAsUnfulfilledByFilterResponse, h0 as BulkMarkAsUnfulfilledRequest, h1 as BulkMarkAsUnfulfilledResponse, e9 as BulkMarkOrdersAsPaidRequest, ea as BulkOrderResult, dr as BulkSendBuyerPickupConfirmationEmailsRequest, ds as BulkSendBuyerPickupConfirmationEmailsResponse, dv as BulkSendBuyerShippingConfirmationEmailsRequest, dw as BulkSendBuyerShippingConfirmationEmailsResponse, h4 as BulkSetBusinessLocationRequest, h5 as BulkSetBusinessLocationResponse, h6 as BulkSetBusinessLocationResult, g3 as BulkUnArchiveOrdersByFilterRequest, g4 as BulkUnArchiveOrdersByFilterResponse, g1 as BulkUnArchiveOrdersRequest, g2 as BulkUnArchiveOrdersResponse, hk as BulkUpdateOrderTagsRequest, hl as BulkUpdateOrderTagsResult, fz as BulkUpdateOrdersRequest, bu as BuyerInfo, bv as BuyerInfoIdOneOf, g6 as BuyerInfoUpdate, eQ as CalculateRefundItemRequest, eS as CalculateRefundItemResponse, eP as CalculateRefundRequest, eR as CalculateRefundResponse, hT as CalculatedTax, hS as CalculatedTaxes, hr as Cancel, gQ as CancelOrderRequest, eU as CaptureAuthorizedPaymentsRequest, b0 as CatalogReference, cQ as ChannelInfo, au as ChannelType, ik as ChannelTypeWithLiterals, ej as ChargeMembershipsRequest, en as ChargeMembershipsResponse, eV as ChargeSavedPaymentMethodRequest, eW as ChargeSavedPaymentMethodResponse, eE as Chargeback, cM as ChargebackCreated, cN as ChargebackReversed, aK as ChargebackStatus, iB as ChargebackStatusWithLiterals, ei as ChargedBy, b6 as Color, fA as CommitDeltasRequest, fR as CommittedDiffs, fS as CommittedDiffsShippingUpdateInfoOneOf, hC as CommonAddress, hD as CommonAddressStreetOneOf, iR as CommonSearchWithEntityContext, hB as Company, hq as Complete, bR as Coupon, ft as CreateOrderRequest, fw as CreateOrderResponse, eh as CreatePaymentGatewayOrderRequest, cO as CreatedBy, cP as CreatedByStringOneOf, cB as CreditCardDetails, ey as CreditCardPaymentMethodDetails, bw as CurrencyConversionDetails, fj as CursorPaging, fs as CursorPagingMetadata, fq as CursorSearch, fr as CursorSearchPagingMethodOneOf, fm as Cursors, bZ as CustomActivity, c$ as CustomAllowedActions, cR as CustomField, aW as CustomFieldGroup, iN as CustomFieldGroupWithLiterals, hY as CustomFieldValue, hw as Customer, hi as DecrementData, hh as DecrementItemsQuantityRequest, hj as DecrementItemsQuantityResponse, e3 as DelayedCaptureSettings, gK as DeleteActivityRequest, f0 as DeleteByFilterOperation, e$ as DeleteByIdsOperation, bF as DeliveryLogistics, bG as DeliveryLogisticsAddressOneOf, bJ as DeliveryTimeSlot, aR as DeltaPaymentOptionType, iI as DeltaPaymentOptionTypeWithLiterals, h_ as Deposit, aY as DepositType, iP as DepositTypeWithLiterals, b1 as DescriptionLine, b3 as DescriptionLineDescriptionLineValueOneOf, b4 as DescriptionLineName, ac as DescriptionLineType, i2 as DescriptionLineTypeWithLiterals, b2 as DescriptionLineValueOneOf, fa as DiffmatokyPayload, be as DigitalFile, hQ as Discount, hR as DiscountOneDiscountTypeOneOf, aq as DiscountReason, ig as DiscountReasonWithLiterals, bU as DiscountRule, bV as DiscountRuleName, ap as DiscountType, ie as DiscountTypeWithLiterals, da as DomainEvent, db as DomainEventBodyOneOf, gq as DownloadLinkSent, c3 as DraftOrderChangesApplied, fO as DraftOrderCommitSettings, fB as DraftOrderDiffs, fE as DraftOrderDiffsBillingUpdateInfoOneOf, fD as DraftOrderDiffsBuyerUpdateInfoOneOf, fF as DraftOrderDiffsRecipientUpdateInfoOneOf, fC as DraftOrderDiffsShippingUpdateInfoOneOf, e4 as Duration, az as DurationUnit, iq as DurationUnitWithLiterals, hx as Email, gz as EmailEdited, e0 as Empty, dc as EntityCreatedEvent, df as EntityDeletedEvent, de as EntityUpdatedEvent, fb as ErrorInformation, i0 as EventMetadata, bq as ExtendedFields, cJ as ExternalReceipt, eI as ExternalReceiptInfo, b7 as FocalPoint, bj as FreeTrialPeriod, gx as FulfillerEmailSent, ak as FulfillmentStatus, gV as FulfillmentStatusUpdated, ia as FulfillmentStatusWithLiterals, cV as FulfillmentStatusesAggregate, bC as FullAddressContactDetails, fc as GetOrderRequest, fd as GetOrderResponse, e5 as GetPaymentCollectabilityStatusRequest, ee as GetRefundabilityStatusRequest, he as GetShipmentsRequest, hf as GetShipmentsResponse, eF as GiftCardPaymentDetails, cs as GiftCardPaymentRefund, hu as IdAndVersion, di as IdentificationData, dj as IdentificationDataIdOneOf, d7 as ImportOrderRequest, d6 as ImportedOrderDeleted, gj as InternalActivity, gk as InternalActivityContentOneOf, eZ as InternalDocument, f1 as InternalDocumentUpdateByFilterOperation, e_ as InternalDocumentUpdateOperation, fe as InternalQueryOrdersRequest, fk as InternalQueryOrdersResponse, f2 as InternalUpdateExistingOperation, aS as InventoryAction, iJ as InventoryActionWithLiterals, fP as InventoryUpdateDetails, gv as InvoiceAdded, hG as InvoiceDates, hX as InvoiceDynamicPriceTotals, hv as InvoiceFields, gw as InvoiceSent, ht as InvoiceSentEvent, aZ as InvoiceStatus, iQ as InvoiceStatusWithLiterals, hV as InvoicesPayment, fJ as ItemChangedDetails, eb as ItemMetadata, bt as ItemModifier, bb as ItemTaxFullDetails, b9 as ItemType, ba as ItemTypeItemTypeDataOneOf, ad as ItemTypePreset, i3 as ItemTypePresetWithLiterals, hP as ItemizedFee, af as JurisdictionType, i5 as JurisdictionTypeWithLiterals, hI as LineItem, cf as LineItemAmount, c6 as LineItemChanges, fT as LineItemDelta, fU as LineItemDeltaDeltaOneOf, ca as LineItemDescriptionLineChange, bW as LineItemDiscount, c2 as LineItemExchangeData, hM as LineItemMetaData, cb as LineItemModifiersChange, c8 as LineItemPriceChange, c9 as LineItemProductNameChange, c7 as LineItemQuantityChange, ar as LineItemQuantityChangeType, ih as LineItemQuantityChangeTypeWithLiterals, dK as LineItemRefund, eO as LineItemRefundSummary, hK as LineItemTax, bd as LineItemTaxBreakdown, bc as LineItemTaxInfo, gM as LineItemUpdate, hH as LineItems, hN as Locale, cY as Location, bn as LocationAndQuantity, cg as ManagedAdditionalFee, cd as ManagedDiscount, cc as ManagedLineItem, aD as ManuallyRefundableReason, iu as ManuallyRefundableReasonWithLiterals, gT as MarkAsFulfilledRequest, gU as MarkAsFulfilledResponse, g_ as MarkAsUnfulfilledRequest, g$ as MarkAsUnfulfilledResponse, e8 as MarkOrderAsPaidRequest, gO as MarkOrderAsSeenByHumanRequest, gP as MarkOrderAsSeenByHumanResponse, gg as MaskedOrderLineItem, ek as MembershipChargeItem, el as MembershipName, eG as MembershipPaymentDetails, ct as MembershipPaymentRefund, aL as MembershipPaymentStatus, iC as MembershipPaymentStatusWithLiterals, b_ as MerchantComment, bS as MerchantDiscount, bT as MerchantDiscountMerchantDiscountReasonOneOf, dh as MessageEnvelope, hW as MetaData, br as ModifierGroup, c1 as NewExchangeOrderCreated, aC as NonRefundableReason, it as NonRefundableReasonWithLiterals, av as OrderActionType, il as OrderActionTypeWithLiterals, aO as OrderActivityTypeEnumActivityType, iF as OrderActivityTypeEnumActivityTypeWithLiterals, aQ as OrderApprovalStrategy, iH as OrderApprovalStrategyWithLiterals, d0 as OrderApproved, gp as OrderCanceled, gR as OrderCanceledEventOrderCanceled, c4 as OrderChange, c5 as OrderChangeValueOneOf, fv as OrderCreateNotifications, c0 as OrderCreatedFromExchange, fu as OrderCreationSettings, fQ as OrderDeltasCommitted, gn as OrderFulfilled, d5 as OrderImported, d3 as OrderItemsRestocked, a_ as OrderLineItem, fI as OrderLineItemChangedDetails, go as OrderNotFulfilled, gm as OrderPaid, gB as OrderPartiallyPaid, gC as OrderPending, gl as OrderPlaced, b$ as OrderRefunded, gD as OrderRejected, d2 as OrderRejectedEventOrderRejected, i1 as OrderSearchSpec, cZ as OrderSettings, c_ as OrderSettingsAllowedActionsOneOf, ao as OrderStatus, bO as OrderTaxBreakdown, bN as OrderTaxInfo, es as OrderTransactions, d1 as OrdersExperiments, et as Payment, cC as PaymentCanceled, cD as PaymentCanceledPaymentDetailsOneOf, aA as PaymentCollectabilityStatus, ir as PaymentCollectabilityStatusWithLiterals, cE as PaymentDeclined, cF as PaymentDeclinedPaymentDetailsOneOf, ae as PaymentOptionType, i4 as PaymentOptionTypeWithLiterals, eu as PaymentPaymentDetailsOneOf, cx as PaymentPending, cy as PaymentPendingPaymentDetailsOneOf, ev as PaymentReceiptInfoOneOf, cv as PaymentRefundFailed, cu as PaymentRefunded, aj as PaymentStatus, h9 as PaymentStatusUpdated, i9 as PaymentStatusWithLiterals, hU as Payments, hA as Phone, b8 as PhysicalProperties, bI as PickupAddress, bH as PickupDetails, an as PickupMethod, id as PickupMethodWithLiterals, gA as PickupReadyEmailSent, aT as Placement, iK as PlacementWithLiterals, b5 as PlainTextValue, fi as PlatformPaging, fl as PlatformPagingMetadata, ff as PlatformQuery, fg as PlatformQueryPagingMethodOneOf, e1 as PreparePaymentCollectionRequest, dU as PreviewBuyerConfirmationEmailRequest, dV as PreviewBuyerConfirmationEmailResponse, dS as PreviewBuyerPaymentsReceivedEmailRequest, dT as PreviewBuyerPaymentsReceivedEmailResponse, dW as PreviewBuyerPickupConfirmationEmailRequest, dX as PreviewBuyerPickupConfirmationEmailResponse, dO as PreviewCancelEmailRequest, dP as PreviewCancelEmailResponse, dQ as PreviewCancelRefundEmailRequest, dR as PreviewCancelRefundEmailResponse, dF as PreviewEmailByTypeRequest, dG as PreviewEmailByTypeResponse, ax as PreviewEmailType, io as PreviewEmailTypeWithLiterals, dH as PreviewRefundEmailRequest, dN as PreviewRefundEmailResponse, d_ as PreviewResendDownloadLinksEmailRequest, d$ as PreviewResendDownloadLinksEmailResponse, dY as PreviewShippingConfirmationEmailRequest, dZ as PreviewShippingConfirmationEmailResponse, bm as PriceDescription, bx as PriceSummary, a$ as ProductName, gG as PublicActivityContentOneOf, fn as QueryOrderRequest, fo as QueryOrderResponse, hy as QuotesAddress, aI as Reason, iz as ReasonWithLiterals, cG as ReceiptCreated, cH as ReceiptCreatedReceiptInfoOneOf, cK as ReceiptSent, cL as ReceiptSentReceiptInfoOneOf, e6 as RecordManuallyCollectedPaymentRequest, e7 as RecordManuallyCollectedPaymentResponse, e2 as RedirectUrls, eJ as Refund, dI as RefundDetails, co as RefundInitiated, dJ as RefundItem, eN as RefundItemsBreakdown, ep as RefundSideEffects, aM as RefundStatus, eL as RefundStatusInfo, iD as RefundStatusWithLiterals, eK as RefundTransaction, ef as Refundability, eg as RefundabilityAdditionalRefundabilityInfoOneOf, aB as RefundableStatus, is as RefundableStatusWithLiterals, cw as RefundedAsStoreCredit, cp as RefundedPayment, cq as RefundedPaymentKindOneOf, cz as RegularPayment, ew as RegularPaymentDetails, ex as RegularPaymentDetailsPaymentMethodDetailsOneOf, cA as RegularPaymentPaymentMethodDetailsOneOf, cr as RegularPaymentRefund, hs as Reschedule, eq as RestockInfo, er as RestockItem, aE as RestockType, iv as RestockTypeWithLiterals, dd as RestoreInfo, ck as SavedPaymentMethod, ay as ScheduledAction, ip as ScheduledActionWithLiterals, fp as SearchOrdersRequest, dk as SendBuyerConfirmationEmailRequest, dl as SendBuyerConfirmationEmailResponse, dm as SendBuyerPaymentsReceivedEmailRequest, dn as SendBuyerPaymentsReceivedEmailResponse, dp as SendBuyerPickupConfirmationEmailRequest, dq as SendBuyerPickupConfirmationEmailResponse, dt as SendBuyerShippingConfirmationEmailRequest, du as SendBuyerShippingConfirmationEmailResponse, dz as SendCancelRefundEmailRequest, dA as SendCancelRefundEmailResponse, dx as SendMerchantOrderReceivedNotificationRequest, dy as SendMerchantOrderReceivedNotificationResponse, dD as SendMerchantOrderReceivedPushRequest, dE as SendMerchantOrderReceivedPushResponse, dB as SendRefundEmailRequest, dC as SendRefundEmailResponse, em as ServiceProperties, d8 as SetOrderNumberCounterRequest, gy as ShippingAddressEdited, gu as ShippingConfirmationEmailSent, cj as ShippingInformation, ci as ShippingInformationChange, bK as ShippingPrice, dM as ShippingRefund, bL as ShippingRegion, aP as SortOrder, iG as SortOrderWithLiterals, fh as Sorting, hL as Source, aV as SourceType, iM as SourceTypeWithLiterals, hF as StandardDetails, bA as StreetAddress, hE as Subdivision, aU as SubdivisionType, iL as SubdivisionTypeWithLiterals, bh as SubscriptionDescription, ag as SubscriptionFrequency, i6 as SubscriptionFrequencyWithLiterals, bf as SubscriptionInfo, bi as SubscriptionSettings, bg as SubscriptionTitle, cX as TagList, cW as Tags, hm as Task, ho as TaskAction, hp as TaskActionActionOneOf, hn as TaskKey, bM as TaxSummary, bo as TaxableAddress, bp as TaxableAddressTaxableAddressDataOneOf, ai as TaxableAddressType, i8 as TaxableAddressTypeWithLiterals, hO as TotalPrice, ch as TotalPriceChange, gt as TrackingLinkAdded, gr as TrackingNumberAdded, gs as TrackingNumberEdited, aF as TransactionStatus, iw as TransactionStatusWithLiterals, bs as TranslatableString, ce as TranslatedValue, eo as TriggerRefundRequest, f9 as TriggerReindexOrderRequest, f6 as TriggerReindexRequest, f7 as TriggerReindexResponse, f$ as UnArchiveOrderRequest, g0 as UnArchiveOrderResponse, gJ as UpdateActivityRequest, gc as UpdateBillingContactDetailsRequest, gd as UpdateBillingContactDetailsResponse, g8 as UpdateBuyerEmailRequest, g9 as UpdateBuyerEmailResponse, g5 as UpdateBuyerInfoRequest, g7 as UpdateBuyerInfoResponse, eX as UpdateInternalDocumentsEvent, eY as UpdateInternalDocumentsEventOperationOneOf, gL as UpdateLineItemsDescriptionLinesRequest, gN as UpdateLineItemsDescriptionLinesResponse, ge as UpdateOrderLineItemRequest, gf as UpdateOrderLineItemsRequest, gh as UpdateOrderLineItemsResponse, fx as UpdateOrderRequest, fy as UpdateOrderResponse, ga as UpdateOrderShippingAddressRequest, gb as UpdateOrderShippingAddressResponse, gS as UpdateOrderStatusRequest, ha as V1BulkMarkOrdersAsPaidRequest, hb as V1BulkMarkOrdersAsPaidResponse, hc as V1CreatePaymentGatewayOrderRequest, hd as V1CreatePaymentGatewayOrderResponse, fG as V1LineItemDelta, fH as V1LineItemDeltaDeltaOneOf, h7 as V1MarkOrderAsPaidRequest, h8 as V1MarkOrderAsPaidResponse, d4 as V1RestockItem, eD as V1ScheduledAction, bE as V1ShippingInformation, hZ as Value, aX as ValueType, iO as ValueTypeWithLiterals, bD as VatId, am as VatType, ic as VatTypeWithLiterals, f4 as VersionedDeleteByIdsOperation, f5 as VersionedDocumentId, f3 as VersionedDocumentUpdateOperation, aN as VersioningMode, iE as VersioningModeWithLiterals, eT as VoidAuthorizedPaymentsRequest, aw as WebhookIdentityType, im as WebhookIdentityTypeWithLiterals, al as WeightUnit, ib as WeightUnitWithLiterals, cI as WixReceipt, eH as WixReceiptInfo } from './ecom-v1-order-orders.universal-aWzdipsT.js';
2
+ import { O as Order, I as ImportOrderResponse, S as SetOrderNumberCounterOptions, a as SetOrderNumberCounterResponse, B as BulkDeleteImportedOrdersOptions, b as BulkDeleteImportedOrdersResponse, P as Price, c as PreparePaymentCollectionOptions, d as PreparePaymentCollectionResponse, e as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, R as RecordManuallyCollectedPaymentApplicationErrors, M as MarkOrderAsPaidResponse, f as PaymentCollectionMarkOrderAsPaidApplicationErrors, g as BulkMarkOrdersAsPaidResponse, h as GetRefundabilityStatusResponse, i as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, j as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, k as ChargeMembershipsOptions, l as PaymentRefund, T as TriggerRefundOptions, m as TriggerRefundResponse, n as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, o as VoidAuthorizedPaymentsApplicationErrors, p as PaymentCapture, q as CaptureAuthorizedPaymentsResponse, r as CaptureAuthorizedPaymentsApplicationErrors, s as GetOrderApplicationErrors, t as OrderSearch, u as SearchOrdersResponse, v as CreateOrderOptions, w as CreateOrderApplicationErrors, U as UpdateOrder, x as UpdateOrderApplicationErrors, y as MaskedOrder, z as BulkUpdateOrdersOptions, A as BulkUpdateOrdersResponse, D as CommitDeltasOptions, E as CommitDeltasResponse, F as CommitDeltasApplicationErrors, H as UpdateOrderLineItemIdentifiers, J as UpdateOrderLineItem, K as UpdateOrderLineItemResponse, L as PublicActivity, N as AddActivityResponse, Q as AddActivitiesOptions, W as AddActivitiesResponse, X as UpdateActivityIdentifiers, Y as UpdateActivityResponse, Z as DeleteActivityIdentifiers, _ as DeleteActivityResponse, $ as CancelOrderOptions, a0 as CancelOrderResponse, a1 as CancelOrderApplicationErrors, a2 as OrderStatusWithLiterals, a3 as UpdateOrderStatusResponse, a4 as UpdateOrderStatusApplicationErrors, a5 as AggregateOrdersOptions, a6 as AggregateOrdersResponse, a7 as BulkUpdateOrderTagsOptions, a8 as BulkUpdateOrderTagsResponse, a9 as OrderApprovedEnvelope, aa as OrderUpdatedEnvelope, ab as OrderCanceledEnvelope, ac as OrderCreatedEnvelope, ad as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-BqtKuGgP.js';
3
+ export { di as ActionEvent, aM as ActionType, iC as ActionTypeWithLiterals, bZ as Activity, b_ as ActivityContentOneOf, au as ActivityType, ij as ActivityTypeWithLiterals, gJ as AddActivitiesRequest, gH as AddActivityRequest, gk as AddInternalActivityRequest, gG as AddInternalActivityResponse, cW as AdditionalFee, fO as AdditionalFeeDelta, fP as AdditionalFeeDeltaDeltaOneOf, dN as AdditionalFeeRefund, bB as Address, hA as AddressDescription, bD as AddressLocation, bA as AddressWithContact, aj as AdjustmentType, i8 as AdjustmentTypeWithLiterals, hh as AggregateOrdersRequest, eO as AggregatedRefundSummary, ee as ApplicationError, bR as AppliedDiscount, fM as AppliedDiscountDelta, fN as AppliedDiscountDeltaDeltaOneOf, bS as AppliedDiscountDiscountSourceOneOf, fX as ArchiveOrderRequest, fY as ArchiveOrderResponse, aw as AttributionSource, il as AttributionSourceWithLiterals, eD as AuthorizationActionFailureDetails, eC as AuthorizationCapture, aJ as AuthorizationCaptureStatus, iz as AuthorizationCaptureStatusWithLiterals, eB as AuthorizationDetails, eE as AuthorizationVoid, aK as AuthorizationVoidStatus, iA as AuthorizationVoidStatusWithLiterals, co as AuthorizedPaymentCaptured, cn as AuthorizedPaymentCreated, cp as AuthorizedPaymentVoided, cV as Balance, cU as BalanceSummary, i0 as BaseEventMetadata, fa as BatchOfTriggerReindexOrderRequest, hK as BigDecimalWrapper, bm as BillingAdjustment, bn as BillingAdjustmentPriceSummary, ef as BulkActionMetadata, f$ as BulkArchiveOrdersByFilterRequest, g0 as BulkArchiveOrdersByFilterResponse, fZ as BulkArchiveOrdersRequest, f_ as BulkArchiveOrdersResponse, db as BulkDeleteImportedOrdersRequest, gZ as BulkMarkAsFulfilledByFilterRequest, g_ as BulkMarkAsFulfilledByFilterResponse, gX as BulkMarkAsFulfilledRequest, gY as BulkMarkAsFulfilledResponse, h3 as BulkMarkAsUnfulfilledByFilterRequest, h4 as BulkMarkAsUnfulfilledByFilterResponse, h1 as BulkMarkAsUnfulfilledRequest, h2 as BulkMarkAsUnfulfilledResponse, eb as BulkMarkOrdersAsPaidRequest, ec as BulkOrderResult, dt as BulkSendBuyerPickupConfirmationEmailsRequest, du as BulkSendBuyerPickupConfirmationEmailsResponse, dx as BulkSendBuyerShippingConfirmationEmailsRequest, dy as BulkSendBuyerShippingConfirmationEmailsResponse, h5 as BulkSetBusinessLocationRequest, h6 as BulkSetBusinessLocationResponse, h7 as BulkSetBusinessLocationResult, g5 as BulkUnArchiveOrdersByFilterRequest, g6 as BulkUnArchiveOrdersByFilterResponse, g3 as BulkUnArchiveOrdersRequest, g4 as BulkUnArchiveOrdersResponse, hl as BulkUpdateOrderTagsRequest, hm as BulkUpdateOrderTagsResult, fB as BulkUpdateOrdersRequest, bw as BuyerInfo, bx as BuyerInfoIdOneOf, g8 as BuyerInfoUpdate, eS as CalculateRefundItemRequest, eU as CalculateRefundItemResponse, eR as CalculateRefundRequest, eT as CalculateRefundResponse, hU as CalculatedTax, hT as CalculatedTaxes, hs as Cancel, gR as CancelOrderRequest, eW as CaptureAuthorizedPaymentsRequest, b2 as CatalogReference, cS as ChannelInfo, ax as ChannelType, im as ChannelTypeWithLiterals, el as ChargeMembershipsRequest, ep as ChargeMembershipsResponse, eX as ChargeSavedPaymentMethodRequest, eY as ChargeSavedPaymentMethodResponse, eG as Chargeback, cO as ChargebackCreated, cP as ChargebackReversed, aN as ChargebackStatus, iD as ChargebackStatusWithLiterals, ek as ChargedBy, b8 as Color, fC as CommitDeltasRequest, fT as CommittedDiffs, fU as CommittedDiffsShippingUpdateInfoOneOf, hD as CommonAddress, hE as CommonAddressStreetOneOf, iS as CommonSearchWithEntityContext, hC as Company, hr as Complete, bT as Coupon, fv as CreateOrderRequest, fy as CreateOrderResponse, ej as CreatePaymentGatewayOrderRequest, cQ as CreatedBy, cR as CreatedByStringOneOf, cD as CreditCardDetails, eA as CreditCardPaymentMethodDetails, by as CurrencyConversionDetails, fl as CursorPaging, fu as CursorPagingMetadata, fs as CursorSearch, ft as CursorSearchPagingMethodOneOf, fo as Cursors, b$ as CustomActivity, d1 as CustomAllowedActions, cT as CustomField, aY as CustomFieldGroup, iO as CustomFieldGroupWithLiterals, hZ as CustomFieldValue, hx as Customer, hj as DecrementData, hi as DecrementItemsQuantityRequest, hk as DecrementItemsQuantityResponse, e5 as DelayedCaptureSettings, gL as DeleteActivityRequest, f2 as DeleteByFilterOperation, f1 as DeleteByIdsOperation, bH as DeliveryLogistics, bI as DeliveryLogisticsAddressOneOf, bL as DeliveryTimeSlot, aT as DeltaPaymentOptionType, iJ as DeltaPaymentOptionTypeWithLiterals, h$ as Deposit, a_ as DepositType, iQ as DepositTypeWithLiterals, b3 as DescriptionLine, b5 as DescriptionLineDescriptionLineValueOneOf, b6 as DescriptionLineName, ae as DescriptionLineType, i3 as DescriptionLineTypeWithLiterals, b4 as DescriptionLineValueOneOf, fc as DiffmatokyPayload, bg as DigitalFile, hR as Discount, hS as DiscountOneDiscountTypeOneOf, as as DiscountReason, ih as DiscountReasonWithLiterals, bW as DiscountRule, bX as DiscountRuleName, ar as DiscountType, ig as DiscountTypeWithLiterals, dc as DomainEvent, dd as DomainEventBodyOneOf, gs as DownloadLinkSent, c5 as DraftOrderChangesApplied, fQ as DraftOrderCommitSettings, fD as DraftOrderDiffs, fG as DraftOrderDiffsBillingUpdateInfoOneOf, fF as DraftOrderDiffsBuyerUpdateInfoOneOf, fH as DraftOrderDiffsRecipientUpdateInfoOneOf, fE as DraftOrderDiffsShippingUpdateInfoOneOf, e6 as Duration, aC as DurationUnit, is as DurationUnitWithLiterals, hy as Email, gB as EmailEdited, e2 as Empty, de as EntityCreatedEvent, dh as EntityDeletedEvent, dg as EntityUpdatedEvent, fd as ErrorInformation, i1 as EventMetadata, bs as ExtendedFields, cL as ExternalReceipt, eK as ExternalReceiptInfo, b9 as FocalPoint, bl as FreeTrialPeriod, gz as FulfillerEmailSent, am as FulfillmentStatus, gW as FulfillmentStatusUpdated, ib as FulfillmentStatusWithLiterals, cX as FulfillmentStatusesAggregate, bE as FullAddressContactDetails, fe as GetOrderRequest, ff as GetOrderResponse, e7 as GetPaymentCollectabilityStatusRequest, eg as GetRefundabilityStatusRequest, hf as GetShipmentsRequest, hg as GetShipmentsResponse, eH as GiftCardPaymentDetails, cu as GiftCardPaymentRefund, hv as IdAndVersion, dk as IdentificationData, dl as IdentificationDataIdOneOf, d9 as ImportOrderRequest, d8 as ImportedOrderDeleted, gl as InternalActivity, gm as InternalActivityContentOneOf, e$ as InternalDocument, f3 as InternalDocumentUpdateByFilterOperation, f0 as InternalDocumentUpdateOperation, fg as InternalQueryOrdersRequest, fm as InternalQueryOrdersResponse, f4 as InternalUpdateExistingOperation, aU as InventoryAction, iK as InventoryActionWithLiterals, fR as InventoryUpdateDetails, gx as InvoiceAdded, hH as InvoiceDates, hY as InvoiceDynamicPriceTotals, hw as InvoiceFields, gy as InvoiceSent, hu as InvoiceSentEvent, a$ as InvoiceStatus, iR as InvoiceStatusWithLiterals, hW as InvoicesPayment, fL as ItemChangedDetails, ed as ItemMetadata, bv as ItemModifier, bd as ItemTaxFullDetails, bb as ItemType, bc as ItemTypeItemTypeDataOneOf, af as ItemTypePreset, i4 as ItemTypePresetWithLiterals, hQ as ItemizedFee, ah as JurisdictionType, i6 as JurisdictionTypeWithLiterals, hJ as LineItem, ch as LineItemAmount, c8 as LineItemChanges, fV as LineItemDelta, fW as LineItemDeltaDeltaOneOf, cc as LineItemDescriptionLineChange, bY as LineItemDiscount, c4 as LineItemExchangeData, hN as LineItemMetaData, cd as LineItemModifiersChange, ca as LineItemPriceChange, cb as LineItemProductNameChange, c9 as LineItemQuantityChange, at as LineItemQuantityChangeType, ii as LineItemQuantityChangeTypeWithLiterals, dM as LineItemRefund, eQ as LineItemRefundSummary, hL as LineItemTax, bf as LineItemTaxBreakdown, be as LineItemTaxInfo, gN as LineItemUpdate, hI as LineItems, hO as Locale, c_ as Location, bp as LocationAndQuantity, ci as ManagedAdditionalFee, cf as ManagedDiscount, ce as ManagedLineItem, aG as ManuallyRefundableReason, iw as ManuallyRefundableReasonWithLiterals, gU as MarkAsFulfilledRequest, gV as MarkAsFulfilledResponse, g$ as MarkAsUnfulfilledRequest, h0 as MarkAsUnfulfilledResponse, ea as MarkOrderAsPaidRequest, gP as MarkOrderAsSeenByHumanRequest, gQ as MarkOrderAsSeenByHumanResponse, gi as MaskedOrderLineItem, em as MembershipChargeItem, en as MembershipName, eI as MembershipPaymentDetails, cv as MembershipPaymentRefund, aO as MembershipPaymentStatus, iE as MembershipPaymentStatusWithLiterals, c0 as MerchantComment, bU as MerchantDiscount, bV as MerchantDiscountMerchantDiscountReasonOneOf, dj as MessageEnvelope, hX as MetaData, bt as ModifierGroup, c3 as NewExchangeOrderCreated, aF as NonRefundableReason, iv as NonRefundableReasonWithLiterals, ay as OrderActionType, io as OrderActionTypeWithLiterals, av as OrderActivityTypeEnumActivityType, ik as OrderActivityTypeEnumActivityTypeWithLiterals, aS as OrderApprovalStrategy, iI as OrderApprovalStrategyWithLiterals, d2 as OrderApproved, gr as OrderCanceled, gS as OrderCanceledEventOrderCanceled, c6 as OrderChange, c7 as OrderChangeValueOneOf, fx as OrderCreateNotifications, c2 as OrderCreatedFromExchange, fw as OrderCreationSettings, fS as OrderDeltasCommitted, gp as OrderFulfilled, d7 as OrderImported, d5 as OrderItemsRestocked, b0 as OrderLineItem, fK as OrderLineItemChangedDetails, gq as OrderNotFulfilled, go as OrderPaid, gD as OrderPartiallyPaid, gE as OrderPending, gn as OrderPlaced, c1 as OrderRefunded, gF as OrderRejected, d4 as OrderRejectedEventOrderRejected, i2 as OrderSearchSpec, c$ as OrderSettings, d0 as OrderSettingsAllowedActionsOneOf, aq as OrderStatus, bQ as OrderTaxBreakdown, bP as OrderTaxInfo, eu as OrderTransactions, d3 as OrdersExperiments, ev as Payment, cE as PaymentCanceled, cF as PaymentCanceledPaymentDetailsOneOf, aD as PaymentCollectabilityStatus, it as PaymentCollectabilityStatusWithLiterals, cG as PaymentDeclined, cH as PaymentDeclinedPaymentDetailsOneOf, ag as PaymentOptionType, i5 as PaymentOptionTypeWithLiterals, ew as PaymentPaymentDetailsOneOf, cz as PaymentPending, cA as PaymentPendingPaymentDetailsOneOf, ex as PaymentReceiptInfoOneOf, cx as PaymentRefundFailed, cw as PaymentRefunded, al as PaymentStatus, ha as PaymentStatusUpdated, ia as PaymentStatusWithLiterals, hV as Payments, hB as Phone, ba as PhysicalProperties, bK as PickupAddress, bJ as PickupDetails, ap as PickupMethod, ie as PickupMethodWithLiterals, gC as PickupReadyEmailSent, aV as Placement, iL as PlacementWithLiterals, b7 as PlainTextValue, fk as PlatformPaging, fn as PlatformPagingMetadata, fh as PlatformQuery, fi as PlatformQueryPagingMethodOneOf, e3 as PreparePaymentCollectionRequest, dW as PreviewBuyerConfirmationEmailRequest, dX as PreviewBuyerConfirmationEmailResponse, dU as PreviewBuyerPaymentsReceivedEmailRequest, dV as PreviewBuyerPaymentsReceivedEmailResponse, dY as PreviewBuyerPickupConfirmationEmailRequest, dZ as PreviewBuyerPickupConfirmationEmailResponse, dQ as PreviewCancelEmailRequest, dR as PreviewCancelEmailResponse, dS as PreviewCancelRefundEmailRequest, dT as PreviewCancelRefundEmailResponse, dH as PreviewEmailByTypeRequest, dI as PreviewEmailByTypeResponse, aA as PreviewEmailType, iq as PreviewEmailTypeWithLiterals, dJ as PreviewRefundEmailRequest, dP as PreviewRefundEmailResponse, e0 as PreviewResendDownloadLinksEmailRequest, e1 as PreviewResendDownloadLinksEmailResponse, d_ as PreviewShippingConfirmationEmailRequest, d$ as PreviewShippingConfirmationEmailResponse, bo as PriceDescription, bz as PriceSummary, b1 as ProductName, gI as PublicActivityContentOneOf, fp as QueryOrderRequest, fq as QueryOrderResponse, hz as QuotesAddress, aL as Reason, iB as ReasonWithLiterals, cI as ReceiptCreated, cJ as ReceiptCreatedReceiptInfoOneOf, cM as ReceiptSent, cN as ReceiptSentReceiptInfoOneOf, e8 as RecordManuallyCollectedPaymentRequest, e9 as RecordManuallyCollectedPaymentResponse, e4 as RedirectUrls, eL as Refund, dK as RefundDetails, cq as RefundInitiated, dL as RefundItem, eP as RefundItemsBreakdown, er as RefundSideEffects, aP as RefundStatus, eN as RefundStatusInfo, iF as RefundStatusWithLiterals, eM as RefundTransaction, eh as Refundability, ei as RefundabilityAdditionalRefundabilityInfoOneOf, aE as RefundableStatus, iu as RefundableStatusWithLiterals, cy as RefundedAsStoreCredit, cr as RefundedPayment, cs as RefundedPaymentKindOneOf, cB as RegularPayment, ey as RegularPaymentDetails, ez as RegularPaymentDetailsPaymentMethodDetailsOneOf, cC as RegularPaymentPaymentMethodDetailsOneOf, ct as RegularPaymentRefund, ht as Reschedule, es as RestockInfo, et as RestockItem, aH as RestockType, ix as RestockTypeWithLiterals, df as RestoreInfo, cm as SavedPaymentMethod, aB as ScheduledAction, ir as ScheduledActionWithLiterals, fr as SearchOrdersRequest, dm as SendBuyerConfirmationEmailRequest, dn as SendBuyerConfirmationEmailResponse, dp as SendBuyerPaymentsReceivedEmailRequest, dq as SendBuyerPaymentsReceivedEmailResponse, dr as SendBuyerPickupConfirmationEmailRequest, ds as SendBuyerPickupConfirmationEmailResponse, dv as SendBuyerShippingConfirmationEmailRequest, dw as SendBuyerShippingConfirmationEmailResponse, dB as SendCancelRefundEmailRequest, dC as SendCancelRefundEmailResponse, dz as SendMerchantOrderReceivedNotificationRequest, dA as SendMerchantOrderReceivedNotificationResponse, dF as SendMerchantOrderReceivedPushRequest, dG as SendMerchantOrderReceivedPushResponse, dD as SendRefundEmailRequest, dE as SendRefundEmailResponse, eo as ServiceProperties, da as SetOrderNumberCounterRequest, gA as ShippingAddressEdited, gw as ShippingConfirmationEmailSent, cl as ShippingInformation, ck as ShippingInformationChange, bM as ShippingPrice, dO as ShippingRefund, bN as ShippingRegion, aR as SortOrder, iH as SortOrderWithLiterals, fj as Sorting, hM as Source, aX as SourceType, iN as SourceTypeWithLiterals, hG as StandardDetails, bC as StreetAddress, hF as Subdivision, aW as SubdivisionType, iM as SubdivisionTypeWithLiterals, bj as SubscriptionDescription, ai as SubscriptionFrequency, i7 as SubscriptionFrequencyWithLiterals, bh as SubscriptionInfo, bk as SubscriptionSettings, bi as SubscriptionTitle, cZ as TagList, cY as Tags, hn as Task, hp as TaskAction, hq as TaskActionActionOneOf, ho as TaskKey, bO as TaxSummary, bq as TaxableAddress, br as TaxableAddressTaxableAddressDataOneOf, ak as TaxableAddressType, i9 as TaxableAddressTypeWithLiterals, hP as TotalPrice, cj as TotalPriceChange, gv as TrackingLinkAdded, gt as TrackingNumberAdded, gu as TrackingNumberEdited, aI as TransactionStatus, iy as TransactionStatusWithLiterals, bu as TranslatableString, cg as TranslatedValue, eq as TriggerRefundRequest, fb as TriggerReindexOrderRequest, f8 as TriggerReindexRequest, f9 as TriggerReindexResponse, g1 as UnArchiveOrderRequest, g2 as UnArchiveOrderResponse, gK as UpdateActivityRequest, ge as UpdateBillingContactDetailsRequest, gf as UpdateBillingContactDetailsResponse, ga as UpdateBuyerEmailRequest, gb as UpdateBuyerEmailResponse, g7 as UpdateBuyerInfoRequest, g9 as UpdateBuyerInfoResponse, eZ as UpdateInternalDocumentsEvent, e_ as UpdateInternalDocumentsEventOperationOneOf, gM as UpdateLineItemsDescriptionLinesRequest, gO as UpdateLineItemsDescriptionLinesResponse, gg as UpdateOrderLineItemRequest, gh as UpdateOrderLineItemsRequest, gj as UpdateOrderLineItemsResponse, fz as UpdateOrderRequest, fA as UpdateOrderResponse, gc as UpdateOrderShippingAddressRequest, gd as UpdateOrderShippingAddressResponse, gT as UpdateOrderStatusRequest, hb as V1BulkMarkOrdersAsPaidRequest, hc as V1BulkMarkOrdersAsPaidResponse, hd as V1CreatePaymentGatewayOrderRequest, he as V1CreatePaymentGatewayOrderResponse, fI as V1LineItemDelta, fJ as V1LineItemDeltaDeltaOneOf, h8 as V1MarkOrderAsPaidRequest, h9 as V1MarkOrderAsPaidResponse, d6 as V1RestockItem, eF as V1ScheduledAction, bG as V1ShippingInformation, h_ as Value, aZ as ValueType, iP as ValueTypeWithLiterals, bF as VatId, ao as VatType, id as VatTypeWithLiterals, f6 as VersionedDeleteByIdsOperation, f7 as VersionedDocumentId, f5 as VersionedDocumentUpdateOperation, aQ as VersioningMode, iG as VersioningModeWithLiterals, eV as VoidAuthorizedPaymentsRequest, az as WebhookIdentityType, ip as WebhookIdentityTypeWithLiterals, an as WeightUnit, ic as WeightUnitWithLiterals, cK as WixReceipt, eJ as WixReceiptInfo } from './ecom-v1-order-orders.universal-BqtKuGgP.js';
4
4
 
5
5
  /** @internal */
6
6
  declare function importOrder$1(httpClient: HttpClient): ImportOrderSignature;
@@ -320,6 +320,15 @@ interface AddActivitySignature {
320
320
  */
321
321
  (_id: string, activity: PublicActivity): Promise<NonNullablePaths<AddActivityResponse, `order.number` | `order.lineItems` | `order.lineItems.${number}._id` | `order.lineItems.${number}.productName.original` | `order.lineItems.${number}.catalogReference.catalogItemId` | `order.lineItems.${number}.catalogReference.appId` | `order.lineItems.${number}.quantity` | `order.lineItems.${number}.totalDiscount.amount` | `order.lineItems.${number}.totalDiscount.formattedAmount` | `order.lineItems.${number}.physicalProperties.shippable` | `order.lineItems.${number}.itemType.preset` | `order.lineItems.${number}.itemType.custom` | `order.lineItems.${number}.paymentOption` | `order.lineItems.${number}.taxDetails.taxRate` | `order.lineItems.${number}.taxInfo.taxIncludedInPrice` | `order.lineItems.${number}.digitalFile.fileId` | `order.lineItems.${number}.subscriptionInfo.cycleNumber` | `order.lineItems.${number}.subscriptionInfo.subscriptionOptionTitle` | `order.lineItems.${number}.subscriptionInfo.subscriptionSettings.frequency` | `order.lineItems.${number}.subscriptionInfo.subscriptionSettings.autoRenewal` | `order.lineItems.${number}.subscriptionInfo.subscriptionSettings.enableCustomerCancellation` | `order.lineItems.${number}.priceDescription.original` | `order.lineItems.${number}.taxableAddress.addressType` | `order.buyerInfo.visitorId` | `order.buyerInfo.memberId` | `order.paymentStatus` | `order.fulfillmentStatus` | `order.weightUnit` | `order.taxIncludedInPrices` | `order.billingInfo.address.streetAddress.number` | `order.billingInfo.address.streetAddress.name` | `order.billingInfo.contactDetails.vatId._id` | `order.billingInfo.contactDetails.vatId.type` | `order.shippingInfo.title` | `order.shippingInfo.logistics.pickupDetails.pickupMethod` | `order.status` | `order.taxInfo.taxBreakdown` | `order.taxInfo.taxBreakdown.${number}.taxName` | `order.taxInfo.taxBreakdown.${number}.taxType` | `order.taxInfo.taxBreakdown.${number}.jurisdiction` | `order.taxInfo.taxBreakdown.${number}.jurisdictionType` | `order.taxInfo.taxBreakdown.${number}.rate` | `order.appliedDiscounts` | `order.appliedDiscounts.${number}.coupon._id` | `order.appliedDiscounts.${number}.coupon.code` | `order.appliedDiscounts.${number}.coupon.name` | `order.appliedDiscounts.${number}.merchantDiscount.discountReason` | `order.appliedDiscounts.${number}.discountRule._id` | `order.appliedDiscounts.${number}.discountRule.name.original` | `order.appliedDiscounts.${number}.discountType` | `order.activities` | `order.activities.${number}.customActivity.appId` | `order.activities.${number}.customActivity.type` | `order.activities.${number}.merchantComment.message` | `order.activities.${number}.orderRefunded.manual` | `order.activities.${number}.orderRefunded.reason` | `order.activities.${number}.draftOrderChangesApplied.draftOrderId` | `order.activities.${number}.savedPaymentMethod.name` | `order.activities.${number}.authorizedPaymentCreated.paymentId` | `order.activities.${number}.authorizedPaymentCaptured.paymentId` | `order.activities.${number}.authorizedPaymentVoided.paymentId` | `order.activities.${number}.refundInitiated.refundId` | `order.activities.${number}.paymentRefunded.refundId` | `order.activities.${number}.paymentRefundFailed.refundId` | `order.activities.${number}.paymentPending.paymentId` | `order.activities.${number}.paymentCanceled.paymentId` | `order.activities.${number}.paymentDeclined.paymentId` | `order.activities.${number}.receiptCreated.wixReceipt.receiptId` | `order.activities.${number}.receiptCreated.paymentId` | `order.activities.${number}.receiptSent.paymentId` | `order.activities.${number}.chargebackCreated.paymentId` | `order.activities.${number}.chargebackCreated.chargebackId` | `order.activities.${number}.chargebackReversed.paymentId` | `order.activities.${number}.chargebackReversed.chargebackId` | `order.activities.${number}.type` | `order.activities.${number}.activityType` | `order.attributionSource` | `order.createdBy.userId` | `order.createdBy.memberId` | `order.createdBy.visitorId` | `order.createdBy.appId` | `order.channelInfo.type` | `order.customFields` | `order.customFields.${number}.title` | `order.balanceSummary.balance.amount` | `order.balanceSummary.balance.formattedAmount` | `order.additionalFees` | `order.additionalFees.${number}.name` | `order.additionalFees.${number}._id` | `order.tags.privateTags.tagIds` | `order.businessLocation._id` | `order.businessLocation.name` | `activityId`, 7>>;
322
322
  }
323
+ declare function addActivities$1(httpClient: HttpClient): AddActivitiesSignature;
324
+ interface AddActivitiesSignature {
325
+ /**
326
+ * Adds merchant comments to an order.
327
+ * > **Note:** Activities with type CustomActivity not supported
328
+ * @param - Order ID.
329
+ */
330
+ (orderId: string, options?: NonNullablePaths<AddActivitiesOptions, `orderActivities.${number}.activityType`, 4>): Promise<NonNullablePaths<AddActivitiesResponse, `order.number` | `order.lineItems` | `order.lineItems.${number}._id` | `order.lineItems.${number}.productName.original` | `order.lineItems.${number}.catalogReference.catalogItemId` | `order.lineItems.${number}.catalogReference.appId` | `order.lineItems.${number}.quantity` | `order.lineItems.${number}.totalDiscount.amount` | `order.lineItems.${number}.totalDiscount.formattedAmount` | `order.lineItems.${number}.physicalProperties.shippable` | `order.lineItems.${number}.itemType.preset` | `order.lineItems.${number}.itemType.custom` | `order.lineItems.${number}.paymentOption` | `order.lineItems.${number}.taxDetails.taxRate` | `order.lineItems.${number}.taxInfo.taxIncludedInPrice` | `order.lineItems.${number}.digitalFile.fileId` | `order.lineItems.${number}.subscriptionInfo.cycleNumber` | `order.lineItems.${number}.subscriptionInfo.subscriptionOptionTitle` | `order.lineItems.${number}.subscriptionInfo.subscriptionSettings.frequency` | `order.lineItems.${number}.subscriptionInfo.subscriptionSettings.autoRenewal` | `order.lineItems.${number}.subscriptionInfo.subscriptionSettings.enableCustomerCancellation` | `order.lineItems.${number}.priceDescription.original` | `order.lineItems.${number}.taxableAddress.addressType` | `order.buyerInfo.visitorId` | `order.buyerInfo.memberId` | `order.paymentStatus` | `order.fulfillmentStatus` | `order.weightUnit` | `order.taxIncludedInPrices` | `order.billingInfo.address.streetAddress.number` | `order.billingInfo.address.streetAddress.name` | `order.billingInfo.contactDetails.vatId._id` | `order.billingInfo.contactDetails.vatId.type` | `order.shippingInfo.title` | `order.shippingInfo.logistics.pickupDetails.pickupMethod` | `order.status` | `order.taxInfo.taxBreakdown` | `order.taxInfo.taxBreakdown.${number}.taxName` | `order.taxInfo.taxBreakdown.${number}.taxType` | `order.taxInfo.taxBreakdown.${number}.jurisdiction` | `order.taxInfo.taxBreakdown.${number}.jurisdictionType` | `order.taxInfo.taxBreakdown.${number}.rate` | `order.appliedDiscounts` | `order.appliedDiscounts.${number}.coupon._id` | `order.appliedDiscounts.${number}.coupon.code` | `order.appliedDiscounts.${number}.coupon.name` | `order.appliedDiscounts.${number}.merchantDiscount.discountReason` | `order.appliedDiscounts.${number}.discountRule._id` | `order.appliedDiscounts.${number}.discountRule.name.original` | `order.appliedDiscounts.${number}.discountType` | `order.activities` | `order.activities.${number}.customActivity.appId` | `order.activities.${number}.customActivity.type` | `order.activities.${number}.merchantComment.message` | `order.activities.${number}.orderRefunded.manual` | `order.activities.${number}.orderRefunded.reason` | `order.activities.${number}.draftOrderChangesApplied.draftOrderId` | `order.activities.${number}.savedPaymentMethod.name` | `order.activities.${number}.authorizedPaymentCreated.paymentId` | `order.activities.${number}.authorizedPaymentCaptured.paymentId` | `order.activities.${number}.authorizedPaymentVoided.paymentId` | `order.activities.${number}.refundInitiated.refundId` | `order.activities.${number}.paymentRefunded.refundId` | `order.activities.${number}.paymentRefundFailed.refundId` | `order.activities.${number}.paymentPending.paymentId` | `order.activities.${number}.paymentCanceled.paymentId` | `order.activities.${number}.paymentDeclined.paymentId` | `order.activities.${number}.receiptCreated.wixReceipt.receiptId` | `order.activities.${number}.receiptCreated.paymentId` | `order.activities.${number}.receiptSent.paymentId` | `order.activities.${number}.chargebackCreated.paymentId` | `order.activities.${number}.chargebackCreated.chargebackId` | `order.activities.${number}.chargebackReversed.paymentId` | `order.activities.${number}.chargebackReversed.chargebackId` | `order.activities.${number}.type` | `order.activities.${number}.activityType` | `order.attributionSource` | `order.createdBy.userId` | `order.createdBy.memberId` | `order.createdBy.visitorId` | `order.createdBy.appId` | `order.channelInfo.type` | `order.customFields` | `order.customFields.${number}.title` | `order.balanceSummary.balance.amount` | `order.balanceSummary.balance.formattedAmount` | `order.additionalFees` | `order.additionalFees.${number}.name` | `order.additionalFees.${number}._id` | `order.tags.privateTags.tagIds` | `order.businessLocation._id` | `order.businessLocation.name` | `activityIds`, 7>>;
331
+ }
323
332
  /** @internal */
324
333
  declare function updateActivity$1(httpClient: HttpClient): UpdateActivitySignature;
325
334
  interface UpdateActivitySignature {
@@ -433,6 +442,7 @@ declare const commitDeltas: MaybeContext<BuildRESTFunction<typeof commitDeltas$1
433
442
  declare const updateOrderLineItem: MaybeContext<BuildRESTFunction<typeof updateOrderLineItem$1> & typeof updateOrderLineItem$1>;
434
443
  /** @internal */
435
444
  declare const addActivity: MaybeContext<BuildRESTFunction<typeof addActivity$1> & typeof addActivity$1>;
445
+ declare const addActivities: MaybeContext<BuildRESTFunction<typeof addActivities$1> & typeof addActivities$1>;
436
446
  /** @internal */
437
447
  declare const updateActivity: MaybeContext<BuildRESTFunction<typeof updateActivity$1> & typeof updateActivity$1>;
438
448
  /** @internal */
@@ -462,4 +472,4 @@ declare const onOrderCreated: BuildEventDefinition<typeof onOrderCreated$1> & ty
462
472
  */
463
473
  declare const onOrderPaymentStatusUpdated: BuildEventDefinition<typeof onOrderPaymentStatusUpdated$1> & typeof onOrderPaymentStatusUpdated$1;
464
474
 
465
- export { AddActivityResponse, AggregateOrdersOptions, AggregateOrdersResponse, BulkDeleteImportedOrdersOptions, BulkDeleteImportedOrdersResponse, BulkMarkOrdersAsPaidResponse, BulkUpdateOrderTagsOptions, BulkUpdateOrderTagsResponse, BulkUpdateOrdersOptions, BulkUpdateOrdersResponse, CancelOrderApplicationErrors, CancelOrderOptions, CancelOrderResponse, CaptureAuthorizedPaymentsApplicationErrors, CaptureAuthorizedPaymentsResponse, ChargeMembershipsOptions, CommitDeltasApplicationErrors, CommitDeltasOptions, CommitDeltasResponse, CreateOrderApplicationErrors, CreateOrderOptions, CreatePaymentGatewayOrderResponse, DeleteActivityIdentifiers, DeleteActivityResponse, GetOrderApplicationErrors, GetPaymentCollectabilityStatusResponse, GetRefundabilityStatusResponse, ImportOrderResponse, MarkOrderAsPaidResponse, MaskedOrder, Order, OrderApprovedEnvelope, OrderCanceledEnvelope, OrderCreatedEnvelope, OrderPaymentStatusUpdatedEnvelope, OrderSearch, OrderStatusWithLiterals, OrderUpdatedEnvelope, PaymentCapture, PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, PaymentCollectionCreatePaymentGatewayOrderOptions, PaymentCollectionMarkOrderAsPaidApplicationErrors, PaymentRefund, PreparePaymentCollectionApplicationErrors, PreparePaymentCollectionOptions, PreparePaymentCollectionResponse, Price, PublicActivity, RecordManuallyCollectedPaymentApplicationErrors, SearchOrdersResponse, SetOrderNumberCounterOptions, SetOrderNumberCounterResponse, TriggerRefundApplicationErrors, TriggerRefundOptions, TriggerRefundResponse, UpdateActivityIdentifiers, UpdateActivityResponse, UpdateOrder, UpdateOrderApplicationErrors, UpdateOrderLineItem, UpdateOrderLineItemIdentifiers, UpdateOrderLineItemResponse, UpdateOrderStatusApplicationErrors, UpdateOrderStatusResponse, VoidAuthorizedPaymentsApplicationErrors, VoidAuthorizedPaymentsResponse, addActivity, aggregateOrders, bulkDeleteImportedOrders, bulkUpdateOrderTags, bulkUpdateOrders, cancelOrder, captureAuthorizedPayments, chargeMemberships, commitDeltas, createOrder, deleteActivity, getOrder, getPaymentCollectabilityStatus, getRefundabilityStatus, importOrder, onOrderApproved, onOrderCanceled, onOrderCreated, onOrderPaymentStatusUpdated, onOrderUpdated, paymentCollectionBulkMarkOrdersAsPaid, paymentCollectionCreatePaymentGatewayOrder, paymentCollectionMarkOrderAsPaid, preparePaymentCollection, recordManuallyCollectedPayment, searchOrders, setOrderNumberCounter, triggerRefund, updateActivity, updateOrder, updateOrderLineItem, updateOrderStatus, voidAuthorizedPayments };
475
+ export { AddActivitiesOptions, AddActivitiesResponse, AddActivityResponse, AggregateOrdersOptions, AggregateOrdersResponse, BulkDeleteImportedOrdersOptions, BulkDeleteImportedOrdersResponse, BulkMarkOrdersAsPaidResponse, BulkUpdateOrderTagsOptions, BulkUpdateOrderTagsResponse, BulkUpdateOrdersOptions, BulkUpdateOrdersResponse, CancelOrderApplicationErrors, CancelOrderOptions, CancelOrderResponse, CaptureAuthorizedPaymentsApplicationErrors, CaptureAuthorizedPaymentsResponse, ChargeMembershipsOptions, CommitDeltasApplicationErrors, CommitDeltasOptions, CommitDeltasResponse, CreateOrderApplicationErrors, CreateOrderOptions, CreatePaymentGatewayOrderResponse, DeleteActivityIdentifiers, DeleteActivityResponse, GetOrderApplicationErrors, GetPaymentCollectabilityStatusResponse, GetRefundabilityStatusResponse, ImportOrderResponse, MarkOrderAsPaidResponse, MaskedOrder, Order, OrderApprovedEnvelope, OrderCanceledEnvelope, OrderCreatedEnvelope, OrderPaymentStatusUpdatedEnvelope, OrderSearch, OrderStatusWithLiterals, OrderUpdatedEnvelope, PaymentCapture, PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, PaymentCollectionCreatePaymentGatewayOrderOptions, PaymentCollectionMarkOrderAsPaidApplicationErrors, PaymentRefund, PreparePaymentCollectionApplicationErrors, PreparePaymentCollectionOptions, PreparePaymentCollectionResponse, Price, PublicActivity, RecordManuallyCollectedPaymentApplicationErrors, SearchOrdersResponse, SetOrderNumberCounterOptions, SetOrderNumberCounterResponse, TriggerRefundApplicationErrors, TriggerRefundOptions, TriggerRefundResponse, UpdateActivityIdentifiers, UpdateActivityResponse, UpdateOrder, UpdateOrderApplicationErrors, UpdateOrderLineItem, UpdateOrderLineItemIdentifiers, UpdateOrderLineItemResponse, UpdateOrderStatusApplicationErrors, UpdateOrderStatusResponse, VoidAuthorizedPaymentsApplicationErrors, VoidAuthorizedPaymentsResponse, addActivities, addActivity, aggregateOrders, bulkDeleteImportedOrders, bulkUpdateOrderTags, bulkUpdateOrders, cancelOrder, captureAuthorizedPayments, chargeMemberships, commitDeltas, createOrder, deleteActivity, getOrder, getPaymentCollectabilityStatus, getRefundabilityStatus, importOrder, onOrderApproved, onOrderCanceled, onOrderCreated, onOrderPaymentStatusUpdated, onOrderUpdated, paymentCollectionBulkMarkOrdersAsPaid, paymentCollectionCreatePaymentGatewayOrder, paymentCollectionMarkOrderAsPaid, preparePaymentCollection, recordManuallyCollectedPayment, searchOrders, setOrderNumberCounter, triggerRefund, updateActivity, updateOrder, updateOrderLineItem, updateOrderStatus, voidAuthorizedPayments };