📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-07-29 07:59:17 +00:00
parent 60364c6660
commit 0c634043e3
427 changed files with 26138 additions and 2336 deletions
@@ -679,10 +679,9 @@ class McpServer {
if (!Object.hasOwn(request, "id") || !isPlainObject(request.params)) {
return this.rpcError(id, -32600, "Invalid Request");
}
if (request.params.protocolVersion !== core.protocolVersion) {
return this.rpcError(id, -32602, "Unsupported protocol version", {
code: "AAS_MCP_PROTOCOL_VERSION_INCOMPATIBLE",
expected: core.protocolVersion,
if (typeof request.params.protocolVersion !== "string" || request.params.protocolVersion.trim().length === 0) {
return this.rpcError(id, -32602, "Invalid protocolVersion", {
code: "AAS_MCP_PROTOCOL_VERSION_INVALID",
});
}
this.initializeAccepted = true;