mirror of
https://github.com/actualbudget/actual.git
synced 2026-05-06 15:12:35 -05:00
* [AI] Fix accounts list: compute balances, hide closed, sort by budget group - Replace empty `balance_current` (bank-sync field) with computed `balance` from transaction history via `getAccountBalance` - Filter out closed accounts by default; add `--include-closed` flag - Stable-sort on-budget accounts before off-budget - Add `balance_current` to AMOUNT_FIELDS for table/csv formatting - Update docs and tests Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * [AI] Extract duplicate isRecord type guard to shared utils Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * [AI] Add types condition to api package exports for tsc resolution Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * Update packages/cli/src/commands/query.ts Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * [AI] Add balance_available/balance_limit to AMOUNT_FIELDS, validate query result.data Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by: Cursor Agent <cursoragent@cursor.com> Co-authored-by: Matiss Janis Aboltins <MatissJanis@users.noreply.github.com>
52 lines
1.1 KiB
JSON
52 lines
1.1 KiB
JSON
{
|
|
"name": "@actual-app/api",
|
|
"version": "26.4.0",
|
|
"description": "An API for Actual",
|
|
"license": "MIT",
|
|
"files": [
|
|
"@types",
|
|
"dist"
|
|
],
|
|
"main": "dist/index.js",
|
|
"types": "@types/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./@types/index.d.ts",
|
|
"development": "./index.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"exports": {
|
|
".": {
|
|
"types": "./@types/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "vite build",
|
|
"test": "vitest --run",
|
|
"typecheck": "tsgo -b && tsc-strict"
|
|
},
|
|
"dependencies": {
|
|
"@actual-app/core": "workspace:*",
|
|
"@actual-app/crdt": "workspace:*",
|
|
"better-sqlite3": "^12.6.2",
|
|
"compare-versions": "^6.1.1",
|
|
"uuid": "^13.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript/native-preview": "^7.0.0-dev.20260309.1",
|
|
"rollup-plugin-visualizer": "^6.0.11",
|
|
"typescript-strict-plugin": "^2.4.4",
|
|
"vite": "^8.0.5",
|
|
"vite-plugin-dts": "^4.5.4",
|
|
"vite-plugin-peggy-loader": "^2.0.1",
|
|
"vitest": "^4.1.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=20"
|
|
}
|
|
}
|