UI Updates
This commit is contained in:
@@ -20,6 +20,12 @@ export interface SystemRecord {
|
||||
config: Record<string, unknown>;
|
||||
}
|
||||
|
||||
export interface TranscriptSegment {
|
||||
start: number;
|
||||
end: number;
|
||||
text: string;
|
||||
}
|
||||
|
||||
export interface CallRecord {
|
||||
call_id: string;
|
||||
node_id: string;
|
||||
@@ -32,6 +38,7 @@ export interface CallRecord {
|
||||
audio_url: string | null;
|
||||
transcript: string | null;
|
||||
transcript_corrected: string | null;
|
||||
segments: TranscriptSegment[] | null;
|
||||
incident_id: string | null;
|
||||
location: { lat: number; lng: number } | null;
|
||||
tags: string[];
|
||||
|
||||
Reference in New Issue
Block a user