Feature/improve experimental chart in account detail dialog (#3813)

* Improve chart in account detail dialog

* Update changelog
This commit is contained in:
Thomas Kaul
2024-09-24 19:45:48 +02:00
committed by GitHub
parent 4a97e2bb54
commit bb445ddf2e
10 changed files with 181 additions and 125 deletions

View File

@@ -1,7 +1,7 @@
import { AccountBalance } from '@prisma/client';
export interface AccountBalancesResponse {
balances: (Pick<AccountBalance, 'date' | 'id' | 'value'> & {
balances: (Pick<AccountBalance, 'accountId' | 'date' | 'id' | 'value'> & {
valueInBaseCurrency: number;
})[];
}