(@Param('runId') runId: string, @CurrentAuth() auth: AuthContext | null)
| 719 | schema: traceEnvelopeSchema, |
| 720 | }) |
| 721 | async trace(@Param('runId') runId: string, @CurrentAuth() auth: AuthContext | null) { |
| 722 | const { events, cursor } = await this.traceService.list(runId, auth); |
| 723 | return { runId, events, cursor }; |
| 724 | } |
| 725 | |
| 726 | @Get('/runs/:runId/events') |
| 727 | @ApiOkResponse({ |
no test coverage detected