@flowio/api-internal-prop-types 9.24.107 → 9.24.109
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 +432 -321
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +432 -321
- package/src/api-internal.js +579 -381
package/src/api-internal.js
CHANGED
|
@@ -68,6 +68,11 @@ T['io.flow.organization.v0.models.country_picker'] = PropTypes.exact({
|
|
|
68
68
|
source: T['io.flow.organization.v0.enums.country_picker_source'].isRequired,
|
|
69
69
|
});
|
|
70
70
|
|
|
71
|
+
T['io.flow.sellability.v0.models.product_sellability_price'] = PropTypes.exact({
|
|
72
|
+
currency: PropTypes.string.isRequired,
|
|
73
|
+
amount: PropTypes.number.isRequired,
|
|
74
|
+
});
|
|
75
|
+
|
|
71
76
|
T['io.flow.fraud.v0.enums.fraud_email_rule_decision'] = PropTypes.oneOf(['approved', 'declined']);
|
|
72
77
|
|
|
73
78
|
T['io.flow.fraud.v0.models.fraud_email_rule'] = PropTypes.exact({
|
|
@@ -791,6 +796,11 @@ T['io.flow.merchant.onboarding.v0.models.logistics_format'] = PropTypes.exact({
|
|
|
791
796
|
description: PropTypes.string,
|
|
792
797
|
});
|
|
793
798
|
|
|
799
|
+
T['io.flow.product.v0.models.product_taxonomy_data'] = PropTypes.exact({
|
|
800
|
+
key: PropTypes.string.isRequired,
|
|
801
|
+
value: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
802
|
+
});
|
|
803
|
+
|
|
794
804
|
T['io.flow.reference.v0.models.locale_numbers'] = PropTypes.exact({
|
|
795
805
|
decimal: PropTypes.string.isRequired,
|
|
796
806
|
group: PropTypes.string.isRequired,
|
|
@@ -1767,59 +1777,6 @@ T['io.flow.shopify.markets.v0.models.shopify_locations_response_wrapper'] = Prop
|
|
|
1767
1777
|
locations: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_location']).isRequired,
|
|
1768
1778
|
});
|
|
1769
1779
|
|
|
1770
|
-
T['io.flow.shopify.markets.v0.models.shopify_country_harmonized_system_code'] = PropTypes.exact({
|
|
1771
|
-
country_code: PropTypes.string.isRequired,
|
|
1772
|
-
harmonized_system_code: PropTypes.string.isRequired,
|
|
1773
|
-
});
|
|
1774
|
-
|
|
1775
|
-
T['io.flow.shopify.markets.v0.models.shopify_product_variant_inventory_item_wrapper'] = PropTypes.exact({
|
|
1776
|
-
product_id: PropTypes.number.isRequired,
|
|
1777
|
-
variant_id: PropTypes.number.isRequired,
|
|
1778
|
-
harmonized_system_code: PropTypes.string.isRequired,
|
|
1779
|
-
|
|
1780
|
-
country_harmonized_system_codes: PropTypes.arrayOf(
|
|
1781
|
-
T['io.flow.shopify.markets.v0.models.shopify_country_harmonized_system_code'],
|
|
1782
|
-
).isRequired,
|
|
1783
|
-
});
|
|
1784
|
-
|
|
1785
|
-
T['io.flow.shopify.markets.v0.models.shopify_inventory_item_form'] = PropTypes.exact({
|
|
1786
|
-
harmonized_system_code: PropTypes.string,
|
|
1787
|
-
|
|
1788
|
-
country_harmonized_system_codes: PropTypes.arrayOf(
|
|
1789
|
-
T['io.flow.shopify.markets.v0.models.shopify_country_harmonized_system_code'],
|
|
1790
|
-
),
|
|
1791
|
-
});
|
|
1792
|
-
|
|
1793
|
-
T['io.flow.shopify.markets.v0.models.shopify_inventory_item_form_wrapper'] = PropTypes.exact({
|
|
1794
|
-
inventory_item: T['io.flow.shopify.markets.v0.models.shopify_inventory_item_form'].isRequired,
|
|
1795
|
-
});
|
|
1796
|
-
|
|
1797
|
-
T['io.flow.shopify.markets.v0.models.shopify_inventory_item'] = PropTypes.exact({
|
|
1798
|
-
id: PropTypes.number.isRequired,
|
|
1799
|
-
cost: PropTypes.string,
|
|
1800
|
-
country_code_of_origin: PropTypes.string,
|
|
1801
|
-
|
|
1802
|
-
country_harmonized_system_codes: PropTypes.arrayOf(
|
|
1803
|
-
T['io.flow.shopify.markets.v0.models.shopify_country_harmonized_system_code'],
|
|
1804
|
-
),
|
|
1805
|
-
|
|
1806
|
-
harmonized_system_code: PropTypes.string,
|
|
1807
|
-
province_code_of_origin: PropTypes.string,
|
|
1808
|
-
sku: PropTypes.string,
|
|
1809
|
-
tracked: PropTypes.bool,
|
|
1810
|
-
requires_shipping: PropTypes.bool.isRequired,
|
|
1811
|
-
created_at: PropTypes.string.isRequired,
|
|
1812
|
-
updated_at: PropTypes.string.isRequired,
|
|
1813
|
-
});
|
|
1814
|
-
|
|
1815
|
-
T['io.flow.shopify.markets.v0.models.shopify_inventory_items_wrapper'] = PropTypes.exact({
|
|
1816
|
-
inventory_items: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_inventory_item']).isRequired,
|
|
1817
|
-
});
|
|
1818
|
-
|
|
1819
|
-
T['io.flow.shopify.markets.v0.models.shopify_inventory_item_wrapper'] = PropTypes.exact({
|
|
1820
|
-
inventory_item: T['io.flow.shopify.markets.v0.models.shopify_inventory_item'].isRequired,
|
|
1821
|
-
});
|
|
1822
|
-
|
|
1823
1780
|
T['io.flow.shopify.markets.v0.models.shopify_fulfillment_order_line_item'] = PropTypes.exact({
|
|
1824
1781
|
line_item_id: PropTypes.number.isRequired,
|
|
1825
1782
|
});
|
|
@@ -2792,6 +2749,16 @@ T['io.flow.shopify.external.v0.models.graphql_variant_image'] = PropTypes.exact(
|
|
|
2792
2749
|
|
|
2793
2750
|
T['io.flow.shopify.external.v0.enums.inventory_policy'] = PropTypes.oneOf(['deny', 'continue']);
|
|
2794
2751
|
|
|
2752
|
+
T['io.flow.shopify.external.v0.models.graphql_metafield'] = PropTypes.exact({
|
|
2753
|
+
key: PropTypes.string.isRequired,
|
|
2754
|
+
value: PropTypes.string.isRequired,
|
|
2755
|
+
});
|
|
2756
|
+
|
|
2757
|
+
T['io.flow.shopify.external.v0.models.graphql_taxonomy_category'] = PropTypes.exact({
|
|
2758
|
+
name: PropTypes.string.isRequired,
|
|
2759
|
+
fullName: PropTypes.string.isRequired,
|
|
2760
|
+
});
|
|
2761
|
+
|
|
2795
2762
|
T['io.flow.shopify.external.v0.models.graphql_option'] = PropTypes.exact({
|
|
2796
2763
|
id: PropTypes.string.isRequired,
|
|
2797
2764
|
values: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -2856,6 +2823,8 @@ T['io.flow.shopify.external.v0.models.graphql_product'] = PropTypes.exact({
|
|
|
2856
2823
|
createdAt: PropTypes.string.isRequired,
|
|
2857
2824
|
updatedAt: PropTypes.string.isRequired,
|
|
2858
2825
|
hasVariantsThatRequiresComponents: PropTypes.bool,
|
|
2826
|
+
category: T['io.flow.shopify.external.v0.models.graphql_taxonomy_category'],
|
|
2827
|
+
metafields: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.graphql_metafield']),
|
|
2859
2828
|
});
|
|
2860
2829
|
|
|
2861
2830
|
T['io.flow.order.management.v0.enums.fulfillment_item_quantity_status'] = PropTypes.oneOf(['new', 'shipped', 'cancelled']);
|
|
@@ -3762,6 +3731,27 @@ T['io.flow.external.paypal.v1.models.token_form'] = PropTypes.exact({
|
|
|
3762
3731
|
});
|
|
3763
3732
|
|
|
3764
3733
|
T['io.flow.external.paypal.v1.enums.sale_state'] = PropTypes.oneOf(['pending', 'completed', 'denied', 'partially_refunded', 'refunded']);
|
|
3734
|
+
T['io.flow.external.paypal.v1.enums.reporting_transaction_status'] = PropTypes.oneOf(['D', 'P', 'S', 'V']);
|
|
3735
|
+
|
|
3736
|
+
T['io.flow.external.paypal.v1.models.reporting_transaction_info'] = PropTypes.exact({
|
|
3737
|
+
paypal_account_id: PropTypes.string,
|
|
3738
|
+
transaction_id: PropTypes.string,
|
|
3739
|
+
paypal_reference_id: PropTypes.string,
|
|
3740
|
+
paypal_reference_id_type: PropTypes.string,
|
|
3741
|
+
transaction_event_code: PropTypes.string.isRequired,
|
|
3742
|
+
transaction_initiation_date: PropTypes.string.isRequired,
|
|
3743
|
+
transaction_updated_date: PropTypes.string.isRequired,
|
|
3744
|
+
transaction_status: T['io.flow.external.paypal.v1.enums.reporting_transaction_status'].isRequired,
|
|
3745
|
+
transaction_subject: PropTypes.string,
|
|
3746
|
+
invoice_id: PropTypes.string.isRequired,
|
|
3747
|
+
custom_field: PropTypes.string,
|
|
3748
|
+
protection_eligibility: PropTypes.string,
|
|
3749
|
+
instrument_type: PropTypes.string,
|
|
3750
|
+
});
|
|
3751
|
+
|
|
3752
|
+
T['io.flow.external.paypal.v1.models.reporting_transaction_details'] = PropTypes.exact({
|
|
3753
|
+
transaction_info: T['io.flow.external.paypal.v1.models.reporting_transaction_info'].isRequired,
|
|
3754
|
+
});
|
|
3765
3755
|
|
|
3766
3756
|
T['io.flow.external.paypal.v1.models.money'] = PropTypes.exact({
|
|
3767
3757
|
currency_code: PropTypes.string,
|
|
@@ -4195,6 +4185,11 @@ T['io.flow.external.paypal.v1.models.link'] = PropTypes.exact({
|
|
|
4195
4185
|
method: PropTypes.string.isRequired,
|
|
4196
4186
|
});
|
|
4197
4187
|
|
|
4188
|
+
T['io.flow.external.paypal.v1.models.reporting_transaction'] = PropTypes.exact({
|
|
4189
|
+
transaction_details: PropTypes.arrayOf(T['io.flow.external.paypal.v1.models.reporting_transaction_details']).isRequired,
|
|
4190
|
+
links: PropTypes.arrayOf(T['io.flow.external.paypal.v1.models.link']).isRequired,
|
|
4191
|
+
});
|
|
4192
|
+
|
|
4198
4193
|
T['io.flow.external.paypal.v1.models.link_response'] = PropTypes.exact({
|
|
4199
4194
|
links: PropTypes.arrayOf(T['io.flow.external.paypal.v1.models.link']),
|
|
4200
4195
|
});
|
|
@@ -6567,300 +6562,6 @@ T['io.flow.payment.v0.unions.authorization_result_action_details'] = PropTypes.o
|
|
|
6567
6562
|
T['io.flow.payment.v0.models.select_issuer_option_action_details'],
|
|
6568
6563
|
]);
|
|
6569
6564
|
|
|
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
6565
|
T['io.flow.export.v0.enums.item_identifier'] = PropTypes.oneOf(['item_number', 'sku']);
|
|
6865
6566
|
|
|
6866
6567
|
T['io.flow.common.v0.models.included_levies'] = PropTypes.exact({
|
|
@@ -8186,6 +7887,54 @@ T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_deleted'] = Pr
|
|
|
8186
7887
|
id: PropTypes.string.isRequired,
|
|
8187
7888
|
});
|
|
8188
7889
|
|
|
7890
|
+
T['io.flow.internal.v0.models.shopify_inventory_item_delete_deleted'] = PropTypes.exact({
|
|
7891
|
+
discriminator: PropTypes.oneOf(['shopify_inventory_item_delete_deleted']).isRequired,
|
|
7892
|
+
event_id: PropTypes.string.isRequired,
|
|
7893
|
+
timestamp: PropTypes.string.isRequired,
|
|
7894
|
+
organization: PropTypes.string.isRequired,
|
|
7895
|
+
id: PropTypes.string.isRequired,
|
|
7896
|
+
});
|
|
7897
|
+
|
|
7898
|
+
T['io.flow.internal.v0.models.shopify_inventory_item_update_deleted'] = PropTypes.exact({
|
|
7899
|
+
discriminator: PropTypes.oneOf(['shopify_inventory_item_update_deleted']).isRequired,
|
|
7900
|
+
event_id: PropTypes.string.isRequired,
|
|
7901
|
+
timestamp: PropTypes.string.isRequired,
|
|
7902
|
+
organization: PropTypes.string.isRequired,
|
|
7903
|
+
id: PropTypes.string.isRequired,
|
|
7904
|
+
});
|
|
7905
|
+
|
|
7906
|
+
T['io.flow.internal.v0.models.shopify_inventory_item_create_deleted'] = PropTypes.exact({
|
|
7907
|
+
discriminator: PropTypes.oneOf(['shopify_inventory_item_create_deleted']).isRequired,
|
|
7908
|
+
event_id: PropTypes.string.isRequired,
|
|
7909
|
+
timestamp: PropTypes.string.isRequired,
|
|
7910
|
+
organization: PropTypes.string.isRequired,
|
|
7911
|
+
id: PropTypes.string.isRequired,
|
|
7912
|
+
});
|
|
7913
|
+
|
|
7914
|
+
T['io.flow.internal.v0.models.shopify_product_delete_deleted'] = PropTypes.exact({
|
|
7915
|
+
discriminator: PropTypes.oneOf(['shopify_product_delete_deleted']).isRequired,
|
|
7916
|
+
event_id: PropTypes.string.isRequired,
|
|
7917
|
+
timestamp: PropTypes.string.isRequired,
|
|
7918
|
+
organization: PropTypes.string.isRequired,
|
|
7919
|
+
id: PropTypes.string.isRequired,
|
|
7920
|
+
});
|
|
7921
|
+
|
|
7922
|
+
T['io.flow.internal.v0.models.shopify_product_update_deleted'] = PropTypes.exact({
|
|
7923
|
+
discriminator: PropTypes.oneOf(['shopify_product_update_deleted']).isRequired,
|
|
7924
|
+
event_id: PropTypes.string.isRequired,
|
|
7925
|
+
timestamp: PropTypes.string.isRequired,
|
|
7926
|
+
organization: PropTypes.string.isRequired,
|
|
7927
|
+
id: PropTypes.string.isRequired,
|
|
7928
|
+
});
|
|
7929
|
+
|
|
7930
|
+
T['io.flow.internal.v0.models.shopify_product_create_deleted'] = PropTypes.exact({
|
|
7931
|
+
discriminator: PropTypes.oneOf(['shopify_product_create_deleted']).isRequired,
|
|
7932
|
+
event_id: PropTypes.string.isRequired,
|
|
7933
|
+
timestamp: PropTypes.string.isRequired,
|
|
7934
|
+
organization: PropTypes.string.isRequired,
|
|
7935
|
+
id: PropTypes.string.isRequired,
|
|
7936
|
+
});
|
|
7937
|
+
|
|
8189
7938
|
T['io.flow.internal.v0.models.shopify_markets_best_selling_product_deleted'] = PropTypes.exact({
|
|
8190
7939
|
discriminator: PropTypes.oneOf(['shopify_markets_best_selling_product_deleted']).isRequired,
|
|
8191
7940
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8264,6 +8013,20 @@ T['io.flow.internal.v0.models.shopify_shop_deleted'] = PropTypes.exact({
|
|
|
8264
8013
|
id: PropTypes.string.isRequired,
|
|
8265
8014
|
});
|
|
8266
8015
|
|
|
8016
|
+
T['io.flow.internal.v0.models.restriction_rule_effect_deleted'] = PropTypes.exact({
|
|
8017
|
+
discriminator: PropTypes.oneOf(['restriction_rule_effect_deleted']).isRequired,
|
|
8018
|
+
event_id: PropTypes.string.isRequired,
|
|
8019
|
+
timestamp: PropTypes.string.isRequired,
|
|
8020
|
+
id: PropTypes.string.isRequired,
|
|
8021
|
+
});
|
|
8022
|
+
|
|
8023
|
+
T['io.flow.internal.v0.models.restriction_rule_deleted'] = PropTypes.exact({
|
|
8024
|
+
discriminator: PropTypes.oneOf(['restriction_rule_deleted']).isRequired,
|
|
8025
|
+
event_id: PropTypes.string.isRequired,
|
|
8026
|
+
timestamp: PropTypes.string.isRequired,
|
|
8027
|
+
id: PropTypes.string.isRequired,
|
|
8028
|
+
});
|
|
8029
|
+
|
|
8267
8030
|
T['io.flow.internal.v0.models.restrictions_dailyops_deleted'] = PropTypes.exact({
|
|
8268
8031
|
discriminator: PropTypes.oneOf(['restrictions_dailyops_deleted']).isRequired,
|
|
8269
8032
|
event_id: PropTypes.string.isRequired,
|
|
@@ -8548,14 +8311,6 @@ T['io.flow.internal.v0.models.harmonization_phrase_suggestion_request_import'] =
|
|
|
8548
8311
|
filename: PropTypes.string,
|
|
8549
8312
|
});
|
|
8550
8313
|
|
|
8551
|
-
T['io.flow.internal.v0.models.tariff_codes_export'] = PropTypes.exact({
|
|
8552
|
-
discriminator: PropTypes.oneOf(['tariff_codes_export']).isRequired,
|
|
8553
|
-
event_id: PropTypes.string.isRequired,
|
|
8554
|
-
timestamp: PropTypes.string.isRequired,
|
|
8555
|
-
organization: PropTypes.string.isRequired,
|
|
8556
|
-
export_id: PropTypes.string.isRequired,
|
|
8557
|
-
});
|
|
8558
|
-
|
|
8559
8314
|
T['io.flow.internal.v0.models.dutied_items_export'] = PropTypes.exact({
|
|
8560
8315
|
discriminator: PropTypes.oneOf(['dutied_items_export']).isRequired,
|
|
8561
8316
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9110,6 +8865,14 @@ T['io.flow.internal.v0.models.adyen_dispute_deleted'] = PropTypes.exact({
|
|
|
9110
8865
|
id: PropTypes.string.isRequired,
|
|
9111
8866
|
});
|
|
9112
8867
|
|
|
8868
|
+
T['io.flow.internal.v0.models.final_estimate_deleted'] = PropTypes.exact({
|
|
8869
|
+
discriminator: PropTypes.oneOf(['final_estimate_deleted']).isRequired,
|
|
8870
|
+
event_id: PropTypes.string.isRequired,
|
|
8871
|
+
timestamp: PropTypes.string.isRequired,
|
|
8872
|
+
organization: PropTypes.string.isRequired,
|
|
8873
|
+
id: PropTypes.string.isRequired,
|
|
8874
|
+
});
|
|
8875
|
+
|
|
9113
8876
|
T['io.flow.internal.v0.models.adjusted_estimates_deleted'] = PropTypes.exact({
|
|
9114
8877
|
discriminator: PropTypes.oneOf(['adjusted_estimates_deleted']).isRequired,
|
|
9115
8878
|
event_id: PropTypes.string.isRequired,
|
|
@@ -9872,6 +9635,48 @@ T['io.flow.internal.v0.models.shopify_promo_form'] = PropTypes.exact({
|
|
|
9872
9635
|
behaviors: PropTypes.arrayOf(T['io.flow.internal.v0.enums.shopify_promotion_behavior']),
|
|
9873
9636
|
});
|
|
9874
9637
|
|
|
9638
|
+
T['io.flow.shopify.external.v0.models.product_delete'] = PropTypes.exact({
|
|
9639
|
+
id: PropTypes.number.isRequired,
|
|
9640
|
+
});
|
|
9641
|
+
|
|
9642
|
+
T['io.flow.internal.v0.models.shopify_product_delete_webhook_event'] = PropTypes.exact({
|
|
9643
|
+
id: PropTypes.string.isRequired,
|
|
9644
|
+
product_delete: T['io.flow.shopify.external.v0.models.product_delete'].isRequired,
|
|
9645
|
+
});
|
|
9646
|
+
|
|
9647
|
+
T['io.flow.internal.v0.models.shopify_product_delete_upserted'] = PropTypes.exact({
|
|
9648
|
+
discriminator: PropTypes.oneOf(['shopify_product_delete_upserted']).isRequired,
|
|
9649
|
+
event_id: PropTypes.string.isRequired,
|
|
9650
|
+
timestamp: PropTypes.string.isRequired,
|
|
9651
|
+
organization: PropTypes.string.isRequired,
|
|
9652
|
+
shopify_product_delete: T['io.flow.internal.v0.models.shopify_product_delete_webhook_event'].isRequired,
|
|
9653
|
+
});
|
|
9654
|
+
|
|
9655
|
+
T['io.flow.product.v0.models.product_taxonomy_category'] = PropTypes.exact({
|
|
9656
|
+
name: PropTypes.string.isRequired,
|
|
9657
|
+
full_name: PropTypes.string.isRequired,
|
|
9658
|
+
});
|
|
9659
|
+
|
|
9660
|
+
T['io.flow.sellability.v0.models.product_sellability_form'] = PropTypes.exact({
|
|
9661
|
+
organization_id: PropTypes.string.isRequired,
|
|
9662
|
+
product_id: PropTypes.string,
|
|
9663
|
+
product_correlation_id: PropTypes.string.isRequired,
|
|
9664
|
+
name: PropTypes.string.isRequired,
|
|
9665
|
+
price: T['io.flow.sellability.v0.models.product_sellability_price'].isRequired,
|
|
9666
|
+
description: PropTypes.string.isRequired,
|
|
9667
|
+
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'].isRequired,
|
|
9668
|
+
});
|
|
9669
|
+
|
|
9670
|
+
T['io.flow.product.v0.models.product'] = PropTypes.exact({
|
|
9671
|
+
organization_id: PropTypes.string.isRequired,
|
|
9672
|
+
number: PropTypes.string.isRequired,
|
|
9673
|
+
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
9674
|
+
taxonomy_data: PropTypes.arrayOf(T['io.flow.product.v0.models.product_taxonomy_data']),
|
|
9675
|
+
item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
9676
|
+
updated_at: PropTypes.string.isRequired,
|
|
9677
|
+
deleted_at: PropTypes.string,
|
|
9678
|
+
});
|
|
9679
|
+
|
|
9875
9680
|
T['io.flow.shopify.external.v0.enums.published_scope'] = PropTypes.oneOf(['global']);
|
|
9876
9681
|
|
|
9877
9682
|
T['io.flow.shopify.external.v0.models.option'] = PropTypes.exact({
|
|
@@ -9940,6 +9745,7 @@ T['io.flow.shopify.external.v0.models.product'] = PropTypes.exact({
|
|
|
9940
9745
|
created_at: PropTypes.string.isRequired,
|
|
9941
9746
|
updated_at: PropTypes.string.isRequired,
|
|
9942
9747
|
has_variants_that_requires_components: PropTypes.bool,
|
|
9748
|
+
category: T['io.flow.product.v0.models.product_taxonomy_category'],
|
|
9943
9749
|
});
|
|
9944
9750
|
|
|
9945
9751
|
T['io.flow.shopify.external.v0.models.response_products'] = PropTypes.exact({
|
|
@@ -9960,6 +9766,32 @@ T['io.flow.internal.v0.models.shopify_product_wrapper'] = PropTypes.exact({
|
|
|
9960
9766
|
deleted_at: PropTypes.string,
|
|
9961
9767
|
});
|
|
9962
9768
|
|
|
9769
|
+
T['io.flow.internal.v0.models.shopify_product_update_webhook_event'] = PropTypes.exact({
|
|
9770
|
+
id: PropTypes.string.isRequired,
|
|
9771
|
+
product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
9772
|
+
});
|
|
9773
|
+
|
|
9774
|
+
T['io.flow.internal.v0.models.shopify_product_update_upserted'] = PropTypes.exact({
|
|
9775
|
+
discriminator: PropTypes.oneOf(['shopify_product_update_upserted']).isRequired,
|
|
9776
|
+
event_id: PropTypes.string.isRequired,
|
|
9777
|
+
timestamp: PropTypes.string.isRequired,
|
|
9778
|
+
organization: PropTypes.string.isRequired,
|
|
9779
|
+
shopify_product_update: T['io.flow.internal.v0.models.shopify_product_update_webhook_event'].isRequired,
|
|
9780
|
+
});
|
|
9781
|
+
|
|
9782
|
+
T['io.flow.internal.v0.models.shopify_product_create_webhook_event'] = PropTypes.exact({
|
|
9783
|
+
id: PropTypes.string.isRequired,
|
|
9784
|
+
product: T['io.flow.shopify.external.v0.models.product'].isRequired,
|
|
9785
|
+
});
|
|
9786
|
+
|
|
9787
|
+
T['io.flow.internal.v0.models.shopify_product_create_upserted'] = PropTypes.exact({
|
|
9788
|
+
discriminator: PropTypes.oneOf(['shopify_product_create_upserted']).isRequired,
|
|
9789
|
+
event_id: PropTypes.string.isRequired,
|
|
9790
|
+
timestamp: PropTypes.string.isRequired,
|
|
9791
|
+
organization: PropTypes.string.isRequired,
|
|
9792
|
+
shopify_product_create: T['io.flow.internal.v0.models.shopify_product_create_webhook_event'].isRequired,
|
|
9793
|
+
});
|
|
9794
|
+
|
|
9963
9795
|
T['io.flow.internal.v0.models.shopify_product_bundle_underlying'] = PropTypes.exact({
|
|
9964
9796
|
product_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
9965
9797
|
});
|
|
@@ -10250,6 +10082,102 @@ T['io.flow.internal.v0.models.shopify_markets_best_selling_product_upserted'] =
|
|
|
10250
10082
|
shopify_markets_best_selling_product: T['io.flow.internal.v0.models.shopify_markets_best_selling_product'].isRequired,
|
|
10251
10083
|
});
|
|
10252
10084
|
|
|
10085
|
+
T['io.flow.shopify.external.v0.models.shopify_inventory_item_delete'] = PropTypes.exact({
|
|
10086
|
+
id: PropTypes.number.isRequired,
|
|
10087
|
+
});
|
|
10088
|
+
|
|
10089
|
+
T['io.flow.internal.v0.models.shopify_inventory_item_delete_webhook_event'] = PropTypes.exact({
|
|
10090
|
+
id: PropTypes.string.isRequired,
|
|
10091
|
+
inventory_item_delete: T['io.flow.shopify.external.v0.models.shopify_inventory_item_delete'].isRequired,
|
|
10092
|
+
});
|
|
10093
|
+
|
|
10094
|
+
T['io.flow.internal.v0.models.shopify_inventory_item_delete_upserted'] = PropTypes.exact({
|
|
10095
|
+
discriminator: PropTypes.oneOf(['shopify_inventory_item_delete_upserted']).isRequired,
|
|
10096
|
+
event_id: PropTypes.string.isRequired,
|
|
10097
|
+
timestamp: PropTypes.string.isRequired,
|
|
10098
|
+
organization: PropTypes.string.isRequired,
|
|
10099
|
+
shopify_inventory_item_delete: T['io.flow.internal.v0.models.shopify_inventory_item_delete_webhook_event'].isRequired,
|
|
10100
|
+
});
|
|
10101
|
+
|
|
10102
|
+
T['io.flow.shopify.markets.v0.models.shopify_country_harmonized_system_code'] = PropTypes.exact({
|
|
10103
|
+
country_code: PropTypes.string.isRequired,
|
|
10104
|
+
harmonized_system_code: PropTypes.string.isRequired,
|
|
10105
|
+
});
|
|
10106
|
+
|
|
10107
|
+
T['io.flow.shopify.markets.v0.models.shopify_product_variant_inventory_item_wrapper'] = PropTypes.exact({
|
|
10108
|
+
product_id: PropTypes.number.isRequired,
|
|
10109
|
+
variant_id: PropTypes.number.isRequired,
|
|
10110
|
+
harmonized_system_code: PropTypes.string.isRequired,
|
|
10111
|
+
|
|
10112
|
+
country_harmonized_system_codes: PropTypes.arrayOf(
|
|
10113
|
+
T['io.flow.shopify.markets.v0.models.shopify_country_harmonized_system_code'],
|
|
10114
|
+
).isRequired,
|
|
10115
|
+
});
|
|
10116
|
+
|
|
10117
|
+
T['io.flow.shopify.markets.v0.models.shopify_inventory_item_form'] = PropTypes.exact({
|
|
10118
|
+
harmonized_system_code: PropTypes.string,
|
|
10119
|
+
|
|
10120
|
+
country_harmonized_system_codes: PropTypes.arrayOf(
|
|
10121
|
+
T['io.flow.shopify.markets.v0.models.shopify_country_harmonized_system_code'],
|
|
10122
|
+
),
|
|
10123
|
+
});
|
|
10124
|
+
|
|
10125
|
+
T['io.flow.shopify.markets.v0.models.shopify_inventory_item_form_wrapper'] = PropTypes.exact({
|
|
10126
|
+
inventory_item: T['io.flow.shopify.markets.v0.models.shopify_inventory_item_form'].isRequired,
|
|
10127
|
+
});
|
|
10128
|
+
|
|
10129
|
+
T['io.flow.shopify.markets.v0.models.shopify_inventory_item'] = PropTypes.exact({
|
|
10130
|
+
id: PropTypes.number.isRequired,
|
|
10131
|
+
cost: PropTypes.string,
|
|
10132
|
+
country_code_of_origin: PropTypes.string,
|
|
10133
|
+
|
|
10134
|
+
country_harmonized_system_codes: PropTypes.arrayOf(
|
|
10135
|
+
T['io.flow.shopify.markets.v0.models.shopify_country_harmonized_system_code'],
|
|
10136
|
+
),
|
|
10137
|
+
|
|
10138
|
+
harmonized_system_code: PropTypes.string,
|
|
10139
|
+
province_code_of_origin: PropTypes.string,
|
|
10140
|
+
sku: PropTypes.string,
|
|
10141
|
+
tracked: PropTypes.bool,
|
|
10142
|
+
requires_shipping: PropTypes.bool.isRequired,
|
|
10143
|
+
created_at: PropTypes.string.isRequired,
|
|
10144
|
+
updated_at: PropTypes.string.isRequired,
|
|
10145
|
+
});
|
|
10146
|
+
|
|
10147
|
+
T['io.flow.shopify.markets.v0.models.shopify_inventory_items_wrapper'] = PropTypes.exact({
|
|
10148
|
+
inventory_items: PropTypes.arrayOf(T['io.flow.shopify.markets.v0.models.shopify_inventory_item']).isRequired,
|
|
10149
|
+
});
|
|
10150
|
+
|
|
10151
|
+
T['io.flow.shopify.markets.v0.models.shopify_inventory_item_wrapper'] = PropTypes.exact({
|
|
10152
|
+
inventory_item: T['io.flow.shopify.markets.v0.models.shopify_inventory_item'].isRequired,
|
|
10153
|
+
});
|
|
10154
|
+
|
|
10155
|
+
T['io.flow.internal.v0.models.shopify_inventory_item_update_webhook_event'] = PropTypes.exact({
|
|
10156
|
+
id: PropTypes.string.isRequired,
|
|
10157
|
+
inventory_item: T['io.flow.shopify.markets.v0.models.shopify_inventory_item'].isRequired,
|
|
10158
|
+
});
|
|
10159
|
+
|
|
10160
|
+
T['io.flow.internal.v0.models.shopify_inventory_item_update_upserted'] = PropTypes.exact({
|
|
10161
|
+
discriminator: PropTypes.oneOf(['shopify_inventory_item_update_upserted']).isRequired,
|
|
10162
|
+
event_id: PropTypes.string.isRequired,
|
|
10163
|
+
timestamp: PropTypes.string.isRequired,
|
|
10164
|
+
organization: PropTypes.string.isRequired,
|
|
10165
|
+
shopify_inventory_item_update: T['io.flow.internal.v0.models.shopify_inventory_item_update_webhook_event'].isRequired,
|
|
10166
|
+
});
|
|
10167
|
+
|
|
10168
|
+
T['io.flow.internal.v0.models.shopify_inventory_item_create_webhook_event'] = PropTypes.exact({
|
|
10169
|
+
id: PropTypes.string.isRequired,
|
|
10170
|
+
inventory_item: T['io.flow.shopify.markets.v0.models.shopify_inventory_item'].isRequired,
|
|
10171
|
+
});
|
|
10172
|
+
|
|
10173
|
+
T['io.flow.internal.v0.models.shopify_inventory_item_create_upserted'] = PropTypes.exact({
|
|
10174
|
+
discriminator: PropTypes.oneOf(['shopify_inventory_item_create_upserted']).isRequired,
|
|
10175
|
+
event_id: PropTypes.string.isRequired,
|
|
10176
|
+
timestamp: PropTypes.string.isRequired,
|
|
10177
|
+
organization: PropTypes.string.isRequired,
|
|
10178
|
+
shopify_inventory_item_create: T['io.flow.internal.v0.models.shopify_inventory_item_create_webhook_event'].isRequired,
|
|
10179
|
+
});
|
|
10180
|
+
|
|
10253
10181
|
T['io.flow.internal.v0.models.shopify_incoterm_includes'] = PropTypes.exact({
|
|
10254
10182
|
duties: PropTypes.bool.isRequired,
|
|
10255
10183
|
taxes: PropTypes.bool.isRequired,
|
|
@@ -10631,6 +10559,41 @@ T['io.flow.internal.v0.models.restrictions_dailyops_upserted'] = PropTypes.exact
|
|
|
10631
10559
|
restrictions_dailyops: T['io.flow.internal.v0.models.restrictions_dailyops'].isRequired,
|
|
10632
10560
|
});
|
|
10633
10561
|
|
|
10562
|
+
T['io.flow.sellability.v0.enums.rule_effect_type'] = PropTypes.oneOf(['market', 'dhl', 'dhl_ecommerce', 'ups']);
|
|
10563
|
+
|
|
10564
|
+
T['io.flow.sellability.v0.models.sellablility_region_result'] = PropTypes.exact({
|
|
10565
|
+
type: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
10566
|
+
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
10567
|
+
});
|
|
10568
|
+
|
|
10569
|
+
T['io.flow.sellability.v0.models.product_sellability'] = PropTypes.exact({
|
|
10570
|
+
organization_id: PropTypes.string.isRequired,
|
|
10571
|
+
product_id: PropTypes.string,
|
|
10572
|
+
product_correlation_id: PropTypes.string.isRequired,
|
|
10573
|
+
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellablility_region_result']).isRequired,
|
|
10574
|
+
in_review_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellablility_region_result']).isRequired,
|
|
10575
|
+
});
|
|
10576
|
+
|
|
10577
|
+
T['io.flow.internal.v0.models.restriction_rule_effect_form'] = PropTypes.exact({
|
|
10578
|
+
effect: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
10579
|
+
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
10580
|
+
description: PropTypes.string,
|
|
10581
|
+
});
|
|
10582
|
+
|
|
10583
|
+
T['io.flow.internal.v0.models.restriction_rule_effect'] = PropTypes.exact({
|
|
10584
|
+
id: PropTypes.string.isRequired,
|
|
10585
|
+
effect: T['io.flow.sellability.v0.enums.rule_effect_type'].isRequired,
|
|
10586
|
+
regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
10587
|
+
description: PropTypes.string,
|
|
10588
|
+
});
|
|
10589
|
+
|
|
10590
|
+
T['io.flow.internal.v0.models.restriction_rule_effect_upserted'] = PropTypes.exact({
|
|
10591
|
+
discriminator: PropTypes.oneOf(['restriction_rule_effect_upserted']).isRequired,
|
|
10592
|
+
event_id: PropTypes.string.isRequired,
|
|
10593
|
+
timestamp: PropTypes.string.isRequired,
|
|
10594
|
+
restriction_rule_effect: T['io.flow.internal.v0.models.restriction_rule_effect'].isRequired,
|
|
10595
|
+
});
|
|
10596
|
+
|
|
10634
10597
|
T['io.flow.internal.v0.enums.restriction_action'] = PropTypes.oneOf(['prohibited', 'restricted']);
|
|
10635
10598
|
T['io.flow.internal.v0.enums.keyword_type'] = PropTypes.oneOf(['positive', 'negative']);
|
|
10636
10599
|
|
|
@@ -15244,6 +15207,8 @@ T['io.flow.internal.v0.models.dispute_override_update_form'] = PropTypes.exact({
|
|
|
15244
15207
|
reporting_category: T['io.flow.internal.v0.enums.dispute_reporting_category'],
|
|
15245
15208
|
category: T['io.flow.internal.v0.enums.dispute_category'],
|
|
15246
15209
|
status: T['io.flow.internal.v0.enums.dispute_status'],
|
|
15210
|
+
defense_outcome: T['io.flow.internal.v0.enums.dispute_defense_outcome'],
|
|
15211
|
+
defended_at: PropTypes.string,
|
|
15247
15212
|
});
|
|
15248
15213
|
|
|
15249
15214
|
T['io.flow.internal.v0.enums.dispute_type'] = PropTypes.oneOf(['chargeback']);
|
|
@@ -15351,6 +15316,7 @@ T['io.flow.ratecard.v0.models.dimension_estimate_form'] = PropTypes.exact({
|
|
|
15351
15316
|
q: PropTypes.string.isRequired,
|
|
15352
15317
|
dimensions: T['io.flow.ratecard.v0.models.estimated_dimensions'].isRequired,
|
|
15353
15318
|
position: PropTypes.number,
|
|
15319
|
+
block_bulk_update: PropTypes.bool,
|
|
15354
15320
|
});
|
|
15355
15321
|
|
|
15356
15322
|
T['io.flow.ratecard.v0.models.dimension_estimate'] = PropTypes.exact({
|
|
@@ -15358,6 +15324,7 @@ T['io.flow.ratecard.v0.models.dimension_estimate'] = PropTypes.exact({
|
|
|
15358
15324
|
q: PropTypes.string.isRequired,
|
|
15359
15325
|
dimensions: T['io.flow.ratecard.v0.models.estimated_dimensions'].isRequired,
|
|
15360
15326
|
position: PropTypes.number.isRequired,
|
|
15327
|
+
block_bulk_update: PropTypes.bool,
|
|
15361
15328
|
});
|
|
15362
15329
|
|
|
15363
15330
|
T['io.flow.internal.v0.models.ratecard_dimension_estimate_upserted'] = PropTypes.exact({
|
|
@@ -17233,6 +17200,7 @@ T['io.flow.internal.v0.enums.charge_input_type'] = PropTypes.oneOf([
|
|
|
17233
17200
|
'electronic_export_information_surcharge',
|
|
17234
17201
|
'additional_handling',
|
|
17235
17202
|
'large_package_surcharge',
|
|
17203
|
+
'peak_surcharge',
|
|
17236
17204
|
]);
|
|
17237
17205
|
|
|
17238
17206
|
T['io.flow.internal.v0.models.transaction_reference'] = PropTypes.exact({
|
|
@@ -17245,7 +17213,7 @@ T['io.flow.internal.v0.models.shopify_metadata'] = PropTypes.exact({
|
|
|
17245
17213
|
token: PropTypes.string.isRequired,
|
|
17246
17214
|
});
|
|
17247
17215
|
|
|
17248
|
-
T['io.flow.internal.v0.enums.shopify_service'] = PropTypes.oneOf(['payment', 'duty_tax_calculator']);
|
|
17216
|
+
T['io.flow.internal.v0.enums.shopify_service'] = PropTypes.oneOf(['payment', 'duty_tax_calculator', 'sellability']);
|
|
17249
17217
|
|
|
17250
17218
|
T['io.flow.internal.v0.models.shopify_channel_organization_token'] = PropTypes.exact({
|
|
17251
17219
|
cleartext: PropTypes.string.isRequired,
|
|
@@ -19584,6 +19552,9 @@ T['io.flow.billing.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
19584
19552
|
'virtual_card_refund',
|
|
19585
19553
|
'failed_payout',
|
|
19586
19554
|
'tax_refund',
|
|
19555
|
+
'order_fx',
|
|
19556
|
+
'ge_revenue_share',
|
|
19557
|
+
'tax_duty_delta',
|
|
19587
19558
|
]);
|
|
19588
19559
|
|
|
19589
19560
|
T['io.flow.internal.v0.models.debug_original_transaction_summary'] = PropTypes.exact({
|
|
@@ -19831,6 +19802,7 @@ T['io.flow.internal.v0.models.restriction_rule_form'] = PropTypes.exact({
|
|
|
19831
19802
|
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
19832
19803
|
value_threshold_usd: PropTypes.number,
|
|
19833
19804
|
auto_review_criteria: PropTypes.arrayOf(T['io.flow.internal.v0.models.auto_review_criteria']),
|
|
19805
|
+
effects: PropTypes.arrayOf(PropTypes.string),
|
|
19834
19806
|
});
|
|
19835
19807
|
|
|
19836
19808
|
T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
|
|
@@ -19843,6 +19815,14 @@ T['io.flow.internal.v0.models.restriction_rule'] = PropTypes.exact({
|
|
|
19843
19815
|
negative_keywords: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
19844
19816
|
value_threshold_usd: PropTypes.number,
|
|
19845
19817
|
auto_review_criteria: PropTypes.arrayOf(T['io.flow.internal.v0.models.auto_review_criteria']),
|
|
19818
|
+
effects: PropTypes.arrayOf(PropTypes.string),
|
|
19819
|
+
});
|
|
19820
|
+
|
|
19821
|
+
T['io.flow.internal.v0.models.restriction_rule_upserted'] = PropTypes.exact({
|
|
19822
|
+
discriminator: PropTypes.oneOf(['restriction_rule_upserted']).isRequired,
|
|
19823
|
+
event_id: PropTypes.string.isRequired,
|
|
19824
|
+
timestamp: PropTypes.string.isRequired,
|
|
19825
|
+
restriction_rule: T['io.flow.internal.v0.models.restriction_rule'].isRequired,
|
|
19846
19826
|
});
|
|
19847
19827
|
|
|
19848
19828
|
T['io.flow.internal.v0.enums.order_charge_trigger'] = PropTypes.oneOf(['first_shipment', 'last_shipment', 'shipment_exhausted']);
|
|
@@ -20826,6 +20806,7 @@ T['io.flow.internal.v0.models.checkout_content_summary'] = PropTypes.exact({
|
|
|
20826
20806
|
footer: PropTypes.arrayOf(T['io.flow.internal.v0.unions.content_item']).isRequired,
|
|
20827
20807
|
});
|
|
20828
20808
|
|
|
20809
|
+
T['io.flow.internal.v0.enums.ansh_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
20829
20810
|
T['io.flow.common.v0.enums.role'] = PropTypes.oneOf(['admin', 'member']);
|
|
20830
20811
|
|
|
20831
20812
|
T['io.flow.organization.v0.models.organization_authorization'] = PropTypes.exact({
|
|
@@ -23445,6 +23426,21 @@ T['io.flow.label.v0.models.shipping_label_hop_summary'] = PropTypes.exact({
|
|
|
23445
23426
|
itemized_estimate: T['io.flow.label.v0.models.shipping_label_hop_cost_itemized_estimate'],
|
|
23446
23427
|
});
|
|
23447
23428
|
|
|
23429
|
+
T['io.flow.internal.v0.models.final_estimate'] = PropTypes.exact({
|
|
23430
|
+
id: PropTypes.string.isRequired,
|
|
23431
|
+
organization_id: PropTypes.string.isRequired,
|
|
23432
|
+
label_id: PropTypes.string.isRequired,
|
|
23433
|
+
estimate: T['io.flow.label.v0.models.shipping_label_hop_summary'].isRequired,
|
|
23434
|
+
});
|
|
23435
|
+
|
|
23436
|
+
T['io.flow.internal.v0.models.final_estimate_upserted'] = PropTypes.exact({
|
|
23437
|
+
discriminator: PropTypes.oneOf(['final_estimate_upserted']).isRequired,
|
|
23438
|
+
event_id: PropTypes.string.isRequired,
|
|
23439
|
+
timestamp: PropTypes.string.isRequired,
|
|
23440
|
+
organization: PropTypes.string.isRequired,
|
|
23441
|
+
final_estimate: T['io.flow.internal.v0.models.final_estimate'].isRequired,
|
|
23442
|
+
});
|
|
23443
|
+
|
|
23448
23444
|
T['io.flow.internal.v0.models.debug_label'] = PropTypes.exact({
|
|
23449
23445
|
carrier_id: PropTypes.string.isRequired,
|
|
23450
23446
|
carrier_tracking_number: PropTypes.string.isRequired,
|
|
@@ -25848,6 +25844,23 @@ T['io.flow.internal.v0.models.authorized_charge_status'] = PropTypes.exact({
|
|
|
25848
25844
|
refunded: T['io.flow.common.v0.models.price_with_base'].isRequired,
|
|
25849
25845
|
});
|
|
25850
25846
|
|
|
25847
|
+
T['io.flow.internal.v0.models.ansh_item_form'] = PropTypes.exact({
|
|
25848
|
+
number: PropTypes.string.isRequired,
|
|
25849
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
25850
|
+
description: PropTypes.string,
|
|
25851
|
+
type: T['io.flow.internal.v0.enums.ansh_item_type'].isRequired,
|
|
25852
|
+
added_on: PropTypes.string.isRequired,
|
|
25853
|
+
});
|
|
25854
|
+
|
|
25855
|
+
T['io.flow.internal.v0.models.ansh_item'] = PropTypes.exact({
|
|
25856
|
+
id: PropTypes.string.isRequired,
|
|
25857
|
+
number: PropTypes.string.isRequired,
|
|
25858
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
25859
|
+
description: PropTypes.string,
|
|
25860
|
+
type: T['io.flow.internal.v0.enums.ansh_item_type'].isRequired,
|
|
25861
|
+
added_on: PropTypes.string.isRequired,
|
|
25862
|
+
});
|
|
25863
|
+
|
|
25851
25864
|
T['io.flow.internal.v0.models.aldo_item_form'] = PropTypes.exact({
|
|
25852
25865
|
number: PropTypes.string.isRequired,
|
|
25853
25866
|
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -26347,8 +26360,11 @@ T['io.flow.internal.v0.enums.billing_transaction_type'] = PropTypes.oneOf([
|
|
|
26347
26360
|
'duty',
|
|
26348
26361
|
'trueup',
|
|
26349
26362
|
'carrier_charge',
|
|
26363
|
+
'order_fx',
|
|
26350
26364
|
'tax_refund',
|
|
26351
26365
|
'duty_refund',
|
|
26366
|
+
'ge_revenue_share',
|
|
26367
|
+
'tax_duty_delta',
|
|
26352
26368
|
]);
|
|
26353
26369
|
|
|
26354
26370
|
T['io.flow.internal.v0.models.virtual_card_transaction'] = PropTypes.exact({
|
|
@@ -26458,6 +26474,19 @@ T['io.flow.internal.v0.models.tax_remittance_transaction_upserted'] = PropTypes.
|
|
|
26458
26474
|
transaction: T['io.flow.internal.v0.models.tax_remittance_transaction'].isRequired,
|
|
26459
26475
|
});
|
|
26460
26476
|
|
|
26477
|
+
T['io.flow.internal.v0.models.tax_duty_delta_transaction'] = PropTypes.exact({
|
|
26478
|
+
discriminator: PropTypes.oneOf(['tax_duty_delta_transaction']).isRequired,
|
|
26479
|
+
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
26480
|
+
id: PropTypes.string.isRequired,
|
|
26481
|
+
type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
|
|
26482
|
+
status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
|
|
26483
|
+
posted_at: PropTypes.string,
|
|
26484
|
+
value: T['io.flow.common.v0.models.price'].isRequired,
|
|
26485
|
+
description: PropTypes.string.isRequired,
|
|
26486
|
+
statement: T['io.flow.internal.v0.models.billing_statement_reference'],
|
|
26487
|
+
created_at: PropTypes.string.isRequired,
|
|
26488
|
+
});
|
|
26489
|
+
|
|
26461
26490
|
T['io.flow.internal.v0.models.subscription_transaction'] = PropTypes.exact({
|
|
26462
26491
|
discriminator: PropTypes.oneOf(['subscription_transaction']).isRequired,
|
|
26463
26492
|
period: T['io.flow.common.v0.models.datetime_range'].isRequired,
|
|
@@ -26566,6 +26595,20 @@ T['io.flow.internal.v0.models.order_transaction_upserted'] = PropTypes.exact({
|
|
|
26566
26595
|
order_transaction: T['io.flow.internal.v0.models.order_transaction'].isRequired,
|
|
26567
26596
|
});
|
|
26568
26597
|
|
|
26598
|
+
T['io.flow.internal.v0.models.order_fx_transaction'] = PropTypes.exact({
|
|
26599
|
+
discriminator: PropTypes.oneOf(['order_fx_transaction']).isRequired,
|
|
26600
|
+
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
26601
|
+
fx: T['io.flow.internal.v0.models.fee'].isRequired,
|
|
26602
|
+
id: PropTypes.string.isRequired,
|
|
26603
|
+
type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
|
|
26604
|
+
status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
|
|
26605
|
+
posted_at: PropTypes.string,
|
|
26606
|
+
value: T['io.flow.common.v0.models.price'].isRequired,
|
|
26607
|
+
description: PropTypes.string.isRequired,
|
|
26608
|
+
statement: T['io.flow.internal.v0.models.billing_statement_reference'],
|
|
26609
|
+
created_at: PropTypes.string.isRequired,
|
|
26610
|
+
});
|
|
26611
|
+
|
|
26569
26612
|
T['io.flow.internal.v0.models.manual_transaction'] = PropTypes.exact({
|
|
26570
26613
|
discriminator: PropTypes.oneOf(['manual_transaction']).isRequired,
|
|
26571
26614
|
category: T['io.flow.internal.v0.enums.manual_transaction_category'],
|
|
@@ -26588,6 +26631,7 @@ T['io.flow.internal.v0.models.main_transaction'] = PropTypes.exact({
|
|
|
26588
26631
|
type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
|
|
26589
26632
|
value: T['io.flow.common.v0.models.price'].isRequired,
|
|
26590
26633
|
status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
|
|
26634
|
+
paid_at: PropTypes.string,
|
|
26591
26635
|
posted_at: PropTypes.string,
|
|
26592
26636
|
statement: T['io.flow.internal.v0.models.billing_statement_reference'],
|
|
26593
26637
|
created_at: PropTypes.string.isRequired,
|
|
@@ -26654,6 +26698,20 @@ T['io.flow.internal.v0.models.invoice_transaction'] = PropTypes.exact({
|
|
|
26654
26698
|
created_at: PropTypes.string.isRequired,
|
|
26655
26699
|
});
|
|
26656
26700
|
|
|
26701
|
+
T['io.flow.internal.v0.models.ge_revenue_share_transaction'] = PropTypes.exact({
|
|
26702
|
+
discriminator: PropTypes.oneOf(['ge_revenue_share_transaction']).isRequired,
|
|
26703
|
+
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'].isRequired,
|
|
26704
|
+
ge_revenue_share: T['io.flow.internal.v0.models.fee'].isRequired,
|
|
26705
|
+
id: PropTypes.string.isRequired,
|
|
26706
|
+
type: T['io.flow.internal.v0.enums.billing_transaction_type'].isRequired,
|
|
26707
|
+
status: T['io.flow.internal.v0.enums.billing_transaction_status'].isRequired,
|
|
26708
|
+
posted_at: PropTypes.string,
|
|
26709
|
+
value: T['io.flow.common.v0.models.price'].isRequired,
|
|
26710
|
+
description: PropTypes.string.isRequired,
|
|
26711
|
+
statement: T['io.flow.internal.v0.models.billing_statement_reference'],
|
|
26712
|
+
created_at: PropTypes.string.isRequired,
|
|
26713
|
+
});
|
|
26714
|
+
|
|
26657
26715
|
T['io.flow.internal.v0.models.duty_transaction'] = PropTypes.exact({
|
|
26658
26716
|
discriminator: PropTypes.oneOf(['duty_transaction']).isRequired,
|
|
26659
26717
|
order: T['io.flow.internal.v0.models.billing_order_transaction_order_reference'],
|
|
@@ -26760,6 +26818,9 @@ T['io.flow.internal.v0.unions.transaction'] = PropTypes.oneOfType([
|
|
|
26760
26818
|
T['io.flow.internal.v0.models.duty_transaction'],
|
|
26761
26819
|
T['io.flow.internal.v0.models.trueup_transaction'],
|
|
26762
26820
|
T['io.flow.internal.v0.models.carrier_charge_transaction'],
|
|
26821
|
+
T['io.flow.internal.v0.models.order_fx_transaction'],
|
|
26822
|
+
T['io.flow.internal.v0.models.ge_revenue_share_transaction'],
|
|
26823
|
+
T['io.flow.internal.v0.models.tax_duty_delta_transaction'],
|
|
26763
26824
|
]);
|
|
26764
26825
|
|
|
26765
26826
|
T['io.flow.internal.v0.models.billing_transaction'] = PropTypes.exact({
|
|
@@ -27007,6 +27068,8 @@ T['io.flow.internal.v0.models.fraud_review_authorization_decision_upserted'] = P
|
|
|
27007
27068
|
T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
27008
27069
|
T['io.flow.internal.v0.models.adjusted_estimates_upserted'],
|
|
27009
27070
|
T['io.flow.internal.v0.models.adjusted_estimates_deleted'],
|
|
27071
|
+
T['io.flow.internal.v0.models.final_estimate_upserted'],
|
|
27072
|
+
T['io.flow.internal.v0.models.final_estimate_deleted'],
|
|
27010
27073
|
T['io.flow.internal.v0.models.adyen_authorization_deleted'],
|
|
27011
27074
|
T['io.flow.internal.v0.models.adyen_authorization_upserted'],
|
|
27012
27075
|
T['io.flow.internal.v0.models.adyen_cancel_deleted'],
|
|
@@ -27181,7 +27244,6 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27181
27244
|
T['io.flow.internal.v0.models.harmonized_items_hs6_export'],
|
|
27182
27245
|
T['io.flow.internal.v0.models.unharmonized_items_export'],
|
|
27183
27246
|
T['io.flow.internal.v0.models.dutied_items_export'],
|
|
27184
|
-
T['io.flow.internal.v0.models.tariff_codes_export'],
|
|
27185
27247
|
T['io.flow.internal.v0.models.harmonization_phrase_suggestion_request_import'],
|
|
27186
27248
|
T['io.flow.internal.v0.models.harmonization_codes_import'],
|
|
27187
27249
|
T['io.flow.internal.v0.models.item_classification_created'],
|
|
@@ -27307,6 +27369,10 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27307
27369
|
T['io.flow.internal.v0.models.screening_status_change_deleted'],
|
|
27308
27370
|
T['io.flow.internal.v0.models.restrictions_dailyops_upserted'],
|
|
27309
27371
|
T['io.flow.internal.v0.models.restrictions_dailyops_deleted'],
|
|
27372
|
+
T['io.flow.internal.v0.models.restriction_rule_upserted'],
|
|
27373
|
+
T['io.flow.internal.v0.models.restriction_rule_deleted'],
|
|
27374
|
+
T['io.flow.internal.v0.models.restriction_rule_effect_upserted'],
|
|
27375
|
+
T['io.flow.internal.v0.models.restriction_rule_effect_deleted'],
|
|
27310
27376
|
T['io.flow.internal.v0.models.shopify_shop_upserted'],
|
|
27311
27377
|
T['io.flow.internal.v0.models.shopify_shop_deleted'],
|
|
27312
27378
|
T['io.flow.internal.v0.models.shopify_experience_short_id_upserted'],
|
|
@@ -27332,6 +27398,18 @@ T['io.flow.internal.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
27332
27398
|
T['io.flow.internal.v0.models.shopify_incoterm_summary_error_published'],
|
|
27333
27399
|
T['io.flow.internal.v0.models.shopify_markets_best_selling_product_upserted'],
|
|
27334
27400
|
T['io.flow.internal.v0.models.shopify_markets_best_selling_product_deleted'],
|
|
27401
|
+
T['io.flow.internal.v0.models.shopify_product_create_upserted'],
|
|
27402
|
+
T['io.flow.internal.v0.models.shopify_product_create_deleted'],
|
|
27403
|
+
T['io.flow.internal.v0.models.shopify_product_update_upserted'],
|
|
27404
|
+
T['io.flow.internal.v0.models.shopify_product_update_deleted'],
|
|
27405
|
+
T['io.flow.internal.v0.models.shopify_product_delete_upserted'],
|
|
27406
|
+
T['io.flow.internal.v0.models.shopify_product_delete_deleted'],
|
|
27407
|
+
T['io.flow.internal.v0.models.shopify_inventory_item_create_upserted'],
|
|
27408
|
+
T['io.flow.internal.v0.models.shopify_inventory_item_create_deleted'],
|
|
27409
|
+
T['io.flow.internal.v0.models.shopify_inventory_item_update_upserted'],
|
|
27410
|
+
T['io.flow.internal.v0.models.shopify_inventory_item_update_deleted'],
|
|
27411
|
+
T['io.flow.internal.v0.models.shopify_inventory_item_delete_upserted'],
|
|
27412
|
+
T['io.flow.internal.v0.models.shopify_inventory_item_delete_deleted'],
|
|
27335
27413
|
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_upserted'],
|
|
27336
27414
|
T['io.flow.internal.v0.models.shopify_monitoring_order_monitor_event_deleted'],
|
|
27337
27415
|
T['io.flow.internal.v0.models.shopify_order_fulfillments_snapshot_upserted'],
|
|
@@ -27527,6 +27605,8 @@ T['io.flow.internal.v0.enums.duty_transaction_type'] = PropTypes.oneOf(['adjustm
|
|
|
27527
27605
|
T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
27528
27606
|
'adjusted_estimates_upserted',
|
|
27529
27607
|
'adjusted_estimates_deleted',
|
|
27608
|
+
'final_estimate_upserted',
|
|
27609
|
+
'final_estimate_deleted',
|
|
27530
27610
|
'adyen_authorization_deleted',
|
|
27531
27611
|
'adyen_authorization_upserted',
|
|
27532
27612
|
'adyen_cancel_deleted',
|
|
@@ -27701,7 +27781,6 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27701
27781
|
'harmonized_items_hs6_export',
|
|
27702
27782
|
'unharmonized_items_export',
|
|
27703
27783
|
'dutied_items_export',
|
|
27704
|
-
'tariff_codes_export',
|
|
27705
27784
|
'harmonization_phrase_suggestion_request_import',
|
|
27706
27785
|
'harmonization_codes_import',
|
|
27707
27786
|
'item_classification_created',
|
|
@@ -27827,6 +27906,10 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27827
27906
|
'screening_status_change_deleted',
|
|
27828
27907
|
'restrictions_dailyops_upserted',
|
|
27829
27908
|
'restrictions_dailyops_deleted',
|
|
27909
|
+
'restriction_rule_upserted',
|
|
27910
|
+
'restriction_rule_deleted',
|
|
27911
|
+
'restriction_rule_effect_upserted',
|
|
27912
|
+
'restriction_rule_effect_deleted',
|
|
27830
27913
|
'shopify_shop_upserted',
|
|
27831
27914
|
'shopify_shop_deleted',
|
|
27832
27915
|
'shopify_experience_short_id_upserted',
|
|
@@ -27852,6 +27935,18 @@ T['io.flow.internal.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
27852
27935
|
'shopify_incoterm_summary_error_published',
|
|
27853
27936
|
'shopify_markets_best_selling_product_upserted',
|
|
27854
27937
|
'shopify_markets_best_selling_product_deleted',
|
|
27938
|
+
'shopify_product_create_upserted',
|
|
27939
|
+
'shopify_product_create_deleted',
|
|
27940
|
+
'shopify_product_update_upserted',
|
|
27941
|
+
'shopify_product_update_deleted',
|
|
27942
|
+
'shopify_product_delete_upserted',
|
|
27943
|
+
'shopify_product_delete_deleted',
|
|
27944
|
+
'shopify_inventory_item_create_upserted',
|
|
27945
|
+
'shopify_inventory_item_create_deleted',
|
|
27946
|
+
'shopify_inventory_item_update_upserted',
|
|
27947
|
+
'shopify_inventory_item_update_deleted',
|
|
27948
|
+
'shopify_inventory_item_delete_upserted',
|
|
27949
|
+
'shopify_inventory_item_delete_deleted',
|
|
27855
27950
|
'shopify_monitoring_order_monitor_event_upserted',
|
|
27856
27951
|
'shopify_monitoring_order_monitor_event_deleted',
|
|
27857
27952
|
'shopify_order_fulfillments_snapshot_upserted',
|
|
@@ -27903,10 +27998,12 @@ T['io.flow.internal.v0.enums.graphql_service_types'] = PropTypes.oneOf([
|
|
|
27903
27998
|
'shopify_location',
|
|
27904
27999
|
'shopify_order',
|
|
27905
28000
|
'sync_product_catalog',
|
|
28001
|
+
'shopify_webhook',
|
|
27906
28002
|
]);
|
|
27907
28003
|
|
|
27908
28004
|
T['io.flow.internal.v0.enums.http_method'] = PropTypes.oneOf(['get', 'post']);
|
|
27909
28005
|
T['io.flow.internal.v0.enums.label_billing_strategy'] = PropTypes.oneOf(['quote', 'carrier']);
|
|
28006
|
+
T['io.flow.internal.v0.enums.label_event_source'] = PropTypes.oneOf(['aftership', 'carrier', 'flow']);
|
|
27910
28007
|
T['io.flow.internal.v0.enums.label_request_result_organization_type'] = PropTypes.oneOf(['all', 'legacy_production', 'managed_markets_production', 'sandbox']);
|
|
27911
28008
|
T['io.flow.internal.v0.enums.label_transaction_type'] = PropTypes.oneOf(['adjustment', 'reversal', 'billable_label', 'fee', 'revenue_share']);
|
|
27912
28009
|
T['io.flow.internal.v0.enums.marketing_gateway_feed_download_format'] = PropTypes.oneOf(['tsv', 'csv', 'txt']);
|
|
@@ -28063,6 +28160,10 @@ T['io.flow.internal.v0.models.adyen_payment_details_form'] = PropTypes.exact({
|
|
|
28063
28160
|
challenge_result: PropTypes.string,
|
|
28064
28161
|
});
|
|
28065
28162
|
|
|
28163
|
+
T['io.flow.internal.v0.models.aftership_webhook'] = PropTypes.exact({
|
|
28164
|
+
placeholder: PropTypes.bool,
|
|
28165
|
+
});
|
|
28166
|
+
|
|
28066
28167
|
T['io.flow.internal.v0.models.alert_import_summary'] = PropTypes.exact({
|
|
28067
28168
|
organization_id: PropTypes.string.isRequired,
|
|
28068
28169
|
filename: PropTypes.string.isRequired,
|
|
@@ -28270,10 +28371,6 @@ T['io.flow.internal.v0.models.delete_transitions_put_form'] = PropTypes.exact({
|
|
|
28270
28371
|
transition_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
28271
28372
|
});
|
|
28272
28373
|
|
|
28273
|
-
T['io.flow.internal.v0.models.dhl_ecommerce_webhook'] = PropTypes.exact({
|
|
28274
|
-
placeholder: PropTypes.bool,
|
|
28275
|
-
});
|
|
28276
|
-
|
|
28277
28374
|
T['io.flow.internal.v0.models.discount_code'] = PropTypes.exact({
|
|
28278
28375
|
code: PropTypes.string.isRequired,
|
|
28279
28376
|
});
|
|
@@ -28377,6 +28474,10 @@ T['io.flow.internal.v0.models.financial_reporting_statement_form'] = PropTypes.e
|
|
|
28377
28474
|
flow_entity_country_code: PropTypes.string,
|
|
28378
28475
|
});
|
|
28379
28476
|
|
|
28477
|
+
T['io.flow.internal.v0.models.flexe_webhook'] = PropTypes.exact({
|
|
28478
|
+
placeholder: PropTypes.bool,
|
|
28479
|
+
});
|
|
28480
|
+
|
|
28380
28481
|
T['io.flow.internal.v0.models.flow_channel_organization'] = PropTypes.exact({
|
|
28381
28482
|
placeholder: PropTypes.string,
|
|
28382
28483
|
});
|
|
@@ -28848,6 +28949,13 @@ T['io.flow.internal.v0.models.session_rollout_form'] = PropTypes.exact({
|
|
|
28848
28949
|
percent: PropTypes.number.isRequired,
|
|
28849
28950
|
});
|
|
28850
28951
|
|
|
28952
|
+
T['io.flow.internal.v0.models.shawn_roundtable_workshop_rate'] = PropTypes.exact({
|
|
28953
|
+
origin_country: PropTypes.string.isRequired,
|
|
28954
|
+
destination_country: PropTypes.string.isRequired,
|
|
28955
|
+
weight: PropTypes.number.isRequired,
|
|
28956
|
+
amount: PropTypes.number.isRequired,
|
|
28957
|
+
});
|
|
28958
|
+
|
|
28851
28959
|
T['io.flow.internal.v0.models.shipping_lane'] = PropTypes.exact({
|
|
28852
28960
|
origin: PropTypes.string.isRequired,
|
|
28853
28961
|
destination: PropTypes.string.isRequired,
|
|
@@ -28976,6 +29084,11 @@ T['io.flow.internal.v0.models.shopify_store_detail'] = PropTypes.exact({
|
|
|
28976
29084
|
shop_id: PropTypes.string.isRequired,
|
|
28977
29085
|
});
|
|
28978
29086
|
|
|
29087
|
+
T['io.flow.internal.v0.models.shopify_stripe_event'] = PropTypes.exact({
|
|
29088
|
+
id: PropTypes.string.isRequired,
|
|
29089
|
+
request: PropTypes.object,
|
|
29090
|
+
});
|
|
29091
|
+
|
|
28979
29092
|
T['io.flow.internal.v0.models.shopify_webhook_event'] = PropTypes.exact({
|
|
28980
29093
|
placeholder: PropTypes.string.isRequired,
|
|
28981
29094
|
});
|
|
@@ -29016,6 +29129,14 @@ T['io.flow.internal.v0.models.tracking_debug_force_transit_form'] = PropTypes.ex
|
|
|
29016
29129
|
description: PropTypes.string.isRequired,
|
|
29017
29130
|
});
|
|
29018
29131
|
|
|
29132
|
+
T['io.flow.internal.v0.models.tracking_resync'] = PropTypes.exact({
|
|
29133
|
+
placeholder: PropTypes.bool,
|
|
29134
|
+
});
|
|
29135
|
+
|
|
29136
|
+
T['io.flow.internal.v0.models.tracking_webhook'] = PropTypes.exact({
|
|
29137
|
+
placeholder: PropTypes.bool,
|
|
29138
|
+
});
|
|
29139
|
+
|
|
29019
29140
|
T['io.flow.internal.v0.models.unclassified_products_purge_request'] = PropTypes.exact({
|
|
29020
29141
|
num_deleted_products: PropTypes.objectOf(PropTypes.number).isRequired,
|
|
29021
29142
|
});
|
|
@@ -29115,15 +29236,6 @@ T['io.flow.export.v0.models.landed_cost_item'] = PropTypes.exact({
|
|
|
29115
29236
|
destination: PropTypes.string.isRequired,
|
|
29116
29237
|
});
|
|
29117
29238
|
|
|
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
29239
|
T['io.flow.payment.v0.models.capture_form'] = PropTypes.exact({
|
|
29128
29240
|
authorization_id: PropTypes.string.isRequired,
|
|
29129
29241
|
key: PropTypes.string,
|
|
@@ -29303,6 +29415,17 @@ T['io.flow.external.paypal.v1.enums.event_type'] = PropTypes.oneOf([
|
|
|
29303
29415
|
]);
|
|
29304
29416
|
|
|
29305
29417
|
T['io.flow.external.paypal.v1.enums.http_method'] = PropTypes.oneOf(['GET', 'POST', 'PUT', 'DELETE', 'HEAD', 'CONNECT', 'OPTIONS', 'PATCH']);
|
|
29418
|
+
T['io.flow.external.paypal.v1.enums.reporting_balance_affecting_records_only'] = PropTypes.oneOf(['Y', 'N']);
|
|
29419
|
+
|
|
29420
|
+
T['io.flow.external.paypal.v1.enums.reporting_transaction_field'] = PropTypes.oneOf([
|
|
29421
|
+
'transaction_info',
|
|
29422
|
+
'payer_info',
|
|
29423
|
+
'shipping_info',
|
|
29424
|
+
'auction_info',
|
|
29425
|
+
'cart_info',
|
|
29426
|
+
'incentive_info',
|
|
29427
|
+
'store_info',
|
|
29428
|
+
]);
|
|
29306
29429
|
|
|
29307
29430
|
T['io.flow.external.paypal.v1.models.token'] = PropTypes.exact({
|
|
29308
29431
|
access_token: PropTypes.string.isRequired,
|
|
@@ -29403,6 +29526,7 @@ T['io.flow.shopify.markets.internal.v0.enums.graphql_service_types'] = PropTypes
|
|
|
29403
29526
|
'shopify_location',
|
|
29404
29527
|
'shopify_order',
|
|
29405
29528
|
'sync_product_catalog',
|
|
29529
|
+
'shopify_webhook',
|
|
29406
29530
|
]);
|
|
29407
29531
|
|
|
29408
29532
|
T['io.flow.shopify.markets.internal.v0.enums.product_status'] = PropTypes.oneOf(['active', 'archived', 'draft']);
|
|
@@ -29659,10 +29783,6 @@ T['io.flow.shopify.external.v0.models.count'] = PropTypes.exact({
|
|
|
29659
29783
|
count: PropTypes.number.isRequired,
|
|
29660
29784
|
});
|
|
29661
29785
|
|
|
29662
|
-
T['io.flow.shopify.external.v0.models.product_delete'] = PropTypes.exact({
|
|
29663
|
-
id: PropTypes.number.isRequired,
|
|
29664
|
-
});
|
|
29665
|
-
|
|
29666
29786
|
T['io.flow.shopify.external.v0.models.shopify_customer_delete'] = PropTypes.exact({
|
|
29667
29787
|
id: PropTypes.number.isRequired,
|
|
29668
29788
|
});
|
|
@@ -29681,10 +29801,6 @@ T['io.flow.shopify.external.v0.models.shopify_inventory_item'] = PropTypes.exact
|
|
|
29681
29801
|
updated_at: PropTypes.string,
|
|
29682
29802
|
});
|
|
29683
29803
|
|
|
29684
|
-
T['io.flow.shopify.external.v0.models.shopify_inventory_item_delete'] = PropTypes.exact({
|
|
29685
|
-
id: PropTypes.number.isRequired,
|
|
29686
|
-
});
|
|
29687
|
-
|
|
29688
29804
|
T['io.flow.shopify.external.v0.models.shopify_inventory_level_disconnect'] = PropTypes.exact({
|
|
29689
29805
|
inventory_item_id: PropTypes.number.isRequired,
|
|
29690
29806
|
location_id: PropTypes.number.isRequired,
|
|
@@ -30000,6 +30116,50 @@ T['io.flow.shopify.merchant.config.v0.models.country_of_origin_form'] = PropType
|
|
|
30000
30116
|
|
|
30001
30117
|
T['io.flow.price.v0.enums.levy_strategy'] = PropTypes.oneOf(['minimum', 'average', 'maximum']);
|
|
30002
30118
|
|
|
30119
|
+
T['io.flow.tracking.v0.enums.substatus_code'] = PropTypes.oneOf([
|
|
30120
|
+
'Delivered_001',
|
|
30121
|
+
'Delivered_002',
|
|
30122
|
+
'Delivered_003',
|
|
30123
|
+
'Delivered_004',
|
|
30124
|
+
'AvailableForPickup_001',
|
|
30125
|
+
'Exception_001',
|
|
30126
|
+
'Exception_002',
|
|
30127
|
+
'Exception_003',
|
|
30128
|
+
'Exception_004',
|
|
30129
|
+
'Exception_005',
|
|
30130
|
+
'Exception_006',
|
|
30131
|
+
'Exception_007',
|
|
30132
|
+
'Exception_008',
|
|
30133
|
+
'Exception_009',
|
|
30134
|
+
'Exception_010',
|
|
30135
|
+
'Exception_011',
|
|
30136
|
+
'Exception_012',
|
|
30137
|
+
'Exception_013',
|
|
30138
|
+
'AttemptFail_001',
|
|
30139
|
+
'AttemptFail_002',
|
|
30140
|
+
'AttemptFail_003',
|
|
30141
|
+
'InTransit_001',
|
|
30142
|
+
'InTransit_002',
|
|
30143
|
+
'InTransit_003',
|
|
30144
|
+
'InTransit_004',
|
|
30145
|
+
'InTransit_005',
|
|
30146
|
+
'InTransit_006',
|
|
30147
|
+
'InTransit_007',
|
|
30148
|
+
'InTransit_008',
|
|
30149
|
+
'InTransit_009',
|
|
30150
|
+
'InfoReceived_001',
|
|
30151
|
+
'OutForDelivery_001',
|
|
30152
|
+
'OutForDelivery_003',
|
|
30153
|
+
'OutForDelivery_004',
|
|
30154
|
+
'Pending_001',
|
|
30155
|
+
'Pending_002',
|
|
30156
|
+
'Pending_003',
|
|
30157
|
+
'Pending_004',
|
|
30158
|
+
'Pending_005',
|
|
30159
|
+
'Pending_006',
|
|
30160
|
+
'Expired_001',
|
|
30161
|
+
]);
|
|
30162
|
+
|
|
30003
30163
|
T['io.flow.merchant.onboarding.v0.enums.onboarding_trade_sector'] = PropTypes.oneOf([
|
|
30004
30164
|
'accessories',
|
|
30005
30165
|
'animals_and_pet_supplies',
|
|
@@ -30343,6 +30503,7 @@ export const afterpayCaptureUpserted = T['io.flow.internal.v0.models.afterpay_ca
|
|
|
30343
30503
|
export const afterpayRefund = T['io.flow.internal.v0.models.afterpay_refund'];
|
|
30344
30504
|
export const afterpayRefundDeleted = T['io.flow.internal.v0.models.afterpay_refund_deleted'];
|
|
30345
30505
|
export const afterpayRefundUpserted = T['io.flow.internal.v0.models.afterpay_refund_upserted'];
|
|
30506
|
+
export const aftershipWebhook = T['io.flow.internal.v0.models.aftership_webhook'];
|
|
30346
30507
|
export const aldoItem = T['io.flow.internal.v0.models.aldo_item'];
|
|
30347
30508
|
export const aldoItemForm = T['io.flow.internal.v0.models.aldo_item_form'];
|
|
30348
30509
|
export const aldoItemType = T['io.flow.internal.v0.enums.aldo_item_type'];
|
|
@@ -30355,6 +30516,9 @@ export const allItemsExport = T['io.flow.internal.v0.models.all_items_export'];
|
|
|
30355
30516
|
export const allOrganizationsMembership = T['io.flow.internal.v0.models.all_organizations_membership'];
|
|
30356
30517
|
export const allocationItemReference = T['io.flow.internal.v0.models.allocation_item_reference'];
|
|
30357
30518
|
export const allowedLabels = T['io.flow.internal.v0.models.allowed_labels'];
|
|
30519
|
+
export const anshItem = T['io.flow.internal.v0.models.ansh_item'];
|
|
30520
|
+
export const anshItemForm = T['io.flow.internal.v0.models.ansh_item_form'];
|
|
30521
|
+
export const anshItemType = T['io.flow.internal.v0.enums.ansh_item_type'];
|
|
30358
30522
|
export const anyDangerousGoods = T['io.flow.internal.v0.enums.any_dangerous_goods'];
|
|
30359
30523
|
export const apiCallReferenceId = T['io.flow.internal.v0.enums.api_call_reference_id'];
|
|
30360
30524
|
export const apmContent = T['io.flow.internal.v0.models.apm_content'];
|
|
@@ -30753,7 +30917,6 @@ export const deminimisAdjustmentType = T['io.flow.internal.v0.enums.deminimis_ad
|
|
|
30753
30917
|
export const destinationError = T['io.flow.internal.v0.models.destination_error'];
|
|
30754
30918
|
export const dhl = T['io.flow.internal.v0.models.dhl'];
|
|
30755
30919
|
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
30920
|
export const dict = T['io.flow.internal.v0.models.dict'];
|
|
30758
30921
|
export const dimensionEstimateOpsInput = T['io.flow.internal.v0.models.dimension_estimate_ops_input'];
|
|
30759
30922
|
export const discount = T['io.flow.internal.v0.models.discount'];
|
|
@@ -30897,6 +31060,9 @@ export const feedUpserted = T['io.flow.internal.v0.models.feed_upserted'];
|
|
|
30897
31060
|
export const feedsExport = T['io.flow.internal.v0.models.feeds_export'];
|
|
30898
31061
|
export const fees = T['io.flow.internal.v0.models.fees'];
|
|
30899
31062
|
export const feesSource = T['io.flow.internal.v0.enums.fees_source'];
|
|
31063
|
+
export const finalEstimate = T['io.flow.internal.v0.models.final_estimate'];
|
|
31064
|
+
export const finalEstimateDeleted = T['io.flow.internal.v0.models.final_estimate_deleted'];
|
|
31065
|
+
export const finalEstimateUpserted = T['io.flow.internal.v0.models.final_estimate_upserted'];
|
|
30900
31066
|
export const financeBankAccount = T['io.flow.internal.v0.models.finance_bank_account'];
|
|
30901
31067
|
export const financeBankAccountOwner = T['io.flow.internal.v0.models.finance_bank_account_owner'];
|
|
30902
31068
|
export const financeBankPayment = T['io.flow.internal.v0.models.finance_bank_payment'];
|
|
@@ -30913,6 +31079,7 @@ export const fiservAuthenticationForm = T['io.flow.internal.v0.models.fiserv_aut
|
|
|
30913
31079
|
export const fiservMerchant = T['io.flow.internal.v0.models.fiserv_merchant'];
|
|
30914
31080
|
export const fiservMerchantModificationForm = T['io.flow.internal.v0.models.fiserv_merchant_modification_form'];
|
|
30915
31081
|
export const fiservMerchantPutForm = T['io.flow.internal.v0.models.fiserv_merchant_put_form'];
|
|
31082
|
+
export const flexeWebhook = T['io.flow.internal.v0.models.flexe_webhook'];
|
|
30916
31083
|
export const flowAccount = T['io.flow.internal.v0.models.flow_account'];
|
|
30917
31084
|
export const flowApp = T['io.flow.internal.v0.enums.flow_app'];
|
|
30918
31085
|
export const flowBillingStatement = T['io.flow.internal.v0.models.flow_billing_statement'];
|
|
@@ -31001,6 +31168,7 @@ export const fxRevenueRecognitionOrder = T['io.flow.internal.v0.models.fx_revenu
|
|
|
31001
31168
|
export const fxRevenueRecognitionOrganization = T['io.flow.internal.v0.models.fx_revenue_recognition_organization'];
|
|
31002
31169
|
export const fxRevenueRecognitionRate = T['io.flow.internal.v0.models.fx_revenue_recognition_rate'];
|
|
31003
31170
|
export const fxRevenueRecognitionSource = T['io.flow.internal.v0.models.fx_revenue_recognition_source'];
|
|
31171
|
+
export const geRevenueShareTransaction = T['io.flow.internal.v0.models.ge_revenue_share_transaction'];
|
|
31004
31172
|
export const generateLoad = T['io.flow.internal.v0.unions.generate_load'];
|
|
31005
31173
|
export const generateLoadMultipleOrgs = T['io.flow.internal.v0.models.generate_load_multiple_orgs'];
|
|
31006
31174
|
export const generateLoadSingleOrg = T['io.flow.internal.v0.models.generate_load_single_org'];
|
|
@@ -31129,6 +31297,7 @@ export const labelCreationJobSummary = T['io.flow.internal.v0.models.label_creat
|
|
|
31129
31297
|
export const labelCreationRequestForm = T['io.flow.internal.v0.models.label_creation_request_form'];
|
|
31130
31298
|
export const labelCreationStatus = T['io.flow.internal.v0.enums.label_creation_status'];
|
|
31131
31299
|
export const labelDestination = T['io.flow.internal.v0.models.label_destination'];
|
|
31300
|
+
export const labelEventSource = T['io.flow.internal.v0.enums.label_event_source'];
|
|
31132
31301
|
export const labelGenerationSettings = T['io.flow.internal.v0.models.label_generation_settings'];
|
|
31133
31302
|
export const labelGenerationSettingsDeleted = T['io.flow.internal.v0.models.label_generation_settings_deleted'];
|
|
31134
31303
|
export const labelGenerationSettingsForm = T['io.flow.internal.v0.models.label_generation_settings_form'];
|
|
@@ -31357,6 +31526,7 @@ export const orderDetail = T['io.flow.internal.v0.models.order_detail'];
|
|
|
31357
31526
|
export const orderEditSummary = T['io.flow.internal.v0.models.order_edit_summary'];
|
|
31358
31527
|
export const orderFulfillmentDeleted = T['io.flow.internal.v0.models.order_fulfillment_deleted'];
|
|
31359
31528
|
export const orderFulfillmentUpserted = T['io.flow.internal.v0.models.order_fulfillment_upserted'];
|
|
31529
|
+
export const orderFxTransaction = T['io.flow.internal.v0.models.order_fx_transaction'];
|
|
31360
31530
|
export const orderLifecycleEvent = T['io.flow.internal.v0.enums.order_lifecycle_event'];
|
|
31361
31531
|
export const orderNote = T['io.flow.internal.v0.models.order_note'];
|
|
31362
31532
|
export const orderNoteForm = T['io.flow.internal.v0.models.order_note_form'];
|
|
@@ -31746,10 +31916,16 @@ export const restrictionProductRequestForm = T['io.flow.internal.v0.models.restr
|
|
|
31746
31916
|
export const restrictionProductSummary = T['io.flow.internal.v0.models.restriction_product_summary'];
|
|
31747
31917
|
export const restrictionRule = T['io.flow.internal.v0.models.restriction_rule'];
|
|
31748
31918
|
export const restrictionRuleDecisionForm = T['io.flow.internal.v0.models.restriction_rule_decision_form'];
|
|
31919
|
+
export const restrictionRuleDeleted = T['io.flow.internal.v0.models.restriction_rule_deleted'];
|
|
31920
|
+
export const restrictionRuleEffect = T['io.flow.internal.v0.models.restriction_rule_effect'];
|
|
31921
|
+
export const restrictionRuleEffectDeleted = T['io.flow.internal.v0.models.restriction_rule_effect_deleted'];
|
|
31922
|
+
export const restrictionRuleEffectForm = T['io.flow.internal.v0.models.restriction_rule_effect_form'];
|
|
31923
|
+
export const restrictionRuleEffectUpserted = T['io.flow.internal.v0.models.restriction_rule_effect_upserted'];
|
|
31749
31924
|
export const restrictionRuleForm = T['io.flow.internal.v0.models.restriction_rule_form'];
|
|
31750
31925
|
export const restrictionRuleMetadata = T['io.flow.internal.v0.models.restriction_rule_metadata'];
|
|
31751
31926
|
export const restrictionRuleOverride = T['io.flow.internal.v0.models.restriction_rule_override'];
|
|
31752
31927
|
export const restrictionRuleSummary = T['io.flow.internal.v0.models.restriction_rule_summary'];
|
|
31928
|
+
export const restrictionRuleUpserted = T['io.flow.internal.v0.models.restriction_rule_upserted'];
|
|
31753
31929
|
export const restrictionStatus = T['io.flow.internal.v0.enums.restriction_status'];
|
|
31754
31930
|
export const restrictionStatusMetadata = T['io.flow.internal.v0.models.restriction_status_metadata'];
|
|
31755
31931
|
export const restrictionsDailyops = T['io.flow.internal.v0.models.restrictions_dailyops'];
|
|
@@ -31803,6 +31979,7 @@ export const sessionRollout = T['io.flow.internal.v0.models.session_rollout'];
|
|
|
31803
31979
|
export const sessionRolloutForm = T['io.flow.internal.v0.models.session_rollout_form'];
|
|
31804
31980
|
export const setupBlockPutForm = T['io.flow.internal.v0.models.setup_block_put_form'];
|
|
31805
31981
|
export const sfExpress = T['io.flow.internal.v0.models.sf_express'];
|
|
31982
|
+
export const shawnRoundtableWorkshopRate = T['io.flow.internal.v0.models.shawn_roundtable_workshop_rate'];
|
|
31806
31983
|
export const shippedItemValue = T['io.flow.internal.v0.models.shipped_item_value'];
|
|
31807
31984
|
export const shippingLane = T['io.flow.internal.v0.models.shipping_lane'];
|
|
31808
31985
|
export const shippingMethodReference = T['io.flow.internal.v0.models.shipping_method_reference'];
|
|
@@ -31830,6 +32007,15 @@ export const shopifyIncotermConfiguration = T['io.flow.internal.v0.enums.shopify
|
|
|
31830
32007
|
export const shopifyIncotermIncludes = T['io.flow.internal.v0.models.shopify_incoterm_includes'];
|
|
31831
32008
|
export const shopifyIncotermSummaryErrorData = T['io.flow.internal.v0.models.shopify_incoterm_summary_error_data'];
|
|
31832
32009
|
export const shopifyIncotermSummaryErrorPublished = T['io.flow.internal.v0.models.shopify_incoterm_summary_error_published'];
|
|
32010
|
+
export const shopifyInventoryItemCreateDeleted = T['io.flow.internal.v0.models.shopify_inventory_item_create_deleted'];
|
|
32011
|
+
export const shopifyInventoryItemCreateUpserted = T['io.flow.internal.v0.models.shopify_inventory_item_create_upserted'];
|
|
32012
|
+
export const shopifyInventoryItemCreateWebhookEvent = T['io.flow.internal.v0.models.shopify_inventory_item_create_webhook_event'];
|
|
32013
|
+
export const shopifyInventoryItemDeleteDeleted = T['io.flow.internal.v0.models.shopify_inventory_item_delete_deleted'];
|
|
32014
|
+
export const shopifyInventoryItemDeleteUpserted = T['io.flow.internal.v0.models.shopify_inventory_item_delete_upserted'];
|
|
32015
|
+
export const shopifyInventoryItemDeleteWebhookEvent = T['io.flow.internal.v0.models.shopify_inventory_item_delete_webhook_event'];
|
|
32016
|
+
export const shopifyInventoryItemUpdateDeleted = T['io.flow.internal.v0.models.shopify_inventory_item_update_deleted'];
|
|
32017
|
+
export const shopifyInventoryItemUpdateUpserted = T['io.flow.internal.v0.models.shopify_inventory_item_update_upserted'];
|
|
32018
|
+
export const shopifyInventoryItemUpdateWebhookEvent = T['io.flow.internal.v0.models.shopify_inventory_item_update_webhook_event'];
|
|
31833
32019
|
export const shopifyMarketsBestSellingProduct = T['io.flow.internal.v0.models.shopify_markets_best_selling_product'];
|
|
31834
32020
|
export const shopifyMarketsBestSellingProductDeleted = T['io.flow.internal.v0.models.shopify_markets_best_selling_product_deleted'];
|
|
31835
32021
|
export const shopifyMarketsBestSellingProductUpserted = T['io.flow.internal.v0.models.shopify_markets_best_selling_product_upserted'];
|
|
@@ -31897,6 +32083,15 @@ export const shopifyProductBundle = T['io.flow.internal.v0.models.shopify_produc
|
|
|
31897
32083
|
export const shopifyProductBundleDeleted = T['io.flow.internal.v0.models.shopify_product_bundle_deleted'];
|
|
31898
32084
|
export const shopifyProductBundleUnderlying = T['io.flow.internal.v0.models.shopify_product_bundle_underlying'];
|
|
31899
32085
|
export const shopifyProductBundleUpserted = T['io.flow.internal.v0.models.shopify_product_bundle_upserted'];
|
|
32086
|
+
export const shopifyProductCreateDeleted = T['io.flow.internal.v0.models.shopify_product_create_deleted'];
|
|
32087
|
+
export const shopifyProductCreateUpserted = T['io.flow.internal.v0.models.shopify_product_create_upserted'];
|
|
32088
|
+
export const shopifyProductCreateWebhookEvent = T['io.flow.internal.v0.models.shopify_product_create_webhook_event'];
|
|
32089
|
+
export const shopifyProductDeleteDeleted = T['io.flow.internal.v0.models.shopify_product_delete_deleted'];
|
|
32090
|
+
export const shopifyProductDeleteUpserted = T['io.flow.internal.v0.models.shopify_product_delete_upserted'];
|
|
32091
|
+
export const shopifyProductDeleteWebhookEvent = T['io.flow.internal.v0.models.shopify_product_delete_webhook_event'];
|
|
32092
|
+
export const shopifyProductUpdateDeleted = T['io.flow.internal.v0.models.shopify_product_update_deleted'];
|
|
32093
|
+
export const shopifyProductUpdateUpserted = T['io.flow.internal.v0.models.shopify_product_update_upserted'];
|
|
32094
|
+
export const shopifyProductUpdateWebhookEvent = T['io.flow.internal.v0.models.shopify_product_update_webhook_event'];
|
|
31900
32095
|
export const shopifyProductWrapper = T['io.flow.internal.v0.models.shopify_product_wrapper'];
|
|
31901
32096
|
export const shopifyPromoForm = T['io.flow.internal.v0.models.shopify_promo_form'];
|
|
31902
32097
|
export const shopifyPromotion = T['io.flow.internal.v0.models.shopify_promotion'];
|
|
@@ -31925,6 +32120,7 @@ export const shopifyShopDeleted = T['io.flow.internal.v0.models.shopify_shop_del
|
|
|
31925
32120
|
export const shopifyShopStatistics = T['io.flow.internal.v0.models.shopify_shop_statistics'];
|
|
31926
32121
|
export const shopifyShopUpserted = T['io.flow.internal.v0.models.shopify_shop_upserted'];
|
|
31927
32122
|
export const shopifyStoreDetail = T['io.flow.internal.v0.models.shopify_store_detail'];
|
|
32123
|
+
export const shopifyStripeEvent = T['io.flow.internal.v0.models.shopify_stripe_event'];
|
|
31928
32124
|
export const shopifyWebhook = T['io.flow.internal.v0.models.shopify_webhook'];
|
|
31929
32125
|
export const shopifyWebhookEvent = T['io.flow.internal.v0.models.shopify_webhook_event'];
|
|
31930
32126
|
export const shopifyWebhookForm = T['io.flow.internal.v0.models.shopify_webhook_form'];
|
|
@@ -32005,7 +32201,6 @@ export const subscriptionTransaction = T['io.flow.internal.v0.models.subscriptio
|
|
|
32005
32201
|
export const suggestionAction = T['io.flow.internal.v0.enums.suggestion_action'];
|
|
32006
32202
|
export const supportedLabels = T['io.flow.internal.v0.models.supported_labels'];
|
|
32007
32203
|
export const tariffCodeDuty = T['io.flow.internal.v0.models.tariff_code_duty'];
|
|
32008
|
-
export const tariffCodesExport = T['io.flow.internal.v0.models.tariff_codes_export'];
|
|
32009
32204
|
export const tariffEligibility = T['io.flow.internal.v0.models.tariff_eligibility'];
|
|
32010
32205
|
export const tariffEligibilityData = T['io.flow.internal.v0.unions.tariff_eligibility_data'];
|
|
32011
32206
|
export const tariffEligibilityForm = T['io.flow.internal.v0.unions.tariff_eligibility_form'];
|
|
@@ -32027,6 +32222,7 @@ export const taxCalculationErrorCode = T['io.flow.internal.v0.enums.tax_calculat
|
|
|
32027
32222
|
export const taxCalculationForm = T['io.flow.internal.v0.models.tax_calculation_form'];
|
|
32028
32223
|
export const taxCalculationLineItem = T['io.flow.internal.v0.models.tax_calculation_line_item'];
|
|
32029
32224
|
export const taxCalculationLineItemForm = T['io.flow.internal.v0.models.tax_calculation_line_item_form'];
|
|
32225
|
+
export const taxDutyDeltaTransaction = T['io.flow.internal.v0.models.tax_duty_delta_transaction'];
|
|
32030
32226
|
export const taxParty = T['io.flow.internal.v0.enums.tax_party'];
|
|
32031
32227
|
export const taxRemittanceTransaction = T['io.flow.internal.v0.models.tax_remittance_transaction'];
|
|
32032
32228
|
export const taxRemittanceTransactionDeleted = T['io.flow.internal.v0.models.tax_remittance_transaction_deleted'];
|
|
@@ -32082,10 +32278,12 @@ export const trackingProcessingErrorUpserted = T['io.flow.internal.v0.models.tra
|
|
|
32082
32278
|
export const trackingProcessingFailureClassification = T['io.flow.internal.v0.enums.tracking_processing_failure_classification'];
|
|
32083
32279
|
export const trackingRequest = T['io.flow.internal.v0.models.tracking_request'];
|
|
32084
32280
|
export const trackingResponse = T['io.flow.internal.v0.models.tracking_response'];
|
|
32281
|
+
export const trackingResync = T['io.flow.internal.v0.models.tracking_resync'];
|
|
32085
32282
|
export const trackingSubscription = T['io.flow.internal.v0.models.tracking_subscription'];
|
|
32086
32283
|
export const trackingSubscriptionDeleted = T['io.flow.internal.v0.models.tracking_subscription_deleted'];
|
|
32087
32284
|
export const trackingSubscriptionUpserted = T['io.flow.internal.v0.models.tracking_subscription_upserted'];
|
|
32088
32285
|
export const trackingUpserted = T['io.flow.internal.v0.models.tracking_upserted'];
|
|
32286
|
+
export const trackingWebhook = T['io.flow.internal.v0.models.tracking_webhook'];
|
|
32089
32287
|
export const transaction = T['io.flow.internal.v0.unions.transaction'];
|
|
32090
32288
|
export const transactionAdjustment = T['io.flow.internal.v0.models.transaction_adjustment'];
|
|
32091
32289
|
export const transactionAdjustmentForm = T['io.flow.internal.v0.models.transaction_adjustment_form'];
|