(executionId: string)
| 760 | }; |
| 761 | |
| 762 | const missingExecutionResult = (executionId: string): McpToolResult => |
| 763 | resumeUnavailableResult({ status: "execution_not_found", executionId }); |
| 764 | |
| 765 | const alreadySettledResult = (executionId: string): McpToolResult => |
| 766 | resumeUnavailableResult({ status: "execution_already_settled", executionId }); |
no test coverage detected