(executionId: string)
| 752 | resumeUnavailableResult({ status: "execution_not_found", executionId }); |
| 753 | |
| 754 | const alreadySettledResult = (executionId: string): McpToolResult => |
| 755 | resumeUnavailableResult({ status: "execution_already_settled", executionId }); |
| 756 | |
| 757 | const fallbackOutcomeResult = ( |
| 758 | executionId: string, |
no test coverage detected