@flowio/api-prop-types 10.16.77 → 10.16.79
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 +198 -9
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +198 -9
- package/src/api.js +285 -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({
|
|
@@ -855,6 +856,14 @@ T['io.flow.stripe.v0.models.stripe_event'] = PropTypes.exact({
|
|
|
855
856
|
type: PropTypes.string.isRequired,
|
|
856
857
|
});
|
|
857
858
|
|
|
859
|
+
T['io.flow.stripe.v0.enums.dispute_event_type'] = PropTypes.oneOf([
|
|
860
|
+
'charge.dispute.closed',
|
|
861
|
+
'charge.dispute.created',
|
|
862
|
+
'charge.dispute.funds_reinstated',
|
|
863
|
+
'charge.dispute.funds_withdrawn',
|
|
864
|
+
'charge.dispute.updated',
|
|
865
|
+
]);
|
|
866
|
+
|
|
858
867
|
T['io.flow.stripe.v0.enums.use_stripe_sdk_type'] = PropTypes.oneOf(['three_d_secure_redirect', 'stripe_3ds2_fingerprint']);
|
|
859
868
|
|
|
860
869
|
T['io.flow.stripe.v0.models.three_d_secure_redirect'] = PropTypes.exact({
|
|
@@ -967,6 +976,54 @@ T['io.flow.stripe.v0.models.payment_method_details_klarna_information'] = PropTy
|
|
|
967
976
|
preferred_locale: T['io.flow.stripe.v0.enums.preferred_locale_klarna'],
|
|
968
977
|
});
|
|
969
978
|
|
|
979
|
+
T['io.flow.stripe.v0.enums.bic_ideal'] = PropTypes.oneOf([
|
|
980
|
+
'ABNANL2A',
|
|
981
|
+
'ASNBNL21',
|
|
982
|
+
'BITSNL2A',
|
|
983
|
+
'BUNQNL2A',
|
|
984
|
+
'FVLBNL22',
|
|
985
|
+
'HANDNL2A',
|
|
986
|
+
'INGBNL2A',
|
|
987
|
+
'KNABNL2H',
|
|
988
|
+
'MOYONL21',
|
|
989
|
+
'NNBANL2G',
|
|
990
|
+
'NTSBDEB1',
|
|
991
|
+
'RABONL2U',
|
|
992
|
+
'RBRBNL21',
|
|
993
|
+
'REVOIE23',
|
|
994
|
+
'REVOLT21',
|
|
995
|
+
'SNSBNL2A',
|
|
996
|
+
'TRIONL2U',
|
|
997
|
+
]);
|
|
998
|
+
|
|
999
|
+
T['io.flow.stripe.v0.enums.bank_ideal'] = PropTypes.oneOf([
|
|
1000
|
+
'abn_amro',
|
|
1001
|
+
'asn_bank',
|
|
1002
|
+
'bunq',
|
|
1003
|
+
'handelsbanken',
|
|
1004
|
+
'ing',
|
|
1005
|
+
'knab',
|
|
1006
|
+
'moneyou',
|
|
1007
|
+
'n26',
|
|
1008
|
+
'nn',
|
|
1009
|
+
'rabobank',
|
|
1010
|
+
'regiobank',
|
|
1011
|
+
'revolut',
|
|
1012
|
+
'sns_bank',
|
|
1013
|
+
'triodos_bank',
|
|
1014
|
+
'van_lanschot',
|
|
1015
|
+
'yoursafe',
|
|
1016
|
+
]);
|
|
1017
|
+
|
|
1018
|
+
T['io.flow.stripe.v0.models.payment_method_details_ideal_information'] = PropTypes.exact({
|
|
1019
|
+
bank: T['io.flow.stripe.v0.enums.bank_ideal'],
|
|
1020
|
+
bic: T['io.flow.stripe.v0.enums.bic_ideal'],
|
|
1021
|
+
generated_sepa_debit: PropTypes.string,
|
|
1022
|
+
generated_sepa_debit_mandate: PropTypes.string,
|
|
1023
|
+
iban_last4: PropTypes.string,
|
|
1024
|
+
verified_name: PropTypes.string,
|
|
1025
|
+
});
|
|
1026
|
+
|
|
970
1027
|
T['io.flow.stripe.v0.enums.three_ds_result_reason'] = PropTypes.oneOf([
|
|
971
1028
|
'card_not_enrolled',
|
|
972
1029
|
'network_not_supported',
|
|
@@ -1024,6 +1081,19 @@ T['io.flow.stripe.v0.models.plan'] = PropTypes.exact({
|
|
|
1024
1081
|
type: PropTypes.string,
|
|
1025
1082
|
});
|
|
1026
1083
|
|
|
1084
|
+
T['io.flow.stripe.v0.enums.preferred_language_bancontact'] = PropTypes.oneOf(['de', 'en', 'fr', 'nl']);
|
|
1085
|
+
|
|
1086
|
+
T['io.flow.stripe.v0.models.payment_method_details_bancontact_information'] = PropTypes.exact({
|
|
1087
|
+
bank_code: PropTypes.string,
|
|
1088
|
+
bank_name: PropTypes.string,
|
|
1089
|
+
bic: PropTypes.string,
|
|
1090
|
+
generated_sepa_debit: PropTypes.string,
|
|
1091
|
+
generated_sepa_debit_mandate: PropTypes.string,
|
|
1092
|
+
iban_last4: PropTypes.string,
|
|
1093
|
+
preferred_language: T['io.flow.stripe.v0.enums.preferred_language_bancontact'],
|
|
1094
|
+
verified_name: PropTypes.string,
|
|
1095
|
+
});
|
|
1096
|
+
|
|
1027
1097
|
T['io.flow.stripe.v0.models.klarna_dob_form'] = PropTypes.exact({
|
|
1028
1098
|
day: PropTypes.number.isRequired,
|
|
1029
1099
|
month: PropTypes.number.isRequired,
|
|
@@ -1034,6 +1104,10 @@ T['io.flow.stripe.v0.models.payment_method_klarna_form'] = PropTypes.exact({
|
|
|
1034
1104
|
dob: T['io.flow.stripe.v0.models.klarna_dob_form'],
|
|
1035
1105
|
});
|
|
1036
1106
|
|
|
1107
|
+
T['io.flow.stripe.v0.models.payment_method_ideal_form'] = PropTypes.exact({
|
|
1108
|
+
bank: PropTypes.string,
|
|
1109
|
+
});
|
|
1110
|
+
|
|
1037
1111
|
T['io.flow.stripe.v0.models.payment_method_card_form'] = PropTypes.exact({
|
|
1038
1112
|
exp_month: PropTypes.string.isRequired,
|
|
1039
1113
|
exp_year: PropTypes.string.isRequired,
|
|
@@ -1050,6 +1124,10 @@ T['io.flow.stripe.v0.models.card_networks'] = PropTypes.exact({
|
|
|
1050
1124
|
preferred: PropTypes.string,
|
|
1051
1125
|
});
|
|
1052
1126
|
|
|
1127
|
+
T['io.flow.stripe.v0.models.payment_method_options_bancontact_form'] = PropTypes.exact({
|
|
1128
|
+
preferred_language: T['io.flow.stripe.v0.enums.preferred_language_bancontact'].isRequired,
|
|
1129
|
+
});
|
|
1130
|
+
|
|
1053
1131
|
T['io.flow.stripe.v0.models.payment_method_options_card_form'] = PropTypes.exact({
|
|
1054
1132
|
network: PropTypes.string,
|
|
1055
1133
|
request_three_d_secure: T['io.flow.stripe.v0.enums.request_three_d_secure_type'],
|
|
@@ -1057,6 +1135,10 @@ T['io.flow.stripe.v0.models.payment_method_options_card_form'] = PropTypes.exact
|
|
|
1057
1135
|
mcc: PropTypes.string,
|
|
1058
1136
|
});
|
|
1059
1137
|
|
|
1138
|
+
T['io.flow.stripe.v0.models.payment_method_options_bancontact'] = PropTypes.exact({
|
|
1139
|
+
preferred_language: T['io.flow.stripe.v0.enums.preferred_language_bancontact'].isRequired,
|
|
1140
|
+
});
|
|
1141
|
+
|
|
1060
1142
|
T['io.flow.stripe.v0.models.payment_method_options_card'] = PropTypes.exact({
|
|
1061
1143
|
network: PropTypes.string,
|
|
1062
1144
|
request_three_d_secure: T['io.flow.stripe.v0.enums.request_three_d_secure_type'],
|
|
@@ -1076,6 +1158,15 @@ T['io.flow.stripe.v0.enums.payment_intent_status'] = PropTypes.oneOf([
|
|
|
1076
1158
|
]);
|
|
1077
1159
|
|
|
1078
1160
|
T['io.flow.stripe.v0.enums.setup_future_usage'] = PropTypes.oneOf(['on_session', 'off_session']);
|
|
1161
|
+
|
|
1162
|
+
T['io.flow.stripe.v0.models.payment_method_options_ideal_form'] = PropTypes.exact({
|
|
1163
|
+
setup_future_usage: T['io.flow.stripe.v0.enums.setup_future_usage'],
|
|
1164
|
+
});
|
|
1165
|
+
|
|
1166
|
+
T['io.flow.stripe.v0.models.payment_method_options_ideal'] = PropTypes.exact({
|
|
1167
|
+
setup_future_usage: T['io.flow.stripe.v0.enums.setup_future_usage'],
|
|
1168
|
+
});
|
|
1169
|
+
|
|
1079
1170
|
T['io.flow.stripe.v0.enums.confirmation_method'] = PropTypes.oneOf(['automatic', 'manual']);
|
|
1080
1171
|
T['io.flow.stripe.v0.enums.capture_method'] = PropTypes.oneOf(['automatic', 'manual']);
|
|
1081
1172
|
|
|
@@ -1112,7 +1203,9 @@ T['io.flow.stripe.v0.models.payment_method_options_klarna_form'] = PropTypes.exa
|
|
|
1112
1203
|
|
|
1113
1204
|
T['io.flow.stripe.v0.models.payment_method_options_form'] = PropTypes.exact({
|
|
1114
1205
|
card: T['io.flow.stripe.v0.models.payment_method_options_card_form'],
|
|
1206
|
+
ideal: T['io.flow.stripe.v0.models.payment_method_options_ideal_form'],
|
|
1115
1207
|
klarna: T['io.flow.stripe.v0.models.payment_method_options_klarna_form'],
|
|
1208
|
+
bancontact: T['io.flow.stripe.v0.models.payment_method_options_bancontact_form'],
|
|
1116
1209
|
});
|
|
1117
1210
|
|
|
1118
1211
|
T['io.flow.stripe.v0.models.payment_method_options_klarna'] = PropTypes.exact({
|
|
@@ -1124,7 +1217,9 @@ T['io.flow.stripe.v0.models.payment_method_options_klarna'] = PropTypes.exact({
|
|
|
1124
1217
|
|
|
1125
1218
|
T['io.flow.stripe.v0.models.payment_method_options'] = PropTypes.exact({
|
|
1126
1219
|
card: T['io.flow.stripe.v0.models.payment_method_options_card'],
|
|
1220
|
+
ideal: T['io.flow.stripe.v0.models.payment_method_options_ideal'],
|
|
1127
1221
|
klarna: T['io.flow.stripe.v0.models.payment_method_options_klarna'],
|
|
1222
|
+
bancontact: T['io.flow.stripe.v0.models.payment_method_options_bancontact'],
|
|
1128
1223
|
});
|
|
1129
1224
|
|
|
1130
1225
|
T['io.flow.stripe.v0.enums.order_item_type'] = PropTypes.oneOf(['sku', 'tax', 'shipping', 'discount']);
|
|
@@ -1197,6 +1292,13 @@ T['io.flow.stripe.v0.models.payment_method_form_klarna'] = PropTypes.exact({
|
|
|
1197
1292
|
klarna: T['io.flow.stripe.v0.models.payment_method_klarna_form'].isRequired,
|
|
1198
1293
|
});
|
|
1199
1294
|
|
|
1295
|
+
T['io.flow.stripe.v0.models.payment_method_form_ideal'] = PropTypes.exact({
|
|
1296
|
+
type: PropTypes.oneOf(['ideal']).isRequired,
|
|
1297
|
+
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
1298
|
+
metadata: PropTypes.object,
|
|
1299
|
+
ideal: T['io.flow.stripe.v0.models.payment_method_ideal_form'].isRequired,
|
|
1300
|
+
});
|
|
1301
|
+
|
|
1200
1302
|
T['io.flow.stripe.v0.models.payment_method_form_card'] = PropTypes.exact({
|
|
1201
1303
|
type: PropTypes.oneOf(['card']).isRequired,
|
|
1202
1304
|
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
@@ -1204,9 +1306,18 @@ T['io.flow.stripe.v0.models.payment_method_form_card'] = PropTypes.exact({
|
|
|
1204
1306
|
card: T['io.flow.stripe.v0.models.payment_method_card_form'].isRequired,
|
|
1205
1307
|
});
|
|
1206
1308
|
|
|
1309
|
+
T['io.flow.stripe.v0.models.payment_method_form_bancontact'] = PropTypes.exact({
|
|
1310
|
+
type: PropTypes.oneOf(['bancontact']).isRequired,
|
|
1311
|
+
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
1312
|
+
metadata: PropTypes.object,
|
|
1313
|
+
bancontact: PropTypes.object.isRequired,
|
|
1314
|
+
});
|
|
1315
|
+
|
|
1207
1316
|
T['io.flow.stripe.v0.unions.payment_method_form'] = PropTypes.oneOfType([
|
|
1208
1317
|
T['io.flow.stripe.v0.models.payment_method_form_card'],
|
|
1318
|
+
T['io.flow.stripe.v0.models.payment_method_form_ideal'],
|
|
1209
1319
|
T['io.flow.stripe.v0.models.payment_method_form_klarna'],
|
|
1320
|
+
T['io.flow.stripe.v0.models.payment_method_form_bancontact'],
|
|
1210
1321
|
]);
|
|
1211
1322
|
|
|
1212
1323
|
T['io.flow.stripe.v0.models.payment_method_data_klarna'] = PropTypes.exact({
|
|
@@ -1216,6 +1327,13 @@ T['io.flow.stripe.v0.models.payment_method_data_klarna'] = PropTypes.exact({
|
|
|
1216
1327
|
klarna: T['io.flow.stripe.v0.models.payment_method_klarna_form'].isRequired,
|
|
1217
1328
|
});
|
|
1218
1329
|
|
|
1330
|
+
T['io.flow.stripe.v0.models.payment_method_data_ideal'] = PropTypes.exact({
|
|
1331
|
+
type: PropTypes.oneOf(['ideal']).isRequired,
|
|
1332
|
+
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
1333
|
+
metadata: PropTypes.object,
|
|
1334
|
+
ideal: T['io.flow.stripe.v0.models.payment_method_ideal_form'].isRequired,
|
|
1335
|
+
});
|
|
1336
|
+
|
|
1219
1337
|
T['io.flow.stripe.v0.models.payment_method_data_card'] = PropTypes.exact({
|
|
1220
1338
|
type: PropTypes.oneOf(['card']).isRequired,
|
|
1221
1339
|
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
@@ -1223,9 +1341,17 @@ T['io.flow.stripe.v0.models.payment_method_data_card'] = PropTypes.exact({
|
|
|
1223
1341
|
card: T['io.flow.stripe.v0.models.payment_method_card_form'].isRequired,
|
|
1224
1342
|
});
|
|
1225
1343
|
|
|
1344
|
+
T['io.flow.stripe.v0.models.payment_method_data_bancontact'] = PropTypes.exact({
|
|
1345
|
+
type: PropTypes.oneOf(['bancontact']).isRequired,
|
|
1346
|
+
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
1347
|
+
metadata: PropTypes.object,
|
|
1348
|
+
});
|
|
1349
|
+
|
|
1226
1350
|
T['io.flow.stripe.v0.unions.payment_method_data'] = PropTypes.oneOfType([
|
|
1227
1351
|
T['io.flow.stripe.v0.models.payment_method_data_card'],
|
|
1352
|
+
T['io.flow.stripe.v0.models.payment_method_data_ideal'],
|
|
1228
1353
|
T['io.flow.stripe.v0.models.payment_method_data_klarna'],
|
|
1354
|
+
T['io.flow.stripe.v0.models.payment_method_data_bancontact'],
|
|
1229
1355
|
]);
|
|
1230
1356
|
|
|
1231
1357
|
T['io.flow.stripe.v0.models.payment_intent_confirmation_form'] = PropTypes.exact({
|
|
@@ -1377,6 +1503,102 @@ T['io.flow.stripe.v0.enums.error_type'] = PropTypes.oneOf([
|
|
|
1377
1503
|
'validation_error',
|
|
1378
1504
|
]);
|
|
1379
1505
|
|
|
1506
|
+
T['io.flow.stripe.v0.enums.dispute_payment_method_details_card_case_type'] = PropTypes.oneOf(['chargeback', 'inquiry']);
|
|
1507
|
+
T['io.flow.stripe.v0.enums.dispute_payment_method_details_type'] = PropTypes.oneOf(['card', 'klarna', 'paypal']);
|
|
1508
|
+
|
|
1509
|
+
T['io.flow.stripe.v0.models.dispute_payment_method_details_paypal'] = PropTypes.exact({
|
|
1510
|
+
case_id: PropTypes.string,
|
|
1511
|
+
reason_code: PropTypes.string,
|
|
1512
|
+
});
|
|
1513
|
+
|
|
1514
|
+
T['io.flow.stripe.v0.models.dispute_payment_method_details_klarna'] = PropTypes.exact({
|
|
1515
|
+
reason_code: PropTypes.string,
|
|
1516
|
+
});
|
|
1517
|
+
|
|
1518
|
+
T['io.flow.stripe.v0.models.dispute_payment_method_details_card'] = PropTypes.exact({
|
|
1519
|
+
brand: PropTypes.string.isRequired,
|
|
1520
|
+
case_type: T['io.flow.stripe.v0.enums.dispute_payment_method_details_card_case_type'],
|
|
1521
|
+
network_reason_code: PropTypes.string,
|
|
1522
|
+
});
|
|
1523
|
+
|
|
1524
|
+
T['io.flow.stripe.v0.models.dispute_payment_method_details'] = PropTypes.exact({
|
|
1525
|
+
card: T['io.flow.stripe.v0.models.dispute_payment_method_details_card'],
|
|
1526
|
+
klarna: T['io.flow.stripe.v0.models.dispute_payment_method_details_klarna'],
|
|
1527
|
+
paypal: T['io.flow.stripe.v0.models.dispute_payment_method_details_paypal'],
|
|
1528
|
+
type: T['io.flow.stripe.v0.enums.dispute_payment_method_details_type'].isRequired,
|
|
1529
|
+
});
|
|
1530
|
+
|
|
1531
|
+
T['io.flow.stripe.v0.models.dispute_evidence_details'] = PropTypes.exact({
|
|
1532
|
+
due_by: PropTypes.number,
|
|
1533
|
+
has_evidence: PropTypes.bool.isRequired,
|
|
1534
|
+
past_due: PropTypes.bool.isRequired,
|
|
1535
|
+
submission_count: PropTypes.number.isRequired,
|
|
1536
|
+
});
|
|
1537
|
+
|
|
1538
|
+
T['io.flow.stripe.v0.enums.dispute_status'] = PropTypes.oneOf([
|
|
1539
|
+
'warning_needs_response',
|
|
1540
|
+
'warning_under_review',
|
|
1541
|
+
'warning_closed',
|
|
1542
|
+
'needs_response',
|
|
1543
|
+
'under_review',
|
|
1544
|
+
'won',
|
|
1545
|
+
'lost',
|
|
1546
|
+
]);
|
|
1547
|
+
|
|
1548
|
+
T['io.flow.stripe.v0.enums.dispute_reason'] = PropTypes.oneOf([
|
|
1549
|
+
'bank_cannot_process',
|
|
1550
|
+
'check_returned',
|
|
1551
|
+
'credit_not_processed',
|
|
1552
|
+
'customer_initiated',
|
|
1553
|
+
'debit_not_authorized',
|
|
1554
|
+
'duplicate',
|
|
1555
|
+
'fraudulent',
|
|
1556
|
+
'general',
|
|
1557
|
+
'incorrect_account_details',
|
|
1558
|
+
'insufficient_funds',
|
|
1559
|
+
'product_not_received',
|
|
1560
|
+
'product_unacceptable',
|
|
1561
|
+
'subscription_canceled',
|
|
1562
|
+
'unrecognized',
|
|
1563
|
+
]);
|
|
1564
|
+
|
|
1565
|
+
T['io.flow.stripe.v0.models.dispute'] = PropTypes.exact({
|
|
1566
|
+
id: PropTypes.string.isRequired,
|
|
1567
|
+
amount: PropTypes.number.isRequired,
|
|
1568
|
+
charge: PropTypes.string.isRequired,
|
|
1569
|
+
currency: PropTypes.string.isRequired,
|
|
1570
|
+
evidence: PropTypes.object.isRequired,
|
|
1571
|
+
metadata: PropTypes.objectOf(PropTypes.string).isRequired,
|
|
1572
|
+
payment_intent: PropTypes.string,
|
|
1573
|
+
reason: T['io.flow.stripe.v0.enums.dispute_reason'].isRequired,
|
|
1574
|
+
status: T['io.flow.stripe.v0.enums.dispute_status'].isRequired,
|
|
1575
|
+
object: PropTypes.string.isRequired,
|
|
1576
|
+
balance_transactions: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
1577
|
+
created: PropTypes.number.isRequired,
|
|
1578
|
+
evidence_details: T['io.flow.stripe.v0.models.dispute_evidence_details'].isRequired,
|
|
1579
|
+
is_charge_refundable: PropTypes.bool.isRequired,
|
|
1580
|
+
livemode: PropTypes.bool.isRequired,
|
|
1581
|
+
payment_method_details: T['io.flow.stripe.v0.models.dispute_payment_method_details'],
|
|
1582
|
+
});
|
|
1583
|
+
|
|
1584
|
+
T['io.flow.stripe.v0.models.stripe_dispute_event_data'] = PropTypes.exact({
|
|
1585
|
+
object: T['io.flow.stripe.v0.models.dispute'].isRequired,
|
|
1586
|
+
previous_attributes: PropTypes.object,
|
|
1587
|
+
});
|
|
1588
|
+
|
|
1589
|
+
T['io.flow.stripe.v0.models.stripe_dispute_event'] = PropTypes.exact({
|
|
1590
|
+
id: PropTypes.string.isRequired,
|
|
1591
|
+
api_version: PropTypes.string,
|
|
1592
|
+
data: T['io.flow.stripe.v0.models.stripe_dispute_event_data'].isRequired,
|
|
1593
|
+
request: PropTypes.object,
|
|
1594
|
+
type: T['io.flow.stripe.v0.enums.dispute_event_type'].isRequired,
|
|
1595
|
+
object: PropTypes.string.isRequired,
|
|
1596
|
+
account: PropTypes.string,
|
|
1597
|
+
created: PropTypes.number.isRequired,
|
|
1598
|
+
livemode: PropTypes.bool.isRequired,
|
|
1599
|
+
pending_webhooks: PropTypes.number.isRequired,
|
|
1600
|
+
});
|
|
1601
|
+
|
|
1380
1602
|
T['io.flow.stripe.v0.enums.code_verification_status'] = PropTypes.oneOf(['pending', 'succeeded', 'failed']);
|
|
1381
1603
|
|
|
1382
1604
|
T['io.flow.stripe.v0.models.transfer_data'] = PropTypes.exact({
|
|
@@ -1473,11 +1695,21 @@ T['io.flow.stripe.v0.models.charge_request'] = PropTypes.exact({
|
|
|
1473
1695
|
transfer_data: T['io.flow.stripe.v0.models.transfer_data'],
|
|
1474
1696
|
});
|
|
1475
1697
|
|
|
1698
|
+
T['io.flow.stripe.v0.models.payment_method_details_bancontact'] = PropTypes.exact({
|
|
1699
|
+
type: PropTypes.oneOf(['bancontact']).isRequired,
|
|
1700
|
+
bancontact: T['io.flow.stripe.v0.models.payment_method_details_bancontact_information'].isRequired,
|
|
1701
|
+
});
|
|
1702
|
+
|
|
1476
1703
|
T['io.flow.stripe.v0.models.payment_method_details_klarna'] = PropTypes.exact({
|
|
1477
1704
|
type: PropTypes.oneOf(['klarna']).isRequired,
|
|
1478
1705
|
klarna: T['io.flow.stripe.v0.models.payment_method_details_klarna_information'].isRequired,
|
|
1479
1706
|
});
|
|
1480
1707
|
|
|
1708
|
+
T['io.flow.stripe.v0.models.payment_method_details_ideal'] = PropTypes.exact({
|
|
1709
|
+
type: PropTypes.oneOf(['ideal']).isRequired,
|
|
1710
|
+
ideal: T['io.flow.stripe.v0.models.payment_method_details_ideal_information'].isRequired,
|
|
1711
|
+
});
|
|
1712
|
+
|
|
1481
1713
|
T['io.flow.stripe.v0.models.source_order'] = PropTypes.exact({
|
|
1482
1714
|
amount: PropTypes.number,
|
|
1483
1715
|
currency: PropTypes.string,
|
|
@@ -1725,8 +1957,10 @@ T['io.flow.stripe.v0.models.payment_method'] = PropTypes.exact({
|
|
|
1725
1957
|
id: PropTypes.string.isRequired,
|
|
1726
1958
|
object: PropTypes.string.isRequired,
|
|
1727
1959
|
billing_details: T['io.flow.stripe.v0.models.payment_method_billing_details'],
|
|
1960
|
+
bancontact: PropTypes.object,
|
|
1728
1961
|
card: T['io.flow.stripe.v0.models.payment_method_card_details'],
|
|
1729
1962
|
card_present: PropTypes.object,
|
|
1963
|
+
ideal: PropTypes.object,
|
|
1730
1964
|
klarna: PropTypes.object,
|
|
1731
1965
|
created: PropTypes.number.isRequired,
|
|
1732
1966
|
customer: PropTypes.string,
|
|
@@ -1785,7 +2019,9 @@ T['io.flow.stripe.v0.models.payment_method_details_card'] = PropTypes.exact({
|
|
|
1785
2019
|
|
|
1786
2020
|
T['io.flow.stripe.v0.unions.payment_method_details'] = PropTypes.oneOfType([
|
|
1787
2021
|
T['io.flow.stripe.v0.models.payment_method_details_card'],
|
|
2022
|
+
T['io.flow.stripe.v0.models.payment_method_details_ideal'],
|
|
1788
2023
|
T['io.flow.stripe.v0.models.payment_method_details_klarna'],
|
|
2024
|
+
T['io.flow.stripe.v0.models.payment_method_details_bancontact'],
|
|
1789
2025
|
]);
|
|
1790
2026
|
|
|
1791
2027
|
T['io.flow.stripe.v0.enums.requested_capabilities'] = PropTypes.oneOf(['card_payments', 'legacy_payments', 'transfers']);
|
|
@@ -2248,6 +2484,13 @@ T['io.flow.v0.models.query_builder_query_form'] = PropTypes.exact({
|
|
|
2248
2484
|
q: PropTypes.string.isRequired,
|
|
2249
2485
|
});
|
|
2250
2486
|
|
|
2487
|
+
T['io.flow.v0.models.payment_request_cancellation_reason_order_missing'] = PropTypes.exact({
|
|
2488
|
+
type: PropTypes.oneOf(['order_missing']).isRequired,
|
|
2489
|
+
description: PropTypes.string,
|
|
2490
|
+
});
|
|
2491
|
+
|
|
2492
|
+
T['io.flow.v0.unions.payment_request_cancellation_reason'] = PropTypes.oneOfType([T['io.flow.v0.models.payment_request_cancellation_reason_order_missing']]);
|
|
2493
|
+
|
|
2251
2494
|
T['io.flow.v0.models.merchant_of_record_payment_form'] = PropTypes.exact({
|
|
2252
2495
|
discriminator: PropTypes.oneOf(['merchant_of_record_payment_form']).isRequired,
|
|
2253
2496
|
method: PropTypes.string.isRequired,
|
|
@@ -3078,10 +3321,6 @@ T['io.flow.v0.models.transaction_metadata_channel_card_metadata_issuer_summary']
|
|
|
3078
3321
|
country: PropTypes.string.isRequired,
|
|
3079
3322
|
});
|
|
3080
3323
|
|
|
3081
|
-
T['io.flow.v0.models.transaction_reference'] = PropTypes.exact({
|
|
3082
|
-
id: PropTypes.string.isRequired,
|
|
3083
|
-
});
|
|
3084
|
-
|
|
3085
3324
|
T['io.flow.v0.models.transaction_metadata_outbound_transaction'] = PropTypes.exact({
|
|
3086
3325
|
transaction_id: PropTypes.string.isRequired,
|
|
3087
3326
|
});
|
|
@@ -3583,6 +3822,7 @@ T['io.flow.v0.enums.onboarding_blocked_reason'] = PropTypes.oneOf([
|
|
|
3583
3822
|
'business_street_address_is_po_box',
|
|
3584
3823
|
'exception_merchant',
|
|
3585
3824
|
'application_missing',
|
|
3825
|
+
'missing_logistics_contact_info',
|
|
3586
3826
|
]);
|
|
3587
3827
|
|
|
3588
3828
|
T['io.flow.v0.models.session_experiment_variant_form'] = PropTypes.exact({
|
|
@@ -4005,6 +4245,7 @@ T['io.flow.v0.enums.payment_request_review_check_type'] = PropTypes.oneOf([
|
|
|
4005
4245
|
'order_missing_information',
|
|
4006
4246
|
'order_domestic',
|
|
4007
4247
|
'order_mismatched_currencies',
|
|
4248
|
+
'order_missing',
|
|
4008
4249
|
]);
|
|
4009
4250
|
|
|
4010
4251
|
T['io.flow.v0.models.payment_method_data_selected_payment_option'] = PropTypes.exact({
|
|
@@ -4172,6 +4413,15 @@ T['io.flow.v0.enums.payment_status'] = PropTypes.oneOf([
|
|
|
4172
4413
|
|
|
4173
4414
|
T['io.flow.v0.enums.refund_decline_code'] = PropTypes.oneOf(['expired', 'insufficient_funds', 'unknown']);
|
|
4174
4415
|
|
|
4416
|
+
T['io.flow.v0.models.payment_processor_transaction_details_apm'] = PropTypes.exact({
|
|
4417
|
+
discriminator: PropTypes.oneOf(['apm']).isRequired,
|
|
4418
|
+
transaction_identifier: PropTypes.string,
|
|
4419
|
+
capture_identifier: PropTypes.string,
|
|
4420
|
+
method_type: PropTypes.string,
|
|
4421
|
+
result_status: PropTypes.string,
|
|
4422
|
+
reason_code: PropTypes.string,
|
|
4423
|
+
});
|
|
4424
|
+
|
|
4175
4425
|
T['io.flow.v0.models.payment_processor_transaction_details_card'] = PropTypes.exact({
|
|
4176
4426
|
discriminator: PropTypes.oneOf(['card']).isRequired,
|
|
4177
4427
|
transaction_identifier: PropTypes.string,
|
|
@@ -4188,7 +4438,10 @@ T['io.flow.v0.models.payment_processor_account_reference'] = PropTypes.exact({
|
|
|
4188
4438
|
key: PropTypes.string.isRequired,
|
|
4189
4439
|
});
|
|
4190
4440
|
|
|
4191
|
-
T['io.flow.v0.unions.payment_processor_transaction_details'] = PropTypes.oneOfType([
|
|
4441
|
+
T['io.flow.v0.unions.payment_processor_transaction_details'] = PropTypes.oneOfType([
|
|
4442
|
+
T['io.flow.v0.models.payment_processor_transaction_details_card'],
|
|
4443
|
+
T['io.flow.v0.models.payment_processor_transaction_details_apm'],
|
|
4444
|
+
]);
|
|
4192
4445
|
|
|
4193
4446
|
T['io.flow.v0.models.payment_processor_identifier'] = PropTypes.exact({
|
|
4194
4447
|
id: PropTypes.string.isRequired,
|
|
@@ -4714,6 +4967,7 @@ T['io.flow.v0.models.redirect_authorization_details'] = PropTypes.exact({
|
|
|
4714
4967
|
T['io.flow.v0.models.paypal_authorization_details'] = PropTypes.exact({
|
|
4715
4968
|
discriminator: PropTypes.oneOf(['paypal_authorization_details']).isRequired,
|
|
4716
4969
|
payment_id: PropTypes.string.isRequired,
|
|
4970
|
+
internal_payment_id: PropTypes.string,
|
|
4717
4971
|
payment_method: PropTypes.string,
|
|
4718
4972
|
payment_state: PropTypes.string,
|
|
4719
4973
|
payer_id: PropTypes.string,
|
|
@@ -4817,6 +5071,11 @@ T['io.flow.v0.enums.merchant_rejected_reason'] = PropTypes.oneOf([
|
|
|
4817
5071
|
'merchant_failed_kyb_review',
|
|
4818
5072
|
]);
|
|
4819
5073
|
|
|
5074
|
+
T['io.flow.v0.models.rejection_put_form'] = PropTypes.exact({
|
|
5075
|
+
reason: T['io.flow.v0.enums.merchant_rejected_reason'].isRequired,
|
|
5076
|
+
description: PropTypes.string.isRequired,
|
|
5077
|
+
});
|
|
5078
|
+
|
|
4820
5079
|
T['io.flow.v0.models.merchant_rejected'] = PropTypes.exact({
|
|
4821
5080
|
discriminator: PropTypes.oneOf(['merchant_rejected']).isRequired,
|
|
4822
5081
|
reason: T['io.flow.v0.enums.merchant_rejected_reason'].isRequired,
|
|
@@ -6924,6 +7183,11 @@ T['io.flow.v0.models.transaction_metadata_payment_transaction'] = PropTypes.exac
|
|
|
6924
7183
|
key: PropTypes.string,
|
|
6925
7184
|
});
|
|
6926
7185
|
|
|
7186
|
+
T['io.flow.v0.models.transaction_metadata_channel_organization_transaction'] = PropTypes.exact({
|
|
7187
|
+
id: PropTypes.string.isRequired,
|
|
7188
|
+
metadata: T['io.flow.v0.models.transaction_metadata_payment_transaction'].isRequired,
|
|
7189
|
+
});
|
|
7190
|
+
|
|
6927
7191
|
T['io.flow.v0.models.transaction_metadata_failed_payout'] = PropTypes.exact({
|
|
6928
7192
|
discriminator: PropTypes.oneOf(['failed_payout']).isRequired,
|
|
6929
7193
|
failed_payout: T['io.flow.v0.models.transaction_metadata_failed_payout_reference'].isRequired,
|
|
@@ -7686,7 +7950,7 @@ T['io.flow.v0.models.transaction_metadata_channel'] = PropTypes.exact({
|
|
|
7686
7950
|
discriminator: PropTypes.oneOf(['channel']).isRequired,
|
|
7687
7951
|
method: PropTypes.string.isRequired,
|
|
7688
7952
|
card: T['io.flow.v0.models.transaction_metadata_channel_card_metadata'],
|
|
7689
|
-
organization_transaction: T['io.flow.v0.models.
|
|
7953
|
+
organization_transaction: T['io.flow.v0.models.transaction_metadata_channel_organization_transaction'].isRequired,
|
|
7690
7954
|
});
|
|
7691
7955
|
|
|
7692
7956
|
T['io.flow.v0.unions.transaction_metadata'] = PropTypes.oneOfType([
|
|
@@ -14606,6 +14870,10 @@ T['io.flow.v0.models.token_validation_form'] = PropTypes.exact({
|
|
|
14606
14870
|
token: PropTypes.string.isRequired,
|
|
14607
14871
|
});
|
|
14608
14872
|
|
|
14873
|
+
T['io.flow.v0.models.transaction_reference'] = PropTypes.exact({
|
|
14874
|
+
id: PropTypes.string.isRequired,
|
|
14875
|
+
});
|
|
14876
|
+
|
|
14609
14877
|
T['io.flow.v0.models.transit_window'] = PropTypes.exact({
|
|
14610
14878
|
origin_country: PropTypes.string.isRequired,
|
|
14611
14879
|
destination_country: PropTypes.string.isRequired,
|
|
@@ -14665,6 +14933,11 @@ T['io.flow.stripe.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
14665
14933
|
'charge.succeeded',
|
|
14666
14934
|
'charge.updated',
|
|
14667
14935
|
'charge.refund.updated',
|
|
14936
|
+
'charge.dispute.closed',
|
|
14937
|
+
'charge.dispute.created',
|
|
14938
|
+
'charge.dispute.funds_reinstated',
|
|
14939
|
+
'charge.dispute.funds_withdrawn',
|
|
14940
|
+
'charge.dispute.updated',
|
|
14668
14941
|
'payment_intent.created',
|
|
14669
14942
|
'payment_intent.amount_capturable_updated',
|
|
14670
14943
|
'payment_intent.payment_failed',
|
|
@@ -14685,7 +14958,7 @@ T['io.flow.stripe.v0.enums.klarna_payment_method_category_type'] = PropTypes.one
|
|
|
14685
14958
|
'pay_over_time',
|
|
14686
14959
|
]);
|
|
14687
14960
|
|
|
14688
|
-
T['io.flow.stripe.v0.enums.payment_method_type'] = PropTypes.oneOf(['card', 'card_present', 'klarna']);
|
|
14961
|
+
T['io.flow.stripe.v0.enums.payment_method_type'] = PropTypes.oneOf(['card', 'card_present', 'ideal', 'klarna', 'bancontact']);
|
|
14689
14962
|
|
|
14690
14963
|
T['io.flow.stripe.v0.models.card_request'] = PropTypes.exact({
|
|
14691
14964
|
object: PropTypes.string.isRequired,
|
|
@@ -15991,6 +16264,7 @@ export const paymentProcessorAccountReference = T['io.flow.v0.models.payment_pro
|
|
|
15991
16264
|
export const paymentProcessorIdentifier = T['io.flow.v0.models.payment_processor_identifier'];
|
|
15992
16265
|
export const paymentProcessorReference = T['io.flow.v0.models.payment_processor_reference'];
|
|
15993
16266
|
export const paymentProcessorTransactionDetails = T['io.flow.v0.unions.payment_processor_transaction_details'];
|
|
16267
|
+
export const paymentProcessorTransactionDetailsApm = T['io.flow.v0.models.payment_processor_transaction_details_apm'];
|
|
15994
16268
|
export const paymentProcessorTransactionDetailsCard = T['io.flow.v0.models.payment_processor_transaction_details_card'];
|
|
15995
16269
|
export const paymentReference = T['io.flow.v0.models.payment_reference'];
|
|
15996
16270
|
export const paymentRefund = T['io.flow.v0.models.payment_refund'];
|
|
@@ -16002,6 +16276,8 @@ export const paymentRequestBillingCurrencyRate = T['io.flow.v0.models.payment_re
|
|
|
16002
16276
|
export const paymentRequestBillingFees = T['io.flow.v0.models.payment_request_billing_fees'];
|
|
16003
16277
|
export const paymentRequestBundle = T['io.flow.v0.models.payment_request_bundle'];
|
|
16004
16278
|
export const paymentRequestBundleForm = T['io.flow.v0.models.payment_request_bundle_form'];
|
|
16279
|
+
export const paymentRequestCancellationReason = T['io.flow.v0.unions.payment_request_cancellation_reason'];
|
|
16280
|
+
export const paymentRequestCancellationReasonOrderMissing = T['io.flow.v0.models.payment_request_cancellation_reason_order_missing'];
|
|
16005
16281
|
export const paymentRequestDeleted = T['io.flow.v0.models.payment_request_deleted'];
|
|
16006
16282
|
export const paymentRequestForm = T['io.flow.v0.models.payment_request_form'];
|
|
16007
16283
|
export const paymentRequestReference = T['io.flow.v0.models.payment_request_reference'];
|
|
@@ -16187,6 +16463,7 @@ export const regionReference = T['io.flow.v0.models.region_reference'];
|
|
|
16187
16463
|
export const regionSetting = T['io.flow.v0.models.region_setting'];
|
|
16188
16464
|
export const regionSettingForm = T['io.flow.v0.models.region_setting_form'];
|
|
16189
16465
|
export const regionType = T['io.flow.v0.enums.region_type'];
|
|
16466
|
+
export const rejectionPutForm = T['io.flow.v0.models.rejection_put_form'];
|
|
16190
16467
|
export const remoteAreaByWeightServiceFee = T['io.flow.v0.models.remote_area_by_weight_service_fee'];
|
|
16191
16468
|
export const remoteAreaRatecardFee = T['io.flow.v0.models.remote_area_ratecard_fee'];
|
|
16192
16469
|
export const remoteAreaServiceFee = T['io.flow.v0.models.remote_area_service_fee'];
|
|
@@ -16514,6 +16791,7 @@ export const transactionMetadataCarrierCharge = T['io.flow.v0.models.transaction
|
|
|
16514
16791
|
export const transactionMetadataChannel = T['io.flow.v0.models.transaction_metadata_channel'];
|
|
16515
16792
|
export const transactionMetadataChannelCardMetadata = T['io.flow.v0.models.transaction_metadata_channel_card_metadata'];
|
|
16516
16793
|
export const transactionMetadataChannelCardMetadataIssuerSummary = T['io.flow.v0.models.transaction_metadata_channel_card_metadata_issuer_summary'];
|
|
16794
|
+
export const transactionMetadataChannelOrganizationTransaction = T['io.flow.v0.models.transaction_metadata_channel_organization_transaction'];
|
|
16517
16795
|
export const transactionMetadataFailedPayout = T['io.flow.v0.models.transaction_metadata_failed_payout'];
|
|
16518
16796
|
export const transactionMetadataFailedPayoutReference = T['io.flow.v0.models.transaction_metadata_failed_payout_reference'];
|
|
16519
16797
|
export const transactionMetadataManual = T['io.flow.v0.models.transaction_metadata_manual'];
|