From 513f88024389403261245cc89fe49f27a0214bb1 Mon Sep 17 00:00:00 2001 From: cryptooda Date: Fri, 15 Aug 2025 21:27:32 +0700 Subject: [PATCH] Update api client --- src/Managing.WebApp/src/generated/ManagingApi.ts | 6 ++++++ src/Managing.WebApp/src/generated/ManagingApiTypes.ts | 6 ++++++ 2 files changed, 12 insertions(+) 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 {