@wix/auto_sdk_ecom_orders 1.0.220 → 1.0.221

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-BjvDnQO1.d.ts → ecom-v1-order-orders.universal-cW_bf4vG.d.ts} +17 -46
  2. package/build/cjs/index.d.ts +2 -2
  3. package/build/cjs/index.js +0 -21
  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 +0 -21
  7. package/build/cjs/index.typings.js.map +1 -1
  8. package/build/cjs/meta.d.ts +18 -47
  9. package/build/cjs/meta.js +0 -21
  10. package/build/cjs/meta.js.map +1 -1
  11. package/build/es/{ecom-v1-order-orders.universal-BjvDnQO1.d.mts → ecom-v1-order-orders.universal-cW_bf4vG.d.mts} +17 -46
  12. package/build/es/index.d.mts +2 -2
  13. package/build/es/index.mjs +0 -21
  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 +0 -21
  17. package/build/es/index.typings.mjs.map +1 -1
  18. package/build/es/meta.d.mts +18 -47
  19. package/build/es/meta.mjs +0 -21
  20. package/build/es/meta.mjs.map +1 -1
  21. package/build/internal/cjs/{ecom-v1-order-orders.universal-lXc4bLyX.d.ts → ecom-v1-order-orders.universal-UePQMlea.d.ts} +17 -46
  22. package/build/internal/cjs/index.d.ts +2 -2
  23. package/build/internal/cjs/index.js +0 -21
  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 +0 -21
  27. package/build/internal/cjs/index.typings.js.map +1 -1
  28. package/build/internal/cjs/meta.d.ts +18 -47
  29. package/build/internal/cjs/meta.js +0 -21
  30. package/build/internal/cjs/meta.js.map +1 -1
  31. package/build/internal/es/{ecom-v1-order-orders.universal-lXc4bLyX.d.mts → ecom-v1-order-orders.universal-UePQMlea.d.mts} +17 -46
  32. package/build/internal/es/index.d.mts +2 -2
  33. package/build/internal/es/index.mjs +0 -21
  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 +0 -21
  37. package/build/internal/es/index.typings.mjs.map +1 -1
  38. package/build/internal/es/meta.d.mts +18 -47
  39. package/build/internal/es/meta.mjs +0 -21
  40. package/build/internal/es/meta.mjs.map +1 -1
  41. package/package.json +2 -2
@@ -878,14 +878,13 @@ interface BillingAdjustment {
878
878
  priceSummary?: BillingAdjustmentPriceSummary;
879
879
  }
880
880
  declare enum AdjustmentType {
881
- UNKNOWN_ADJUSTMENT_TYPE = "UNKNOWN_ADJUSTMENT_TYPE",
882
881
  /** Adjustment increases the total amount due to changes like covering extra billing days. Typically results in an additional fee. */
883
882
  EXTRA_CHARGE = "EXTRA_CHARGE",
884
883
  /** Adjustment reduces the total amount due to changes like covering fewer billing days. Typically results in a credit or discount. */
885
884
  CREDIT = "CREDIT"
886
885
  }
887
886
  /** @enumType */
888
- type AdjustmentTypeWithLiterals = AdjustmentType | 'UNKNOWN_ADJUSTMENT_TYPE' | 'EXTRA_CHARGE' | 'CREDIT';
887
+ type AdjustmentTypeWithLiterals = AdjustmentType | 'EXTRA_CHARGE' | 'CREDIT';
889
888
  interface BillingAdjustmentPriceSummary {
890
889
  /** Subtotal of adjustment, before tax. */
891
890
  subtotal?: Price;
@@ -946,13 +945,12 @@ interface TaxableAddressTaxableAddressDataOneOf {
946
945
  addressType?: TaxableAddressTypeWithLiterals;
947
946
  }
948
947
  declare enum TaxableAddressType {
949
- UNKNOWN_TAXABLE_ADDRESS = "UNKNOWN_TAXABLE_ADDRESS",
950
948
  BUSINESS = "BUSINESS",
951
949
  BILLING = "BILLING",
952
950
  SHIPPING = "SHIPPING"
953
951
  }
954
952
  /** @enumType */
955
- type TaxableAddressTypeWithLiterals = TaxableAddressType | 'UNKNOWN_TAXABLE_ADDRESS' | 'BUSINESS' | 'BILLING' | 'SHIPPING';
953
+ type TaxableAddressTypeWithLiterals = TaxableAddressType | 'BUSINESS' | 'BILLING' | 'SHIPPING';
956
954
  interface ExtendedFields {
957
955
  /**
958
956
  * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
@@ -1376,12 +1374,11 @@ interface PickupAddress {
1376
1374
  subdivisionFullname?: string | null;
1377
1375
  }
1378
1376
  declare enum PickupMethod {
1379
- UNKNOWN_METHOD = "UNKNOWN_METHOD",
1380
1377
  STORE_PICKUP = "STORE_PICKUP",
1381
1378
  PICKUP_POINT = "PICKUP_POINT"
1382
1379
  }
1383
1380
  /** @enumType */
1384
- type PickupMethodWithLiterals = PickupMethod | 'UNKNOWN_METHOD' | 'STORE_PICKUP' | 'PICKUP_POINT';
1381
+ type PickupMethodWithLiterals = PickupMethod | 'STORE_PICKUP' | 'PICKUP_POINT';
1385
1382
  interface DeliveryTimeSlot {
1386
1383
  /** Delivery slot starting time. */
1387
1384
  from?: Date | null;
@@ -2498,10 +2495,6 @@ declare enum ActivityType {
2498
2495
  CUSTOM_ACTIVITY = "CUSTOM_ACTIVITY",
2499
2496
  /** Comment added to the order by a merchant. */
2500
2497
  MERCHANT_COMMENT = "MERCHANT_COMMENT",
2501
- /** Order was created as a result of an exchange. */
2502
- ORDER_CREATED_FROM_EXCHANGE = "ORDER_CREATED_FROM_EXCHANGE",
2503
- /** New exchange order was created from this order. */
2504
- NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
2505
2498
  /** Partial payment was received for the order. */
2506
2499
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
2507
2500
  /** Changes were applied to a draft order. */
@@ -2590,10 +2583,8 @@ declare enum ActivityType {
2590
2583
  CHARGEBACK_REVERSED = "CHARGEBACK_REVERSED"
2591
2584
  }
2592
2585
  /** @enumType */
2593
- 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';
2586
+ 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_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';
2594
2587
  declare enum OrderActivityTypeEnumActivityType {
2595
- /** Default value. This value is unused. */
2596
- UNKNOWN_ACTIVITY_TYPE = "UNKNOWN_ACTIVITY_TYPE",
2597
2588
  /** New order was created and placed. */
2598
2589
  ORDER_PLACED = "ORDER_PLACED",
2599
2590
  /** Order payment was completed and confirmed. */
@@ -2628,14 +2619,8 @@ declare enum OrderActivityTypeEnumActivityType {
2628
2619
  EMAIL_EDITED = "EMAIL_EDITED",
2629
2620
  /** Email notification for pickup readiness was sent. */
2630
2621
  PICKUP_READY_EMAIL_SENT = "PICKUP_READY_EMAIL_SENT",
2631
- /** Custom activity created by a third-party application. */
2632
- CUSTOM_ACTIVITY = "CUSTOM_ACTIVITY",
2633
2622
  /** Comment added to the order by a merchant. */
2634
2623
  MERCHANT_COMMENT = "MERCHANT_COMMENT",
2635
- /** Order was created as a result of an exchange. */
2636
- ORDER_CREATED_FROM_EXCHANGE = "ORDER_CREATED_FROM_EXCHANGE",
2637
- /** New exchange order was created from this order. */
2638
- NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
2639
2624
  /** Partial payment was received for the order. */
2640
2625
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
2641
2626
  /** Changes were applied to a draft order. */
@@ -2726,7 +2711,7 @@ declare enum OrderActivityTypeEnumActivityType {
2726
2711
  ORDER_REFUNDED = "ORDER_REFUNDED"
2727
2712
  }
2728
2713
  /** @enumType */
2729
- 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';
2714
+ type OrderActivityTypeEnumActivityTypeWithLiterals = OrderActivityTypeEnumActivityType | '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' | 'MERCHANT_COMMENT' | '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';
2730
2715
  declare enum AttributionSource {
2731
2716
  UNSPECIFIED = "UNSPECIFIED",
2732
2717
  FACEBOOK_ADS = "FACEBOOK_ADS"
@@ -3014,7 +2999,6 @@ interface AdditionalFee {
3014
2999
  source?: AdditionalFeeSourceWithLiterals;
3015
3000
  }
3016
3001
  declare enum AdditionalFeeSource {
3017
- UNKNOWN_ADDITIONAL_FEE_SOURCE = "UNKNOWN_ADDITIONAL_FEE_SOURCE",
3018
3002
  /** The additional fee was added by an additional fee service plugin. */
3019
3003
  SERVICE_PLUGIN = "SERVICE_PLUGIN",
3020
3004
  /** The additional fee was added to the item by a catalog or custom line item. */
@@ -3027,7 +3011,7 @@ declare enum AdditionalFeeSource {
3027
3011
  PLATFORM = "PLATFORM"
3028
3012
  }
3029
3013
  /** @enumType */
3030
- type AdditionalFeeSourceWithLiterals = AdditionalFeeSource | 'UNKNOWN_ADDITIONAL_FEE_SOURCE' | 'SERVICE_PLUGIN' | 'ITEM' | 'MANUAL' | 'SHIPPING' | 'PLATFORM';
3014
+ type AdditionalFeeSourceWithLiterals = AdditionalFeeSource | 'SERVICE_PLUGIN' | 'ITEM' | 'MANUAL' | 'SHIPPING' | 'PLATFORM';
3031
3015
  interface FulfillmentStatusesAggregate {
3032
3016
  /** Unique string values based on Fulfillment entities statuses */
3033
3017
  statuses?: string[] | null;
@@ -3288,7 +3272,6 @@ interface PlatformFee {
3288
3272
  percentageRate?: string;
3289
3273
  }
3290
3274
  declare enum ChargeType {
3291
- UNKNOWN_CHARGE_TYPE = "UNKNOWN_CHARGE_TYPE",
3292
3275
  /**
3293
3276
  * Platform fee passed on to buyer.
3294
3277
  *
@@ -3303,7 +3286,7 @@ declare enum ChargeType {
3303
3286
  ABSORBED = "ABSORBED"
3304
3287
  }
3305
3288
  /** @enumType */
3306
- type ChargeTypeWithLiterals = ChargeType | 'UNKNOWN_CHARGE_TYPE' | 'PASS_ON' | 'ABSORBED';
3289
+ type ChargeTypeWithLiterals = ChargeType | 'PASS_ON' | 'ABSORBED';
3307
3290
  /** Triggered when the order status changes to approved */
3308
3291
  interface OrderApproved {
3309
3292
  /** The order that was updated */
@@ -3567,8 +3550,6 @@ interface OrderLineItemChangedDetails {
3567
3550
  }
3568
3551
  /** Type of selected payment option for catalog item */
3569
3552
  declare enum DeltaPaymentOptionType {
3570
- /** Irrelevant */
3571
- UNKNOWN_PAYMENT_OPTION = "UNKNOWN_PAYMENT_OPTION",
3572
3553
  /** The entire payment for the given item will happen after checkout. */
3573
3554
  FULL_PAYMENT_OFFLINE = "FULL_PAYMENT_OFFLINE",
3574
3555
  /**
@@ -3578,7 +3559,7 @@ declare enum DeltaPaymentOptionType {
3578
3559
  MEMBERSHIP_OFFLINE = "MEMBERSHIP_OFFLINE"
3579
3560
  }
3580
3561
  /** @enumType */
3581
- type DeltaPaymentOptionTypeWithLiterals = DeltaPaymentOptionType | 'UNKNOWN_PAYMENT_OPTION' | 'FULL_PAYMENT_OFFLINE' | 'MEMBERSHIP_OFFLINE';
3562
+ type DeltaPaymentOptionTypeWithLiterals = DeltaPaymentOptionType | 'FULL_PAYMENT_OFFLINE' | 'MEMBERSHIP_OFFLINE';
3582
3563
  interface LineItemDelta extends LineItemDeltaDeltaOneOf {
3583
3564
  lineItemAdded?: boolean;
3584
3565
  changedDetails?: ItemChangedDetails;
@@ -4687,12 +4668,11 @@ interface AddToAutomationMigrationPopulationRequest {
4687
4668
  origin?: OriginWithLiterals;
4688
4669
  }
4689
4670
  declare enum Origin {
4690
- UNKNOWN_ORIGIN = "UNKNOWN_ORIGIN",
4691
4671
  OPT_IN = "OPT_IN",
4692
4672
  MIGRATION = "MIGRATION"
4693
4673
  }
4694
4674
  /** @enumType */
4695
- type OriginWithLiterals = Origin | 'UNKNOWN_ORIGIN' | 'OPT_IN' | 'MIGRATION';
4675
+ type OriginWithLiterals = Origin | 'OPT_IN' | 'MIGRATION';
4696
4676
  interface AddToAutomationMigrationPopulationResponse {
4697
4677
  success?: boolean;
4698
4678
  }
@@ -4768,14 +4748,13 @@ interface DelayedCaptureSettings {
4768
4748
  delayDuration?: Duration;
4769
4749
  }
4770
4750
  declare enum ScheduledAction {
4771
- UNSPECIFIED = "UNSPECIFIED",
4772
4751
  /** Whether payment will be auto-voided when duration passes */
4773
4752
  VOID = "VOID",
4774
4753
  /** Whether payment will be auto-captured when duration passes */
4775
4754
  CAPTURE = "CAPTURE"
4776
4755
  }
4777
4756
  /** @enumType */
4778
- type ScheduledActionWithLiterals = ScheduledAction | 'UNSPECIFIED' | 'VOID' | 'CAPTURE';
4757
+ type ScheduledActionWithLiterals = ScheduledAction | 'VOID' | 'CAPTURE';
4779
4758
  interface Duration {
4780
4759
  /**
4781
4760
  * Amount of units. For example, 30 MINUTES, 1 HOURS, 7 DAYS, etc
@@ -4786,13 +4765,12 @@ interface Duration {
4786
4765
  unit?: DurationUnitWithLiterals;
4787
4766
  }
4788
4767
  declare enum DurationUnit {
4789
- UNKNOWN_DURATION_UNIT = "UNKNOWN_DURATION_UNIT",
4790
4768
  MINUTES = "MINUTES",
4791
4769
  HOURS = "HOURS",
4792
4770
  DAYS = "DAYS"
4793
4771
  }
4794
4772
  /** @enumType */
4795
- type DurationUnitWithLiterals = DurationUnit | 'UNKNOWN_DURATION_UNIT' | 'MINUTES' | 'HOURS' | 'DAYS';
4773
+ type DurationUnitWithLiterals = DurationUnit | 'MINUTES' | 'HOURS' | 'DAYS';
4796
4774
  interface PreparePaymentCollectionResponse {
4797
4775
  /** Payment gateway order id which is associated with given payment */
4798
4776
  paymentGatewayOrderId?: string;
@@ -4872,8 +4850,6 @@ interface UserDefinedPaymentMethodNameKindOneOf {
4872
4850
  }
4873
4851
  /** Predefined payment method types for offline/manual payments. */
4874
4852
  declare enum PredefinedPaymentMethod {
4875
- /** Unknown payment method type. */
4876
- UNKNOWN_PREDEFINED_PAYMENT_METHOD = "UNKNOWN_PREDEFINED_PAYMENT_METHOD",
4877
4853
  /** Cash payment. */
4878
4854
  CASH = "CASH",
4879
4855
  /** Bank transfer. */
@@ -4882,7 +4858,7 @@ declare enum PredefinedPaymentMethod {
4882
4858
  CHECK = "CHECK"
4883
4859
  }
4884
4860
  /** @enumType */
4885
- type PredefinedPaymentMethodWithLiterals = PredefinedPaymentMethod | 'UNKNOWN_PREDEFINED_PAYMENT_METHOD' | 'CASH' | 'BANK_TRANSFER' | 'CHECK';
4861
+ type PredefinedPaymentMethodWithLiterals = PredefinedPaymentMethod | 'CASH' | 'BANK_TRANSFER' | 'CHECK';
4886
4862
  interface RecordManuallyCollectedPaymentResponse {
4887
4863
  }
4888
4864
  interface MarkOrderAsPaidRequest {
@@ -5468,7 +5444,6 @@ interface AuthorizationCapture {
5468
5444
  failureDetails?: AuthorizationActionFailureDetails;
5469
5445
  }
5470
5446
  declare enum AuthorizationCaptureStatus {
5471
- UNKNOWN_STATUS = "UNKNOWN_STATUS",
5472
5447
  /** Capture operation still in progress. */
5473
5448
  PENDING = "PENDING",
5474
5449
  /** Capture operation succeeded. */
@@ -5477,7 +5452,7 @@ declare enum AuthorizationCaptureStatus {
5477
5452
  FAILED = "FAILED"
5478
5453
  }
5479
5454
  /** @enumType */
5480
- type AuthorizationCaptureStatusWithLiterals = AuthorizationCaptureStatus | 'UNKNOWN_STATUS' | 'PENDING' | 'SUCCEEDED' | 'FAILED';
5455
+ type AuthorizationCaptureStatusWithLiterals = AuthorizationCaptureStatus | 'PENDING' | 'SUCCEEDED' | 'FAILED';
5481
5456
  interface AuthorizationActionFailureDetails {
5482
5457
  /** @maxLength 100 */
5483
5458
  failureCode?: string;
@@ -5493,7 +5468,6 @@ interface AuthorizationVoid {
5493
5468
  reason?: ReasonWithLiterals;
5494
5469
  }
5495
5470
  declare enum AuthorizationVoidStatus {
5496
- UNKNOWN_STATUS = "UNKNOWN_STATUS",
5497
5471
  /** Void operation still in progress. */
5498
5472
  PENDING = "PENDING",
5499
5473
  /** Void operation succeeded. */
@@ -5502,17 +5476,16 @@ declare enum AuthorizationVoidStatus {
5502
5476
  FAILED = "FAILED"
5503
5477
  }
5504
5478
  /** @enumType */
5505
- type AuthorizationVoidStatusWithLiterals = AuthorizationVoidStatus | 'UNKNOWN_STATUS' | 'PENDING' | 'SUCCEEDED' | 'FAILED';
5479
+ type AuthorizationVoidStatusWithLiterals = AuthorizationVoidStatus | 'PENDING' | 'SUCCEEDED' | 'FAILED';
5506
5480
  /** Reason the authorization was voided. */
5507
5481
  declare enum Reason {
5508
- UNKNOWN_REASON = "UNKNOWN_REASON",
5509
5482
  /** Authorization was voided by user. */
5510
5483
  MANUAL = "MANUAL",
5511
5484
  /** Authorization passed execution date. */
5512
5485
  SCHEDULED = "SCHEDULED"
5513
5486
  }
5514
5487
  /** @enumType */
5515
- type ReasonWithLiterals = Reason | 'UNKNOWN_REASON' | 'MANUAL' | 'SCHEDULED';
5488
+ type ReasonWithLiterals = Reason | 'MANUAL' | 'SCHEDULED';
5516
5489
  interface V1ScheduledAction {
5517
5490
  /** Type of the action. */
5518
5491
  actionType?: ActionTypeWithLiterals;
@@ -5520,12 +5493,11 @@ interface V1ScheduledAction {
5520
5493
  executionDate?: Date | null;
5521
5494
  }
5522
5495
  declare enum ActionType {
5523
- UNKNOWN_ACTION_TYPE = "UNKNOWN_ACTION_TYPE",
5524
5496
  VOID = "VOID",
5525
5497
  CAPTURE = "CAPTURE"
5526
5498
  }
5527
5499
  /** @enumType */
5528
- type ActionTypeWithLiterals = ActionType | 'UNKNOWN_ACTION_TYPE' | 'VOID' | 'CAPTURE';
5500
+ type ActionTypeWithLiterals = ActionType | 'VOID' | 'CAPTURE';
5529
5501
  interface Chargeback {
5530
5502
  /**
5531
5503
  * Chargeback ID.
@@ -5571,14 +5543,13 @@ interface Chargeback {
5571
5543
  externalId?: string | null;
5572
5544
  }
5573
5545
  declare enum ChargebackStatus {
5574
- UNSPECIFIED = "UNSPECIFIED",
5575
5546
  /** Chargeback was approved. */
5576
5547
  APPROVED = "APPROVED",
5577
5548
  /** Chargeback was reversed. */
5578
5549
  REVERSED = "REVERSED"
5579
5550
  }
5580
5551
  /** @enumType */
5581
- type ChargebackStatusWithLiterals = ChargebackStatus | 'UNSPECIFIED' | 'APPROVED' | 'REVERSED';
5552
+ type ChargebackStatusWithLiterals = ChargebackStatus | 'APPROVED' | 'REVERSED';
5582
5553
  interface PaymentMethodName {
5583
5554
  /**
5584
5555
  * Translated payment method name in buyer language.
@@ -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 RecordManuallyCollectedPaymentOptions, f as RecordManuallyCollectedPaymentApplicationErrors, g as PaymentCollectionMarkOrderAsPaidOptions, M as MarkOrderAsPaidResponse, h as PaymentCollectionMarkOrderAsPaidApplicationErrors, i as BulkMarkOrdersAsPaidResponse, j as GetRefundabilityStatusResponse, k as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, l as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, m as ChargeMembershipsOptions, n as PaymentRefund, T as TriggerRefundOptions, o as TriggerRefundResponse, p as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, q as VoidAuthorizedPaymentsApplicationErrors, r as PaymentCapture, s as CaptureAuthorizedPaymentsResponse, t as CaptureAuthorizedPaymentsApplicationErrors, u as GetOrderApplicationErrors, v as OrderSearch, w as SearchOrdersResponse, x as CreateOrderOptions, y as CreateOrderApplicationErrors, U as UpdateOrder, z as UpdateOrderApplicationErrors, A as MaskedOrder, D as BulkUpdateOrdersOptions, E as BulkUpdateOrdersResponse, F as UpdateOrderLineItemIdentifiers, H as UpdateOrderLineItem, J as UpdateOrderLineItemResponse, K as PublicActivity, L as AddActivityResponse, N as AddActivitiesOptions, Q as AddActivitiesResponse, W as UpdateActivityIdentifiers, X as UpdateActivityResponse, Y as DeleteActivityIdentifiers, Z as DeleteActivityResponse, _ as CancelOrderOptions, $ as CancelOrderResponse, a0 as CancelOrderApplicationErrors, a1 as OrderStatusWithLiterals, a2 as UpdateOrderStatusResponse, a3 as UpdateOrderStatusApplicationErrors, a4 as AggregateOrdersOptions, a5 as AggregateOrdersResponse, a6 as BulkUpdateOrderTagsOptions, a7 as BulkUpdateOrderTagsResponse, a8 as OrderApprovedEnvelope, a9 as OrderCanceledEnvelope, aa as OrderCommittedEnvelope, ab as OrderCreatedEnvelope, ac as OrderFulfilledEnvelope, ad as OrderPaymentStatusUpdatedEnvelope, ae as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-lXc4bLyX.mjs';
3
- export { dZ as AccountInfo, jd as AccountInfoMetadata, dV as ActionEvent, aZ as ActionType, jZ as ActionTypeWithLiterals, cc as Activity, cd as ActivityContentOneOf, aw as ActivityType, jw as ActivityTypeWithLiterals, hR as AddActivitiesRequest, hP as AddActivityRequest, hs as AddInternalActivityRequest, hO as AddInternalActivityResponse, ff as AddToAutomationMigrationPopulationRequest, fg as AddToAutomationMigrationPopulationResponse, da as AdditionalFee, dI as AdditionalFeeDelta, dJ as AdditionalFeeDeltaDeltaOneOf, eq as AdditionalFeeRefund, aA as AdditionalFeeSource, jA as AdditionalFeeSourceWithLiterals, bO as Address, iL as AddressDescription, bQ as AddressLocation, bN as AddressWithContact, al as AdjustmentType, jm as AdjustmentTypeWithLiterals, io as AggregateOrdersRequest, g6 as AggregatedRefundSummary, fw as ApplicationError, c2 as AppliedDiscount, dG as AppliedDiscountDelta, dH as AppliedDiscountDeltaDeltaOneOf, c3 as AppliedDiscountDiscountSourceOneOf, h3 as ArchiveOrderRequest, h4 as ArchiveOrderResponse, eK as Asset, ay as AttributionSource, jy as AttributionSourceWithLiterals, fV as AuthorizationActionFailureDetails, fU as AuthorizationCapture, aW as AuthorizationCaptureStatus, jW as AuthorizationCaptureStatusWithLiterals, fT as AuthorizationDetails, fW as AuthorizationVoid, aX as AuthorizationVoidStatus, jX as AuthorizationVoidStatusWithLiterals, cD as AuthorizedPaymentCaptured, cC as AuthorizedPaymentCreated, cE as AuthorizedPaymentVoided, d8 as Balance, d7 as BalanceSummary, jb as BaseEventMetadata, iV as BigDecimalWrapper, bz as BillingAdjustment, bA as BillingAdjustmentPriceSummary, fx as BulkActionMetadata, h7 as BulkArchiveOrdersByFilterRequest, h8 as BulkArchiveOrdersByFilterResponse, h5 as BulkArchiveOrdersRequest, h6 as BulkArchiveOrdersResponse, dO as BulkDeleteImportedOrdersRequest, i3 as BulkMarkAsFulfilledByFilterRequest, i4 as BulkMarkAsFulfilledByFilterResponse, i1 as BulkMarkAsFulfilledRequest, i2 as BulkMarkAsFulfilledResponse, i9 as BulkMarkAsUnfulfilledByFilterRequest, ia as BulkMarkAsUnfulfilledByFilterResponse, i7 as BulkMarkAsUnfulfilledRequest, i8 as BulkMarkAsUnfulfilledResponse, ft as BulkMarkOrdersAsPaidRequest, fu as BulkOrderResult, e4 as BulkSendBuyerPickupConfirmationEmailsRequest, e5 as BulkSendBuyerPickupConfirmationEmailsResponse, e8 as BulkSendBuyerShippingConfirmationEmailsRequest, e9 as BulkSendBuyerShippingConfirmationEmailsResponse, ib as BulkSetBusinessLocationRequest, ic as BulkSetBusinessLocationResponse, id as BulkSetBusinessLocationResult, hd as BulkUnArchiveOrdersByFilterRequest, he as BulkUnArchiveOrdersByFilterResponse, hb as BulkUnArchiveOrdersRequest, hc as BulkUnArchiveOrdersResponse, is as BulkUpdateOrderTagsRequest, iv as BulkUpdateOrderTagsResult, gV as BulkUpdateOrdersRequest, bJ as BuyerInfo, bK as BuyerInfoIdOneOf, hg as BuyerInfoUpdate, ga as CalculateRefundItemRequest, gc as CalculateRefundItemResponse, g9 as CalculateRefundRequest, gb as CalculateRefundResponse, j3 as CalculatedTax, j2 as CalculatedTaxes, iD as Cancel, hZ as CancelOrderRequest, ge as CaptureAuthorizedPaymentsRequest, d9 as CashRounding, g2 as CashRoundingDetails, bd as CatalogReference, d5 as ChannelInfo, az as ChannelType, jz as ChannelTypeWithLiterals, fD as ChargeMembershipsRequest, fH as ChargeMembershipsResponse, gf as ChargeSavedPaymentMethodRequest, gg as ChargeSavedPaymentMethodResponse, aD as ChargeType, jD as ChargeTypeWithLiterals, fY as Chargeback, d1 as ChargebackCreated, d2 as ChargebackReversed, a_ as ChargebackStatus, j_ as ChargebackStatusWithLiterals, fC as ChargedBy, bj as Color, gW as CommitDeltasRequest, h2 as CommitDeltasResponse, dA as CommittedDiffs, dB as CommittedDiffsShippingUpdateInfoOneOf, iO as CommonAddress, iP as CommonAddressStreetOneOf, kb as CommonSearchWithEntityContext, iN as Company, iC as Complete, c4 as Coupon, gO as CreateOrderRequest, gS as CreateOrderResponse, fB as CreatePaymentGatewayOrderRequest, d3 as CreatedBy, d4 as CreatedByStringOneOf, cS as CreditCardDetails, fS as CreditCardPaymentMethodDetails, bL as CurrencyConversionDetails, gE as CursorPaging, gN as CursorPagingMetadata, gL as CursorSearch, gM as CursorSearchPagingMethodOneOf, gH as Cursors, ce as CustomActivity, di as CustomAllowedActions, d6 as CustomField, b7 as CustomFieldGroup, k7 as CustomFieldGroupWithLiterals, j8 as CustomFieldValue, iI as Customer, iq as DecrementData, ip as DecrementItemsQuantityRequest, ir as DecrementItemsQuantityResponse, fl as DelayedCaptureSettings, hT as DeleteActivityRequest, gm as DeleteByFilterOperation, gl as DeleteByIdsOperation, eO as DeleteContext, aL as DeleteStatus, jL as DeleteStatusWithLiterals, bU as DeliveryLogistics, bV as DeliveryLogisticsAddressOneOf, bY as DeliveryTimeSlot, aE as DeltaPaymentOptionType, jE as DeltaPaymentOptionTypeWithLiterals, ja as Deposit, b9 as DepositType, k9 as DepositTypeWithLiterals, be as DescriptionLine, bg as DescriptionLineDescriptionLineValueOneOf, bh as DescriptionLineName, af as DescriptionLineType, jg as DescriptionLineTypeWithLiterals, bf as DescriptionLineValueOneOf, gv as DiffmatokyPayload, bt as DigitalFile, bm as Dimensions, ag as DimensionsUnit, jh as DimensionsUnitWithLiterals, j0 as Discount, j1 as DiscountOneDiscountTypeOneOf, au as DiscountReason, ju as DiscountReasonWithLiterals, c7 as DiscountRule, c8 as DiscountRuleName, at as DiscountType, jt as DiscountTypeWithLiterals, dP as DomainEvent, dQ as DomainEventBodyOneOf, hA as DownloadLinkSent, ck as DraftOrderChangesApplied, dK as DraftOrderCommitSettings, gX as DraftOrderDiffs, g_ as DraftOrderDiffsBillingUpdateInfoOneOf, gZ as DraftOrderDiffsBuyerUpdateInfoOneOf, g$ as DraftOrderDiffsRecipientUpdateInfoOneOf, gY as DraftOrderDiffsShippingUpdateInfoOneOf, fm as Duration, aO as DurationUnit, jO as DurationUnitWithLiterals, fb as EditorlessAssigned, fc as EditorlessUnassigned, iJ as Email, hJ as EmailEdited, eH as Empty, dR as EntityCreatedEvent, dU as EntityDeletedEvent, dT as EntityUpdatedEvent, gw as ErrorInformation, jc as EventMetadata, bF as ExtendedFields, c_ as ExternalReceipt, g1 as ExternalReceiptInfo, bk as FocalPoint, dl as FormIdentifier, dk as FormInfo, by as FreeTrialPeriod, hH as FulfillerEmailSent, ao as FulfillmentStatus, dx as FulfillmentStatusUpdated, jp as FulfillmentStatusWithLiterals, db as FulfillmentStatusesAggregate, bR as FullAddressContactDetails, gx as GetOrderRequest, gy as GetOrderResponse, fn as GetPaymentCollectabilityStatusRequest, fy as GetRefundabilityStatusRequest, il as GetShipmentsRequest, im as GetShipmentsResponse, f_ as GiftCardPaymentDetails, cJ as GiftCardPaymentRefund, fd as HasCustomEmailConfigurationsRequest, fe as HasCustomEmailConfigurationsResponse, iG as IdAndVersion, dX as IdentificationData, dY as IdentificationDataIdOneOf, dM as ImportOrderRequest, dv as ImportedOrderDeleted, ht as InternalActivity, hu as InternalActivityContentOneOf, gj as InternalDocument, gn as InternalDocumentUpdateByFilterOperation, gk as InternalDocumentUpdateOperation, gz as InternalQueryOrdersRequest, gF as InternalQueryOrdersResponse, go as InternalUpdateExistingOperation, aF as InventoryAction, jF as InventoryActionWithLiterals, dL as InventoryUpdateDetails, hF as InvoiceAdded, iS as InvoiceDates, j7 as InvoiceDynamicPriceTotals, iH as InvoiceFields, hG as InvoiceSent, iF as InvoiceSentEvent, ba as InvoiceStatus, ka as InvoiceStatusWithLiterals, j5 as InvoicesPayment, fh as IsInAutomationMigrationPopulationRequest, fi as IsInAutomationMigrationPopulationResponse, dC as ItemChangedDetails, ca as ItemCombination, cb as ItemCombinationLineItem, fv as ItemMetadata, bI as ItemModifier, bq as ItemTaxFullDetails, bn as ItemType, bo as ItemTypeItemTypeDataOneOf, ah as ItemTypePreset, ji as ItemTypePresetWithLiterals, i$ as ItemizedFee, aj as JurisdictionType, jk as JurisdictionTypeWithLiterals, iU as LineItem, cw as LineItemAmount, cn as LineItemChanges, dE as LineItemDelta, dF as LineItemDeltaDeltaOneOf, cr as LineItemDescriptionLineChange, c9 as LineItemDiscount, cj as LineItemExchangeData, iY as LineItemMetaData, cs as LineItemModifiersChange, cp as LineItemPriceChange, cq as LineItemProductNameChange, co as LineItemQuantityChange, av as LineItemQuantityChangeType, jv as LineItemQuantityChangeTypeWithLiterals, ep as LineItemRefund, g8 as LineItemRefundSummary, iW as LineItemTax, bs as LineItemTaxBreakdown, br as LineItemTaxInfo, hV as LineItemUpdate, iT as LineItems, iZ as Locale, de as Location, bC as LocationAndQuantity, cx as ManagedAdditionalFee, cu as ManagedDiscount, ct as ManagedLineItem, aT as ManuallyRefundableReason, jT as ManuallyRefundableReasonWithLiterals, h$ as MarkAsFulfilledRequest, i0 as MarkAsFulfilledResponse, i5 as MarkAsUnfulfilledRequest, i6 as MarkAsUnfulfilledResponse, fs as MarkOrderAsPaidRequest, hX as MarkOrderAsSeenByHumanRequest, hY as MarkOrderAsSeenByHumanResponse, hq as MaskedOrderLineItem, fE as MembershipChargeItem, fF as MembershipName, f$ as MembershipPaymentDetails, cK as MembershipPaymentRefund, a$ as MembershipPaymentStatus, j$ as MembershipPaymentStatusWithLiterals, cf as MerchantComment, c5 as MerchantDiscount, c6 as MerchantDiscountMerchantDiscountReasonOneOf, dW as MessageEnvelope, j6 as MetaData, eI as MetaSiteSpecialEvent, eJ as MetaSiteSpecialEventPayloadOneOf, bG as ModifierGroup, aK as Namespace, eY as NamespaceChanged, jK as NamespaceWithLiterals, ci as NewExchangeOrderCreated, aS as NonRefundableReason, jS as NonRefundableReasonWithLiterals, f1 as OdeditorAssigned, f2 as OdeditorUnassigned, aB as OrderActionType, jB as OrderActionTypeWithLiterals, ax as OrderActivityTypeEnumActivityType, jx as OrderActivityTypeEnumActivityTypeWithLiterals, b3 as OrderApprovalStrategy, k3 as OrderApprovalStrategyWithLiterals, dp as OrderApproved, hz as OrderCanceled, dy as OrderCanceledEventOrderCanceled, cl as OrderChange, cm as OrderChangeValueOneOf, gR as OrderCreateNotifications, ch as OrderCreatedFromExchange, gP as OrderCreationSettings, gQ as OrderCreationSettingsEditableByOneOf, dz as OrderDeltasCommitted, hx as OrderFulfilled, du as OrderImported, ds as OrderItemsRestocked, bb as OrderLineItem, dD as OrderLineItemChangedDetails, hy as OrderNotFulfilled, hw as OrderPaid, hL as OrderPartiallyPaid, hM as OrderPending, hv as OrderPlaced, cg as OrderRefunded, hN as OrderRejected, dr as OrderRejectedEventOrderRejected, je as OrderSearchSpec, df as OrderSettings, dg as OrderSettingsAllowedActionsOneOf, dh as OrderSettingsEditableByOneOf, as as OrderStatus, c1 as OrderTaxBreakdown, c0 as OrderTaxInfo, fM as OrderTransactions, dq as OrdersExperiments, aM as Origin, jM as OriginWithLiterals, dj as OwnerApps, fN as Payment, cT as PaymentCanceled, cU as PaymentCanceledPaymentDetailsOneOf, aP as PaymentCollectabilityStatus, jP as PaymentCollectabilityStatusWithLiterals, cV as PaymentDeclined, cW as PaymentDeclinedPaymentDetailsOneOf, fZ as PaymentMethodName, ai as PaymentOptionType, jj as PaymentOptionTypeWithLiterals, fO as PaymentPaymentDetailsOneOf, cO as PaymentPending, cP as PaymentPendingPaymentDetailsOneOf, fP as PaymentReceiptInfoOneOf, cM as PaymentRefundFailed, cL as PaymentRefunded, an as PaymentStatus, dw as PaymentStatusUpdated, jo as PaymentStatusWithLiterals, j4 as Payments, iM as Phone, bl as PhysicalProperties, f3 as PicassoAssigned, f4 as PicassoUnassigned, bX as PickupAddress, bW as PickupDetails, ar as PickupMethod, js as PickupMethodWithLiterals, hK as PickupReadyEmailSent, b4 as Placement, k4 as PlacementWithLiterals, bi as PlainTextValue, dn as PlatformFee, dm as PlatformFeeSummary, gD as PlatformPaging, gG as PlatformPagingMetadata, gA as PlatformQuery, gB as PlatformQueryPagingMethodOneOf, aQ as PredefinedPaymentMethod, jQ as PredefinedPaymentMethodWithLiterals, fj as PreparePaymentCollectionRequest, ez as PreviewBuyerConfirmationEmailRequest, eA as PreviewBuyerConfirmationEmailResponse, ex as PreviewBuyerPaymentsReceivedEmailRequest, ey as PreviewBuyerPaymentsReceivedEmailResponse, eB as PreviewBuyerPickupConfirmationEmailRequest, eC as PreviewBuyerPickupConfirmationEmailResponse, et as PreviewCancelEmailRequest, eu as PreviewCancelEmailResponse, ev as PreviewCancelRefundEmailRequest, ew as PreviewCancelRefundEmailResponse, ek as PreviewEmailByTypeRequest, el as PreviewEmailByTypeResponse, aH as PreviewEmailType, jH as PreviewEmailTypeWithLiterals, em as PreviewRefundEmailRequest, es as PreviewRefundEmailResponse, eF as PreviewResendDownloadLinksEmailRequest, eG as PreviewResendDownloadLinksEmailResponse, eD as PreviewShippingConfirmationEmailRequest, eE as PreviewShippingConfirmationEmailResponse, bB as PriceDescription, bM as PriceSummary, bc as ProductName, hQ as PublicActivityContentOneOf, gI as QueryOrderRequest, gJ as QueryOrderResponse, iK as QuotesAddress, aY as Reason, jY as ReasonWithLiterals, cX as ReceiptCreated, cY as ReceiptCreatedReceiptInfoOneOf, c$ as ReceiptSent, d0 as ReceiptSentReceiptInfoOneOf, fo as RecordManuallyCollectedPaymentRequest, fr as RecordManuallyCollectedPaymentResponse, fk as RedirectUrls, g3 as Refund, en as RefundDetails, cF as RefundInitiated, eo as RefundItem, g7 as RefundItemsBreakdown, fJ as RefundSideEffects, b0 as RefundStatus, g5 as RefundStatusInfo, k0 as RefundStatusWithLiterals, g4 as RefundTransaction, fz as Refundability, fA as RefundabilityAdditionalRefundabilityInfoOneOf, aR as RefundableStatus, jR as RefundableStatusWithLiterals, cN as RefundedAsStoreCredit, cG as RefundedPayment, cH as RefundedPaymentKindOneOf, cQ as RegularPayment, fQ as RegularPaymentDetails, fR as RegularPaymentDetailsPaymentMethodDetailsOneOf, cR as RegularPaymentPaymentMethodDetailsOneOf, cI as RegularPaymentRefund, iE as Reschedule, fK as RestockInfo, fL as RestockItem, bp as RestockLocation, aU as RestockType, jU as RestockTypeWithLiterals, dS as RestoreInfo, cB as SavedPaymentMethod, aN as ScheduledAction, jN as ScheduledActionWithLiterals, gK as SearchOrdersRequest, d_ as SendBuyerConfirmationEmailRequest, d$ as SendBuyerConfirmationEmailResponse, e0 as SendBuyerPaymentsReceivedEmailRequest, e1 as SendBuyerPaymentsReceivedEmailResponse, e2 as SendBuyerPickupConfirmationEmailRequest, e3 as SendBuyerPickupConfirmationEmailResponse, e6 as SendBuyerShippingConfirmationEmailRequest, e7 as SendBuyerShippingConfirmationEmailResponse, ec as SendCancelRefundEmailRequest, ed as SendCancelRefundEmailResponse, eg as SendFulfillmentEmailRequest, eh as SendFulfillmentEmailResponse, ea as SendMerchantOrderReceivedNotificationRequest, eb as SendMerchantOrderReceivedNotificationResponse, ei as SendMerchantOrderReceivedPushRequest, ej as SendMerchantOrderReceivedPushResponse, iw as SendOrderUpdatedDomainEventRequest, ix as SendOrderUpdatedDomainEventResponse, ee as SendRefundEmailRequest, ef as SendRefundEmailResponse, fG as ServiceProperties, eU as ServiceProvisioned, eV as ServiceRemoved, dN as SetOrderNumberCounterRequest, hI as ShippingAddressEdited, hE as ShippingConfirmationEmailSent, cA as ShippingInformation, cz as ShippingInformationChange, bZ as ShippingPrice, er as ShippingRefund, b_ as ShippingRegion, eL as SiteCreated, aJ as SiteCreatedContext, jJ as SiteCreatedContextWithLiterals, eN as SiteDeleted, eX as SiteHardDeleted, eS as SiteMarkedAsTemplate, eT as SiteMarkedAsWixSite, eQ as SitePublished, f0 as SitePurgedExternally, eW as SiteRenamed, eM as SiteTransferred, eP as SiteUndeleted, eR as SiteUnpublished, e$ as SiteUrlChanged, b2 as SortOrder, k2 as SortOrderWithLiterals, gC as Sorting, iX as Source, b6 as SourceType, k6 as SourceTypeWithLiterals, aC as SpecificItemsCouponBehavior, jC as SpecificItemsCouponBehaviorWithLiterals, iR as StandardDetails, aI as State, jI as StateWithLiterals, bP as StreetAddress, eZ as StudioAssigned, f7 as StudioTwoAssigned, f8 as StudioTwoUnassigned, e_ as StudioUnassigned, iQ as Subdivision, b5 as SubdivisionType, k5 as SubdivisionTypeWithLiterals, bw as SubscriptionDescription, ak as SubscriptionFrequency, jl as SubscriptionFrequencyWithLiterals, bu as SubscriptionInfo, bx as SubscriptionSettings, bv as SubscriptionTitle, dd as TagList, dc as Tags, iu as TagsTagList, it as TagsTags, iy as Task, iA as TaskAction, iB as TaskActionActionOneOf, iz as TaskKey, b$ as TaxSummary, bD as TaxableAddress, bE as TaxableAddressTaxableAddressDataOneOf, am as TaxableAddressType, jn as TaxableAddressTypeWithLiterals, i_ as TotalPrice, cy as TotalPriceChange, hD as TrackingLinkAdded, hB as TrackingNumberAdded, hC as TrackingNumberEdited, aV as TransactionStatus, jV as TransactionStatusWithLiterals, bH as TranslatableString, cv as TranslatedValue, fI as TriggerRefundRequest, gu as TriggerReindexOrderRequest, gs as TriggerReindexRequest, gt as TriggerReindexResponse, h9 as UnArchiveOrderRequest, ha as UnArchiveOrderResponse, hS as UpdateActivityRequest, hm as UpdateBillingContactDetailsRequest, hn as UpdateBillingContactDetailsResponse, hi as UpdateBuyerEmailRequest, hj as UpdateBuyerEmailResponse, hf as UpdateBuyerInfoRequest, hh as UpdateBuyerInfoResponse, gh as UpdateInternalDocumentsEvent, gi as UpdateInternalDocumentsEventOperationOneOf, hU as UpdateLineItemsDescriptionLinesRequest, hW as UpdateLineItemsDescriptionLinesResponse, ho as UpdateOrderLineItemRequest, hp as UpdateOrderLineItemsRequest, hr as UpdateOrderLineItemsResponse, gT as UpdateOrderRequest, gU as UpdateOrderResponse, hk as UpdateOrderShippingAddressRequest, hl as UpdateOrderShippingAddressResponse, h_ as UpdateOrderStatusRequest, fp as UserDefinedPaymentMethodName, fq as UserDefinedPaymentMethodNameKindOneOf, fa as UserDomainMediaDisabled, f9 as UserDomainMediaEnabled, ih as V1BulkMarkOrdersAsPaidRequest, ii as V1BulkMarkOrdersAsPaidResponse, ij as V1CreatePaymentGatewayOrderRequest, ik as V1CreatePaymentGatewayOrderResponse, h0 as V1LineItemDelta, h1 as V1LineItemDeltaDeltaOneOf, ie as V1MarkOrderAsPaidRequest, ig as V1MarkOrderAsPaidResponse, dt as V1RestockItem, fX as V1ScheduledAction, bT as V1ShippingInformation, j9 as Value, b8 as ValueType, k8 as ValueTypeWithLiterals, bS as VatId, aq as VatType, jr as VatTypeWithLiterals, gq as VersionedDeleteByIdsOperation, gr as VersionedDocumentId, gp as VersionedDocumentUpdateOperation, b1 as VersioningMode, k1 as VersioningModeWithLiterals, gd as VoidAuthorizedPaymentsRequest, aG as WebhookIdentityType, jG as WebhookIdentityTypeWithLiterals, ap as WeightUnit, jq as WeightUnitWithLiterals, cZ as WixReceipt, g0 as WixReceiptInfo, f5 as WixelAssigned, f6 as WixelUnassigned, jf as utils } from './ecom-v1-order-orders.universal-lXc4bLyX.mjs';
2
+ import { O as Order, I as ImportOrderResponse, S as SetOrderNumberCounterOptions, a as SetOrderNumberCounterResponse, B as BulkDeleteImportedOrdersOptions, b as BulkDeleteImportedOrdersResponse, P as Price, c as PreparePaymentCollectionOptions, d as PreparePaymentCollectionResponse, e as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, R as RecordManuallyCollectedPaymentOptions, f as RecordManuallyCollectedPaymentApplicationErrors, g as PaymentCollectionMarkOrderAsPaidOptions, M as MarkOrderAsPaidResponse, h as PaymentCollectionMarkOrderAsPaidApplicationErrors, i as BulkMarkOrdersAsPaidResponse, j as GetRefundabilityStatusResponse, k as PaymentCollectionCreatePaymentGatewayOrderOptions, C as CreatePaymentGatewayOrderResponse, l as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, m as ChargeMembershipsOptions, n as PaymentRefund, T as TriggerRefundOptions, o as TriggerRefundResponse, p as TriggerRefundApplicationErrors, V as VoidAuthorizedPaymentsResponse, q as VoidAuthorizedPaymentsApplicationErrors, r as PaymentCapture, s as CaptureAuthorizedPaymentsResponse, t as CaptureAuthorizedPaymentsApplicationErrors, u as GetOrderApplicationErrors, v as OrderSearch, w as SearchOrdersResponse, x as CreateOrderOptions, y as CreateOrderApplicationErrors, U as UpdateOrder, z as UpdateOrderApplicationErrors, A as MaskedOrder, D as BulkUpdateOrdersOptions, E as BulkUpdateOrdersResponse, F as UpdateOrderLineItemIdentifiers, H as UpdateOrderLineItem, J as UpdateOrderLineItemResponse, K as PublicActivity, L as AddActivityResponse, N as AddActivitiesOptions, Q as AddActivitiesResponse, W as UpdateActivityIdentifiers, X as UpdateActivityResponse, Y as DeleteActivityIdentifiers, Z as DeleteActivityResponse, _ as CancelOrderOptions, $ as CancelOrderResponse, a0 as CancelOrderApplicationErrors, a1 as OrderStatusWithLiterals, a2 as UpdateOrderStatusResponse, a3 as UpdateOrderStatusApplicationErrors, a4 as AggregateOrdersOptions, a5 as AggregateOrdersResponse, a6 as BulkUpdateOrderTagsOptions, a7 as BulkUpdateOrderTagsResponse, a8 as OrderApprovedEnvelope, a9 as OrderCanceledEnvelope, aa as OrderCommittedEnvelope, ab as OrderCreatedEnvelope, ac as OrderFulfilledEnvelope, ad as OrderPaymentStatusUpdatedEnvelope, ae as OrderUpdatedEnvelope } from './ecom-v1-order-orders.universal-UePQMlea.mjs';
3
+ export { dZ as AccountInfo, jd as AccountInfoMetadata, dV as ActionEvent, aZ as ActionType, jZ as ActionTypeWithLiterals, cc as Activity, cd as ActivityContentOneOf, aw as ActivityType, jw as ActivityTypeWithLiterals, hR as AddActivitiesRequest, hP as AddActivityRequest, hs as AddInternalActivityRequest, hO as AddInternalActivityResponse, ff as AddToAutomationMigrationPopulationRequest, fg as AddToAutomationMigrationPopulationResponse, da as AdditionalFee, dI as AdditionalFeeDelta, dJ as AdditionalFeeDeltaDeltaOneOf, eq as AdditionalFeeRefund, aA as AdditionalFeeSource, jA as AdditionalFeeSourceWithLiterals, bO as Address, iL as AddressDescription, bQ as AddressLocation, bN as AddressWithContact, al as AdjustmentType, jm as AdjustmentTypeWithLiterals, io as AggregateOrdersRequest, g6 as AggregatedRefundSummary, fw as ApplicationError, c2 as AppliedDiscount, dG as AppliedDiscountDelta, dH as AppliedDiscountDeltaDeltaOneOf, c3 as AppliedDiscountDiscountSourceOneOf, h3 as ArchiveOrderRequest, h4 as ArchiveOrderResponse, eK as Asset, ay as AttributionSource, jy as AttributionSourceWithLiterals, fV as AuthorizationActionFailureDetails, fU as AuthorizationCapture, aW as AuthorizationCaptureStatus, jW as AuthorizationCaptureStatusWithLiterals, fT as AuthorizationDetails, fW as AuthorizationVoid, aX as AuthorizationVoidStatus, jX as AuthorizationVoidStatusWithLiterals, cD as AuthorizedPaymentCaptured, cC as AuthorizedPaymentCreated, cE as AuthorizedPaymentVoided, d8 as Balance, d7 as BalanceSummary, jb as BaseEventMetadata, iV as BigDecimalWrapper, bz as BillingAdjustment, bA as BillingAdjustmentPriceSummary, fx as BulkActionMetadata, h7 as BulkArchiveOrdersByFilterRequest, h8 as BulkArchiveOrdersByFilterResponse, h5 as BulkArchiveOrdersRequest, h6 as BulkArchiveOrdersResponse, dO as BulkDeleteImportedOrdersRequest, i3 as BulkMarkAsFulfilledByFilterRequest, i4 as BulkMarkAsFulfilledByFilterResponse, i1 as BulkMarkAsFulfilledRequest, i2 as BulkMarkAsFulfilledResponse, i9 as BulkMarkAsUnfulfilledByFilterRequest, ia as BulkMarkAsUnfulfilledByFilterResponse, i7 as BulkMarkAsUnfulfilledRequest, i8 as BulkMarkAsUnfulfilledResponse, ft as BulkMarkOrdersAsPaidRequest, fu as BulkOrderResult, e4 as BulkSendBuyerPickupConfirmationEmailsRequest, e5 as BulkSendBuyerPickupConfirmationEmailsResponse, e8 as BulkSendBuyerShippingConfirmationEmailsRequest, e9 as BulkSendBuyerShippingConfirmationEmailsResponse, ib as BulkSetBusinessLocationRequest, ic as BulkSetBusinessLocationResponse, id as BulkSetBusinessLocationResult, hd as BulkUnArchiveOrdersByFilterRequest, he as BulkUnArchiveOrdersByFilterResponse, hb as BulkUnArchiveOrdersRequest, hc as BulkUnArchiveOrdersResponse, is as BulkUpdateOrderTagsRequest, iv as BulkUpdateOrderTagsResult, gV as BulkUpdateOrdersRequest, bJ as BuyerInfo, bK as BuyerInfoIdOneOf, hg as BuyerInfoUpdate, ga as CalculateRefundItemRequest, gc as CalculateRefundItemResponse, g9 as CalculateRefundRequest, gb as CalculateRefundResponse, j3 as CalculatedTax, j2 as CalculatedTaxes, iD as Cancel, hZ as CancelOrderRequest, ge as CaptureAuthorizedPaymentsRequest, d9 as CashRounding, g2 as CashRoundingDetails, bd as CatalogReference, d5 as ChannelInfo, az as ChannelType, jz as ChannelTypeWithLiterals, fD as ChargeMembershipsRequest, fH as ChargeMembershipsResponse, gf as ChargeSavedPaymentMethodRequest, gg as ChargeSavedPaymentMethodResponse, aD as ChargeType, jD as ChargeTypeWithLiterals, fY as Chargeback, d1 as ChargebackCreated, d2 as ChargebackReversed, a_ as ChargebackStatus, j_ as ChargebackStatusWithLiterals, fC as ChargedBy, bj as Color, gW as CommitDeltasRequest, h2 as CommitDeltasResponse, dA as CommittedDiffs, dB as CommittedDiffsShippingUpdateInfoOneOf, iO as CommonAddress, iP as CommonAddressStreetOneOf, kb as CommonSearchWithEntityContext, iN as Company, iC as Complete, c4 as Coupon, gO as CreateOrderRequest, gS as CreateOrderResponse, fB as CreatePaymentGatewayOrderRequest, d3 as CreatedBy, d4 as CreatedByStringOneOf, cS as CreditCardDetails, fS as CreditCardPaymentMethodDetails, bL as CurrencyConversionDetails, gE as CursorPaging, gN as CursorPagingMetadata, gL as CursorSearch, gM as CursorSearchPagingMethodOneOf, gH as Cursors, ce as CustomActivity, di as CustomAllowedActions, d6 as CustomField, b7 as CustomFieldGroup, k7 as CustomFieldGroupWithLiterals, j8 as CustomFieldValue, iI as Customer, iq as DecrementData, ip as DecrementItemsQuantityRequest, ir as DecrementItemsQuantityResponse, fl as DelayedCaptureSettings, hT as DeleteActivityRequest, gm as DeleteByFilterOperation, gl as DeleteByIdsOperation, eO as DeleteContext, aL as DeleteStatus, jL as DeleteStatusWithLiterals, bU as DeliveryLogistics, bV as DeliveryLogisticsAddressOneOf, bY as DeliveryTimeSlot, aE as DeltaPaymentOptionType, jE as DeltaPaymentOptionTypeWithLiterals, ja as Deposit, b9 as DepositType, k9 as DepositTypeWithLiterals, be as DescriptionLine, bg as DescriptionLineDescriptionLineValueOneOf, bh as DescriptionLineName, af as DescriptionLineType, jg as DescriptionLineTypeWithLiterals, bf as DescriptionLineValueOneOf, gv as DiffmatokyPayload, bt as DigitalFile, bm as Dimensions, ag as DimensionsUnit, jh as DimensionsUnitWithLiterals, j0 as Discount, j1 as DiscountOneDiscountTypeOneOf, au as DiscountReason, ju as DiscountReasonWithLiterals, c7 as DiscountRule, c8 as DiscountRuleName, at as DiscountType, jt as DiscountTypeWithLiterals, dP as DomainEvent, dQ as DomainEventBodyOneOf, hA as DownloadLinkSent, ck as DraftOrderChangesApplied, dK as DraftOrderCommitSettings, gX as DraftOrderDiffs, g_ as DraftOrderDiffsBillingUpdateInfoOneOf, gZ as DraftOrderDiffsBuyerUpdateInfoOneOf, g$ as DraftOrderDiffsRecipientUpdateInfoOneOf, gY as DraftOrderDiffsShippingUpdateInfoOneOf, fm as Duration, aO as DurationUnit, jO as DurationUnitWithLiterals, fb as EditorlessAssigned, fc as EditorlessUnassigned, iJ as Email, hJ as EmailEdited, eH as Empty, dR as EntityCreatedEvent, dU as EntityDeletedEvent, dT as EntityUpdatedEvent, gw as ErrorInformation, jc as EventMetadata, bF as ExtendedFields, c_ as ExternalReceipt, g1 as ExternalReceiptInfo, bk as FocalPoint, dl as FormIdentifier, dk as FormInfo, by as FreeTrialPeriod, hH as FulfillerEmailSent, ao as FulfillmentStatus, dx as FulfillmentStatusUpdated, jp as FulfillmentStatusWithLiterals, db as FulfillmentStatusesAggregate, bR as FullAddressContactDetails, gx as GetOrderRequest, gy as GetOrderResponse, fn as GetPaymentCollectabilityStatusRequest, fy as GetRefundabilityStatusRequest, il as GetShipmentsRequest, im as GetShipmentsResponse, f_ as GiftCardPaymentDetails, cJ as GiftCardPaymentRefund, fd as HasCustomEmailConfigurationsRequest, fe as HasCustomEmailConfigurationsResponse, iG as IdAndVersion, dX as IdentificationData, dY as IdentificationDataIdOneOf, dM as ImportOrderRequest, dv as ImportedOrderDeleted, ht as InternalActivity, hu as InternalActivityContentOneOf, gj as InternalDocument, gn as InternalDocumentUpdateByFilterOperation, gk as InternalDocumentUpdateOperation, gz as InternalQueryOrdersRequest, gF as InternalQueryOrdersResponse, go as InternalUpdateExistingOperation, aF as InventoryAction, jF as InventoryActionWithLiterals, dL as InventoryUpdateDetails, hF as InvoiceAdded, iS as InvoiceDates, j7 as InvoiceDynamicPriceTotals, iH as InvoiceFields, hG as InvoiceSent, iF as InvoiceSentEvent, ba as InvoiceStatus, ka as InvoiceStatusWithLiterals, j5 as InvoicesPayment, fh as IsInAutomationMigrationPopulationRequest, fi as IsInAutomationMigrationPopulationResponse, dC as ItemChangedDetails, ca as ItemCombination, cb as ItemCombinationLineItem, fv as ItemMetadata, bI as ItemModifier, bq as ItemTaxFullDetails, bn as ItemType, bo as ItemTypeItemTypeDataOneOf, ah as ItemTypePreset, ji as ItemTypePresetWithLiterals, i$ as ItemizedFee, aj as JurisdictionType, jk as JurisdictionTypeWithLiterals, iU as LineItem, cw as LineItemAmount, cn as LineItemChanges, dE as LineItemDelta, dF as LineItemDeltaDeltaOneOf, cr as LineItemDescriptionLineChange, c9 as LineItemDiscount, cj as LineItemExchangeData, iY as LineItemMetaData, cs as LineItemModifiersChange, cp as LineItemPriceChange, cq as LineItemProductNameChange, co as LineItemQuantityChange, av as LineItemQuantityChangeType, jv as LineItemQuantityChangeTypeWithLiterals, ep as LineItemRefund, g8 as LineItemRefundSummary, iW as LineItemTax, bs as LineItemTaxBreakdown, br as LineItemTaxInfo, hV as LineItemUpdate, iT as LineItems, iZ as Locale, de as Location, bC as LocationAndQuantity, cx as ManagedAdditionalFee, cu as ManagedDiscount, ct as ManagedLineItem, aT as ManuallyRefundableReason, jT as ManuallyRefundableReasonWithLiterals, h$ as MarkAsFulfilledRequest, i0 as MarkAsFulfilledResponse, i5 as MarkAsUnfulfilledRequest, i6 as MarkAsUnfulfilledResponse, fs as MarkOrderAsPaidRequest, hX as MarkOrderAsSeenByHumanRequest, hY as MarkOrderAsSeenByHumanResponse, hq as MaskedOrderLineItem, fE as MembershipChargeItem, fF as MembershipName, f$ as MembershipPaymentDetails, cK as MembershipPaymentRefund, a$ as MembershipPaymentStatus, j$ as MembershipPaymentStatusWithLiterals, cf as MerchantComment, c5 as MerchantDiscount, c6 as MerchantDiscountMerchantDiscountReasonOneOf, dW as MessageEnvelope, j6 as MetaData, eI as MetaSiteSpecialEvent, eJ as MetaSiteSpecialEventPayloadOneOf, bG as ModifierGroup, aK as Namespace, eY as NamespaceChanged, jK as NamespaceWithLiterals, ci as NewExchangeOrderCreated, aS as NonRefundableReason, jS as NonRefundableReasonWithLiterals, f1 as OdeditorAssigned, f2 as OdeditorUnassigned, aB as OrderActionType, jB as OrderActionTypeWithLiterals, ax as OrderActivityTypeEnumActivityType, jx as OrderActivityTypeEnumActivityTypeWithLiterals, b3 as OrderApprovalStrategy, k3 as OrderApprovalStrategyWithLiterals, dp as OrderApproved, hz as OrderCanceled, dy as OrderCanceledEventOrderCanceled, cl as OrderChange, cm as OrderChangeValueOneOf, gR as OrderCreateNotifications, ch as OrderCreatedFromExchange, gP as OrderCreationSettings, gQ as OrderCreationSettingsEditableByOneOf, dz as OrderDeltasCommitted, hx as OrderFulfilled, du as OrderImported, ds as OrderItemsRestocked, bb as OrderLineItem, dD as OrderLineItemChangedDetails, hy as OrderNotFulfilled, hw as OrderPaid, hL as OrderPartiallyPaid, hM as OrderPending, hv as OrderPlaced, cg as OrderRefunded, hN as OrderRejected, dr as OrderRejectedEventOrderRejected, je as OrderSearchSpec, df as OrderSettings, dg as OrderSettingsAllowedActionsOneOf, dh as OrderSettingsEditableByOneOf, as as OrderStatus, c1 as OrderTaxBreakdown, c0 as OrderTaxInfo, fM as OrderTransactions, dq as OrdersExperiments, aM as Origin, jM as OriginWithLiterals, dj as OwnerApps, fN as Payment, cT as PaymentCanceled, cU as PaymentCanceledPaymentDetailsOneOf, aP as PaymentCollectabilityStatus, jP as PaymentCollectabilityStatusWithLiterals, cV as PaymentDeclined, cW as PaymentDeclinedPaymentDetailsOneOf, fZ as PaymentMethodName, ai as PaymentOptionType, jj as PaymentOptionTypeWithLiterals, fO as PaymentPaymentDetailsOneOf, cO as PaymentPending, cP as PaymentPendingPaymentDetailsOneOf, fP as PaymentReceiptInfoOneOf, cM as PaymentRefundFailed, cL as PaymentRefunded, an as PaymentStatus, dw as PaymentStatusUpdated, jo as PaymentStatusWithLiterals, j4 as Payments, iM as Phone, bl as PhysicalProperties, f3 as PicassoAssigned, f4 as PicassoUnassigned, bX as PickupAddress, bW as PickupDetails, ar as PickupMethod, js as PickupMethodWithLiterals, hK as PickupReadyEmailSent, b4 as Placement, k4 as PlacementWithLiterals, bi as PlainTextValue, dn as PlatformFee, dm as PlatformFeeSummary, gD as PlatformPaging, gG as PlatformPagingMetadata, gA as PlatformQuery, gB as PlatformQueryPagingMethodOneOf, aQ as PredefinedPaymentMethod, jQ as PredefinedPaymentMethodWithLiterals, fj as PreparePaymentCollectionRequest, ez as PreviewBuyerConfirmationEmailRequest, eA as PreviewBuyerConfirmationEmailResponse, ex as PreviewBuyerPaymentsReceivedEmailRequest, ey as PreviewBuyerPaymentsReceivedEmailResponse, eB as PreviewBuyerPickupConfirmationEmailRequest, eC as PreviewBuyerPickupConfirmationEmailResponse, et as PreviewCancelEmailRequest, eu as PreviewCancelEmailResponse, ev as PreviewCancelRefundEmailRequest, ew as PreviewCancelRefundEmailResponse, ek as PreviewEmailByTypeRequest, el as PreviewEmailByTypeResponse, aH as PreviewEmailType, jH as PreviewEmailTypeWithLiterals, em as PreviewRefundEmailRequest, es as PreviewRefundEmailResponse, eF as PreviewResendDownloadLinksEmailRequest, eG as PreviewResendDownloadLinksEmailResponse, eD as PreviewShippingConfirmationEmailRequest, eE as PreviewShippingConfirmationEmailResponse, bB as PriceDescription, bM as PriceSummary, bc as ProductName, hQ as PublicActivityContentOneOf, gI as QueryOrderRequest, gJ as QueryOrderResponse, iK as QuotesAddress, aY as Reason, jY as ReasonWithLiterals, cX as ReceiptCreated, cY as ReceiptCreatedReceiptInfoOneOf, c$ as ReceiptSent, d0 as ReceiptSentReceiptInfoOneOf, fo as RecordManuallyCollectedPaymentRequest, fr as RecordManuallyCollectedPaymentResponse, fk as RedirectUrls, g3 as Refund, en as RefundDetails, cF as RefundInitiated, eo as RefundItem, g7 as RefundItemsBreakdown, fJ as RefundSideEffects, b0 as RefundStatus, g5 as RefundStatusInfo, k0 as RefundStatusWithLiterals, g4 as RefundTransaction, fz as Refundability, fA as RefundabilityAdditionalRefundabilityInfoOneOf, aR as RefundableStatus, jR as RefundableStatusWithLiterals, cN as RefundedAsStoreCredit, cG as RefundedPayment, cH as RefundedPaymentKindOneOf, cQ as RegularPayment, fQ as RegularPaymentDetails, fR as RegularPaymentDetailsPaymentMethodDetailsOneOf, cR as RegularPaymentPaymentMethodDetailsOneOf, cI as RegularPaymentRefund, iE as Reschedule, fK as RestockInfo, fL as RestockItem, bp as RestockLocation, aU as RestockType, jU as RestockTypeWithLiterals, dS as RestoreInfo, cB as SavedPaymentMethod, aN as ScheduledAction, jN as ScheduledActionWithLiterals, gK as SearchOrdersRequest, d_ as SendBuyerConfirmationEmailRequest, d$ as SendBuyerConfirmationEmailResponse, e0 as SendBuyerPaymentsReceivedEmailRequest, e1 as SendBuyerPaymentsReceivedEmailResponse, e2 as SendBuyerPickupConfirmationEmailRequest, e3 as SendBuyerPickupConfirmationEmailResponse, e6 as SendBuyerShippingConfirmationEmailRequest, e7 as SendBuyerShippingConfirmationEmailResponse, ec as SendCancelRefundEmailRequest, ed as SendCancelRefundEmailResponse, eg as SendFulfillmentEmailRequest, eh as SendFulfillmentEmailResponse, ea as SendMerchantOrderReceivedNotificationRequest, eb as SendMerchantOrderReceivedNotificationResponse, ei as SendMerchantOrderReceivedPushRequest, ej as SendMerchantOrderReceivedPushResponse, iw as SendOrderUpdatedDomainEventRequest, ix as SendOrderUpdatedDomainEventResponse, ee as SendRefundEmailRequest, ef as SendRefundEmailResponse, fG as ServiceProperties, eU as ServiceProvisioned, eV as ServiceRemoved, dN as SetOrderNumberCounterRequest, hI as ShippingAddressEdited, hE as ShippingConfirmationEmailSent, cA as ShippingInformation, cz as ShippingInformationChange, bZ as ShippingPrice, er as ShippingRefund, b_ as ShippingRegion, eL as SiteCreated, aJ as SiteCreatedContext, jJ as SiteCreatedContextWithLiterals, eN as SiteDeleted, eX as SiteHardDeleted, eS as SiteMarkedAsTemplate, eT as SiteMarkedAsWixSite, eQ as SitePublished, f0 as SitePurgedExternally, eW as SiteRenamed, eM as SiteTransferred, eP as SiteUndeleted, eR as SiteUnpublished, e$ as SiteUrlChanged, b2 as SortOrder, k2 as SortOrderWithLiterals, gC as Sorting, iX as Source, b6 as SourceType, k6 as SourceTypeWithLiterals, aC as SpecificItemsCouponBehavior, jC as SpecificItemsCouponBehaviorWithLiterals, iR as StandardDetails, aI as State, jI as StateWithLiterals, bP as StreetAddress, eZ as StudioAssigned, f7 as StudioTwoAssigned, f8 as StudioTwoUnassigned, e_ as StudioUnassigned, iQ as Subdivision, b5 as SubdivisionType, k5 as SubdivisionTypeWithLiterals, bw as SubscriptionDescription, ak as SubscriptionFrequency, jl as SubscriptionFrequencyWithLiterals, bu as SubscriptionInfo, bx as SubscriptionSettings, bv as SubscriptionTitle, dd as TagList, dc as Tags, iu as TagsTagList, it as TagsTags, iy as Task, iA as TaskAction, iB as TaskActionActionOneOf, iz as TaskKey, b$ as TaxSummary, bD as TaxableAddress, bE as TaxableAddressTaxableAddressDataOneOf, am as TaxableAddressType, jn as TaxableAddressTypeWithLiterals, i_ as TotalPrice, cy as TotalPriceChange, hD as TrackingLinkAdded, hB as TrackingNumberAdded, hC as TrackingNumberEdited, aV as TransactionStatus, jV as TransactionStatusWithLiterals, bH as TranslatableString, cv as TranslatedValue, fI as TriggerRefundRequest, gu as TriggerReindexOrderRequest, gs as TriggerReindexRequest, gt as TriggerReindexResponse, h9 as UnArchiveOrderRequest, ha as UnArchiveOrderResponse, hS as UpdateActivityRequest, hm as UpdateBillingContactDetailsRequest, hn as UpdateBillingContactDetailsResponse, hi as UpdateBuyerEmailRequest, hj as UpdateBuyerEmailResponse, hf as UpdateBuyerInfoRequest, hh as UpdateBuyerInfoResponse, gh as UpdateInternalDocumentsEvent, gi as UpdateInternalDocumentsEventOperationOneOf, hU as UpdateLineItemsDescriptionLinesRequest, hW as UpdateLineItemsDescriptionLinesResponse, ho as UpdateOrderLineItemRequest, hp as UpdateOrderLineItemsRequest, hr as UpdateOrderLineItemsResponse, gT as UpdateOrderRequest, gU as UpdateOrderResponse, hk as UpdateOrderShippingAddressRequest, hl as UpdateOrderShippingAddressResponse, h_ as UpdateOrderStatusRequest, fp as UserDefinedPaymentMethodName, fq as UserDefinedPaymentMethodNameKindOneOf, fa as UserDomainMediaDisabled, f9 as UserDomainMediaEnabled, ih as V1BulkMarkOrdersAsPaidRequest, ii as V1BulkMarkOrdersAsPaidResponse, ij as V1CreatePaymentGatewayOrderRequest, ik as V1CreatePaymentGatewayOrderResponse, h0 as V1LineItemDelta, h1 as V1LineItemDeltaDeltaOneOf, ie as V1MarkOrderAsPaidRequest, ig as V1MarkOrderAsPaidResponse, dt as V1RestockItem, fX as V1ScheduledAction, bT as V1ShippingInformation, j9 as Value, b8 as ValueType, k8 as ValueTypeWithLiterals, bS as VatId, aq as VatType, jr as VatTypeWithLiterals, gq as VersionedDeleteByIdsOperation, gr as VersionedDocumentId, gp as VersionedDocumentUpdateOperation, b1 as VersioningMode, k1 as VersioningModeWithLiterals, gd as VoidAuthorizedPaymentsRequest, aG as WebhookIdentityType, jG as WebhookIdentityTypeWithLiterals, ap as WeightUnit, jq as WeightUnitWithLiterals, cZ as WixReceipt, g0 as WixReceiptInfo, f5 as WixelAssigned, f6 as WixelUnassigned, jf as utils } from './ecom-v1-order-orders.universal-UePQMlea.mjs';
4
4
 
5
5
  /** @internal */
6
6
  declare function importOrder$1(httpClient: HttpClient): ImportOrderSignature;
@@ -1725,13 +1725,11 @@ var SubscriptionFrequency = /* @__PURE__ */ ((SubscriptionFrequency2) => {
1725
1725
  return SubscriptionFrequency2;
1726
1726
  })(SubscriptionFrequency || {});
1727
1727
  var AdjustmentType = /* @__PURE__ */ ((AdjustmentType2) => {
1728
- AdjustmentType2["UNKNOWN_ADJUSTMENT_TYPE"] = "UNKNOWN_ADJUSTMENT_TYPE";
1729
1728
  AdjustmentType2["EXTRA_CHARGE"] = "EXTRA_CHARGE";
1730
1729
  AdjustmentType2["CREDIT"] = "CREDIT";
1731
1730
  return AdjustmentType2;
1732
1731
  })(AdjustmentType || {});
1733
1732
  var TaxableAddressType = /* @__PURE__ */ ((TaxableAddressType2) => {
1734
- TaxableAddressType2["UNKNOWN_TAXABLE_ADDRESS"] = "UNKNOWN_TAXABLE_ADDRESS";
1735
1733
  TaxableAddressType2["BUSINESS"] = "BUSINESS";
1736
1734
  TaxableAddressType2["BILLING"] = "BILLING";
1737
1735
  TaxableAddressType2["SHIPPING"] = "SHIPPING";
@@ -1769,7 +1767,6 @@ var VatType = /* @__PURE__ */ ((VatType2) => {
1769
1767
  return VatType2;
1770
1768
  })(VatType || {});
1771
1769
  var PickupMethod = /* @__PURE__ */ ((PickupMethod2) => {
1772
- PickupMethod2["UNKNOWN_METHOD"] = "UNKNOWN_METHOD";
1773
1770
  PickupMethod2["STORE_PICKUP"] = "STORE_PICKUP";
1774
1771
  PickupMethod2["PICKUP_POINT"] = "PICKUP_POINT";
1775
1772
  return PickupMethod2;
@@ -1820,8 +1817,6 @@ var ActivityType = /* @__PURE__ */ ((ActivityType2) => {
1820
1817
  ActivityType2["PICKUP_READY_EMAIL_SENT"] = "PICKUP_READY_EMAIL_SENT";
1821
1818
  ActivityType2["CUSTOM_ACTIVITY"] = "CUSTOM_ACTIVITY";
1822
1819
  ActivityType2["MERCHANT_COMMENT"] = "MERCHANT_COMMENT";
1823
- ActivityType2["ORDER_CREATED_FROM_EXCHANGE"] = "ORDER_CREATED_FROM_EXCHANGE";
1824
- ActivityType2["NEW_EXCHANGE_ORDER_CREATED"] = "NEW_EXCHANGE_ORDER_CREATED";
1825
1820
  ActivityType2["ORDER_PARTIALLY_PAID"] = "ORDER_PARTIALLY_PAID";
1826
1821
  ActivityType2["DRAFT_ORDER_CHANGES_APPLIED"] = "DRAFT_ORDER_CHANGES_APPLIED";
1827
1822
  ActivityType2["SAVED_PAYMENT_METHOD"] = "SAVED_PAYMENT_METHOD";
@@ -1844,7 +1839,6 @@ var ActivityType = /* @__PURE__ */ ((ActivityType2) => {
1844
1839
  return ActivityType2;
1845
1840
  })(ActivityType || {});
1846
1841
  var OrderActivityTypeEnumActivityType = /* @__PURE__ */ ((OrderActivityTypeEnumActivityType2) => {
1847
- OrderActivityTypeEnumActivityType2["UNKNOWN_ACTIVITY_TYPE"] = "UNKNOWN_ACTIVITY_TYPE";
1848
1842
  OrderActivityTypeEnumActivityType2["ORDER_PLACED"] = "ORDER_PLACED";
1849
1843
  OrderActivityTypeEnumActivityType2["ORDER_PAID"] = "ORDER_PAID";
1850
1844
  OrderActivityTypeEnumActivityType2["ORDER_FULFILLED"] = "ORDER_FULFILLED";
@@ -1862,10 +1856,7 @@ var OrderActivityTypeEnumActivityType = /* @__PURE__ */ ((OrderActivityTypeEnumA
1862
1856
  OrderActivityTypeEnumActivityType2["SHIPPING_ADDRESS_EDITED"] = "SHIPPING_ADDRESS_EDITED";
1863
1857
  OrderActivityTypeEnumActivityType2["EMAIL_EDITED"] = "EMAIL_EDITED";
1864
1858
  OrderActivityTypeEnumActivityType2["PICKUP_READY_EMAIL_SENT"] = "PICKUP_READY_EMAIL_SENT";
1865
- OrderActivityTypeEnumActivityType2["CUSTOM_ACTIVITY"] = "CUSTOM_ACTIVITY";
1866
1859
  OrderActivityTypeEnumActivityType2["MERCHANT_COMMENT"] = "MERCHANT_COMMENT";
1867
- OrderActivityTypeEnumActivityType2["ORDER_CREATED_FROM_EXCHANGE"] = "ORDER_CREATED_FROM_EXCHANGE";
1868
- OrderActivityTypeEnumActivityType2["NEW_EXCHANGE_ORDER_CREATED"] = "NEW_EXCHANGE_ORDER_CREATED";
1869
1860
  OrderActivityTypeEnumActivityType2["ORDER_PARTIALLY_PAID"] = "ORDER_PARTIALLY_PAID";
1870
1861
  OrderActivityTypeEnumActivityType2["DRAFT_ORDER_CHANGES_APPLIED"] = "DRAFT_ORDER_CHANGES_APPLIED";
1871
1862
  OrderActivityTypeEnumActivityType2["SAVED_PAYMENT_METHOD"] = "SAVED_PAYMENT_METHOD";
@@ -1915,7 +1906,6 @@ var ChannelType = /* @__PURE__ */ ((ChannelType2) => {
1915
1906
  return ChannelType2;
1916
1907
  })(ChannelType || {});
1917
1908
  var AdditionalFeeSource = /* @__PURE__ */ ((AdditionalFeeSource2) => {
1918
- AdditionalFeeSource2["UNKNOWN_ADDITIONAL_FEE_SOURCE"] = "UNKNOWN_ADDITIONAL_FEE_SOURCE";
1919
1909
  AdditionalFeeSource2["SERVICE_PLUGIN"] = "SERVICE_PLUGIN";
1920
1910
  AdditionalFeeSource2["ITEM"] = "ITEM";
1921
1911
  AdditionalFeeSource2["MANUAL"] = "MANUAL";
@@ -1948,13 +1938,11 @@ var SpecificItemsCouponBehavior = /* @__PURE__ */ ((SpecificItemsCouponBehavior2
1948
1938
  return SpecificItemsCouponBehavior2;
1949
1939
  })(SpecificItemsCouponBehavior || {});
1950
1940
  var ChargeType = /* @__PURE__ */ ((ChargeType2) => {
1951
- ChargeType2["UNKNOWN_CHARGE_TYPE"] = "UNKNOWN_CHARGE_TYPE";
1952
1941
  ChargeType2["PASS_ON"] = "PASS_ON";
1953
1942
  ChargeType2["ABSORBED"] = "ABSORBED";
1954
1943
  return ChargeType2;
1955
1944
  })(ChargeType || {});
1956
1945
  var DeltaPaymentOptionType = /* @__PURE__ */ ((DeltaPaymentOptionType2) => {
1957
- DeltaPaymentOptionType2["UNKNOWN_PAYMENT_OPTION"] = "UNKNOWN_PAYMENT_OPTION";
1958
1946
  DeltaPaymentOptionType2["FULL_PAYMENT_OFFLINE"] = "FULL_PAYMENT_OFFLINE";
1959
1947
  DeltaPaymentOptionType2["MEMBERSHIP_OFFLINE"] = "MEMBERSHIP_OFFLINE";
1960
1948
  return DeltaPaymentOptionType2;
@@ -2042,19 +2030,16 @@ var DeleteStatus = /* @__PURE__ */ ((DeleteStatus2) => {
2042
2030
  return DeleteStatus2;
2043
2031
  })(DeleteStatus || {});
2044
2032
  var Origin = /* @__PURE__ */ ((Origin2) => {
2045
- Origin2["UNKNOWN_ORIGIN"] = "UNKNOWN_ORIGIN";
2046
2033
  Origin2["OPT_IN"] = "OPT_IN";
2047
2034
  Origin2["MIGRATION"] = "MIGRATION";
2048
2035
  return Origin2;
2049
2036
  })(Origin || {});
2050
2037
  var ScheduledAction = /* @__PURE__ */ ((ScheduledAction2) => {
2051
- ScheduledAction2["UNSPECIFIED"] = "UNSPECIFIED";
2052
2038
  ScheduledAction2["VOID"] = "VOID";
2053
2039
  ScheduledAction2["CAPTURE"] = "CAPTURE";
2054
2040
  return ScheduledAction2;
2055
2041
  })(ScheduledAction || {});
2056
2042
  var DurationUnit = /* @__PURE__ */ ((DurationUnit2) => {
2057
- DurationUnit2["UNKNOWN_DURATION_UNIT"] = "UNKNOWN_DURATION_UNIT";
2058
2043
  DurationUnit2["MINUTES"] = "MINUTES";
2059
2044
  DurationUnit2["HOURS"] = "HOURS";
2060
2045
  DurationUnit2["DAYS"] = "DAYS";
@@ -2073,7 +2058,6 @@ var PaymentCollectabilityStatus = /* @__PURE__ */ ((PaymentCollectabilityStatus2
2073
2058
  return PaymentCollectabilityStatus2;
2074
2059
  })(PaymentCollectabilityStatus || {});
2075
2060
  var PredefinedPaymentMethod = /* @__PURE__ */ ((PredefinedPaymentMethod2) => {
2076
- PredefinedPaymentMethod2["UNKNOWN_PREDEFINED_PAYMENT_METHOD"] = "UNKNOWN_PREDEFINED_PAYMENT_METHOD";
2077
2061
  PredefinedPaymentMethod2["CASH"] = "CASH";
2078
2062
  PredefinedPaymentMethod2["BANK_TRANSFER"] = "BANK_TRANSFER";
2079
2063
  PredefinedPaymentMethod2["CHECK"] = "CHECK";
@@ -2128,33 +2112,28 @@ var TransactionStatus = /* @__PURE__ */ ((TransactionStatus2) => {
2128
2112
  return TransactionStatus2;
2129
2113
  })(TransactionStatus || {});
2130
2114
  var AuthorizationCaptureStatus = /* @__PURE__ */ ((AuthorizationCaptureStatus2) => {
2131
- AuthorizationCaptureStatus2["UNKNOWN_STATUS"] = "UNKNOWN_STATUS";
2132
2115
  AuthorizationCaptureStatus2["PENDING"] = "PENDING";
2133
2116
  AuthorizationCaptureStatus2["SUCCEEDED"] = "SUCCEEDED";
2134
2117
  AuthorizationCaptureStatus2["FAILED"] = "FAILED";
2135
2118
  return AuthorizationCaptureStatus2;
2136
2119
  })(AuthorizationCaptureStatus || {});
2137
2120
  var AuthorizationVoidStatus = /* @__PURE__ */ ((AuthorizationVoidStatus2) => {
2138
- AuthorizationVoidStatus2["UNKNOWN_STATUS"] = "UNKNOWN_STATUS";
2139
2121
  AuthorizationVoidStatus2["PENDING"] = "PENDING";
2140
2122
  AuthorizationVoidStatus2["SUCCEEDED"] = "SUCCEEDED";
2141
2123
  AuthorizationVoidStatus2["FAILED"] = "FAILED";
2142
2124
  return AuthorizationVoidStatus2;
2143
2125
  })(AuthorizationVoidStatus || {});
2144
2126
  var Reason = /* @__PURE__ */ ((Reason2) => {
2145
- Reason2["UNKNOWN_REASON"] = "UNKNOWN_REASON";
2146
2127
  Reason2["MANUAL"] = "MANUAL";
2147
2128
  Reason2["SCHEDULED"] = "SCHEDULED";
2148
2129
  return Reason2;
2149
2130
  })(Reason || {});
2150
2131
  var ActionType = /* @__PURE__ */ ((ActionType2) => {
2151
- ActionType2["UNKNOWN_ACTION_TYPE"] = "UNKNOWN_ACTION_TYPE";
2152
2132
  ActionType2["VOID"] = "VOID";
2153
2133
  ActionType2["CAPTURE"] = "CAPTURE";
2154
2134
  return ActionType2;
2155
2135
  })(ActionType || {});
2156
2136
  var ChargebackStatus = /* @__PURE__ */ ((ChargebackStatus2) => {
2157
- ChargebackStatus2["UNSPECIFIED"] = "UNSPECIFIED";
2158
2137
  ChargebackStatus2["APPROVED"] = "APPROVED";
2159
2138
  ChargebackStatus2["REVERSED"] = "REVERSED";
2160
2139
  return ChargebackStatus2;