| 1 | // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. |
| 2 | import type { Message } from "./Message"; |
| 3 | import type { SessionSummary } from "./SessionSummary"; |
| 4 | |
| 5 | /** |
| 6 | * Full viewer payload — summary + fully decoded message timeline. |
| 7 | */ |
| 8 | export type SessionDetail = { summary: SessionSummary, messages: Array<Message>, }; |