(id: string, messageID: string, text: string, sessionID = "session-1")
| 278 | } |
| 279 | |
| 280 | function textPart(id: string, messageID: string, text: string, sessionID = "session-1"): TextPart { |
| 281 | return { |
| 282 | id, |
| 283 | sessionID, |
| 284 | messageID, |
| 285 | type: "text", |
| 286 | text, |
| 287 | } |
| 288 | } |
| 289 | |
| 290 | function textUpdated(part: TextPart): SdkEvent { |
| 291 | return { |
no outgoing calls
no test coverage detected