@flowio/api-internal-prop-types 9.24.107 → 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.
- package/lib/api-internal.d.ts +94 -305
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +94 -305
- package/src/api-internal.js +109 -308
package/src/api-internal.js
CHANGED
|
@@ -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
|
});
|
|
@@ -6567,300 +6593,6 @@ T['io.flow.payment.v0.unions.authorization_result_action_details'] = PropTypes.o
|
|
|
6567
6593
|
T['io.flow.payment.v0.models.select_issuer_option_action_details'],
|
|
6568
6594
|
]);
|
|
6569
6595
|
|
|
6570
|
-
T['io.flow.flexe.v0.models.carton_pick_delivery_details'] = PropTypes.exact({
|
|
6571
|
-
shipment_uuid: PropTypes.string,
|
|
6572
|
-
carrier: PropTypes.string,
|
|
6573
|
-
carrier_id: PropTypes.string,
|
|
6574
|
-
});
|
|
6575
|
-
|
|
6576
|
-
T['io.flow.flexe.v0.models.shipment_delivery_details'] = PropTypes.exact({
|
|
6577
|
-
shipment_uuid: PropTypes.string,
|
|
6578
|
-
});
|
|
6579
|
-
|
|
6580
|
-
T['io.flow.flexe.v0.models.fulfillment_order_details'] = PropTypes.exact({
|
|
6581
|
-
shipment_uuid: PropTypes.string.isRequired,
|
|
6582
|
-
carrier: PropTypes.string,
|
|
6583
|
-
carrier_id: PropTypes.string,
|
|
6584
|
-
});
|
|
6585
|
-
|
|
6586
|
-
T['io.flow.flexe.v0.models.ship_to'] = PropTypes.exact({
|
|
6587
|
-
name: PropTypes.string.isRequired,
|
|
6588
|
-
address_1: PropTypes.string.isRequired,
|
|
6589
|
-
locality: PropTypes.string.isRequired,
|
|
6590
|
-
region: PropTypes.string.isRequired,
|
|
6591
|
-
postal_code: PropTypes.string.isRequired,
|
|
6592
|
-
country: PropTypes.string.isRequired,
|
|
6593
|
-
address_2: PropTypes.string,
|
|
6594
|
-
address_3: PropTypes.string,
|
|
6595
|
-
});
|
|
6596
|
-
|
|
6597
|
-
T['io.flow.flexe.v0.models.ship_within'] = PropTypes.exact({
|
|
6598
|
-
start: PropTypes.string.isRequired,
|
|
6599
|
-
end: PropTypes.string.isRequired,
|
|
6600
|
-
});
|
|
6601
|
-
|
|
6602
|
-
T['io.flow.flexe.v0.models.flexe_retail_attachment'] = PropTypes.exact({
|
|
6603
|
-
display_name: PropTypes.string.isRequired,
|
|
6604
|
-
url: PropTypes.string.isRequired,
|
|
6605
|
-
});
|
|
6606
|
-
|
|
6607
|
-
T['io.flow.flexe.v0.models.retail_inventory_data'] = PropTypes.exact({
|
|
6608
|
-
sku: PropTypes.string.isRequired,
|
|
6609
|
-
quantity: PropTypes.number.isRequired,
|
|
6610
|
-
unit: PropTypes.string.isRequired,
|
|
6611
|
-
attachments: PropTypes.arrayOf(T['io.flow.flexe.v0.models.flexe_retail_attachment']),
|
|
6612
|
-
});
|
|
6613
|
-
|
|
6614
|
-
T['io.flow.flexe.v0.models.lading_quantity'] = PropTypes.exact({
|
|
6615
|
-
num_pallets: PropTypes.number.isRequired,
|
|
6616
|
-
});
|
|
6617
|
-
|
|
6618
|
-
T['io.flow.flexe.v0.models.purchase_order'] = PropTypes.exact({
|
|
6619
|
-
retail_fulfillment_order_id: PropTypes.string.isRequired,
|
|
6620
|
-
bill_of_lading_number: PropTypes.string.isRequired,
|
|
6621
|
-
purchase_order_uuid: PropTypes.string.isRequired,
|
|
6622
|
-
pickup_window_start: PropTypes.string.isRequired,
|
|
6623
|
-
pickup_window_end: PropTypes.string.isRequired,
|
|
6624
|
-
tags: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
6625
|
-
});
|
|
6626
|
-
|
|
6627
|
-
T['io.flow.flexe.v0.models.retail_fulfillment_order_details'] = PropTypes.exact({
|
|
6628
|
-
master_bill_of_lading_number: PropTypes.string.isRequired,
|
|
6629
|
-
scac: PropTypes.string.isRequired,
|
|
6630
|
-
pro_number: PropTypes.string.isRequired,
|
|
6631
|
-
purchase_orders: PropTypes.arrayOf(T['io.flow.flexe.v0.models.purchase_order']).isRequired,
|
|
6632
|
-
lading_quantity: T['io.flow.flexe.v0.models.lading_quantity'].isRequired,
|
|
6633
|
-
});
|
|
6634
|
-
|
|
6635
|
-
T['io.flow.flexe.v0.enums.flexe_status'] = PropTypes.oneOf(['in_transit', 'completed']);
|
|
6636
|
-
|
|
6637
|
-
T['io.flow.flexe.v0.enums.flexe_shipment_type'] = PropTypes.oneOf([
|
|
6638
|
-
'fulfillment_order',
|
|
6639
|
-
'retail_fulfillment_order',
|
|
6640
|
-
'carton_pick_delivery',
|
|
6641
|
-
'delivery',
|
|
6642
|
-
'container_delivery',
|
|
6643
|
-
]);
|
|
6644
|
-
|
|
6645
|
-
T['io.flow.flexe.v0.models.shipment_notification'] = PropTypes.exact({
|
|
6646
|
-
shipment_id: PropTypes.string.isRequired,
|
|
6647
|
-
shipment_type: T['io.flow.flexe.v0.enums.flexe_shipment_type'].isRequired,
|
|
6648
|
-
reservation_id: PropTypes.string.isRequired,
|
|
6649
|
-
status: T['io.flow.flexe.v0.enums.flexe_status'].isRequired,
|
|
6650
|
-
fulfillment_order_details: T['io.flow.flexe.v0.models.fulfillment_order_details'],
|
|
6651
|
-
retail_fulfillment_order_details: T['io.flow.flexe.v0.models.retail_fulfillment_order_details'],
|
|
6652
|
-
delivery_details: T['io.flow.flexe.v0.models.shipment_delivery_details'],
|
|
6653
|
-
carton_pick_delivery_details: T['io.flow.flexe.v0.models.carton_pick_delivery_details'],
|
|
6654
|
-
});
|
|
6655
|
-
|
|
6656
|
-
T['io.flow.flexe.v0.models.flexe_inventory_data'] = PropTypes.exact({
|
|
6657
|
-
sku: PropTypes.string.isRequired,
|
|
6658
|
-
quantity: PropTypes.string.isRequired,
|
|
6659
|
-
unit: PropTypes.string.isRequired,
|
|
6660
|
-
});
|
|
6661
|
-
|
|
6662
|
-
T['io.flow.flexe.v0.models.sku_summary'] = PropTypes.exact({
|
|
6663
|
-
key: PropTypes.string.isRequired,
|
|
6664
|
-
quantity: PropTypes.number.isRequired,
|
|
6665
|
-
unit: PropTypes.string.isRequired,
|
|
6666
|
-
});
|
|
6667
|
-
|
|
6668
|
-
T['io.flow.flexe.v0.models.inventory_count'] = PropTypes.exact({
|
|
6669
|
-
amount: PropTypes.number.isRequired,
|
|
6670
|
-
unit: PropTypes.string.isRequired,
|
|
6671
|
-
});
|
|
6672
|
-
|
|
6673
|
-
T['io.flow.flexe.v0.models.flexe_retail_fulfillment_errors'] = PropTypes.exact({
|
|
6674
|
-
type: PropTypes.string.isRequired,
|
|
6675
|
-
message: PropTypes.string.isRequired,
|
|
6676
|
-
});
|
|
6677
|
-
|
|
6678
|
-
T['io.flow.flexe.v0.models.flexe_retail_fulfillment_data'] = PropTypes.exact({
|
|
6679
|
-
id: PropTypes.string.isRequired,
|
|
6680
|
-
purchase_order_uuid: PropTypes.string.isRequired,
|
|
6681
|
-
status: PropTypes.string.isRequired,
|
|
6682
|
-
});
|
|
6683
|
-
|
|
6684
|
-
T['io.flow.flexe.v0.models.flexe_retail_fulfillment'] = PropTypes.exact({
|
|
6685
|
-
url: PropTypes.string.isRequired,
|
|
6686
|
-
client_request_id: PropTypes.string.isRequired,
|
|
6687
|
-
generated_at: PropTypes.string.isRequired,
|
|
6688
|
-
data: T['io.flow.flexe.v0.models.flexe_retail_fulfillment_data'].isRequired,
|
|
6689
|
-
errors: PropTypes.arrayOf(T['io.flow.flexe.v0.models.flexe_retail_fulfillment_errors']),
|
|
6690
|
-
});
|
|
6691
|
-
|
|
6692
|
-
T['io.flow.flexe.v0.models.flexe_ecommerce_fulfillment_errors'] = PropTypes.exact({
|
|
6693
|
-
status: PropTypes.string.isRequired,
|
|
6694
|
-
title: PropTypes.string.isRequired,
|
|
6695
|
-
detail: PropTypes.string.isRequired,
|
|
6696
|
-
source: PropTypes.string,
|
|
6697
|
-
});
|
|
6698
|
-
|
|
6699
|
-
T['io.flow.flexe.v0.models.flexe_ecommerce_fulfillment_data'] = PropTypes.exact({
|
|
6700
|
-
import_id: PropTypes.string.isRequired,
|
|
6701
|
-
succeeded_uuids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
6702
|
-
failed_uuids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
6703
|
-
errors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
6704
|
-
});
|
|
6705
|
-
|
|
6706
|
-
T['io.flow.flexe.v0.models.flexe_ecommerce_fulfillment'] = PropTypes.exact({
|
|
6707
|
-
url: PropTypes.string.isRequired,
|
|
6708
|
-
client_request_id: PropTypes.string.isRequired,
|
|
6709
|
-
generated_at: PropTypes.string.isRequired,
|
|
6710
|
-
data: T['io.flow.flexe.v0.models.flexe_ecommerce_fulfillment_data'].isRequired,
|
|
6711
|
-
errors: PropTypes.arrayOf(T['io.flow.flexe.v0.models.flexe_ecommerce_fulfillment_errors']).isRequired,
|
|
6712
|
-
});
|
|
6713
|
-
|
|
6714
|
-
T['io.flow.flexe.v0.enums.flexe_attachment_type'] = PropTypes.oneOf(['shipping_label', 'packing_slip', 'packing_slip_letter']);
|
|
6715
|
-
|
|
6716
|
-
T['io.flow.flexe.v0.models.flexe_attachment'] = PropTypes.exact({
|
|
6717
|
-
type: T['io.flow.flexe.v0.enums.flexe_attachment_type'].isRequired,
|
|
6718
|
-
display_name: PropTypes.string.isRequired,
|
|
6719
|
-
url: PropTypes.string.isRequired,
|
|
6720
|
-
});
|
|
6721
|
-
|
|
6722
|
-
T['io.flow.flexe.v0.models.order'] = PropTypes.exact({
|
|
6723
|
-
shipment_uuid: PropTypes.string.isRequired,
|
|
6724
|
-
purchase_order: PropTypes.string.isRequired,
|
|
6725
|
-
carrier: PropTypes.string.isRequired,
|
|
6726
|
-
service_type: PropTypes.string.isRequired,
|
|
6727
|
-
carrier_assigned_id: PropTypes.string.isRequired,
|
|
6728
|
-
name: PropTypes.string.isRequired,
|
|
6729
|
-
address_1: PropTypes.string.isRequired,
|
|
6730
|
-
address_2: PropTypes.string,
|
|
6731
|
-
address_3: PropTypes.string,
|
|
6732
|
-
city: PropTypes.string.isRequired,
|
|
6733
|
-
state: PropTypes.string.isRequired,
|
|
6734
|
-
postal_code: PropTypes.string.isRequired,
|
|
6735
|
-
phone: PropTypes.string,
|
|
6736
|
-
instructions: PropTypes.string,
|
|
6737
|
-
inventory_data: PropTypes.arrayOf(T['io.flow.flexe.v0.models.flexe_inventory_data']).isRequired,
|
|
6738
|
-
attachments: PropTypes.arrayOf(T['io.flow.flexe.v0.models.flexe_attachment']).isRequired,
|
|
6739
|
-
});
|
|
6740
|
-
|
|
6741
|
-
T['io.flow.flexe.v0.models.orders'] = PropTypes.exact({
|
|
6742
|
-
orders: PropTypes.arrayOf(T['io.flow.flexe.v0.models.order']).isRequired,
|
|
6743
|
-
});
|
|
6744
|
-
|
|
6745
|
-
T['io.flow.flexe.v0.models.flexe_ecommerce_fulfillment_form'] = PropTypes.exact({
|
|
6746
|
-
reservation_id: PropTypes.number.isRequired,
|
|
6747
|
-
client_request_id: PropTypes.string.isRequired,
|
|
6748
|
-
request: T['io.flow.flexe.v0.models.orders'].isRequired,
|
|
6749
|
-
});
|
|
6750
|
-
|
|
6751
|
-
T['io.flow.flexe.v0.models.pallet'] = PropTypes.exact({
|
|
6752
|
-
pallet_id: PropTypes.string.isRequired,
|
|
6753
|
-
sku: PropTypes.string.isRequired,
|
|
6754
|
-
quantity: PropTypes.number.isRequired,
|
|
6755
|
-
packaging: PropTypes.string.isRequired,
|
|
6756
|
-
});
|
|
6757
|
-
|
|
6758
|
-
T['io.flow.flexe.v0.models.inventory_data'] = PropTypes.exact({
|
|
6759
|
-
pallet: T['io.flow.flexe.v0.models.inventory_count'].isRequired,
|
|
6760
|
-
carton: T['io.flow.flexe.v0.models.inventory_count'],
|
|
6761
|
-
each: T['io.flow.flexe.v0.models.inventory_count'],
|
|
6762
|
-
});
|
|
6763
|
-
|
|
6764
|
-
T['io.flow.flexe.v0.models.sku'] = PropTypes.exact({
|
|
6765
|
-
sku: PropTypes.string.isRequired,
|
|
6766
|
-
description: PropTypes.string.isRequired,
|
|
6767
|
-
summary: PropTypes.objectOf(T['io.flow.flexe.v0.models.sku_summary']).isRequired,
|
|
6768
|
-
});
|
|
6769
|
-
|
|
6770
|
-
T['io.flow.flexe.v0.models.quantity_by_inventory'] = PropTypes.exact({
|
|
6771
|
-
received: T['io.flow.flexe.v0.models.inventory_data'].isRequired,
|
|
6772
|
-
expected: T['io.flow.flexe.v0.models.inventory_data'],
|
|
6773
|
-
damaged: T['io.flow.flexe.v0.models.inventory_data'],
|
|
6774
|
-
});
|
|
6775
|
-
|
|
6776
|
-
T['io.flow.flexe.v0.models.delivery_details'] = PropTypes.exact({
|
|
6777
|
-
shipment_uuid: PropTypes.string,
|
|
6778
|
-
trailer_number: PropTypes.string,
|
|
6779
|
-
pallets: PropTypes.arrayOf(T['io.flow.flexe.v0.models.pallet']).isRequired,
|
|
6780
|
-
quantities_by_inventory: PropTypes.objectOf(T['io.flow.flexe.v0.models.quantity_by_inventory']).isRequired,
|
|
6781
|
-
});
|
|
6782
|
-
|
|
6783
|
-
T['io.flow.flexe.v0.models.inventory_details'] = PropTypes.exact({
|
|
6784
|
-
key: PropTypes.objectOf(T['io.flow.flexe.v0.models.sku']).isRequired,
|
|
6785
|
-
});
|
|
6786
|
-
|
|
6787
|
-
T['io.flow.flexe.v0.models.inventory'] = PropTypes.exact({
|
|
6788
|
-
url: PropTypes.string.isRequired,
|
|
6789
|
-
client_request_id: PropTypes.string.isRequired,
|
|
6790
|
-
generated_at: PropTypes.string.isRequired,
|
|
6791
|
-
data: PropTypes.objectOf(T['io.flow.flexe.v0.models.inventory_details']).isRequired,
|
|
6792
|
-
});
|
|
6793
|
-
|
|
6794
|
-
T['io.flow.flexe.v0.models.container_delivery_details'] = PropTypes.exact({
|
|
6795
|
-
purchase_order: PropTypes.string.isRequired,
|
|
6796
|
-
container_number: PropTypes.string,
|
|
6797
|
-
seal_number: PropTypes.string,
|
|
6798
|
-
vendor: PropTypes.string,
|
|
6799
|
-
expected_inventory: PropTypes.arrayOf(T['io.flow.flexe.v0.models.inventory_details']).isRequired,
|
|
6800
|
-
received_inventory: PropTypes.arrayOf(T['io.flow.flexe.v0.models.inventory_details']).isRequired,
|
|
6801
|
-
damaged_inventory: PropTypes.arrayOf(T['io.flow.flexe.v0.models.inventory_details']).isRequired,
|
|
6802
|
-
quantities_by_inventory: PropTypes.objectOf(T['io.flow.flexe.v0.models.quantity_by_inventory']).isRequired,
|
|
6803
|
-
});
|
|
6804
|
-
|
|
6805
|
-
T['io.flow.flexe.v0.models.receipt_notification'] = PropTypes.exact({
|
|
6806
|
-
shipment_id: PropTypes.string.isRequired,
|
|
6807
|
-
shipment_type: T['io.flow.flexe.v0.enums.flexe_shipment_type'].isRequired,
|
|
6808
|
-
reservation_id: PropTypes.string.isRequired,
|
|
6809
|
-
status: T['io.flow.flexe.v0.enums.flexe_status'].isRequired,
|
|
6810
|
-
delivery_details: T['io.flow.flexe.v0.models.delivery_details'],
|
|
6811
|
-
container_delivery_details: T['io.flow.flexe.v0.models.container_delivery_details'],
|
|
6812
|
-
});
|
|
6813
|
-
|
|
6814
|
-
T['io.flow.flexe.v0.models.bill_to'] = PropTypes.exact({
|
|
6815
|
-
name: PropTypes.string.isRequired,
|
|
6816
|
-
address_1: PropTypes.string.isRequired,
|
|
6817
|
-
locality: PropTypes.string.isRequired,
|
|
6818
|
-
region: PropTypes.string.isRequired,
|
|
6819
|
-
postal_code: PropTypes.string.isRequired,
|
|
6820
|
-
country: PropTypes.string.isRequired,
|
|
6821
|
-
address_2: PropTypes.string,
|
|
6822
|
-
address_3: PropTypes.string,
|
|
6823
|
-
});
|
|
6824
|
-
|
|
6825
|
-
T['io.flow.flexe.v0.models.gs1us_ship_to'] = PropTypes.exact({
|
|
6826
|
-
cid_number: PropTypes.string,
|
|
6827
|
-
location_number: PropTypes.string,
|
|
6828
|
-
free_on_board: PropTypes.bool,
|
|
6829
|
-
});
|
|
6830
|
-
|
|
6831
|
-
T['io.flow.flexe.v0.models.gs1us'] = PropTypes.exact({
|
|
6832
|
-
number: PropTypes.string.isRequired,
|
|
6833
|
-
ship_to: T['io.flow.flexe.v0.models.gs1us_ship_to'],
|
|
6834
|
-
bill_to: T['io.flow.flexe.v0.models.bill_to'],
|
|
6835
|
-
});
|
|
6836
|
-
|
|
6837
|
-
T['io.flow.flexe.v0.models.bill_of_lading'] = PropTypes.exact({
|
|
6838
|
-
type: PropTypes.string.isRequired,
|
|
6839
|
-
gs1us: T['io.flow.flexe.v0.models.gs1us'],
|
|
6840
|
-
});
|
|
6841
|
-
|
|
6842
|
-
T['io.flow.flexe.v0.models.retail_order_data'] = PropTypes.exact({
|
|
6843
|
-
purchase_order_uuid: PropTypes.string.isRequired,
|
|
6844
|
-
bill_of_lading: T['io.flow.flexe.v0.models.bill_of_lading'].isRequired,
|
|
6845
|
-
inventory_data: PropTypes.arrayOf(T['io.flow.flexe.v0.models.retail_inventory_data']).isRequired,
|
|
6846
|
-
ship_within: T['io.flow.flexe.v0.models.ship_within'].isRequired,
|
|
6847
|
-
ship_to: T['io.flow.flexe.v0.models.ship_to'].isRequired,
|
|
6848
|
-
build_by: PropTypes.string,
|
|
6849
|
-
instrunctions: PropTypes.string,
|
|
6850
|
-
routing_details_id: PropTypes.string,
|
|
6851
|
-
destination_type: PropTypes.string,
|
|
6852
|
-
});
|
|
6853
|
-
|
|
6854
|
-
T['io.flow.flexe.v0.models.retail_order'] = PropTypes.exact({
|
|
6855
|
-
order: T['io.flow.flexe.v0.models.retail_order_data'].isRequired,
|
|
6856
|
-
});
|
|
6857
|
-
|
|
6858
|
-
T['io.flow.flexe.v0.models.flexe_retail_fulfillment_form'] = PropTypes.exact({
|
|
6859
|
-
reservation_id: PropTypes.number.isRequired,
|
|
6860
|
-
client_request_id: PropTypes.string,
|
|
6861
|
-
request: T['io.flow.flexe.v0.models.retail_order'].isRequired,
|
|
6862
|
-
});
|
|
6863
|
-
|
|
6864
6596
|
T['io.flow.export.v0.enums.item_identifier'] = PropTypes.oneOf(['item_number', 'sku']);
|
|
6865
6597
|
|
|
6866
6598
|
T['io.flow.common.v0.models.included_levies'] = PropTypes.exact({
|
|
@@ -9103,6 +8835,13 @@ T['io.flow.internal.v0.models.fulfillment_deleted'] = PropTypes.exact({
|
|
|
9103
8835
|
id: PropTypes.string.isRequired,
|
|
9104
8836
|
});
|
|
9105
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
|
+
|
|
9106
8845
|
T['io.flow.internal.v0.models.adyen_dispute_deleted'] = PropTypes.exact({
|
|
9107
8846
|
discriminator: PropTypes.oneOf(['adyen_dispute_deleted']).isRequired,
|
|
9108
8847
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9110,6 +8849,14 @@ T['io.flow.internal.v0.models.adyen_dispute_deleted'] = PropTypes.exact({
|
|
|
9110
8849
|
id: PropTypes.string.isRequired,
|
|
9111
8850
|
});
|
|
9112
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
|
+
|
|
9113
8860
|
T['io.flow.internal.v0.models.adjusted_estimates_deleted'] = PropTypes.exact({
|
|
9114
8861
|
discriminator: PropTypes.oneOf(['adjusted_estimates_deleted']).isRequired,
|
|
9115
8862
|
event_id: PropTypes.string.isRequired,
|
|
@@ -15244,6 +14991,8 @@ T['io.flow.internal.v0.models.dispute_override_update_form'] = PropTypes.exact({
|
|
|
15244
14991
|
reporting_category: T['io.flow.internal.v0.enums.dispute_reporting_category'],
|
|
15245
14992
|
category: T['io.flow.internal.v0.enums.dispute_category'],
|
|
15246
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,
|
|
15247
14996
|
});
|
|
15248
14997
|
|
|
15249
14998
|
T['io.flow.internal.v0.enums.dispute_type'] = PropTypes.oneOf(['chargeback']);
|
|
@@ -23445,6 +23194,21 @@ T['io.flow.label.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
|
|
|
23445
23194
|
itemized_estimate: T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'],
|
|
23446
23195
|
});
|
|
23447
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
|
+
|
|
23448
23212
|
T['io.flow.internal.v0.models.debug_label'] = PropTypes.exact({
|
|
23449
23213
|
carrier_id: PropTypes.string.isRequired,
|
|
23450
23214
|
carrier_tracking_number: PropTypes.string.isRequired,
|
|
@@ -25865,6 +25629,13 @@ T['io.flow.internal.v0.models.aldo_item'] = PropTypes.exact({
|
|
|
25865
25629
|
added_on: PropTypes.string.isRequired,
|
|
25866
25630
|
});
|
|
25867
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
|
+
|
|
25868
25639
|
T['io.flow.internal.v0.models.account_statistics_additional_balances'] = PropTypes.exact({
|
|
25869
25640
|
on_hold: T['io.flow.common.v0.models.price'].isRequired,
|
|
25870
25641
|
});
|
|
@@ -27007,6 +26778,8 @@ T['io.flow.internal.v0.models.fraud_review_authorization_decision_upserted'] = P
|
|
|
27007
26778
|
T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
27008
26779
|
T['io.flow.internal.v0.models.adjusted_estimates_upserted'],
|
|
27009
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'],
|
|
27010
26783
|
T['io.flow.internal.v0.models.adyen_authorization_deleted'],
|
|
27011
26784
|
T['io.flow.internal.v0.models.adyen_authorization_upserted'],
|
|
27012
26785
|
T['io.flow.internal.v0.models.adyen_cancel_deleted'],
|
|
@@ -27017,6 +26790,8 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27017
26790
|
T['io.flow.internal.v0.models.adyen_refund_upserted'],
|
|
27018
26791
|
T['io.flow.internal.v0.models.adyen_dispute_upserted'],
|
|
27019
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'],
|
|
27020
26795
|
T['io.flow.internal.v0.models.fulfillment_upserted'],
|
|
27021
26796
|
T['io.flow.internal.v0.models.fulfillment_deleted'],
|
|
27022
26797
|
T['io.flow.internal.v0.models.merchant_upserted'],
|
|
@@ -27527,6 +27302,8 @@ T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustm
|
|
|
27527
27302
|
T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
27528
27303
|
'adjusted_estimates_upserted',
|
|
27529
27304
|
'adjusted_estimates_deleted',
|
|
27305
|
+
'final_estimate_upserted',
|
|
27306
|
+
'final_estimate_deleted',
|
|
27530
27307
|
'adyen_authorization_deleted',
|
|
27531
27308
|
'adyen_authorization_upserted',
|
|
27532
27309
|
'adyen_cancel_deleted',
|
|
@@ -27537,6 +27314,8 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27537
27314
|
'adyen_refund_upserted',
|
|
27538
27315
|
'adyen_dispute_upserted',
|
|
27539
27316
|
'adyen_dispute_deleted',
|
|
27317
|
+
'aldo_item_upserted',
|
|
27318
|
+
'aldo_item_deleted',
|
|
27540
27319
|
'fulfillment_upserted',
|
|
27541
27320
|
'fulfillment_deleted',
|
|
27542
27321
|
'merchant_upserted',
|
|
@@ -28063,6 +27842,10 @@ T['io.flow.internal.v0.models.adyen_payment_details_form'] = PropTypes.exact({
|
|
|
28063
27842
|
challenge_result: PropTypes.string,
|
|
28064
27843
|
});
|
|
28065
27844
|
|
|
27845
|
+
T['io.flow.internal.v0.models.aftership_webhook'] = PropTypes.exact({
|
|
27846
|
+
placeholder: PropTypes.bool,
|
|
27847
|
+
});
|
|
27848
|
+
|
|
28066
27849
|
T['io.flow.internal.v0.models.alert_import_summary'] = PropTypes.exact({
|
|
28067
27850
|
organization_id: PropTypes.string.isRequired,
|
|
28068
27851
|
filename: PropTypes.string.isRequired,
|
|
@@ -28270,10 +28053,6 @@ T['io.flow.internal.v0.models.delete_transitions_put_form'] = PropTypes.exact({
|
|
|
28270
28053
|
transition_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
28271
28054
|
});
|
|
28272
28055
|
|
|
28273
|
-
T['io.flow.internal.v0.models.dhl_ecommerce_webhook'] = PropTypes.exact({
|
|
28274
|
-
placeholder: PropTypes.bool,
|
|
28275
|
-
});
|
|
28276
|
-
|
|
28277
28056
|
T['io.flow.internal.v0.models.discount_code'] = PropTypes.exact({
|
|
28278
28057
|
code: PropTypes.string.isRequired,
|
|
28279
28058
|
});
|
|
@@ -28377,6 +28156,10 @@ T['io.flow.internal.v0.models.financial_reporting_statement_form'] = PropTypes.e
|
|
|
28377
28156
|
flow_entity_country_code: PropTypes.string,
|
|
28378
28157
|
});
|
|
28379
28158
|
|
|
28159
|
+
T['io.flow.internal.v0.models.flexe_webhook'] = PropTypes.exact({
|
|
28160
|
+
placeholder: PropTypes.bool,
|
|
28161
|
+
});
|
|
28162
|
+
|
|
28380
28163
|
T['io.flow.internal.v0.models.flow_channel_organization'] = PropTypes.exact({
|
|
28381
28164
|
placeholder: PropTypes.string,
|
|
28382
28165
|
});
|
|
@@ -29016,6 +28799,14 @@ T['io.flow.internal.v0.models.tracking_debug_force_transit_form'] = PropTypes.ex
|
|
|
29016
28799
|
description: PropTypes.string.isRequired,
|
|
29017
28800
|
});
|
|
29018
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
|
+
|
|
29019
28810
|
T['io.flow.internal.v0.models.unclassified_products_purge_request'] = PropTypes.exact({
|
|
29020
28811
|
num_deleted_products: PropTypes.objectOf(PropTypes.number).isRequired,
|
|
29021
28812
|
});
|
|
@@ -29115,15 +28906,6 @@ T['io.flow.export.v0.models.landed_cost_item'] = PropTypes.exact({
|
|
|
29115
28906
|
destination: PropTypes.string.isRequired,
|
|
29116
28907
|
});
|
|
29117
28908
|
|
|
29118
|
-
T['io.flow.flexe.v0.enums.flexe_notification'] = PropTypes.oneOf(['receipt', 'shipment']);
|
|
29119
|
-
|
|
29120
|
-
T['io.flow.flexe.v0.models.error'] = PropTypes.exact({
|
|
29121
|
-
url: PropTypes.string.isRequired,
|
|
29122
|
-
client_request_id: PropTypes.string.isRequired,
|
|
29123
|
-
generated_at: PropTypes.string.isRequired,
|
|
29124
|
-
error: PropTypes.string.isRequired,
|
|
29125
|
-
});
|
|
29126
|
-
|
|
29127
28909
|
T['io.flow.payment.v0.models.capture_form'] = PropTypes.exact({
|
|
29128
28910
|
authorization_id: PropTypes.string.isRequired,
|
|
29129
28911
|
key: PropTypes.string,
|
|
@@ -29303,6 +29085,17 @@ T['io.flow.external.paypal.v1.enums.event_type'] = PropTypes.oneOf([
|
|
|
29303
29085
|
]);
|
|
29304
29086
|
|
|
29305
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
|
+
]);
|
|
29306
29099
|
|
|
29307
29100
|
T['io.flow.external.paypal.v1.models.token'] = PropTypes.exact({
|
|
29308
29101
|
access_token: PropTypes.string.isRequired,
|
|
@@ -30343,9 +30136,12 @@ export const afterpayCaptureUpserted = T['io.flow.internal.v0.models.afterpay_ca
|
|
|
30343
30136
|
export const afterpayRefund = T['io.flow.internal.v0.models.afterpay_refund'];
|
|
30344
30137
|
export const afterpayRefundDeleted = T['io.flow.internal.v0.models.afterpay_refund_deleted'];
|
|
30345
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'];
|
|
30346
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'];
|
|
30347
30142
|
export const aldoItemForm = T['io.flow.internal.v0.models.aldo_item_form'];
|
|
30348
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'];
|
|
30349
30145
|
export const alertErrorSummary = T['io.flow.internal.v0.models.alert_error_summary'];
|
|
30350
30146
|
export const alertFailureSummary = T['io.flow.internal.v0.models.alert_failure_summary'];
|
|
30351
30147
|
export const alertFailureSummaryDetail = T['io.flow.internal.v0.models.alert_failure_summary_detail'];
|
|
@@ -30753,7 +30549,6 @@ export const deminimisAdjustmentType = T['io.flow.internal.v0.enums.deminimis_ad
|
|
|
30753
30549
|
export const destinationError = T['io.flow.internal.v0.models.destination_error'];
|
|
30754
30550
|
export const dhl = T['io.flow.internal.v0.models.dhl'];
|
|
30755
30551
|
export const dhlEcommerce = T['io.flow.internal.v0.models.dhl_ecommerce'];
|
|
30756
|
-
export const dhlEcommerceWebhook = T['io.flow.internal.v0.models.dhl_ecommerce_webhook'];
|
|
30757
30552
|
export const dict = T['io.flow.internal.v0.models.dict'];
|
|
30758
30553
|
export const dimensionEstimateOpsInput = T['io.flow.internal.v0.models.dimension_estimate_ops_input'];
|
|
30759
30554
|
export const discount = T['io.flow.internal.v0.models.discount'];
|
|
@@ -30897,6 +30692,9 @@ export const feedUpserted = T['io.flow.internal.v0.models.feed_upserted'];
|
|
|
30897
30692
|
export const feedsExport = T['io.flow.internal.v0.models.feeds_export'];
|
|
30898
30693
|
export const fees = T['io.flow.internal.v0.models.fees'];
|
|
30899
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'];
|
|
30900
30698
|
export const financeBankAccount = T['io.flow.internal.v0.models.finance_bank_account'];
|
|
30901
30699
|
export const financeBankAccountOwner = T['io.flow.internal.v0.models.finance_bank_account_owner'];
|
|
30902
30700
|
export const financeBankPayment = T['io.flow.internal.v0.models.finance_bank_payment'];
|
|
@@ -30913,6 +30711,7 @@ export const fiservAuthenticationForm = T['io.flow.internal.v0.models.fiserv_aut
|
|
|
30913
30711
|
export const fiservMerchant = T['io.flow.internal.v0.models.fiserv_merchant'];
|
|
30914
30712
|
export const fiservMerchantModificationForm = T['io.flow.internal.v0.models.fiserv_merchant_modification_form'];
|
|
30915
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'];
|
|
30916
30715
|
export const flowAccount = T['io.flow.internal.v0.models.flow_account'];
|
|
30917
30716
|
export const flowApp = T['io.flow.internal.v0.enums.flow_app'];
|
|
30918
30717
|
export const flowBillingStatement = T['io.flow.internal.v0.models.flow_billing_statement'];
|
|
@@ -32082,10 +31881,12 @@ export const trackingProcessingErrorUpserted = T['io.flow.internal.v0.models.tra
|
|
|
32082
31881
|
export const trackingProcessingFailureClassification = T['io.flow.internal.v0.enums.tracking_processing_failure_classification'];
|
|
32083
31882
|
export const trackingRequest = T['io.flow.internal.v0.models.tracking_request'];
|
|
32084
31883
|
export const trackingResponse = T['io.flow.internal.v0.models.tracking_response'];
|
|
31884
|
+
export const trackingResync = T['io.flow.internal.v0.models.tracking_resync'];
|
|
32085
31885
|
export const trackingSubscription = T['io.flow.internal.v0.models.tracking_subscription'];
|
|
32086
31886
|
export const trackingSubscriptionDeleted = T['io.flow.internal.v0.models.tracking_subscription_deleted'];
|
|
32087
31887
|
export const trackingSubscriptionUpserted = T['io.flow.internal.v0.models.tracking_subscription_upserted'];
|
|
32088
31888
|
export const trackingUpserted = T['io.flow.internal.v0.models.tracking_upserted'];
|
|
31889
|
+
export const trackingWebhook = T['io.flow.internal.v0.models.tracking_webhook'];
|
|
32089
31890
|
export const transaction = T['io.flow.internal.v0.unions.transaction'];
|
|
32090
31891
|
export const transactionAdjustment = T['io.flow.internal.v0.models.transaction_adjustment'];
|
|
32091
31892
|
export const transactionAdjustmentForm = T['io.flow.internal.v0.models.transaction_adjustment_form'];
|