(executionId: string)
| 589 | }; |
| 590 | |
| 591 | const missingExecutionResult = (executionId: string): McpToolResult => |
| 592 | resumeUnavailableResult({ status: "execution_not_found", executionId }); |
| 593 | |
| 594 | const alreadySettledResult = (executionId: string): McpToolResult => |
| 595 | resumeUnavailableResult({ status: "execution_already_settled", executionId }); |
no test coverage detected