@flowio/api-prop-types 10.16.96 → 10.16.98
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.d.ts +73 -47
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +73 -47
- package/src/api.js +145 -118
package/src/api.js
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import PropTypes from 'prop-types';
|
|
2
2
|
const T = {};
|
|
3
|
-
T['io.flow.sellability.v0.enums.sellability_error_code'] = PropTypes.oneOf(['insufficient_details', 'ineligible_category']);
|
|
3
|
+
T['io.flow.sellability.v0.enums.sellability_error_code'] = PropTypes.oneOf(['insufficient_details', 'ineligible_category', 'wait_for_high_fidelity']);
|
|
4
4
|
|
|
5
5
|
T['io.flow.sellability.v0.models.sellability_error'] = PropTypes.exact({
|
|
6
6
|
code: T['io.flow.sellability.v0.enums.sellability_error_code'].isRequired,
|
|
7
7
|
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
8
8
|
});
|
|
9
9
|
|
|
10
|
+
T['io.flow.sellability.v0.enums.sellability_request_status'] = PropTypes.oneOf(['commit']);
|
|
11
|
+
|
|
10
12
|
T['io.flow.sellability.v0.models.product_sellability_price'] = PropTypes.exact({
|
|
11
13
|
currency: PropTypes.string.isRequired,
|
|
12
14
|
amount: PropTypes.number.isRequired,
|
|
@@ -601,6 +603,7 @@ T['io.flow.organization.v0.models.country_picker'] = PropTypes.exact({
|
|
|
601
603
|
source: T['io.flow.organization.v0.enums.country_picker_source'].isRequired,
|
|
602
604
|
});
|
|
603
605
|
|
|
606
|
+
T['io.flow.tech.onboarding.playground.v0.enums.prateek_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
604
607
|
T['io.flow.apple.pay.v0.enums.apple_pay_line_item_type'] = PropTypes.oneOf(['final', 'pending']);
|
|
605
608
|
|
|
606
609
|
T['io.flow.fulfillment.v0.models.service_unknown'] = PropTypes.exact({
|
|
@@ -2790,11 +2793,11 @@ T['io.flow.product.v0.models.product_taxonomy_category'] = PropTypes.exact({
|
|
|
2790
2793
|
T['io.flow.sellability.v0.models.product_sellability_form'] = PropTypes.exact({
|
|
2791
2794
|
shop_id: PropTypes.string.isRequired,
|
|
2792
2795
|
product_id: PropTypes.string,
|
|
2793
|
-
request_id: PropTypes.string.isRequired,
|
|
2794
2796
|
name: PropTypes.string.isRequired,
|
|
2795
2797
|
price: T['io.flow.sellability.v0.models.product_sellability_price'].isRequired,
|
|
2796
2798
|
description: PropTypes.string.isRequired,
|
|
2797
2799
|
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'].isRequired,
|
|
2800
|
+
status: T['io.flow.sellability.v0.enums.sellability_request_status'],
|
|
2798
2801
|
});
|
|
2799
2802
|
|
|
2800
2803
|
T['io.flow.product.v0.models.product'] = PropTypes.exact({
|
|
@@ -5078,6 +5081,12 @@ T['io.flow.inventory.v0.models.reservation'] = PropTypes.exact({
|
|
|
5078
5081
|
reserved_until: PropTypes.string,
|
|
5079
5082
|
});
|
|
5080
5083
|
|
|
5084
|
+
T['io.flow.v0.models.dispute_reference'] = PropTypes.exact({
|
|
5085
|
+
discriminator: PropTypes.oneOf(['dispute_reference']).isRequired,
|
|
5086
|
+
id: PropTypes.string.isRequired,
|
|
5087
|
+
key: PropTypes.string.isRequired,
|
|
5088
|
+
});
|
|
5089
|
+
|
|
5081
5090
|
T['io.flow.v0.models.avalara_tax_setting'] = PropTypes.exact({
|
|
5082
5091
|
discriminator: PropTypes.oneOf(['avalara_tax_setting']).isRequired,
|
|
5083
5092
|
company_code: PropTypes.string.isRequired,
|
|
@@ -5556,6 +5565,14 @@ T['io.flow.v0.models.rate_deleted'] = PropTypes.exact({
|
|
|
5556
5565
|
rate_id: PropTypes.string.isRequired,
|
|
5557
5566
|
});
|
|
5558
5567
|
|
|
5568
|
+
T['io.flow.v0.models.channel_shopify_order_state_deleted'] = PropTypes.exact({
|
|
5569
|
+
discriminator: PropTypes.oneOf(['channel_shopify_order_state_deleted']).isRequired,
|
|
5570
|
+
event_id: PropTypes.string.isRequired,
|
|
5571
|
+
timestamp: PropTypes.string.isRequired,
|
|
5572
|
+
organization: PropTypes.string.isRequired,
|
|
5573
|
+
id: PropTypes.string.isRequired,
|
|
5574
|
+
});
|
|
5575
|
+
|
|
5559
5576
|
T['io.flow.v0.models.channel_organization_deleted'] = PropTypes.exact({
|
|
5560
5577
|
discriminator: PropTypes.oneOf(['channel_organization_deleted']).isRequired,
|
|
5561
5578
|
event_id: PropTypes.string.isRequired,
|
|
@@ -5577,14 +5594,6 @@ T['io.flow.v0.models.channel_deleted'] = PropTypes.exact({
|
|
|
5577
5594
|
id: PropTypes.string.isRequired,
|
|
5578
5595
|
});
|
|
5579
5596
|
|
|
5580
|
-
T['io.flow.v0.models.channel_shopify_order_state_deleted'] = PropTypes.exact({
|
|
5581
|
-
discriminator: PropTypes.oneOf(['channel_shopify_order_state_deleted']).isRequired,
|
|
5582
|
-
event_id: PropTypes.string.isRequired,
|
|
5583
|
-
timestamp: PropTypes.string.isRequired,
|
|
5584
|
-
organization: PropTypes.string.isRequired,
|
|
5585
|
-
id: PropTypes.string.isRequired,
|
|
5586
|
-
});
|
|
5587
|
-
|
|
5588
5597
|
T['io.flow.v0.models.catalog_statistics_deleted'] = PropTypes.exact({
|
|
5589
5598
|
discriminator: PropTypes.oneOf(['catalog_statistics_deleted']).isRequired,
|
|
5590
5599
|
event_id: PropTypes.string.isRequired,
|
|
@@ -5731,6 +5740,13 @@ T['io.flow.v0.models.aldo_item_deleted'] = PropTypes.exact({
|
|
|
5731
5740
|
id: PropTypes.string.isRequired,
|
|
5732
5741
|
});
|
|
5733
5742
|
|
|
5743
|
+
T['io.flow.v0.models.niall_item_deleted'] = PropTypes.exact({
|
|
5744
|
+
discriminator: PropTypes.oneOf(['niall_item_deleted']).isRequired,
|
|
5745
|
+
event_id: PropTypes.string.isRequired,
|
|
5746
|
+
timestamp: PropTypes.string.isRequired,
|
|
5747
|
+
id: PropTypes.string.isRequired,
|
|
5748
|
+
});
|
|
5749
|
+
|
|
5734
5750
|
T['io.flow.v0.models.generate_load'] = PropTypes.exact({
|
|
5735
5751
|
discriminator: PropTypes.oneOf(['generate_load']).isRequired,
|
|
5736
5752
|
event_id: PropTypes.string.isRequired,
|
|
@@ -5846,13 +5862,6 @@ T['io.flow.v0.models.user_form'] = PropTypes.exact({
|
|
|
5846
5862
|
});
|
|
5847
5863
|
|
|
5848
5864
|
T['io.flow.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
|
|
5849
|
-
|
|
5850
|
-
T['io.flow.v0.models.dispute_reference'] = PropTypes.exact({
|
|
5851
|
-
discriminator: PropTypes.oneOf(['dispute_reference']).isRequired,
|
|
5852
|
-
id: PropTypes.string.isRequired,
|
|
5853
|
-
key: PropTypes.string.isRequired,
|
|
5854
|
-
});
|
|
5855
|
-
|
|
5856
5865
|
T['io.flow.v0.enums.transfer_status'] = PropTypes.oneOf(['succeeded', 'canceled']);
|
|
5857
5866
|
|
|
5858
5867
|
T['io.flow.v0.enums.transfer_type'] = PropTypes.oneOf([
|
|
@@ -7099,31 +7108,6 @@ T['io.flow.v0.models.session_visitor'] = PropTypes.exact({
|
|
|
7099
7108
|
id: PropTypes.string.isRequired,
|
|
7100
7109
|
});
|
|
7101
7110
|
|
|
7102
|
-
T['io.flow.v0.models.organization_configuration_reference'] = PropTypes.exact({
|
|
7103
|
-
id: PropTypes.string.isRequired,
|
|
7104
|
-
});
|
|
7105
|
-
|
|
7106
|
-
T['io.flow.v0.models.organization_default_configurations'] = PropTypes.exact({
|
|
7107
|
-
id: PropTypes.string.isRequired,
|
|
7108
|
-
checkout_configuration: T['io.flow.v0.models.organization_configuration_reference'].isRequired,
|
|
7109
|
-
});
|
|
7110
|
-
|
|
7111
|
-
T['io.flow.v0.models.organization_default_configurations_upserted'] = PropTypes.exact({
|
|
7112
|
-
discriminator: PropTypes.oneOf(['organization_default_configurations_upserted']).isRequired,
|
|
7113
|
-
event_id: PropTypes.string.isRequired,
|
|
7114
|
-
timestamp: PropTypes.string.isRequired,
|
|
7115
|
-
organization: PropTypes.string.isRequired,
|
|
7116
|
-
default_configurations: T['io.flow.v0.models.organization_default_configurations'].isRequired,
|
|
7117
|
-
});
|
|
7118
|
-
|
|
7119
|
-
T['io.flow.v0.models.organization_default_configurations_deleted'] = PropTypes.exact({
|
|
7120
|
-
discriminator: PropTypes.oneOf(['organization_default_configurations_deleted']).isRequired,
|
|
7121
|
-
event_id: PropTypes.string.isRequired,
|
|
7122
|
-
timestamp: PropTypes.string.isRequired,
|
|
7123
|
-
organization: PropTypes.string.isRequired,
|
|
7124
|
-
default_configurations: T['io.flow.v0.models.organization_default_configurations'].isRequired,
|
|
7125
|
-
});
|
|
7126
|
-
|
|
7127
7111
|
T['io.flow.v0.enums.organization_type'] = PropTypes.oneOf(['standalone', 'channel']);
|
|
7128
7112
|
|
|
7129
7113
|
T['io.flow.v0.models.order_service_change_request_data'] = PropTypes.exact({
|
|
@@ -7457,6 +7441,8 @@ T['io.flow.v0.models.onboarding_merchant_pickup_window'] = PropTypes.exact({
|
|
|
7457
7441
|
to: T['io.flow.v0.models.onboarding_merchant_time'].isRequired,
|
|
7458
7442
|
});
|
|
7459
7443
|
|
|
7444
|
+
T['io.flow.tech.onboarding.playground.v0.enums.niall_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
7445
|
+
|
|
7460
7446
|
T['io.flow.v0.models.monthly_average_volume'] = PropTypes.exact({
|
|
7461
7447
|
amount: PropTypes.number,
|
|
7462
7448
|
currency: PropTypes.string,
|
|
@@ -8051,6 +8037,7 @@ T['io.flow.v0.models.ge_input_attributes'] = PropTypes.exact({
|
|
|
8051
8037
|
ge_hs6_code: PropTypes.string.isRequired,
|
|
8052
8038
|
product_id: PropTypes.string.isRequired,
|
|
8053
8039
|
ge_organization_name: PropTypes.string.isRequired,
|
|
8040
|
+
shipping_origin_country: PropTypes.string,
|
|
8054
8041
|
});
|
|
8055
8042
|
|
|
8056
8043
|
T['io.flow.v0.models.ge_input_price'] = PropTypes.exact({
|
|
@@ -8076,46 +8063,7 @@ T['io.flow.v0.models.ge_catalog_item_input'] = PropTypes.exact({
|
|
|
8076
8063
|
});
|
|
8077
8064
|
|
|
8078
8065
|
T['io.flow.v0.enums.ge_catalog_item_ingestion_response'] = PropTypes.oneOf(['success', 'failure']);
|
|
8079
|
-
T['io.flow.v0.enums.ge_environment'] = PropTypes.oneOf(['production', 'sandbox']);
|
|
8080
8066
|
T['io.flow.v0.enums.ge_event_type'] = PropTypes.oneOf(['restriction_result', 'ingestion_result']);
|
|
8081
|
-
|
|
8082
|
-
T['io.flow.v0.models.ge_product_restriction_result_upsert'] = PropTypes.exact({
|
|
8083
|
-
discriminator: PropTypes.oneOf(['ge_product_restriction_result_upsert']).isRequired,
|
|
8084
|
-
organization: PropTypes.string.isRequired,
|
|
8085
|
-
event_id: PropTypes.string.isRequired,
|
|
8086
|
-
event_type: T['io.flow.v0.enums.ge_event_type'].isRequired,
|
|
8087
|
-
environment: T['io.flow.v0.enums.ge_environment'].isRequired,
|
|
8088
|
-
timestamp: PropTypes.string.isRequired,
|
|
8089
|
-
ge_product_restriction_result: T['io.flow.v0.models.product_restriction_result'].isRequired,
|
|
8090
|
-
});
|
|
8091
|
-
|
|
8092
|
-
T['io.flow.v0.models.ge_product_restriction_result_delete'] = PropTypes.exact({
|
|
8093
|
-
discriminator: PropTypes.oneOf(['ge_product_restriction_result_delete']).isRequired,
|
|
8094
|
-
organization: PropTypes.string.isRequired,
|
|
8095
|
-
event_id: PropTypes.string.isRequired,
|
|
8096
|
-
event_type: T['io.flow.v0.enums.ge_event_type'].isRequired,
|
|
8097
|
-
environment: T['io.flow.v0.enums.ge_environment'].isRequired,
|
|
8098
|
-
timestamp: PropTypes.string.isRequired,
|
|
8099
|
-
id: PropTypes.string.isRequired,
|
|
8100
|
-
});
|
|
8101
|
-
|
|
8102
|
-
T['io.flow.v0.models.ge_catalog_item_ingestion_result'] = PropTypes.exact({
|
|
8103
|
-
discriminator: PropTypes.oneOf(['ge_catalog_item_ingestion_result']).isRequired,
|
|
8104
|
-
event_id: PropTypes.string.isRequired,
|
|
8105
|
-
event_type: T['io.flow.v0.enums.ge_event_type'].isRequired,
|
|
8106
|
-
environment: T['io.flow.v0.enums.ge_environment'].isRequired,
|
|
8107
|
-
timestamp: PropTypes.string.isRequired,
|
|
8108
|
-
source: PropTypes.string.isRequired,
|
|
8109
|
-
response: T['io.flow.v0.enums.ge_catalog_item_ingestion_response'].isRequired,
|
|
8110
|
-
message: PropTypes.string.isRequired,
|
|
8111
|
-
});
|
|
8112
|
-
|
|
8113
|
-
T['io.flow.v0.unions.ge_restriction_event'] = PropTypes.oneOfType([
|
|
8114
|
-
T['io.flow.v0.models.ge_product_restriction_result_upsert'],
|
|
8115
|
-
T['io.flow.v0.models.ge_product_restriction_result_delete'],
|
|
8116
|
-
T['io.flow.v0.models.ge_catalog_item_ingestion_result'],
|
|
8117
|
-
]);
|
|
8118
|
-
|
|
8119
8067
|
T['io.flow.v0.enums.fulfillment_item_quantity_status'] = PropTypes.oneOf(['new', 'shipped', 'cancelled']);
|
|
8120
8068
|
|
|
8121
8069
|
T['io.flow.v0.models.fulfillment_line_cancel_form'] = PropTypes.exact({
|
|
@@ -10066,6 +10014,43 @@ T['io.flow.v0.models.organization_authorization'] = PropTypes.exact({
|
|
|
10066
10014
|
environment: T['io.flow.v0.enums.environment'].isRequired,
|
|
10067
10015
|
});
|
|
10068
10016
|
|
|
10017
|
+
T['io.flow.v0.models.ge_product_restriction_result_upsert'] = PropTypes.exact({
|
|
10018
|
+
discriminator: PropTypes.oneOf(['ge_product_restriction_result_upsert']).isRequired,
|
|
10019
|
+
organization: PropTypes.string.isRequired,
|
|
10020
|
+
event_id: PropTypes.string.isRequired,
|
|
10021
|
+
event_type: T['io.flow.v0.enums.ge_event_type'].isRequired,
|
|
10022
|
+
environment: T['io.flow.v0.enums.environment'].isRequired,
|
|
10023
|
+
timestamp: PropTypes.string.isRequired,
|
|
10024
|
+
ge_product_restriction_result: T['io.flow.v0.models.product_restriction_result'].isRequired,
|
|
10025
|
+
});
|
|
10026
|
+
|
|
10027
|
+
T['io.flow.v0.models.ge_product_restriction_result_delete'] = PropTypes.exact({
|
|
10028
|
+
discriminator: PropTypes.oneOf(['ge_product_restriction_result_delete']).isRequired,
|
|
10029
|
+
organization: PropTypes.string.isRequired,
|
|
10030
|
+
event_id: PropTypes.string.isRequired,
|
|
10031
|
+
event_type: T['io.flow.v0.enums.ge_event_type'].isRequired,
|
|
10032
|
+
environment: T['io.flow.v0.enums.environment'].isRequired,
|
|
10033
|
+
timestamp: PropTypes.string.isRequired,
|
|
10034
|
+
id: PropTypes.string.isRequired,
|
|
10035
|
+
});
|
|
10036
|
+
|
|
10037
|
+
T['io.flow.v0.models.ge_catalog_item_ingestion_result'] = PropTypes.exact({
|
|
10038
|
+
discriminator: PropTypes.oneOf(['ge_catalog_item_ingestion_result']).isRequired,
|
|
10039
|
+
event_id: PropTypes.string.isRequired,
|
|
10040
|
+
event_type: T['io.flow.v0.enums.ge_event_type'].isRequired,
|
|
10041
|
+
environment: T['io.flow.v0.enums.environment'].isRequired,
|
|
10042
|
+
timestamp: PropTypes.string.isRequired,
|
|
10043
|
+
source: PropTypes.string.isRequired,
|
|
10044
|
+
response: T['io.flow.v0.enums.ge_catalog_item_ingestion_response'].isRequired,
|
|
10045
|
+
message: PropTypes.string.isRequired,
|
|
10046
|
+
});
|
|
10047
|
+
|
|
10048
|
+
T['io.flow.v0.unions.ge_restriction_event'] = PropTypes.oneOfType([
|
|
10049
|
+
T['io.flow.v0.models.ge_product_restriction_result_upsert'],
|
|
10050
|
+
T['io.flow.v0.models.ge_product_restriction_result_delete'],
|
|
10051
|
+
T['io.flow.v0.models.ge_catalog_item_ingestion_result'],
|
|
10052
|
+
]);
|
|
10053
|
+
|
|
10069
10054
|
T['io.flow.v0.models.channel'] = PropTypes.exact({
|
|
10070
10055
|
id: PropTypes.string.isRequired,
|
|
10071
10056
|
name: PropTypes.string.isRequired,
|
|
@@ -10758,6 +10743,7 @@ T['io.flow.v0.enums.direction'] = PropTypes.oneOf(['outbound', 'return']);
|
|
|
10758
10743
|
T['io.flow.v0.models.ratecard_form'] = PropTypes.exact({
|
|
10759
10744
|
direction: T['io.flow.v0.enums.direction'].isRequired,
|
|
10760
10745
|
effective_at: PropTypes.string.isRequired,
|
|
10746
|
+
published_at: PropTypes.string,
|
|
10761
10747
|
origination_zones: PropTypes.arrayOf(T['io.flow.v0.models.zone']).isRequired,
|
|
10762
10748
|
service: PropTypes.string.isRequired,
|
|
10763
10749
|
number: PropTypes.string,
|
|
@@ -12728,6 +12714,31 @@ T['io.flow.order.price.v0.models.order_price_detail_component'] = PropTypes.exac
|
|
|
12728
12714
|
name: PropTypes.string,
|
|
12729
12715
|
});
|
|
12730
12716
|
|
|
12717
|
+
T['io.flow.tech.onboarding.playground.v0.models.prateek_item_form'] = PropTypes.exact({
|
|
12718
|
+
number: PropTypes.string.isRequired,
|
|
12719
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
12720
|
+
description: PropTypes.string,
|
|
12721
|
+
type: T['io.flow.tech.onboarding.playground.v0.enums.prateek_item_type'].isRequired,
|
|
12722
|
+
added_on: PropTypes.string.isRequired,
|
|
12723
|
+
});
|
|
12724
|
+
|
|
12725
|
+
T['io.flow.tech.onboarding.playground.v0.models.prateek_item'] = PropTypes.exact({
|
|
12726
|
+
id: PropTypes.string.isRequired,
|
|
12727
|
+
number: PropTypes.string.isRequired,
|
|
12728
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
12729
|
+
description: PropTypes.string,
|
|
12730
|
+
type: T['io.flow.tech.onboarding.playground.v0.enums.prateek_item_type'].isRequired,
|
|
12731
|
+
added_on: PropTypes.string.isRequired,
|
|
12732
|
+
});
|
|
12733
|
+
|
|
12734
|
+
T['io.flow.tech.onboarding.playground.v0.models.niall_item_form'] = PropTypes.exact({
|
|
12735
|
+
number: PropTypes.string.isRequired,
|
|
12736
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
12737
|
+
description: PropTypes.string,
|
|
12738
|
+
type: T['io.flow.tech.onboarding.playground.v0.enums.niall_item_type'].isRequired,
|
|
12739
|
+
added_on: PropTypes.string.isRequired,
|
|
12740
|
+
});
|
|
12741
|
+
|
|
12731
12742
|
T['io.flow.tech.onboarding.playground.v0.models.ansh_item_form'] = PropTypes.exact({
|
|
12732
12743
|
number: PropTypes.string.isRequired,
|
|
12733
12744
|
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -13060,6 +13071,22 @@ T['io.flow.catalog.v0.models.item_version'] = PropTypes.exact({
|
|
|
13060
13071
|
item: T['io.flow.catalog.v0.models.item'].isRequired,
|
|
13061
13072
|
});
|
|
13062
13073
|
|
|
13074
|
+
T['io.flow.tech.onboarding.playground.v0.models.niall_item'] = PropTypes.exact({
|
|
13075
|
+
id: PropTypes.string.isRequired,
|
|
13076
|
+
number: PropTypes.string.isRequired,
|
|
13077
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
13078
|
+
description: PropTypes.string,
|
|
13079
|
+
type: T['io.flow.tech.onboarding.playground.v0.enums.niall_item_type'].isRequired,
|
|
13080
|
+
added_on: PropTypes.string.isRequired,
|
|
13081
|
+
});
|
|
13082
|
+
|
|
13083
|
+
T['io.flow.v0.models.niall_item_upserted'] = PropTypes.exact({
|
|
13084
|
+
discriminator: PropTypes.oneOf(['niall_item_upserted']).isRequired,
|
|
13085
|
+
event_id: PropTypes.string.isRequired,
|
|
13086
|
+
timestamp: PropTypes.string.isRequired,
|
|
13087
|
+
item: T['io.flow.tech.onboarding.playground.v0.models.niall_item'].isRequired,
|
|
13088
|
+
});
|
|
13089
|
+
|
|
13063
13090
|
T['io.flow.tech.onboarding.playground.v0.models.ansh_item'] = PropTypes.exact({
|
|
13064
13091
|
id: PropTypes.string.isRequired,
|
|
13065
13092
|
number: PropTypes.string.isRequired,
|
|
@@ -13509,6 +13536,24 @@ T['io.flow.v0.models.money'] = PropTypes.exact({
|
|
|
13509
13536
|
currency: PropTypes.string.isRequired,
|
|
13510
13537
|
});
|
|
13511
13538
|
|
|
13539
|
+
T['io.flow.v0.models.transfer'] = PropTypes.exact({
|
|
13540
|
+
id: PropTypes.string.isRequired,
|
|
13541
|
+
type: T['io.flow.v0.enums.transfer_type'].isRequired,
|
|
13542
|
+
base: T['io.flow.v0.models.money'].isRequired,
|
|
13543
|
+
status: T['io.flow.v0.enums.transfer_status'].isRequired,
|
|
13544
|
+
created_at: PropTypes.string.isRequired,
|
|
13545
|
+
authorization: T['io.flow.v0.models.authorization_reference'].isRequired,
|
|
13546
|
+
transferred_at: PropTypes.string.isRequired,
|
|
13547
|
+
});
|
|
13548
|
+
|
|
13549
|
+
T['io.flow.v0.models.transfer_upserted'] = PropTypes.exact({
|
|
13550
|
+
discriminator: PropTypes.oneOf(['transfer_upserted']).isRequired,
|
|
13551
|
+
event_id: PropTypes.string.isRequired,
|
|
13552
|
+
timestamp: PropTypes.string.isRequired,
|
|
13553
|
+
organization: PropTypes.string.isRequired,
|
|
13554
|
+
transfer: T['io.flow.v0.models.transfer'].isRequired,
|
|
13555
|
+
});
|
|
13556
|
+
|
|
13512
13557
|
T['io.flow.v0.models.tracking_label_form'] = PropTypes.exact({
|
|
13513
13558
|
tracking_id: PropTypes.string.isRequired,
|
|
13514
13559
|
status: T['io.flow.v0.enums.tracking_status'].isRequired,
|
|
@@ -13695,25 +13740,6 @@ T['io.flow.v0.models.exchanged_money'] = PropTypes.exact({
|
|
|
13695
13740
|
money: T['io.flow.v0.models.money'].isRequired,
|
|
13696
13741
|
});
|
|
13697
13742
|
|
|
13698
|
-
T['io.flow.v0.models.transfer'] = PropTypes.exact({
|
|
13699
|
-
id: PropTypes.string.isRequired,
|
|
13700
|
-
type: T['io.flow.v0.enums.transfer_type'].isRequired,
|
|
13701
|
-
money: T['io.flow.v0.models.money'].isRequired,
|
|
13702
|
-
transferred_money: T['io.flow.v0.models.exchanged_money'].isRequired,
|
|
13703
|
-
status: T['io.flow.v0.enums.transfer_status'].isRequired,
|
|
13704
|
-
created_at: PropTypes.string.isRequired,
|
|
13705
|
-
reference: T['io.flow.v0.unions.transfer_reference'].isRequired,
|
|
13706
|
-
transferred_at: PropTypes.string.isRequired,
|
|
13707
|
-
});
|
|
13708
|
-
|
|
13709
|
-
T['io.flow.v0.models.transfer_upserted'] = PropTypes.exact({
|
|
13710
|
-
discriminator: PropTypes.oneOf(['transfer_upserted']).isRequired,
|
|
13711
|
-
event_id: PropTypes.string.isRequired,
|
|
13712
|
-
timestamp: PropTypes.string.isRequired,
|
|
13713
|
-
organization: PropTypes.string.isRequired,
|
|
13714
|
-
transfer: T['io.flow.v0.models.transfer'].isRequired,
|
|
13715
|
-
});
|
|
13716
|
-
|
|
13717
13743
|
T['io.flow.v0.models.emergency_situation_surcharge_ratecard_fee'] = PropTypes.exact({
|
|
13718
13744
|
discriminator: PropTypes.oneOf(['emergency_situation_surcharge_ratecard_fee']).isRequired,
|
|
13719
13745
|
amount: T['io.flow.v0.models.money'].isRequired,
|
|
@@ -14219,6 +14245,13 @@ T['io.flow.v0.models.ratecard_lane_import_form'] = PropTypes.exact({
|
|
|
14219
14245
|
rates: PropTypes.arrayOf(T['io.flow.v0.models.ratecard_rate_form']).isRequired,
|
|
14220
14246
|
});
|
|
14221
14247
|
|
|
14248
|
+
T['io.flow.v0.models.overweight_piece_surcharge_service_fee'] = PropTypes.exact({
|
|
14249
|
+
discriminator: PropTypes.oneOf(['overweight_piece_surcharge_service_fee']).isRequired,
|
|
14250
|
+
weight_threshold: PropTypes.number,
|
|
14251
|
+
weight_unit: T['io.flow.v0.enums.unit_of_measurement'],
|
|
14252
|
+
amount: T['io.flow.v0.models.money'].isRequired,
|
|
14253
|
+
});
|
|
14254
|
+
|
|
14222
14255
|
T['io.flow.v0.models.oversize_piece_surcharge_service_fee'] = PropTypes.exact({
|
|
14223
14256
|
discriminator: PropTypes.oneOf(['oversize_piece_surcharge_service_fee']).isRequired,
|
|
14224
14257
|
dimensional_threshold: PropTypes.number,
|
|
@@ -14685,6 +14718,7 @@ T['io.flow.v0.unions.service_fee'] = PropTypes.oneOfType([
|
|
|
14685
14718
|
T['io.flow.v0.models.peak_surcharge_by_weight_service_fee'],
|
|
14686
14719
|
T['io.flow.v0.models.duties_taxes_paid_surcharge_service_fee'],
|
|
14687
14720
|
T['io.flow.v0.models.oversize_piece_surcharge_service_fee'],
|
|
14721
|
+
T['io.flow.v0.models.overweight_piece_surcharge_service_fee'],
|
|
14688
14722
|
T['io.flow.v0.models.remote_area_by_weight_service_fee'],
|
|
14689
14723
|
T['io.flow.v0.models.additional_handling_service_fee'],
|
|
14690
14724
|
T['io.flow.v0.models.large_package_service_fee'],
|
|
@@ -16583,6 +16617,8 @@ T['io.flow.v0.models.label_deleted_v2'] = PropTypes.exact({
|
|
|
16583
16617
|
T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
|
|
16584
16618
|
T['io.flow.v0.models.test_upserted'],
|
|
16585
16619
|
T['io.flow.v0.models.generate_load'],
|
|
16620
|
+
T['io.flow.v0.models.niall_item_upserted'],
|
|
16621
|
+
T['io.flow.v0.models.niall_item_deleted'],
|
|
16586
16622
|
T['io.flow.v0.models.aldo_item_upserted'],
|
|
16587
16623
|
T['io.flow.v0.models.aldo_item_deleted'],
|
|
16588
16624
|
T['io.flow.v0.models.ansh_item_upserted'],
|
|
@@ -16620,14 +16656,14 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
16620
16656
|
T['io.flow.v0.models.item_inserted'],
|
|
16621
16657
|
T['io.flow.v0.models.item_updated'],
|
|
16622
16658
|
T['io.flow.v0.models.item_deleted'],
|
|
16623
|
-
T['io.flow.v0.models.channel_shopify_order_state_upserted'],
|
|
16624
|
-
T['io.flow.v0.models.channel_shopify_order_state_deleted'],
|
|
16625
16659
|
T['io.flow.v0.models.channel_upserted'],
|
|
16626
16660
|
T['io.flow.v0.models.channel_deleted'],
|
|
16627
16661
|
T['io.flow.v0.models.channel_currency_upserted'],
|
|
16628
16662
|
T['io.flow.v0.models.channel_currency_deleted'],
|
|
16629
16663
|
T['io.flow.v0.models.channel_organization_upserted'],
|
|
16630
16664
|
T['io.flow.v0.models.channel_organization_deleted'],
|
|
16665
|
+
T['io.flow.v0.models.channel_shopify_order_state_upserted'],
|
|
16666
|
+
T['io.flow.v0.models.channel_shopify_order_state_deleted'],
|
|
16631
16667
|
T['io.flow.v0.models.b2b_invoice_upserted'],
|
|
16632
16668
|
T['io.flow.v0.models.b2b_invoice_deleted'],
|
|
16633
16669
|
T['io.flow.v0.models.b2b_credit_memo_upserted'],
|
|
@@ -16730,8 +16766,6 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
16730
16766
|
T['io.flow.v0.models.organization_deleted'],
|
|
16731
16767
|
T['io.flow.v0.models.organization_upserted_v2'],
|
|
16732
16768
|
T['io.flow.v0.models.organization_deleted_v2'],
|
|
16733
|
-
T['io.flow.v0.models.organization_default_configurations_upserted'],
|
|
16734
|
-
T['io.flow.v0.models.organization_default_configurations_deleted'],
|
|
16735
16769
|
T['io.flow.v0.models.ecommerce_platform_upserted'],
|
|
16736
16770
|
T['io.flow.v0.models.ecommerce_platform_deleted'],
|
|
16737
16771
|
T['io.flow.v0.models.organization_onboarding_state_upserted'],
|
|
@@ -16975,6 +17009,8 @@ T['io.flow.v0.enums.capability'] = PropTypes.oneOf(['crossdock']);
|
|
|
16975
17009
|
T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
|
|
16976
17010
|
'test_upserted',
|
|
16977
17011
|
'generate_load',
|
|
17012
|
+
'niall_item_upserted',
|
|
17013
|
+
'niall_item_deleted',
|
|
16978
17014
|
'aldo_item_upserted',
|
|
16979
17015
|
'aldo_item_deleted',
|
|
16980
17016
|
'ansh_item_upserted',
|
|
@@ -17012,14 +17048,14 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
17012
17048
|
'item_inserted',
|
|
17013
17049
|
'item_updated',
|
|
17014
17050
|
'item_deleted',
|
|
17015
|
-
'channel_shopify_order_state_upserted',
|
|
17016
|
-
'channel_shopify_order_state_deleted',
|
|
17017
17051
|
'channel_upserted',
|
|
17018
17052
|
'channel_deleted',
|
|
17019
17053
|
'channel_currency_upserted',
|
|
17020
17054
|
'channel_currency_deleted',
|
|
17021
17055
|
'channel_organization_upserted',
|
|
17022
17056
|
'channel_organization_deleted',
|
|
17057
|
+
'channel_shopify_order_state_upserted',
|
|
17058
|
+
'channel_shopify_order_state_deleted',
|
|
17023
17059
|
'b2b_invoice_upserted',
|
|
17024
17060
|
'b2b_invoice_deleted',
|
|
17025
17061
|
'b2b_credit_memo_upserted',
|
|
@@ -17122,8 +17158,6 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
17122
17158
|
'organization_deleted',
|
|
17123
17159
|
'organization_upserted_v2',
|
|
17124
17160
|
'organization_deleted_v2',
|
|
17125
|
-
'organization_default_configurations_upserted',
|
|
17126
|
-
'organization_default_configurations_deleted',
|
|
17127
17161
|
'ecommerce_platform_upserted',
|
|
17128
17162
|
'ecommerce_platform_deleted',
|
|
17129
17163
|
'organization_onboarding_state_upserted',
|
|
@@ -17701,10 +17735,6 @@ T['io.flow.v0.models.organization_bank_account'] = PropTypes.exact({
|
|
|
17701
17735
|
last4: PropTypes.string.isRequired,
|
|
17702
17736
|
});
|
|
17703
17737
|
|
|
17704
|
-
T['io.flow.v0.models.organization_default_configurations_form'] = PropTypes.exact({
|
|
17705
|
-
id: PropTypes.string.isRequired,
|
|
17706
|
-
});
|
|
17707
|
-
|
|
17708
17738
|
T['io.flow.v0.models.organization_token_form_v2'] = PropTypes.exact({
|
|
17709
17739
|
organization_id: PropTypes.string.isRequired,
|
|
17710
17740
|
description: PropTypes.string,
|
|
@@ -19026,7 +19056,6 @@ export const gatewayAuthenticationDataForm = T['io.flow.v0.unions.gateway_authen
|
|
|
19026
19056
|
export const geCatalogItemIngestionResponse = T['io.flow.v0.enums.ge_catalog_item_ingestion_response'];
|
|
19027
19057
|
export const geCatalogItemIngestionResult = T['io.flow.v0.models.ge_catalog_item_ingestion_result'];
|
|
19028
19058
|
export const geCatalogItemInput = T['io.flow.v0.models.ge_catalog_item_input'];
|
|
19029
|
-
export const geEnvironment = T['io.flow.v0.enums.ge_environment'];
|
|
19030
19059
|
export const geEventType = T['io.flow.v0.enums.ge_event_type'];
|
|
19031
19060
|
export const geInputAttributes = T['io.flow.v0.models.ge_input_attributes'];
|
|
19032
19061
|
export const geInputPrice = T['io.flow.v0.models.ge_input_price'];
|
|
@@ -19271,6 +19300,8 @@ export const monthlyAverage = T['io.flow.v0.models.monthly_average'];
|
|
|
19271
19300
|
export const monthlyAverageVolume = T['io.flow.v0.models.monthly_average_volume'];
|
|
19272
19301
|
export const name = T['io.flow.v0.models.name'];
|
|
19273
19302
|
export const nameForm = T['io.flow.v0.models.name_form'];
|
|
19303
|
+
export const niallItemDeleted = T['io.flow.v0.models.niall_item_deleted'];
|
|
19304
|
+
export const niallItemUpserted = T['io.flow.v0.models.niall_item_upserted'];
|
|
19274
19305
|
export const notificationDeletedV2 = T['io.flow.v0.models.notification_deleted_v2'];
|
|
19275
19306
|
export const notificationUpsertedV2 = T['io.flow.v0.models.notification_upserted_v2'];
|
|
19276
19307
|
export const numberRange = T['io.flow.v0.models.number_range'];
|
|
@@ -19391,12 +19422,7 @@ export const organization = T['io.flow.v0.models.organization'];
|
|
|
19391
19422
|
export const organizationAuthorization = T['io.flow.v0.models.organization_authorization'];
|
|
19392
19423
|
export const organizationAuthorizationForm = T['io.flow.v0.models.organization_authorization_form'];
|
|
19393
19424
|
export const organizationBankAccount = T['io.flow.v0.models.organization_bank_account'];
|
|
19394
|
-
export const organizationConfigurationReference = T['io.flow.v0.models.organization_configuration_reference'];
|
|
19395
19425
|
export const organizationDefaultBankAccount = T['io.flow.v0.models.organization_default_bank_account'];
|
|
19396
|
-
export const organizationDefaultConfigurations = T['io.flow.v0.models.organization_default_configurations'];
|
|
19397
|
-
export const organizationDefaultConfigurationsDeleted = T['io.flow.v0.models.organization_default_configurations_deleted'];
|
|
19398
|
-
export const organizationDefaultConfigurationsForm = T['io.flow.v0.models.organization_default_configurations_form'];
|
|
19399
|
-
export const organizationDefaultConfigurationsUpserted = T['io.flow.v0.models.organization_default_configurations_upserted'];
|
|
19400
19426
|
export const organizationDefaults = T['io.flow.v0.models.organization_defaults'];
|
|
19401
19427
|
export const organizationDeleted = T['io.flow.v0.models.organization_deleted'];
|
|
19402
19428
|
export const organizationDeletedV2 = T['io.flow.v0.models.organization_deleted_v2'];
|
|
@@ -19436,6 +19462,7 @@ export const originalPrices = T['io.flow.v0.models.original_prices'];
|
|
|
19436
19462
|
export const outboundCartonFee = T['io.flow.v0.models.outbound_carton_fee'];
|
|
19437
19463
|
export const oversizePieceSurchargeRatecardFee = T['io.flow.v0.models.oversize_piece_surcharge_ratecard_fee'];
|
|
19438
19464
|
export const oversizePieceSurchargeServiceFee = T['io.flow.v0.models.oversize_piece_surcharge_service_fee'];
|
|
19465
|
+
export const overweightPieceSurchargeServiceFee = T['io.flow.v0.models.overweight_piece_surcharge_service_fee'];
|
|
19439
19466
|
export const packageDimensions = T['io.flow.v0.models.package_dimensions'];
|
|
19440
19467
|
export const packageDimensionsForm = T['io.flow.v0.models.package_dimensions_form'];
|
|
19441
19468
|
export const packageDimensionsSource = T['io.flow.v0.enums.package_dimensions_source'];
|