@devizovaburza/payments-api-sdk 1.3.1 → 1.3.2-canary.9704dbcc

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.
@@ -0,0 +1,1810 @@
1
+ import * as hono_utils_http_status from 'hono/utils/http-status';
2
+ import * as hono_client from 'hono/client';
3
+ import { hc } from 'hono/client';
4
+ export { signPayload, verifyPayloadSignature } from '@develit-io/backend-sdk/signature';
5
+
6
+ declare const createPartnerApiClient: (...args: Parameters<typeof hc>) => {
7
+ v1: {
8
+ auth: {
9
+ token: hono_client.ClientRequest<string, "/v1/auth/token", {
10
+ $post: {
11
+ input: {
12
+ json: {
13
+ email: string;
14
+ password: string;
15
+ };
16
+ };
17
+ output: {
18
+ message: string;
19
+ accessToken: string;
20
+ refreshToken: string;
21
+ };
22
+ outputFormat: "json";
23
+ status: 200;
24
+ } | {
25
+ input: {
26
+ json: {
27
+ email: string;
28
+ password: string;
29
+ };
30
+ };
31
+ output: {
32
+ message: string;
33
+ };
34
+ outputFormat: "json";
35
+ status: 401;
36
+ };
37
+ }>;
38
+ };
39
+ };
40
+ } & {
41
+ v1: {
42
+ auth: {
43
+ token: {
44
+ refresh: hono_client.ClientRequest<string, "/v1/auth/token/refresh", {
45
+ $put: {
46
+ input: {
47
+ json: {
48
+ refreshToken: string;
49
+ };
50
+ };
51
+ output: {
52
+ message: string;
53
+ accessToken: string;
54
+ refreshToken: string;
55
+ };
56
+ outputFormat: "json";
57
+ status: 200;
58
+ } | {
59
+ input: {
60
+ json: {
61
+ refreshToken: string;
62
+ };
63
+ };
64
+ output: {
65
+ message: string;
66
+ };
67
+ outputFormat: "json";
68
+ status: 401;
69
+ };
70
+ }>;
71
+ };
72
+ };
73
+ };
74
+ } & {
75
+ v1: {
76
+ bank: {
77
+ auth: {
78
+ "get-auth-uri": hono_client.ClientRequest<string, "/v1/bank/auth/get-auth-uri", {
79
+ $get: {
80
+ input: {
81
+ query: {
82
+ connectorKey: "ERSTE" | "FINBRICKS" | "MOCK" | "CREDITAS" | "MOCK_COBS" | "FIO" | "MONETA" | "DBU" | "CSAS" | "AIRBANK" | "KB" | "CSOB";
83
+ };
84
+ };
85
+ output: {
86
+ message: string;
87
+ uri: string;
88
+ };
89
+ outputFormat: "json";
90
+ status: 200;
91
+ } | {
92
+ input: {
93
+ query: {
94
+ connectorKey: "ERSTE" | "FINBRICKS" | "MOCK" | "CREDITAS" | "MOCK_COBS" | "FIO" | "MONETA" | "DBU" | "CSAS" | "AIRBANK" | "KB" | "CSOB";
95
+ };
96
+ };
97
+ output: {
98
+ message: string;
99
+ };
100
+ outputFormat: "json";
101
+ status: 500;
102
+ };
103
+ }>;
104
+ };
105
+ };
106
+ };
107
+ } & {
108
+ v1: {
109
+ bank: {
110
+ callback: hono_client.ClientRequest<string, "/v1/bank/callback", {
111
+ $get: {
112
+ input: {
113
+ query: {
114
+ [x: string]: string;
115
+ type: "auth" | "batch" | "paymentRequest";
116
+ ott?: string | undefined;
117
+ };
118
+ };
119
+ output: {};
120
+ outputFormat: string;
121
+ status: 302;
122
+ } | {
123
+ input: {
124
+ query: {
125
+ [x: string]: string;
126
+ type: "auth" | "batch" | "paymentRequest";
127
+ ott?: string | undefined;
128
+ };
129
+ };
130
+ output: {
131
+ message: string;
132
+ };
133
+ outputFormat: "json";
134
+ status: 200;
135
+ } | {
136
+ input: {
137
+ query: {
138
+ [x: string]: string;
139
+ type: "auth" | "batch" | "paymentRequest";
140
+ ott?: string | undefined;
141
+ };
142
+ };
143
+ output: {
144
+ message: string;
145
+ error?: string | undefined;
146
+ };
147
+ outputFormat: "json";
148
+ status: 400;
149
+ } | {
150
+ input: {
151
+ query: {
152
+ [x: string]: string;
153
+ type: "auth" | "batch" | "paymentRequest";
154
+ ott?: string | undefined;
155
+ };
156
+ };
157
+ output: {
158
+ message: string;
159
+ };
160
+ outputFormat: "json";
161
+ status: 500;
162
+ };
163
+ }>;
164
+ };
165
+ };
166
+ } & {
167
+ v1: {
168
+ observability: {
169
+ "health-check": hono_client.ClientRequest<string, "/v1/observability/health-check", {
170
+ $get: {
171
+ input: {};
172
+ output: {
173
+ message: string;
174
+ version: string;
175
+ };
176
+ outputFormat: "json";
177
+ status: 200;
178
+ };
179
+ }>;
180
+ };
181
+ };
182
+ } & {
183
+ v1: {
184
+ organization: hono_client.ClientRequest<string, "/v1/organization", {
185
+ $get: {
186
+ input: {};
187
+ output: {
188
+ message: string;
189
+ organization: {
190
+ id: string;
191
+ name: string;
192
+ webhook: string;
193
+ ipAuthorization: boolean;
194
+ signatureKeyLimit: number;
195
+ state: string;
196
+ signatureKeys: {
197
+ name: string;
198
+ publicKey: string;
199
+ }[];
200
+ authorizedIps: {
201
+ ip: string;
202
+ }[];
203
+ users: {
204
+ id: string;
205
+ email: string;
206
+ role: string;
207
+ }[];
208
+ bankAccounts?: {
209
+ iban: string;
210
+ currency: "CZK" | "EUR" | "USD";
211
+ }[] | null | undefined;
212
+ };
213
+ };
214
+ outputFormat: "json";
215
+ status: 200;
216
+ } | {
217
+ input: {};
218
+ output: {
219
+ message: string;
220
+ };
221
+ outputFormat: "json";
222
+ status: 500;
223
+ };
224
+ }>;
225
+ };
226
+ } & {
227
+ v1: {
228
+ organizations: {
229
+ ":id": {
230
+ accounts: hono_client.ClientRequest<string, "/v1/organizations/:id/accounts", {
231
+ $get: {
232
+ input: {
233
+ param: {
234
+ id: string;
235
+ } & {
236
+ [x: string]: string;
237
+ [x: number]: string;
238
+ [x: symbol]: string;
239
+ };
240
+ query: {
241
+ page?: string | undefined;
242
+ limit?: string | undefined;
243
+ };
244
+ };
245
+ output: {
246
+ accounts: {
247
+ id: string;
248
+ status: "ACTIVE" | "INACTIVE" | "BLOCKED" | "DISABLED";
249
+ accountHolderName: string | null;
250
+ iban: string | null;
251
+ accountNumber: string;
252
+ bankCode: string;
253
+ swiftBic: string | null;
254
+ currency: string;
255
+ countryCode: string;
256
+ }[];
257
+ pagination: {
258
+ page: number;
259
+ pageSize: number;
260
+ totalPages: number;
261
+ totalCount: number;
262
+ hasNext: boolean;
263
+ hasPrevious: boolean;
264
+ };
265
+ };
266
+ outputFormat: "json";
267
+ status: 200;
268
+ } | {
269
+ input: {
270
+ param: {
271
+ id: string;
272
+ } & {
273
+ [x: string]: string;
274
+ [x: number]: string;
275
+ [x: symbol]: string;
276
+ };
277
+ query: {
278
+ page?: string | undefined;
279
+ limit?: string | undefined;
280
+ };
281
+ };
282
+ output: {
283
+ message: string;
284
+ };
285
+ outputFormat: "json";
286
+ status: 404;
287
+ } | {
288
+ input: {
289
+ param: {
290
+ id: string;
291
+ } & {
292
+ [x: string]: string;
293
+ [x: number]: string;
294
+ [x: symbol]: string;
295
+ };
296
+ query: {
297
+ page?: string | undefined;
298
+ limit?: string | undefined;
299
+ };
300
+ };
301
+ output: {
302
+ message: string;
303
+ };
304
+ outputFormat: "json";
305
+ status: 500;
306
+ };
307
+ }>;
308
+ };
309
+ };
310
+ };
311
+ } & {
312
+ v1: {
313
+ organizations: {
314
+ ":id": {
315
+ accounts: {
316
+ ":accountId": {
317
+ balance: hono_client.ClientRequest<string, "/v1/organizations/:id/accounts/:accountId/balance", {
318
+ $get: {
319
+ input: {
320
+ param: {
321
+ id: string;
322
+ accountId: string;
323
+ } & {
324
+ [x: string]: string;
325
+ [x: number]: string;
326
+ [x: symbol]: string;
327
+ };
328
+ };
329
+ output: {
330
+ balances: {
331
+ amount: {
332
+ value: number;
333
+ currency: string;
334
+ };
335
+ balanceType: "AVAILABLE" | "VALUTA" | "GPE_AVAILABLE" | "MULTI_AVAILABLE";
336
+ balanceDate: string;
337
+ }[];
338
+ };
339
+ outputFormat: "json";
340
+ status: 200;
341
+ } | {
342
+ input: {
343
+ param: {
344
+ id: string;
345
+ accountId: string;
346
+ } & {
347
+ [x: string]: string;
348
+ [x: number]: string;
349
+ [x: symbol]: string;
350
+ };
351
+ };
352
+ output: {
353
+ message: string;
354
+ };
355
+ outputFormat: "json";
356
+ status: 400;
357
+ } | {
358
+ input: {
359
+ param: {
360
+ id: string;
361
+ accountId: string;
362
+ } & {
363
+ [x: string]: string;
364
+ [x: number]: string;
365
+ [x: symbol]: string;
366
+ };
367
+ };
368
+ output: {
369
+ message: string;
370
+ };
371
+ outputFormat: "json";
372
+ status: 403;
373
+ } | {
374
+ input: {
375
+ param: {
376
+ id: string;
377
+ accountId: string;
378
+ } & {
379
+ [x: string]: string;
380
+ [x: number]: string;
381
+ [x: symbol]: string;
382
+ };
383
+ };
384
+ output: {
385
+ message: string;
386
+ };
387
+ outputFormat: "json";
388
+ status: 404;
389
+ } | {
390
+ input: {
391
+ param: {
392
+ id: string;
393
+ accountId: string;
394
+ } & {
395
+ [x: string]: string;
396
+ [x: number]: string;
397
+ [x: symbol]: string;
398
+ };
399
+ };
400
+ output: {
401
+ message: string;
402
+ };
403
+ outputFormat: "json";
404
+ status: 500;
405
+ } | {
406
+ input: {
407
+ param: {
408
+ id: string;
409
+ accountId: string;
410
+ } & {
411
+ [x: string]: string;
412
+ [x: number]: string;
413
+ [x: symbol]: string;
414
+ };
415
+ };
416
+ output: {
417
+ message: string;
418
+ };
419
+ outputFormat: "json";
420
+ status: 501;
421
+ } | {
422
+ input: {
423
+ param: {
424
+ id: string;
425
+ accountId: string;
426
+ } & {
427
+ [x: string]: string;
428
+ [x: number]: string;
429
+ [x: symbol]: string;
430
+ };
431
+ };
432
+ output: {
433
+ message: string;
434
+ };
435
+ outputFormat: "json";
436
+ status: 503;
437
+ };
438
+ }>;
439
+ };
440
+ };
441
+ };
442
+ };
443
+ };
444
+ } & {
445
+ v1: {
446
+ organizations: {
447
+ ":id": {
448
+ payments: hono_client.ClientRequest<string, "/v1/organizations/:id/payments", {
449
+ $get: {
450
+ input: {
451
+ param: {
452
+ id: string;
453
+ } & {
454
+ [x: string]: string;
455
+ [x: number]: string;
456
+ [x: symbol]: string;
457
+ };
458
+ query: {
459
+ page?: string | undefined;
460
+ limit?: string | undefined;
461
+ sortColumn?: "createdAt" | "updatedAt" | "amount" | undefined;
462
+ sortDirection?: "asc" | "desc" | undefined;
463
+ filterStatus?: "PENDING" | "PROCESSING" | "BOOKED" | "CANCELLED" | "REJECTED" | "SCHEDULED" | "HOLD" | "INFO" | ("PENDING" | "PROCESSING" | "BOOKED" | "CANCELLED" | "REJECTED" | "SCHEDULED" | "HOLD" | "INFO")[] | undefined;
464
+ filterPaymentType?: "DOMESTIC" | "DOMESTIC"[] | undefined;
465
+ filterCurrency?: "CZK" | "EUR" | "USD" | "PLN" | "RON" | "GBP" | "RUB" | "HUF" | "CHF" | "DKK" | "SEK" | "HRK" | "NOK" | "BGN" | "TRY" | "AUD" | "CAD" | "JPY" | "CNY" | "INR" | "BRL" | "MXN" | "ZAR" | "SGD" | "HKD" | "KRW" | "MYR" | "THB" | "IDR" | "PHP" | "AED" | "SAR" | "ILS" | "EGP" | "NGN" | "PKR" | "COP" | "CLP" | "PEN" | "VND" | "KZT" | "UAH" | "BTC" | "ETH" | "ADA" | "DOT" | "ATOM" | "XRP" | "LTC" | "SOL" | "DOGE" | "MATIC" | "AVAX" | ("CZK" | "EUR" | "USD" | "PLN" | "RON" | "GBP" | "RUB" | "HUF" | "CHF" | "DKK" | "SEK" | "HRK" | "NOK" | "BGN" | "TRY" | "AUD" | "CAD" | "JPY" | "CNY" | "INR" | "BRL" | "MXN" | "ZAR" | "SGD" | "HKD" | "KRW" | "MYR" | "THB" | "IDR" | "PHP" | "AED" | "SAR" | "ILS" | "EGP" | "NGN" | "PKR" | "COP" | "CLP" | "PEN" | "VND" | "KZT" | "UAH" | "BTC" | "ETH" | "ADA" | "DOT" | "ATOM" | "XRP" | "LTC" | "SOL" | "DOGE" | "MATIC" | "AVAX")[] | undefined;
466
+ filterMinAmount?: string | undefined;
467
+ filterMaxAmount?: string | undefined;
468
+ filterBatchId?: string | undefined;
469
+ filterCreditorIban?: string | undefined;
470
+ filterDebtorIban?: string | undefined;
471
+ filterDateFrom?: string | undefined;
472
+ filterDateTo?: string | undefined;
473
+ filterVariableSymbol?: string | undefined;
474
+ filterSpecificSymbol?: string | undefined;
475
+ filterConstantSymbol?: string | undefined;
476
+ filterMessage?: string | undefined;
477
+ filterBankRefId?: string | undefined;
478
+ filterPaymentId?: string | undefined;
479
+ filterDirection?: "INCOMING" | "OUTGOING" | undefined;
480
+ };
481
+ };
482
+ output: {
483
+ payments: {
484
+ id: string;
485
+ status: string;
486
+ direction: "INCOMING" | "OUTGOING";
487
+ type: string;
488
+ amount: {
489
+ value: number;
490
+ currency: string;
491
+ };
492
+ debtor: {
493
+ name: string | null;
494
+ iban: string | null;
495
+ accountId?: string | undefined;
496
+ bankCode?: string | undefined;
497
+ };
498
+ creditor: {
499
+ name: string | null;
500
+ iban?: string | undefined;
501
+ bankCode?: string | undefined;
502
+ swiftBic?: string | undefined;
503
+ address?: {
504
+ streetName?: string | undefined;
505
+ buildingNumber?: string | undefined;
506
+ city?: string | undefined;
507
+ postalCode?: string | undefined;
508
+ countryCode?: string | undefined;
509
+ } | undefined;
510
+ };
511
+ dates: {
512
+ created: string | null;
513
+ initiated?: string | undefined;
514
+ processed?: string | undefined;
515
+ updated?: string | undefined;
516
+ };
517
+ referenceId?: string | undefined;
518
+ bankRefId?: string | undefined;
519
+ remittanceInfo?: {
520
+ message?: string | undefined;
521
+ variableSymbol?: string | undefined;
522
+ specificSymbol?: string | undefined;
523
+ constantSymbol?: string | undefined;
524
+ } | undefined;
525
+ statusReason?: string | undefined;
526
+ batch?: {
527
+ id: string;
528
+ } | undefined;
529
+ }[];
530
+ pagination: {
531
+ page: number;
532
+ pageSize: number;
533
+ totalPages: number;
534
+ totalCount: number;
535
+ hasNext: boolean;
536
+ hasPrevious: boolean;
537
+ };
538
+ };
539
+ outputFormat: "json";
540
+ status: 200;
541
+ } | {
542
+ input: {
543
+ param: {
544
+ id: string;
545
+ } & {
546
+ [x: string]: string;
547
+ [x: number]: string;
548
+ [x: symbol]: string;
549
+ };
550
+ query: {
551
+ page?: string | undefined;
552
+ limit?: string | undefined;
553
+ sortColumn?: "createdAt" | "updatedAt" | "amount" | undefined;
554
+ sortDirection?: "asc" | "desc" | undefined;
555
+ filterStatus?: "PENDING" | "PROCESSING" | "BOOKED" | "CANCELLED" | "REJECTED" | "SCHEDULED" | "HOLD" | "INFO" | ("PENDING" | "PROCESSING" | "BOOKED" | "CANCELLED" | "REJECTED" | "SCHEDULED" | "HOLD" | "INFO")[] | undefined;
556
+ filterPaymentType?: "DOMESTIC" | "DOMESTIC"[] | undefined;
557
+ filterCurrency?: "CZK" | "EUR" | "USD" | "PLN" | "RON" | "GBP" | "RUB" | "HUF" | "CHF" | "DKK" | "SEK" | "HRK" | "NOK" | "BGN" | "TRY" | "AUD" | "CAD" | "JPY" | "CNY" | "INR" | "BRL" | "MXN" | "ZAR" | "SGD" | "HKD" | "KRW" | "MYR" | "THB" | "IDR" | "PHP" | "AED" | "SAR" | "ILS" | "EGP" | "NGN" | "PKR" | "COP" | "CLP" | "PEN" | "VND" | "KZT" | "UAH" | "BTC" | "ETH" | "ADA" | "DOT" | "ATOM" | "XRP" | "LTC" | "SOL" | "DOGE" | "MATIC" | "AVAX" | ("CZK" | "EUR" | "USD" | "PLN" | "RON" | "GBP" | "RUB" | "HUF" | "CHF" | "DKK" | "SEK" | "HRK" | "NOK" | "BGN" | "TRY" | "AUD" | "CAD" | "JPY" | "CNY" | "INR" | "BRL" | "MXN" | "ZAR" | "SGD" | "HKD" | "KRW" | "MYR" | "THB" | "IDR" | "PHP" | "AED" | "SAR" | "ILS" | "EGP" | "NGN" | "PKR" | "COP" | "CLP" | "PEN" | "VND" | "KZT" | "UAH" | "BTC" | "ETH" | "ADA" | "DOT" | "ATOM" | "XRP" | "LTC" | "SOL" | "DOGE" | "MATIC" | "AVAX")[] | undefined;
558
+ filterMinAmount?: string | undefined;
559
+ filterMaxAmount?: string | undefined;
560
+ filterBatchId?: string | undefined;
561
+ filterCreditorIban?: string | undefined;
562
+ filterDebtorIban?: string | undefined;
563
+ filterDateFrom?: string | undefined;
564
+ filterDateTo?: string | undefined;
565
+ filterVariableSymbol?: string | undefined;
566
+ filterSpecificSymbol?: string | undefined;
567
+ filterConstantSymbol?: string | undefined;
568
+ filterMessage?: string | undefined;
569
+ filterBankRefId?: string | undefined;
570
+ filterPaymentId?: string | undefined;
571
+ filterDirection?: "INCOMING" | "OUTGOING" | undefined;
572
+ };
573
+ };
574
+ output: {
575
+ message: string;
576
+ };
577
+ outputFormat: "json";
578
+ status: 500;
579
+ };
580
+ }>;
581
+ };
582
+ };
583
+ };
584
+ } & {
585
+ v1: {
586
+ organizations: {
587
+ ":id": {
588
+ "payment-requests": hono_client.ClientRequest<string, "/v1/organizations/:id/payment-requests", {
589
+ $get: {
590
+ input: {
591
+ param: {
592
+ id: string;
593
+ } & {
594
+ [x: string]: string;
595
+ [x: number]: string;
596
+ [x: symbol]: string;
597
+ };
598
+ query: {
599
+ page?: string | undefined;
600
+ limit?: string | undefined;
601
+ sortColumn?: "createdAt" | "updatedAt" | "amount" | undefined;
602
+ sortDirection?: "asc" | "desc" | undefined;
603
+ filterStatus?: "BOOKED" | "REJECTED" | "OPENED" | "AUTHORIZED" | "COMPLETED" | "SETTLED" | "CLOSED" | ("BOOKED" | "REJECTED" | "OPENED" | "AUTHORIZED" | "COMPLETED" | "SETTLED" | "CLOSED")[] | undefined;
604
+ filterPaymentType?: "DOMESTIC" | "DOMESTIC"[] | undefined;
605
+ filterCurrency?: "CZK" | "EUR" | "USD" | "PLN" | "RON" | "GBP" | "RUB" | "HUF" | "CHF" | "DKK" | "SEK" | "HRK" | "NOK" | "BGN" | "TRY" | "AUD" | "CAD" | "JPY" | "CNY" | "INR" | "BRL" | "MXN" | "ZAR" | "SGD" | "HKD" | "KRW" | "MYR" | "THB" | "IDR" | "PHP" | "AED" | "SAR" | "ILS" | "EGP" | "NGN" | "PKR" | "COP" | "CLP" | "PEN" | "VND" | "KZT" | "UAH" | "BTC" | "ETH" | "ADA" | "DOT" | "ATOM" | "XRP" | "LTC" | "SOL" | "DOGE" | "MATIC" | "AVAX" | ("CZK" | "EUR" | "USD" | "PLN" | "RON" | "GBP" | "RUB" | "HUF" | "CHF" | "DKK" | "SEK" | "HRK" | "NOK" | "BGN" | "TRY" | "AUD" | "CAD" | "JPY" | "CNY" | "INR" | "BRL" | "MXN" | "ZAR" | "SGD" | "HKD" | "KRW" | "MYR" | "THB" | "IDR" | "PHP" | "AED" | "SAR" | "ILS" | "EGP" | "NGN" | "PKR" | "COP" | "CLP" | "PEN" | "VND" | "KZT" | "UAH" | "BTC" | "ETH" | "ADA" | "DOT" | "ATOM" | "XRP" | "LTC" | "SOL" | "DOGE" | "MATIC" | "AVAX")[] | undefined;
606
+ filterMinAmount?: string | undefined;
607
+ filterMaxAmount?: string | undefined;
608
+ filterBatchId?: string | undefined;
609
+ filterCreditorIban?: string | undefined;
610
+ filterDebtorIban?: string | undefined;
611
+ filterDateFrom?: string | undefined;
612
+ filterDateTo?: string | undefined;
613
+ filterVariableSymbol?: string | undefined;
614
+ filterSpecificSymbol?: string | undefined;
615
+ filterConstantSymbol?: string | undefined;
616
+ filterMessage?: string | undefined;
617
+ filterBankRefId?: string | undefined;
618
+ filterPaymentRequestId?: string | undefined;
619
+ };
620
+ };
621
+ output: {
622
+ paymentRequests: {
623
+ id: string;
624
+ referenceId: string | null;
625
+ bankRefId: string | null;
626
+ status: string;
627
+ direction: "OUTGOING";
628
+ type: string;
629
+ amount: {
630
+ value: number;
631
+ currency: string;
632
+ };
633
+ debtor: {
634
+ name: string | null;
635
+ iban: string | null;
636
+ accountId: string;
637
+ bankCode: string | null;
638
+ };
639
+ creditor: {
640
+ name: string | null;
641
+ iban?: string | undefined;
642
+ bankCode?: string | undefined;
643
+ swiftBic?: string | undefined;
644
+ address?: {
645
+ streetName?: string | undefined;
646
+ buildingNumber?: string | undefined;
647
+ city?: string | undefined;
648
+ postalCode?: string | undefined;
649
+ countryCode?: string | undefined;
650
+ } | undefined;
651
+ };
652
+ remittanceInfo: {
653
+ message: string | null;
654
+ variableSymbol: string | null;
655
+ specificSymbol: string | null;
656
+ constantSymbol: string | null;
657
+ } | null;
658
+ statusReason: string | null;
659
+ dates: {
660
+ created: string | null;
661
+ initiated: string | null;
662
+ processed: string | null;
663
+ updated: string | null;
664
+ };
665
+ batch: {
666
+ id: string;
667
+ } | null;
668
+ instructionPriority: "NORMAL" | "INSTANT" | null;
669
+ }[];
670
+ pagination: {
671
+ page: number;
672
+ pageSize: number;
673
+ totalPages: number;
674
+ totalCount: number;
675
+ hasNext: boolean;
676
+ hasPrevious: boolean;
677
+ };
678
+ };
679
+ outputFormat: "json";
680
+ status: 200;
681
+ } | {
682
+ input: {
683
+ param: {
684
+ id: string;
685
+ } & {
686
+ [x: string]: string;
687
+ [x: number]: string;
688
+ [x: symbol]: string;
689
+ };
690
+ query: {
691
+ page?: string | undefined;
692
+ limit?: string | undefined;
693
+ sortColumn?: "createdAt" | "updatedAt" | "amount" | undefined;
694
+ sortDirection?: "asc" | "desc" | undefined;
695
+ filterStatus?: "BOOKED" | "REJECTED" | "OPENED" | "AUTHORIZED" | "COMPLETED" | "SETTLED" | "CLOSED" | ("BOOKED" | "REJECTED" | "OPENED" | "AUTHORIZED" | "COMPLETED" | "SETTLED" | "CLOSED")[] | undefined;
696
+ filterPaymentType?: "DOMESTIC" | "DOMESTIC"[] | undefined;
697
+ filterCurrency?: "CZK" | "EUR" | "USD" | "PLN" | "RON" | "GBP" | "RUB" | "HUF" | "CHF" | "DKK" | "SEK" | "HRK" | "NOK" | "BGN" | "TRY" | "AUD" | "CAD" | "JPY" | "CNY" | "INR" | "BRL" | "MXN" | "ZAR" | "SGD" | "HKD" | "KRW" | "MYR" | "THB" | "IDR" | "PHP" | "AED" | "SAR" | "ILS" | "EGP" | "NGN" | "PKR" | "COP" | "CLP" | "PEN" | "VND" | "KZT" | "UAH" | "BTC" | "ETH" | "ADA" | "DOT" | "ATOM" | "XRP" | "LTC" | "SOL" | "DOGE" | "MATIC" | "AVAX" | ("CZK" | "EUR" | "USD" | "PLN" | "RON" | "GBP" | "RUB" | "HUF" | "CHF" | "DKK" | "SEK" | "HRK" | "NOK" | "BGN" | "TRY" | "AUD" | "CAD" | "JPY" | "CNY" | "INR" | "BRL" | "MXN" | "ZAR" | "SGD" | "HKD" | "KRW" | "MYR" | "THB" | "IDR" | "PHP" | "AED" | "SAR" | "ILS" | "EGP" | "NGN" | "PKR" | "COP" | "CLP" | "PEN" | "VND" | "KZT" | "UAH" | "BTC" | "ETH" | "ADA" | "DOT" | "ATOM" | "XRP" | "LTC" | "SOL" | "DOGE" | "MATIC" | "AVAX")[] | undefined;
698
+ filterMinAmount?: string | undefined;
699
+ filterMaxAmount?: string | undefined;
700
+ filterBatchId?: string | undefined;
701
+ filterCreditorIban?: string | undefined;
702
+ filterDebtorIban?: string | undefined;
703
+ filterDateFrom?: string | undefined;
704
+ filterDateTo?: string | undefined;
705
+ filterVariableSymbol?: string | undefined;
706
+ filterSpecificSymbol?: string | undefined;
707
+ filterConstantSymbol?: string | undefined;
708
+ filterMessage?: string | undefined;
709
+ filterBankRefId?: string | undefined;
710
+ filterPaymentRequestId?: string | undefined;
711
+ };
712
+ };
713
+ output: {
714
+ message: string;
715
+ };
716
+ outputFormat: "json";
717
+ status: 500;
718
+ };
719
+ } & {
720
+ $post: {
721
+ input: {
722
+ param: {
723
+ id: string;
724
+ } & {
725
+ [x: string]: string;
726
+ [x: number]: string;
727
+ [x: symbol]: string;
728
+ };
729
+ header: {
730
+ 'x-idempotency-key': string;
731
+ };
732
+ json: {
733
+ paymentType: "DOMESTIC";
734
+ amount: {
735
+ value: number;
736
+ currency: "CZK" | "EUR" | "USD" | "PLN" | "RON" | "GBP" | "RUB" | "HUF" | "CHF" | "DKK" | "SEK" | "HRK" | "NOK" | "BGN" | "TRY" | "AUD" | "CAD" | "JPY" | "CNY" | "INR" | "BRL" | "MXN" | "ZAR" | "SGD" | "HKD" | "KRW" | "MYR" | "THB" | "IDR" | "PHP" | "AED" | "SAR" | "ILS" | "EGP" | "NGN" | "PKR" | "COP" | "CLP" | "PEN" | "VND" | "KZT" | "UAH" | "BTC" | "ETH" | "ADA" | "DOT" | "ATOM" | "XRP" | "LTC" | "SOL" | "DOGE" | "MATIC" | "AVAX";
737
+ };
738
+ debtorAccountId: string;
739
+ creditor: {
740
+ name: string;
741
+ iban?: string | undefined;
742
+ accountNumber?: string | undefined;
743
+ bankCode?: "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" | undefined;
744
+ swiftBic?: string | undefined;
745
+ sortCode?: string | undefined;
746
+ routingNumber?: string | undefined;
747
+ clabe?: string | undefined;
748
+ bsb?: string | undefined;
749
+ brBankNumber?: string | undefined;
750
+ };
751
+ referenceId?: string | undefined;
752
+ remittanceInfo?: {
753
+ message?: string | undefined;
754
+ variableSymbol?: string | undefined;
755
+ constantSymbol?: string | undefined;
756
+ specificSymbol?: string | undefined;
757
+ } | undefined;
758
+ instructionPriority?: "NORMAL" | "INSTANT" | undefined;
759
+ };
760
+ };
761
+ output: {
762
+ id: string;
763
+ referenceId: string | null;
764
+ bankRefId: string | null;
765
+ status: string;
766
+ direction: "OUTGOING";
767
+ type: string;
768
+ amount: {
769
+ value: number;
770
+ currency: string;
771
+ };
772
+ debtor: {
773
+ name: string | null;
774
+ iban: string | null;
775
+ accountId: string;
776
+ bankCode: string | null;
777
+ };
778
+ creditor: {
779
+ name: string | null;
780
+ iban?: string | undefined;
781
+ bankCode?: string | undefined;
782
+ swiftBic?: string | undefined;
783
+ address?: {
784
+ streetName?: string | undefined;
785
+ buildingNumber?: string | undefined;
786
+ city?: string | undefined;
787
+ postalCode?: string | undefined;
788
+ countryCode?: string | undefined;
789
+ } | undefined;
790
+ };
791
+ remittanceInfo: {
792
+ message: string | null;
793
+ variableSymbol: string | null;
794
+ specificSymbol: string | null;
795
+ constantSymbol: string | null;
796
+ } | null;
797
+ statusReason: string | null;
798
+ dates: {
799
+ created: string | null;
800
+ initiated: string | null;
801
+ processed: string | null;
802
+ updated: string | null;
803
+ };
804
+ batch: {
805
+ id: string;
806
+ } | null;
807
+ instructionPriority: "NORMAL" | "INSTANT" | null;
808
+ };
809
+ outputFormat: "json";
810
+ status: 202;
811
+ } | {
812
+ input: {
813
+ param: {
814
+ id: string;
815
+ } & {
816
+ [x: string]: string;
817
+ [x: number]: string;
818
+ [x: symbol]: string;
819
+ };
820
+ header: {
821
+ 'x-idempotency-key': string;
822
+ };
823
+ json: {
824
+ paymentType: "DOMESTIC";
825
+ amount: {
826
+ value: number;
827
+ currency: "CZK" | "EUR" | "USD" | "PLN" | "RON" | "GBP" | "RUB" | "HUF" | "CHF" | "DKK" | "SEK" | "HRK" | "NOK" | "BGN" | "TRY" | "AUD" | "CAD" | "JPY" | "CNY" | "INR" | "BRL" | "MXN" | "ZAR" | "SGD" | "HKD" | "KRW" | "MYR" | "THB" | "IDR" | "PHP" | "AED" | "SAR" | "ILS" | "EGP" | "NGN" | "PKR" | "COP" | "CLP" | "PEN" | "VND" | "KZT" | "UAH" | "BTC" | "ETH" | "ADA" | "DOT" | "ATOM" | "XRP" | "LTC" | "SOL" | "DOGE" | "MATIC" | "AVAX";
828
+ };
829
+ debtorAccountId: string;
830
+ creditor: {
831
+ name: string;
832
+ iban?: string | undefined;
833
+ accountNumber?: string | undefined;
834
+ bankCode?: "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" | undefined;
835
+ swiftBic?: string | undefined;
836
+ sortCode?: string | undefined;
837
+ routingNumber?: string | undefined;
838
+ clabe?: string | undefined;
839
+ bsb?: string | undefined;
840
+ brBankNumber?: string | undefined;
841
+ };
842
+ referenceId?: string | undefined;
843
+ remittanceInfo?: {
844
+ message?: string | undefined;
845
+ variableSymbol?: string | undefined;
846
+ constantSymbol?: string | undefined;
847
+ specificSymbol?: string | undefined;
848
+ } | undefined;
849
+ instructionPriority?: "NORMAL" | "INSTANT" | undefined;
850
+ };
851
+ };
852
+ output: {
853
+ message: string;
854
+ code?: string | undefined;
855
+ };
856
+ outputFormat: "json";
857
+ status: 400;
858
+ } | {
859
+ input: {
860
+ param: {
861
+ id: string;
862
+ } & {
863
+ [x: string]: string;
864
+ [x: number]: string;
865
+ [x: symbol]: string;
866
+ };
867
+ header: {
868
+ 'x-idempotency-key': string;
869
+ };
870
+ json: {
871
+ paymentType: "DOMESTIC";
872
+ amount: {
873
+ value: number;
874
+ currency: "CZK" | "EUR" | "USD" | "PLN" | "RON" | "GBP" | "RUB" | "HUF" | "CHF" | "DKK" | "SEK" | "HRK" | "NOK" | "BGN" | "TRY" | "AUD" | "CAD" | "JPY" | "CNY" | "INR" | "BRL" | "MXN" | "ZAR" | "SGD" | "HKD" | "KRW" | "MYR" | "THB" | "IDR" | "PHP" | "AED" | "SAR" | "ILS" | "EGP" | "NGN" | "PKR" | "COP" | "CLP" | "PEN" | "VND" | "KZT" | "UAH" | "BTC" | "ETH" | "ADA" | "DOT" | "ATOM" | "XRP" | "LTC" | "SOL" | "DOGE" | "MATIC" | "AVAX";
875
+ };
876
+ debtorAccountId: string;
877
+ creditor: {
878
+ name: string;
879
+ iban?: string | undefined;
880
+ accountNumber?: string | undefined;
881
+ bankCode?: "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" | undefined;
882
+ swiftBic?: string | undefined;
883
+ sortCode?: string | undefined;
884
+ routingNumber?: string | undefined;
885
+ clabe?: string | undefined;
886
+ bsb?: string | undefined;
887
+ brBankNumber?: string | undefined;
888
+ };
889
+ referenceId?: string | undefined;
890
+ remittanceInfo?: {
891
+ message?: string | undefined;
892
+ variableSymbol?: string | undefined;
893
+ constantSymbol?: string | undefined;
894
+ specificSymbol?: string | undefined;
895
+ } | undefined;
896
+ instructionPriority?: "NORMAL" | "INSTANT" | undefined;
897
+ };
898
+ };
899
+ output: {
900
+ message: string;
901
+ code?: string | undefined;
902
+ };
903
+ outputFormat: "json";
904
+ status: 404;
905
+ } | {
906
+ input: {
907
+ param: {
908
+ id: string;
909
+ } & {
910
+ [x: string]: string;
911
+ [x: number]: string;
912
+ [x: symbol]: string;
913
+ };
914
+ header: {
915
+ 'x-idempotency-key': string;
916
+ };
917
+ json: {
918
+ paymentType: "DOMESTIC";
919
+ amount: {
920
+ value: number;
921
+ currency: "CZK" | "EUR" | "USD" | "PLN" | "RON" | "GBP" | "RUB" | "HUF" | "CHF" | "DKK" | "SEK" | "HRK" | "NOK" | "BGN" | "TRY" | "AUD" | "CAD" | "JPY" | "CNY" | "INR" | "BRL" | "MXN" | "ZAR" | "SGD" | "HKD" | "KRW" | "MYR" | "THB" | "IDR" | "PHP" | "AED" | "SAR" | "ILS" | "EGP" | "NGN" | "PKR" | "COP" | "CLP" | "PEN" | "VND" | "KZT" | "UAH" | "BTC" | "ETH" | "ADA" | "DOT" | "ATOM" | "XRP" | "LTC" | "SOL" | "DOGE" | "MATIC" | "AVAX";
922
+ };
923
+ debtorAccountId: string;
924
+ creditor: {
925
+ name: string;
926
+ iban?: string | undefined;
927
+ accountNumber?: string | undefined;
928
+ bankCode?: "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" | undefined;
929
+ swiftBic?: string | undefined;
930
+ sortCode?: string | undefined;
931
+ routingNumber?: string | undefined;
932
+ clabe?: string | undefined;
933
+ bsb?: string | undefined;
934
+ brBankNumber?: string | undefined;
935
+ };
936
+ referenceId?: string | undefined;
937
+ remittanceInfo?: {
938
+ message?: string | undefined;
939
+ variableSymbol?: string | undefined;
940
+ constantSymbol?: string | undefined;
941
+ specificSymbol?: string | undefined;
942
+ } | undefined;
943
+ instructionPriority?: "NORMAL" | "INSTANT" | undefined;
944
+ };
945
+ };
946
+ output: {
947
+ message: string;
948
+ code?: string | undefined;
949
+ };
950
+ outputFormat: "json";
951
+ status: 422;
952
+ } | {
953
+ input: {
954
+ param: {
955
+ id: string;
956
+ } & {
957
+ [x: string]: string;
958
+ [x: number]: string;
959
+ [x: symbol]: string;
960
+ };
961
+ header: {
962
+ 'x-idempotency-key': string;
963
+ };
964
+ json: {
965
+ paymentType: "DOMESTIC";
966
+ amount: {
967
+ value: number;
968
+ currency: "CZK" | "EUR" | "USD" | "PLN" | "RON" | "GBP" | "RUB" | "HUF" | "CHF" | "DKK" | "SEK" | "HRK" | "NOK" | "BGN" | "TRY" | "AUD" | "CAD" | "JPY" | "CNY" | "INR" | "BRL" | "MXN" | "ZAR" | "SGD" | "HKD" | "KRW" | "MYR" | "THB" | "IDR" | "PHP" | "AED" | "SAR" | "ILS" | "EGP" | "NGN" | "PKR" | "COP" | "CLP" | "PEN" | "VND" | "KZT" | "UAH" | "BTC" | "ETH" | "ADA" | "DOT" | "ATOM" | "XRP" | "LTC" | "SOL" | "DOGE" | "MATIC" | "AVAX";
969
+ };
970
+ debtorAccountId: string;
971
+ creditor: {
972
+ name: string;
973
+ iban?: string | undefined;
974
+ accountNumber?: string | undefined;
975
+ bankCode?: "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" | undefined;
976
+ swiftBic?: string | undefined;
977
+ sortCode?: string | undefined;
978
+ routingNumber?: string | undefined;
979
+ clabe?: string | undefined;
980
+ bsb?: string | undefined;
981
+ brBankNumber?: string | undefined;
982
+ };
983
+ referenceId?: string | undefined;
984
+ remittanceInfo?: {
985
+ message?: string | undefined;
986
+ variableSymbol?: string | undefined;
987
+ constantSymbol?: string | undefined;
988
+ specificSymbol?: string | undefined;
989
+ } | undefined;
990
+ instructionPriority?: "NORMAL" | "INSTANT" | undefined;
991
+ };
992
+ };
993
+ output: {
994
+ message: string;
995
+ };
996
+ outputFormat: "json";
997
+ status: 500;
998
+ };
999
+ }>;
1000
+ };
1001
+ };
1002
+ };
1003
+ } & {
1004
+ v1: {
1005
+ organizations: {
1006
+ ":id": {
1007
+ "payment-requests": {
1008
+ batch: hono_client.ClientRequest<string, "/v1/organizations/:id/payment-requests/batch", {
1009
+ $post: {
1010
+ input: {
1011
+ param: {
1012
+ id: string;
1013
+ } & {
1014
+ [x: string]: string;
1015
+ [x: number]: string;
1016
+ [x: symbol]: string;
1017
+ };
1018
+ header: {
1019
+ 'x-idempotency-key': string;
1020
+ };
1021
+ json: {
1022
+ debtorAccountId: string;
1023
+ paymentType: "DOMESTIC";
1024
+ payments: {
1025
+ amount: {
1026
+ value: number;
1027
+ currency: "CZK" | "EUR" | "USD" | "PLN" | "RON" | "GBP" | "RUB" | "HUF" | "CHF" | "DKK" | "SEK" | "HRK" | "NOK" | "BGN" | "TRY" | "AUD" | "CAD" | "JPY" | "CNY" | "INR" | "BRL" | "MXN" | "ZAR" | "SGD" | "HKD" | "KRW" | "MYR" | "THB" | "IDR" | "PHP" | "AED" | "SAR" | "ILS" | "EGP" | "NGN" | "PKR" | "COP" | "CLP" | "PEN" | "VND" | "KZT" | "UAH" | "BTC" | "ETH" | "ADA" | "DOT" | "ATOM" | "XRP" | "LTC" | "SOL" | "DOGE" | "MATIC" | "AVAX";
1028
+ };
1029
+ creditor: {
1030
+ name: string;
1031
+ iban?: string | undefined;
1032
+ accountNumber?: string | undefined;
1033
+ bankCode?: "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" | undefined;
1034
+ swiftBic?: string | undefined;
1035
+ sortCode?: string | undefined;
1036
+ routingNumber?: string | undefined;
1037
+ clabe?: string | undefined;
1038
+ bsb?: string | undefined;
1039
+ brBankNumber?: string | undefined;
1040
+ };
1041
+ referenceId?: string | undefined;
1042
+ remittanceInfo?: {
1043
+ message?: string | undefined;
1044
+ variableSymbol?: string | undefined;
1045
+ constantSymbol?: string | undefined;
1046
+ specificSymbol?: string | undefined;
1047
+ } | undefined;
1048
+ instructionPriority?: "NORMAL" | "INSTANT" | undefined;
1049
+ }[];
1050
+ };
1051
+ };
1052
+ output: {
1053
+ batchId: string;
1054
+ paymentRequests: {
1055
+ id: string;
1056
+ referenceId: string | null;
1057
+ bankRefId: string | null;
1058
+ status: string;
1059
+ direction: "OUTGOING";
1060
+ type: string;
1061
+ amount: {
1062
+ value: number;
1063
+ currency: string;
1064
+ };
1065
+ debtor: {
1066
+ name: string | null;
1067
+ iban: string | null;
1068
+ accountId: string;
1069
+ bankCode: string | null;
1070
+ };
1071
+ creditor: {
1072
+ name: string | null;
1073
+ iban?: string | undefined;
1074
+ bankCode?: string | undefined;
1075
+ swiftBic?: string | undefined;
1076
+ address?: {
1077
+ streetName?: string | undefined;
1078
+ buildingNumber?: string | undefined;
1079
+ city?: string | undefined;
1080
+ postalCode?: string | undefined;
1081
+ countryCode?: string | undefined;
1082
+ } | undefined;
1083
+ };
1084
+ remittanceInfo: {
1085
+ message: string | null;
1086
+ variableSymbol: string | null;
1087
+ specificSymbol: string | null;
1088
+ constantSymbol: string | null;
1089
+ } | null;
1090
+ statusReason: string | null;
1091
+ dates: {
1092
+ created: string | null;
1093
+ initiated: string | null;
1094
+ processed: string | null;
1095
+ updated: string | null;
1096
+ };
1097
+ batch: {
1098
+ id: string;
1099
+ } | null;
1100
+ instructionPriority: "NORMAL" | "INSTANT" | null;
1101
+ }[];
1102
+ };
1103
+ outputFormat: "json";
1104
+ status: 202;
1105
+ } | {
1106
+ input: {
1107
+ param: {
1108
+ id: string;
1109
+ } & {
1110
+ [x: string]: string;
1111
+ [x: number]: string;
1112
+ [x: symbol]: string;
1113
+ };
1114
+ header: {
1115
+ 'x-idempotency-key': string;
1116
+ };
1117
+ json: {
1118
+ debtorAccountId: string;
1119
+ paymentType: "DOMESTIC";
1120
+ payments: {
1121
+ amount: {
1122
+ value: number;
1123
+ currency: "CZK" | "EUR" | "USD" | "PLN" | "RON" | "GBP" | "RUB" | "HUF" | "CHF" | "DKK" | "SEK" | "HRK" | "NOK" | "BGN" | "TRY" | "AUD" | "CAD" | "JPY" | "CNY" | "INR" | "BRL" | "MXN" | "ZAR" | "SGD" | "HKD" | "KRW" | "MYR" | "THB" | "IDR" | "PHP" | "AED" | "SAR" | "ILS" | "EGP" | "NGN" | "PKR" | "COP" | "CLP" | "PEN" | "VND" | "KZT" | "UAH" | "BTC" | "ETH" | "ADA" | "DOT" | "ATOM" | "XRP" | "LTC" | "SOL" | "DOGE" | "MATIC" | "AVAX";
1124
+ };
1125
+ creditor: {
1126
+ name: string;
1127
+ iban?: string | undefined;
1128
+ accountNumber?: string | undefined;
1129
+ bankCode?: "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" | undefined;
1130
+ swiftBic?: string | undefined;
1131
+ sortCode?: string | undefined;
1132
+ routingNumber?: string | undefined;
1133
+ clabe?: string | undefined;
1134
+ bsb?: string | undefined;
1135
+ brBankNumber?: string | undefined;
1136
+ };
1137
+ referenceId?: string | undefined;
1138
+ remittanceInfo?: {
1139
+ message?: string | undefined;
1140
+ variableSymbol?: string | undefined;
1141
+ constantSymbol?: string | undefined;
1142
+ specificSymbol?: string | undefined;
1143
+ } | undefined;
1144
+ instructionPriority?: "NORMAL" | "INSTANT" | undefined;
1145
+ }[];
1146
+ };
1147
+ };
1148
+ output: {
1149
+ message: string;
1150
+ code?: string | undefined;
1151
+ };
1152
+ outputFormat: "json";
1153
+ status: 400;
1154
+ } | {
1155
+ input: {
1156
+ param: {
1157
+ id: string;
1158
+ } & {
1159
+ [x: string]: string;
1160
+ [x: number]: string;
1161
+ [x: symbol]: string;
1162
+ };
1163
+ header: {
1164
+ 'x-idempotency-key': string;
1165
+ };
1166
+ json: {
1167
+ debtorAccountId: string;
1168
+ paymentType: "DOMESTIC";
1169
+ payments: {
1170
+ amount: {
1171
+ value: number;
1172
+ currency: "CZK" | "EUR" | "USD" | "PLN" | "RON" | "GBP" | "RUB" | "HUF" | "CHF" | "DKK" | "SEK" | "HRK" | "NOK" | "BGN" | "TRY" | "AUD" | "CAD" | "JPY" | "CNY" | "INR" | "BRL" | "MXN" | "ZAR" | "SGD" | "HKD" | "KRW" | "MYR" | "THB" | "IDR" | "PHP" | "AED" | "SAR" | "ILS" | "EGP" | "NGN" | "PKR" | "COP" | "CLP" | "PEN" | "VND" | "KZT" | "UAH" | "BTC" | "ETH" | "ADA" | "DOT" | "ATOM" | "XRP" | "LTC" | "SOL" | "DOGE" | "MATIC" | "AVAX";
1173
+ };
1174
+ creditor: {
1175
+ name: string;
1176
+ iban?: string | undefined;
1177
+ accountNumber?: string | undefined;
1178
+ bankCode?: "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" | undefined;
1179
+ swiftBic?: string | undefined;
1180
+ sortCode?: string | undefined;
1181
+ routingNumber?: string | undefined;
1182
+ clabe?: string | undefined;
1183
+ bsb?: string | undefined;
1184
+ brBankNumber?: string | undefined;
1185
+ };
1186
+ referenceId?: string | undefined;
1187
+ remittanceInfo?: {
1188
+ message?: string | undefined;
1189
+ variableSymbol?: string | undefined;
1190
+ constantSymbol?: string | undefined;
1191
+ specificSymbol?: string | undefined;
1192
+ } | undefined;
1193
+ instructionPriority?: "NORMAL" | "INSTANT" | undefined;
1194
+ }[];
1195
+ };
1196
+ };
1197
+ output: {
1198
+ message: string;
1199
+ code?: string | undefined;
1200
+ };
1201
+ outputFormat: "json";
1202
+ status: 404;
1203
+ } | {
1204
+ input: {
1205
+ param: {
1206
+ id: string;
1207
+ } & {
1208
+ [x: string]: string;
1209
+ [x: number]: string;
1210
+ [x: symbol]: string;
1211
+ };
1212
+ header: {
1213
+ 'x-idempotency-key': string;
1214
+ };
1215
+ json: {
1216
+ debtorAccountId: string;
1217
+ paymentType: "DOMESTIC";
1218
+ payments: {
1219
+ amount: {
1220
+ value: number;
1221
+ currency: "CZK" | "EUR" | "USD" | "PLN" | "RON" | "GBP" | "RUB" | "HUF" | "CHF" | "DKK" | "SEK" | "HRK" | "NOK" | "BGN" | "TRY" | "AUD" | "CAD" | "JPY" | "CNY" | "INR" | "BRL" | "MXN" | "ZAR" | "SGD" | "HKD" | "KRW" | "MYR" | "THB" | "IDR" | "PHP" | "AED" | "SAR" | "ILS" | "EGP" | "NGN" | "PKR" | "COP" | "CLP" | "PEN" | "VND" | "KZT" | "UAH" | "BTC" | "ETH" | "ADA" | "DOT" | "ATOM" | "XRP" | "LTC" | "SOL" | "DOGE" | "MATIC" | "AVAX";
1222
+ };
1223
+ creditor: {
1224
+ name: string;
1225
+ iban?: string | undefined;
1226
+ accountNumber?: string | undefined;
1227
+ bankCode?: "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" | undefined;
1228
+ swiftBic?: string | undefined;
1229
+ sortCode?: string | undefined;
1230
+ routingNumber?: string | undefined;
1231
+ clabe?: string | undefined;
1232
+ bsb?: string | undefined;
1233
+ brBankNumber?: string | undefined;
1234
+ };
1235
+ referenceId?: string | undefined;
1236
+ remittanceInfo?: {
1237
+ message?: string | undefined;
1238
+ variableSymbol?: string | undefined;
1239
+ constantSymbol?: string | undefined;
1240
+ specificSymbol?: string | undefined;
1241
+ } | undefined;
1242
+ instructionPriority?: "NORMAL" | "INSTANT" | undefined;
1243
+ }[];
1244
+ };
1245
+ };
1246
+ output: {
1247
+ message: string;
1248
+ code?: string | undefined;
1249
+ };
1250
+ outputFormat: "json";
1251
+ status: 422;
1252
+ } | {
1253
+ input: {
1254
+ param: {
1255
+ id: string;
1256
+ } & {
1257
+ [x: string]: string;
1258
+ [x: number]: string;
1259
+ [x: symbol]: string;
1260
+ };
1261
+ header: {
1262
+ 'x-idempotency-key': string;
1263
+ };
1264
+ json: {
1265
+ debtorAccountId: string;
1266
+ paymentType: "DOMESTIC";
1267
+ payments: {
1268
+ amount: {
1269
+ value: number;
1270
+ currency: "CZK" | "EUR" | "USD" | "PLN" | "RON" | "GBP" | "RUB" | "HUF" | "CHF" | "DKK" | "SEK" | "HRK" | "NOK" | "BGN" | "TRY" | "AUD" | "CAD" | "JPY" | "CNY" | "INR" | "BRL" | "MXN" | "ZAR" | "SGD" | "HKD" | "KRW" | "MYR" | "THB" | "IDR" | "PHP" | "AED" | "SAR" | "ILS" | "EGP" | "NGN" | "PKR" | "COP" | "CLP" | "PEN" | "VND" | "KZT" | "UAH" | "BTC" | "ETH" | "ADA" | "DOT" | "ATOM" | "XRP" | "LTC" | "SOL" | "DOGE" | "MATIC" | "AVAX";
1271
+ };
1272
+ creditor: {
1273
+ name: string;
1274
+ iban?: string | undefined;
1275
+ accountNumber?: string | undefined;
1276
+ bankCode?: "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" | undefined;
1277
+ swiftBic?: string | undefined;
1278
+ sortCode?: string | undefined;
1279
+ routingNumber?: string | undefined;
1280
+ clabe?: string | undefined;
1281
+ bsb?: string | undefined;
1282
+ brBankNumber?: string | undefined;
1283
+ };
1284
+ referenceId?: string | undefined;
1285
+ remittanceInfo?: {
1286
+ message?: string | undefined;
1287
+ variableSymbol?: string | undefined;
1288
+ constantSymbol?: string | undefined;
1289
+ specificSymbol?: string | undefined;
1290
+ } | undefined;
1291
+ instructionPriority?: "NORMAL" | "INSTANT" | undefined;
1292
+ }[];
1293
+ };
1294
+ };
1295
+ output: {
1296
+ message: string;
1297
+ };
1298
+ outputFormat: "json";
1299
+ status: 500;
1300
+ };
1301
+ }>;
1302
+ };
1303
+ };
1304
+ };
1305
+ };
1306
+ } & {
1307
+ v1: {
1308
+ organizations: {
1309
+ ":id": {
1310
+ "payment-requests": {
1311
+ ":paymentRequestId": hono_client.ClientRequest<string, "/v1/organizations/:id/payment-requests/:paymentRequestId", {
1312
+ $get: {
1313
+ input: {
1314
+ param: {
1315
+ id: string;
1316
+ paymentRequestId: string;
1317
+ } & {
1318
+ id: string;
1319
+ paymentRequestId: string;
1320
+ };
1321
+ };
1322
+ output: {
1323
+ id: string;
1324
+ referenceId: string | null;
1325
+ bankRefId: string | null;
1326
+ status: string;
1327
+ direction: "OUTGOING";
1328
+ type: string;
1329
+ amount: {
1330
+ value: number;
1331
+ currency: string;
1332
+ };
1333
+ debtor: {
1334
+ name: string | null;
1335
+ iban: string | null;
1336
+ accountId: string;
1337
+ bankCode: string | null;
1338
+ };
1339
+ creditor: {
1340
+ name: string | null;
1341
+ iban?: string | undefined;
1342
+ bankCode?: string | undefined;
1343
+ swiftBic?: string | undefined;
1344
+ address?: {
1345
+ streetName?: string | undefined;
1346
+ buildingNumber?: string | undefined;
1347
+ city?: string | undefined;
1348
+ postalCode?: string | undefined;
1349
+ countryCode?: string | undefined;
1350
+ } | undefined;
1351
+ };
1352
+ remittanceInfo: {
1353
+ message: string | null;
1354
+ variableSymbol: string | null;
1355
+ specificSymbol: string | null;
1356
+ constantSymbol: string | null;
1357
+ } | null;
1358
+ statusReason: string | null;
1359
+ dates: {
1360
+ created: string | null;
1361
+ initiated: string | null;
1362
+ processed: string | null;
1363
+ updated: string | null;
1364
+ };
1365
+ batch: {
1366
+ id: string;
1367
+ } | null;
1368
+ instructionPriority: "NORMAL" | "INSTANT" | null;
1369
+ };
1370
+ outputFormat: "json";
1371
+ status: 200;
1372
+ } | {
1373
+ input: {
1374
+ param: {
1375
+ id: string;
1376
+ paymentRequestId: string;
1377
+ } & {
1378
+ id: string;
1379
+ paymentRequestId: string;
1380
+ };
1381
+ };
1382
+ output: {
1383
+ message: string;
1384
+ };
1385
+ outputFormat: "json";
1386
+ status: 404;
1387
+ } | {
1388
+ input: {
1389
+ param: {
1390
+ id: string;
1391
+ paymentRequestId: string;
1392
+ } & {
1393
+ id: string;
1394
+ paymentRequestId: string;
1395
+ };
1396
+ };
1397
+ output: {
1398
+ message: string;
1399
+ };
1400
+ outputFormat: "json";
1401
+ status: 500;
1402
+ };
1403
+ }>;
1404
+ };
1405
+ };
1406
+ };
1407
+ };
1408
+ } & {
1409
+ v1: {
1410
+ organization: {
1411
+ "signature-keys": hono_client.ClientRequest<string, "/v1/organization/signature-keys", {
1412
+ $post: {
1413
+ input: {
1414
+ header: {
1415
+ 'X-Idempotency-Key': string;
1416
+ };
1417
+ } & {
1418
+ json: {
1419
+ name: string;
1420
+ };
1421
+ };
1422
+ output: {
1423
+ message: string;
1424
+ name: string;
1425
+ publicKey: string;
1426
+ privateKey: string;
1427
+ };
1428
+ outputFormat: "json";
1429
+ status: 200;
1430
+ } | {
1431
+ input: {
1432
+ header: {
1433
+ 'X-Idempotency-Key': string;
1434
+ };
1435
+ } & {
1436
+ json: {
1437
+ name: string;
1438
+ };
1439
+ };
1440
+ output: {
1441
+ message: string;
1442
+ };
1443
+ outputFormat: "json";
1444
+ status: 500;
1445
+ };
1446
+ } & {
1447
+ $get: {
1448
+ input: {};
1449
+ output: {
1450
+ message: string;
1451
+ signatureKeys: {
1452
+ name: string;
1453
+ publicKey: string;
1454
+ }[];
1455
+ };
1456
+ outputFormat: "json";
1457
+ status: 200;
1458
+ } | {
1459
+ input: {};
1460
+ output: {
1461
+ message: string;
1462
+ };
1463
+ outputFormat: "json";
1464
+ status: 500;
1465
+ };
1466
+ }>;
1467
+ };
1468
+ };
1469
+ } & {
1470
+ v1: {
1471
+ organization: {
1472
+ "signature-keys": {
1473
+ ":name": hono_client.ClientRequest<string, "/v1/organization/signature-keys/:name", {
1474
+ $delete: {
1475
+ input: {
1476
+ param: {
1477
+ name: string;
1478
+ } & {
1479
+ name: string;
1480
+ };
1481
+ header: {
1482
+ 'X-Idempotency-Key': string;
1483
+ };
1484
+ };
1485
+ output: {
1486
+ message: string;
1487
+ };
1488
+ outputFormat: "json";
1489
+ status: 200;
1490
+ } | {
1491
+ input: {
1492
+ param: {
1493
+ name: string;
1494
+ } & {
1495
+ name: string;
1496
+ };
1497
+ header: {
1498
+ 'X-Idempotency-Key': string;
1499
+ };
1500
+ };
1501
+ output: {
1502
+ message: string;
1503
+ };
1504
+ outputFormat: "json";
1505
+ status: 500;
1506
+ };
1507
+ }>;
1508
+ };
1509
+ };
1510
+ };
1511
+ } & {
1512
+ v1: {
1513
+ organization: {
1514
+ users: hono_client.ClientRequest<string, "/v1/organization/users", {
1515
+ $post: {
1516
+ input: {
1517
+ header: {
1518
+ 'X-Idempotency-Key': string;
1519
+ };
1520
+ } & {
1521
+ json: {
1522
+ email: string;
1523
+ };
1524
+ };
1525
+ output: {
1526
+ message: string;
1527
+ id: string;
1528
+ email: string;
1529
+ };
1530
+ outputFormat: "json";
1531
+ status: 200;
1532
+ } | {
1533
+ input: {
1534
+ header: {
1535
+ 'X-Idempotency-Key': string;
1536
+ };
1537
+ } & {
1538
+ json: {
1539
+ email: string;
1540
+ };
1541
+ };
1542
+ output: {
1543
+ message: string;
1544
+ };
1545
+ outputFormat: "json";
1546
+ status: 500;
1547
+ };
1548
+ }>;
1549
+ };
1550
+ };
1551
+ } & {
1552
+ v1: {
1553
+ organization: {
1554
+ users: {
1555
+ ":id": hono_client.ClientRequest<string, "/v1/organization/users/:id", {
1556
+ $delete: {
1557
+ input: {
1558
+ param: {
1559
+ id: string;
1560
+ } & {
1561
+ id: string;
1562
+ };
1563
+ header: {
1564
+ 'X-Idempotency-Key': string;
1565
+ };
1566
+ };
1567
+ output: {
1568
+ message: string;
1569
+ };
1570
+ outputFormat: "json";
1571
+ status: 200;
1572
+ } | {
1573
+ input: {
1574
+ param: {
1575
+ id: string;
1576
+ } & {
1577
+ id: string;
1578
+ };
1579
+ header: {
1580
+ 'X-Idempotency-Key': string;
1581
+ };
1582
+ };
1583
+ output: {
1584
+ message: string;
1585
+ };
1586
+ outputFormat: "json";
1587
+ status: 500;
1588
+ };
1589
+ } & {
1590
+ $patch: {
1591
+ input: {
1592
+ param: {
1593
+ id: string;
1594
+ } & {
1595
+ id: string;
1596
+ };
1597
+ header: {
1598
+ 'X-Idempotency-Key': string;
1599
+ };
1600
+ json: {
1601
+ email?: string | undefined;
1602
+ role?: "OWNER" | "ADMIN" | "MEMBER" | undefined;
1603
+ };
1604
+ };
1605
+ output: {
1606
+ message: string;
1607
+ id: string;
1608
+ email: string;
1609
+ role: "OWNER" | "ADMIN" | "MEMBER";
1610
+ };
1611
+ outputFormat: "json";
1612
+ status: 200;
1613
+ } | {
1614
+ input: {
1615
+ param: {
1616
+ id: string;
1617
+ } & {
1618
+ id: string;
1619
+ };
1620
+ header: {
1621
+ 'X-Idempotency-Key': string;
1622
+ };
1623
+ json: {
1624
+ email?: string | undefined;
1625
+ role?: "OWNER" | "ADMIN" | "MEMBER" | undefined;
1626
+ };
1627
+ };
1628
+ output: {
1629
+ message: string;
1630
+ };
1631
+ outputFormat: "json";
1632
+ status: 500;
1633
+ };
1634
+ }>;
1635
+ };
1636
+ };
1637
+ };
1638
+ } & {
1639
+ v1: {
1640
+ tasks: {
1641
+ setups: {
1642
+ organization: hono_client.ClientRequest<string, "/v1/tasks/setups/organization", {
1643
+ $post: {
1644
+ input: {
1645
+ json: {
1646
+ name: string;
1647
+ webhook: string;
1648
+ ipAuthorization: boolean;
1649
+ ownerEmail: string;
1650
+ bankAccounts: {
1651
+ iban: string;
1652
+ currency: "CZK";
1653
+ }[];
1654
+ };
1655
+ };
1656
+ output: {
1657
+ message: string;
1658
+ id: string;
1659
+ name: string;
1660
+ webhook: string;
1661
+ createdAt: string;
1662
+ };
1663
+ outputFormat: "json";
1664
+ status: 200;
1665
+ } | {
1666
+ input: {
1667
+ json: {
1668
+ name: string;
1669
+ webhook: string;
1670
+ ipAuthorization: boolean;
1671
+ ownerEmail: string;
1672
+ bankAccounts: {
1673
+ iban: string;
1674
+ currency: "CZK";
1675
+ }[];
1676
+ };
1677
+ };
1678
+ output: {
1679
+ message: string;
1680
+ };
1681
+ outputFormat: "json";
1682
+ status: 400;
1683
+ } | {
1684
+ input: {
1685
+ json: {
1686
+ name: string;
1687
+ webhook: string;
1688
+ ipAuthorization: boolean;
1689
+ ownerEmail: string;
1690
+ bankAccounts: {
1691
+ iban: string;
1692
+ currency: "CZK";
1693
+ }[];
1694
+ };
1695
+ };
1696
+ output: {
1697
+ message: string;
1698
+ };
1699
+ outputFormat: "json";
1700
+ status: 404;
1701
+ } | {
1702
+ input: {
1703
+ json: {
1704
+ name: string;
1705
+ webhook: string;
1706
+ ipAuthorization: boolean;
1707
+ ownerEmail: string;
1708
+ bankAccounts: {
1709
+ iban: string;
1710
+ currency: "CZK";
1711
+ }[];
1712
+ };
1713
+ };
1714
+ output: {
1715
+ message: string;
1716
+ };
1717
+ outputFormat: "json";
1718
+ status: 500;
1719
+ };
1720
+ }>;
1721
+ };
1722
+ };
1723
+ };
1724
+ } & {
1725
+ v1: {
1726
+ users: {
1727
+ ":userId": {
1728
+ verification: {
1729
+ ":confirmationToken": hono_client.ClientRequest<string, "/v1/users/:userId/verification/:confirmationToken", {
1730
+ $patch: {
1731
+ input: {
1732
+ param: {
1733
+ userId: string;
1734
+ confirmationToken: string;
1735
+ } & {
1736
+ userId: string;
1737
+ confirmationToken: string;
1738
+ };
1739
+ json: {
1740
+ password: string;
1741
+ captchaToken: string;
1742
+ };
1743
+ };
1744
+ output: Response;
1745
+ outputFormat: "json";
1746
+ status: hono_utils_http_status.StatusCode;
1747
+ };
1748
+ } & {
1749
+ $get: {
1750
+ input: {
1751
+ param: {
1752
+ userId: string;
1753
+ confirmationToken: string;
1754
+ } & {
1755
+ userId: string;
1756
+ confirmationToken: string;
1757
+ };
1758
+ };
1759
+ output: Response;
1760
+ outputFormat: "json";
1761
+ status: hono_utils_http_status.StatusCode;
1762
+ };
1763
+ }>;
1764
+ };
1765
+ };
1766
+ };
1767
+ };
1768
+ } & {
1769
+ v1: {
1770
+ users: {
1771
+ ":userId": {
1772
+ verification: {
1773
+ ":confirmationToken": {
1774
+ success: hono_client.ClientRequest<string, "/v1/users/:userId/verification/:confirmationToken/success", {
1775
+ $get: {
1776
+ input: {
1777
+ param: {
1778
+ userId: string;
1779
+ confirmationToken: string;
1780
+ } & {
1781
+ [x: string]: string;
1782
+ [x: number]: string;
1783
+ [x: symbol]: string;
1784
+ };
1785
+ };
1786
+ output: Response;
1787
+ outputFormat: "json";
1788
+ status: hono_utils_http_status.StatusCode;
1789
+ };
1790
+ }>;
1791
+ };
1792
+ };
1793
+ };
1794
+ };
1795
+ };
1796
+ };
1797
+
1798
+ declare const WebhookEventType: {
1799
+ readonly PaymentFetched: "payment.fetched";
1800
+ readonly PaymentUpdated: "payment.updated";
1801
+ readonly PaymentRequestAuthorized: "payment_request.authorized";
1802
+ readonly PaymentRequestCompleted: "payment_request.completed";
1803
+ readonly PaymentRequestBooked: "payment_request.booked";
1804
+ readonly PaymentRequestSettled: "payment_request.settled";
1805
+ readonly PaymentRequestRejected: "payment_request.rejected";
1806
+ readonly PaymentRequestClosed: "payment_request.closed";
1807
+ };
1808
+ type WebhookEventType = (typeof WebhookEventType)[keyof typeof WebhookEventType];
1809
+
1810
+ export { WebhookEventType, WebhookEventType as WebhookEventTypeValue, createPartnerApiClient };