(messageID: string, sessionID: string, id: string, text: string)
| 68 | } |
| 69 | |
| 70 | function textPart(messageID: string, sessionID: string, id: string, text: string) { |
| 71 | return { |
| 72 | id, |
| 73 | messageID, |
| 74 | sessionID, |
| 75 | type: "text" as const, |
| 76 | text, |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | function buildMessages(sessionID: string): WithParts[] { |
| 81 | return [ |
no outgoing calls
no test coverage detected