import type { ChatHistory } from './ChatHistory'; import type { SessionSummaryMentor } from './SessionSummaryMentor'; /** * Lightweight serializer for session list endpoints (pinned/recent messages). */ export type SessionSummary = { session_id: string; mentor_unique_id: string; mentor: SessionSummaryMentor; title: string | null; messages: Array; };