@flowio/api-prop-types 10.16.76 → 10.16.78
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 +225 -25
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +225 -25
- package/src/api.js +282 -18
package/src/api.js
CHANGED
|
@@ -823,6 +823,7 @@ T['io.flow.shopify.external.v0.models.product'] = PropTypes.exact({
|
|
|
823
823
|
published_at: PropTypes.string,
|
|
824
824
|
created_at: PropTypes.string.isRequired,
|
|
825
825
|
updated_at: PropTypes.string.isRequired,
|
|
826
|
+
has_variants_that_requires_components: PropTypes.bool,
|
|
826
827
|
});
|
|
827
828
|
|
|
828
829
|
T['io.flow.shopify.external.v0.models.response_products'] = PropTypes.exact({
|
|
@@ -967,6 +968,54 @@ T['io.flow.stripe.v0.models.payment_method_details_klarna_information'] = PropTy
|
|
|
967
968
|
preferred_locale: T['io.flow.stripe.v0.enums.preferred_locale_klarna'],
|
|
968
969
|
});
|
|
969
970
|
|
|
971
|
+
T['io.flow.stripe.v0.enums.bic_ideal'] = PropTypes.oneOf([
|
|
972
|
+
'ABNANL2A',
|
|
973
|
+
'ASNBNL21',
|
|
974
|
+
'BITSNL2A',
|
|
975
|
+
'BUNQNL2A',
|
|
976
|
+
'FVLBNL22',
|
|
977
|
+
'HANDNL2A',
|
|
978
|
+
'INGBNL2A',
|
|
979
|
+
'KNABNL2H',
|
|
980
|
+
'MOYONL21',
|
|
981
|
+
'NNBANL2G',
|
|
982
|
+
'NTSBDEB1',
|
|
983
|
+
'RABONL2U',
|
|
984
|
+
'RBRBNL21',
|
|
985
|
+
'REVOIE23',
|
|
986
|
+
'REVOLT21',
|
|
987
|
+
'SNSBNL2A',
|
|
988
|
+
'TRIONL2U',
|
|
989
|
+
]);
|
|
990
|
+
|
|
991
|
+
T['io.flow.stripe.v0.enums.bank_ideal'] = PropTypes.oneOf([
|
|
992
|
+
'abn_amro',
|
|
993
|
+
'asn_bank',
|
|
994
|
+
'bunq',
|
|
995
|
+
'handelsbanken',
|
|
996
|
+
'ing',
|
|
997
|
+
'knab',
|
|
998
|
+
'moneyou',
|
|
999
|
+
'n26',
|
|
1000
|
+
'nn',
|
|
1001
|
+
'rabobank',
|
|
1002
|
+
'regiobank',
|
|
1003
|
+
'revolut',
|
|
1004
|
+
'sns_bank',
|
|
1005
|
+
'triodos_bank',
|
|
1006
|
+
'van_lanschot',
|
|
1007
|
+
'yoursafe',
|
|
1008
|
+
]);
|
|
1009
|
+
|
|
1010
|
+
T['io.flow.stripe.v0.models.payment_method_details_ideal_information'] = PropTypes.exact({
|
|
1011
|
+
bank: T['io.flow.stripe.v0.enums.bank_ideal'],
|
|
1012
|
+
bic: T['io.flow.stripe.v0.enums.bic_ideal'],
|
|
1013
|
+
generated_sepa_debit: PropTypes.string,
|
|
1014
|
+
generated_sepa_debit_mandate: PropTypes.string,
|
|
1015
|
+
iban_last4: PropTypes.string,
|
|
1016
|
+
verified_name: PropTypes.string,
|
|
1017
|
+
});
|
|
1018
|
+
|
|
970
1019
|
T['io.flow.stripe.v0.enums.three_ds_result_reason'] = PropTypes.oneOf([
|
|
971
1020
|
'card_not_enrolled',
|
|
972
1021
|
'network_not_supported',
|
|
@@ -1024,6 +1073,19 @@ T['io.flow.stripe.v0.models.plan'] = PropTypes.exact({
|
|
|
1024
1073
|
type: PropTypes.string,
|
|
1025
1074
|
});
|
|
1026
1075
|
|
|
1076
|
+
T['io.flow.stripe.v0.enums.preferred_language_bancontact'] = PropTypes.oneOf(['de', 'en', 'fr', 'nl']);
|
|
1077
|
+
|
|
1078
|
+
T['io.flow.stripe.v0.models.payment_method_details_bancontact_information'] = PropTypes.exact({
|
|
1079
|
+
bank_code: PropTypes.string,
|
|
1080
|
+
bank_name: PropTypes.string,
|
|
1081
|
+
bic: PropTypes.string,
|
|
1082
|
+
generated_sepa_debit: PropTypes.string,
|
|
1083
|
+
generated_sepa_debit_mandate: PropTypes.string,
|
|
1084
|
+
iban_last4: PropTypes.string,
|
|
1085
|
+
preferred_language: T['io.flow.stripe.v0.enums.preferred_language_bancontact'],
|
|
1086
|
+
verified_name: PropTypes.string,
|
|
1087
|
+
});
|
|
1088
|
+
|
|
1027
1089
|
T['io.flow.stripe.v0.models.klarna_dob_form'] = PropTypes.exact({
|
|
1028
1090
|
day: PropTypes.number.isRequired,
|
|
1029
1091
|
month: PropTypes.number.isRequired,
|
|
@@ -1034,6 +1096,10 @@ T['io.flow.stripe.v0.models.payment_method_klarna_form'] = PropTypes.exact({
|
|
|
1034
1096
|
dob: T['io.flow.stripe.v0.models.klarna_dob_form'],
|
|
1035
1097
|
});
|
|
1036
1098
|
|
|
1099
|
+
T['io.flow.stripe.v0.models.payment_method_ideal_form'] = PropTypes.exact({
|
|
1100
|
+
bank: PropTypes.string,
|
|
1101
|
+
});
|
|
1102
|
+
|
|
1037
1103
|
T['io.flow.stripe.v0.models.payment_method_card_form'] = PropTypes.exact({
|
|
1038
1104
|
exp_month: PropTypes.string.isRequired,
|
|
1039
1105
|
exp_year: PropTypes.string.isRequired,
|
|
@@ -1050,6 +1116,10 @@ T['io.flow.stripe.v0.models.card_networks'] = PropTypes.exact({
|
|
|
1050
1116
|
preferred: PropTypes.string,
|
|
1051
1117
|
});
|
|
1052
1118
|
|
|
1119
|
+
T['io.flow.stripe.v0.models.payment_method_options_bancontact_form'] = PropTypes.exact({
|
|
1120
|
+
preferred_language: T['io.flow.stripe.v0.enums.preferred_language_bancontact'].isRequired,
|
|
1121
|
+
});
|
|
1122
|
+
|
|
1053
1123
|
T['io.flow.stripe.v0.models.payment_method_options_card_form'] = PropTypes.exact({
|
|
1054
1124
|
network: PropTypes.string,
|
|
1055
1125
|
request_three_d_secure: T['io.flow.stripe.v0.enums.request_three_d_secure_type'],
|
|
@@ -1057,6 +1127,10 @@ T['io.flow.stripe.v0.models.payment_method_options_card_form'] = PropTypes.exact
|
|
|
1057
1127
|
mcc: PropTypes.string,
|
|
1058
1128
|
});
|
|
1059
1129
|
|
|
1130
|
+
T['io.flow.stripe.v0.models.payment_method_options_bancontact'] = PropTypes.exact({
|
|
1131
|
+
preferred_language: T['io.flow.stripe.v0.enums.preferred_language_bancontact'].isRequired,
|
|
1132
|
+
});
|
|
1133
|
+
|
|
1060
1134
|
T['io.flow.stripe.v0.models.payment_method_options_card'] = PropTypes.exact({
|
|
1061
1135
|
network: PropTypes.string,
|
|
1062
1136
|
request_three_d_secure: T['io.flow.stripe.v0.enums.request_three_d_secure_type'],
|
|
@@ -1076,6 +1150,15 @@ T['io.flow.stripe.v0.enums.payment_intent_status'] = PropTypes.oneOf([
|
|
|
1076
1150
|
]);
|
|
1077
1151
|
|
|
1078
1152
|
T['io.flow.stripe.v0.enums.setup_future_usage'] = PropTypes.oneOf(['on_session', 'off_session']);
|
|
1153
|
+
|
|
1154
|
+
T['io.flow.stripe.v0.models.payment_method_options_ideal_form'] = PropTypes.exact({
|
|
1155
|
+
setup_future_usage: T['io.flow.stripe.v0.enums.setup_future_usage'],
|
|
1156
|
+
});
|
|
1157
|
+
|
|
1158
|
+
T['io.flow.stripe.v0.models.payment_method_options_ideal'] = PropTypes.exact({
|
|
1159
|
+
setup_future_usage: T['io.flow.stripe.v0.enums.setup_future_usage'],
|
|
1160
|
+
});
|
|
1161
|
+
|
|
1079
1162
|
T['io.flow.stripe.v0.enums.confirmation_method'] = PropTypes.oneOf(['automatic', 'manual']);
|
|
1080
1163
|
T['io.flow.stripe.v0.enums.capture_method'] = PropTypes.oneOf(['automatic', 'manual']);
|
|
1081
1164
|
|
|
@@ -1112,7 +1195,9 @@ T['io.flow.stripe.v0.models.payment_method_options_klarna_form'] = PropTypes.exa
|
|
|
1112
1195
|
|
|
1113
1196
|
T['io.flow.stripe.v0.models.payment_method_options_form'] = PropTypes.exact({
|
|
1114
1197
|
card: T['io.flow.stripe.v0.models.payment_method_options_card_form'],
|
|
1198
|
+
ideal: T['io.flow.stripe.v0.models.payment_method_options_ideal_form'],
|
|
1115
1199
|
klarna: T['io.flow.stripe.v0.models.payment_method_options_klarna_form'],
|
|
1200
|
+
bancontact: T['io.flow.stripe.v0.models.payment_method_options_bancontact_form'],
|
|
1116
1201
|
});
|
|
1117
1202
|
|
|
1118
1203
|
T['io.flow.stripe.v0.models.payment_method_options_klarna'] = PropTypes.exact({
|
|
@@ -1124,7 +1209,9 @@ T['io.flow.stripe.v0.models.payment_method_options_klarna'] = PropTypes.exact({
|
|
|
1124
1209
|
|
|
1125
1210
|
T['io.flow.stripe.v0.models.payment_method_options'] = PropTypes.exact({
|
|
1126
1211
|
card: T['io.flow.stripe.v0.models.payment_method_options_card'],
|
|
1212
|
+
ideal: T['io.flow.stripe.v0.models.payment_method_options_ideal'],
|
|
1127
1213
|
klarna: T['io.flow.stripe.v0.models.payment_method_options_klarna'],
|
|
1214
|
+
bancontact: T['io.flow.stripe.v0.models.payment_method_options_bancontact'],
|
|
1128
1215
|
});
|
|
1129
1216
|
|
|
1130
1217
|
T['io.flow.stripe.v0.enums.order_item_type'] = PropTypes.oneOf(['sku', 'tax', 'shipping', 'discount']);
|
|
@@ -1197,6 +1284,13 @@ T['io.flow.stripe.v0.models.payment_method_form_klarna'] = PropTypes.exact({
|
|
|
1197
1284
|
klarna: T['io.flow.stripe.v0.models.payment_method_klarna_form'].isRequired,
|
|
1198
1285
|
});
|
|
1199
1286
|
|
|
1287
|
+
T['io.flow.stripe.v0.models.payment_method_form_ideal'] = PropTypes.exact({
|
|
1288
|
+
type: PropTypes.oneOf(['ideal']).isRequired,
|
|
1289
|
+
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
1290
|
+
metadata: PropTypes.object,
|
|
1291
|
+
ideal: T['io.flow.stripe.v0.models.payment_method_ideal_form'].isRequired,
|
|
1292
|
+
});
|
|
1293
|
+
|
|
1200
1294
|
T['io.flow.stripe.v0.models.payment_method_form_card'] = PropTypes.exact({
|
|
1201
1295
|
type: PropTypes.oneOf(['card']).isRequired,
|
|
1202
1296
|
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
@@ -1204,9 +1298,18 @@ T['io.flow.stripe.v0.models.payment_method_form_card'] = PropTypes.exact({
|
|
|
1204
1298
|
card: T['io.flow.stripe.v0.models.payment_method_card_form'].isRequired,
|
|
1205
1299
|
});
|
|
1206
1300
|
|
|
1301
|
+
T['io.flow.stripe.v0.models.payment_method_form_bancontact'] = PropTypes.exact({
|
|
1302
|
+
type: PropTypes.oneOf(['bancontact']).isRequired,
|
|
1303
|
+
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
1304
|
+
metadata: PropTypes.object,
|
|
1305
|
+
bancontact: PropTypes.object.isRequired,
|
|
1306
|
+
});
|
|
1307
|
+
|
|
1207
1308
|
T['io.flow.stripe.v0.unions.payment_method_form'] = PropTypes.oneOfType([
|
|
1208
1309
|
T['io.flow.stripe.v0.models.payment_method_form_card'],
|
|
1310
|
+
T['io.flow.stripe.v0.models.payment_method_form_ideal'],
|
|
1209
1311
|
T['io.flow.stripe.v0.models.payment_method_form_klarna'],
|
|
1312
|
+
T['io.flow.stripe.v0.models.payment_method_form_bancontact'],
|
|
1210
1313
|
]);
|
|
1211
1314
|
|
|
1212
1315
|
T['io.flow.stripe.v0.models.payment_method_data_klarna'] = PropTypes.exact({
|
|
@@ -1216,6 +1319,13 @@ T['io.flow.stripe.v0.models.payment_method_data_klarna'] = PropTypes.exact({
|
|
|
1216
1319
|
klarna: T['io.flow.stripe.v0.models.payment_method_klarna_form'].isRequired,
|
|
1217
1320
|
});
|
|
1218
1321
|
|
|
1322
|
+
T['io.flow.stripe.v0.models.payment_method_data_ideal'] = PropTypes.exact({
|
|
1323
|
+
type: PropTypes.oneOf(['ideal']).isRequired,
|
|
1324
|
+
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
1325
|
+
metadata: PropTypes.object,
|
|
1326
|
+
ideal: T['io.flow.stripe.v0.models.payment_method_ideal_form'].isRequired,
|
|
1327
|
+
});
|
|
1328
|
+
|
|
1219
1329
|
T['io.flow.stripe.v0.models.payment_method_data_card'] = PropTypes.exact({
|
|
1220
1330
|
type: PropTypes.oneOf(['card']).isRequired,
|
|
1221
1331
|
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
@@ -1223,9 +1333,17 @@ T['io.flow.stripe.v0.models.payment_method_data_card'] = PropTypes.exact({
|
|
|
1223
1333
|
card: T['io.flow.stripe.v0.models.payment_method_card_form'].isRequired,
|
|
1224
1334
|
});
|
|
1225
1335
|
|
|
1336
|
+
T['io.flow.stripe.v0.models.payment_method_data_bancontact'] = PropTypes.exact({
|
|
1337
|
+
type: PropTypes.oneOf(['bancontact']).isRequired,
|
|
1338
|
+
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
1339
|
+
metadata: PropTypes.object,
|
|
1340
|
+
});
|
|
1341
|
+
|
|
1226
1342
|
T['io.flow.stripe.v0.unions.payment_method_data'] = PropTypes.oneOfType([
|
|
1227
1343
|
T['io.flow.stripe.v0.models.payment_method_data_card'],
|
|
1344
|
+
T['io.flow.stripe.v0.models.payment_method_data_ideal'],
|
|
1228
1345
|
T['io.flow.stripe.v0.models.payment_method_data_klarna'],
|
|
1346
|
+
T['io.flow.stripe.v0.models.payment_method_data_bancontact'],
|
|
1229
1347
|
]);
|
|
1230
1348
|
|
|
1231
1349
|
T['io.flow.stripe.v0.models.payment_intent_confirmation_form'] = PropTypes.exact({
|
|
@@ -1473,11 +1591,21 @@ T['io.flow.stripe.v0.models.charge_request'] = PropTypes.exact({
|
|
|
1473
1591
|
transfer_data: T['io.flow.stripe.v0.models.transfer_data'],
|
|
1474
1592
|
});
|
|
1475
1593
|
|
|
1594
|
+
T['io.flow.stripe.v0.models.payment_method_details_bancontact'] = PropTypes.exact({
|
|
1595
|
+
type: PropTypes.oneOf(['bancontact']).isRequired,
|
|
1596
|
+
bancontact: T['io.flow.stripe.v0.models.payment_method_details_bancontact_information'].isRequired,
|
|
1597
|
+
});
|
|
1598
|
+
|
|
1476
1599
|
T['io.flow.stripe.v0.models.payment_method_details_klarna'] = PropTypes.exact({
|
|
1477
1600
|
type: PropTypes.oneOf(['klarna']).isRequired,
|
|
1478
1601
|
klarna: T['io.flow.stripe.v0.models.payment_method_details_klarna_information'].isRequired,
|
|
1479
1602
|
});
|
|
1480
1603
|
|
|
1604
|
+
T['io.flow.stripe.v0.models.payment_method_details_ideal'] = PropTypes.exact({
|
|
1605
|
+
type: PropTypes.oneOf(['ideal']).isRequired,
|
|
1606
|
+
ideal: T['io.flow.stripe.v0.models.payment_method_details_ideal_information'].isRequired,
|
|
1607
|
+
});
|
|
1608
|
+
|
|
1481
1609
|
T['io.flow.stripe.v0.models.source_order'] = PropTypes.exact({
|
|
1482
1610
|
amount: PropTypes.number,
|
|
1483
1611
|
currency: PropTypes.string,
|
|
@@ -1725,8 +1853,10 @@ T['io.flow.stripe.v0.models.payment_method'] = PropTypes.exact({
|
|
|
1725
1853
|
id: PropTypes.string.isRequired,
|
|
1726
1854
|
object: PropTypes.string.isRequired,
|
|
1727
1855
|
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
1856
|
+
bancontact: PropTypes.object,
|
|
1728
1857
|
card: T['io.flow.stripe.v0.models.payment_method_card_details'],
|
|
1729
1858
|
card_present: PropTypes.object,
|
|
1859
|
+
ideal: PropTypes.object,
|
|
1730
1860
|
klarna: PropTypes.object,
|
|
1731
1861
|
created: PropTypes.number.isRequired,
|
|
1732
1862
|
customer: PropTypes.string,
|
|
@@ -1785,7 +1915,9 @@ T['io.flow.stripe.v0.models.payment_method_details_card'] = PropTypes.exact({
|
|
|
1785
1915
|
|
|
1786
1916
|
T['io.flow.stripe.v0.unions.payment_method_details'] = PropTypes.oneOfType([
|
|
1787
1917
|
T['io.flow.stripe.v0.models.payment_method_details_card'],
|
|
1918
|
+
T['io.flow.stripe.v0.models.payment_method_details_ideal'],
|
|
1788
1919
|
T['io.flow.stripe.v0.models.payment_method_details_klarna'],
|
|
1920
|
+
T['io.flow.stripe.v0.models.payment_method_details_bancontact'],
|
|
1789
1921
|
]);
|
|
1790
1922
|
|
|
1791
1923
|
T['io.flow.stripe.v0.enums.requested_capabilities'] = PropTypes.oneOf(['card_payments', 'legacy_payments', 'transfers']);
|
|
@@ -2248,6 +2380,13 @@ T['io.flow.v0.models.query_builder_query_form'] = PropTypes.exact({
|
|
|
2248
2380
|
q: PropTypes.string.isRequired,
|
|
2249
2381
|
});
|
|
2250
2382
|
|
|
2383
|
+
T['io.flow.v0.models.payment_request_cancellation_reason_order_missing'] = PropTypes.exact({
|
|
2384
|
+
type: PropTypes.oneOf(['order_missing']).isRequired,
|
|
2385
|
+
description: PropTypes.string,
|
|
2386
|
+
});
|
|
2387
|
+
|
|
2388
|
+
T['io.flow.v0.unions.payment_request_cancellation_reason'] = PropTypes.oneOfType([T['io.flow.v0.models.payment_request_cancellation_reason_order_missing']]);
|
|
2389
|
+
|
|
2251
2390
|
T['io.flow.v0.models.merchant_of_record_payment_form'] = PropTypes.exact({
|
|
2252
2391
|
discriminator: PropTypes.oneOf(['merchant_of_record_payment_form']).isRequired,
|
|
2253
2392
|
method: PropTypes.string.isRequired,
|
|
@@ -2417,6 +2556,14 @@ T['io.flow.v0.models.checkout_optin_responses_deleted'] = PropTypes.exact({
|
|
|
2417
2556
|
id: PropTypes.string.isRequired,
|
|
2418
2557
|
});
|
|
2419
2558
|
|
|
2559
|
+
T['io.flow.v0.models.label_processing_modification_deleted'] = PropTypes.exact({
|
|
2560
|
+
discriminator: PropTypes.oneOf(['label_processing_modification_deleted']).isRequired,
|
|
2561
|
+
event_id: PropTypes.string.isRequired,
|
|
2562
|
+
timestamp: PropTypes.string.isRequired,
|
|
2563
|
+
organization: PropTypes.string.isRequired,
|
|
2564
|
+
id: PropTypes.string.isRequired,
|
|
2565
|
+
});
|
|
2566
|
+
|
|
2420
2567
|
T['io.flow.v0.models.manifested_label_deleted'] = PropTypes.exact({
|
|
2421
2568
|
discriminator: PropTypes.oneOf(['manifested_label_deleted']).isRequired,
|
|
2422
2569
|
event_id: PropTypes.string.isRequired,
|
|
@@ -3014,6 +3161,20 @@ T['io.flow.v0.models.user_form'] = PropTypes.exact({
|
|
|
3014
3161
|
|
|
3015
3162
|
T['io.flow.v0.enums.user_status'] = PropTypes.oneOf(['pending', 'active', 'inactive']);
|
|
3016
3163
|
|
|
3164
|
+
T['io.flow.v0.models.trueup_label_base_weight'] = PropTypes.exact({
|
|
3165
|
+
weight: PropTypes.number.isRequired,
|
|
3166
|
+
});
|
|
3167
|
+
|
|
3168
|
+
T['io.flow.v0.models.trueup_label_fuel'] = PropTypes.exact({
|
|
3169
|
+
amount: PropTypes.number.isRequired,
|
|
3170
|
+
percentage: PropTypes.number,
|
|
3171
|
+
per_weight_unit: PropTypes.number,
|
|
3172
|
+
});
|
|
3173
|
+
|
|
3174
|
+
T['io.flow.v0.models.trueup_label_base_v2'] = PropTypes.exact({
|
|
3175
|
+
amount: PropTypes.number.isRequired,
|
|
3176
|
+
});
|
|
3177
|
+
|
|
3017
3178
|
T['io.flow.v0.models.dimensional_weight'] = PropTypes.exact({
|
|
3018
3179
|
weight: PropTypes.number.isRequired,
|
|
3019
3180
|
length: PropTypes.number,
|
|
@@ -3025,12 +3186,18 @@ T['io.flow.v0.models.dead_weight'] = PropTypes.exact({
|
|
|
3025
3186
|
weight: PropTypes.number.isRequired,
|
|
3026
3187
|
});
|
|
3027
3188
|
|
|
3189
|
+
T['io.flow.v0.models.trueup_label_weights'] = PropTypes.exact({
|
|
3190
|
+
base: T['io.flow.v0.models.trueup_label_base_weight'].isRequired,
|
|
3191
|
+
dead: T['io.flow.v0.models.dead_weight'],
|
|
3192
|
+
dimensional: T['io.flow.v0.models.dimensional_weight'],
|
|
3193
|
+
});
|
|
3194
|
+
|
|
3028
3195
|
T['io.flow.v0.models.trueup_label_base'] = PropTypes.exact({
|
|
3029
3196
|
amount: PropTypes.number.isRequired,
|
|
3030
3197
|
weight: PropTypes.number.isRequired,
|
|
3031
3198
|
});
|
|
3032
3199
|
|
|
3033
|
-
T['io.flow.v0.enums.trueup_source'] = PropTypes.oneOf(['flow', 'channel', 'dhl-parcel', 'dhl']);
|
|
3200
|
+
T['io.flow.v0.enums.trueup_source'] = PropTypes.oneOf(['flow', 'channel', 'dhl-parcel', 'dhl', 'ups']);
|
|
3034
3201
|
|
|
3035
3202
|
T['io.flow.v0.models.transaction_metadata_shipping_label_carrier'] = PropTypes.exact({
|
|
3036
3203
|
id: PropTypes.string.isRequired,
|
|
@@ -3041,6 +3208,10 @@ T['io.flow.v0.models.transaction_metadata_original_transaction'] = PropTypes.exa
|
|
|
3041
3208
|
id: PropTypes.string.isRequired,
|
|
3042
3209
|
});
|
|
3043
3210
|
|
|
3211
|
+
T['io.flow.v0.models.transaction_metadata_failed_payout_reference'] = PropTypes.exact({
|
|
3212
|
+
id: PropTypes.string.isRequired,
|
|
3213
|
+
});
|
|
3214
|
+
|
|
3044
3215
|
T['io.flow.v0.models.transaction_metadata_channel_card_metadata_issuer_summary'] = PropTypes.exact({
|
|
3045
3216
|
iin: PropTypes.string.isRequired,
|
|
3046
3217
|
country: PropTypes.string.isRequired,
|
|
@@ -3969,6 +4140,7 @@ T['io.flow.v0.enums.payment_request_review_check_type'] = PropTypes.oneOf([
|
|
|
3969
4140
|
'order_missing_information',
|
|
3970
4141
|
'order_domestic',
|
|
3971
4142
|
'order_mismatched_currencies',
|
|
4143
|
+
'order_missing',
|
|
3972
4144
|
]);
|
|
3973
4145
|
|
|
3974
4146
|
T['io.flow.v0.models.payment_method_data_selected_payment_option'] = PropTypes.exact({
|
|
@@ -4136,6 +4308,15 @@ T['io.flow.v0.enums.payment_status'] = PropTypes.oneOf([
|
|
|
4136
4308
|
|
|
4137
4309
|
T['io.flow.v0.enums.refund_decline_code'] = PropTypes.oneOf(['expired', 'insufficient_funds', 'unknown']);
|
|
4138
4310
|
|
|
4311
|
+
T['io.flow.v0.models.payment_processor_transaction_details_apm'] = PropTypes.exact({
|
|
4312
|
+
discriminator: PropTypes.oneOf(['apm']).isRequired,
|
|
4313
|
+
transaction_identifier: PropTypes.string,
|
|
4314
|
+
capture_identifier: PropTypes.string,
|
|
4315
|
+
method_type: PropTypes.string,
|
|
4316
|
+
result_status: PropTypes.string,
|
|
4317
|
+
reason_code: PropTypes.string,
|
|
4318
|
+
});
|
|
4319
|
+
|
|
4139
4320
|
T['io.flow.v0.models.payment_processor_transaction_details_card'] = PropTypes.exact({
|
|
4140
4321
|
discriminator: PropTypes.oneOf(['card']).isRequired,
|
|
4141
4322
|
transaction_identifier: PropTypes.string,
|
|
@@ -4152,7 +4333,10 @@ T['io.flow.v0.models.payment_processor_account_reference'] = PropTypes.exact({
|
|
|
4152
4333
|
key: PropTypes.string.isRequired,
|
|
4153
4334
|
});
|
|
4154
4335
|
|
|
4155
|
-
T['io.flow.v0.unions.payment_processor_transaction_details'] = PropTypes.oneOfType([
|
|
4336
|
+
T['io.flow.v0.unions.payment_processor_transaction_details'] = PropTypes.oneOfType([
|
|
4337
|
+
T['io.flow.v0.models.payment_processor_transaction_details_card'],
|
|
4338
|
+
T['io.flow.v0.models.payment_processor_transaction_details_apm'],
|
|
4339
|
+
]);
|
|
4156
4340
|
|
|
4157
4341
|
T['io.flow.v0.models.payment_processor_identifier'] = PropTypes.exact({
|
|
4158
4342
|
id: PropTypes.string.isRequired,
|
|
@@ -4678,6 +4862,7 @@ T['io.flow.v0.models.redirect_authorization_details'] = PropTypes.exact({
|
|
|
4678
4862
|
T['io.flow.v0.models.paypal_authorization_details'] = PropTypes.exact({
|
|
4679
4863
|
discriminator: PropTypes.oneOf(['paypal_authorization_details']).isRequired,
|
|
4680
4864
|
payment_id: PropTypes.string.isRequired,
|
|
4865
|
+
internal_payment_id: PropTypes.string,
|
|
4681
4866
|
payment_method: PropTypes.string,
|
|
4682
4867
|
payment_state: PropTypes.string,
|
|
4683
4868
|
payer_id: PropTypes.string,
|
|
@@ -4781,6 +4966,11 @@ T['io.flow.v0.enums.merchant_rejected_reason'] = PropTypes.oneOf([
|
|
|
4781
4966
|
'merchant_failed_kyb_review',
|
|
4782
4967
|
]);
|
|
4783
4968
|
|
|
4969
|
+
T['io.flow.v0.models.rejection_put_form'] = PropTypes.exact({
|
|
4970
|
+
reason: T['io.flow.v0.enums.merchant_rejected_reason'].isRequired,
|
|
4971
|
+
description: PropTypes.string.isRequired,
|
|
4972
|
+
});
|
|
4973
|
+
|
|
4784
4974
|
T['io.flow.v0.models.merchant_rejected'] = PropTypes.exact({
|
|
4785
4975
|
discriminator: PropTypes.oneOf(['merchant_rejected']).isRequired,
|
|
4786
4976
|
reason: T['io.flow.v0.enums.merchant_rejected_reason'].isRequired,
|
|
@@ -4943,6 +5133,15 @@ T['io.flow.v0.models.trueup_label_units'] = PropTypes.exact({
|
|
|
4943
5133
|
length: T['io.flow.v0.enums.unit_of_length'],
|
|
4944
5134
|
});
|
|
4945
5135
|
|
|
5136
|
+
T['io.flow.v0.models.transaction_metadata_trueup_base_data'] = PropTypes.exact({
|
|
5137
|
+
source: T['io.flow.v0.enums.trueup_source'].isRequired,
|
|
5138
|
+
weights: T['io.flow.v0.models.trueup_label_weights'].isRequired,
|
|
5139
|
+
units: T['io.flow.v0.models.trueup_label_units'].isRequired,
|
|
5140
|
+
base: T['io.flow.v0.models.trueup_label_base_v2'].isRequired,
|
|
5141
|
+
fuel: T['io.flow.v0.models.trueup_label_fuel'],
|
|
5142
|
+
total: PropTypes.number.isRequired,
|
|
5143
|
+
});
|
|
5144
|
+
|
|
4946
5145
|
T['io.flow.v0.models.label_units'] = PropTypes.exact({
|
|
4947
5146
|
currency: PropTypes.string.isRequired,
|
|
4948
5147
|
weight: T['io.flow.v0.enums.unit_of_weight'].isRequired,
|
|
@@ -5007,6 +5206,12 @@ T['io.flow.v0.enums.trueup_surcharge_type'] = PropTypes.oneOf([
|
|
|
5007
5206
|
'eei_filing',
|
|
5008
5207
|
'fixed_ddp',
|
|
5009
5208
|
'fixed_currency_conversion',
|
|
5209
|
+
'prohibited_item',
|
|
5210
|
+
'undeliverable_shipment',
|
|
5211
|
+
'signature_required',
|
|
5212
|
+
'direct_delivery',
|
|
5213
|
+
'saturday_stop',
|
|
5214
|
+
'residential_extended_area_pickup',
|
|
5010
5215
|
]);
|
|
5011
5216
|
|
|
5012
5217
|
T['io.flow.v0.models.trueup_label_surcharge'] = PropTypes.exact({
|
|
@@ -5016,6 +5221,11 @@ T['io.flow.v0.models.trueup_label_surcharge'] = PropTypes.exact({
|
|
|
5016
5221
|
per_weight_unit: PropTypes.number,
|
|
5017
5222
|
});
|
|
5018
5223
|
|
|
5224
|
+
T['io.flow.v0.models.transaction_metadata_trueup_surcharge_data'] = PropTypes.exact({
|
|
5225
|
+
source: T['io.flow.v0.enums.trueup_source'].isRequired,
|
|
5226
|
+
surcharge: T['io.flow.v0.models.trueup_label_surcharge'].isRequired,
|
|
5227
|
+
});
|
|
5228
|
+
|
|
5019
5229
|
T['io.flow.v0.models.transaction_metadata_trueup_data'] = PropTypes.exact({
|
|
5020
5230
|
source: T['io.flow.v0.enums.trueup_source'].isRequired,
|
|
5021
5231
|
units: T['io.flow.v0.models.trueup_label_units'].isRequired,
|
|
@@ -5026,10 +5236,6 @@ T['io.flow.v0.models.transaction_metadata_trueup_data'] = PropTypes.exact({
|
|
|
5026
5236
|
dimensional: T['io.flow.v0.models.dimensional_weight'],
|
|
5027
5237
|
});
|
|
5028
5238
|
|
|
5029
|
-
T['io.flow.v0.models.transaction_metadata_carrier_fee_data'] = PropTypes.exact({
|
|
5030
|
-
surcharges: PropTypes.arrayOf(T['io.flow.v0.models.trueup_label_surcharge']).isRequired,
|
|
5031
|
-
});
|
|
5032
|
-
|
|
5033
5239
|
T['io.flow.v0.models.label_surcharge'] = PropTypes.exact({
|
|
5034
5240
|
amount: PropTypes.number.isRequired,
|
|
5035
5241
|
type: T['io.flow.v0.enums.trueup_surcharge_type'].isRequired,
|
|
@@ -6868,9 +7074,20 @@ T['io.flow.v0.enums.fee_deduction_type'] = PropTypes.oneOf([
|
|
|
6868
7074
|
|
|
6869
7075
|
T['io.flow.v0.models.transaction_metadata_payment_transaction'] = PropTypes.exact({
|
|
6870
7076
|
discriminator: PropTypes.oneOf(['payment_transaction']).isRequired,
|
|
7077
|
+
id: PropTypes.string,
|
|
6871
7078
|
key: PropTypes.string,
|
|
6872
7079
|
});
|
|
6873
7080
|
|
|
7081
|
+
T['io.flow.v0.models.transaction_metadata_channel_organization_transaction'] = PropTypes.exact({
|
|
7082
|
+
id: PropTypes.string.isRequired,
|
|
7083
|
+
metadata: T['io.flow.v0.models.transaction_metadata_payment_transaction'].isRequired,
|
|
7084
|
+
});
|
|
7085
|
+
|
|
7086
|
+
T['io.flow.v0.models.transaction_metadata_failed_payout'] = PropTypes.exact({
|
|
7087
|
+
discriminator: PropTypes.oneOf(['failed_payout']).isRequired,
|
|
7088
|
+
failed_payout: T['io.flow.v0.models.transaction_metadata_failed_payout_reference'].isRequired,
|
|
7089
|
+
});
|
|
7090
|
+
|
|
6874
7091
|
T['io.flow.v0.models.transaction_metadata_manual'] = PropTypes.exact({
|
|
6875
7092
|
discriminator: PropTypes.oneOf(['manual']).isRequired,
|
|
6876
7093
|
description: PropTypes.string.isRequired,
|
|
@@ -6878,13 +7095,6 @@ T['io.flow.v0.models.transaction_metadata_manual'] = PropTypes.exact({
|
|
|
6878
7095
|
url: PropTypes.string,
|
|
6879
7096
|
});
|
|
6880
7097
|
|
|
6881
|
-
T['io.flow.v0.models.transaction_metadata_carrier_fee'] = PropTypes.exact({
|
|
6882
|
-
discriminator: PropTypes.oneOf(['carrier_fee']).isRequired,
|
|
6883
|
-
outbound: T['io.flow.v0.models.transaction_metadata_outbound_transaction'].isRequired,
|
|
6884
|
-
estimate: T['io.flow.v0.models.transaction_metadata_carrier_fee_data'].isRequired,
|
|
6885
|
-
actual: T['io.flow.v0.models.transaction_metadata_carrier_fee_data'].isRequired,
|
|
6886
|
-
});
|
|
6887
|
-
|
|
6888
7098
|
T['io.flow.v0.models.transaction_metadata_carrier_charge'] = PropTypes.exact({
|
|
6889
7099
|
discriminator: PropTypes.oneOf(['carrier_charge']).isRequired,
|
|
6890
7100
|
reason: T['io.flow.v0.enums.carrier_charge_reason'].isRequired,
|
|
@@ -6895,6 +7105,20 @@ T['io.flow.v0.models.transaction_metadata_carrier_charge'] = PropTypes.exact({
|
|
|
6895
7105
|
outbound: T['io.flow.v0.models.transaction_metadata_outbound_transaction'],
|
|
6896
7106
|
});
|
|
6897
7107
|
|
|
7108
|
+
T['io.flow.v0.models.transaction_metadata_trueup_surcharge'] = PropTypes.exact({
|
|
7109
|
+
discriminator: PropTypes.oneOf(['trueup_surcharge']).isRequired,
|
|
7110
|
+
original: T['io.flow.v0.models.transaction_metadata_original_transaction'].isRequired,
|
|
7111
|
+
estimate: T['io.flow.v0.models.transaction_metadata_trueup_surcharge_data'].isRequired,
|
|
7112
|
+
actual: T['io.flow.v0.models.transaction_metadata_trueup_surcharge_data'].isRequired,
|
|
7113
|
+
});
|
|
7114
|
+
|
|
7115
|
+
T['io.flow.v0.models.transaction_metadata_trueup_base'] = PropTypes.exact({
|
|
7116
|
+
discriminator: PropTypes.oneOf(['trueup_base']).isRequired,
|
|
7117
|
+
original: T['io.flow.v0.models.transaction_metadata_original_transaction'].isRequired,
|
|
7118
|
+
estimate: T['io.flow.v0.models.transaction_metadata_trueup_base_data'].isRequired,
|
|
7119
|
+
actual: T['io.flow.v0.models.transaction_metadata_trueup_base_data'].isRequired,
|
|
7120
|
+
});
|
|
7121
|
+
|
|
6898
7122
|
T['io.flow.v0.models.transaction_metadata_trueup'] = PropTypes.exact({
|
|
6899
7123
|
discriminator: PropTypes.oneOf(['trueup']).isRequired,
|
|
6900
7124
|
original: T['io.flow.v0.models.transaction_metadata_original_transaction'].isRequired,
|
|
@@ -6936,9 +7160,10 @@ T['io.flow.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
6936
7160
|
'shipping_label_service',
|
|
6937
7161
|
'shipping_label_revenue_share',
|
|
6938
7162
|
'trueup',
|
|
7163
|
+
'trueup_base',
|
|
7164
|
+
'trueup_surcharge',
|
|
6939
7165
|
'carrier_charge',
|
|
6940
7166
|
'carrier_charge_revenue_share',
|
|
6941
|
-
'carrier_fee',
|
|
6942
7167
|
'platform_fee',
|
|
6943
7168
|
'tax',
|
|
6944
7169
|
'duty',
|
|
@@ -6950,6 +7175,7 @@ T['io.flow.v0.enums.transaction_source'] = PropTypes.oneOf([
|
|
|
6950
7175
|
'order_service',
|
|
6951
7176
|
'virtual_card_capture',
|
|
6952
7177
|
'virtual_card_refund',
|
|
7178
|
+
'failed_payout',
|
|
6953
7179
|
]);
|
|
6954
7180
|
|
|
6955
7181
|
T['io.flow.v0.models.parent_transaction_summary'] = PropTypes.exact({
|
|
@@ -7619,15 +7845,18 @@ T['io.flow.v0.models.transaction_metadata_channel'] = PropTypes.exact({
|
|
|
7619
7845
|
discriminator: PropTypes.oneOf(['channel']).isRequired,
|
|
7620
7846
|
method: PropTypes.string.isRequired,
|
|
7621
7847
|
card: T['io.flow.v0.models.transaction_metadata_channel_card_metadata'],
|
|
7848
|
+
organization_transaction: T['io.flow.v0.models.transaction_metadata_channel_organization_transaction'].isRequired,
|
|
7622
7849
|
});
|
|
7623
7850
|
|
|
7624
7851
|
T['io.flow.v0.unions.transaction_metadata'] = PropTypes.oneOfType([
|
|
7625
7852
|
T['io.flow.v0.models.transaction_metadata_shipping_label'],
|
|
7626
7853
|
T['io.flow.v0.models.transaction_metadata_channel'],
|
|
7627
7854
|
T['io.flow.v0.models.transaction_metadata_trueup'],
|
|
7855
|
+
T['io.flow.v0.models.transaction_metadata_trueup_base'],
|
|
7856
|
+
T['io.flow.v0.models.transaction_metadata_trueup_surcharge'],
|
|
7628
7857
|
T['io.flow.v0.models.transaction_metadata_carrier_charge'],
|
|
7629
|
-
T['io.flow.v0.models.transaction_metadata_carrier_fee'],
|
|
7630
7858
|
T['io.flow.v0.models.transaction_metadata_manual'],
|
|
7859
|
+
T['io.flow.v0.models.transaction_metadata_failed_payout'],
|
|
7631
7860
|
T['io.flow.v0.models.transaction_metadata_payment_transaction'],
|
|
7632
7861
|
]);
|
|
7633
7862
|
|
|
@@ -11830,6 +12059,21 @@ T['io.flow.v0.models.quote_form'] = PropTypes.exact({
|
|
|
11830
12059
|
direction: T['io.flow.v0.enums.lane_direction'],
|
|
11831
12060
|
});
|
|
11832
12061
|
|
|
12062
|
+
T['io.flow.v0.models.label_processing_modification'] = PropTypes.exact({
|
|
12063
|
+
id: PropTypes.string.isRequired,
|
|
12064
|
+
modifications: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
12065
|
+
destination: T['io.flow.v0.models.shipping_address'].isRequired,
|
|
12066
|
+
destination_provided_to_carrier: T['io.flow.v0.models.shipping_address'],
|
|
12067
|
+
});
|
|
12068
|
+
|
|
12069
|
+
T['io.flow.v0.models.label_processing_modification_upserted'] = PropTypes.exact({
|
|
12070
|
+
discriminator: PropTypes.oneOf(['label_processing_modification_upserted']).isRequired,
|
|
12071
|
+
event_id: PropTypes.string.isRequired,
|
|
12072
|
+
timestamp: PropTypes.string.isRequired,
|
|
12073
|
+
organization: PropTypes.string.isRequired,
|
|
12074
|
+
label_processing_modification: T['io.flow.v0.models.label_processing_modification'].isRequired,
|
|
12075
|
+
});
|
|
12076
|
+
|
|
11833
12077
|
T['io.flow.v0.models.hop_estimate_v2'] = PropTypes.exact({
|
|
11834
12078
|
origin_address: T['io.flow.v0.models.shipping_address'].isRequired,
|
|
11835
12079
|
destination_address: T['io.flow.v0.models.shipping_address'].isRequired,
|
|
@@ -13371,6 +13615,8 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
13371
13615
|
T['io.flow.v0.models.notification_deleted_v2'],
|
|
13372
13616
|
T['io.flow.v0.models.manifested_label_upserted'],
|
|
13373
13617
|
T['io.flow.v0.models.manifested_label_deleted'],
|
|
13618
|
+
T['io.flow.v0.models.label_processing_modification_upserted'],
|
|
13619
|
+
T['io.flow.v0.models.label_processing_modification_deleted'],
|
|
13374
13620
|
T['io.flow.v0.models.local_item_upserted'],
|
|
13375
13621
|
T['io.flow.v0.models.local_item_deleted'],
|
|
13376
13622
|
T['io.flow.v0.models.merchant_application_upserted'],
|
|
@@ -13753,6 +13999,8 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
13753
13999
|
'notification_deleted_v2',
|
|
13754
14000
|
'manifested_label_upserted',
|
|
13755
14001
|
'manifested_label_deleted',
|
|
14002
|
+
'label_processing_modification_upserted',
|
|
14003
|
+
'label_processing_modification_deleted',
|
|
13756
14004
|
'local_item_upserted',
|
|
13757
14005
|
'local_item_deleted',
|
|
13758
14006
|
'merchant_application_upserted',
|
|
@@ -14600,7 +14848,7 @@ T['io.flow.stripe.v0.enums.klarna_payment_method_category_type'] = PropTypes.one
|
|
|
14600
14848
|
'pay_over_time',
|
|
14601
14849
|
]);
|
|
14602
14850
|
|
|
14603
|
-
T['io.flow.stripe.v0.enums.payment_method_type'] = PropTypes.oneOf(['card', 'card_present', 'klarna']);
|
|
14851
|
+
T['io.flow.stripe.v0.enums.payment_method_type'] = PropTypes.oneOf(['card', 'card_present', 'ideal', 'klarna', 'bancontact']);
|
|
14604
14852
|
|
|
14605
14853
|
T['io.flow.stripe.v0.models.card_request'] = PropTypes.exact({
|
|
14606
14854
|
object: PropTypes.string.isRequired,
|
|
@@ -15518,6 +15766,9 @@ export const labelDeletedV2 = T['io.flow.v0.models.label_deleted_v2'];
|
|
|
15518
15766
|
export const labelFormatDeleted = T['io.flow.v0.models.label_format_deleted'];
|
|
15519
15767
|
export const labelFormatUpserted = T['io.flow.v0.models.label_format_upserted'];
|
|
15520
15768
|
export const labelOrderSummary = T['io.flow.v0.models.label_order_summary'];
|
|
15769
|
+
export const labelProcessingModification = T['io.flow.v0.models.label_processing_modification'];
|
|
15770
|
+
export const labelProcessingModificationDeleted = T['io.flow.v0.models.label_processing_modification_deleted'];
|
|
15771
|
+
export const labelProcessingModificationUpserted = T['io.flow.v0.models.label_processing_modification_upserted'];
|
|
15521
15772
|
export const labelReference = T['io.flow.v0.models.label_reference'];
|
|
15522
15773
|
export const labelRequestMethod = T['io.flow.v0.enums.label_request_method'];
|
|
15523
15774
|
export const labelSurcharge = T['io.flow.v0.models.label_surcharge'];
|
|
@@ -15903,6 +16154,7 @@ export const paymentProcessorAccountReference = T['io.flow.v0.models.payment_pro
|
|
|
15903
16154
|
export const paymentProcessorIdentifier = T['io.flow.v0.models.payment_processor_identifier'];
|
|
15904
16155
|
export const paymentProcessorReference = T['io.flow.v0.models.payment_processor_reference'];
|
|
15905
16156
|
export const paymentProcessorTransactionDetails = T['io.flow.v0.unions.payment_processor_transaction_details'];
|
|
16157
|
+
export const paymentProcessorTransactionDetailsApm = T['io.flow.v0.models.payment_processor_transaction_details_apm'];
|
|
15906
16158
|
export const paymentProcessorTransactionDetailsCard = T['io.flow.v0.models.payment_processor_transaction_details_card'];
|
|
15907
16159
|
export const paymentReference = T['io.flow.v0.models.payment_reference'];
|
|
15908
16160
|
export const paymentRefund = T['io.flow.v0.models.payment_refund'];
|
|
@@ -15914,6 +16166,8 @@ export const paymentRequestBillingCurrencyRate = T['io.flow.v0.models.payment_re
|
|
|
15914
16166
|
export const paymentRequestBillingFees = T['io.flow.v0.models.payment_request_billing_fees'];
|
|
15915
16167
|
export const paymentRequestBundle = T['io.flow.v0.models.payment_request_bundle'];
|
|
15916
16168
|
export const paymentRequestBundleForm = T['io.flow.v0.models.payment_request_bundle_form'];
|
|
16169
|
+
export const paymentRequestCancellationReason = T['io.flow.v0.unions.payment_request_cancellation_reason'];
|
|
16170
|
+
export const paymentRequestCancellationReasonOrderMissing = T['io.flow.v0.models.payment_request_cancellation_reason_order_missing'];
|
|
15917
16171
|
export const paymentRequestDeleted = T['io.flow.v0.models.payment_request_deleted'];
|
|
15918
16172
|
export const paymentRequestForm = T['io.flow.v0.models.payment_request_form'];
|
|
15919
16173
|
export const paymentRequestReference = T['io.flow.v0.models.payment_request_reference'];
|
|
@@ -16099,6 +16353,7 @@ export const regionReference = T['io.flow.v0.models.region_reference'];
|
|
|
16099
16353
|
export const regionSetting = T['io.flow.v0.models.region_setting'];
|
|
16100
16354
|
export const regionSettingForm = T['io.flow.v0.models.region_setting_form'];
|
|
16101
16355
|
export const regionType = T['io.flow.v0.enums.region_type'];
|
|
16356
|
+
export const rejectionPutForm = T['io.flow.v0.models.rejection_put_form'];
|
|
16102
16357
|
export const remoteAreaByWeightServiceFee = T['io.flow.v0.models.remote_area_by_weight_service_fee'];
|
|
16103
16358
|
export const remoteAreaRatecardFee = T['io.flow.v0.models.remote_area_ratecard_fee'];
|
|
16104
16359
|
export const remoteAreaServiceFee = T['io.flow.v0.models.remote_area_service_fee'];
|
|
@@ -16423,11 +16678,12 @@ export const transactionDetails = T['io.flow.v0.unions.transaction_details'];
|
|
|
16423
16678
|
export const transactionDetailsCard = T['io.flow.v0.models.transaction_details_card'];
|
|
16424
16679
|
export const transactionMetadata = T['io.flow.v0.unions.transaction_metadata'];
|
|
16425
16680
|
export const transactionMetadataCarrierCharge = T['io.flow.v0.models.transaction_metadata_carrier_charge'];
|
|
16426
|
-
export const transactionMetadataCarrierFee = T['io.flow.v0.models.transaction_metadata_carrier_fee'];
|
|
16427
|
-
export const transactionMetadataCarrierFeeData = T['io.flow.v0.models.transaction_metadata_carrier_fee_data'];
|
|
16428
16681
|
export const transactionMetadataChannel = T['io.flow.v0.models.transaction_metadata_channel'];
|
|
16429
16682
|
export const transactionMetadataChannelCardMetadata = T['io.flow.v0.models.transaction_metadata_channel_card_metadata'];
|
|
16430
16683
|
export const transactionMetadataChannelCardMetadataIssuerSummary = T['io.flow.v0.models.transaction_metadata_channel_card_metadata_issuer_summary'];
|
|
16684
|
+
export const transactionMetadataChannelOrganizationTransaction = T['io.flow.v0.models.transaction_metadata_channel_organization_transaction'];
|
|
16685
|
+
export const transactionMetadataFailedPayout = T['io.flow.v0.models.transaction_metadata_failed_payout'];
|
|
16686
|
+
export const transactionMetadataFailedPayoutReference = T['io.flow.v0.models.transaction_metadata_failed_payout_reference'];
|
|
16431
16687
|
export const transactionMetadataManual = T['io.flow.v0.models.transaction_metadata_manual'];
|
|
16432
16688
|
export const transactionMetadataOriginalTransaction = T['io.flow.v0.models.transaction_metadata_original_transaction'];
|
|
16433
16689
|
export const transactionMetadataOutboundTransaction = T['io.flow.v0.models.transaction_metadata_outbound_transaction'];
|
|
@@ -16435,7 +16691,11 @@ export const transactionMetadataPaymentTransaction = T['io.flow.v0.models.transa
|
|
|
16435
16691
|
export const transactionMetadataShippingLabel = T['io.flow.v0.models.transaction_metadata_shipping_label'];
|
|
16436
16692
|
export const transactionMetadataShippingLabelCarrier = T['io.flow.v0.models.transaction_metadata_shipping_label_carrier'];
|
|
16437
16693
|
export const transactionMetadataTrueup = T['io.flow.v0.models.transaction_metadata_trueup'];
|
|
16694
|
+
export const transactionMetadataTrueupBase = T['io.flow.v0.models.transaction_metadata_trueup_base'];
|
|
16695
|
+
export const transactionMetadataTrueupBaseData = T['io.flow.v0.models.transaction_metadata_trueup_base_data'];
|
|
16438
16696
|
export const transactionMetadataTrueupData = T['io.flow.v0.models.transaction_metadata_trueup_data'];
|
|
16697
|
+
export const transactionMetadataTrueupSurcharge = T['io.flow.v0.models.transaction_metadata_trueup_surcharge'];
|
|
16698
|
+
export const transactionMetadataTrueupSurchargeData = T['io.flow.v0.models.transaction_metadata_trueup_surcharge_data'];
|
|
16439
16699
|
export const transactionNetworkDetailsCard = T['io.flow.v0.models.transaction_network_details_card'];
|
|
16440
16700
|
export const transactionReference = T['io.flow.v0.models.transaction_reference'];
|
|
16441
16701
|
export const transactionSource = T['io.flow.v0.enums.transaction_source'];
|
|
@@ -16443,8 +16703,12 @@ export const transactionUpserted = T['io.flow.v0.models.transaction_upserted'];
|
|
|
16443
16703
|
export const transitEstimate = T['io.flow.v0.models.transit_estimate'];
|
|
16444
16704
|
export const transitWindow = T['io.flow.v0.models.transit_window'];
|
|
16445
16705
|
export const trueupLabelBase = T['io.flow.v0.models.trueup_label_base'];
|
|
16706
|
+
export const trueupLabelBaseV2 = T['io.flow.v0.models.trueup_label_base_v2'];
|
|
16707
|
+
export const trueupLabelBaseWeight = T['io.flow.v0.models.trueup_label_base_weight'];
|
|
16708
|
+
export const trueupLabelFuel = T['io.flow.v0.models.trueup_label_fuel'];
|
|
16446
16709
|
export const trueupLabelSurcharge = T['io.flow.v0.models.trueup_label_surcharge'];
|
|
16447
16710
|
export const trueupLabelUnits = T['io.flow.v0.models.trueup_label_units'];
|
|
16711
|
+
export const trueupLabelWeights = T['io.flow.v0.models.trueup_label_weights'];
|
|
16448
16712
|
export const trueupSource = T['io.flow.v0.enums.trueup_source'];
|
|
16449
16713
|
export const trueupSurchargeType = T['io.flow.v0.enums.trueup_surcharge_type'];
|
|
16450
16714
|
export const ultimateBeneficiaryOwner = T['io.flow.v0.models.ultimate_beneficiary_owner'];
|