(
@Param('runId') runId: string,
@Query(new ZodValidationPipe(TemporalRunQuerySchema)) query: TemporalRunQueryDto,
@CurrentAuth() auth: AuthContext | null,
)
| 683 | description: 'Resolved workflow result payload', |
| 684 | }) |
| 685 | async result( |
| 686 | @Param('runId') runId: string, |
| 687 | @Query(new ZodValidationPipe(TemporalRunQuerySchema)) query: TemporalRunQueryDto, |
| 688 | @CurrentAuth() auth: AuthContext | null, |
| 689 | ) { |
| 690 | const result = await this.workflowsService.getRunResult(runId, query.temporalRunId, auth); |
| 691 | return { runId, result }; |
| 692 | } |
| 693 | |
| 694 | @Get('/runs/:runId/config') |
| 695 | @ApiOkResponse({ |
no test coverage detected