israeli-banks-actual-budget-importer 1.8.1 → 1.9.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/CHANGELOG.md +7 -0
- package/config.schema.json +244 -39
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [1.9.0](https://github.com/tomerh2001/israeli-banks-actual-budget-importer/compare/v1.8.1...v1.9.0) (2026-01-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* added support for bank hapoalim investment accounts ([f1017d8](https://github.com/tomerh2001/israeli-banks-actual-budget-importer/commit/f1017d8b9eae21c8a99d92389e6bd3b49f1cf7aa))
|
|
7
|
+
|
|
1
8
|
## [1.8.1](https://github.com/tomerh2001/israeli-banks-actual-budget-importer/compare/v1.8.0...v1.8.1) (2026-01-03)
|
|
2
9
|
|
|
3
10
|
|
package/config.schema.json
CHANGED
|
@@ -50,83 +50,195 @@
|
|
|
50
50
|
],
|
|
51
51
|
"type": "object"
|
|
52
52
|
},
|
|
53
|
+
"AccountsSelector": {
|
|
54
|
+
"anyOf": [
|
|
55
|
+
{
|
|
56
|
+
"const": "all"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"type": "array",
|
|
60
|
+
"items": {
|
|
61
|
+
"type": "string"
|
|
62
|
+
},
|
|
63
|
+
"minItems": 1
|
|
64
|
+
}
|
|
65
|
+
]
|
|
66
|
+
},
|
|
67
|
+
"ConfigBankTarget": {
|
|
68
|
+
"additionalProperties": false,
|
|
69
|
+
"properties": {
|
|
70
|
+
"actualAccountId": {
|
|
71
|
+
"type": "string"
|
|
72
|
+
},
|
|
73
|
+
"reconcile": {
|
|
74
|
+
"type": "boolean"
|
|
75
|
+
},
|
|
76
|
+
"accounts": {
|
|
77
|
+
"$ref": "#/definitions/AccountsSelector"
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
"required": [
|
|
81
|
+
"actualAccountId"
|
|
82
|
+
],
|
|
83
|
+
"type": "object"
|
|
84
|
+
},
|
|
85
|
+
"ConfigBankMappingLegacy": {
|
|
86
|
+
"type": "object",
|
|
87
|
+
"properties": {
|
|
88
|
+
"actualAccountId": {
|
|
89
|
+
"type": "string"
|
|
90
|
+
},
|
|
91
|
+
"reconcile": {
|
|
92
|
+
"type": "boolean"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"required": [
|
|
96
|
+
"actualAccountId"
|
|
97
|
+
]
|
|
98
|
+
},
|
|
99
|
+
"ConfigBankMappingTargets": {
|
|
100
|
+
"type": "object",
|
|
101
|
+
"properties": {
|
|
102
|
+
"targets": {
|
|
103
|
+
"type": "array",
|
|
104
|
+
"items": {
|
|
105
|
+
"$ref": "#/definitions/ConfigBankTarget"
|
|
106
|
+
},
|
|
107
|
+
"minItems": 1
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
"required": [
|
|
111
|
+
"targets"
|
|
112
|
+
]
|
|
113
|
+
},
|
|
53
114
|
"ConfigBank": {
|
|
54
115
|
"anyOf": [
|
|
55
116
|
{
|
|
56
117
|
"additionalProperties": false,
|
|
57
118
|
"properties": {
|
|
58
|
-
"
|
|
119
|
+
"userCode": {
|
|
59
120
|
"type": "string"
|
|
60
121
|
},
|
|
61
122
|
"password": {
|
|
62
123
|
"type": "string"
|
|
63
124
|
},
|
|
125
|
+
"actualAccountId": {
|
|
126
|
+
"type": "string"
|
|
127
|
+
},
|
|
64
128
|
"reconcile": {
|
|
65
129
|
"type": "boolean"
|
|
66
130
|
},
|
|
67
|
-
"
|
|
68
|
-
"type": "
|
|
131
|
+
"targets": {
|
|
132
|
+
"type": "array",
|
|
133
|
+
"items": {
|
|
134
|
+
"$ref": "#/definitions/ConfigBankTarget"
|
|
135
|
+
},
|
|
136
|
+
"minItems": 1
|
|
69
137
|
}
|
|
70
138
|
},
|
|
71
139
|
"required": [
|
|
72
|
-
"actualAccountId",
|
|
73
140
|
"password",
|
|
74
141
|
"userCode"
|
|
75
142
|
],
|
|
143
|
+
"allOf": [
|
|
144
|
+
{
|
|
145
|
+
"anyOf": [
|
|
146
|
+
{
|
|
147
|
+
"$ref": "#/definitions/ConfigBankMappingLegacy"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"$ref": "#/definitions/ConfigBankMappingTargets"
|
|
151
|
+
}
|
|
152
|
+
]
|
|
153
|
+
}
|
|
154
|
+
],
|
|
76
155
|
"type": "object"
|
|
77
156
|
},
|
|
78
157
|
{
|
|
79
158
|
"additionalProperties": false,
|
|
80
159
|
"properties": {
|
|
81
|
-
"
|
|
160
|
+
"username": {
|
|
82
161
|
"type": "string"
|
|
83
162
|
},
|
|
84
163
|
"password": {
|
|
85
164
|
"type": "string"
|
|
86
165
|
},
|
|
166
|
+
"actualAccountId": {
|
|
167
|
+
"type": "string"
|
|
168
|
+
},
|
|
87
169
|
"reconcile": {
|
|
88
170
|
"type": "boolean"
|
|
89
171
|
},
|
|
90
|
-
"
|
|
91
|
-
"type": "
|
|
172
|
+
"targets": {
|
|
173
|
+
"type": "array",
|
|
174
|
+
"items": {
|
|
175
|
+
"$ref": "#/definitions/ConfigBankTarget"
|
|
176
|
+
},
|
|
177
|
+
"minItems": 1
|
|
92
178
|
}
|
|
93
179
|
},
|
|
94
180
|
"required": [
|
|
95
|
-
"actualAccountId",
|
|
96
181
|
"password",
|
|
97
182
|
"username"
|
|
98
183
|
],
|
|
184
|
+
"allOf": [
|
|
185
|
+
{
|
|
186
|
+
"anyOf": [
|
|
187
|
+
{
|
|
188
|
+
"$ref": "#/definitions/ConfigBankMappingLegacy"
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"$ref": "#/definitions/ConfigBankMappingTargets"
|
|
192
|
+
}
|
|
193
|
+
]
|
|
194
|
+
}
|
|
195
|
+
],
|
|
99
196
|
"type": "object"
|
|
100
197
|
},
|
|
101
198
|
{
|
|
102
199
|
"additionalProperties": false,
|
|
103
200
|
"properties": {
|
|
104
|
-
"actualAccountId": {
|
|
105
|
-
"type": "string"
|
|
106
|
-
},
|
|
107
201
|
"id": {
|
|
108
202
|
"type": "string"
|
|
109
203
|
},
|
|
110
204
|
"password": {
|
|
111
205
|
"type": "string"
|
|
112
206
|
},
|
|
207
|
+
"actualAccountId": {
|
|
208
|
+
"type": "string"
|
|
209
|
+
},
|
|
113
210
|
"reconcile": {
|
|
114
211
|
"type": "boolean"
|
|
212
|
+
},
|
|
213
|
+
"targets": {
|
|
214
|
+
"type": "array",
|
|
215
|
+
"items": {
|
|
216
|
+
"$ref": "#/definitions/ConfigBankTarget"
|
|
217
|
+
},
|
|
218
|
+
"minItems": 1
|
|
115
219
|
}
|
|
116
220
|
},
|
|
117
221
|
"required": [
|
|
118
|
-
"actualAccountId",
|
|
119
222
|
"id",
|
|
120
223
|
"password"
|
|
121
224
|
],
|
|
225
|
+
"allOf": [
|
|
226
|
+
{
|
|
227
|
+
"anyOf": [
|
|
228
|
+
{
|
|
229
|
+
"$ref": "#/definitions/ConfigBankMappingLegacy"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"$ref": "#/definitions/ConfigBankMappingTargets"
|
|
233
|
+
}
|
|
234
|
+
]
|
|
235
|
+
}
|
|
236
|
+
],
|
|
122
237
|
"type": "object"
|
|
123
238
|
},
|
|
124
239
|
{
|
|
125
240
|
"additionalProperties": false,
|
|
126
241
|
"properties": {
|
|
127
|
-
"actualAccountId": {
|
|
128
|
-
"type": "string"
|
|
129
|
-
},
|
|
130
242
|
"id": {
|
|
131
243
|
"type": "string"
|
|
132
244
|
},
|
|
@@ -136,109 +248,181 @@
|
|
|
136
248
|
"password": {
|
|
137
249
|
"type": "string"
|
|
138
250
|
},
|
|
251
|
+
"actualAccountId": {
|
|
252
|
+
"type": "string"
|
|
253
|
+
},
|
|
139
254
|
"reconcile": {
|
|
140
255
|
"type": "boolean"
|
|
256
|
+
},
|
|
257
|
+
"targets": {
|
|
258
|
+
"type": "array",
|
|
259
|
+
"items": {
|
|
260
|
+
"$ref": "#/definitions/ConfigBankTarget"
|
|
261
|
+
},
|
|
262
|
+
"minItems": 1
|
|
141
263
|
}
|
|
142
264
|
},
|
|
143
265
|
"required": [
|
|
144
|
-
"actualAccountId",
|
|
145
266
|
"id",
|
|
146
267
|
"num",
|
|
147
268
|
"password"
|
|
148
269
|
],
|
|
270
|
+
"allOf": [
|
|
271
|
+
{
|
|
272
|
+
"anyOf": [
|
|
273
|
+
{
|
|
274
|
+
"$ref": "#/definitions/ConfigBankMappingLegacy"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"$ref": "#/definitions/ConfigBankMappingTargets"
|
|
278
|
+
}
|
|
279
|
+
]
|
|
280
|
+
}
|
|
281
|
+
],
|
|
149
282
|
"type": "object"
|
|
150
283
|
},
|
|
151
284
|
{
|
|
152
285
|
"additionalProperties": false,
|
|
153
286
|
"properties": {
|
|
154
|
-
"
|
|
287
|
+
"id": {
|
|
155
288
|
"type": "string"
|
|
156
289
|
},
|
|
157
290
|
"card6Digits": {
|
|
158
291
|
"type": "string"
|
|
159
292
|
},
|
|
160
|
-
"
|
|
293
|
+
"password": {
|
|
161
294
|
"type": "string"
|
|
162
295
|
},
|
|
163
|
-
"
|
|
296
|
+
"actualAccountId": {
|
|
164
297
|
"type": "string"
|
|
165
298
|
},
|
|
166
299
|
"reconcile": {
|
|
167
300
|
"type": "boolean"
|
|
301
|
+
},
|
|
302
|
+
"targets": {
|
|
303
|
+
"type": "array",
|
|
304
|
+
"items": {
|
|
305
|
+
"$ref": "#/definitions/ConfigBankTarget"
|
|
306
|
+
},
|
|
307
|
+
"minItems": 1
|
|
168
308
|
}
|
|
169
309
|
},
|
|
170
310
|
"required": [
|
|
171
|
-
"actualAccountId",
|
|
172
|
-
"card6Digits",
|
|
173
311
|
"id",
|
|
312
|
+
"card6Digits",
|
|
174
313
|
"password"
|
|
175
314
|
],
|
|
315
|
+
"allOf": [
|
|
316
|
+
{
|
|
317
|
+
"anyOf": [
|
|
318
|
+
{
|
|
319
|
+
"$ref": "#/definitions/ConfigBankMappingLegacy"
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"$ref": "#/definitions/ConfigBankMappingTargets"
|
|
323
|
+
}
|
|
324
|
+
]
|
|
325
|
+
}
|
|
326
|
+
],
|
|
176
327
|
"type": "object"
|
|
177
328
|
},
|
|
178
329
|
{
|
|
179
330
|
"additionalProperties": false,
|
|
180
331
|
"properties": {
|
|
181
|
-
"
|
|
332
|
+
"nationalID": {
|
|
182
333
|
"type": "string"
|
|
183
334
|
},
|
|
184
|
-
"
|
|
335
|
+
"username": {
|
|
185
336
|
"type": "string"
|
|
186
337
|
},
|
|
187
338
|
"password": {
|
|
188
339
|
"type": "string"
|
|
189
340
|
},
|
|
341
|
+
"actualAccountId": {
|
|
342
|
+
"type": "string"
|
|
343
|
+
},
|
|
190
344
|
"reconcile": {
|
|
191
345
|
"type": "boolean"
|
|
192
346
|
},
|
|
193
|
-
"
|
|
194
|
-
"type": "
|
|
347
|
+
"targets": {
|
|
348
|
+
"type": "array",
|
|
349
|
+
"items": {
|
|
350
|
+
"$ref": "#/definitions/ConfigBankTarget"
|
|
351
|
+
},
|
|
352
|
+
"minItems": 1
|
|
195
353
|
}
|
|
196
354
|
},
|
|
197
355
|
"required": [
|
|
198
|
-
"actualAccountId",
|
|
199
356
|
"nationalID",
|
|
200
|
-
"
|
|
201
|
-
"
|
|
357
|
+
"username",
|
|
358
|
+
"password"
|
|
359
|
+
],
|
|
360
|
+
"allOf": [
|
|
361
|
+
{
|
|
362
|
+
"anyOf": [
|
|
363
|
+
{
|
|
364
|
+
"$ref": "#/definitions/ConfigBankMappingLegacy"
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"$ref": "#/definitions/ConfigBankMappingTargets"
|
|
368
|
+
}
|
|
369
|
+
]
|
|
370
|
+
}
|
|
202
371
|
],
|
|
203
372
|
"type": "object"
|
|
204
373
|
},
|
|
205
374
|
{
|
|
206
375
|
"additionalProperties": false,
|
|
207
376
|
"properties": {
|
|
208
|
-
"actualAccountId": {
|
|
209
|
-
"type": "string"
|
|
210
|
-
},
|
|
211
377
|
"email": {
|
|
212
378
|
"type": "string"
|
|
213
379
|
},
|
|
214
|
-
"
|
|
215
|
-
"
|
|
380
|
+
"phoneNumber": {
|
|
381
|
+
"type": "string"
|
|
216
382
|
},
|
|
217
383
|
"password": {
|
|
218
384
|
"type": "string"
|
|
219
385
|
},
|
|
220
|
-
"
|
|
386
|
+
"otpCodeRetriever": {
|
|
387
|
+
"$comment": "() => Promise<string>"
|
|
388
|
+
},
|
|
389
|
+
"actualAccountId": {
|
|
221
390
|
"type": "string"
|
|
222
391
|
},
|
|
223
392
|
"reconcile": {
|
|
224
393
|
"type": "boolean"
|
|
394
|
+
},
|
|
395
|
+
"targets": {
|
|
396
|
+
"type": "array",
|
|
397
|
+
"items": {
|
|
398
|
+
"$ref": "#/definitions/ConfigBankTarget"
|
|
399
|
+
},
|
|
400
|
+
"minItems": 1
|
|
225
401
|
}
|
|
226
402
|
},
|
|
227
403
|
"required": [
|
|
228
|
-
"actualAccountId",
|
|
229
404
|
"email",
|
|
230
405
|
"otpCodeRetriever",
|
|
231
406
|
"password",
|
|
232
407
|
"phoneNumber"
|
|
233
408
|
],
|
|
409
|
+
"allOf": [
|
|
410
|
+
{
|
|
411
|
+
"anyOf": [
|
|
412
|
+
{
|
|
413
|
+
"$ref": "#/definitions/ConfigBankMappingLegacy"
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"$ref": "#/definitions/ConfigBankMappingTargets"
|
|
417
|
+
}
|
|
418
|
+
]
|
|
419
|
+
}
|
|
420
|
+
],
|
|
234
421
|
"type": "object"
|
|
235
422
|
},
|
|
236
423
|
{
|
|
237
424
|
"additionalProperties": false,
|
|
238
425
|
"properties": {
|
|
239
|
-
"actualAccountId": {
|
|
240
|
-
"type": "string"
|
|
241
|
-
},
|
|
242
426
|
"email": {
|
|
243
427
|
"type": "string"
|
|
244
428
|
},
|
|
@@ -248,16 +432,37 @@
|
|
|
248
432
|
"password": {
|
|
249
433
|
"type": "string"
|
|
250
434
|
},
|
|
435
|
+
"actualAccountId": {
|
|
436
|
+
"type": "string"
|
|
437
|
+
},
|
|
251
438
|
"reconcile": {
|
|
252
439
|
"type": "boolean"
|
|
440
|
+
},
|
|
441
|
+
"targets": {
|
|
442
|
+
"type": "array",
|
|
443
|
+
"items": {
|
|
444
|
+
"$ref": "#/definitions/ConfigBankTarget"
|
|
445
|
+
},
|
|
446
|
+
"minItems": 1
|
|
253
447
|
}
|
|
254
448
|
},
|
|
255
449
|
"required": [
|
|
256
|
-
"actualAccountId",
|
|
257
450
|
"email",
|
|
258
451
|
"otpLongTermToken",
|
|
259
452
|
"password"
|
|
260
453
|
],
|
|
454
|
+
"allOf": [
|
|
455
|
+
{
|
|
456
|
+
"anyOf": [
|
|
457
|
+
{
|
|
458
|
+
"$ref": "#/definitions/ConfigBankMappingLegacy"
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
"$ref": "#/definitions/ConfigBankMappingTargets"
|
|
462
|
+
}
|
|
463
|
+
]
|
|
464
|
+
}
|
|
465
|
+
],
|
|
261
466
|
"type": "object"
|
|
262
467
|
}
|
|
263
468
|
]
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.
|
|
2
|
+
"version": "1.9.0",
|
|
3
3
|
"name": "israeli-banks-actual-budget-importer",
|
|
4
4
|
"module": "index.ts",
|
|
5
5
|
"type": "module",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"packageManager": "yarn@4.12.0",
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@actual-app/api": "^25.12.0",
|
|
29
|
-
"@tomerh2001/israeli-bank-scrapers": "
|
|
29
|
+
"@tomerh2001/israeli-bank-scrapers": "6.4.0",
|
|
30
30
|
"cronstrue": "^3.9.0",
|
|
31
31
|
"lodash": "^4.17.21",
|
|
32
32
|
"moment": "^2.30.1",
|