feat: enrich portfolio list with total value and position breakdown from MOEX #10

Merged
ksv741 merged 7 commits from perf/portfolio-enricher-optimization into main 2026-06-14 14:19:56 +03:00
Showing only changes of commit 7b3b77f35e - Show all commits

View File

@ -142,6 +142,10 @@ export interface Portfolio {
currency: string;
createdAt: string;
updatedAt: string;
totalValue: number;
positionCount: number;
shareCount: number;
bondCount: number;
}
export interface PositionWithPrice {