(value: unknown)
| 515 | } |
| 516 | |
| 517 | function listItems(value: unknown): Record<string, unknown>[] { |
| 518 | const items = Array.isArray(field(value, "items")) |
| 519 | ? field(value, "items") |
| 520 | : []; |
| 521 | return (items as unknown[]).filter(isRecord); |
| 522 | } |
| 523 | |
| 524 | async function latestRunForAgent( |
| 525 | agentApi: AgentListApi, |
no test coverage detected