Add debugging

This commit is contained in:
Logan
2026-05-04 01:46:56 -04:00
parent e704df1a62
commit 97f4286810
3 changed files with 70 additions and 2 deletions
+7
View File
@@ -56,6 +56,13 @@ export interface CallRecord {
location: string | null;
tags: string[];
status: "active" | "ended";
// Correlation debug — written by the correlator, present after a call is linked
corr_path?: string | null;
corr_score?: number | null;
corr_distance_km?: number | null;
corr_incident_idle_min?: number | null;
corr_shared_units?: number | null;
corr_candidates?: number | null;
}
export interface IncidentRecord {