fix(meetings): populate Recent calls for backend meet flow (owner, duration, participants) (#3710)

This commit is contained in:
YellowSnnowmann
2026-06-17 13:31:30 +05:30
committed by GitHub
parent a1b7c29338
commit eaad68ecaa
24 changed files with 591 additions and 96 deletions
+6
View File
@@ -128,6 +128,12 @@ export interface MeetCallRecord {
listened_seconds: number;
spoken_seconds: number;
turn_count: number;
/**
* Distinct human participant display names mined from the transcript
* (backend-meet flow). Older records and local meet-agent calls omit this,
* so it is optional and defaults to an empty list at the UI.
*/
participants?: string[];
}
interface CoreListCallsResponse {