Add historian persistence and dashboard trend charts

This commit is contained in:
litoral05
2026-05-20 17:27:54 +01:00
parent 9fcf67c7ae
commit a30d41d031
16 changed files with 1304 additions and 48 deletions
+12
View File
@@ -0,0 +1,12 @@
export type HistorianSeriesPoint = {
timestamp: string;
numericValue: number | null;
booleanValue: boolean | null;
textValue: string | null;
};
export type HistorianDashboardResponse = {
from: string;
to: string;
series: Record<string, HistorianSeriesPoint[]>;
};