israeli-banks-actual-budget-importer 1.10.0 → 1.10.1
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/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/src/importer.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.10.1](https://github.com/tomerh2001/israeli-banks-actual-budget-importer/compare/v1.10.0...v1.10.1) (2026-01-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* simplify reconciliation notes formatting in transaction import ([a1b8bd1](https://github.com/tomerh2001/israeli-banks-actual-budget-importer/commit/a1b8bd1d2eb518b5e9af126760f2ef901564bad8))
|
|
7
|
+
|
|
1
8
|
# [1.10.0](https://github.com/tomerh2001/israeli-banks-actual-budget-importer/compare/v1.9.0...v1.10.0) (2026-01-04)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/src/importer.ts
CHANGED
|
@@ -149,7 +149,7 @@ export async function scrapeAndImportTransactions({companyId, bank}: ScrapeTrans
|
|
|
149
149
|
amount: actual.utils.amountToInteger(balanceDiff),
|
|
150
150
|
payee: null, // IMPORTANT: never pass undefined to updateTransaction schema
|
|
151
151
|
imported_payee: 'Reconciliation',
|
|
152
|
-
notes: `Reconciliation
|
|
152
|
+
notes: `Reconciliation from ${currentBalance.toLocaleString()} to ${scraperBalance.toLocaleString()}`,
|
|
153
153
|
imported_id: reconciliationImportedId, // NEW every run
|
|
154
154
|
});
|
|
155
155
|
|