israeli-banks-actual-budget-importer 1.2.3 → 1.2.4
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/compose.yml +1 -0
- package/package.json +1 -1
- package/src/utils.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.2.4](https://github.com/tomerh2001/israeli-banks-actual-budget-importer/compare/v1.2.3...v1.2.4) (2025-05-12)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* comment out build configuration in docker-compose and executablePath in utils ([d33865f](https://github.com/tomerh2001/israeli-banks-actual-budget-importer/commit/d33865f503600b3fd7021732bc0fbb1517ab4ee7))
|
|
7
|
+
|
|
1
8
|
## [1.2.3](https://github.com/tomerh2001/israeli-banks-actual-budget-importer/compare/v1.2.2...v1.2.3) (2025-05-12)
|
|
2
9
|
|
|
3
10
|
|
package/compose.yml
CHANGED
package/package.json
CHANGED
package/src/utils.ts
CHANGED
|
@@ -15,7 +15,7 @@ export async function scrapeAndImportTransactions({companyId, bank}: ScrapeTrans
|
|
|
15
15
|
const scraper = createScraper({
|
|
16
16
|
companyId,
|
|
17
17
|
startDate: moment().subtract(6, 'month').toDate(),
|
|
18
|
-
|
|
18
|
+
// ExecutablePath: '/opt/homebrew/bin/chromium',
|
|
19
19
|
args: ['--user-data-dir=/app/chrome-data'],
|
|
20
20
|
additionalTransactionInformation: true,
|
|
21
21
|
verbose: false,
|