@flowio/api-prop-types 10.16.77 → 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 +125 -7
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +125 -7
- package/src/api.js +175 -7
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,
|
|
@@ -3078,10 +3217,6 @@ T['io.flow.v0.models.transaction_metadata_channel_card_metadata_issuer_summary']
|
|
|
3078
3217
|
country: PropTypes.string.isRequired,
|
|
3079
3218
|
});
|
|
3080
3219
|
|
|
3081
|
-
T['io.flow.v0.models.transaction_reference'] = PropTypes.exact({
|
|
3082
|
-
id: PropTypes.string.isRequired,
|
|
3083
|
-
});
|
|
3084
|
-
|
|
3085
3220
|
T['io.flow.v0.models.transaction_metadata_outbound_transaction'] = PropTypes.exact({
|
|
3086
3221
|
transaction_id: PropTypes.string.isRequired,
|
|
3087
3222
|
});
|
|
@@ -4005,6 +4140,7 @@ T['io.flow.v0.enums.payment_request_review_check_type'] = PropTypes.oneOf([
|
|
|
4005
4140
|
'order_missing_information',
|
|
4006
4141
|
'order_domestic',
|
|
4007
4142
|
'order_mismatched_currencies',
|
|
4143
|
+
'order_missing',
|
|
4008
4144
|
]);
|
|
4009
4145
|
|
|
4010
4146
|
T['io.flow.v0.models.payment_method_data_selected_payment_option'] = PropTypes.exact({
|
|
@@ -4172,6 +4308,15 @@ T['io.flow.v0.enums.payment_status'] = PropTypes.oneOf([
|
|
|
4172
4308
|
|
|
4173
4309
|
T['io.flow.v0.enums.refund_decline_code'] = PropTypes.oneOf(['expired', 'insufficient_funds', 'unknown']);
|
|
4174
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
|
+
|
|
4175
4320
|
T['io.flow.v0.models.payment_processor_transaction_details_card'] = PropTypes.exact({
|
|
4176
4321
|
discriminator: PropTypes.oneOf(['card']).isRequired,
|
|
4177
4322
|
transaction_identifier: PropTypes.string,
|
|
@@ -4188,7 +4333,10 @@ T['io.flow.v0.models.payment_processor_account_reference'] = PropTypes.exact({
|
|
|
4188
4333
|
key: PropTypes.string.isRequired,
|
|
4189
4334
|
});
|
|
4190
4335
|
|
|
4191
|
-
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
|
+
]);
|
|
4192
4340
|
|
|
4193
4341
|
T['io.flow.v0.models.payment_processor_identifier'] = PropTypes.exact({
|
|
4194
4342
|
id: PropTypes.string.isRequired,
|
|
@@ -4714,6 +4862,7 @@ T['io.flow.v0.models.redirect_authorization_details'] = PropTypes.exact({
|
|
|
4714
4862
|
T['io.flow.v0.models.paypal_authorization_details'] = PropTypes.exact({
|
|
4715
4863
|
discriminator: PropTypes.oneOf(['paypal_authorization_details']).isRequired,
|
|
4716
4864
|
payment_id: PropTypes.string.isRequired,
|
|
4865
|
+
internal_payment_id: PropTypes.string,
|
|
4717
4866
|
payment_method: PropTypes.string,
|
|
4718
4867
|
payment_state: PropTypes.string,
|
|
4719
4868
|
payer_id: PropTypes.string,
|
|
@@ -4817,6 +4966,11 @@ T['io.flow.v0.enums.merchant_rejected_reason'] = PropTypes.oneOf([
|
|
|
4817
4966
|
'merchant_failed_kyb_review',
|
|
4818
4967
|
]);
|
|
4819
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
|
+
|
|
4820
4974
|
T['io.flow.v0.models.merchant_rejected'] = PropTypes.exact({
|
|
4821
4975
|
discriminator: PropTypes.oneOf(['merchant_rejected']).isRequired,
|
|
4822
4976
|
reason: T['io.flow.v0.enums.merchant_rejected_reason'].isRequired,
|
|
@@ -6924,6 +7078,11 @@ T['io.flow.v0.models.transaction_metadata_payment_transaction'] = PropTypes.exac
|
|
|
6924
7078
|
key: PropTypes.string,
|
|
6925
7079
|
});
|
|
6926
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
|
+
|
|
6927
7086
|
T['io.flow.v0.models.transaction_metadata_failed_payout'] = PropTypes.exact({
|
|
6928
7087
|
discriminator: PropTypes.oneOf(['failed_payout']).isRequired,
|
|
6929
7088
|
failed_payout: T['io.flow.v0.models.transaction_metadata_failed_payout_reference'].isRequired,
|
|
@@ -7686,7 +7845,7 @@ T['io.flow.v0.models.transaction_metadata_channel'] = PropTypes.exact({
|
|
|
7686
7845
|
discriminator: PropTypes.oneOf(['channel']).isRequired,
|
|
7687
7846
|
method: PropTypes.string.isRequired,
|
|
7688
7847
|
card: T['io.flow.v0.models.transaction_metadata_channel_card_metadata'],
|
|
7689
|
-
organization_transaction: T['io.flow.v0.models.
|
|
7848
|
+
organization_transaction: T['io.flow.v0.models.transaction_metadata_channel_organization_transaction'].isRequired,
|
|
7690
7849
|
});
|
|
7691
7850
|
|
|
7692
7851
|
T['io.flow.v0.unions.transaction_metadata'] = PropTypes.oneOfType([
|
|
@@ -14606,6 +14765,10 @@ T['io.flow.v0.models.token_validation_form'] = PropTypes.exact({
|
|
|
14606
14765
|
token: PropTypes.string.isRequired,
|
|
14607
14766
|
});
|
|
14608
14767
|
|
|
14768
|
+
T['io.flow.v0.models.transaction_reference'] = PropTypes.exact({
|
|
14769
|
+
id: PropTypes.string.isRequired,
|
|
14770
|
+
});
|
|
14771
|
+
|
|
14609
14772
|
T['io.flow.v0.models.transit_window'] = PropTypes.exact({
|
|
14610
14773
|
origin_country: PropTypes.string.isRequired,
|
|
14611
14774
|
destination_country: PropTypes.string.isRequired,
|
|
@@ -14685,7 +14848,7 @@ T['io.flow.stripe.v0.enums.klarna_payment_method_category_type'] = PropTypes.one
|
|
|
14685
14848
|
'pay_over_time',
|
|
14686
14849
|
]);
|
|
14687
14850
|
|
|
14688
|
-
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']);
|
|
14689
14852
|
|
|
14690
14853
|
T['io.flow.stripe.v0.models.card_request'] = PropTypes.exact({
|
|
14691
14854
|
object: PropTypes.string.isRequired,
|
|
@@ -15991,6 +16154,7 @@ export const paymentProcessorAccountReference = T['io.flow.v0.models.payment_pro
|
|
|
15991
16154
|
export const paymentProcessorIdentifier = T['io.flow.v0.models.payment_processor_identifier'];
|
|
15992
16155
|
export const paymentProcessorReference = T['io.flow.v0.models.payment_processor_reference'];
|
|
15993
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'];
|
|
15994
16158
|
export const paymentProcessorTransactionDetailsCard = T['io.flow.v0.models.payment_processor_transaction_details_card'];
|
|
15995
16159
|
export const paymentReference = T['io.flow.v0.models.payment_reference'];
|
|
15996
16160
|
export const paymentRefund = T['io.flow.v0.models.payment_refund'];
|
|
@@ -16002,6 +16166,8 @@ export const paymentRequestBillingCurrencyRate = T['io.flow.v0.models.payment_re
|
|
|
16002
16166
|
export const paymentRequestBillingFees = T['io.flow.v0.models.payment_request_billing_fees'];
|
|
16003
16167
|
export const paymentRequestBundle = T['io.flow.v0.models.payment_request_bundle'];
|
|
16004
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'];
|
|
16005
16171
|
export const paymentRequestDeleted = T['io.flow.v0.models.payment_request_deleted'];
|
|
16006
16172
|
export const paymentRequestForm = T['io.flow.v0.models.payment_request_form'];
|
|
16007
16173
|
export const paymentRequestReference = T['io.flow.v0.models.payment_request_reference'];
|
|
@@ -16187,6 +16353,7 @@ export const regionReference = T['io.flow.v0.models.region_reference'];
|
|
|
16187
16353
|
export const regionSetting = T['io.flow.v0.models.region_setting'];
|
|
16188
16354
|
export const regionSettingForm = T['io.flow.v0.models.region_setting_form'];
|
|
16189
16355
|
export const regionType = T['io.flow.v0.enums.region_type'];
|
|
16356
|
+
export const rejectionPutForm = T['io.flow.v0.models.rejection_put_form'];
|
|
16190
16357
|
export const remoteAreaByWeightServiceFee = T['io.flow.v0.models.remote_area_by_weight_service_fee'];
|
|
16191
16358
|
export const remoteAreaRatecardFee = T['io.flow.v0.models.remote_area_ratecard_fee'];
|
|
16192
16359
|
export const remoteAreaServiceFee = T['io.flow.v0.models.remote_area_service_fee'];
|
|
@@ -16514,6 +16681,7 @@ export const transactionMetadataCarrierCharge = T['io.flow.v0.models.transaction
|
|
|
16514
16681
|
export const transactionMetadataChannel = T['io.flow.v0.models.transaction_metadata_channel'];
|
|
16515
16682
|
export const transactionMetadataChannelCardMetadata = T['io.flow.v0.models.transaction_metadata_channel_card_metadata'];
|
|
16516
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'];
|
|
16517
16685
|
export const transactionMetadataFailedPayout = T['io.flow.v0.models.transaction_metadata_failed_payout'];
|
|
16518
16686
|
export const transactionMetadataFailedPayoutReference = T['io.flow.v0.models.transaction_metadata_failed_payout_reference'];
|
|
16519
16687
|
export const transactionMetadataManual = T['io.flow.v0.models.transaction_metadata_manual'];
|