@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.js';
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.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 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.js';
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.js';
4
4
 
5
5
  /** @internal */
6
6
  declare function importOrder$1(httpClient: HttpClient): ImportOrderSignature;
@@ -1843,13 +1843,11 @@ var SubscriptionFrequency = /* @__PURE__ */ ((SubscriptionFrequency2) => {
1843
1843
  return SubscriptionFrequency2;
1844
1844
  })(SubscriptionFrequency || {});
1845
1845
  var AdjustmentType = /* @__PURE__ */ ((AdjustmentType2) => {
1846
- AdjustmentType2["UNKNOWN_ADJUSTMENT_TYPE"] = "UNKNOWN_ADJUSTMENT_TYPE";
1847
1846
  AdjustmentType2["EXTRA_CHARGE"] = "EXTRA_CHARGE";
1848
1847
  AdjustmentType2["CREDIT"] = "CREDIT";
1849
1848
  return AdjustmentType2;
1850
1849
  })(AdjustmentType || {});
1851
1850
  var TaxableAddressType = /* @__PURE__ */ ((TaxableAddressType2) => {
1852
- TaxableAddressType2["UNKNOWN_TAXABLE_ADDRESS"] = "UNKNOWN_TAXABLE_ADDRESS";
1853
1851
  TaxableAddressType2["BUSINESS"] = "BUSINESS";
1854
1852
  TaxableAddressType2["BILLING"] = "BILLING";
1855
1853
  TaxableAddressType2["SHIPPING"] = "SHIPPING";
@@ -1887,7 +1885,6 @@ var VatType = /* @__PURE__ */ ((VatType2) => {
1887
1885
  return VatType2;
1888
1886
  })(VatType || {});
1889
1887
  var PickupMethod = /* @__PURE__ */ ((PickupMethod2) => {
1890
- PickupMethod2["UNKNOWN_METHOD"] = "UNKNOWN_METHOD";
1891
1888
  PickupMethod2["STORE_PICKUP"] = "STORE_PICKUP";
1892
1889
  PickupMethod2["PICKUP_POINT"] = "PICKUP_POINT";
1893
1890
  return PickupMethod2;
@@ -1938,8 +1935,6 @@ var ActivityType = /* @__PURE__ */ ((ActivityType2) => {
1938
1935
  ActivityType2["PICKUP_READY_EMAIL_SENT"] = "PICKUP_READY_EMAIL_SENT";
1939
1936
  ActivityType2["CUSTOM_ACTIVITY"] = "CUSTOM_ACTIVITY";
1940
1937
  ActivityType2["MERCHANT_COMMENT"] = "MERCHANT_COMMENT";
1941
- ActivityType2["ORDER_CREATED_FROM_EXCHANGE"] = "ORDER_CREATED_FROM_EXCHANGE";
1942
- ActivityType2["NEW_EXCHANGE_ORDER_CREATED"] = "NEW_EXCHANGE_ORDER_CREATED";
1943
1938
  ActivityType2["ORDER_PARTIALLY_PAID"] = "ORDER_PARTIALLY_PAID";
1944
1939
  ActivityType2["DRAFT_ORDER_CHANGES_APPLIED"] = "DRAFT_ORDER_CHANGES_APPLIED";
1945
1940
  ActivityType2["SAVED_PAYMENT_METHOD"] = "SAVED_PAYMENT_METHOD";
@@ -1962,7 +1957,6 @@ var ActivityType = /* @__PURE__ */ ((ActivityType2) => {
1962
1957
  return ActivityType2;
1963
1958
  })(ActivityType || {});
1964
1959
  var OrderActivityTypeEnumActivityType = /* @__PURE__ */ ((OrderActivityTypeEnumActivityType2) => {
1965
- OrderActivityTypeEnumActivityType2["UNKNOWN_ACTIVITY_TYPE"] = "UNKNOWN_ACTIVITY_TYPE";
1966
1960
  OrderActivityTypeEnumActivityType2["ORDER_PLACED"] = "ORDER_PLACED";
1967
1961
  OrderActivityTypeEnumActivityType2["ORDER_PAID"] = "ORDER_PAID";
1968
1962
  OrderActivityTypeEnumActivityType2["ORDER_FULFILLED"] = "ORDER_FULFILLED";
@@ -1980,10 +1974,7 @@ var OrderActivityTypeEnumActivityType = /* @__PURE__ */ ((OrderActivityTypeEnumA
1980
1974
  OrderActivityTypeEnumActivityType2["SHIPPING_ADDRESS_EDITED"] = "SHIPPING_ADDRESS_EDITED";
1981
1975
  OrderActivityTypeEnumActivityType2["EMAIL_EDITED"] = "EMAIL_EDITED";
1982
1976
  OrderActivityTypeEnumActivityType2["PICKUP_READY_EMAIL_SENT"] = "PICKUP_READY_EMAIL_SENT";
1983
- OrderActivityTypeEnumActivityType2["CUSTOM_ACTIVITY"] = "CUSTOM_ACTIVITY";
1984
1977
  OrderActivityTypeEnumActivityType2["MERCHANT_COMMENT"] = "MERCHANT_COMMENT";
1985
- OrderActivityTypeEnumActivityType2["ORDER_CREATED_FROM_EXCHANGE"] = "ORDER_CREATED_FROM_EXCHANGE";
1986
- OrderActivityTypeEnumActivityType2["NEW_EXCHANGE_ORDER_CREATED"] = "NEW_EXCHANGE_ORDER_CREATED";
1987
1978
  OrderActivityTypeEnumActivityType2["ORDER_PARTIALLY_PAID"] = "ORDER_PARTIALLY_PAID";
1988
1979
  OrderActivityTypeEnumActivityType2["DRAFT_ORDER_CHANGES_APPLIED"] = "DRAFT_ORDER_CHANGES_APPLIED";
1989
1980
  OrderActivityTypeEnumActivityType2["SAVED_PAYMENT_METHOD"] = "SAVED_PAYMENT_METHOD";
@@ -2033,7 +2024,6 @@ var ChannelType = /* @__PURE__ */ ((ChannelType2) => {
2033
2024
  return ChannelType2;
2034
2025
  })(ChannelType || {});
2035
2026
  var AdditionalFeeSource = /* @__PURE__ */ ((AdditionalFeeSource2) => {
2036
- AdditionalFeeSource2["UNKNOWN_ADDITIONAL_FEE_SOURCE"] = "UNKNOWN_ADDITIONAL_FEE_SOURCE";
2037
2027
  AdditionalFeeSource2["SERVICE_PLUGIN"] = "SERVICE_PLUGIN";
2038
2028
  AdditionalFeeSource2["ITEM"] = "ITEM";
2039
2029
  AdditionalFeeSource2["MANUAL"] = "MANUAL";
@@ -2066,13 +2056,11 @@ var SpecificItemsCouponBehavior = /* @__PURE__ */ ((SpecificItemsCouponBehavior2
2066
2056
  return SpecificItemsCouponBehavior2;
2067
2057
  })(SpecificItemsCouponBehavior || {});
2068
2058
  var ChargeType = /* @__PURE__ */ ((ChargeType2) => {
2069
- ChargeType2["UNKNOWN_CHARGE_TYPE"] = "UNKNOWN_CHARGE_TYPE";
2070
2059
  ChargeType2["PASS_ON"] = "PASS_ON";
2071
2060
  ChargeType2["ABSORBED"] = "ABSORBED";
2072
2061
  return ChargeType2;
2073
2062
  })(ChargeType || {});
2074
2063
  var DeltaPaymentOptionType = /* @__PURE__ */ ((DeltaPaymentOptionType2) => {
2075
- DeltaPaymentOptionType2["UNKNOWN_PAYMENT_OPTION"] = "UNKNOWN_PAYMENT_OPTION";
2076
2064
  DeltaPaymentOptionType2["FULL_PAYMENT_OFFLINE"] = "FULL_PAYMENT_OFFLINE";
2077
2065
  DeltaPaymentOptionType2["MEMBERSHIP_OFFLINE"] = "MEMBERSHIP_OFFLINE";
2078
2066
  return DeltaPaymentOptionType2;
@@ -2160,19 +2148,16 @@ var DeleteStatus = /* @__PURE__ */ ((DeleteStatus2) => {
2160
2148
  return DeleteStatus2;
2161
2149
  })(DeleteStatus || {});
2162
2150
  var Origin = /* @__PURE__ */ ((Origin2) => {
2163
- Origin2["UNKNOWN_ORIGIN"] = "UNKNOWN_ORIGIN";
2164
2151
  Origin2["OPT_IN"] = "OPT_IN";
2165
2152
  Origin2["MIGRATION"] = "MIGRATION";
2166
2153
  return Origin2;
2167
2154
  })(Origin || {});
2168
2155
  var ScheduledAction = /* @__PURE__ */ ((ScheduledAction2) => {
2169
- ScheduledAction2["UNSPECIFIED"] = "UNSPECIFIED";
2170
2156
  ScheduledAction2["VOID"] = "VOID";
2171
2157
  ScheduledAction2["CAPTURE"] = "CAPTURE";
2172
2158
  return ScheduledAction2;
2173
2159
  })(ScheduledAction || {});
2174
2160
  var DurationUnit = /* @__PURE__ */ ((DurationUnit2) => {
2175
- DurationUnit2["UNKNOWN_DURATION_UNIT"] = "UNKNOWN_DURATION_UNIT";
2176
2161
  DurationUnit2["MINUTES"] = "MINUTES";
2177
2162
  DurationUnit2["HOURS"] = "HOURS";
2178
2163
  DurationUnit2["DAYS"] = "DAYS";
@@ -2191,7 +2176,6 @@ var PaymentCollectabilityStatus = /* @__PURE__ */ ((PaymentCollectabilityStatus2
2191
2176
  return PaymentCollectabilityStatus2;
2192
2177
  })(PaymentCollectabilityStatus || {});
2193
2178
  var PredefinedPaymentMethod = /* @__PURE__ */ ((PredefinedPaymentMethod2) => {
2194
- PredefinedPaymentMethod2["UNKNOWN_PREDEFINED_PAYMENT_METHOD"] = "UNKNOWN_PREDEFINED_PAYMENT_METHOD";
2195
2179
  PredefinedPaymentMethod2["CASH"] = "CASH";
2196
2180
  PredefinedPaymentMethod2["BANK_TRANSFER"] = "BANK_TRANSFER";
2197
2181
  PredefinedPaymentMethod2["CHECK"] = "CHECK";
@@ -2246,33 +2230,28 @@ var TransactionStatus = /* @__PURE__ */ ((TransactionStatus2) => {
2246
2230
  return TransactionStatus2;
2247
2231
  })(TransactionStatus || {});
2248
2232
  var AuthorizationCaptureStatus = /* @__PURE__ */ ((AuthorizationCaptureStatus2) => {
2249
- AuthorizationCaptureStatus2["UNKNOWN_STATUS"] = "UNKNOWN_STATUS";
2250
2233
  AuthorizationCaptureStatus2["PENDING"] = "PENDING";
2251
2234
  AuthorizationCaptureStatus2["SUCCEEDED"] = "SUCCEEDED";
2252
2235
  AuthorizationCaptureStatus2["FAILED"] = "FAILED";
2253
2236
  return AuthorizationCaptureStatus2;
2254
2237
  })(AuthorizationCaptureStatus || {});
2255
2238
  var AuthorizationVoidStatus = /* @__PURE__ */ ((AuthorizationVoidStatus2) => {
2256
- AuthorizationVoidStatus2["UNKNOWN_STATUS"] = "UNKNOWN_STATUS";
2257
2239
  AuthorizationVoidStatus2["PENDING"] = "PENDING";
2258
2240
  AuthorizationVoidStatus2["SUCCEEDED"] = "SUCCEEDED";
2259
2241
  AuthorizationVoidStatus2["FAILED"] = "FAILED";
2260
2242
  return AuthorizationVoidStatus2;
2261
2243
  })(AuthorizationVoidStatus || {});
2262
2244
  var Reason = /* @__PURE__ */ ((Reason2) => {
2263
- Reason2["UNKNOWN_REASON"] = "UNKNOWN_REASON";
2264
2245
  Reason2["MANUAL"] = "MANUAL";
2265
2246
  Reason2["SCHEDULED"] = "SCHEDULED";
2266
2247
  return Reason2;
2267
2248
  })(Reason || {});
2268
2249
  var ActionType = /* @__PURE__ */ ((ActionType2) => {
2269
- ActionType2["UNKNOWN_ACTION_TYPE"] = "UNKNOWN_ACTION_TYPE";
2270
2250
  ActionType2["VOID"] = "VOID";
2271
2251
  ActionType2["CAPTURE"] = "CAPTURE";
2272
2252
  return ActionType2;
2273
2253
  })(ActionType || {});
2274
2254
  var ChargebackStatus = /* @__PURE__ */ ((ChargebackStatus2) => {
2275
- ChargebackStatus2["UNSPECIFIED"] = "UNSPECIFIED";
2276
2255
  ChargebackStatus2["APPROVED"] = "APPROVED";
2277
2256
  ChargebackStatus2["REVERSED"] = "REVERSED";
2278
2257
  return ChargebackStatus2;