@flowio/api-prop-types 10.16.97 → 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 +63 -46
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +63 -46
- package/src/api.js +135 -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,
|
|
@@ -12729,6 +12714,31 @@ T['io.flow.order.price.v0.models.order_price_detail_component'] = PropTypes.exac
|
|
|
12729
12714
|
name: PropTypes.string,
|
|
12730
12715
|
});
|
|
12731
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
|
+
|
|
12732
12742
|
T['io.flow.tech.onboarding.playground.v0.models.ansh_item_form'] = PropTypes.exact({
|
|
12733
12743
|
number: PropTypes.string.isRequired,
|
|
12734
12744
|
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -13061,6 +13071,22 @@ T['io.flow.catalog.v0.models.item_version'] = PropTypes.exact({
|
|
|
13061
13071
|
item: T['io.flow.catalog.v0.models.item'].isRequired,
|
|
13062
13072
|
});
|
|
13063
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
|
+
|
|
13064
13090
|
T['io.flow.tech.onboarding.playground.v0.models.ansh_item'] = PropTypes.exact({
|
|
13065
13091
|
id: PropTypes.string.isRequired,
|
|
13066
13092
|
number: PropTypes.string.isRequired,
|
|
@@ -13510,6 +13536,24 @@ T['io.flow.v0.models.money'] = PropTypes.exact({
|
|
|
13510
13536
|
currency: PropTypes.string.isRequired,
|
|
13511
13537
|
});
|
|
13512
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
|
+
|
|
13513
13557
|
T['io.flow.v0.models.tracking_label_form'] = PropTypes.exact({
|
|
13514
13558
|
tracking_id: PropTypes.string.isRequired,
|
|
13515
13559
|
status: T['io.flow.v0.enums.tracking_status'].isRequired,
|
|
@@ -13696,25 +13740,6 @@ T['io.flow.v0.models.exchanged_money'] = PropTypes.exact({
|
|
|
13696
13740
|
money: T['io.flow.v0.models.money'].isRequired,
|
|
13697
13741
|
});
|
|
13698
13742
|
|
|
13699
|
-
T['io.flow.v0.models.transfer'] = PropTypes.exact({
|
|
13700
|
-
id: PropTypes.string.isRequired,
|
|
13701
|
-
type: T['io.flow.v0.enums.transfer_type'].isRequired,
|
|
13702
|
-
money: T['io.flow.v0.models.money'].isRequired,
|
|
13703
|
-
transferred_money: T['io.flow.v0.models.exchanged_money'].isRequired,
|
|
13704
|
-
status: T['io.flow.v0.enums.transfer_status'].isRequired,
|
|
13705
|
-
created_at: PropTypes.string.isRequired,
|
|
13706
|
-
reference: T['io.flow.v0.unions.transfer_reference'].isRequired,
|
|
13707
|
-
transferred_at: PropTypes.string.isRequired,
|
|
13708
|
-
});
|
|
13709
|
-
|
|
13710
|
-
T['io.flow.v0.models.transfer_upserted'] = PropTypes.exact({
|
|
13711
|
-
discriminator: PropTypes.oneOf(['transfer_upserted']).isRequired,
|
|
13712
|
-
event_id: PropTypes.string.isRequired,
|
|
13713
|
-
timestamp: PropTypes.string.isRequired,
|
|
13714
|
-
organization: PropTypes.string.isRequired,
|
|
13715
|
-
transfer: T['io.flow.v0.models.transfer'].isRequired,
|
|
13716
|
-
});
|
|
13717
|
-
|
|
13718
13743
|
T['io.flow.v0.models.emergency_situation_surcharge_ratecard_fee'] = PropTypes.exact({
|
|
13719
13744
|
discriminator: PropTypes.oneOf(['emergency_situation_surcharge_ratecard_fee']).isRequired,
|
|
13720
13745
|
amount: T['io.flow.v0.models.money'].isRequired,
|
|
@@ -16592,6 +16617,8 @@ T['io.flow.v0.models.label_deleted_v2'] = PropTypes.exact({
|
|
|
16592
16617
|
T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
|
|
16593
16618
|
T['io.flow.v0.models.test_upserted'],
|
|
16594
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'],
|
|
16595
16622
|
T['io.flow.v0.models.aldo_item_upserted'],
|
|
16596
16623
|
T['io.flow.v0.models.aldo_item_deleted'],
|
|
16597
16624
|
T['io.flow.v0.models.ansh_item_upserted'],
|
|
@@ -16629,14 +16656,14 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
16629
16656
|
T['io.flow.v0.models.item_inserted'],
|
|
16630
16657
|
T['io.flow.v0.models.item_updated'],
|
|
16631
16658
|
T['io.flow.v0.models.item_deleted'],
|
|
16632
|
-
T['io.flow.v0.models.channel_shopify_order_state_upserted'],
|
|
16633
|
-
T['io.flow.v0.models.channel_shopify_order_state_deleted'],
|
|
16634
16659
|
T['io.flow.v0.models.channel_upserted'],
|
|
16635
16660
|
T['io.flow.v0.models.channel_deleted'],
|
|
16636
16661
|
T['io.flow.v0.models.channel_currency_upserted'],
|
|
16637
16662
|
T['io.flow.v0.models.channel_currency_deleted'],
|
|
16638
16663
|
T['io.flow.v0.models.channel_organization_upserted'],
|
|
16639
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'],
|
|
16640
16667
|
T['io.flow.v0.models.b2b_invoice_upserted'],
|
|
16641
16668
|
T['io.flow.v0.models.b2b_invoice_deleted'],
|
|
16642
16669
|
T['io.flow.v0.models.b2b_credit_memo_upserted'],
|
|
@@ -16739,8 +16766,6 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
16739
16766
|
T['io.flow.v0.models.organization_deleted'],
|
|
16740
16767
|
T['io.flow.v0.models.organization_upserted_v2'],
|
|
16741
16768
|
T['io.flow.v0.models.organization_deleted_v2'],
|
|
16742
|
-
T['io.flow.v0.models.organization_default_configurations_upserted'],
|
|
16743
|
-
T['io.flow.v0.models.organization_default_configurations_deleted'],
|
|
16744
16769
|
T['io.flow.v0.models.ecommerce_platform_upserted'],
|
|
16745
16770
|
T['io.flow.v0.models.ecommerce_platform_deleted'],
|
|
16746
16771
|
T['io.flow.v0.models.organization_onboarding_state_upserted'],
|
|
@@ -16984,6 +17009,8 @@ T['io.flow.v0.enums.capability'] = PropTypes.oneOf(['crossdock']);
|
|
|
16984
17009
|
T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
|
|
16985
17010
|
'test_upserted',
|
|
16986
17011
|
'generate_load',
|
|
17012
|
+
'niall_item_upserted',
|
|
17013
|
+
'niall_item_deleted',
|
|
16987
17014
|
'aldo_item_upserted',
|
|
16988
17015
|
'aldo_item_deleted',
|
|
16989
17016
|
'ansh_item_upserted',
|
|
@@ -17021,14 +17048,14 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
17021
17048
|
'item_inserted',
|
|
17022
17049
|
'item_updated',
|
|
17023
17050
|
'item_deleted',
|
|
17024
|
-
'channel_shopify_order_state_upserted',
|
|
17025
|
-
'channel_shopify_order_state_deleted',
|
|
17026
17051
|
'channel_upserted',
|
|
17027
17052
|
'channel_deleted',
|
|
17028
17053
|
'channel_currency_upserted',
|
|
17029
17054
|
'channel_currency_deleted',
|
|
17030
17055
|
'channel_organization_upserted',
|
|
17031
17056
|
'channel_organization_deleted',
|
|
17057
|
+
'channel_shopify_order_state_upserted',
|
|
17058
|
+
'channel_shopify_order_state_deleted',
|
|
17032
17059
|
'b2b_invoice_upserted',
|
|
17033
17060
|
'b2b_invoice_deleted',
|
|
17034
17061
|
'b2b_credit_memo_upserted',
|
|
@@ -17131,8 +17158,6 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
17131
17158
|
'organization_deleted',
|
|
17132
17159
|
'organization_upserted_v2',
|
|
17133
17160
|
'organization_deleted_v2',
|
|
17134
|
-
'organization_default_configurations_upserted',
|
|
17135
|
-
'organization_default_configurations_deleted',
|
|
17136
17161
|
'ecommerce_platform_upserted',
|
|
17137
17162
|
'ecommerce_platform_deleted',
|
|
17138
17163
|
'organization_onboarding_state_upserted',
|
|
@@ -17710,10 +17735,6 @@ T['io.flow.v0.models.organization_bank_account'] = PropTypes.exact({
|
|
|
17710
17735
|
last4: PropTypes.string.isRequired,
|
|
17711
17736
|
});
|
|
17712
17737
|
|
|
17713
|
-
T['io.flow.v0.models.organization_default_configurations_form'] = PropTypes.exact({
|
|
17714
|
-
id: PropTypes.string.isRequired,
|
|
17715
|
-
});
|
|
17716
|
-
|
|
17717
17738
|
T['io.flow.v0.models.organization_token_form_v2'] = PropTypes.exact({
|
|
17718
17739
|
organization_id: PropTypes.string.isRequired,
|
|
17719
17740
|
description: PropTypes.string,
|
|
@@ -19035,7 +19056,6 @@ export const gatewayAuthenticationDataForm = T['io.flow.v0.unions.gateway_authen
|
|
|
19035
19056
|
export const geCatalogItemIngestionResponse = T['io.flow.v0.enums.ge_catalog_item_ingestion_response'];
|
|
19036
19057
|
export const geCatalogItemIngestionResult = T['io.flow.v0.models.ge_catalog_item_ingestion_result'];
|
|
19037
19058
|
export const geCatalogItemInput = T['io.flow.v0.models.ge_catalog_item_input'];
|
|
19038
|
-
export const geEnvironment = T['io.flow.v0.enums.ge_environment'];
|
|
19039
19059
|
export const geEventType = T['io.flow.v0.enums.ge_event_type'];
|
|
19040
19060
|
export const geInputAttributes = T['io.flow.v0.models.ge_input_attributes'];
|
|
19041
19061
|
export const geInputPrice = T['io.flow.v0.models.ge_input_price'];
|
|
@@ -19280,6 +19300,8 @@ export const monthlyAverage = T['io.flow.v0.models.monthly_average'];
|
|
|
19280
19300
|
export const monthlyAverageVolume = T['io.flow.v0.models.monthly_average_volume'];
|
|
19281
19301
|
export const name = T['io.flow.v0.models.name'];
|
|
19282
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'];
|
|
19283
19305
|
export const notificationDeletedV2 = T['io.flow.v0.models.notification_deleted_v2'];
|
|
19284
19306
|
export const notificationUpsertedV2 = T['io.flow.v0.models.notification_upserted_v2'];
|
|
19285
19307
|
export const numberRange = T['io.flow.v0.models.number_range'];
|
|
@@ -19400,12 +19422,7 @@ export const organization = T['io.flow.v0.models.organization'];
|
|
|
19400
19422
|
export const organizationAuthorization = T['io.flow.v0.models.organization_authorization'];
|
|
19401
19423
|
export const organizationAuthorizationForm = T['io.flow.v0.models.organization_authorization_form'];
|
|
19402
19424
|
export const organizationBankAccount = T['io.flow.v0.models.organization_bank_account'];
|
|
19403
|
-
export const organizationConfigurationReference = T['io.flow.v0.models.organization_configuration_reference'];
|
|
19404
19425
|
export const organizationDefaultBankAccount = T['io.flow.v0.models.organization_default_bank_account'];
|
|
19405
|
-
export const organizationDefaultConfigurations = T['io.flow.v0.models.organization_default_configurations'];
|
|
19406
|
-
export const organizationDefaultConfigurationsDeleted = T['io.flow.v0.models.organization_default_configurations_deleted'];
|
|
19407
|
-
export const organizationDefaultConfigurationsForm = T['io.flow.v0.models.organization_default_configurations_form'];
|
|
19408
|
-
export const organizationDefaultConfigurationsUpserted = T['io.flow.v0.models.organization_default_configurations_upserted'];
|
|
19409
19426
|
export const organizationDefaults = T['io.flow.v0.models.organization_defaults'];
|
|
19410
19427
|
export const organizationDeleted = T['io.flow.v0.models.organization_deleted'];
|
|
19411
19428
|
export const organizationDeletedV2 = T['io.flow.v0.models.organization_deleted_v2'];
|