Update api client

This commit is contained in:
2025-08-15 21:27:32 +07:00
parent b4f6dc871b
commit 513f880243
2 changed files with 12 additions and 0 deletions

View File

@@ -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 {

View File

@@ -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 {