@develit-services/bank 0.0.2
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/@types/index.d.mts +444 -0
- package/dist/@types/index.d.ts +444 -0
- package/dist/@types/index.mjs +9 -0
- package/dist/database/schema/index.d.mts +4 -0
- package/dist/database/schema/index.d.ts +4 -0
- package/dist/database/schema/index.mjs +4 -0
- package/dist/export/worker.d.mts +240 -0
- package/dist/export/worker.d.ts +240 -0
- package/dist/export/worker.mjs +1214 -0
- package/dist/export/wrangler.d.mts +59 -0
- package/dist/export/wrangler.d.ts +59 -0
- package/dist/export/wrangler.mjs +129 -0
- package/dist/shared/bank.BeH-ZCJJ.mjs +67 -0
- package/dist/shared/bank.CBNQZ5Pd.d.mts +785 -0
- package/dist/shared/bank.CBNQZ5Pd.d.ts +785 -0
- package/dist/shared/bank.D-DeJSGN.d.ts +3127 -0
- package/dist/shared/bank.DdbWdNgy.d.mts +3127 -0
- package/dist/shared/bank.DxGqqFhD.d.mts +36 -0
- package/dist/shared/bank.DxGqqFhD.d.ts +36 -0
- package/dist/shared/bank._EHVypLw.mjs +3751 -0
- package/package.json +59 -0
|
@@ -0,0 +1,444 @@
|
|
|
1
|
+
import { b as CurrencyCode, c as BankCode, d as CountryCode, I as IBankConnector, a as ConnectorKey, A as AuthInput, e as IncomingPaymentMessage, P as PaymentPreparedInsertType, f as InitiatedBatch, g as InitiatedPayment, C as ConfigBankAccount, S as SyncLog, h as BatchMetadata, i as Currency } from '../shared/bank.DdbWdNgy.mjs';
|
|
2
|
+
export { n as BANK_CODES, k as BATCH_STATUES, k as BATCH_STATUSES, l as BatchStatus, v as COUNTRY_CODES, m as CURRENCY_CODES, O as OutgoingPaymentMessage, t as PAYMENT_DIRECTIONS, r as PAYMENT_STATUSES, o as PAYMENT_TYPES, u as PaymentDirection, j as PaymentFailedInsertType, s as PaymentStatus, q as PaymentType, p as paymentInitializedInsertType } from '../shared/bank.DdbWdNgy.mjs';
|
|
3
|
+
import { t as tables, a as PaymentInsertType } from '../shared/bank.CBNQZ5Pd.mjs';
|
|
4
|
+
export { b as BatchInsertType, B as BatchSelectType, P as PaymentSelectType, p as paymentInsertTypeZod } from '../shared/bank.CBNQZ5Pd.mjs';
|
|
5
|
+
import { Environment } from '@develit-io/backend-sdk';
|
|
6
|
+
import { DrizzleD1Database } from 'drizzle-orm/d1';
|
|
7
|
+
export { b as BankServiceEnv, a as BankServiceEnvironmentConfig, B as BankServiceWranglerConfig } from '../shared/bank.DxGqqFhD.mjs';
|
|
8
|
+
import 'drizzle-orm/sqlite-core';
|
|
9
|
+
import 'drizzle-orm';
|
|
10
|
+
import 'zod';
|
|
11
|
+
|
|
12
|
+
type FinbricksProvider = 'KB' | 'ERSTE' | 'CSOB' | 'MOCK_COBS' | 'CREDITAS' | 'FIO';
|
|
13
|
+
type FinbricksPaymentBody = {
|
|
14
|
+
merchantId: string;
|
|
15
|
+
merchantTransactionId: string;
|
|
16
|
+
totalPrice: number;
|
|
17
|
+
debtorAccountIban: string;
|
|
18
|
+
creditorAccountIban: string;
|
|
19
|
+
creditorName?: string;
|
|
20
|
+
description?: string;
|
|
21
|
+
variableSymbol?: string;
|
|
22
|
+
specificSymbol?: string;
|
|
23
|
+
constantSymbol?: string;
|
|
24
|
+
callbackUrl: string;
|
|
25
|
+
clientId?: string;
|
|
26
|
+
operationId?: string;
|
|
27
|
+
instructionPriority?: 'NORM' | 'INST';
|
|
28
|
+
initiatorName?: string;
|
|
29
|
+
paymentProvider: FinbricksProvider;
|
|
30
|
+
};
|
|
31
|
+
type FinbricksBatchBody = {
|
|
32
|
+
batchPaymentIdentification: {
|
|
33
|
+
merchantId: string;
|
|
34
|
+
debtorAccountIban: string;
|
|
35
|
+
clientId?: string;
|
|
36
|
+
operationId?: string;
|
|
37
|
+
callbackUrl?: string;
|
|
38
|
+
merchantBatchId: string;
|
|
39
|
+
instructionName?: string;
|
|
40
|
+
};
|
|
41
|
+
payments: {
|
|
42
|
+
merchantTransactionId: string;
|
|
43
|
+
creditorAccountIban?: string;
|
|
44
|
+
amount: number;
|
|
45
|
+
description?: string;
|
|
46
|
+
variableSymbol?: string;
|
|
47
|
+
specificSymbol?: string;
|
|
48
|
+
constantSymbol?: string;
|
|
49
|
+
instructionPriority?: 'NORM' | 'INST';
|
|
50
|
+
initiatorName?: string;
|
|
51
|
+
}[];
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
type ReferenceType = `${'VS' | 'SS' | 'KS'}:${number}`;
|
|
55
|
+
|
|
56
|
+
type RedirectUrl = {
|
|
57
|
+
redirectUrl: string;
|
|
58
|
+
};
|
|
59
|
+
type FinbricksIdentification = {
|
|
60
|
+
accountNumber: string;
|
|
61
|
+
iban: string;
|
|
62
|
+
other: {
|
|
63
|
+
type: string;
|
|
64
|
+
value: string;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
type FinbricksServicer = {
|
|
68
|
+
bankCode: BankCode;
|
|
69
|
+
countryCode: CountryCode;
|
|
70
|
+
bic: string;
|
|
71
|
+
};
|
|
72
|
+
type FinbricksAccount = {
|
|
73
|
+
id: string;
|
|
74
|
+
identification: FinbricksIdentification;
|
|
75
|
+
currency: CurrencyCode;
|
|
76
|
+
servicer: FinbricksServicer;
|
|
77
|
+
accountName: string;
|
|
78
|
+
productName: string;
|
|
79
|
+
ownersNames: string[];
|
|
80
|
+
relationship: {
|
|
81
|
+
isOwner: boolean;
|
|
82
|
+
};
|
|
83
|
+
pispSuitable: boolean;
|
|
84
|
+
};
|
|
85
|
+
type FinbricksPaymentResponse = RedirectUrl;
|
|
86
|
+
type FinbricksBatchResponse = RedirectUrl;
|
|
87
|
+
type FinbricksAccountsListResponse = {
|
|
88
|
+
accounts: FinbricksAccount[];
|
|
89
|
+
};
|
|
90
|
+
type FinbricksTransactionLink = {
|
|
91
|
+
rel: string;
|
|
92
|
+
value: string;
|
|
93
|
+
};
|
|
94
|
+
type FinbricksAmount = {
|
|
95
|
+
value: number;
|
|
96
|
+
currency: CurrencyCode;
|
|
97
|
+
};
|
|
98
|
+
type FinbricksAddress = {
|
|
99
|
+
streetName: string;
|
|
100
|
+
buildingNumber: string;
|
|
101
|
+
postCode: string;
|
|
102
|
+
townName: string;
|
|
103
|
+
country: CountryCode;
|
|
104
|
+
adressLine: string;
|
|
105
|
+
};
|
|
106
|
+
type FinbricksTransaction = {
|
|
107
|
+
fbxReference: string;
|
|
108
|
+
entryReference: string;
|
|
109
|
+
amount: FinbricksAmount;
|
|
110
|
+
creditDebitIndicator: string;
|
|
111
|
+
reversalIndicator: boolean;
|
|
112
|
+
status: string;
|
|
113
|
+
bookingDate: {
|
|
114
|
+
date: Date;
|
|
115
|
+
};
|
|
116
|
+
valueDate: {
|
|
117
|
+
date: Date;
|
|
118
|
+
};
|
|
119
|
+
bankTransactionCode: {
|
|
120
|
+
proprietary: {
|
|
121
|
+
code: string;
|
|
122
|
+
issuer: string;
|
|
123
|
+
};
|
|
124
|
+
};
|
|
125
|
+
entryDetails: {
|
|
126
|
+
transactionDetails: {
|
|
127
|
+
references: {
|
|
128
|
+
messageIdentification: string;
|
|
129
|
+
accountServicerReference: string;
|
|
130
|
+
paymentInformationIdentification: string;
|
|
131
|
+
instructionIdentification: string;
|
|
132
|
+
endToEndIdentification: string;
|
|
133
|
+
chequeNumber: string;
|
|
134
|
+
clearingSystemReference: string;
|
|
135
|
+
};
|
|
136
|
+
amountDetails: {
|
|
137
|
+
instructedAmount: {
|
|
138
|
+
amount: FinbricksAmount;
|
|
139
|
+
};
|
|
140
|
+
transactionAmount: {
|
|
141
|
+
amount: FinbricksAmount;
|
|
142
|
+
};
|
|
143
|
+
counterValueAmount: {
|
|
144
|
+
amount: FinbricksAmount;
|
|
145
|
+
currencyExchange: {
|
|
146
|
+
sourceCurrency: CurrencyCode;
|
|
147
|
+
targetCurrency: CurrencyCode;
|
|
148
|
+
exchangeRate: number;
|
|
149
|
+
};
|
|
150
|
+
};
|
|
151
|
+
proprietaryAmount: {
|
|
152
|
+
type: string;
|
|
153
|
+
amount: FinbricksAmount;
|
|
154
|
+
};
|
|
155
|
+
};
|
|
156
|
+
charges: {
|
|
157
|
+
bearer: string;
|
|
158
|
+
value: number;
|
|
159
|
+
currency: CurrencyCode;
|
|
160
|
+
};
|
|
161
|
+
relatedParties: {
|
|
162
|
+
debtor: {
|
|
163
|
+
name: string;
|
|
164
|
+
postalAddress: FinbricksAddress;
|
|
165
|
+
identification: {
|
|
166
|
+
organizationIdentification: {
|
|
167
|
+
bicOrBei: string;
|
|
168
|
+
};
|
|
169
|
+
};
|
|
170
|
+
};
|
|
171
|
+
debtorAccount: {
|
|
172
|
+
identification: {
|
|
173
|
+
iban: string;
|
|
174
|
+
other: {
|
|
175
|
+
identification: string;
|
|
176
|
+
};
|
|
177
|
+
};
|
|
178
|
+
};
|
|
179
|
+
creditor: {
|
|
180
|
+
name: string;
|
|
181
|
+
postalAddress: FinbricksAddress;
|
|
182
|
+
identification: {
|
|
183
|
+
organizationIdentification: {
|
|
184
|
+
bicOrBei: string;
|
|
185
|
+
};
|
|
186
|
+
};
|
|
187
|
+
};
|
|
188
|
+
creditorAccount: {
|
|
189
|
+
identification: {
|
|
190
|
+
iban: string;
|
|
191
|
+
other: {
|
|
192
|
+
identification: string;
|
|
193
|
+
};
|
|
194
|
+
};
|
|
195
|
+
};
|
|
196
|
+
};
|
|
197
|
+
remittanceInformation: {
|
|
198
|
+
unstructured: string;
|
|
199
|
+
structured: {
|
|
200
|
+
creditorReferenceInformation: {
|
|
201
|
+
reference: ReferenceType[];
|
|
202
|
+
};
|
|
203
|
+
};
|
|
204
|
+
};
|
|
205
|
+
additionalRemittanceInformation: string;
|
|
206
|
+
};
|
|
207
|
+
};
|
|
208
|
+
};
|
|
209
|
+
type FinbricksAccountTransactionsResponse = {
|
|
210
|
+
pageSize: number;
|
|
211
|
+
links: FinbricksTransactionLink[];
|
|
212
|
+
transactions: FinbricksTransaction[];
|
|
213
|
+
};
|
|
214
|
+
|
|
215
|
+
type FinbricksJWSData = {
|
|
216
|
+
uri: string;
|
|
217
|
+
body: string;
|
|
218
|
+
};
|
|
219
|
+
|
|
220
|
+
interface FinbricksConnectorConfig {
|
|
221
|
+
MERCHANT_ID: string;
|
|
222
|
+
PRIVATE_KEY_PEM: string;
|
|
223
|
+
BASE_URI: string;
|
|
224
|
+
}
|
|
225
|
+
declare abstract class FinbricksConnector extends IBankConnector {
|
|
226
|
+
connectorKey: ConnectorKey;
|
|
227
|
+
readonly BASE_URI: string;
|
|
228
|
+
readonly MERCHANT_ID: string;
|
|
229
|
+
readonly PRIVATE_KEY_PEM: string;
|
|
230
|
+
private readonly PROVIDER;
|
|
231
|
+
static readonly FETCH_INTERVAL: number;
|
|
232
|
+
private lastValidClientId;
|
|
233
|
+
private readonly apiDictionary;
|
|
234
|
+
constructor(PROVIDER: FinbricksProvider, { BASE_URI, MERCHANT_ID, PRIVATE_KEY_PEM }: FinbricksConnectorConfig);
|
|
235
|
+
signFinbricksJws({ jwsData }: {
|
|
236
|
+
jwsData: FinbricksJWSData;
|
|
237
|
+
}): Promise<string>;
|
|
238
|
+
authenticate({ token }: AuthInput): Promise<string>;
|
|
239
|
+
isClientIdExpired(clientId: string): Promise<boolean>;
|
|
240
|
+
preparePayment(payment: IncomingPaymentMessage): Promise<PaymentPreparedInsertType>;
|
|
241
|
+
initiateBatchFromPayments({ payments, }: {
|
|
242
|
+
payments: PaymentPreparedInsertType[];
|
|
243
|
+
}): Promise<InitiatedBatch>;
|
|
244
|
+
initiateSinglePayment(payment: PaymentPreparedInsertType): Promise<InitiatedPayment>;
|
|
245
|
+
getAllAccountPayments({ account, lastSync, }: {
|
|
246
|
+
account: ConfigBankAccount;
|
|
247
|
+
lastSync: SyncLog;
|
|
248
|
+
db: DrizzleD1Database<typeof tables>;
|
|
249
|
+
env: Environment;
|
|
250
|
+
}): Promise<PaymentInsertType[]>;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
interface ErsteConnectorConfig {
|
|
254
|
+
API_KEY: string;
|
|
255
|
+
CLIENT_ID: string;
|
|
256
|
+
CLIENT_SECRET: string;
|
|
257
|
+
REDIRECT_URI: string;
|
|
258
|
+
AUTH_URI: string;
|
|
259
|
+
PAYMENTS_URI: string;
|
|
260
|
+
ACCOUNTS_URI: string;
|
|
261
|
+
}
|
|
262
|
+
declare class ErsteConnector extends IBankConnector {
|
|
263
|
+
static readonly FETCH_INTERVAL: number;
|
|
264
|
+
private readonly API_KEY;
|
|
265
|
+
private readonly CLIENT_ID;
|
|
266
|
+
private readonly CLIENT_SECRET;
|
|
267
|
+
private readonly AUTH_URI;
|
|
268
|
+
private readonly PAYMENTS_URI;
|
|
269
|
+
private readonly REDIRECT_URI;
|
|
270
|
+
private readonly ACCOUNTS_URI;
|
|
271
|
+
connectorKey: ConnectorKey;
|
|
272
|
+
private accessToken;
|
|
273
|
+
constructor(config: ErsteConnectorConfig);
|
|
274
|
+
get adminCodeCreationURI(): string;
|
|
275
|
+
authenticate({ token, refreshToken }: AuthInput): Promise<string>;
|
|
276
|
+
preparePayment(payment: IncomingPaymentMessage): Promise<PaymentPreparedInsertType>;
|
|
277
|
+
initiateBatchFromPayments({ payments, }: {
|
|
278
|
+
payments: PaymentPreparedInsertType[];
|
|
279
|
+
}): Promise<InitiatedBatch>;
|
|
280
|
+
initiateSinglePayment(): Promise<InitiatedPayment>;
|
|
281
|
+
sendBatchPaymentForAuthorization(paymentIds: string[]): Promise<BatchMetadata>;
|
|
282
|
+
getBatchAuthorizationURI({ signId, signHash, }: {
|
|
283
|
+
signId: string;
|
|
284
|
+
signHash: string;
|
|
285
|
+
}): Promise<string>;
|
|
286
|
+
getAllAccountPayments({ account, lastSync, }: {
|
|
287
|
+
account: ConfigBankAccount;
|
|
288
|
+
lastSync: SyncLog;
|
|
289
|
+
}): Promise<PaymentInsertType[]>;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
declare class MockConnector extends IBankConnector {
|
|
293
|
+
connectorKey: ConnectorKey;
|
|
294
|
+
static readonly FETCH_INTERVAL: number;
|
|
295
|
+
authenticate(): Promise<string>;
|
|
296
|
+
preparePayment(payment: IncomingPaymentMessage): Promise<PaymentPreparedInsertType>;
|
|
297
|
+
initiateSinglePayment(payment: PaymentPreparedInsertType): Promise<InitiatedPayment>;
|
|
298
|
+
initiateBatchFromPayments({ payments, }: {
|
|
299
|
+
payments: IncomingPaymentMessage[];
|
|
300
|
+
}): Promise<InitiatedBatch>;
|
|
301
|
+
getAllAccountPayments({ db, }: {
|
|
302
|
+
db: DrizzleD1Database<typeof tables>;
|
|
303
|
+
}): Promise<PaymentInsertType[]>;
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
declare class MockCobsConnector extends FinbricksConnector {
|
|
307
|
+
constructor(config: FinbricksConnectorConfig);
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
interface ErsteAuthenticationResponse {
|
|
311
|
+
access_token: string;
|
|
312
|
+
token_type: string;
|
|
313
|
+
expires_in: number;
|
|
314
|
+
scope: string;
|
|
315
|
+
refresh_token: string;
|
|
316
|
+
}
|
|
317
|
+
interface ErsteParty {
|
|
318
|
+
name: string;
|
|
319
|
+
}
|
|
320
|
+
interface ErsteAccount {
|
|
321
|
+
identification: {
|
|
322
|
+
iban: string;
|
|
323
|
+
other: {
|
|
324
|
+
identification: string;
|
|
325
|
+
};
|
|
326
|
+
};
|
|
327
|
+
}
|
|
328
|
+
interface ErsteSignInfo {
|
|
329
|
+
signId: string;
|
|
330
|
+
hash: string;
|
|
331
|
+
state: 'OPEN' | 'NONE' | 'DECLINED';
|
|
332
|
+
}
|
|
333
|
+
interface ErsteIncomingPaymentResponse {
|
|
334
|
+
entryReference: string;
|
|
335
|
+
reservationId: string;
|
|
336
|
+
amount: {
|
|
337
|
+
value: number;
|
|
338
|
+
currency: Currency;
|
|
339
|
+
};
|
|
340
|
+
bookingDate: {
|
|
341
|
+
date: string;
|
|
342
|
+
};
|
|
343
|
+
status: 'BOOK' | 'INFO';
|
|
344
|
+
entryDetails: {
|
|
345
|
+
transactionDetails: {
|
|
346
|
+
references: {
|
|
347
|
+
accountServicerReference?: string;
|
|
348
|
+
endToEndIdentification?: string;
|
|
349
|
+
chequeNumber?: string;
|
|
350
|
+
};
|
|
351
|
+
amountDetails: {
|
|
352
|
+
instructedAmount: {
|
|
353
|
+
value: number;
|
|
354
|
+
currency: Currency;
|
|
355
|
+
};
|
|
356
|
+
};
|
|
357
|
+
charges: {
|
|
358
|
+
bearer: 'SHA' | 'OUR' | 'BEN';
|
|
359
|
+
};
|
|
360
|
+
relatedParties: {
|
|
361
|
+
debtor: ErsteParty;
|
|
362
|
+
debtorAccount: ErsteAccount;
|
|
363
|
+
creditor?: ErsteParty;
|
|
364
|
+
creditorAccount: ErsteAccount;
|
|
365
|
+
};
|
|
366
|
+
remittanceInformation: {
|
|
367
|
+
unstructured?: string;
|
|
368
|
+
structured: {
|
|
369
|
+
creditorReferenceInformation: {
|
|
370
|
+
reference: ReferenceType[];
|
|
371
|
+
};
|
|
372
|
+
};
|
|
373
|
+
additionalRemittanceInformation: string;
|
|
374
|
+
};
|
|
375
|
+
};
|
|
376
|
+
};
|
|
377
|
+
}
|
|
378
|
+
interface ErstePaymentInitiationResponse {
|
|
379
|
+
paymentIdentification: {
|
|
380
|
+
endToEndIdentification: string;
|
|
381
|
+
instructionIdentification: string;
|
|
382
|
+
transactionIdentification: string;
|
|
383
|
+
};
|
|
384
|
+
paymentTypeInformation: {
|
|
385
|
+
instructedPriority: 'NORM' | 'HIGH' | 'INST' | 'DOMESTIC';
|
|
386
|
+
serviceLevel: {
|
|
387
|
+
code: 'DOMESTIC' | 'SEPA';
|
|
388
|
+
};
|
|
389
|
+
};
|
|
390
|
+
amount: {
|
|
391
|
+
instructedAmount: {
|
|
392
|
+
value: number;
|
|
393
|
+
currency: Currency;
|
|
394
|
+
};
|
|
395
|
+
};
|
|
396
|
+
requestedExecutionDate: string;
|
|
397
|
+
chargeBearer: 'SHA' | 'OUR' | 'BEN';
|
|
398
|
+
debtorAccount: {
|
|
399
|
+
identification: {
|
|
400
|
+
iban: string;
|
|
401
|
+
};
|
|
402
|
+
};
|
|
403
|
+
creditorAccount: {
|
|
404
|
+
identification: {
|
|
405
|
+
iban: string;
|
|
406
|
+
};
|
|
407
|
+
};
|
|
408
|
+
creditorAgent: {
|
|
409
|
+
financialInstitutionIdentification: {
|
|
410
|
+
bic: string;
|
|
411
|
+
name: string;
|
|
412
|
+
};
|
|
413
|
+
};
|
|
414
|
+
creditor: {
|
|
415
|
+
name: string;
|
|
416
|
+
};
|
|
417
|
+
remittanceInformation: {
|
|
418
|
+
structured: {
|
|
419
|
+
creditorReferenceInformation: {
|
|
420
|
+
reference: ReferenceType[];
|
|
421
|
+
};
|
|
422
|
+
};
|
|
423
|
+
unstructured: string;
|
|
424
|
+
additionalRemittanceInformation: string;
|
|
425
|
+
};
|
|
426
|
+
signInfo: ErsteSignInfo;
|
|
427
|
+
intructionStatus: 'ACTC' | 'ACSP' | 'RJCT';
|
|
428
|
+
}
|
|
429
|
+
interface ErsteBatchPaymentInitiationResponse {
|
|
430
|
+
transactionIdentification: string;
|
|
431
|
+
signInfo: ErsteSignInfo;
|
|
432
|
+
}
|
|
433
|
+
interface ErsteObtainAuthorizationURLResponse {
|
|
434
|
+
signInfo: ErsteSignInfo;
|
|
435
|
+
validTo: string;
|
|
436
|
+
signingUrl: string;
|
|
437
|
+
poll: {
|
|
438
|
+
id: string;
|
|
439
|
+
interval: number;
|
|
440
|
+
};
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
export { AuthInput, BankCode, BatchMetadata, CountryCode, Currency, CurrencyCode, ErsteConnector, FinbricksConnector, IBankConnector, IncomingPaymentMessage, InitiatedBatch, InitiatedPayment, MockCobsConnector, MockConnector, PaymentInsertType, PaymentPreparedInsertType };
|
|
444
|
+
export type { ErsteAuthenticationResponse, ErsteBatchPaymentInitiationResponse, ErsteIncomingPaymentResponse, ErsteObtainAuthorizationURLResponse, ErstePaymentInitiationResponse, FinbricksAccountTransactionsResponse, FinbricksAccountsListResponse, FinbricksBatchBody, FinbricksBatchResponse, FinbricksConnectorConfig, FinbricksPaymentBody, FinbricksPaymentResponse, FinbricksProvider };
|