(executionId: string)
| 749 | }; |
| 750 | |
| 751 | const missingExecutionResult = (executionId: string): McpToolResult => |
| 752 | resumeUnavailableResult({ status: "execution_not_found", executionId }); |
| 753 | |
| 754 | const alreadySettledResult = (executionId: string): McpToolResult => |
| 755 | resumeUnavailableResult({ status: "execution_already_settled", executionId }); |
no test coverage detected