@develit-services/bank 0.8.5 → 0.8.7
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/dist/database/schema.cjs +1 -1
- package/dist/database/schema.d.cts +1 -1
- package/dist/database/schema.d.mts +1 -1
- package/dist/database/schema.d.ts +1 -1
- package/dist/database/schema.mjs +1 -1
- package/dist/export/worker.cjs +583 -146
- package/dist/export/worker.d.cts +286 -44
- package/dist/export/worker.d.mts +286 -44
- package/dist/export/worker.d.ts +286 -44
- package/dist/export/worker.mjs +584 -147
- package/dist/export/workflows.cjs +132 -16
- package/dist/export/workflows.mjs +133 -17
- package/dist/shared/{bank.C-T1FQxg.cjs → bank.62VzK9Aj.cjs} +1 -1
- package/dist/shared/{bank.SQ4Mmr8u.cjs → bank.BS7fFjGA.cjs} +34 -4
- package/dist/shared/{bank.6faPHUEY.d.ts → bank.BYRq3yJf.d.ts} +81 -11
- package/dist/shared/{bank.C4VOdIx1.mjs → bank.C0UN6luZ.mjs} +34 -4
- package/dist/shared/{bank.DDHrdFgy.mjs → bank.CA5ytXxp.mjs} +1 -1
- package/dist/shared/{bank.BoWCMu5n.d.cts → bank.CO89tR9U.d.cts} +81 -11
- package/dist/shared/{bank.BaMRCHk-.d.ts → bank.Cns5ss41.d.cts} +55 -18
- package/dist/shared/{bank.BaMRCHk-.d.cts → bank.Cns5ss41.d.mts} +55 -18
- package/dist/shared/{bank.BaMRCHk-.d.mts → bank.Cns5ss41.d.ts} +55 -18
- package/dist/shared/{bank.DOL1uM4n.d.mts → bank.CreoSb2d.d.mts} +81 -11
- package/dist/shared/{bank.DRrBrAdI.mjs → bank.D1jqaHaF.mjs} +91 -31
- package/dist/shared/{bank.Cpy9PULF.mjs → bank.DEmzZGZW.mjs} +31 -5
- package/dist/shared/{bank.BOnP9p9Y.cjs → bank.Dm8GHThw.cjs} +31 -5
- package/dist/shared/{bank.CQURey1E.cjs → bank.DwyCCyd0.cjs} +90 -31
- package/dist/types.cjs +3 -4
- package/dist/types.d.cts +8 -16
- package/dist/types.d.mts +8 -16
- package/dist/types.d.ts +8 -16
- package/dist/types.mjs +3 -3
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { d as CurrencyCode, J as BankCode, V as CountryCode } from './bank.Cns5ss41.cjs';
|
|
2
2
|
import { z } from 'zod';
|
|
3
3
|
|
|
4
4
|
type ReferenceType = `${'VS' | 'SS' | 'KS'}:${number}`;
|
|
@@ -210,6 +210,18 @@ type FinbricksAccountTransactionsResponse = {
|
|
|
210
210
|
transactions: FinbricksTransaction[];
|
|
211
211
|
};
|
|
212
212
|
|
|
213
|
+
/**
|
|
214
|
+
* @deprecated Use IncomingPayment from './payment-lifecycle' instead
|
|
215
|
+
* This type is kept for backward compatibility during migration
|
|
216
|
+
*/
|
|
217
|
+
|
|
218
|
+
/**
|
|
219
|
+
* Message pushed to PAYMENTS_READY_TO_BATCH_QUEUE after payment_request is created in DB
|
|
220
|
+
*/
|
|
221
|
+
type PaymentQueueMessage = {
|
|
222
|
+
paymentId: string;
|
|
223
|
+
};
|
|
224
|
+
|
|
213
225
|
declare const sendPaymentInputSchema: z.ZodObject<{
|
|
214
226
|
correlationId: z.ZodString;
|
|
215
227
|
refId: z.ZodOptional<z.ZodString>;
|
|
@@ -225,7 +237,6 @@ declare const sendPaymentInputSchema: z.ZodObject<{
|
|
|
225
237
|
OUR: "OUR";
|
|
226
238
|
BEN: "BEN";
|
|
227
239
|
}>>;
|
|
228
|
-
executionDate: z.ZodOptional<z.ZodString>;
|
|
229
240
|
instructionPriority: z.ZodOptional<z.ZodEnum<{
|
|
230
241
|
NORM: "NORM";
|
|
231
242
|
HIGH: "HIGH";
|
|
@@ -301,31 +312,42 @@ declare const sendPaymentInputSchema: z.ZodObject<{
|
|
|
301
312
|
"0710": "0710";
|
|
302
313
|
"0800": "0800";
|
|
303
314
|
2010: "2010";
|
|
315
|
+
2020: "2020";
|
|
316
|
+
2030: "2030";
|
|
304
317
|
2060: "2060";
|
|
305
318
|
2070: "2070";
|
|
306
319
|
2100: "2100";
|
|
307
320
|
2200: "2200";
|
|
321
|
+
2210: "2210";
|
|
308
322
|
2220: "2220";
|
|
323
|
+
2240: "2240";
|
|
309
324
|
2250: "2250";
|
|
310
325
|
2260: "2260";
|
|
326
|
+
2310: "2310";
|
|
311
327
|
2600: "2600";
|
|
312
328
|
2700: "2700";
|
|
313
329
|
3030: "3030";
|
|
330
|
+
3050: "3050";
|
|
314
331
|
3060: "3060";
|
|
315
332
|
3500: "3500";
|
|
333
|
+
4000: "4000";
|
|
316
334
|
4300: "4300";
|
|
317
335
|
5500: "5500";
|
|
336
|
+
5400: "5400";
|
|
318
337
|
5800: "5800";
|
|
319
338
|
6000: "6000";
|
|
339
|
+
6100: "6100";
|
|
320
340
|
6200: "6200";
|
|
321
341
|
6210: "6210";
|
|
322
342
|
6300: "6300";
|
|
323
343
|
6363: "6363";
|
|
324
344
|
6700: "6700";
|
|
325
345
|
6800: "6800";
|
|
346
|
+
7940: "7940";
|
|
326
347
|
7910: "7910";
|
|
327
348
|
7950: "7950";
|
|
328
349
|
7960: "7960";
|
|
350
|
+
7980: "7980";
|
|
329
351
|
7970: "7970";
|
|
330
352
|
7990: "7990";
|
|
331
353
|
8030: "8030";
|
|
@@ -335,11 +357,15 @@ declare const sendPaymentInputSchema: z.ZodObject<{
|
|
|
335
357
|
8150: "8150";
|
|
336
358
|
8190: "8190";
|
|
337
359
|
8198: "8198";
|
|
360
|
+
8200: "8200";
|
|
338
361
|
8220: "8220";
|
|
362
|
+
8230: "8230";
|
|
363
|
+
8240: "8240";
|
|
339
364
|
8250: "8250";
|
|
340
365
|
8255: "8255";
|
|
341
366
|
8265: "8265";
|
|
342
367
|
8500: "8500";
|
|
368
|
+
8610: "8610";
|
|
343
369
|
}>>;
|
|
344
370
|
holderName: z.ZodOptional<z.ZodString>;
|
|
345
371
|
iban: z.ZodOptional<z.ZodString>;
|
|
@@ -402,6 +428,7 @@ declare const sendPaymentInputSchema: z.ZodObject<{
|
|
|
402
428
|
AVAX: "AVAX";
|
|
403
429
|
}>>;
|
|
404
430
|
countryCode: z.ZodOptional<z.ZodEnum<{
|
|
431
|
+
IM: "IM";
|
|
405
432
|
AF: "AF";
|
|
406
433
|
AL: "AL";
|
|
407
434
|
DZ: "DZ";
|
|
@@ -490,7 +517,6 @@ declare const sendPaymentInputSchema: z.ZodObject<{
|
|
|
490
517
|
IR: "IR";
|
|
491
518
|
IQ: "IQ";
|
|
492
519
|
IE: "IE";
|
|
493
|
-
IM: "IM";
|
|
494
520
|
IL: "IL";
|
|
495
521
|
IT: "IT";
|
|
496
522
|
CI: "CI";
|
|
@@ -631,31 +657,42 @@ declare const sendPaymentInputSchema: z.ZodObject<{
|
|
|
631
657
|
"0710": "0710";
|
|
632
658
|
"0800": "0800";
|
|
633
659
|
2010: "2010";
|
|
660
|
+
2020: "2020";
|
|
661
|
+
2030: "2030";
|
|
634
662
|
2060: "2060";
|
|
635
663
|
2070: "2070";
|
|
636
664
|
2100: "2100";
|
|
637
665
|
2200: "2200";
|
|
666
|
+
2210: "2210";
|
|
638
667
|
2220: "2220";
|
|
668
|
+
2240: "2240";
|
|
639
669
|
2250: "2250";
|
|
640
670
|
2260: "2260";
|
|
671
|
+
2310: "2310";
|
|
641
672
|
2600: "2600";
|
|
642
673
|
2700: "2700";
|
|
643
674
|
3030: "3030";
|
|
675
|
+
3050: "3050";
|
|
644
676
|
3060: "3060";
|
|
645
677
|
3500: "3500";
|
|
678
|
+
4000: "4000";
|
|
646
679
|
4300: "4300";
|
|
647
680
|
5500: "5500";
|
|
681
|
+
5400: "5400";
|
|
648
682
|
5800: "5800";
|
|
649
683
|
6000: "6000";
|
|
684
|
+
6100: "6100";
|
|
650
685
|
6200: "6200";
|
|
651
686
|
6210: "6210";
|
|
652
687
|
6300: "6300";
|
|
653
688
|
6363: "6363";
|
|
654
689
|
6700: "6700";
|
|
655
690
|
6800: "6800";
|
|
691
|
+
7940: "7940";
|
|
656
692
|
7910: "7910";
|
|
657
693
|
7950: "7950";
|
|
658
694
|
7960: "7960";
|
|
695
|
+
7980: "7980";
|
|
659
696
|
7970: "7970";
|
|
660
697
|
7990: "7990";
|
|
661
698
|
8030: "8030";
|
|
@@ -665,11 +702,15 @@ declare const sendPaymentInputSchema: z.ZodObject<{
|
|
|
665
702
|
8150: "8150";
|
|
666
703
|
8190: "8190";
|
|
667
704
|
8198: "8198";
|
|
705
|
+
8200: "8200";
|
|
668
706
|
8220: "8220";
|
|
707
|
+
8230: "8230";
|
|
708
|
+
8240: "8240";
|
|
669
709
|
8250: "8250";
|
|
670
710
|
8255: "8255";
|
|
671
711
|
8265: "8265";
|
|
672
712
|
8500: "8500";
|
|
713
|
+
8610: "8610";
|
|
673
714
|
}>>;
|
|
674
715
|
holderName: z.ZodOptional<z.ZodString>;
|
|
675
716
|
iban: z.ZodOptional<z.ZodString>;
|
|
@@ -732,6 +773,7 @@ declare const sendPaymentInputSchema: z.ZodObject<{
|
|
|
732
773
|
AVAX: "AVAX";
|
|
733
774
|
}>>;
|
|
734
775
|
countryCode: z.ZodOptional<z.ZodEnum<{
|
|
776
|
+
IM: "IM";
|
|
735
777
|
AF: "AF";
|
|
736
778
|
AL: "AL";
|
|
737
779
|
DZ: "DZ";
|
|
@@ -820,7 +862,6 @@ declare const sendPaymentInputSchema: z.ZodObject<{
|
|
|
820
862
|
IR: "IR";
|
|
821
863
|
IQ: "IQ";
|
|
822
864
|
IE: "IE";
|
|
823
|
-
IM: "IM";
|
|
824
865
|
IL: "IL";
|
|
825
866
|
IT: "IT";
|
|
826
867
|
CI: "CI";
|
|
@@ -950,12 +991,13 @@ declare const sendPaymentInputSchema: z.ZodObject<{
|
|
|
950
991
|
bsb: z.ZodOptional<z.ZodString>;
|
|
951
992
|
brBankNumber: z.ZodOptional<z.ZodString>;
|
|
952
993
|
}, z.core.$strip>;
|
|
953
|
-
purpose: z.ZodOptional<z.ZodString>;
|
|
954
994
|
sendAsSinglePayment: z.ZodOptional<z.ZodBoolean>;
|
|
955
995
|
}, z.core.$strip>;
|
|
956
996
|
interface SendPaymentInput extends z.infer<typeof sendPaymentInputSchema> {
|
|
957
997
|
}
|
|
958
|
-
type SendPaymentOutput =
|
|
998
|
+
type SendPaymentOutput = {
|
|
999
|
+
paymentId: string;
|
|
1000
|
+
};
|
|
959
1001
|
|
|
960
1002
|
declare const sendPaymentSyncInputSchema: z.ZodObject<{
|
|
961
1003
|
correlationId: z.ZodString;
|
|
@@ -972,7 +1014,6 @@ declare const sendPaymentSyncInputSchema: z.ZodObject<{
|
|
|
972
1014
|
OUR: "OUR";
|
|
973
1015
|
BEN: "BEN";
|
|
974
1016
|
}>>;
|
|
975
|
-
executionDate: z.ZodOptional<z.ZodString>;
|
|
976
1017
|
instructionPriority: z.ZodOptional<z.ZodEnum<{
|
|
977
1018
|
NORM: "NORM";
|
|
978
1019
|
HIGH: "HIGH";
|
|
@@ -1048,31 +1089,42 @@ declare const sendPaymentSyncInputSchema: z.ZodObject<{
|
|
|
1048
1089
|
"0710": "0710";
|
|
1049
1090
|
"0800": "0800";
|
|
1050
1091
|
2010: "2010";
|
|
1092
|
+
2020: "2020";
|
|
1093
|
+
2030: "2030";
|
|
1051
1094
|
2060: "2060";
|
|
1052
1095
|
2070: "2070";
|
|
1053
1096
|
2100: "2100";
|
|
1054
1097
|
2200: "2200";
|
|
1098
|
+
2210: "2210";
|
|
1055
1099
|
2220: "2220";
|
|
1100
|
+
2240: "2240";
|
|
1056
1101
|
2250: "2250";
|
|
1057
1102
|
2260: "2260";
|
|
1103
|
+
2310: "2310";
|
|
1058
1104
|
2600: "2600";
|
|
1059
1105
|
2700: "2700";
|
|
1060
1106
|
3030: "3030";
|
|
1107
|
+
3050: "3050";
|
|
1061
1108
|
3060: "3060";
|
|
1062
1109
|
3500: "3500";
|
|
1110
|
+
4000: "4000";
|
|
1063
1111
|
4300: "4300";
|
|
1064
1112
|
5500: "5500";
|
|
1113
|
+
5400: "5400";
|
|
1065
1114
|
5800: "5800";
|
|
1066
1115
|
6000: "6000";
|
|
1116
|
+
6100: "6100";
|
|
1067
1117
|
6200: "6200";
|
|
1068
1118
|
6210: "6210";
|
|
1069
1119
|
6300: "6300";
|
|
1070
1120
|
6363: "6363";
|
|
1071
1121
|
6700: "6700";
|
|
1072
1122
|
6800: "6800";
|
|
1123
|
+
7940: "7940";
|
|
1073
1124
|
7910: "7910";
|
|
1074
1125
|
7950: "7950";
|
|
1075
1126
|
7960: "7960";
|
|
1127
|
+
7980: "7980";
|
|
1076
1128
|
7970: "7970";
|
|
1077
1129
|
7990: "7990";
|
|
1078
1130
|
8030: "8030";
|
|
@@ -1082,11 +1134,15 @@ declare const sendPaymentSyncInputSchema: z.ZodObject<{
|
|
|
1082
1134
|
8150: "8150";
|
|
1083
1135
|
8190: "8190";
|
|
1084
1136
|
8198: "8198";
|
|
1137
|
+
8200: "8200";
|
|
1085
1138
|
8220: "8220";
|
|
1139
|
+
8230: "8230";
|
|
1140
|
+
8240: "8240";
|
|
1086
1141
|
8250: "8250";
|
|
1087
1142
|
8255: "8255";
|
|
1088
1143
|
8265: "8265";
|
|
1089
1144
|
8500: "8500";
|
|
1145
|
+
8610: "8610";
|
|
1090
1146
|
}>>;
|
|
1091
1147
|
holderName: z.ZodOptional<z.ZodString>;
|
|
1092
1148
|
iban: z.ZodOptional<z.ZodString>;
|
|
@@ -1149,6 +1205,7 @@ declare const sendPaymentSyncInputSchema: z.ZodObject<{
|
|
|
1149
1205
|
AVAX: "AVAX";
|
|
1150
1206
|
}>>;
|
|
1151
1207
|
countryCode: z.ZodOptional<z.ZodEnum<{
|
|
1208
|
+
IM: "IM";
|
|
1152
1209
|
AF: "AF";
|
|
1153
1210
|
AL: "AL";
|
|
1154
1211
|
DZ: "DZ";
|
|
@@ -1237,7 +1294,6 @@ declare const sendPaymentSyncInputSchema: z.ZodObject<{
|
|
|
1237
1294
|
IR: "IR";
|
|
1238
1295
|
IQ: "IQ";
|
|
1239
1296
|
IE: "IE";
|
|
1240
|
-
IM: "IM";
|
|
1241
1297
|
IL: "IL";
|
|
1242
1298
|
IT: "IT";
|
|
1243
1299
|
CI: "CI";
|
|
@@ -1378,31 +1434,42 @@ declare const sendPaymentSyncInputSchema: z.ZodObject<{
|
|
|
1378
1434
|
"0710": "0710";
|
|
1379
1435
|
"0800": "0800";
|
|
1380
1436
|
2010: "2010";
|
|
1437
|
+
2020: "2020";
|
|
1438
|
+
2030: "2030";
|
|
1381
1439
|
2060: "2060";
|
|
1382
1440
|
2070: "2070";
|
|
1383
1441
|
2100: "2100";
|
|
1384
1442
|
2200: "2200";
|
|
1443
|
+
2210: "2210";
|
|
1385
1444
|
2220: "2220";
|
|
1445
|
+
2240: "2240";
|
|
1386
1446
|
2250: "2250";
|
|
1387
1447
|
2260: "2260";
|
|
1448
|
+
2310: "2310";
|
|
1388
1449
|
2600: "2600";
|
|
1389
1450
|
2700: "2700";
|
|
1390
1451
|
3030: "3030";
|
|
1452
|
+
3050: "3050";
|
|
1391
1453
|
3060: "3060";
|
|
1392
1454
|
3500: "3500";
|
|
1455
|
+
4000: "4000";
|
|
1393
1456
|
4300: "4300";
|
|
1394
1457
|
5500: "5500";
|
|
1458
|
+
5400: "5400";
|
|
1395
1459
|
5800: "5800";
|
|
1396
1460
|
6000: "6000";
|
|
1461
|
+
6100: "6100";
|
|
1397
1462
|
6200: "6200";
|
|
1398
1463
|
6210: "6210";
|
|
1399
1464
|
6300: "6300";
|
|
1400
1465
|
6363: "6363";
|
|
1401
1466
|
6700: "6700";
|
|
1402
1467
|
6800: "6800";
|
|
1468
|
+
7940: "7940";
|
|
1403
1469
|
7910: "7910";
|
|
1404
1470
|
7950: "7950";
|
|
1405
1471
|
7960: "7960";
|
|
1472
|
+
7980: "7980";
|
|
1406
1473
|
7970: "7970";
|
|
1407
1474
|
7990: "7990";
|
|
1408
1475
|
8030: "8030";
|
|
@@ -1412,11 +1479,15 @@ declare const sendPaymentSyncInputSchema: z.ZodObject<{
|
|
|
1412
1479
|
8150: "8150";
|
|
1413
1480
|
8190: "8190";
|
|
1414
1481
|
8198: "8198";
|
|
1482
|
+
8200: "8200";
|
|
1415
1483
|
8220: "8220";
|
|
1484
|
+
8230: "8230";
|
|
1485
|
+
8240: "8240";
|
|
1416
1486
|
8250: "8250";
|
|
1417
1487
|
8255: "8255";
|
|
1418
1488
|
8265: "8265";
|
|
1419
1489
|
8500: "8500";
|
|
1490
|
+
8610: "8610";
|
|
1420
1491
|
}>>;
|
|
1421
1492
|
holderName: z.ZodOptional<z.ZodString>;
|
|
1422
1493
|
iban: z.ZodOptional<z.ZodString>;
|
|
@@ -1479,6 +1550,7 @@ declare const sendPaymentSyncInputSchema: z.ZodObject<{
|
|
|
1479
1550
|
AVAX: "AVAX";
|
|
1480
1551
|
}>>;
|
|
1481
1552
|
countryCode: z.ZodOptional<z.ZodEnum<{
|
|
1553
|
+
IM: "IM";
|
|
1482
1554
|
AF: "AF";
|
|
1483
1555
|
AL: "AL";
|
|
1484
1556
|
DZ: "DZ";
|
|
@@ -1567,7 +1639,6 @@ declare const sendPaymentSyncInputSchema: z.ZodObject<{
|
|
|
1567
1639
|
IR: "IR";
|
|
1568
1640
|
IQ: "IQ";
|
|
1569
1641
|
IE: "IE";
|
|
1570
|
-
IM: "IM";
|
|
1571
1642
|
IL: "IL";
|
|
1572
1643
|
IT: "IT";
|
|
1573
1644
|
CI: "CI";
|
|
@@ -1697,7 +1768,6 @@ declare const sendPaymentSyncInputSchema: z.ZodObject<{
|
|
|
1697
1768
|
bsb: z.ZodOptional<z.ZodString>;
|
|
1698
1769
|
brBankNumber: z.ZodOptional<z.ZodString>;
|
|
1699
1770
|
}, z.core.$strip>;
|
|
1700
|
-
purpose: z.ZodOptional<z.ZodString>;
|
|
1701
1771
|
sendAsSinglePayment: z.ZodOptional<z.ZodBoolean>;
|
|
1702
1772
|
}, z.core.$strip>;
|
|
1703
1773
|
interface SendPaymentSyncInput extends z.infer<typeof sendPaymentSyncInputSchema> {
|
|
@@ -1707,4 +1777,4 @@ type SendPaymentSyncOutput = {
|
|
|
1707
1777
|
authorizationUrl: string;
|
|
1708
1778
|
};
|
|
1709
1779
|
|
|
1710
|
-
export type { FinbricksSupportedBanksResponse as F, ReferenceType as R, SendPaymentInput as S, SendPaymentOutput as a, SendPaymentSyncInput as b, SendPaymentSyncOutput as c, FinbricksAccount as d, FinbricksAccountTransactionsResponse as e, FinbricksAccountsListResponse as f, FinbricksAuthTokenResponse as g, FinbricksBatchResponse as h, FinbricksConnectAccountResponse as i, FinbricksPaymentResponse as j, FinbricksSupportedBank as k };
|
|
1780
|
+
export type { FinbricksSupportedBanksResponse as F, PaymentQueueMessage as P, ReferenceType as R, SendPaymentInput as S, SendPaymentOutput as a, SendPaymentSyncInput as b, SendPaymentSyncOutput as c, FinbricksAccount as d, FinbricksAccountTransactionsResponse as e, FinbricksAccountsListResponse as f, FinbricksAuthTokenResponse as g, FinbricksBatchResponse as h, FinbricksConnectAccountResponse as i, FinbricksPaymentResponse as j, FinbricksSupportedBank as k };
|
|
@@ -42,7 +42,7 @@ type CurrencyCode = (typeof CURRENCY_CODES)[number];
|
|
|
42
42
|
/**
|
|
43
43
|
* Batch status constants
|
|
44
44
|
*/
|
|
45
|
-
declare const BATCH_STATUSES: readonly ["OPEN", "PROCESSING", "READY_TO_SIGN", "SIGNED", "SIGNATURE_FAILED", "FAILED"];
|
|
45
|
+
declare const BATCH_STATUSES: readonly ["OPEN", "PROCESSING", "READY_TO_SIGN", "SIGNED", "SIGNATURE_FAILED", "FAILED", "COMPLETED"];
|
|
46
46
|
/**
|
|
47
47
|
* Type definition for batch status
|
|
48
48
|
*/
|
|
@@ -102,6 +102,7 @@ declare abstract class IBankConnector {
|
|
|
102
102
|
* @returns true if native batch API is supported, false if fallback to single payments is needed
|
|
103
103
|
*/
|
|
104
104
|
abstract supportsBatch(paymentType: PaymentType): boolean;
|
|
105
|
+
supportsPaymentType(paymentType: PaymentType): boolean;
|
|
105
106
|
/**
|
|
106
107
|
* Generates authorization URI for connecting a new bank account.
|
|
107
108
|
* @param ott - One-time token used to identify the authorization flow
|
|
@@ -1008,14 +1009,14 @@ declare const accountInsertSchema: drizzle_zod.BuildSchema<"insert", {
|
|
|
1008
1009
|
tableName: "account";
|
|
1009
1010
|
dataType: "string";
|
|
1010
1011
|
columnType: "SQLiteText";
|
|
1011
|
-
data: "5051" | "0100" | "0300" | "0600" | "0710" | "0800" | "2010" | "2060" | "2070" | "2100" | "2200" | "2220" | "2250" | "2260" | "2600" | "2700" | "3030" | "3060" | "3500" | "4300" | "5500" | "5800" | "6000" | "6200" | "6210" | "6300" | "6363" | "6700" | "6800" | "7910" | "7950" | "7960" | "7970" | "7990" | "8030" | "8040" | "8060" | "8090" | "8150" | "8190" | "8198" | "8220" | "8250" | "8255" | "8265" | "8500";
|
|
1012
|
+
data: "5051" | "0100" | "0300" | "0600" | "0710" | "0800" | "2010" | "2020" | "2030" | "2060" | "2070" | "2100" | "2200" | "2210" | "2220" | "2240" | "2250" | "2260" | "2310" | "2600" | "2700" | "3030" | "3050" | "3060" | "3500" | "4000" | "4300" | "5500" | "5400" | "5800" | "6000" | "6100" | "6200" | "6210" | "6300" | "6363" | "6700" | "6800" | "7940" | "7910" | "7950" | "7960" | "7980" | "7970" | "7990" | "8030" | "8040" | "8060" | "8090" | "8150" | "8190" | "8198" | "8200" | "8220" | "8230" | "8240" | "8250" | "8255" | "8265" | "8500" | "8610";
|
|
1012
1013
|
driverParam: string;
|
|
1013
1014
|
notNull: true;
|
|
1014
1015
|
hasDefault: false;
|
|
1015
1016
|
isPrimaryKey: false;
|
|
1016
1017
|
isAutoincrement: false;
|
|
1017
1018
|
hasRuntimeDefault: false;
|
|
1018
|
-
enumValues: ["5051" | "0100" | "0300" | "0600" | "0710" | "0800" | "2010" | "2060" | "2070" | "2100" | "2200" | "2220" | "2250" | "2260" | "2600" | "2700" | "3030" | "3060" | "3500" | "4300" | "5500" | "5800" | "6000" | "6200" | "6210" | "6300" | "6363" | "6700" | "6800" | "7910" | "7950" | "7960" | "7970" | "7990" | "8030" | "8040" | "8060" | "8090" | "8150" | "8190" | "8198" | "8220" | "8250" | "8255" | "8265" | "8500", ...("5051" | "0100" | "0300" | "0600" | "0710" | "0800" | "2010" | "2060" | "2070" | "2100" | "2200" | "2220" | "2250" | "2260" | "2600" | "2700" | "3030" | "3060" | "3500" | "4300" | "5500" | "5800" | "6000" | "6200" | "6210" | "6300" | "6363" | "6700" | "6800" | "7910" | "7950" | "7960" | "7970" | "7990" | "8030" | "8040" | "8060" | "8090" | "8150" | "8190" | "8198" | "8220" | "8250" | "8255" | "8265" | "8500")[]];
|
|
1019
|
+
enumValues: ["5051" | "0100" | "0300" | "0600" | "0710" | "0800" | "2010" | "2020" | "2030" | "2060" | "2070" | "2100" | "2200" | "2210" | "2220" | "2240" | "2250" | "2260" | "2310" | "2600" | "2700" | "3030" | "3050" | "3060" | "3500" | "4000" | "4300" | "5500" | "5400" | "5800" | "6000" | "6100" | "6200" | "6210" | "6300" | "6363" | "6700" | "6800" | "7940" | "7910" | "7950" | "7960" | "7980" | "7970" | "7990" | "8030" | "8040" | "8060" | "8090" | "8150" | "8190" | "8198" | "8200" | "8220" | "8230" | "8240" | "8250" | "8255" | "8265" | "8500" | "8610", ...("5051" | "0100" | "0300" | "0600" | "0710" | "0800" | "2010" | "2020" | "2030" | "2060" | "2070" | "2100" | "2200" | "2210" | "2220" | "2240" | "2250" | "2260" | "2310" | "2600" | "2700" | "3030" | "3050" | "3060" | "3500" | "4000" | "4300" | "5500" | "5400" | "5800" | "6000" | "6100" | "6200" | "6210" | "6300" | "6363" | "6700" | "6800" | "7940" | "7910" | "7950" | "7960" | "7980" | "7970" | "7990" | "8030" | "8040" | "8060" | "8090" | "8150" | "8190" | "8198" | "8200" | "8220" | "8230" | "8240" | "8250" | "8255" | "8265" | "8500" | "8610")[]];
|
|
1019
1020
|
baseColumn: never;
|
|
1020
1021
|
identity: undefined;
|
|
1021
1022
|
generated: undefined;
|
|
@@ -1552,14 +1553,14 @@ declare const accountUpdateSchema: drizzle_zod.BuildSchema<"update", {
|
|
|
1552
1553
|
tableName: "account";
|
|
1553
1554
|
dataType: "string";
|
|
1554
1555
|
columnType: "SQLiteText";
|
|
1555
|
-
data: "5051" | "0100" | "0300" | "0600" | "0710" | "0800" | "2010" | "2060" | "2070" | "2100" | "2200" | "2220" | "2250" | "2260" | "2600" | "2700" | "3030" | "3060" | "3500" | "4300" | "5500" | "5800" | "6000" | "6200" | "6210" | "6300" | "6363" | "6700" | "6800" | "7910" | "7950" | "7960" | "7970" | "7990" | "8030" | "8040" | "8060" | "8090" | "8150" | "8190" | "8198" | "8220" | "8250" | "8255" | "8265" | "8500";
|
|
1556
|
+
data: "5051" | "0100" | "0300" | "0600" | "0710" | "0800" | "2010" | "2020" | "2030" | "2060" | "2070" | "2100" | "2200" | "2210" | "2220" | "2240" | "2250" | "2260" | "2310" | "2600" | "2700" | "3030" | "3050" | "3060" | "3500" | "4000" | "4300" | "5500" | "5400" | "5800" | "6000" | "6100" | "6200" | "6210" | "6300" | "6363" | "6700" | "6800" | "7940" | "7910" | "7950" | "7960" | "7980" | "7970" | "7990" | "8030" | "8040" | "8060" | "8090" | "8150" | "8190" | "8198" | "8200" | "8220" | "8230" | "8240" | "8250" | "8255" | "8265" | "8500" | "8610";
|
|
1556
1557
|
driverParam: string;
|
|
1557
1558
|
notNull: true;
|
|
1558
1559
|
hasDefault: false;
|
|
1559
1560
|
isPrimaryKey: false;
|
|
1560
1561
|
isAutoincrement: false;
|
|
1561
1562
|
hasRuntimeDefault: false;
|
|
1562
|
-
enumValues: ["5051" | "0100" | "0300" | "0600" | "0710" | "0800" | "2010" | "2060" | "2070" | "2100" | "2200" | "2220" | "2250" | "2260" | "2600" | "2700" | "3030" | "3060" | "3500" | "4300" | "5500" | "5800" | "6000" | "6200" | "6210" | "6300" | "6363" | "6700" | "6800" | "7910" | "7950" | "7960" | "7970" | "7990" | "8030" | "8040" | "8060" | "8090" | "8150" | "8190" | "8198" | "8220" | "8250" | "8255" | "8265" | "8500", ...("5051" | "0100" | "0300" | "0600" | "0710" | "0800" | "2010" | "2060" | "2070" | "2100" | "2200" | "2220" | "2250" | "2260" | "2600" | "2700" | "3030" | "3060" | "3500" | "4300" | "5500" | "5800" | "6000" | "6200" | "6210" | "6300" | "6363" | "6700" | "6800" | "7910" | "7950" | "7960" | "7970" | "7990" | "8030" | "8040" | "8060" | "8090" | "8150" | "8190" | "8198" | "8220" | "8250" | "8255" | "8265" | "8500")[]];
|
|
1563
|
+
enumValues: ["5051" | "0100" | "0300" | "0600" | "0710" | "0800" | "2010" | "2020" | "2030" | "2060" | "2070" | "2100" | "2200" | "2210" | "2220" | "2240" | "2250" | "2260" | "2310" | "2600" | "2700" | "3030" | "3050" | "3060" | "3500" | "4000" | "4300" | "5500" | "5400" | "5800" | "6000" | "6100" | "6200" | "6210" | "6300" | "6363" | "6700" | "6800" | "7940" | "7910" | "7950" | "7960" | "7980" | "7970" | "7990" | "8030" | "8040" | "8060" | "8090" | "8150" | "8190" | "8198" | "8200" | "8220" | "8230" | "8240" | "8250" | "8255" | "8265" | "8500" | "8610", ...("5051" | "0100" | "0300" | "0600" | "0710" | "0800" | "2010" | "2020" | "2030" | "2060" | "2070" | "2100" | "2200" | "2210" | "2220" | "2240" | "2250" | "2260" | "2310" | "2600" | "2700" | "3030" | "3050" | "3060" | "3500" | "4000" | "4300" | "5500" | "5400" | "5800" | "6000" | "6100" | "6200" | "6210" | "6300" | "6363" | "6700" | "6800" | "7940" | "7910" | "7950" | "7960" | "7980" | "7970" | "7990" | "8030" | "8040" | "8060" | "8090" | "8150" | "8190" | "8198" | "8200" | "8220" | "8230" | "8240" | "8250" | "8255" | "8265" | "8500" | "8610")[]];
|
|
1563
1564
|
baseColumn: never;
|
|
1564
1565
|
identity: undefined;
|
|
1565
1566
|
generated: undefined;
|
|
@@ -2096,14 +2097,14 @@ declare const accountSelectSchema: drizzle_zod.BuildSchema<"select", {
|
|
|
2096
2097
|
tableName: "account";
|
|
2097
2098
|
dataType: "string";
|
|
2098
2099
|
columnType: "SQLiteText";
|
|
2099
|
-
data: "5051" | "0100" | "0300" | "0600" | "0710" | "0800" | "2010" | "2060" | "2070" | "2100" | "2200" | "2220" | "2250" | "2260" | "2600" | "2700" | "3030" | "3060" | "3500" | "4300" | "5500" | "5800" | "6000" | "6200" | "6210" | "6300" | "6363" | "6700" | "6800" | "7910" | "7950" | "7960" | "7970" | "7990" | "8030" | "8040" | "8060" | "8090" | "8150" | "8190" | "8198" | "8220" | "8250" | "8255" | "8265" | "8500";
|
|
2100
|
+
data: "5051" | "0100" | "0300" | "0600" | "0710" | "0800" | "2010" | "2020" | "2030" | "2060" | "2070" | "2100" | "2200" | "2210" | "2220" | "2240" | "2250" | "2260" | "2310" | "2600" | "2700" | "3030" | "3050" | "3060" | "3500" | "4000" | "4300" | "5500" | "5400" | "5800" | "6000" | "6100" | "6200" | "6210" | "6300" | "6363" | "6700" | "6800" | "7940" | "7910" | "7950" | "7960" | "7980" | "7970" | "7990" | "8030" | "8040" | "8060" | "8090" | "8150" | "8190" | "8198" | "8200" | "8220" | "8230" | "8240" | "8250" | "8255" | "8265" | "8500" | "8610";
|
|
2100
2101
|
driverParam: string;
|
|
2101
2102
|
notNull: true;
|
|
2102
2103
|
hasDefault: false;
|
|
2103
2104
|
isPrimaryKey: false;
|
|
2104
2105
|
isAutoincrement: false;
|
|
2105
2106
|
hasRuntimeDefault: false;
|
|
2106
|
-
enumValues: ["5051" | "0100" | "0300" | "0600" | "0710" | "0800" | "2010" | "2060" | "2070" | "2100" | "2200" | "2220" | "2250" | "2260" | "2600" | "2700" | "3030" | "3060" | "3500" | "4300" | "5500" | "5800" | "6000" | "6200" | "6210" | "6300" | "6363" | "6700" | "6800" | "7910" | "7950" | "7960" | "7970" | "7990" | "8030" | "8040" | "8060" | "8090" | "8150" | "8190" | "8198" | "8220" | "8250" | "8255" | "8265" | "8500", ...("5051" | "0100" | "0300" | "0600" | "0710" | "0800" | "2010" | "2060" | "2070" | "2100" | "2200" | "2220" | "2250" | "2260" | "2600" | "2700" | "3030" | "3060" | "3500" | "4300" | "5500" | "5800" | "6000" | "6200" | "6210" | "6300" | "6363" | "6700" | "6800" | "7910" | "7950" | "7960" | "7970" | "7990" | "8030" | "8040" | "8060" | "8090" | "8150" | "8190" | "8198" | "8220" | "8250" | "8255" | "8265" | "8500")[]];
|
|
2107
|
+
enumValues: ["5051" | "0100" | "0300" | "0600" | "0710" | "0800" | "2010" | "2020" | "2030" | "2060" | "2070" | "2100" | "2200" | "2210" | "2220" | "2240" | "2250" | "2260" | "2310" | "2600" | "2700" | "3030" | "3050" | "3060" | "3500" | "4000" | "4300" | "5500" | "5400" | "5800" | "6000" | "6100" | "6200" | "6210" | "6300" | "6363" | "6700" | "6800" | "7940" | "7910" | "7950" | "7960" | "7980" | "7970" | "7990" | "8030" | "8040" | "8060" | "8090" | "8150" | "8190" | "8198" | "8200" | "8220" | "8230" | "8240" | "8250" | "8255" | "8265" | "8500" | "8610", ...("5051" | "0100" | "0300" | "0600" | "0710" | "0800" | "2010" | "2020" | "2030" | "2060" | "2070" | "2100" | "2200" | "2210" | "2220" | "2240" | "2250" | "2260" | "2310" | "2600" | "2700" | "3030" | "3050" | "3060" | "3500" | "4000" | "4300" | "5500" | "5400" | "5800" | "6000" | "6100" | "6200" | "6210" | "6300" | "6363" | "6700" | "6800" | "7940" | "7910" | "7950" | "7960" | "7980" | "7970" | "7990" | "8030" | "8040" | "8060" | "8090" | "8150" | "8190" | "8198" | "8200" | "8220" | "8230" | "8240" | "8250" | "8255" | "8265" | "8500" | "8610")[]];
|
|
2107
2108
|
baseColumn: never;
|
|
2108
2109
|
identity: undefined;
|
|
2109
2110
|
generated: undefined;
|
|
@@ -2629,20 +2630,20 @@ declare const batch: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
2629
2630
|
tableName: "batch";
|
|
2630
2631
|
dataType: "string";
|
|
2631
2632
|
columnType: "SQLiteText";
|
|
2632
|
-
data: "SIGNED" | "FAILED" | "OPEN" | "PROCESSING" | "READY_TO_SIGN" | "SIGNATURE_FAILED";
|
|
2633
|
+
data: "COMPLETED" | "SIGNED" | "FAILED" | "OPEN" | "PROCESSING" | "READY_TO_SIGN" | "SIGNATURE_FAILED";
|
|
2633
2634
|
driverParam: string;
|
|
2634
2635
|
notNull: false;
|
|
2635
2636
|
hasDefault: false;
|
|
2636
2637
|
isPrimaryKey: false;
|
|
2637
2638
|
isAutoincrement: false;
|
|
2638
2639
|
hasRuntimeDefault: false;
|
|
2639
|
-
enumValues: ["OPEN", "PROCESSING", "READY_TO_SIGN", "SIGNED", "SIGNATURE_FAILED", "FAILED"];
|
|
2640
|
+
enumValues: ["OPEN", "PROCESSING", "READY_TO_SIGN", "SIGNED", "SIGNATURE_FAILED", "FAILED", "COMPLETED"];
|
|
2640
2641
|
baseColumn: never;
|
|
2641
2642
|
identity: undefined;
|
|
2642
2643
|
generated: undefined;
|
|
2643
2644
|
}, {}, {
|
|
2644
2645
|
length: number | undefined;
|
|
2645
|
-
$type: "SIGNED" | "FAILED" | "OPEN" | "PROCESSING" | "READY_TO_SIGN" | "SIGNATURE_FAILED";
|
|
2646
|
+
$type: "COMPLETED" | "SIGNED" | "FAILED" | "OPEN" | "PROCESSING" | "READY_TO_SIGN" | "SIGNATURE_FAILED";
|
|
2646
2647
|
}>;
|
|
2647
2648
|
statusReason: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2648
2649
|
name: "status_reason";
|
|
@@ -2894,6 +2895,25 @@ declare const payment: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
2894
2895
|
}, {}, {
|
|
2895
2896
|
length: number | undefined;
|
|
2896
2897
|
}>;
|
|
2898
|
+
paymentRequestId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2899
|
+
name: "payment_request_id";
|
|
2900
|
+
tableName: "payment";
|
|
2901
|
+
dataType: "string";
|
|
2902
|
+
columnType: "SQLiteText";
|
|
2903
|
+
data: string;
|
|
2904
|
+
driverParam: string;
|
|
2905
|
+
notNull: false;
|
|
2906
|
+
hasDefault: false;
|
|
2907
|
+
isPrimaryKey: false;
|
|
2908
|
+
isAutoincrement: false;
|
|
2909
|
+
hasRuntimeDefault: false;
|
|
2910
|
+
enumValues: [string, ...string[]];
|
|
2911
|
+
baseColumn: never;
|
|
2912
|
+
identity: undefined;
|
|
2913
|
+
generated: undefined;
|
|
2914
|
+
}, {}, {
|
|
2915
|
+
length: number | undefined;
|
|
2916
|
+
}>;
|
|
2897
2917
|
refId: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
2898
2918
|
name: "ref_id";
|
|
2899
2919
|
tableName: "payment";
|
|
@@ -3053,7 +3073,7 @@ declare const payment: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
3053
3073
|
tableName: "payment";
|
|
3054
3074
|
dataType: "string";
|
|
3055
3075
|
columnType: "SQLiteText";
|
|
3056
|
-
data: "
|
|
3076
|
+
data: "COMPLETED" | "CREATED" | "PREPARED" | "SIGNED" | "PENDING" | "FAILED";
|
|
3057
3077
|
driverParam: string;
|
|
3058
3078
|
notNull: true;
|
|
3059
3079
|
hasDefault: false;
|
|
@@ -3066,7 +3086,7 @@ declare const payment: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
3066
3086
|
generated: undefined;
|
|
3067
3087
|
}, {}, {
|
|
3068
3088
|
length: number | undefined;
|
|
3069
|
-
$type: "
|
|
3089
|
+
$type: "COMPLETED" | "CREATED" | "PREPARED" | "SIGNED" | "PENDING" | "FAILED";
|
|
3070
3090
|
}>;
|
|
3071
3091
|
statusReason: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3072
3092
|
name: "status_reason";
|
|
@@ -3647,7 +3667,7 @@ declare const paymentRequest: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
3647
3667
|
tableName: "payment_request";
|
|
3648
3668
|
dataType: "string";
|
|
3649
3669
|
columnType: "SQLiteText";
|
|
3650
|
-
data: "
|
|
3670
|
+
data: "COMPLETED" | "CREATED" | "PREPARED" | "SIGNED" | "PENDING" | "FAILED";
|
|
3651
3671
|
driverParam: string;
|
|
3652
3672
|
notNull: true;
|
|
3653
3673
|
hasDefault: false;
|
|
@@ -3660,7 +3680,7 @@ declare const paymentRequest: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
3660
3680
|
generated: undefined;
|
|
3661
3681
|
}, {}, {
|
|
3662
3682
|
length: number | undefined;
|
|
3663
|
-
$type: "
|
|
3683
|
+
$type: "COMPLETED" | "CREATED" | "PREPARED" | "SIGNED" | "PENDING" | "FAILED";
|
|
3664
3684
|
}>;
|
|
3665
3685
|
statusReason: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3666
3686
|
name: "status_reason";
|
|
@@ -3926,6 +3946,23 @@ declare const paymentRequest: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
3926
3946
|
}, {}, {
|
|
3927
3947
|
length: number | undefined;
|
|
3928
3948
|
}>;
|
|
3949
|
+
sendAsSinglePayment: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3950
|
+
name: "send_as_single_payment";
|
|
3951
|
+
tableName: "payment_request";
|
|
3952
|
+
dataType: "boolean";
|
|
3953
|
+
columnType: "SQLiteBoolean";
|
|
3954
|
+
data: boolean;
|
|
3955
|
+
driverParam: number;
|
|
3956
|
+
notNull: false;
|
|
3957
|
+
hasDefault: false;
|
|
3958
|
+
isPrimaryKey: false;
|
|
3959
|
+
isAutoincrement: false;
|
|
3960
|
+
hasRuntimeDefault: false;
|
|
3961
|
+
enumValues: undefined;
|
|
3962
|
+
baseColumn: never;
|
|
3963
|
+
identity: undefined;
|
|
3964
|
+
generated: undefined;
|
|
3965
|
+
}, {}, {}>;
|
|
3929
3966
|
id: drizzle_orm_sqlite_core.SQLiteColumn<{
|
|
3930
3967
|
name: "id";
|
|
3931
3968
|
tableName: "payment_request";
|
|
@@ -4357,14 +4394,14 @@ declare const account: drizzle_orm_sqlite_core.SQLiteTableWithColumns<{
|
|
|
4357
4394
|
tableName: "account";
|
|
4358
4395
|
dataType: "string";
|
|
4359
4396
|
columnType: "SQLiteText";
|
|
4360
|
-
data: "5051" | "0100" | "0300" | "0600" | "0710" | "0800" | "2010" | "2060" | "2070" | "2100" | "2200" | "2220" | "2250" | "2260" | "2600" | "2700" | "3030" | "3060" | "3500" | "4300" | "5500" | "5800" | "6000" | "6200" | "6210" | "6300" | "6363" | "6700" | "6800" | "7910" | "7950" | "7960" | "7970" | "7990" | "8030" | "8040" | "8060" | "8090" | "8150" | "8190" | "8198" | "8220" | "8250" | "8255" | "8265" | "8500";
|
|
4397
|
+
data: "5051" | "0100" | "0300" | "0600" | "0710" | "0800" | "2010" | "2020" | "2030" | "2060" | "2070" | "2100" | "2200" | "2210" | "2220" | "2240" | "2250" | "2260" | "2310" | "2600" | "2700" | "3030" | "3050" | "3060" | "3500" | "4000" | "4300" | "5500" | "5400" | "5800" | "6000" | "6100" | "6200" | "6210" | "6300" | "6363" | "6700" | "6800" | "7940" | "7910" | "7950" | "7960" | "7980" | "7970" | "7990" | "8030" | "8040" | "8060" | "8090" | "8150" | "8190" | "8198" | "8200" | "8220" | "8230" | "8240" | "8250" | "8255" | "8265" | "8500" | "8610";
|
|
4361
4398
|
driverParam: string;
|
|
4362
4399
|
notNull: true;
|
|
4363
4400
|
hasDefault: false;
|
|
4364
4401
|
isPrimaryKey: false;
|
|
4365
4402
|
isAutoincrement: false;
|
|
4366
4403
|
hasRuntimeDefault: false;
|
|
4367
|
-
enumValues: ["5051" | "0100" | "0300" | "0600" | "0710" | "0800" | "2010" | "2060" | "2070" | "2100" | "2200" | "2220" | "2250" | "2260" | "2600" | "2700" | "3030" | "3060" | "3500" | "4300" | "5500" | "5800" | "6000" | "6200" | "6210" | "6300" | "6363" | "6700" | "6800" | "7910" | "7950" | "7960" | "7970" | "7990" | "8030" | "8040" | "8060" | "8090" | "8150" | "8190" | "8198" | "8220" | "8250" | "8255" | "8265" | "8500", ...("5051" | "0100" | "0300" | "0600" | "0710" | "0800" | "2010" | "2060" | "2070" | "2100" | "2200" | "2220" | "2250" | "2260" | "2600" | "2700" | "3030" | "3060" | "3500" | "4300" | "5500" | "5800" | "6000" | "6200" | "6210" | "6300" | "6363" | "6700" | "6800" | "7910" | "7950" | "7960" | "7970" | "7990" | "8030" | "8040" | "8060" | "8090" | "8150" | "8190" | "8198" | "8220" | "8250" | "8255" | "8265" | "8500")[]];
|
|
4404
|
+
enumValues: ["5051" | "0100" | "0300" | "0600" | "0710" | "0800" | "2010" | "2020" | "2030" | "2060" | "2070" | "2100" | "2200" | "2210" | "2220" | "2240" | "2250" | "2260" | "2310" | "2600" | "2700" | "3030" | "3050" | "3060" | "3500" | "4000" | "4300" | "5500" | "5400" | "5800" | "6000" | "6100" | "6200" | "6210" | "6300" | "6363" | "6700" | "6800" | "7940" | "7910" | "7950" | "7960" | "7980" | "7970" | "7990" | "8030" | "8040" | "8060" | "8090" | "8150" | "8190" | "8198" | "8200" | "8220" | "8230" | "8240" | "8250" | "8255" | "8265" | "8500" | "8610", ...("5051" | "0100" | "0300" | "0600" | "0710" | "0800" | "2010" | "2020" | "2030" | "2060" | "2070" | "2100" | "2200" | "2210" | "2220" | "2240" | "2250" | "2260" | "2310" | "2600" | "2700" | "3030" | "3050" | "3060" | "3500" | "4000" | "4300" | "5500" | "5400" | "5800" | "6000" | "6100" | "6200" | "6210" | "6300" | "6363" | "6700" | "6800" | "7940" | "7910" | "7950" | "7960" | "7980" | "7970" | "7990" | "8030" | "8040" | "8060" | "8090" | "8150" | "8190" | "8198" | "8200" | "8220" | "8230" | "8240" | "8250" | "8255" | "8265" | "8500" | "8610")[]];
|
|
4368
4405
|
baseColumn: never;
|
|
4369
4406
|
identity: undefined;
|
|
4370
4407
|
generated: undefined;
|
|
@@ -5342,5 +5379,5 @@ declare function isBatchFailed(batch: {
|
|
|
5342
5379
|
status?: string | null;
|
|
5343
5380
|
}): batch is CompletedBatch;
|
|
5344
5381
|
|
|
5345
|
-
export { PAYMENT_STATUSES as $, BATCH_STATUSES as
|
|
5346
|
-
export type { AccountSelectType as A, BatchSelectType as B, ConfigEnvironmentBank as C,
|
|
5382
|
+
export { PAYMENT_STATUSES as $, BATCH_STATUSES as G, IBankConnector as I, CHARGE_BEARERS as O, CONNECTOR_KEYS as Q, COUNTRY_CODES as R, CREDENTIALS_TYPES as S, INSTRUCTION_PRIORITIES as Y, PAYMENT_DIRECTIONS as _, PAYMENT_TYPES as a0, TOKEN_TYPES as aa, accountCredentialsInsertSchema as ac, accountCredentialsSelectSchema as ad, accountCredentialsUpdateSchema as ae, accountInsertSchema as af, accountSelectSchema as ag, accountUpdateSchema as ah, hasPaymentAccountAssigned as ai, isBatchCompleted as aj, isBatchFailed as ak, isBatchInitiated as al, isBatchOpen as am, isBatchProcessing as an, isBatchReadyToSign as ao, isBatchSigned as ap, isPaymentCompleted as aq, isPaymentPrepared as ar, account as as, accountCredentials as at, batch as au, ott as av, payment as aw, paymentRelations as ax, paymentRequest as ay, paymentRequestRelations as az, tables as t, ACCOUNT_STATUSES as w };
|
|
5383
|
+
export type { AccountSelectType as A, BatchSelectType as B, ConfigEnvironmentBank as C, AccountPatchType as D, AccountStatus as E, AccountUpdateType as F, BankAccountWithLastSync as H, BankCode as J, BatchInsertType as K, LastSyncMetadata as L, BatchLifecycle as M, BatchPayment as N, PaymentSelectType as P, ChargeBearer as T, CompletedBatch as U, CountryCode as V, CreatedBatch as W, CredentialsType as X, InstructionPriority as Z, PaymentRequestSelectType as a, PaymentDirection as a1, PaymentFailedInsertType as a2, PaymentInsertType as a3, PaymentLifecycle as a4, PaymentPreparedInsertType as a5, ProcessingBatch as a6, ReadyToSignBatch as a7, ResolvedCredentials as a8, SignedBatch as a9, TokenType as ab, ConnectorKey as b, PaymentType as c, CurrencyCode as d, ConnectedAccount as e, CredentialsResolver as f, AccountCredentialsInsertType as g, AccountInsertType as h, BatchedPayment as i, InitiatedBatch as j, IncomingPayment as k, InitiatedPayment as l, ParsedBankPayment as m, PaymentStatus as n, BatchStatus as o, BatchMetadata as p, Currency as q, AccountAssignedPayment as r, PreparedPayment as s, CompletedPayment as u, PaymentRequestInsertType as v, AccountCredentialsPatchType as x, AccountCredentialsSelectType as y, AccountCredentialsUpdateType as z };
|