big ui and intel updates

This commit is contained in:
Logan
2026-04-19 16:48:55 -04:00
parent 0df53df92e
commit 303c5b13cf
11 changed files with 527 additions and 169 deletions
+5 -2
View File
@@ -40,7 +40,7 @@ export interface CallRecord {
transcript_corrected: string | null;
segments: TranscriptSegment[] | null;
incident_id: string | null;
location: { lat: number; lng: number } | null;
location: string | null;
tags: string[];
status: "active" | "ended";
}
@@ -50,8 +50,11 @@ export interface IncidentRecord {
title: string | null;
type: string | null;
status: "active" | "resolved";
location: { lat: number; lng: number } | null;
location: string | null;
location_coords: { lat: number; lng: number } | null;
call_ids: string[];
system_ids: string[];
talkgroup_ids: string[];
started_at: string;
updated_at: string;
summary: string | null;