From f86e0bedecd3d82c3ba5a8f328f8064bfb2370b1 Mon Sep 17 00:00:00 2001 From: Tianyi Cui <53024+tianyicui@users.noreply.github.com> Date: Fri, 3 Jul 2026 19:05:46 +0800 Subject: [PATCH] docs(tools): sync ToolExecutionResult.meta comment to `unknown` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The pasted type-equiv block's JSDoc still said the meta payload is `{@link JsonValue}`; the source comment is `unknown` (the meta channel is opaque at the seam). verify-type-equiv compares type structure, not the comment, so the drift slipped through — align the doc comment. --- docs/core-data-structures/tools.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/core-data-structures/tools.md b/docs/core-data-structures/tools.md index 4f9be38e21..04d8c33ce7 100644 --- a/docs/core-data-structures/tools.md +++ b/docs/core-data-structures/tools.md @@ -103,8 +103,8 @@ interface ToolExecutionResult { /** * The tool-private presentation payload from a successful `execute` (the object * return form). Threaded onto the `tool/result` session event and back into - * {@link ToolResult} for `presentResult`. Opaque {@link JsonValue}; absent when - * the tool attached none or the call failed. + * {@link ToolResult} for `presentResult`. Opaque (`unknown`); absent when the + * tool attached none or the call failed. */ meta?: unknown }