(executionId: string)
| 721 | }; |
| 722 | |
| 723 | const missingExecutionResult = (executionId: string): McpToolResult => |
| 724 | resumeUnavailableResult({ status: "execution_not_found", executionId }); |
| 725 | |
| 726 | const alreadySettledResult = (executionId: string): McpToolResult => |
| 727 | resumeUnavailableResult({ status: "execution_already_settled", executionId }); |
no test coverage detected