israeli-banks-actual-budget-importer 1.0.0-beta.1 → 1.0.0-beta.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/.vscode/launch.json +22 -0
- package/.vscode/settings.json +7 -1
- package/CHANGELOG.md +7 -0
- package/bun.lock +318 -29
- package/package.json +18 -8
- package/src/config.d.ts +26 -0
- package/src/index.ts +28 -0
- package/src/utils.d.ts +8 -0
- package/src/utils.ts +94 -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-beta.2](https://github.com/tomerh2001/israeli-banks-actual-budget-importer/compare/v1.0.0-beta.1...v1.0.0-beta.2) (2025-04-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* add imported_id field for transaction importing to prevent duplicates ([bb302fb](https://github.com/tomerh2001/israeli-banks-actual-budget-importer/commit/bb302fbfc898644ae276863407e59fda2319edbd))
|
|
7
|
+
|
|
1
8
|
# 1.0.0-beta.1 (2025-03-24)
|
|
2
9
|
|
|
3
10
|
|