feat: better ux for calc-schedule-budget

This commit is contained in:
2024-08-13 08:11:31 +02:00
parent e51e42efa8
commit 3636531a18
5 changed files with 68 additions and 23 deletions

View File

@@ -21,7 +21,7 @@ await api.downloadBudget(process.env.ACTUAL_ID, {
export async function getSchedules(select = '*') {
return (await api.runQuery(api.q('schedules').select(select).filter({ completed: false }))).data;
return (await api.runQuery(api.q('schedules').select(select))).data;
}
export * from '@actual-app/api';