(id: string)
| 465 | } |
| 466 | |
| 467 | function labelFromId(id: string) { |
| 468 | return id |
| 469 | .split(/[-_\s]+/) |
| 470 | .filter(Boolean) |
| 471 | .map((part) => part.charAt(0).toUpperCase() + part.slice(1)) |
| 472 | .join(" ") |
| 473 | } |
| 474 | |
| 475 | function emitSdkMessage(event: SDKMessage, emit: (event: AgentEvent) => void) { |
| 476 | switch (event.type) { |
no outgoing calls
no test coverage detected