(executionId: string)
| 728 | }; |
| 729 | |
| 730 | const missingExecutionResult = (executionId: string): McpToolResult => |
| 731 | resumeUnavailableResult({ status: "execution_not_found", executionId }); |
| 732 | |
| 733 | const alreadySettledResult = (executionId: string): McpToolResult => |
| 734 | resumeUnavailableResult({ status: "execution_already_settled", executionId }); |
no test coverage detected