@flowio/api-prop-types 10.16.98 → 10.16.100
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 +70 -211
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +70 -211
- package/src/api.js +199 -337
package/src/api.js
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
import PropTypes from 'prop-types';
|
|
2
2
|
const T = {};
|
|
3
|
-
|
|
3
|
+
|
|
4
|
+
T['io.flow.sellability.v0.enums.sellability_error_code'] = PropTypes.oneOf([
|
|
5
|
+
'insufficient_details',
|
|
6
|
+
'ineligible_category',
|
|
7
|
+
'wait_for_high_fidelity',
|
|
8
|
+
'external_service_unavailable',
|
|
9
|
+
]);
|
|
4
10
|
|
|
5
11
|
T['io.flow.sellability.v0.models.sellability_error'] = PropTypes.exact({
|
|
12
|
+
discriminator: PropTypes.oneOf(['sellability_error']).isRequired,
|
|
6
13
|
code: T['io.flow.sellability.v0.enums.sellability_error_code'].isRequired,
|
|
7
14
|
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
8
15
|
});
|
|
@@ -434,6 +441,8 @@ T['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason']
|
|
|
434
441
|
'order_missing',
|
|
435
442
|
]);
|
|
436
443
|
|
|
444
|
+
T['io.flow.channel.internal.v0.enums.order_payment_source_type'] = PropTypes.oneOf(['globale', 'third_party']);
|
|
445
|
+
|
|
437
446
|
T['io.flow.channel.internal.v0.models.order_edit_summary'] = PropTypes.exact({
|
|
438
447
|
edited_at: PropTypes.string.isRequired,
|
|
439
448
|
});
|
|
@@ -1077,6 +1086,17 @@ T['io.flow.channel.internal.v0.models.channel_currency_form'] = PropTypes.exact(
|
|
|
1077
1086
|
capabilities: PropTypes.arrayOf(T['io.flow.channel.v0.enums.channel_currency_capability']).isRequired,
|
|
1078
1087
|
});
|
|
1079
1088
|
|
|
1089
|
+
T['io.flow.common.v0.models.channel_reference'] = PropTypes.exact({
|
|
1090
|
+
id: PropTypes.string.isRequired,
|
|
1091
|
+
});
|
|
1092
|
+
|
|
1093
|
+
T['io.flow.channel.v0.models.channel_currency'] = PropTypes.exact({
|
|
1094
|
+
id: PropTypes.string.isRequired,
|
|
1095
|
+
currency: PropTypes.string.isRequired,
|
|
1096
|
+
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
1097
|
+
capabilities: PropTypes.arrayOf(T['io.flow.channel.v0.enums.channel_currency_capability']).isRequired,
|
|
1098
|
+
});
|
|
1099
|
+
|
|
1080
1100
|
T['io.flow.price.v0.enums.pricing_levy_setting'] = PropTypes.oneOf(['included', 'displayed', 'ignored']);
|
|
1081
1101
|
|
|
1082
1102
|
T['io.flow.price.v0.enums.price_detail_component_key'] = PropTypes.oneOf([
|
|
@@ -1201,21 +1221,6 @@ T['io.flow.error.v0.models.generic_error'] = PropTypes.exact({
|
|
|
1201
1221
|
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
1202
1222
|
});
|
|
1203
1223
|
|
|
1204
|
-
T['io.flow.token.v0.models.token_partner_reference'] = PropTypes.exact({
|
|
1205
|
-
id: PropTypes.string.isRequired,
|
|
1206
|
-
});
|
|
1207
|
-
|
|
1208
|
-
T['io.flow.common.v0.models.channel_reference'] = PropTypes.exact({
|
|
1209
|
-
id: PropTypes.string.isRequired,
|
|
1210
|
-
});
|
|
1211
|
-
|
|
1212
|
-
T['io.flow.channel.v0.models.channel_currency'] = PropTypes.exact({
|
|
1213
|
-
id: PropTypes.string.isRequired,
|
|
1214
|
-
currency: PropTypes.string.isRequired,
|
|
1215
|
-
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
1216
|
-
capabilities: PropTypes.arrayOf(T['io.flow.channel.v0.enums.channel_currency_capability']).isRequired,
|
|
1217
|
-
});
|
|
1218
|
-
|
|
1219
1224
|
T['io.flow.common.v0.models.repeat_monthly'] = PropTypes.exact({
|
|
1220
1225
|
discriminator: PropTypes.oneOf(['repeat_monthly']).isRequired,
|
|
1221
1226
|
interval: PropTypes.number.isRequired,
|
|
@@ -1242,24 +1247,6 @@ T['io.flow.common.v0.models.user_reference'] = PropTypes.exact({
|
|
|
1242
1247
|
id: PropTypes.string.isRequired,
|
|
1243
1248
|
});
|
|
1244
1249
|
|
|
1245
|
-
T['io.flow.token.v0.models.channel_token_reference'] = PropTypes.exact({
|
|
1246
|
-
discriminator: PropTypes.oneOf(['channel_token_reference']).isRequired,
|
|
1247
|
-
id: PropTypes.string.isRequired,
|
|
1248
|
-
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
1249
|
-
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
1250
|
-
});
|
|
1251
|
-
|
|
1252
|
-
T['io.flow.token.v0.models.channel_token'] = PropTypes.exact({
|
|
1253
|
-
discriminator: PropTypes.oneOf(['channel_token']).isRequired,
|
|
1254
|
-
id: PropTypes.string.isRequired,
|
|
1255
|
-
channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
|
|
1256
|
-
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
1257
|
-
partial: PropTypes.string.isRequired,
|
|
1258
|
-
cleartext: PropTypes.string,
|
|
1259
|
-
created_at: PropTypes.string.isRequired,
|
|
1260
|
-
description: PropTypes.string,
|
|
1261
|
-
});
|
|
1262
|
-
|
|
1263
1250
|
T['io.flow.common.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
|
|
1264
1251
|
T['io.flow.common.v0.enums.holiday_calendar'] = PropTypes.oneOf(['us_bank_holidays', 'jewish_holidays']);
|
|
1265
1252
|
T['io.flow.common.v0.enums.calendar'] = PropTypes.oneOf(['weekdays', 'everyday']);
|
|
@@ -1402,35 +1389,6 @@ T['io.flow.channel.v0.models.channel'] = PropTypes.exact({
|
|
|
1402
1389
|
organization_id_prefix: PropTypes.string,
|
|
1403
1390
|
});
|
|
1404
1391
|
|
|
1405
|
-
T['io.flow.token.v0.models.partner_token_reference'] = PropTypes.exact({
|
|
1406
|
-
discriminator: PropTypes.oneOf(['partner_token_reference']).isRequired,
|
|
1407
|
-
id: PropTypes.string.isRequired,
|
|
1408
|
-
partner: T['io.flow.token.v0.models.token_partner_reference'].isRequired,
|
|
1409
|
-
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
1410
|
-
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
1411
|
-
});
|
|
1412
|
-
|
|
1413
|
-
T['io.flow.token.v0.models.partner_token_form'] = PropTypes.exact({
|
|
1414
|
-
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
1415
|
-
description: PropTypes.string,
|
|
1416
|
-
});
|
|
1417
|
-
|
|
1418
|
-
T['io.flow.token.v0.models.partner_token'] = PropTypes.exact({
|
|
1419
|
-
discriminator: PropTypes.oneOf(['partner_token']).isRequired,
|
|
1420
|
-
id: PropTypes.string.isRequired,
|
|
1421
|
-
partner: T['io.flow.token.v0.models.token_partner_reference'].isRequired,
|
|
1422
|
-
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
1423
|
-
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
1424
|
-
partial: PropTypes.string.isRequired,
|
|
1425
|
-
created_at: PropTypes.string.isRequired,
|
|
1426
|
-
description: PropTypes.string,
|
|
1427
|
-
});
|
|
1428
|
-
|
|
1429
|
-
T['io.flow.token.v0.models.organization_token_form'] = PropTypes.exact({
|
|
1430
|
-
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
1431
|
-
description: PropTypes.string,
|
|
1432
|
-
});
|
|
1433
|
-
|
|
1434
1392
|
T['io.flow.common.v0.models.organization_summary'] = PropTypes.exact({
|
|
1435
1393
|
id: PropTypes.string.isRequired,
|
|
1436
1394
|
name: PropTypes.string.isRequired,
|
|
@@ -1458,56 +1416,6 @@ T['io.flow.channel.v0.models.channel_organization'] = PropTypes.exact({
|
|
|
1458
1416
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
1459
1417
|
});
|
|
1460
1418
|
|
|
1461
|
-
T['io.flow.token.v0.models.organization_token_v2_reference'] = PropTypes.exact({
|
|
1462
|
-
discriminator: PropTypes.oneOf(['organization_token_v2_reference']).isRequired,
|
|
1463
|
-
id: PropTypes.string.isRequired,
|
|
1464
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
1465
|
-
});
|
|
1466
|
-
|
|
1467
|
-
T['io.flow.token.v0.models.organization_token_v2'] = PropTypes.exact({
|
|
1468
|
-
discriminator: PropTypes.oneOf(['organization_token_v2']).isRequired,
|
|
1469
|
-
id: PropTypes.string.isRequired,
|
|
1470
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
1471
|
-
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
1472
|
-
partial: PropTypes.string.isRequired,
|
|
1473
|
-
cleartext: PropTypes.string,
|
|
1474
|
-
created_at: PropTypes.string.isRequired,
|
|
1475
|
-
description: PropTypes.string,
|
|
1476
|
-
});
|
|
1477
|
-
|
|
1478
|
-
T['io.flow.token.v0.models.organization_token_reference'] = PropTypes.exact({
|
|
1479
|
-
discriminator: PropTypes.oneOf(['organization_token_reference']).isRequired,
|
|
1480
|
-
id: PropTypes.string.isRequired,
|
|
1481
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
1482
|
-
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
1483
|
-
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
1484
|
-
});
|
|
1485
|
-
|
|
1486
|
-
T['io.flow.token.v0.unions.token_reference'] = PropTypes.oneOfType([
|
|
1487
|
-
T['io.flow.token.v0.models.channel_token_reference'],
|
|
1488
|
-
T['io.flow.token.v0.models.organization_token_reference'],
|
|
1489
|
-
T['io.flow.token.v0.models.organization_token_v2_reference'],
|
|
1490
|
-
T['io.flow.token.v0.models.partner_token_reference'],
|
|
1491
|
-
]);
|
|
1492
|
-
|
|
1493
|
-
T['io.flow.token.v0.models.organization_token'] = PropTypes.exact({
|
|
1494
|
-
discriminator: PropTypes.oneOf(['organization_token']).isRequired,
|
|
1495
|
-
id: PropTypes.string.isRequired,
|
|
1496
|
-
organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
|
|
1497
|
-
user: T['io.flow.common.v0.models.user_reference'].isRequired,
|
|
1498
|
-
environment: T['io.flow.common.v0.enums.environment'].isRequired,
|
|
1499
|
-
partial: PropTypes.string.isRequired,
|
|
1500
|
-
created_at: PropTypes.string.isRequired,
|
|
1501
|
-
description: PropTypes.string,
|
|
1502
|
-
});
|
|
1503
|
-
|
|
1504
|
-
T['io.flow.token.v0.unions.token'] = PropTypes.oneOfType([
|
|
1505
|
-
T['io.flow.token.v0.models.channel_token'],
|
|
1506
|
-
T['io.flow.token.v0.models.organization_token'],
|
|
1507
|
-
T['io.flow.token.v0.models.organization_token_v2'],
|
|
1508
|
-
T['io.flow.token.v0.models.partner_token'],
|
|
1509
|
-
]);
|
|
1510
|
-
|
|
1511
1419
|
T['io.flow.common.v0.models.organization'] = PropTypes.exact({
|
|
1512
1420
|
discriminator: PropTypes.oneOf(['organization']).isRequired,
|
|
1513
1421
|
id: PropTypes.string.isRequired,
|
|
@@ -2798,6 +2706,7 @@ T['io.flow.sellability.v0.models.product_sellability_form'] = PropTypes.exact({
|
|
|
2798
2706
|
description: PropTypes.string.isRequired,
|
|
2799
2707
|
taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'].isRequired,
|
|
2800
2708
|
status: T['io.flow.sellability.v0.enums.sellability_request_status'],
|
|
2709
|
+
dry_run: PropTypes.bool,
|
|
2801
2710
|
});
|
|
2802
2711
|
|
|
2803
2712
|
T['io.flow.product.v0.models.product'] = PropTypes.exact({
|
|
@@ -2830,6 +2739,76 @@ T['io.flow.shopify.external.v0.models.product_image'] = PropTypes.exact({
|
|
|
2830
2739
|
alt: PropTypes.string,
|
|
2831
2740
|
});
|
|
2832
2741
|
|
|
2742
|
+
T['io.flow.shopify.external.v0.models.price_rule_prerequisite_to_entitlement_purchase'] = PropTypes.exact({
|
|
2743
|
+
prerequisite_amount: PropTypes.string,
|
|
2744
|
+
});
|
|
2745
|
+
|
|
2746
|
+
T['io.flow.shopify.external.v0.models.price_rule_prerequisite_to_entitlement_quantity_ratio'] = PropTypes.exact({
|
|
2747
|
+
prerequisite_quantity: PropTypes.number,
|
|
2748
|
+
entitled_quantity: PropTypes.number,
|
|
2749
|
+
});
|
|
2750
|
+
|
|
2751
|
+
T['io.flow.shopify.external.v0.enums.price_rule_customer_selection'] = PropTypes.oneOf(['all', 'prerequisite']);
|
|
2752
|
+
T['io.flow.shopify.external.v0.enums.price_rule_target_selection'] = PropTypes.oneOf(['all', 'entitled']);
|
|
2753
|
+
T['io.flow.shopify.external.v0.enums.price_rule_allocation_method'] = PropTypes.oneOf(['across', 'each']);
|
|
2754
|
+
|
|
2755
|
+
T['io.flow.shopify.external.v0.models.price_rule_less_than_range'] = PropTypes.exact({
|
|
2756
|
+
less_than: PropTypes.number,
|
|
2757
|
+
less_than_or_equal_to: PropTypes.number,
|
|
2758
|
+
});
|
|
2759
|
+
|
|
2760
|
+
T['io.flow.shopify.external.v0.models.price_rule_greater_than_range'] = PropTypes.exact({
|
|
2761
|
+
greater_than: PropTypes.number,
|
|
2762
|
+
greater_than_or_equal_to: PropTypes.number,
|
|
2763
|
+
});
|
|
2764
|
+
|
|
2765
|
+
T['io.flow.shopify.external.v0.enums.price_rule_target_type'] = PropTypes.oneOf(['line_item', 'shipping_line']);
|
|
2766
|
+
T['io.flow.shopify.external.v0.enums.price_rule_value_type'] = PropTypes.oneOf(['fixed_amount', 'percentage']);
|
|
2767
|
+
|
|
2768
|
+
T['io.flow.shopify.external.v0.models.price_rule'] = PropTypes.exact({
|
|
2769
|
+
id: PropTypes.number.isRequired,
|
|
2770
|
+
value_type: T['io.flow.shopify.external.v0.enums.price_rule_value_type'].isRequired,
|
|
2771
|
+
target_type: T['io.flow.shopify.external.v0.enums.price_rule_target_type'].isRequired,
|
|
2772
|
+
value: PropTypes.number.isRequired,
|
|
2773
|
+
starts_at: PropTypes.string.isRequired,
|
|
2774
|
+
ends_at: PropTypes.string,
|
|
2775
|
+
prerequisite_subtotal_range: T['io.flow.shopify.external.v0.models.price_rule_greater_than_range'],
|
|
2776
|
+
prerequisite_shipping_price_range: T['io.flow.shopify.external.v0.models.price_rule_less_than_range'],
|
|
2777
|
+
usage_limit: PropTypes.number,
|
|
2778
|
+
entitled_product_ids: PropTypes.arrayOf(PropTypes.number).isRequired,
|
|
2779
|
+
entitled_variant_ids: PropTypes.arrayOf(PropTypes.number).isRequired,
|
|
2780
|
+
entitled_collection_ids: PropTypes.arrayOf(PropTypes.number).isRequired,
|
|
2781
|
+
entitled_country_ids: PropTypes.arrayOf(PropTypes.number).isRequired,
|
|
2782
|
+
allocation_method: T['io.flow.shopify.external.v0.enums.price_rule_allocation_method'].isRequired,
|
|
2783
|
+
once_per_customer: PropTypes.bool.isRequired,
|
|
2784
|
+
target_selection: T['io.flow.shopify.external.v0.enums.price_rule_target_selection'].isRequired,
|
|
2785
|
+
customer_selection: T['io.flow.shopify.external.v0.enums.price_rule_customer_selection'].isRequired,
|
|
2786
|
+
customer_segment_prerequisite_ids: PropTypes.arrayOf(PropTypes.number),
|
|
2787
|
+
prerequisite_customer_ids: PropTypes.arrayOf(PropTypes.number),
|
|
2788
|
+
prerequisite_quantity_range: T['io.flow.shopify.external.v0.models.price_rule_greater_than_range'],
|
|
2789
|
+
prerequisite_product_ids: PropTypes.arrayOf(PropTypes.number),
|
|
2790
|
+
prerequisite_variant_ids: PropTypes.arrayOf(PropTypes.number),
|
|
2791
|
+
prerequisite_collection_ids: PropTypes.arrayOf(PropTypes.number),
|
|
2792
|
+
prerequisite_to_entitlement_quantity_ratio: T['io.flow.shopify.external.v0.models.price_rule_prerequisite_to_entitlement_quantity_ratio'],
|
|
2793
|
+
prerequisite_to_entitlement_purchase: T['io.flow.shopify.external.v0.models.price_rule_prerequisite_to_entitlement_purchase'],
|
|
2794
|
+
allocation_limit: PropTypes.number,
|
|
2795
|
+
title: PropTypes.string,
|
|
2796
|
+
created_at: PropTypes.string,
|
|
2797
|
+
updated_at: PropTypes.string,
|
|
2798
|
+
});
|
|
2799
|
+
|
|
2800
|
+
T['io.flow.shopify.external.v0.models.response_price_rules'] = PropTypes.exact({
|
|
2801
|
+
price_rules: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.price_rule']).isRequired,
|
|
2802
|
+
});
|
|
2803
|
+
|
|
2804
|
+
T['io.flow.shopify.external.v0.models.response_price_rule'] = PropTypes.exact({
|
|
2805
|
+
price_rule: T['io.flow.shopify.external.v0.models.price_rule'].isRequired,
|
|
2806
|
+
});
|
|
2807
|
+
|
|
2808
|
+
T['io.flow.shopify.external.v0.models.price_rule_form'] = PropTypes.exact({
|
|
2809
|
+
price_rule: T['io.flow.shopify.external.v0.models.price_rule'].isRequired,
|
|
2810
|
+
});
|
|
2811
|
+
|
|
2833
2812
|
T['io.flow.shopify.external.v0.enums.value_type'] = PropTypes.oneOf(['string', 'integer']);
|
|
2834
2813
|
|
|
2835
2814
|
T['io.flow.shopify.external.v0.models.metafield_form'] = PropTypes.exact({
|
|
@@ -4972,76 +4951,6 @@ T['io.flow.google.pay.v0.models.card_payment_method_parameters'] = PropTypes.exa
|
|
|
4972
4951
|
billingAddressParameters: T['io.flow.google.pay.v0.models.billing_address_parameters'],
|
|
4973
4952
|
});
|
|
4974
4953
|
|
|
4975
|
-
T['io.flow.shopify.external.v0.models.price_rule_prerequisite_to_entitlement_purchase'] = PropTypes.exact({
|
|
4976
|
-
prerequisite_amount: PropTypes.string,
|
|
4977
|
-
});
|
|
4978
|
-
|
|
4979
|
-
T['io.flow.shopify.external.v0.models.price_rule_prerequisite_to_entitlement_quantity_ratio'] = PropTypes.exact({
|
|
4980
|
-
prerequisite_quantity: PropTypes.number,
|
|
4981
|
-
entitled_quantity: PropTypes.number,
|
|
4982
|
-
});
|
|
4983
|
-
|
|
4984
|
-
T['io.flow.shopify.external.v0.enums.price_rule_customer_selection'] = PropTypes.oneOf(['all', 'prerequisite']);
|
|
4985
|
-
T['io.flow.shopify.external.v0.enums.price_rule_target_selection'] = PropTypes.oneOf(['all', 'entitled']);
|
|
4986
|
-
T['io.flow.shopify.external.v0.enums.price_rule_allocation_method'] = PropTypes.oneOf(['across', 'each']);
|
|
4987
|
-
|
|
4988
|
-
T['io.flow.shopify.external.v0.models.price_rule_less_than_range'] = PropTypes.exact({
|
|
4989
|
-
less_than: PropTypes.number,
|
|
4990
|
-
less_than_or_equal_to: PropTypes.number,
|
|
4991
|
-
});
|
|
4992
|
-
|
|
4993
|
-
T['io.flow.shopify.external.v0.models.price_rule_greater_than_range'] = PropTypes.exact({
|
|
4994
|
-
greater_than: PropTypes.number,
|
|
4995
|
-
greater_than_or_equal_to: PropTypes.number,
|
|
4996
|
-
});
|
|
4997
|
-
|
|
4998
|
-
T['io.flow.shopify.external.v0.enums.price_rule_target_type'] = PropTypes.oneOf(['line_item', 'shipping_line']);
|
|
4999
|
-
T['io.flow.shopify.external.v0.enums.price_rule_value_type'] = PropTypes.oneOf(['fixed_amount', 'percentage']);
|
|
5000
|
-
|
|
5001
|
-
T['io.flow.shopify.external.v0.models.price_rule'] = PropTypes.exact({
|
|
5002
|
-
id: PropTypes.number.isRequired,
|
|
5003
|
-
value_type: T['io.flow.shopify.external.v0.enums.price_rule_value_type'].isRequired,
|
|
5004
|
-
target_type: T['io.flow.shopify.external.v0.enums.price_rule_target_type'].isRequired,
|
|
5005
|
-
value: PropTypes.number.isRequired,
|
|
5006
|
-
starts_at: PropTypes.string.isRequired,
|
|
5007
|
-
ends_at: PropTypes.string,
|
|
5008
|
-
prerequisite_subtotal_range: T['io.flow.shopify.external.v0.models.price_rule_greater_than_range'],
|
|
5009
|
-
prerequisite_shipping_price_range: T['io.flow.shopify.external.v0.models.price_rule_less_than_range'],
|
|
5010
|
-
usage_limit: PropTypes.number,
|
|
5011
|
-
entitled_product_ids: PropTypes.arrayOf(PropTypes.number).isRequired,
|
|
5012
|
-
entitled_variant_ids: PropTypes.arrayOf(PropTypes.number).isRequired,
|
|
5013
|
-
entitled_collection_ids: PropTypes.arrayOf(PropTypes.number).isRequired,
|
|
5014
|
-
entitled_country_ids: PropTypes.arrayOf(PropTypes.number).isRequired,
|
|
5015
|
-
allocation_method: T['io.flow.shopify.external.v0.enums.price_rule_allocation_method'].isRequired,
|
|
5016
|
-
once_per_customer: PropTypes.bool.isRequired,
|
|
5017
|
-
target_selection: T['io.flow.shopify.external.v0.enums.price_rule_target_selection'].isRequired,
|
|
5018
|
-
customer_selection: T['io.flow.shopify.external.v0.enums.price_rule_customer_selection'].isRequired,
|
|
5019
|
-
customer_segment_prerequisite_ids: PropTypes.arrayOf(PropTypes.number),
|
|
5020
|
-
prerequisite_customer_ids: PropTypes.arrayOf(PropTypes.number),
|
|
5021
|
-
prerequisite_quantity_range: T['io.flow.shopify.external.v0.models.price_rule_greater_than_range'],
|
|
5022
|
-
prerequisite_product_ids: PropTypes.arrayOf(PropTypes.number),
|
|
5023
|
-
prerequisite_variant_ids: PropTypes.arrayOf(PropTypes.number),
|
|
5024
|
-
prerequisite_collection_ids: PropTypes.arrayOf(PropTypes.number),
|
|
5025
|
-
prerequisite_to_entitlement_quantity_ratio: T['io.flow.shopify.external.v0.models.price_rule_prerequisite_to_entitlement_quantity_ratio'],
|
|
5026
|
-
prerequisite_to_entitlement_purchase: T['io.flow.shopify.external.v0.models.price_rule_prerequisite_to_entitlement_purchase'],
|
|
5027
|
-
allocation_limit: PropTypes.number,
|
|
5028
|
-
title: PropTypes.string,
|
|
5029
|
-
created_at: PropTypes.string,
|
|
5030
|
-
updated_at: PropTypes.string,
|
|
5031
|
-
});
|
|
5032
|
-
|
|
5033
|
-
T['io.flow.shopify.external.v0.models.response_price_rules'] = PropTypes.exact({
|
|
5034
|
-
price_rules: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.price_rule']).isRequired,
|
|
5035
|
-
});
|
|
5036
|
-
|
|
5037
|
-
T['io.flow.shopify.external.v0.models.response_price_rule'] = PropTypes.exact({
|
|
5038
|
-
price_rule: T['io.flow.shopify.external.v0.models.price_rule'].isRequired,
|
|
5039
|
-
});
|
|
5040
|
-
|
|
5041
|
-
T['io.flow.shopify.external.v0.models.price_rule_form'] = PropTypes.exact({
|
|
5042
|
-
price_rule: T['io.flow.shopify.external.v0.models.price_rule'].isRequired,
|
|
5043
|
-
});
|
|
5044
|
-
|
|
5045
4954
|
T['io.flow.inventory.v0.models.generic_reservation_error'] = PropTypes.exact({
|
|
5046
4955
|
code: PropTypes.oneOf(['generic_reservation_error']).isRequired,
|
|
5047
4956
|
messages: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
@@ -5154,13 +5063,6 @@ T['io.flow.v0.models.stripe_authentication_data'] = PropTypes.exact({
|
|
|
5154
5063
|
|
|
5155
5064
|
T['io.flow.v0.unions.gateway_authentication_data'] = PropTypes.oneOfType([T['io.flow.v0.models.stripe_authentication_data']]);
|
|
5156
5065
|
|
|
5157
|
-
T['io.flow.v0.models.return_deleted'] = PropTypes.exact({
|
|
5158
|
-
discriminator: PropTypes.oneOf(['return_deleted']).isRequired,
|
|
5159
|
-
event_id: PropTypes.string.isRequired,
|
|
5160
|
-
timestamp: PropTypes.string.isRequired,
|
|
5161
|
-
id: PropTypes.string.isRequired,
|
|
5162
|
-
});
|
|
5163
|
-
|
|
5164
5066
|
T['io.flow.v0.models.product_restriction_result_deleted'] = PropTypes.exact({
|
|
5165
5067
|
discriminator: PropTypes.oneOf(['product_restriction_result_deleted']).isRequired,
|
|
5166
5068
|
event_id: PropTypes.string.isRequired,
|
|
@@ -5740,6 +5642,13 @@ T['io.flow.v0.models.aldo_item_deleted'] = PropTypes.exact({
|
|
|
5740
5642
|
id: PropTypes.string.isRequired,
|
|
5741
5643
|
});
|
|
5742
5644
|
|
|
5645
|
+
T['io.flow.v0.models.rohan_item_deleted'] = PropTypes.exact({
|
|
5646
|
+
discriminator: PropTypes.oneOf(['rohan_item_deleted']).isRequired,
|
|
5647
|
+
event_id: PropTypes.string.isRequired,
|
|
5648
|
+
timestamp: PropTypes.string.isRequired,
|
|
5649
|
+
id: PropTypes.string.isRequired,
|
|
5650
|
+
});
|
|
5651
|
+
|
|
5743
5652
|
T['io.flow.v0.models.niall_item_deleted'] = PropTypes.exact({
|
|
5744
5653
|
discriminator: PropTypes.oneOf(['niall_item_deleted']).isRequired,
|
|
5745
5654
|
event_id: PropTypes.string.isRequired,
|
|
@@ -5911,8 +5820,22 @@ T['io.flow.v0.models.trueup_label_base'] = PropTypes.exact({
|
|
|
5911
5820
|
|
|
5912
5821
|
T['io.flow.v0.enums.trueup_source'] = PropTypes.oneOf(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups']);
|
|
5913
5822
|
|
|
5823
|
+
T['io.flow.v0.enums.tax_duty_transaction_reason_code'] = PropTypes.oneOf([
|
|
5824
|
+
'post_capture',
|
|
5825
|
+
'post_fulfilment',
|
|
5826
|
+
'manual_payment_or_gift_card',
|
|
5827
|
+
'order_edit',
|
|
5828
|
+
'mixed_fulfilment_non_lvg',
|
|
5829
|
+
'lvg_refund',
|
|
5830
|
+
'order_cancellation_above_de_min',
|
|
5831
|
+
'wyol_shipment_above_de_min',
|
|
5832
|
+
'full_refund_without_shipment',
|
|
5833
|
+
'unfulfilled_order_above_de_min',
|
|
5834
|
+
]);
|
|
5835
|
+
|
|
5914
5836
|
T['io.flow.v0.models.transaction_metadata_shipping_label_carrier'] = PropTypes.exact({
|
|
5915
5837
|
id: PropTypes.string.isRequired,
|
|
5838
|
+
service_id: PropTypes.string,
|
|
5916
5839
|
tracking_number: PropTypes.string.isRequired,
|
|
5917
5840
|
});
|
|
5918
5841
|
|
|
@@ -6285,6 +6208,7 @@ T['io.flow.v0.enums.onboarding_blocked_reason'] = PropTypes.oneOf([
|
|
|
6285
6208
|
'missing_logistics_contact_info',
|
|
6286
6209
|
]);
|
|
6287
6210
|
|
|
6211
|
+
T['io.flow.tech.onboarding.playground.v0.enums.rohan_item_type'] = PropTypes.oneOf(['physical', 'digital']);
|
|
6288
6212
|
T['io.flow.v0.enums.return_policy_state'] = PropTypes.oneOf(['current', 'deleting', 'updating']);
|
|
6289
6213
|
|
|
6290
6214
|
T['io.flow.v0.models.return_policy_statistic'] = PropTypes.exact({
|
|
@@ -7962,6 +7886,7 @@ T['io.flow.sellability.v0.models.sellablility_region_result'] = PropTypes.exact(
|
|
|
7962
7886
|
});
|
|
7963
7887
|
|
|
7964
7888
|
T['io.flow.sellability.v0.models.product_sellability'] = PropTypes.exact({
|
|
7889
|
+
discriminator: PropTypes.oneOf(['product_sellability']).isRequired,
|
|
7965
7890
|
shop_id: PropTypes.string.isRequired,
|
|
7966
7891
|
product_id: PropTypes.string,
|
|
7967
7892
|
request_id: PropTypes.string.isRequired,
|
|
@@ -7969,6 +7894,11 @@ T['io.flow.sellability.v0.models.product_sellability'] = PropTypes.exact({
|
|
|
7969
7894
|
restricted_regions: PropTypes.arrayOf(T['io.flow.sellability.v0.models.sellablility_region_result']).isRequired,
|
|
7970
7895
|
});
|
|
7971
7896
|
|
|
7897
|
+
T['io.flow.sellability.v0.unions.sellability_response'] = PropTypes.oneOfType([
|
|
7898
|
+
T['io.flow.sellability.v0.models.product_sellability'],
|
|
7899
|
+
T['io.flow.sellability.v0.models.sellability_error'],
|
|
7900
|
+
]);
|
|
7901
|
+
|
|
7972
7902
|
T['io.flow.v0.enums.product_restriction_rule'] = PropTypes.oneOf([
|
|
7973
7903
|
'Adult Products',
|
|
7974
7904
|
'Alcohol',
|
|
@@ -8015,6 +7945,7 @@ T['io.flow.v0.models.product_restriction_result'] = PropTypes.exact({
|
|
|
8015
7945
|
product_id: PropTypes.string.isRequired,
|
|
8016
7946
|
item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
8017
7947
|
prohibited_regions: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
7948
|
+
sellability_restricted_regions: PropTypes.arrayOf(PropTypes.string),
|
|
8018
7949
|
reasons_per_region: PropTypes.arrayOf(T['io.flow.v0.models.reasons_per_region']),
|
|
8019
7950
|
review_status: T['io.flow.v0.enums.review_status'],
|
|
8020
7951
|
rules: PropTypes.arrayOf(T['io.flow.v0.enums.product_restriction_rule']),
|
|
@@ -8037,7 +7968,7 @@ T['io.flow.v0.models.ge_input_attributes'] = PropTypes.exact({
|
|
|
8037
7968
|
ge_hs6_code: PropTypes.string.isRequired,
|
|
8038
7969
|
product_id: PropTypes.string.isRequired,
|
|
8039
7970
|
ge_organization_name: PropTypes.string.isRequired,
|
|
8040
|
-
|
|
7971
|
+
ge_shipping_origin_country: PropTypes.string,
|
|
8041
7972
|
});
|
|
8042
7973
|
|
|
8043
7974
|
T['io.flow.v0.models.ge_input_price'] = PropTypes.exact({
|
|
@@ -9526,8 +9457,14 @@ T['io.flow.v0.enums.fee_deduction_type'] = PropTypes.oneOf([
|
|
|
9526
9457
|
'rate_lock',
|
|
9527
9458
|
'transfer',
|
|
9528
9459
|
'negative_balance_guarantee',
|
|
9460
|
+
'sp',
|
|
9529
9461
|
]);
|
|
9530
9462
|
|
|
9463
|
+
T['io.flow.v0.models.transaction_metadata_tax_duty'] = PropTypes.exact({
|
|
9464
|
+
discriminator: PropTypes.oneOf(['transaction_tax_duty']).isRequired,
|
|
9465
|
+
reason_code: T['io.flow.v0.enums.tax_duty_transaction_reason_code'].isRequired,
|
|
9466
|
+
});
|
|
9467
|
+
|
|
9531
9468
|
T['io.flow.v0.models.transaction_metadata_payment_transaction'] = PropTypes.exact({
|
|
9532
9469
|
discriminator: PropTypes.oneOf(['payment_transaction']).isRequired,
|
|
9533
9470
|
id: PropTypes.string,
|
|
@@ -9693,6 +9630,7 @@ T['io.flow.channel.internal.v0.models.channel_order_acceptance'] = PropTypes.exa
|
|
|
9693
9630
|
order_created_at: PropTypes.string,
|
|
9694
9631
|
order_updated_at: PropTypes.string,
|
|
9695
9632
|
order_edit_summary: T['io.flow.channel.internal.v0.models.order_edit_summary'],
|
|
9633
|
+
payment_source: T['io.flow.channel.internal.v0.enums.order_payment_source_type'],
|
|
9696
9634
|
});
|
|
9697
9635
|
|
|
9698
9636
|
T['io.flow.channel.internal.v0.models.channel_order_acceptance_details'] = PropTypes.exact({
|
|
@@ -10014,26 +9952,6 @@ T['io.flow.v0.models.organization_authorization'] = PropTypes.exact({
|
|
|
10014
9952
|
environment: T['io.flow.v0.enums.environment'].isRequired,
|
|
10015
9953
|
});
|
|
10016
9954
|
|
|
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
9955
|
T['io.flow.v0.models.ge_catalog_item_ingestion_result'] = PropTypes.exact({
|
|
10038
9956
|
discriminator: PropTypes.oneOf(['ge_catalog_item_ingestion_result']).isRequired,
|
|
10039
9957
|
event_id: PropTypes.string.isRequired,
|
|
@@ -10045,12 +9963,6 @@ T['io.flow.v0.models.ge_catalog_item_ingestion_result'] = PropTypes.exact({
|
|
|
10045
9963
|
message: PropTypes.string.isRequired,
|
|
10046
9964
|
});
|
|
10047
9965
|
|
|
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
|
-
|
|
10054
9966
|
T['io.flow.v0.models.channel'] = PropTypes.exact({
|
|
10055
9967
|
id: PropTypes.string.isRequired,
|
|
10056
9968
|
name: PropTypes.string.isRequired,
|
|
@@ -10427,6 +10339,7 @@ T['io.flow.v0.unions.transaction_metadata'] = PropTypes.oneOfType([
|
|
|
10427
10339
|
T['io.flow.v0.models.transaction_metadata_manual'],
|
|
10428
10340
|
T['io.flow.v0.models.transaction_metadata_failed_payout'],
|
|
10429
10341
|
T['io.flow.v0.models.transaction_metadata_payment_transaction'],
|
|
10342
|
+
T['io.flow.v0.models.transaction_metadata_tax_duty'],
|
|
10430
10343
|
]);
|
|
10431
10344
|
|
|
10432
10345
|
T['io.flow.v0.models.transaction_network_details_card'] = PropTypes.exact({
|
|
@@ -10575,7 +10488,7 @@ T['io.flow.v0.models.capture_error'] = PropTypes.exact({
|
|
|
10575
10488
|
decline_code: T['io.flow.v0.enums.capture_decline_code'].isRequired,
|
|
10576
10489
|
});
|
|
10577
10490
|
|
|
10578
|
-
T['io.flow.v0.enums.payment_fee_type'] = PropTypes.oneOf(['fx', 'mor']);
|
|
10491
|
+
T['io.flow.v0.enums.payment_fee_type'] = PropTypes.oneOf(['fx', 'mor', 'sp']);
|
|
10579
10492
|
T['io.flow.v0.enums.capture_status'] = PropTypes.oneOf(['initiated', 'pending', 'succeeded', 'failed', 'canceled']);
|
|
10580
10493
|
|
|
10581
10494
|
T['io.flow.v0.models.payment_capture_status'] = PropTypes.exact({
|
|
@@ -11867,6 +11780,34 @@ T['io.flow.v0.models.hs10_version'] = PropTypes.exact({
|
|
|
11867
11780
|
hs10: T['io.flow.v0.models.hs10'].isRequired,
|
|
11868
11781
|
});
|
|
11869
11782
|
|
|
11783
|
+
T['io.flow.v0.models.ge_product_restriction_result_upsert'] = PropTypes.exact({
|
|
11784
|
+
discriminator: PropTypes.oneOf(['ge_product_restriction_result_upsert']).isRequired,
|
|
11785
|
+
organization: PropTypes.string.isRequired,
|
|
11786
|
+
event_id: PropTypes.string.isRequired,
|
|
11787
|
+
event_type: T['io.flow.v0.enums.ge_event_type'].isRequired,
|
|
11788
|
+
environment: T['io.flow.v0.enums.environment'].isRequired,
|
|
11789
|
+
timestamp: PropTypes.string.isRequired,
|
|
11790
|
+
operation: T['io.flow.v0.enums.change_type'].isRequired,
|
|
11791
|
+
ge_product_restriction_result: T['io.flow.v0.models.product_restriction_result'].isRequired,
|
|
11792
|
+
});
|
|
11793
|
+
|
|
11794
|
+
T['io.flow.v0.models.ge_product_restriction_result_delete'] = PropTypes.exact({
|
|
11795
|
+
discriminator: PropTypes.oneOf(['ge_product_restriction_result_delete']).isRequired,
|
|
11796
|
+
organization: PropTypes.string.isRequired,
|
|
11797
|
+
event_id: PropTypes.string.isRequired,
|
|
11798
|
+
event_type: T['io.flow.v0.enums.ge_event_type'].isRequired,
|
|
11799
|
+
environment: T['io.flow.v0.enums.environment'].isRequired,
|
|
11800
|
+
timestamp: PropTypes.string.isRequired,
|
|
11801
|
+
id: PropTypes.string.isRequired,
|
|
11802
|
+
operation: T['io.flow.v0.enums.change_type'].isRequired,
|
|
11803
|
+
});
|
|
11804
|
+
|
|
11805
|
+
T['io.flow.v0.unions.ge_restriction_event'] = PropTypes.oneOfType([
|
|
11806
|
+
T['io.flow.v0.models.ge_product_restriction_result_upsert'],
|
|
11807
|
+
T['io.flow.v0.models.ge_product_restriction_result_delete'],
|
|
11808
|
+
T['io.flow.v0.models.ge_catalog_item_ingestion_result'],
|
|
11809
|
+
]);
|
|
11810
|
+
|
|
11870
11811
|
T['io.flow.v0.models.experience_version'] = PropTypes.exact({
|
|
11871
11812
|
id: PropTypes.string.isRequired,
|
|
11872
11813
|
timestamp: PropTypes.string.isRequired,
|
|
@@ -12714,6 +12655,14 @@ T['io.flow.order.price.v0.models.order_price_detail_component'] = PropTypes.exac
|
|
|
12714
12655
|
name: PropTypes.string,
|
|
12715
12656
|
});
|
|
12716
12657
|
|
|
12658
|
+
T['io.flow.tech.onboarding.playground.v0.models.rohan_item_form'] = PropTypes.exact({
|
|
12659
|
+
number: PropTypes.string.isRequired,
|
|
12660
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
12661
|
+
description: PropTypes.string,
|
|
12662
|
+
type: T['io.flow.tech.onboarding.playground.v0.enums.rohan_item_type'].isRequired,
|
|
12663
|
+
added_on: PropTypes.string.isRequired,
|
|
12664
|
+
});
|
|
12665
|
+
|
|
12717
12666
|
T['io.flow.tech.onboarding.playground.v0.models.prateek_item_form'] = PropTypes.exact({
|
|
12718
12667
|
number: PropTypes.string.isRequired,
|
|
12719
12668
|
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
@@ -13071,6 +13020,22 @@ T['io.flow.catalog.v0.models.item_version'] = PropTypes.exact({
|
|
|
13071
13020
|
item: T['io.flow.catalog.v0.models.item'].isRequired,
|
|
13072
13021
|
});
|
|
13073
13022
|
|
|
13023
|
+
T['io.flow.tech.onboarding.playground.v0.models.rohan_item'] = PropTypes.exact({
|
|
13024
|
+
id: PropTypes.string.isRequired,
|
|
13025
|
+
number: PropTypes.string.isRequired,
|
|
13026
|
+
amount: T['io.flow.common.v0.models.price'].isRequired,
|
|
13027
|
+
description: PropTypes.string,
|
|
13028
|
+
type: T['io.flow.tech.onboarding.playground.v0.enums.rohan_item_type'].isRequired,
|
|
13029
|
+
added_on: PropTypes.string.isRequired,
|
|
13030
|
+
});
|
|
13031
|
+
|
|
13032
|
+
T['io.flow.v0.models.rohan_item_upserted'] = PropTypes.exact({
|
|
13033
|
+
discriminator: PropTypes.oneOf(['rohan_item_upserted']).isRequired,
|
|
13034
|
+
event_id: PropTypes.string.isRequired,
|
|
13035
|
+
timestamp: PropTypes.string.isRequired,
|
|
13036
|
+
item: T['io.flow.tech.onboarding.playground.v0.models.rohan_item'].isRequired,
|
|
13037
|
+
});
|
|
13038
|
+
|
|
13074
13039
|
T['io.flow.tech.onboarding.playground.v0.models.niall_item'] = PropTypes.exact({
|
|
13075
13040
|
id: PropTypes.string.isRequired,
|
|
13076
13041
|
number: PropTypes.string.isRequired,
|
|
@@ -13667,6 +13632,8 @@ T['io.flow.v0.models.peak_surcharge_service_fee'] = PropTypes.exact({
|
|
|
13667
13632
|
amount: T['io.flow.v0.models.money'].isRequired,
|
|
13668
13633
|
starts_at: PropTypes.string,
|
|
13669
13634
|
ends_at: PropTypes.string,
|
|
13635
|
+
regions: PropTypes.arrayOf(PropTypes.string),
|
|
13636
|
+
dependent_service_fees: PropTypes.arrayOf(PropTypes.string),
|
|
13670
13637
|
});
|
|
13671
13638
|
|
|
13672
13639
|
T['io.flow.v0.models.peak_surcharge_ratecard_fee'] = PropTypes.exact({
|
|
@@ -14359,6 +14326,11 @@ T['io.flow.v0.models.ratecard_lane_upserted'] = PropTypes.exact({
|
|
|
14359
14326
|
ratecard_lane: T['io.flow.v0.models.ratecard_lane'].isRequired,
|
|
14360
14327
|
});
|
|
14361
14328
|
|
|
14329
|
+
T['io.flow.v0.models.ratecard_fee_summary'] = PropTypes.exact({
|
|
14330
|
+
ratecard_fee: T['io.flow.v0.unions.ratecard_fee'].isRequired,
|
|
14331
|
+
source_service_fees: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
14332
|
+
});
|
|
14333
|
+
|
|
14362
14334
|
T['io.flow.v0.models.fee_weight'] = PropTypes.exact({
|
|
14363
14335
|
weight: PropTypes.number.isRequired,
|
|
14364
14336
|
unit: T['io.flow.v0.enums.unit_of_measurement'].isRequired,
|
|
@@ -15063,22 +15035,6 @@ T['io.flow.v0.models.customer'] = PropTypes.exact({
|
|
|
15063
15035
|
phone: PropTypes.string,
|
|
15064
15036
|
});
|
|
15065
15037
|
|
|
15066
|
-
T['io.flow.v0.models.customer_upserted'] = PropTypes.exact({
|
|
15067
|
-
discriminator: PropTypes.oneOf(['customer_upserted']).isRequired,
|
|
15068
|
-
event_id: PropTypes.string.isRequired,
|
|
15069
|
-
timestamp: PropTypes.string.isRequired,
|
|
15070
|
-
organization: PropTypes.string.isRequired,
|
|
15071
|
-
customer: T['io.flow.v0.models.customer'].isRequired,
|
|
15072
|
-
});
|
|
15073
|
-
|
|
15074
|
-
T['io.flow.v0.models.customer_deleted'] = PropTypes.exact({
|
|
15075
|
-
discriminator: PropTypes.oneOf(['customer_deleted']).isRequired,
|
|
15076
|
-
event_id: PropTypes.string.isRequired,
|
|
15077
|
-
timestamp: PropTypes.string.isRequired,
|
|
15078
|
-
organization: PropTypes.string.isRequired,
|
|
15079
|
-
customer: T['io.flow.v0.models.customer'].isRequired,
|
|
15080
|
-
});
|
|
15081
|
-
|
|
15082
15038
|
T['io.flow.v0.models.contact'] = PropTypes.exact({
|
|
15083
15039
|
name: T['io.flow.v0.models.name'].isRequired,
|
|
15084
15040
|
company: PropTypes.string,
|
|
@@ -15147,22 +15103,6 @@ T['io.flow.v0.models.customer_address_book_contact'] = PropTypes.exact({
|
|
|
15147
15103
|
address_preferences: PropTypes.arrayOf(T['io.flow.v0.models.customer_address_preference']).isRequired,
|
|
15148
15104
|
});
|
|
15149
15105
|
|
|
15150
|
-
T['io.flow.v0.models.customer_address_book_contact_upserted'] = PropTypes.exact({
|
|
15151
|
-
discriminator: PropTypes.oneOf(['customer_address_book_contact_upserted']).isRequired,
|
|
15152
|
-
event_id: PropTypes.string.isRequired,
|
|
15153
|
-
timestamp: PropTypes.string.isRequired,
|
|
15154
|
-
organization: PropTypes.string.isRequired,
|
|
15155
|
-
customer_address_book_contact: T['io.flow.v0.models.customer_address_book_contact'].isRequired,
|
|
15156
|
-
});
|
|
15157
|
-
|
|
15158
|
-
T['io.flow.v0.models.customer_address_book_contact_deleted'] = PropTypes.exact({
|
|
15159
|
-
discriminator: PropTypes.oneOf(['customer_address_book_contact_deleted']).isRequired,
|
|
15160
|
-
event_id: PropTypes.string.isRequired,
|
|
15161
|
-
timestamp: PropTypes.string.isRequired,
|
|
15162
|
-
organization: PropTypes.string.isRequired,
|
|
15163
|
-
customer_address_book_contact: T['io.flow.v0.models.customer_address_book_contact'].isRequired,
|
|
15164
|
-
});
|
|
15165
|
-
|
|
15166
15106
|
T['io.flow.v0.models.customer_address_book'] = PropTypes.exact({
|
|
15167
15107
|
contacts: PropTypes.arrayOf(T['io.flow.v0.models.customer_address_book_contact']).isRequired,
|
|
15168
15108
|
});
|
|
@@ -16546,20 +16486,6 @@ T['io.flow.v0.models.shipping_label_version'] = PropTypes.exact({
|
|
|
16546
16486
|
shipping_label: T['io.flow.v0.models.shipping_label'].isRequired,
|
|
16547
16487
|
});
|
|
16548
16488
|
|
|
16549
|
-
T['io.flow.v0.models.return_upserted'] = PropTypes.exact({
|
|
16550
|
-
discriminator: PropTypes.oneOf(['return_upserted']).isRequired,
|
|
16551
|
-
event_id: PropTypes.string.isRequired,
|
|
16552
|
-
timestamp: PropTypes.string.isRequired,
|
|
16553
|
-
id: PropTypes.string.isRequired,
|
|
16554
|
-
organization: PropTypes.string.isRequired,
|
|
16555
|
-
destination: T['io.flow.v0.models.shipping_address'].isRequired,
|
|
16556
|
-
items: PropTypes.arrayOf(T['io.flow.v0.models.return_line_item']).isRequired,
|
|
16557
|
-
key: PropTypes.string.isRequired,
|
|
16558
|
-
labels: PropTypes.arrayOf(T['io.flow.v0.models.shipping_label']),
|
|
16559
|
-
service: PropTypes.string.isRequired,
|
|
16560
|
-
origin: T['io.flow.v0.models.shipping_address'].isRequired,
|
|
16561
|
-
});
|
|
16562
|
-
|
|
16563
16489
|
T['io.flow.v0.models.return'] = PropTypes.exact({
|
|
16564
16490
|
id: PropTypes.string.isRequired,
|
|
16565
16491
|
key: PropTypes.string.isRequired,
|
|
@@ -16582,22 +16508,6 @@ T['io.flow.v0.models.return_version'] = PropTypes.exact({
|
|
|
16582
16508
|
'return': T['io.flow.v0.models.return'].isRequired,
|
|
16583
16509
|
});
|
|
16584
16510
|
|
|
16585
|
-
T['io.flow.v0.models.return_upserted_v2'] = PropTypes.exact({
|
|
16586
|
-
discriminator: PropTypes.oneOf(['return_upserted_v2']).isRequired,
|
|
16587
|
-
event_id: PropTypes.string.isRequired,
|
|
16588
|
-
timestamp: PropTypes.string.isRequired,
|
|
16589
|
-
organization: PropTypes.string.isRequired,
|
|
16590
|
-
'return': T['io.flow.v0.models.return'].isRequired,
|
|
16591
|
-
});
|
|
16592
|
-
|
|
16593
|
-
T['io.flow.v0.models.return_deleted_v2'] = PropTypes.exact({
|
|
16594
|
-
discriminator: PropTypes.oneOf(['return_deleted_v2']).isRequired,
|
|
16595
|
-
event_id: PropTypes.string.isRequired,
|
|
16596
|
-
timestamp: PropTypes.string.isRequired,
|
|
16597
|
-
organization: PropTypes.string.isRequired,
|
|
16598
|
-
'return': T['io.flow.v0.models.return'].isRequired,
|
|
16599
|
-
});
|
|
16600
|
-
|
|
16601
16511
|
T['io.flow.v0.models.label_upserted_v2'] = PropTypes.exact({
|
|
16602
16512
|
discriminator: PropTypes.oneOf(['label_upserted_v2']).isRequired,
|
|
16603
16513
|
event_id: PropTypes.string.isRequired,
|
|
@@ -16619,6 +16529,8 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
16619
16529
|
T['io.flow.v0.models.generate_load'],
|
|
16620
16530
|
T['io.flow.v0.models.niall_item_upserted'],
|
|
16621
16531
|
T['io.flow.v0.models.niall_item_deleted'],
|
|
16532
|
+
T['io.flow.v0.models.rohan_item_upserted'],
|
|
16533
|
+
T['io.flow.v0.models.rohan_item_deleted'],
|
|
16622
16534
|
T['io.flow.v0.models.aldo_item_upserted'],
|
|
16623
16535
|
T['io.flow.v0.models.aldo_item_deleted'],
|
|
16624
16536
|
T['io.flow.v0.models.ansh_item_upserted'],
|
|
@@ -16677,10 +16589,6 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
16677
16589
|
T['io.flow.v0.models.rate_upserted'],
|
|
16678
16590
|
T['io.flow.v0.models.rate_deleted_v3'],
|
|
16679
16591
|
T['io.flow.v0.models.rate_upserted_v3'],
|
|
16680
|
-
T['io.flow.v0.models.customer_upserted'],
|
|
16681
|
-
T['io.flow.v0.models.customer_deleted'],
|
|
16682
|
-
T['io.flow.v0.models.customer_address_book_contact_upserted'],
|
|
16683
|
-
T['io.flow.v0.models.customer_address_book_contact_deleted'],
|
|
16684
16592
|
T['io.flow.v0.models.available_promotions_upserted'],
|
|
16685
16593
|
T['io.flow.v0.models.available_promotions_deleted'],
|
|
16686
16594
|
T['io.flow.v0.models.available_promotions_upserted_v2'],
|
|
@@ -16815,10 +16723,6 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
16815
16723
|
T['io.flow.v0.models.ratecard_deleted'],
|
|
16816
16724
|
T['io.flow.v0.models.product_restriction_result_upserted'],
|
|
16817
16725
|
T['io.flow.v0.models.product_restriction_result_deleted'],
|
|
16818
|
-
T['io.flow.v0.models.return_upserted'],
|
|
16819
|
-
T['io.flow.v0.models.return_deleted'],
|
|
16820
|
-
T['io.flow.v0.models.return_upserted_v2'],
|
|
16821
|
-
T['io.flow.v0.models.return_deleted_v2'],
|
|
16822
16726
|
T['io.flow.v0.models.shopify_localization_setting_upserted'],
|
|
16823
16727
|
T['io.flow.v0.models.shopify_localization_setting_deleted'],
|
|
16824
16728
|
T['io.flow.v0.models.tracking_label_event_upserted'],
|
|
@@ -17011,6 +16915,8 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
17011
16915
|
'generate_load',
|
|
17012
16916
|
'niall_item_upserted',
|
|
17013
16917
|
'niall_item_deleted',
|
|
16918
|
+
'rohan_item_upserted',
|
|
16919
|
+
'rohan_item_deleted',
|
|
17014
16920
|
'aldo_item_upserted',
|
|
17015
16921
|
'aldo_item_deleted',
|
|
17016
16922
|
'ansh_item_upserted',
|
|
@@ -17069,10 +16975,6 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
17069
16975
|
'rate_upserted',
|
|
17070
16976
|
'rate_deleted_v3',
|
|
17071
16977
|
'rate_upserted_v3',
|
|
17072
|
-
'customer_upserted',
|
|
17073
|
-
'customer_deleted',
|
|
17074
|
-
'customer_address_book_contact_upserted',
|
|
17075
|
-
'customer_address_book_contact_deleted',
|
|
17076
16978
|
'available_promotions_upserted',
|
|
17077
16979
|
'available_promotions_deleted',
|
|
17078
16980
|
'available_promotions_upserted_v2',
|
|
@@ -17207,10 +17109,6 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
17207
17109
|
'ratecard_deleted',
|
|
17208
17110
|
'product_restriction_result_upserted',
|
|
17209
17111
|
'product_restriction_result_deleted',
|
|
17210
|
-
'return_upserted',
|
|
17211
|
-
'return_deleted',
|
|
17212
|
-
'return_upserted_v2',
|
|
17213
|
-
'return_deleted_v2',
|
|
17214
17112
|
'shopify_localization_setting_upserted',
|
|
17215
17113
|
'shopify_localization_setting_deleted',
|
|
17216
17114
|
'tracking_label_event_upserted',
|
|
@@ -18239,39 +18137,6 @@ T['io.flow.common.v0.models.zone'] = PropTypes.exact({
|
|
|
18239
18137
|
country: PropTypes.string.isRequired,
|
|
18240
18138
|
});
|
|
18241
18139
|
|
|
18242
|
-
T['io.flow.token.v0.models.channel_token_form'] = PropTypes.exact({
|
|
18243
|
-
channel_id: PropTypes.string.isRequired,
|
|
18244
|
-
description: PropTypes.string,
|
|
18245
|
-
});
|
|
18246
|
-
|
|
18247
|
-
T['io.flow.token.v0.models.cleartext'] = PropTypes.exact({
|
|
18248
|
-
value: PropTypes.string.isRequired,
|
|
18249
|
-
});
|
|
18250
|
-
|
|
18251
|
-
T['io.flow.token.v0.models.organization_token_form_v2'] = PropTypes.exact({
|
|
18252
|
-
organization_id: PropTypes.string.isRequired,
|
|
18253
|
-
description: PropTypes.string,
|
|
18254
|
-
});
|
|
18255
|
-
|
|
18256
|
-
T['io.flow.token.v0.models.token_authentication_form'] = PropTypes.exact({
|
|
18257
|
-
token: PropTypes.string.isRequired,
|
|
18258
|
-
});
|
|
18259
|
-
|
|
18260
|
-
T['io.flow.token.v0.models.token_rbac_authentication_form'] = PropTypes.exact({
|
|
18261
|
-
token: PropTypes.string.isRequired,
|
|
18262
|
-
method: PropTypes.string.isRequired,
|
|
18263
|
-
path_pattern: PropTypes.string.isRequired,
|
|
18264
|
-
path: PropTypes.string.isRequired,
|
|
18265
|
-
});
|
|
18266
|
-
|
|
18267
|
-
T['io.flow.token.v0.models.token_validation'] = PropTypes.exact({
|
|
18268
|
-
status: PropTypes.string.isRequired,
|
|
18269
|
-
});
|
|
18270
|
-
|
|
18271
|
-
T['io.flow.token.v0.models.token_validation_form'] = PropTypes.exact({
|
|
18272
|
-
token: PropTypes.string.isRequired,
|
|
18273
|
-
});
|
|
18274
|
-
|
|
18275
18140
|
T['io.flow.price.v0.enums.levy_strategy'] = PropTypes.oneOf(['minimum', 'average', 'maximum']);
|
|
18276
18141
|
|
|
18277
18142
|
T['io.flow.channel.v0.models.channel_authorization'] = PropTypes.exact({
|
|
@@ -18782,15 +18647,12 @@ export const currencySymbols = T['io.flow.v0.models.currency_symbols'];
|
|
|
18782
18647
|
export const customer = T['io.flow.v0.models.customer'];
|
|
18783
18648
|
export const customerAddressBook = T['io.flow.v0.models.customer_address_book'];
|
|
18784
18649
|
export const customerAddressBookContact = T['io.flow.v0.models.customer_address_book_contact'];
|
|
18785
|
-
export const customerAddressBookContactDeleted = T['io.flow.v0.models.customer_address_book_contact_deleted'];
|
|
18786
18650
|
export const customerAddressBookContactForm = T['io.flow.v0.models.customer_address_book_contact_form'];
|
|
18787
|
-
export const customerAddressBookContactUpserted = T['io.flow.v0.models.customer_address_book_contact_upserted'];
|
|
18788
18651
|
export const customerAddressBookForm = T['io.flow.v0.models.customer_address_book_form'];
|
|
18789
18652
|
export const customerAddressPreference = T['io.flow.v0.models.customer_address_preference'];
|
|
18790
18653
|
export const customerAddressType = T['io.flow.v0.enums.customer_address_type'];
|
|
18791
18654
|
export const customerBundle = T['io.flow.v0.models.customer_bundle'];
|
|
18792
18655
|
export const customerClientToken = T['io.flow.v0.models.customer_client_token'];
|
|
18793
|
-
export const customerDeleted = T['io.flow.v0.models.customer_deleted'];
|
|
18794
18656
|
export const customerForm = T['io.flow.v0.models.customer_form'];
|
|
18795
18657
|
export const customerInvoice = T['io.flow.v0.models.customer_invoice'];
|
|
18796
18658
|
export const customerLastUsed = T['io.flow.v0.models.customer_last_used'];
|
|
@@ -18801,7 +18663,6 @@ export const customerPurgeSettingsForm = T['io.flow.v0.models.customer_purge_set
|
|
|
18801
18663
|
export const customerPutForm = T['io.flow.v0.models.customer_put_form'];
|
|
18802
18664
|
export const customerReference = T['io.flow.v0.models.customer_reference'];
|
|
18803
18665
|
export const customerToken = T['io.flow.v0.models.customer_token'];
|
|
18804
|
-
export const customerUpserted = T['io.flow.v0.models.customer_upserted'];
|
|
18805
18666
|
export const cvv = T['io.flow.v0.models.cvv'];
|
|
18806
18667
|
export const cvvCode = T['io.flow.v0.enums.cvv_code'];
|
|
18807
18668
|
export const cvvResult = T['io.flow.v0.models.cvv_result'];
|
|
@@ -19740,6 +19601,7 @@ export const ratecardEstimateV2 = T['io.flow.v0.models.ratecard_estimate_v2'];
|
|
|
19740
19601
|
export const ratecardEstimateV3 = T['io.flow.v0.models.ratecard_estimate_v3'];
|
|
19741
19602
|
export const ratecardEstimateV4 = T['io.flow.v0.models.ratecard_estimate_v4'];
|
|
19742
19603
|
export const ratecardFee = T['io.flow.v0.unions.ratecard_fee'];
|
|
19604
|
+
export const ratecardFeeSummary = T['io.flow.v0.models.ratecard_fee_summary'];
|
|
19743
19605
|
export const ratecardForm = T['io.flow.v0.models.ratecard_form'];
|
|
19744
19606
|
export const ratecardLane = T['io.flow.v0.models.ratecard_lane'];
|
|
19745
19607
|
export const ratecardLaneDeleted = T['io.flow.v0.models.ratecard_lane_deleted'];
|
|
@@ -19798,8 +19660,6 @@ export const repeatSchedule = T['io.flow.v0.unions.repeat_schedule'];
|
|
|
19798
19660
|
export const repeatWeekly = T['io.flow.v0.models.repeat_weekly'];
|
|
19799
19661
|
export const restrictedReviewStatus = T['io.flow.v0.enums.restricted_review_status'];
|
|
19800
19662
|
export const UNSAFE_return = T['io.flow.v0.models.return'];
|
|
19801
|
-
export const returnDeleted = T['io.flow.v0.models.return_deleted'];
|
|
19802
|
-
export const returnDeletedV2 = T['io.flow.v0.models.return_deleted_v2'];
|
|
19803
19663
|
export const returnForm = T['io.flow.v0.models.return_form'];
|
|
19804
19664
|
export const returnItemReference = T['io.flow.v0.models.return_item_reference'];
|
|
19805
19665
|
export const returnItemStatus = T['io.flow.v0.enums.return_item_status'];
|
|
@@ -19820,8 +19680,6 @@ export const returnSourceExternalVendor = T['io.flow.v0.models.return_source_ext
|
|
|
19820
19680
|
export const returnSourceFlow = T['io.flow.v0.models.return_source_flow'];
|
|
19821
19681
|
export const returnStatus = T['io.flow.v0.enums.return_status'];
|
|
19822
19682
|
export const returnTrackingStatus = T['io.flow.v0.enums.return_tracking_status'];
|
|
19823
|
-
export const returnUpserted = T['io.flow.v0.models.return_upserted'];
|
|
19824
|
-
export const returnUpsertedV2 = T['io.flow.v0.models.return_upserted_v2'];
|
|
19825
19683
|
export const returnVersion = T['io.flow.v0.models.return_version'];
|
|
19826
19684
|
export const reversal = T['io.flow.v0.models.reversal'];
|
|
19827
19685
|
export const reversalDeleted = T['io.flow.v0.models.reversal_deleted'];
|
|
@@ -19833,6 +19691,8 @@ export const reversalStatus = T['io.flow.v0.enums.reversal_status'];
|
|
|
19833
19691
|
export const reversalUpserted = T['io.flow.v0.models.reversal_upserted'];
|
|
19834
19692
|
export const reversalVersion = T['io.flow.v0.models.reversal_version'];
|
|
19835
19693
|
export const reviewStatus = T['io.flow.v0.enums.review_status'];
|
|
19694
|
+
export const rohanItemDeleted = T['io.flow.v0.models.rohan_item_deleted'];
|
|
19695
|
+
export const rohanItemUpserted = T['io.flow.v0.models.rohan_item_upserted'];
|
|
19836
19696
|
export const role = T['io.flow.v0.enums.role'];
|
|
19837
19697
|
export const romanization = T['io.flow.v0.models.romanization'];
|
|
19838
19698
|
export const romanizationForm = T['io.flow.v0.models.romanization_form'];
|
|
@@ -20000,6 +19860,7 @@ export const surchargeSetting = T['io.flow.v0.models.surcharge_setting'];
|
|
|
20000
19860
|
export const surchargeSettingDisplay = T['io.flow.v0.models.surcharge_setting_display'];
|
|
20001
19861
|
export const tax = T['io.flow.v0.models.tax'];
|
|
20002
19862
|
export const taxApplicability = T['io.flow.v0.enums.tax_applicability'];
|
|
19863
|
+
export const taxDutyTransactionReasonCode = T['io.flow.v0.enums.tax_duty_transaction_reason_code'];
|
|
20003
19864
|
export const taxRegistration = T['io.flow.v0.models.tax_registration'];
|
|
20004
19865
|
export const taxRegistrationForm = T['io.flow.v0.models.tax_registration_form'];
|
|
20005
19866
|
export const taxReport = T['io.flow.v0.models.tax_report'];
|
|
@@ -20084,6 +19945,7 @@ export const transactionMetadataOutboundTransaction = T['io.flow.v0.models.trans
|
|
|
20084
19945
|
export const transactionMetadataPaymentTransaction = T['io.flow.v0.models.transaction_metadata_payment_transaction'];
|
|
20085
19946
|
export const transactionMetadataShippingLabel = T['io.flow.v0.models.transaction_metadata_shipping_label'];
|
|
20086
19947
|
export const transactionMetadataShippingLabelCarrier = T['io.flow.v0.models.transaction_metadata_shipping_label_carrier'];
|
|
19948
|
+
export const transactionMetadataTaxDuty = T['io.flow.v0.models.transaction_metadata_tax_duty'];
|
|
20087
19949
|
export const transactionMetadataTrueup = T['io.flow.v0.models.transaction_metadata_trueup'];
|
|
20088
19950
|
export const transactionMetadataTrueupBase = T['io.flow.v0.models.transaction_metadata_trueup_base'];
|
|
20089
19951
|
export const transactionMetadataTrueupBaseData = T['io.flow.v0.models.transaction_metadata_trueup_base_data'];
|