israeli-banks-actual-budget-importer 1.0.0-beta.1 → 1.0.0
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/.vscode/launch.json +22 -0
- package/.vscode/settings.json +7 -1
- package/CHANGELOG.md +7 -0
- package/README.md +4 -8
- package/bun.lock +318 -29
- package/package.json +18 -8
- package/src/config.d.ts +26 -0
- package/src/index.ts +27 -0
- package/src/utils.d.ts +8 -0
- package/src/utils.ts +92 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.2.0",
|
|
3
|
+
"configurations": [
|
|
4
|
+
{
|
|
5
|
+
"name": "tsx",
|
|
6
|
+
"type": "node",
|
|
7
|
+
"request": "launch",
|
|
8
|
+
// Debug current file in VSCode
|
|
9
|
+
"program": "${file}",
|
|
10
|
+
"runtimeExecutable": "tsx",
|
|
11
|
+
"console": "integratedTerminal",
|
|
12
|
+
"internalConsoleOptions": "neverOpen",
|
|
13
|
+
// Files to exclude from debugger (e.g. call stack)
|
|
14
|
+
"skipFiles": [
|
|
15
|
+
// Node.js internal core modules
|
|
16
|
+
"<node_internals>/**",
|
|
17
|
+
// Ignore all dependencies (optional)
|
|
18
|
+
"${workspaceFolder}/node_modules/**",
|
|
19
|
+
],
|
|
20
|
+
}
|
|
21
|
+
]
|
|
22
|
+
}
|
package/.vscode/settings.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# 1.0.0 (2025-04-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **initial-commit:** restructure project files and update dependencies ([ad1abcf](https://github.com/tomerh2001/israeli-banks-actual-budget-importer/commit/ad1abcf4e405f2356342b684fff3773a92b3b4ce))
|
|
7
|
+
|
|
1
8
|
# 1.0.0-beta.1 (2025-03-24)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -5,21 +5,17 @@
|
|
|
5
5
|
[](../../actions/workflows/codeql.yml)
|
|
6
6
|
[](https://securityscorecards.dev/viewer/?uri=github.com/tomerh2001/semantic-release-repo-template)
|
|
7
7
|
|
|
8
|
-
This
|
|
8
|
+
This project provides an importer from Israeli banks (via [israeli-bank-scrapers](https://github.com/eshaham/israeli-bank-scrapers)) into [Actual Budget](https://github.com/actualbudget/actual).
|
|
9
9
|
|
|
10
10
|
## Features
|
|
11
11
|
1. Supports all of the institutions that the [israeli-bank-scrapers](https://github.com/eshaham/israeli-bank-scrapers) library covers (Bank Hapoalim, Cal, Leumi, Discount, etc.).
|
|
12
12
|
1. Automatically **creates new Actual accounts** if none exist.
|
|
13
13
|
2. **Prevents duplicate transactions** using Actual’s [`imported_id`](https://actualbudget.org/docs/api/reference/#transactions) logic.
|
|
14
14
|
3. Configurable via a single JSON file specifying bank credentials, start dates, etc.
|
|
15
|
+
4. Automatically reconcile account balances.
|
|
15
16
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
## Common error scenarios
|
|
20
|
-
- Wrong credentials (scraper fails).
|
|
21
|
-
- Actual Budget server is not running or wrong credentials (password).
|
|
22
|
-
- Conflicting or missing environment/config.
|
|
17
|
+
> [!NOTE]
|
|
18
|
+
> This importer is still WIP.
|
|
23
19
|
|
|
24
20
|
## Contributing
|
|
25
21
|
Feel free to open pull requests and issues! Suggestions or improvements are welcome.
|