| 30 | } |
| 31 | |
| 32 | export interface FirestoreTranscript { |
| 33 | startAt: Timestamp; |
| 34 | endAt: Timestamp; |
| 35 | speaker: 'me' | 'other'; |
| 36 | text: string; |
| 37 | lang?: string; |
| 38 | createdAt: Timestamp; |
| 39 | } |
| 40 | |
| 41 | export interface FirestoreAiMessage { |
| 42 | sentAt: Timestamp; |
nothing calls this directly
no outgoing calls
no test coverage detected