@actual-app/sync-server 25.7.0-nightly.20250618 → 25.7.0-nightly.20250620
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.
|
@@ -27,6 +27,8 @@ export const BANKS_WITH_LIMITED_HISTORY = [
|
|
|
27
27
|
'BANK_MILLENNIUM_BIGBPLPW',
|
|
28
28
|
'BANKINTER_BKBKESMM',
|
|
29
29
|
'BBVA_BBVAESMM',
|
|
30
|
+
'BELFIUS_GKCCBEBB',
|
|
31
|
+
'BNP_BE_GEBABEBB',
|
|
30
32
|
'BNP_PL_PPABPLPK',
|
|
31
33
|
'BOURSORAMA_BOUSFRPP',
|
|
32
34
|
'BRED_BREDFRPPXXX',
|
|
@@ -50,6 +52,7 @@ export const BANKS_WITH_LIMITED_HISTORY = [
|
|
|
50
52
|
'ING_PL_INGBPLPW',
|
|
51
53
|
'JEKYLL_JEYKLL002',
|
|
52
54
|
'KBC_KREDBEBB',
|
|
55
|
+
'KBC_BRUSSELS_KREDBEBB',
|
|
53
56
|
'LABORALKUTXA_CLPEES2M',
|
|
54
57
|
'LCL_CRLYFRPP',
|
|
55
58
|
'LHV_LHVBEE22',
|
|
@@ -3,7 +3,7 @@ import { extractPayeeNameFromRemittanceInfo } from './util/extract-payeeName-fro
|
|
|
3
3
|
/** @type {import('./bank.interface.js').IBank} */
|
|
4
4
|
export default {
|
|
5
5
|
...Fallback,
|
|
6
|
-
institutionIds: ['KBC_KREDBEBB'],
|
|
6
|
+
institutionIds: ['KBC_KREDBEBB', 'KBC_BRUSSELS_KREDBEBB'],
|
|
7
7
|
/**
|
|
8
8
|
* For negative amounts, the only payee information we have is returned in
|
|
9
9
|
* remittanceInformationUnstructured.
|
package/build/src/app.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import fs, { readFileSync } from 'node:fs';
|
|
2
2
|
import { join, resolve } from 'node:path';
|
|
3
3
|
import { fileURLToPath } from 'node:url';
|
|
4
|
-
import bodyParser from 'body-parser';
|
|
5
4
|
import cors from 'cors';
|
|
6
5
|
import express from 'express';
|
|
7
6
|
import rateLimit from 'express-rate-limit';
|
|
@@ -30,12 +29,12 @@ if (process.env.NODE_ENV !== 'development') {
|
|
|
30
29
|
standardHeaders: true,
|
|
31
30
|
}));
|
|
32
31
|
}
|
|
33
|
-
app.use(
|
|
34
|
-
app.use(
|
|
32
|
+
app.use(express.json({ limit: `${config.get('upload.fileSizeLimitMB')}mb` }));
|
|
33
|
+
app.use(express.raw({
|
|
35
34
|
type: 'application/actual-sync',
|
|
36
35
|
limit: `${config.get('upload.fileSizeSyncLimitMB')}mb`,
|
|
37
36
|
}));
|
|
38
|
-
app.use(
|
|
37
|
+
app.use(express.raw({
|
|
39
38
|
type: 'application/encrypted-file',
|
|
40
39
|
limit: `${config.get('upload.syncEncryptedFileSizeLimitMB')}mb`,
|
|
41
40
|
}));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@actual-app/sync-server",
|
|
3
|
-
"version": "25.7.0-nightly.
|
|
3
|
+
"version": "25.7.0-nightly.20250620",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "actual syncing server",
|
|
6
6
|
"bin": {
|
|
@@ -28,10 +28,9 @@
|
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@actual-app/crdt": "2.1.0",
|
|
31
|
-
"@actual-app/web": "25.7.0-nightly.
|
|
31
|
+
"@actual-app/web": "25.7.0-nightly.20250620",
|
|
32
32
|
"bcrypt": "^5.1.1",
|
|
33
33
|
"better-sqlite3": "^11.10.0",
|
|
34
|
-
"body-parser": "^1.20.3",
|
|
35
34
|
"convict": "^6.2.4",
|
|
36
35
|
"cors": "^2.8.5",
|
|
37
36
|
"date-fns": "^4.1.0",
|
|
@@ -60,11 +59,11 @@
|
|
|
60
59
|
"@types/express-actuator": "^1.8.3",
|
|
61
60
|
"@types/node": "^22.15.18",
|
|
62
61
|
"@types/supertest": "^2.0.16",
|
|
63
|
-
"@vitest/coverage-v8": "3.
|
|
62
|
+
"@vitest/coverage-v8": "3.2.4",
|
|
64
63
|
"http-proxy-middleware": "^3.0.5",
|
|
65
64
|
"nodemon": "^3.1.10",
|
|
66
65
|
"supertest": "^6.3.4",
|
|
67
66
|
"typescript": "^5.8.3",
|
|
68
|
-
"vitest": "^3.
|
|
67
|
+
"vitest": "^3.2.4"
|
|
69
68
|
}
|
|
70
69
|
}
|