@flowio/api-internal-prop-types 9.24.106 → 9.24.108

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.
@@ -3078,9 +3078,9 @@ T['io.flow.adyen.v0.enums.dispute_status'] = PropTypes.oneOf([
3078
3078
  ]);
3079
3079
 
3080
3080
  T['io.flow.adyen.v0.models.chargeback_notification_additional_data'] = PropTypes.exact({
3081
- chargebackReasonCode: PropTypes.string.isRequired,
3081
+ chargebackReasonCode: PropTypes.string,
3082
3082
  modificationMerchantReferences: PropTypes.string.isRequired,
3083
- chargebackSchemeCode: PropTypes.string.isRequired,
3083
+ chargebackSchemeCode: PropTypes.string,
3084
3084
  defensePeriodEndsAt: PropTypes.string,
3085
3085
  disputeStatus: T['io.flow.adyen.v0.enums.dispute_status'],
3086
3086
  defendable: PropTypes.string,
@@ -3762,6 +3762,27 @@ T['io.flow.external.paypal.v1.models.token_form'] = PropTypes.exact({
3762
3762
  });
3763
3763
 
3764
3764
  T['io.flow.external.paypal.v1.enums.sale_state'] = PropTypes.oneOf(['pending', 'completed', 'denied', 'partially_refunded', 'refunded']);
3765
+ T['io.flow.external.paypal.v1.enums.reporting_transaction_status'] = PropTypes.oneOf(['D', 'P', 'S', 'V']);
3766
+
3767
+ T['io.flow.external.paypal.v1.models.reporting_transaction_info'] = PropTypes.exact({
3768
+ paypal_account_id: PropTypes.string,
3769
+ transaction_id: PropTypes.string,
3770
+ paypal_reference_id: PropTypes.string,
3771
+ paypal_reference_id_type: PropTypes.string,
3772
+ transaction_event_code: PropTypes.string.isRequired,
3773
+ transaction_initiation_date: PropTypes.string.isRequired,
3774
+ transaction_updated_date: PropTypes.string.isRequired,
3775
+ transaction_status: T['io.flow.external.paypal.v1.enums.reporting_transaction_status'].isRequired,
3776
+ transaction_subject: PropTypes.string,
3777
+ invoice_id: PropTypes.string.isRequired,
3778
+ custom_field: PropTypes.string,
3779
+ protection_eligibility: PropTypes.string,
3780
+ instrument_type: PropTypes.string,
3781
+ });
3782
+
3783
+ T['io.flow.external.paypal.v1.models.reporting_transaction_details'] = PropTypes.exact({
3784
+ transaction_info: T['io.flow.external.paypal.v1.models.reporting_transaction_info'].isRequired,
3785
+ });
3765
3786
 
3766
3787
  T['io.flow.external.paypal.v1.models.money'] = PropTypes.exact({
3767
3788
  currency_code: PropTypes.string,
@@ -4195,6 +4216,11 @@ T['io.flow.external.paypal.v1.models.link'] = PropTypes.exact({
4195
4216
  method: PropTypes.string.isRequired,
4196
4217
  });
4197
4218
 
4219
+ T['io.flow.external.paypal.v1.models.reporting_transaction'] = PropTypes.exact({
4220
+ transaction_details: PropTypes.arrayOf(T['io.flow.external.paypal.v1.models.reporting_transaction_details']).isRequired,
4221
+ links: PropTypes.arrayOf(T['io.flow.external.paypal.v1.models.link']).isRequired,
4222
+ });
4223
+
4198
4224
  T['io.flow.external.paypal.v1.models.link_response'] = PropTypes.exact({
4199
4225
  links: PropTypes.arrayOf(T['io.flow.external.paypal.v1.models.link']),
4200
4226
  });
@@ -6100,6 +6126,13 @@ T['io.flow.stripe.v0.models.payment_intent'] = PropTypes.exact({
6100
6126
  shipping: T['io.flow.stripe.v0.models.payment_intent_shipping'],
6101
6127
  });
6102
6128
 
6129
+ T['io.flow.stripe.v0.models.payment_intents'] = PropTypes.exact({
6130
+ object: PropTypes.string.isRequired,
6131
+ data: PropTypes.arrayOf(T['io.flow.stripe.v0.models.payment_intent']).isRequired,
6132
+ has_more: PropTypes.bool.isRequired,
6133
+ url: PropTypes.string,
6134
+ });
6135
+
6103
6136
  T['io.flow.stripe.v0.models.stripe_error'] = PropTypes.exact({
6104
6137
  type: T['io.flow.stripe.v0.enums.error_type'].isRequired,
6105
6138
  charge: PropTypes.string,
@@ -6560,300 +6593,6 @@ T['io.flow.payment.v0.unions.authorization_result_action_details'] = PropTypes.o
6560
6593
  T['io.flow.payment.v0.models.select_issuer_option_action_details'],
6561
6594
  ]);
6562
6595
 
6563
- T['io.flow.flexe.v0.models.carton_pick_delivery_details'] = PropTypes.exact({
6564
- shipment_uuid: PropTypes.string,
6565
- carrier: PropTypes.string,
6566
- carrier_id: PropTypes.string,
6567
- });
6568
-
6569
- T['io.flow.flexe.v0.models.shipment_delivery_details'] = PropTypes.exact({
6570
- shipment_uuid: PropTypes.string,
6571
- });
6572
-
6573
- T['io.flow.flexe.v0.models.fulfillment_order_details'] = PropTypes.exact({
6574
- shipment_uuid: PropTypes.string.isRequired,
6575
- carrier: PropTypes.string,
6576
- carrier_id: PropTypes.string,
6577
- });
6578
-
6579
- T['io.flow.flexe.v0.models.ship_to'] = PropTypes.exact({
6580
- name: PropTypes.string.isRequired,
6581
- address_1: PropTypes.string.isRequired,
6582
- locality: PropTypes.string.isRequired,
6583
- region: PropTypes.string.isRequired,
6584
- postal_code: PropTypes.string.isRequired,
6585
- country: PropTypes.string.isRequired,
6586
- address_2: PropTypes.string,
6587
- address_3: PropTypes.string,
6588
- });
6589
-
6590
- T['io.flow.flexe.v0.models.ship_within'] = PropTypes.exact({
6591
- start: PropTypes.string.isRequired,
6592
- end: PropTypes.string.isRequired,
6593
- });
6594
-
6595
- T['io.flow.flexe.v0.models.flexe_retail_attachment'] = PropTypes.exact({
6596
- display_name: PropTypes.string.isRequired,
6597
- url: PropTypes.string.isRequired,
6598
- });
6599
-
6600
- T['io.flow.flexe.v0.models.retail_inventory_data'] = PropTypes.exact({
6601
- sku: PropTypes.string.isRequired,
6602
- quantity: PropTypes.number.isRequired,
6603
- unit: PropTypes.string.isRequired,
6604
- attachments: PropTypes.arrayOf(T['io.flow.flexe.v0.models.flexe_retail_attachment']),
6605
- });
6606
-
6607
- T['io.flow.flexe.v0.models.lading_quantity'] = PropTypes.exact({
6608
- num_pallets: PropTypes.number.isRequired,
6609
- });
6610
-
6611
- T['io.flow.flexe.v0.models.purchase_order'] = PropTypes.exact({
6612
- retail_fulfillment_order_id: PropTypes.string.isRequired,
6613
- bill_of_lading_number: PropTypes.string.isRequired,
6614
- purchase_order_uuid: PropTypes.string.isRequired,
6615
- pickup_window_start: PropTypes.string.isRequired,
6616
- pickup_window_end: PropTypes.string.isRequired,
6617
- tags: PropTypes.arrayOf(PropTypes.string).isRequired,
6618
- });
6619
-
6620
- T['io.flow.flexe.v0.models.retail_fulfillment_order_details'] = PropTypes.exact({
6621
- master_bill_of_lading_number: PropTypes.string.isRequired,
6622
- scac: PropTypes.string.isRequired,
6623
- pro_number: PropTypes.string.isRequired,
6624
- purchase_orders: PropTypes.arrayOf(T['io.flow.flexe.v0.models.purchase_order']).isRequired,
6625
- lading_quantity: T['io.flow.flexe.v0.models.lading_quantity'].isRequired,
6626
- });
6627
-
6628
- T['io.flow.flexe.v0.enums.flexe_status'] = PropTypes.oneOf(['in_transit', 'completed']);
6629
-
6630
- T['io.flow.flexe.v0.enums.flexe_shipment_type'] = PropTypes.oneOf([
6631
- 'fulfillment_order',
6632
- 'retail_fulfillment_order',
6633
- 'carton_pick_delivery',
6634
- 'delivery',
6635
- 'container_delivery',
6636
- ]);
6637
-
6638
- T['io.flow.flexe.v0.models.shipment_notification'] = PropTypes.exact({
6639
- shipment_id: PropTypes.string.isRequired,
6640
- shipment_type: T['io.flow.flexe.v0.enums.flexe_shipment_type'].isRequired,
6641
- reservation_id: PropTypes.string.isRequired,
6642
- status: T['io.flow.flexe.v0.enums.flexe_status'].isRequired,
6643
- fulfillment_order_details: T['io.flow.flexe.v0.models.fulfillment_order_details'],
6644
- retail_fulfillment_order_details: T['io.flow.flexe.v0.models.retail_fulfillment_order_details'],
6645
- delivery_details: T['io.flow.flexe.v0.models.shipment_delivery_details'],
6646
- carton_pick_delivery_details: T['io.flow.flexe.v0.models.carton_pick_delivery_details'],
6647
- });
6648
-
6649
- T['io.flow.flexe.v0.models.flexe_inventory_data'] = PropTypes.exact({
6650
- sku: PropTypes.string.isRequired,
6651
- quantity: PropTypes.string.isRequired,
6652
- unit: PropTypes.string.isRequired,
6653
- });
6654
-
6655
- T['io.flow.flexe.v0.models.sku_summary'] = PropTypes.exact({
6656
- key: PropTypes.string.isRequired,
6657
- quantity: PropTypes.number.isRequired,
6658
- unit: PropTypes.string.isRequired,
6659
- });
6660
-
6661
- T['io.flow.flexe.v0.models.inventory_count'] = PropTypes.exact({
6662
- amount: PropTypes.number.isRequired,
6663
- unit: PropTypes.string.isRequired,
6664
- });
6665
-
6666
- T['io.flow.flexe.v0.models.flexe_retail_fulfillment_errors'] = PropTypes.exact({
6667
- type: PropTypes.string.isRequired,
6668
- message: PropTypes.string.isRequired,
6669
- });
6670
-
6671
- T['io.flow.flexe.v0.models.flexe_retail_fulfillment_data'] = PropTypes.exact({
6672
- id: PropTypes.string.isRequired,
6673
- purchase_order_uuid: PropTypes.string.isRequired,
6674
- status: PropTypes.string.isRequired,
6675
- });
6676
-
6677
- T['io.flow.flexe.v0.models.flexe_retail_fulfillment'] = PropTypes.exact({
6678
- url: PropTypes.string.isRequired,
6679
- client_request_id: PropTypes.string.isRequired,
6680
- generated_at: PropTypes.string.isRequired,
6681
- data: T['io.flow.flexe.v0.models.flexe_retail_fulfillment_data'].isRequired,
6682
- errors: PropTypes.arrayOf(T['io.flow.flexe.v0.models.flexe_retail_fulfillment_errors']),
6683
- });
6684
-
6685
- T['io.flow.flexe.v0.models.flexe_ecommerce_fulfillment_errors'] = PropTypes.exact({
6686
- status: PropTypes.string.isRequired,
6687
- title: PropTypes.string.isRequired,
6688
- detail: PropTypes.string.isRequired,
6689
- source: PropTypes.string,
6690
- });
6691
-
6692
- T['io.flow.flexe.v0.models.flexe_ecommerce_fulfillment_data'] = PropTypes.exact({
6693
- import_id: PropTypes.string.isRequired,
6694
- succeeded_uuids: PropTypes.arrayOf(PropTypes.string).isRequired,
6695
- failed_uuids: PropTypes.arrayOf(PropTypes.string).isRequired,
6696
- errors: PropTypes.arrayOf(PropTypes.string).isRequired,
6697
- });
6698
-
6699
- T['io.flow.flexe.v0.models.flexe_ecommerce_fulfillment'] = PropTypes.exact({
6700
- url: PropTypes.string.isRequired,
6701
- client_request_id: PropTypes.string.isRequired,
6702
- generated_at: PropTypes.string.isRequired,
6703
- data: T['io.flow.flexe.v0.models.flexe_ecommerce_fulfillment_data'].isRequired,
6704
- errors: PropTypes.arrayOf(T['io.flow.flexe.v0.models.flexe_ecommerce_fulfillment_errors']).isRequired,
6705
- });
6706
-
6707
- T['io.flow.flexe.v0.enums.flexe_attachment_type'] = PropTypes.oneOf(['shipping_label', 'packing_slip', 'packing_slip_letter']);
6708
-
6709
- T['io.flow.flexe.v0.models.flexe_attachment'] = PropTypes.exact({
6710
- type: T['io.flow.flexe.v0.enums.flexe_attachment_type'].isRequired,
6711
- display_name: PropTypes.string.isRequired,
6712
- url: PropTypes.string.isRequired,
6713
- });
6714
-
6715
- T['io.flow.flexe.v0.models.order'] = PropTypes.exact({
6716
- shipment_uuid: PropTypes.string.isRequired,
6717
- purchase_order: PropTypes.string.isRequired,
6718
- carrier: PropTypes.string.isRequired,
6719
- service_type: PropTypes.string.isRequired,
6720
- carrier_assigned_id: PropTypes.string.isRequired,
6721
- name: PropTypes.string.isRequired,
6722
- address_1: PropTypes.string.isRequired,
6723
- address_2: PropTypes.string,
6724
- address_3: PropTypes.string,
6725
- city: PropTypes.string.isRequired,
6726
- state: PropTypes.string.isRequired,
6727
- postal_code: PropTypes.string.isRequired,
6728
- phone: PropTypes.string,
6729
- instructions: PropTypes.string,
6730
- inventory_data: PropTypes.arrayOf(T['io.flow.flexe.v0.models.flexe_inventory_data']).isRequired,
6731
- attachments: PropTypes.arrayOf(T['io.flow.flexe.v0.models.flexe_attachment']).isRequired,
6732
- });
6733
-
6734
- T['io.flow.flexe.v0.models.orders'] = PropTypes.exact({
6735
- orders: PropTypes.arrayOf(T['io.flow.flexe.v0.models.order']).isRequired,
6736
- });
6737
-
6738
- T['io.flow.flexe.v0.models.flexe_ecommerce_fulfillment_form'] = PropTypes.exact({
6739
- reservation_id: PropTypes.number.isRequired,
6740
- client_request_id: PropTypes.string.isRequired,
6741
- request: T['io.flow.flexe.v0.models.orders'].isRequired,
6742
- });
6743
-
6744
- T['io.flow.flexe.v0.models.pallet'] = PropTypes.exact({
6745
- pallet_id: PropTypes.string.isRequired,
6746
- sku: PropTypes.string.isRequired,
6747
- quantity: PropTypes.number.isRequired,
6748
- packaging: PropTypes.string.isRequired,
6749
- });
6750
-
6751
- T['io.flow.flexe.v0.models.inventory_data'] = PropTypes.exact({
6752
- pallet: T['io.flow.flexe.v0.models.inventory_count'].isRequired,
6753
- carton: T['io.flow.flexe.v0.models.inventory_count'],
6754
- each: T['io.flow.flexe.v0.models.inventory_count'],
6755
- });
6756
-
6757
- T['io.flow.flexe.v0.models.sku'] = PropTypes.exact({
6758
- sku: PropTypes.string.isRequired,
6759
- description: PropTypes.string.isRequired,
6760
- summary: PropTypes.objectOf(T['io.flow.flexe.v0.models.sku_summary']).isRequired,
6761
- });
6762
-
6763
- T['io.flow.flexe.v0.models.quantity_by_inventory'] = PropTypes.exact({
6764
- received: T['io.flow.flexe.v0.models.inventory_data'].isRequired,
6765
- expected: T['io.flow.flexe.v0.models.inventory_data'],
6766
- damaged: T['io.flow.flexe.v0.models.inventory_data'],
6767
- });
6768
-
6769
- T['io.flow.flexe.v0.models.delivery_details'] = PropTypes.exact({
6770
- shipment_uuid: PropTypes.string,
6771
- trailer_number: PropTypes.string,
6772
- pallets: PropTypes.arrayOf(T['io.flow.flexe.v0.models.pallet']).isRequired,
6773
- quantities_by_inventory: PropTypes.objectOf(T['io.flow.flexe.v0.models.quantity_by_inventory']).isRequired,
6774
- });
6775
-
6776
- T['io.flow.flexe.v0.models.inventory_details'] = PropTypes.exact({
6777
- key: PropTypes.objectOf(T['io.flow.flexe.v0.models.sku']).isRequired,
6778
- });
6779
-
6780
- T['io.flow.flexe.v0.models.inventory'] = PropTypes.exact({
6781
- url: PropTypes.string.isRequired,
6782
- client_request_id: PropTypes.string.isRequired,
6783
- generated_at: PropTypes.string.isRequired,
6784
- data: PropTypes.objectOf(T['io.flow.flexe.v0.models.inventory_details']).isRequired,
6785
- });
6786
-
6787
- T['io.flow.flexe.v0.models.container_delivery_details'] = PropTypes.exact({
6788
- purchase_order: PropTypes.string.isRequired,
6789
- container_number: PropTypes.string,
6790
- seal_number: PropTypes.string,
6791
- vendor: PropTypes.string,
6792
- expected_inventory: PropTypes.arrayOf(T['io.flow.flexe.v0.models.inventory_details']).isRequired,
6793
- received_inventory: PropTypes.arrayOf(T['io.flow.flexe.v0.models.inventory_details']).isRequired,
6794
- damaged_inventory: PropTypes.arrayOf(T['io.flow.flexe.v0.models.inventory_details']).isRequired,
6795
- quantities_by_inventory: PropTypes.objectOf(T['io.flow.flexe.v0.models.quantity_by_inventory']).isRequired,
6796
- });
6797
-
6798
- T['io.flow.flexe.v0.models.receipt_notification'] = PropTypes.exact({
6799
- shipment_id: PropTypes.string.isRequired,
6800
- shipment_type: T['io.flow.flexe.v0.enums.flexe_shipment_type'].isRequired,
6801
- reservation_id: PropTypes.string.isRequired,
6802
- status: T['io.flow.flexe.v0.enums.flexe_status'].isRequired,
6803
- delivery_details: T['io.flow.flexe.v0.models.delivery_details'],
6804
- container_delivery_details: T['io.flow.flexe.v0.models.container_delivery_details'],
6805
- });
6806
-
6807
- T['io.flow.flexe.v0.models.bill_to'] = PropTypes.exact({
6808
- name: PropTypes.string.isRequired,
6809
- address_1: PropTypes.string.isRequired,
6810
- locality: PropTypes.string.isRequired,
6811
- region: PropTypes.string.isRequired,
6812
- postal_code: PropTypes.string.isRequired,
6813
- country: PropTypes.string.isRequired,
6814
- address_2: PropTypes.string,
6815
- address_3: PropTypes.string,
6816
- });
6817
-
6818
- T['io.flow.flexe.v0.models.gs1us_ship_to'] = PropTypes.exact({
6819
- cid_number: PropTypes.string,
6820
- location_number: PropTypes.string,
6821
- free_on_board: PropTypes.bool,
6822
- });
6823
-
6824
- T['io.flow.flexe.v0.models.gs1us'] = PropTypes.exact({
6825
- number: PropTypes.string.isRequired,
6826
- ship_to: T['io.flow.flexe.v0.models.gs1us_ship_to'],
6827
- bill_to: T['io.flow.flexe.v0.models.bill_to'],
6828
- });
6829
-
6830
- T['io.flow.flexe.v0.models.bill_of_lading'] = PropTypes.exact({
6831
- type: PropTypes.string.isRequired,
6832
- gs1us: T['io.flow.flexe.v0.models.gs1us'],
6833
- });
6834
-
6835
- T['io.flow.flexe.v0.models.retail_order_data'] = PropTypes.exact({
6836
- purchase_order_uuid: PropTypes.string.isRequired,
6837
- bill_of_lading: T['io.flow.flexe.v0.models.bill_of_lading'].isRequired,
6838
- inventory_data: PropTypes.arrayOf(T['io.flow.flexe.v0.models.retail_inventory_data']).isRequired,
6839
- ship_within: T['io.flow.flexe.v0.models.ship_within'].isRequired,
6840
- ship_to: T['io.flow.flexe.v0.models.ship_to'].isRequired,
6841
- build_by: PropTypes.string,
6842
- instrunctions: PropTypes.string,
6843
- routing_details_id: PropTypes.string,
6844
- destination_type: PropTypes.string,
6845
- });
6846
-
6847
- T['io.flow.flexe.v0.models.retail_order'] = PropTypes.exact({
6848
- order: T['io.flow.flexe.v0.models.retail_order_data'].isRequired,
6849
- });
6850
-
6851
- T['io.flow.flexe.v0.models.flexe_retail_fulfillment_form'] = PropTypes.exact({
6852
- reservation_id: PropTypes.number.isRequired,
6853
- client_request_id: PropTypes.string,
6854
- request: T['io.flow.flexe.v0.models.retail_order'].isRequired,
6855
- });
6856
-
6857
6596
  T['io.flow.export.v0.enums.item_identifier'] = PropTypes.oneOf(['item_number', 'sku']);
6858
6597
 
6859
6598
  T['io.flow.common.v0.models.included_levies'] = PropTypes.exact({
@@ -8319,6 +8058,13 @@ T['io.flow.internal.v0.models.authorization_bundle_deleted'] = PropTypes.exact({
8319
8058
  id: PropTypes.string.isRequired,
8320
8059
  });
8321
8060
 
8061
+ T['io.flow.internal.v0.models.spp_tracker_update_request_deleted'] = PropTypes.exact({
8062
+ discriminator: PropTypes.oneOf(['spp_tracker_update_request_deleted']).isRequired,
8063
+ event_id: PropTypes.string.isRequired,
8064
+ timestamp: PropTypes.string.isRequired,
8065
+ id: PropTypes.string.isRequired,
8066
+ });
8067
+
8322
8068
  T['io.flow.internal.v0.models.partner_tracking_subscription_deleted'] = PropTypes.exact({
8323
8069
  discriminator: PropTypes.oneOf(['partner_tracking_subscription_deleted']).isRequired,
8324
8070
  event_id: PropTypes.string.isRequired,
@@ -9089,6 +8835,13 @@ T['io.flow.internal.v0.models.fulfillment_deleted'] = PropTypes.exact({
9089
8835
  id: PropTypes.string.isRequired,
9090
8836
  });
9091
8837
 
8838
+ T['io.flow.internal.v0.models.aldo_item_deleted'] = PropTypes.exact({
8839
+ discriminator: PropTypes.oneOf(['aldo_item_deleted']).isRequired,
8840
+ event_id: PropTypes.string.isRequired,
8841
+ timestamp: PropTypes.string.isRequired,
8842
+ id: PropTypes.string.isRequired,
8843
+ });
8844
+
9092
8845
  T['io.flow.internal.v0.models.adyen_dispute_deleted'] = PropTypes.exact({
9093
8846
  discriminator: PropTypes.oneOf(['adyen_dispute_deleted']).isRequired,
9094
8847
  event_id: PropTypes.string.isRequired,
@@ -9096,6 +8849,14 @@ T['io.flow.internal.v0.models.adyen_dispute_deleted'] = PropTypes.exact({
9096
8849
  id: PropTypes.string.isRequired,
9097
8850
  });
9098
8851
 
8852
+ T['io.flow.internal.v0.models.final_estimate_deleted'] = PropTypes.exact({
8853
+ discriminator: PropTypes.oneOf(['final_estimate_deleted']).isRequired,
8854
+ event_id: PropTypes.string.isRequired,
8855
+ timestamp: PropTypes.string.isRequired,
8856
+ organization: PropTypes.string.isRequired,
8857
+ id: PropTypes.string.isRequired,
8858
+ });
8859
+
9099
8860
  T['io.flow.internal.v0.models.adjusted_estimates_deleted'] = PropTypes.exact({
9100
8861
  discriminator: PropTypes.oneOf(['adjusted_estimates_deleted']).isRequired,
9101
8862
  event_id: PropTypes.string.isRequired,
@@ -15230,6 +14991,8 @@ T['io.flow.internal.v0.models.dispute_override_update_form'] = PropTypes.exact({
15230
14991
  reporting_category: T['io.flow.internal.v0.enums.dispute_reporting_category'],
15231
14992
  category: T['io.flow.internal.v0.enums.dispute_category'],
15232
14993
  status: T['io.flow.internal.v0.enums.dispute_status'],
14994
+ defense_outcome: T['io.flow.internal.v0.enums.dispute_defense_outcome'],
14995
+ defended_at: PropTypes.string,
15233
14996
  });
15234
14997
 
15235
14998
  T['io.flow.internal.v0.enums.dispute_type'] = PropTypes.oneOf(['chargeback']);
@@ -15465,13 +15228,6 @@ T['io.flow.internal.v0.models.debug_order_transaction_form'] = PropTypes.exact({
15465
15228
  order_cancellation_id: PropTypes.string,
15466
15229
  });
15467
15230
 
15468
- T['io.flow.internal.v0.models.debug_fulfillment_delta'] = PropTypes.exact({
15469
- posted_transactions_net: PropTypes.number.isRequired,
15470
- fulfillments_net: PropTypes.number.isRequired,
15471
- delta_amount: PropTypes.number.isRequired,
15472
- delta_percent: PropTypes.number.isRequired,
15473
- });
15474
-
15475
15231
  T['io.flow.billing.v0.models.billing_discount'] = PropTypes.exact({
15476
15232
  amount: PropTypes.number.isRequired,
15477
15233
  description: PropTypes.string,
@@ -15496,6 +15252,13 @@ T['io.flow.billing.v0.models.billing_channel_statement_reference'] = PropTypes.e
15496
15252
  id: PropTypes.string.isRequired,
15497
15253
  });
15498
15254
 
15255
+ T['io.flow.internal.v0.models.debug_fulfillment_delta'] = PropTypes.exact({
15256
+ posted_transactions_net: PropTypes.number.isRequired,
15257
+ fulfillments_net: PropTypes.number.isRequired,
15258
+ delta_amount: PropTypes.number.isRequired,
15259
+ delta_percent: PropTypes.number.isRequired,
15260
+ });
15261
+
15499
15262
  T['io.flow.internal.v0.models.reporting_details'] = PropTypes.exact({
15500
15263
  accounting_transactions: PropTypes.arrayOf(PropTypes.object),
15501
15264
  fulfillments: PropTypes.arrayOf(PropTypes.object),
@@ -15537,14 +15300,6 @@ T['io.flow.internal.v0.models.debug_payment_transaction_summary'] = PropTypes.ex
15537
15300
  ignore_reason: PropTypes.string,
15538
15301
  });
15539
15302
 
15540
- T['io.flow.internal.v0.models.debug_label'] = PropTypes.exact({
15541
- carrier_id: PropTypes.string.isRequired,
15542
- carrier_tracking_number: PropTypes.string.isRequired,
15543
- label_tracking_summary_id: PropTypes.string,
15544
- label_id: PropTypes.string,
15545
- transactions: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_label_transaction_summary']),
15546
- });
15547
-
15548
15303
  T['io.flow.internal.v0.models.merchant_details'] = PropTypes.exact({
15549
15304
  name: PropTypes.string.isRequired,
15550
15305
  });
@@ -16029,8 +15784,6 @@ T['io.flow.internal.v0.models.commercial_invoice_summary'] = PropTypes.exact({
16029
15784
  line_items: PropTypes.arrayOf(T['io.flow.internal.v0.models.invoice_line_item']).isRequired,
16030
15785
  });
16031
15786
 
16032
- T['io.flow.internal.v0.enums.colm_item_type'] = PropTypes.oneOf(['physical', 'digital']);
16033
-
16034
15787
  T['io.flow.internal.v0.enums.item_classification_status'] = PropTypes.oneOf([
16035
15788
  'unknown',
16036
15789
  'manual',
@@ -18092,6 +17845,7 @@ T['io.flow.tracking.v0.models.tracking_event'] = PropTypes.exact({
18092
17845
  timestamp: PropTypes.string.isRequired,
18093
17846
  description: PropTypes.string,
18094
17847
  aggregator_status_code: PropTypes.string,
17848
+ created_at: PropTypes.string,
18095
17849
  });
18096
17850
 
18097
17851
  T['io.flow.tracking.v0.models.tracking_label'] = PropTypes.exact({
@@ -19581,6 +19335,17 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
19581
19335
  'tax_refund',
19582
19336
  ]);
19583
19337
 
19338
+ T['io.flow.internal.v0.models.debug_original_transaction_summary'] = PropTypes.exact({
19339
+ id: PropTypes.string.isRequired,
19340
+ source: T['io.flow.billing.v0.enums.transaction_source'].isRequired,
19341
+ });
19342
+
19343
+ T['io.flow.internal.v0.models.debug_adjustment'] = PropTypes.exact({
19344
+ transaction_id: PropTypes.string.isRequired,
19345
+ original_transaction: T['io.flow.internal.v0.models.debug_original_transaction_summary'].isRequired,
19346
+ description: PropTypes.string.isRequired,
19347
+ });
19348
+
19584
19349
  T['io.flow.billing.v0.models.parent_transaction_summary'] = PropTypes.exact({
19585
19350
  id: PropTypes.string.isRequired,
19586
19351
  source: T['io.flow.billing.v0.enums.transaction_source'].isRequired,
@@ -20144,6 +19909,19 @@ T['io.flow.internal.v0.models.tracking_subscription_upserted'] = PropTypes.exact
20144
19909
  tracking_subscription: T['io.flow.internal.v0.models.tracking_subscription'].isRequired,
20145
19910
  });
20146
19911
 
19912
+ T['io.flow.internal.v0.models.spp_tracker_update_request'] = PropTypes.exact({
19913
+ id: PropTypes.string.isRequired,
19914
+ tracking_subscription: T['io.flow.internal.v0.models.tracking_subscription'].isRequired,
19915
+ created_at: PropTypes.string.isRequired,
19916
+ });
19917
+
19918
+ T['io.flow.internal.v0.models.spp_tracker_update_request_upserted'] = PropTypes.exact({
19919
+ discriminator: PropTypes.oneOf(['spp_tracker_update_request_upserted']).isRequired,
19920
+ event_id: PropTypes.string.isRequired,
19921
+ timestamp: PropTypes.string.isRequired,
19922
+ spp_tracker_update_request: T['io.flow.internal.v0.models.spp_tracker_update_request'].isRequired,
19923
+ });
19924
+
20147
19925
  T['io.flow.internal.v0.models.order_validation_failure_summary'] = PropTypes.exact({
20148
19926
  organization_id: PropTypes.string.isRequired,
20149
19927
  order_number: PropTypes.string.isRequired,
@@ -20879,6 +20657,8 @@ T['io.flow.internal.v0.models.alert_failure_summary'] = PropTypes.exact({
20879
20657
  summaries: PropTypes.arrayOf(T['io.flow.internal.v0.models.alert_failure_summary_detail']).isRequired,
20880
20658
  });
20881
20659
 
20660
+ T['io.flow.internal.v0.enums.aldo_item_type'] = PropTypes.oneOf(['physical', 'digital']);
20661
+
20882
20662
  T['io.flow.internal.v0.models.afterpay_refund'] = PropTypes.exact({
20883
20663
  id: PropTypes.string.isRequired,
20884
20664
  flow_refund_id: PropTypes.string.isRequired,
@@ -21046,9 +20826,15 @@ T['io.flow.internal.v0.models.psp_routing_distribution'] = PropTypes.exact({
21046
20826
  distributions: PropTypes.arrayOf(T['io.flow.internal.v0.models.psp_distribution']).isRequired,
21047
20827
  });
21048
20828
 
20829
+ T['io.flow.internal.v0.models.psp_routing_distribution_revision_form'] = PropTypes.exact({
20830
+ previous_revision: PropTypes.string,
20831
+ description: PropTypes.string,
20832
+ psp_routing_distributions: PropTypes.arrayOf(T['io.flow.internal.v0.models.psp_routing_distribution']).isRequired,
20833
+ });
20834
+
21049
20835
  T['io.flow.internal.v0.models.psp_routing_distribution_revision'] = PropTypes.exact({
21050
20836
  id: PropTypes.string.isRequired,
21051
- description: PropTypes.string.isRequired,
20837
+ description: PropTypes.string,
21052
20838
  psp_routing_distributions: PropTypes.arrayOf(T['io.flow.internal.v0.models.psp_routing_distribution']).isRequired,
21053
20839
  created_at: PropTypes.string.isRequired,
21054
20840
  updated_at: PropTypes.string.isRequired,
@@ -21835,6 +21621,11 @@ T['io.flow.billing.v0.models.transaction'] = PropTypes.exact({
21835
21621
  updated_at: PropTypes.string.isRequired,
21836
21622
  });
21837
21623
 
21624
+ T['io.flow.internal.v0.models.debug_order_transaction_details'] = PropTypes.exact({
21625
+ transaction: T['io.flow.billing.v0.models.transaction'].isRequired,
21626
+ payout_details: T['io.flow.billing.v0.unions.payout_status'],
21627
+ });
21628
+
21838
21629
  T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'] = PropTypes.exact({
21839
21630
  units: T['io.flow.trueup.v0.models.label_units'].isRequired,
21840
21631
  base: T['io.flow.trueup.v0.models.label_base'].isRequired,
@@ -23403,6 +23194,30 @@ T['io.flow.label.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
23403
23194
  itemized_estimate: T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'],
23404
23195
  });
23405
23196
 
23197
+ T['io.flow.internal.v0.models.final_estimate'] = PropTypes.exact({
23198
+ id: PropTypes.string.isRequired,
23199
+ organization_id: PropTypes.string.isRequired,
23200
+ label_id: PropTypes.string.isRequired,
23201
+ estimate: T['io.flow.label.v0.models.shipping_label_hop_summary'].isRequired,
23202
+ });
23203
+
23204
+ T['io.flow.internal.v0.models.final_estimate_upserted'] = PropTypes.exact({
23205
+ discriminator: PropTypes.oneOf(['final_estimate_upserted']).isRequired,
23206
+ event_id: PropTypes.string.isRequired,
23207
+ timestamp: PropTypes.string.isRequired,
23208
+ organization: PropTypes.string.isRequired,
23209
+ final_estimate: T['io.flow.internal.v0.models.final_estimate'].isRequired,
23210
+ });
23211
+
23212
+ T['io.flow.internal.v0.models.debug_label'] = PropTypes.exact({
23213
+ carrier_id: PropTypes.string.isRequired,
23214
+ carrier_tracking_number: PropTypes.string.isRequired,
23215
+ label_tracking_summary_id: PropTypes.string,
23216
+ label_id: PropTypes.string,
23217
+ cost_estimate: T['io.flow.label.v0.models.shipping_label_hop_summary'],
23218
+ transactions: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_label_transaction_summary']),
23219
+ });
23220
+
23406
23221
  T['io.flow.internal.v0.models.adjusted_estimates'] = PropTypes.exact({
23407
23222
  id: PropTypes.string.isRequired,
23408
23223
  organization_id: PropTypes.string.isRequired,
@@ -24746,23 +24561,6 @@ T['io.flow.internal.v0.models.components'] = PropTypes.exact({
24746
24561
  insurance: T['io.flow.common.v0.models.price'].isRequired,
24747
24562
  });
24748
24563
 
24749
- T['io.flow.internal.v0.models.colm_item_form'] = PropTypes.exact({
24750
- number: PropTypes.string.isRequired,
24751
- amount: T['io.flow.common.v0.models.price'].isRequired,
24752
- description: PropTypes.string,
24753
- type: T['io.flow.internal.v0.enums.colm_item_type'].isRequired,
24754
- added_on: PropTypes.string.isRequired,
24755
- });
24756
-
24757
- T['io.flow.internal.v0.models.colm_item'] = PropTypes.exact({
24758
- id: PropTypes.string.isRequired,
24759
- number: PropTypes.string.isRequired,
24760
- amount: T['io.flow.common.v0.models.price'].isRequired,
24761
- description: PropTypes.string,
24762
- type: T['io.flow.internal.v0.enums.colm_item_type'].isRequired,
24763
- added_on: PropTypes.string.isRequired,
24764
- });
24765
-
24766
24564
  T['io.flow.internal.v0.models.fee'] = PropTypes.exact({
24767
24565
  value: T['io.flow.common.v0.models.price'].isRequired,
24768
24566
  description: PropTypes.string,
@@ -25243,12 +25041,13 @@ T['io.flow.internal.v0.models.debug_details'] = PropTypes.exact({
25243
25041
  captures: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_payment_transaction_summary']).isRequired,
25244
25042
  refunds: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_payment_transaction_summary']).isRequired,
25245
25043
  allocation: T['io.flow.experience.v0.models.allocation_v2'].isRequired,
25044
+ adjustments: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_adjustment']).isRequired,
25246
25045
  });
25247
25046
 
25248
25047
  T['io.flow.internal.v0.models.debug_order_transaction'] = PropTypes.exact({
25249
25048
  order: T['io.flow.internal.v0.models.debug_order'].isRequired,
25250
25049
  debug: T['io.flow.internal.v0.models.debug_details'].isRequired,
25251
- transactions: PropTypes.arrayOf(T['io.flow.billing.v0.models.transaction']).isRequired,
25050
+ transactions: PropTypes.arrayOf(T['io.flow.internal.v0.models.debug_order_transaction_details']).isRequired,
25252
25051
  reporting: T['io.flow.internal.v0.models.reporting_details'].isRequired,
25253
25052
  banking: T['io.flow.internal.v0.models.debug_banking_details'].isRequired,
25254
25053
  });
@@ -25813,6 +25612,30 @@ T['io.flow.internal.v0.models.authorized_charge_status'] = PropTypes.exact({
25813
25612
  refunded: T['io.flow.common.v0.models.price_with_base'].isRequired,
25814
25613
  });
25815
25614
 
25615
+ T['io.flow.internal.v0.models.aldo_item_form'] = PropTypes.exact({
25616
+ number: PropTypes.string.isRequired,
25617
+ amount: T['io.flow.common.v0.models.price'].isRequired,
25618
+ description: PropTypes.string,
25619
+ type: T['io.flow.internal.v0.enums.aldo_item_type'].isRequired,
25620
+ added_on: PropTypes.string.isRequired,
25621
+ });
25622
+
25623
+ T['io.flow.internal.v0.models.aldo_item'] = PropTypes.exact({
25624
+ id: PropTypes.string.isRequired,
25625
+ number: PropTypes.string.isRequired,
25626
+ amount: T['io.flow.common.v0.models.price'].isRequired,
25627
+ description: PropTypes.string,
25628
+ type: T['io.flow.internal.v0.enums.aldo_item_type'].isRequired,
25629
+ added_on: PropTypes.string.isRequired,
25630
+ });
25631
+
25632
+ T['io.flow.internal.v0.models.aldo_item_upserted'] = PropTypes.exact({
25633
+ discriminator: PropTypes.oneOf(['aldo_item_upserted']).isRequired,
25634
+ event_id: PropTypes.string.isRequired,
25635
+ timestamp: PropTypes.string.isRequired,
25636
+ item: T['io.flow.internal.v0.models.aldo_item'].isRequired,
25637
+ });
25638
+
25816
25639
  T['io.flow.internal.v0.models.account_statistics_additional_balances'] = PropTypes.exact({
25817
25640
  on_hold: T['io.flow.common.v0.models.price'].isRequired,
25818
25641
  });
@@ -26955,6 +26778,8 @@ T['io.flow.internal.v0.models.fraud_review_authorization_decision_upserted'] = P
26955
26778
  T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
26956
26779
  T['io.flow.internal.v0.models.adjusted_estimates_upserted'],
26957
26780
  T['io.flow.internal.v0.models.adjusted_estimates_deleted'],
26781
+ T['io.flow.internal.v0.models.final_estimate_upserted'],
26782
+ T['io.flow.internal.v0.models.final_estimate_deleted'],
26958
26783
  T['io.flow.internal.v0.models.adyen_authorization_deleted'],
26959
26784
  T['io.flow.internal.v0.models.adyen_authorization_upserted'],
26960
26785
  T['io.flow.internal.v0.models.adyen_cancel_deleted'],
@@ -26965,6 +26790,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
26965
26790
  T['io.flow.internal.v0.models.adyen_refund_upserted'],
26966
26791
  T['io.flow.internal.v0.models.adyen_dispute_upserted'],
26967
26792
  T['io.flow.internal.v0.models.adyen_dispute_deleted'],
26793
+ T['io.flow.internal.v0.models.aldo_item_upserted'],
26794
+ T['io.flow.internal.v0.models.aldo_item_deleted'],
26968
26795
  T['io.flow.internal.v0.models.fulfillment_upserted'],
26969
26796
  T['io.flow.internal.v0.models.fulfillment_deleted'],
26970
26797
  T['io.flow.internal.v0.models.merchant_upserted'],
@@ -27199,6 +27026,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
27199
27026
  T['io.flow.internal.v0.models.unassigned_merchant_guid_deleted'],
27200
27027
  T['io.flow.internal.v0.models.partner_tracking_subscription_upserted'],
27201
27028
  T['io.flow.internal.v0.models.partner_tracking_subscription_deleted'],
27029
+ T['io.flow.internal.v0.models.spp_tracker_update_request_upserted'],
27030
+ T['io.flow.internal.v0.models.spp_tracker_update_request_deleted'],
27202
27031
  T['io.flow.internal.v0.models.internal_authorization_upserted'],
27203
27032
  T['io.flow.internal.v0.models.internal_authorization_deleted'],
27204
27033
  T['io.flow.internal.v0.models.afterpay_authorization_upserted'],
@@ -27473,6 +27302,8 @@ T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustm
27473
27302
  T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
27474
27303
  'adjusted_estimates_upserted',
27475
27304
  'adjusted_estimates_deleted',
27305
+ 'final_estimate_upserted',
27306
+ 'final_estimate_deleted',
27476
27307
  'adyen_authorization_deleted',
27477
27308
  'adyen_authorization_upserted',
27478
27309
  'adyen_cancel_deleted',
@@ -27483,6 +27314,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
27483
27314
  'adyen_refund_upserted',
27484
27315
  'adyen_dispute_upserted',
27485
27316
  'adyen_dispute_deleted',
27317
+ 'aldo_item_upserted',
27318
+ 'aldo_item_deleted',
27486
27319
  'fulfillment_upserted',
27487
27320
  'fulfillment_deleted',
27488
27321
  'merchant_upserted',
@@ -27717,6 +27550,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
27717
27550
  'unassigned_merchant_guid_deleted',
27718
27551
  'partner_tracking_subscription_upserted',
27719
27552
  'partner_tracking_subscription_deleted',
27553
+ 'spp_tracker_update_request_upserted',
27554
+ 'spp_tracker_update_request_deleted',
27720
27555
  'internal_authorization_upserted',
27721
27556
  'internal_authorization_deleted',
27722
27557
  'afterpay_authorization_upserted',
@@ -28007,6 +27842,10 @@ T['io.flow.internal.v0.models.adyen_payment_details_form'] = PropTypes.exact({
28007
27842
  challenge_result: PropTypes.string,
28008
27843
  });
28009
27844
 
27845
+ T['io.flow.internal.v0.models.aftership_webhook'] = PropTypes.exact({
27846
+ placeholder: PropTypes.bool,
27847
+ });
27848
+
28010
27849
  T['io.flow.internal.v0.models.alert_import_summary'] = PropTypes.exact({
28011
27850
  organization_id: PropTypes.string.isRequired,
28012
27851
  filename: PropTypes.string.isRequired,
@@ -28317,6 +28156,10 @@ T['io.flow.internal.v0.models.financial_reporting_statement_form'] = PropTypes.e
28317
28156
  flow_entity_country_code: PropTypes.string,
28318
28157
  });
28319
28158
 
28159
+ T['io.flow.internal.v0.models.flexe_webhook'] = PropTypes.exact({
28160
+ placeholder: PropTypes.bool,
28161
+ });
28162
+
28320
28163
  T['io.flow.internal.v0.models.flow_channel_organization'] = PropTypes.exact({
28321
28164
  placeholder: PropTypes.string,
28322
28165
  });
@@ -28956,6 +28799,14 @@ T['io.flow.internal.v0.models.tracking_debug_force_transit_form'] = PropTypes.ex
28956
28799
  description: PropTypes.string.isRequired,
28957
28800
  });
28958
28801
 
28802
+ T['io.flow.internal.v0.models.tracking_resync'] = PropTypes.exact({
28803
+ placeholder: PropTypes.bool,
28804
+ });
28805
+
28806
+ T['io.flow.internal.v0.models.tracking_webhook'] = PropTypes.exact({
28807
+ placeholder: PropTypes.bool,
28808
+ });
28809
+
28959
28810
  T['io.flow.internal.v0.models.unclassified_products_purge_request'] = PropTypes.exact({
28960
28811
  num_deleted_products: PropTypes.objectOf(PropTypes.number).isRequired,
28961
28812
  });
@@ -29055,15 +28906,6 @@ T['io.flow.export.v0.models.landed_cost_item'] = PropTypes.exact({
29055
28906
  destination: PropTypes.string.isRequired,
29056
28907
  });
29057
28908
 
29058
- T['io.flow.flexe.v0.enums.flexe_notification'] = PropTypes.oneOf(['receipt', 'shipment']);
29059
-
29060
- T['io.flow.flexe.v0.models.error'] = PropTypes.exact({
29061
- url: PropTypes.string.isRequired,
29062
- client_request_id: PropTypes.string.isRequired,
29063
- generated_at: PropTypes.string.isRequired,
29064
- error: PropTypes.string.isRequired,
29065
- });
29066
-
29067
28909
  T['io.flow.payment.v0.models.capture_form'] = PropTypes.exact({
29068
28910
  authorization_id: PropTypes.string.isRequired,
29069
28911
  key: PropTypes.string,
@@ -29243,6 +29085,17 @@ T['io.flow.external.paypal.v1.enums.event_type'] = PropTypes.oneOf([
29243
29085
  ]);
29244
29086
 
29245
29087
  T['io.flow.external.paypal.v1.enums.http_method'] = PropTypes.oneOf(['GET', 'POST', 'PUT', 'DELETE', 'HEAD', 'CONNECT', 'OPTIONS', 'PATCH']);
29088
+ T['io.flow.external.paypal.v1.enums.reporting_balance_affecting_records_only'] = PropTypes.oneOf(['Y', 'N']);
29089
+
29090
+ T['io.flow.external.paypal.v1.enums.reporting_transaction_field'] = PropTypes.oneOf([
29091
+ 'transaction_info',
29092
+ 'payer_info',
29093
+ 'shipping_info',
29094
+ 'auction_info',
29095
+ 'cart_info',
29096
+ 'incentive_info',
29097
+ 'store_info',
29098
+ ]);
29246
29099
 
29247
29100
  T['io.flow.external.paypal.v1.models.token'] = PropTypes.exact({
29248
29101
  access_token: PropTypes.string.isRequired,
@@ -29431,6 +29284,58 @@ T['io.flow.shopify.markets.internal.v0.models.webhook'] = PropTypes.exact({
29431
29284
  placeholder: PropTypes.string,
29432
29285
  });
29433
29286
 
29287
+ T['io.flow.adyen.v0.enums.payment_record_type'] = PropTypes.oneOf([
29288
+ 'Authorised',
29289
+ 'AuthorisedPending',
29290
+ 'Cancelled',
29291
+ 'CaptureFailed',
29292
+ 'Chargeback',
29293
+ 'SecondChargeback',
29294
+ 'ChargebackExternally',
29295
+ 'ChargebackExternallyWithInfo',
29296
+ 'ChargebackReversed',
29297
+ 'ChargebackReversedExternallyWithInfo',
29298
+ 'Error',
29299
+ 'Expired',
29300
+ 'PaidOut',
29301
+ 'PaidOutExternally',
29302
+ 'PaidOutExternallyWithInfo',
29303
+ 'PaidOutReversed',
29304
+ 'PayoutAuthorised',
29305
+ 'PayoutError',
29306
+ 'PayoutFailed',
29307
+ 'Received',
29308
+ 'ReceivedPayout',
29309
+ 'RefundAuthorised',
29310
+ 'Refunded',
29311
+ 'RefundedBulk',
29312
+ 'RefundedExternally',
29313
+ 'RefundedExternallyWithInfo',
29314
+ 'RefundFailed',
29315
+ 'RefundedInInstallments',
29316
+ 'RefundedInstallment',
29317
+ 'RefundedReversed',
29318
+ 'RefundNotProcessed',
29319
+ 'Refused',
29320
+ 'RefusedPayout',
29321
+ 'Retried',
29322
+ 'SentForPayout',
29323
+ 'SentForRefund',
29324
+ 'SentForSettle',
29325
+ 'Settled',
29326
+ 'SettledBulk',
29327
+ 'SettledExternally',
29328
+ 'SettledExternallyWithInfo',
29329
+ 'SettledInInstallments',
29330
+ 'SettledInstallment',
29331
+ 'SettledReversed',
29332
+ 'SuspendInstallment',
29333
+ 'AdvancedInstallment',
29334
+ 'AdvancedInstallmentCancelled',
29335
+ 'OpenInstallment',
29336
+ 'CloseInstallment',
29337
+ ]);
29338
+
29434
29339
  T['io.flow.adyen.v0.models.authorize_request_3d'] = PropTypes.exact({
29435
29340
  merchantAccount: PropTypes.string.isRequired,
29436
29341
  md: PropTypes.string.isRequired,
@@ -30231,6 +30136,12 @@ export const afterpayCaptureUpserted = T['io.flow.internal.v0.models.afterpay_ca
30231
30136
  export const afterpayRefund = T['io.flow.internal.v0.models.afterpay_refund'];
30232
30137
  export const afterpayRefundDeleted = T['io.flow.internal.v0.models.afterpay_refund_deleted'];
30233
30138
  export const afterpayRefundUpserted = T['io.flow.internal.v0.models.afterpay_refund_upserted'];
30139
+ export const aftershipWebhook = T['io.flow.internal.v0.models.aftership_webhook'];
30140
+ export const aldoItem = T['io.flow.internal.v0.models.aldo_item'];
30141
+ export const aldoItemDeleted = T['io.flow.internal.v0.models.aldo_item_deleted'];
30142
+ export const aldoItemForm = T['io.flow.internal.v0.models.aldo_item_form'];
30143
+ export const aldoItemType = T['io.flow.internal.v0.enums.aldo_item_type'];
30144
+ export const aldoItemUpserted = T['io.flow.internal.v0.models.aldo_item_upserted'];
30234
30145
  export const alertErrorSummary = T['io.flow.internal.v0.models.alert_error_summary'];
30235
30146
  export const alertFailureSummary = T['io.flow.internal.v0.models.alert_failure_summary'];
30236
30147
  export const alertFailureSummaryDetail = T['io.flow.internal.v0.models.alert_failure_summary_detail'];
@@ -30542,9 +30453,6 @@ export const classifiedProductDetail = T['io.flow.internal.v0.models.classified_
30542
30453
  export const cliLogEntry = T['io.flow.internal.v0.models.cli_log_entry'];
30543
30454
  export const cliLogEntryForm = T['io.flow.internal.v0.models.cli_log_entry_form'];
30544
30455
  export const clothingAgeClassification = T['io.flow.internal.v0.enums.clothing_age_classification'];
30545
- export const colmItem = T['io.flow.internal.v0.models.colm_item'];
30546
- export const colmItemForm = T['io.flow.internal.v0.models.colm_item_form'];
30547
- export const colmItemType = T['io.flow.internal.v0.enums.colm_item_type'];
30548
30456
  export const commercialInvoiceComparison = T['io.flow.internal.v0.models.commercial_invoice_comparison'];
30549
30457
  export const commercialInvoiceInternal = T['io.flow.internal.v0.models.commercial_invoice_internal'];
30550
30458
  export const commercialInvoiceInternalDeleted = T['io.flow.internal.v0.models.commercial_invoice_internal_deleted'];
@@ -30604,6 +30512,7 @@ export const dailyValueDeleted = T['io.flow.internal.v0.models.daily_value_delet
30604
30512
  export const dailyValueUpserted = T['io.flow.internal.v0.models.daily_value_upserted'];
30605
30513
  export const debugAccountingTransaction = T['io.flow.internal.v0.models.debug_accounting_transaction'];
30606
30514
  export const debugAccountingTransactionType = T['io.flow.internal.v0.enums.debug_accounting_transaction_type'];
30515
+ export const debugAdjustment = T['io.flow.internal.v0.models.debug_adjustment'];
30607
30516
  export const debugBankingDetails = T['io.flow.internal.v0.models.debug_banking_details'];
30608
30517
  export const debugDetails = T['io.flow.internal.v0.models.debug_details'];
30609
30518
  export const debugFulfillmentDelta = T['io.flow.internal.v0.models.debug_fulfillment_delta'];
@@ -30611,8 +30520,10 @@ export const debugLabel = T['io.flow.internal.v0.models.debug_label'];
30611
30520
  export const debugLabelTransactionSummary = T['io.flow.internal.v0.models.debug_label_transaction_summary'];
30612
30521
  export const debugOrder = T['io.flow.internal.v0.models.debug_order'];
30613
30522
  export const debugOrderTransaction = T['io.flow.internal.v0.models.debug_order_transaction'];
30523
+ export const debugOrderTransactionDetails = T['io.flow.internal.v0.models.debug_order_transaction_details'];
30614
30524
  export const debugOrderTransactionForm = T['io.flow.internal.v0.models.debug_order_transaction_form'];
30615
30525
  export const debugOrderTransactionFormOrderIdentifier = T['io.flow.internal.v0.models.debug_order_transaction_form_order_identifier'];
30526
+ export const debugOriginalTransactionSummary = T['io.flow.internal.v0.models.debug_original_transaction_summary'];
30616
30527
  export const debugPaymentTransactionSummary = T['io.flow.internal.v0.models.debug_payment_transaction_summary'];
30617
30528
  export const debugTransactionDetails = T['io.flow.internal.v0.models.debug_transaction_details'];
30618
30529
  export const debugTransactionDetailsStatus = T['io.flow.internal.v0.models.debug_transaction_details_status'];
@@ -30781,6 +30692,9 @@ export const feedUpserted = T['io.flow.internal.v0.models.feed_upserted'];
30781
30692
  export const feedsExport = T['io.flow.internal.v0.models.feeds_export'];
30782
30693
  export const fees = T['io.flow.internal.v0.models.fees'];
30783
30694
  export const feesSource = T['io.flow.internal.v0.enums.fees_source'];
30695
+ export const finalEstimate = T['io.flow.internal.v0.models.final_estimate'];
30696
+ export const finalEstimateDeleted = T['io.flow.internal.v0.models.final_estimate_deleted'];
30697
+ export const finalEstimateUpserted = T['io.flow.internal.v0.models.final_estimate_upserted'];
30784
30698
  export const financeBankAccount = T['io.flow.internal.v0.models.finance_bank_account'];
30785
30699
  export const financeBankAccountOwner = T['io.flow.internal.v0.models.finance_bank_account_owner'];
30786
30700
  export const financeBankPayment = T['io.flow.internal.v0.models.finance_bank_payment'];
@@ -30797,6 +30711,7 @@ export const fiservAuthenticationForm = T['io.flow.internal.v0.models.fiserv_aut
30797
30711
  export const fiservMerchant = T['io.flow.internal.v0.models.fiserv_merchant'];
30798
30712
  export const fiservMerchantModificationForm = T['io.flow.internal.v0.models.fiserv_merchant_modification_form'];
30799
30713
  export const fiservMerchantPutForm = T['io.flow.internal.v0.models.fiserv_merchant_put_form'];
30714
+ export const flexeWebhook = T['io.flow.internal.v0.models.flexe_webhook'];
30800
30715
  export const flowAccount = T['io.flow.internal.v0.models.flow_account'];
30801
30716
  export const flowApp = T['io.flow.internal.v0.enums.flow_app'];
30802
30717
  export const flowBillingStatement = T['io.flow.internal.v0.models.flow_billing_statement'];
@@ -31480,6 +31395,7 @@ export const proofOfPostingTimeElapsed = T['io.flow.internal.v0.models.proof_of_
31480
31395
  export const pspDistribution = T['io.flow.internal.v0.models.psp_distribution'];
31481
31396
  export const pspRoutingDistribution = T['io.flow.internal.v0.models.psp_routing_distribution'];
31482
31397
  export const pspRoutingDistributionRevision = T['io.flow.internal.v0.models.psp_routing_distribution_revision'];
31398
+ export const pspRoutingDistributionRevisionForm = T['io.flow.internal.v0.models.psp_routing_distribution_revision_form'];
31483
31399
  export const publicHub = T['io.flow.internal.v0.models.public_hub'];
31484
31400
  export const publicHubForm = T['io.flow.internal.v0.models.public_hub_form'];
31485
31401
  export const quote = T['io.flow.internal.v0.models.quote'];
@@ -31839,6 +31755,9 @@ export const spotRateMetadataIdentity = T['io.flow.internal.v0.models.spot_rate_
31839
31755
  export const spotRateMetadataRate = T['io.flow.internal.v0.models.spot_rate_metadata_rate'];
31840
31756
  export const spotRateUpserted = T['io.flow.internal.v0.models.spot_rate_upserted'];
31841
31757
  export const spotRateVersion = T['io.flow.internal.v0.models.spot_rate_version'];
31758
+ export const sppTrackerUpdateRequest = T['io.flow.internal.v0.models.spp_tracker_update_request'];
31759
+ export const sppTrackerUpdateRequestDeleted = T['io.flow.internal.v0.models.spp_tracker_update_request_deleted'];
31760
+ export const sppTrackerUpdateRequestUpserted = T['io.flow.internal.v0.models.spp_tracker_update_request_upserted'];
31842
31761
  export const standaloneAttachment = T['io.flow.internal.v0.models.standalone_attachment'];
31843
31762
  export const standaloneAttachmentDeleted = T['io.flow.internal.v0.models.standalone_attachment_deleted'];
31844
31763
  export const standaloneAttachmentUpserted = T['io.flow.internal.v0.models.standalone_attachment_upserted'];
@@ -31962,10 +31881,12 @@ export const trackingProcessingErrorUpserted = T['io.flow.internal.v0.models.tra
31962
31881
  export const trackingProcessingFailureClassification = T['io.flow.internal.v0.enums.tracking_processing_failure_classification'];
31963
31882
  export const trackingRequest = T['io.flow.internal.v0.models.tracking_request'];
31964
31883
  export const trackingResponse = T['io.flow.internal.v0.models.tracking_response'];
31884
+ export const trackingResync = T['io.flow.internal.v0.models.tracking_resync'];
31965
31885
  export const trackingSubscription = T['io.flow.internal.v0.models.tracking_subscription'];
31966
31886
  export const trackingSubscriptionDeleted = T['io.flow.internal.v0.models.tracking_subscription_deleted'];
31967
31887
  export const trackingSubscriptionUpserted = T['io.flow.internal.v0.models.tracking_subscription_upserted'];
31968
31888
  export const trackingUpserted = T['io.flow.internal.v0.models.tracking_upserted'];
31889
+ export const trackingWebhook = T['io.flow.internal.v0.models.tracking_webhook'];
31969
31890
  export const transaction = T['io.flow.internal.v0.unions.transaction'];
31970
31891
  export const transactionAdjustment = T['io.flow.internal.v0.models.transaction_adjustment'];
31971
31892
  export const transactionAdjustmentForm = T['io.flow.internal.v0.models.transaction_adjustment_form'];