| 48 | } |
| 49 | |
| 50 | export interface HistoryDetail { |
| 51 | id: string |
| 52 | title: string |
| 53 | created_at: string |
| 54 | updated_at: string |
| 55 | outline: { |
| 56 | raw: string |
| 57 | pages: Page[] |
| 58 | } |
| 59 | images: { |
| 60 | task_id: string | null |
| 61 | generated: string[] |
| 62 | } |
| 63 | status: string |
| 64 | thumbnail: string | null |
| 65 | } |
| 66 | |
| 67 | export interface CreateHistoryParams { |
| 68 | topic: string |
nothing calls this directly
no outgoing calls
no test coverage detected