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 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
@@ -4,6 +4,7 @@ services:
4
4
  container_name: israeli-banks-actual-budget-importer
5
5
  cap_add:
6
6
  - SYS_ADMIN
7
+ platform: linux/amd64
7
8
  build:
8
9
  context: .
9
10
  dockerfile: Dockerfile
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.2.3",
2
+ "version": "1.2.4",
3
3
  "name": "israeli-banks-actual-budget-importer",
4
4
  "module": "index.ts",
5
5
  "type": "module",
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
- executablePath: '/opt/homebrew/bin/chromium',
18
+ // ExecutablePath: '/opt/homebrew/bin/chromium',
19
19
  args: ['--user-data-dir=/app/chrome-data'],
20
20
  additionalTransactionInformation: true,
21
21
  verbose: false,