diff --git a/src/Managing.WebApp/src/generated/ManagingApi.ts b/src/Managing.WebApp/src/generated/ManagingApi.ts index 8c029c1..16030d3 100644 --- a/src/Managing.WebApp/src/generated/ManagingApi.ts +++ b/src/Managing.WebApp/src/generated/ManagingApi.ts @@ -4638,6 +4638,12 @@ export interface PlatformSummaryViewModel { positionCountByDirection?: { [key in keyof typeof TradeDirection]?: number; } | null; lastUpdated?: Date; last24HourSnapshot?: Date; + volumeHistory?: VolumeHistoryPoint[] | null; +} + +export interface VolumeHistoryPoint { + date?: Date; + volume?: number; } export interface PaginatedAgentIndexResponse { diff --git a/src/Managing.WebApp/src/generated/ManagingApiTypes.ts b/src/Managing.WebApp/src/generated/ManagingApiTypes.ts index 70232a4..c4bb9ba 100644 --- a/src/Managing.WebApp/src/generated/ManagingApiTypes.ts +++ b/src/Managing.WebApp/src/generated/ManagingApiTypes.ts @@ -993,6 +993,12 @@ export interface PlatformSummaryViewModel { positionCountByDirection?: { [key in keyof typeof TradeDirection]?: number; } | null; lastUpdated?: Date; last24HourSnapshot?: Date; + volumeHistory?: VolumeHistoryPoint[] | null; +} + +export interface VolumeHistoryPoint { + date?: Date; + volume?: number; } export interface PaginatedAgentIndexResponse {