@ynhcj/xiaoyi-channel 0.0.119-beta → 0.0.120-beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -269,7 +269,7 @@ export function createXYReplyDispatcher(params) {
269
269
  const toolName = name || "unknown";
270
270
  // call_device_tool 由自身 execute() 内部发送具体子工具名的状态更新
271
271
  // get_xxx_tool_schema 是给 LLM 查 schema 用的,无需向用户展示
272
- if (toolName === "call_device_tool" || toolName.endsWith("_tool_schema")) {
272
+ if (toolName === "call_device_tool" || toolName.endsWith("_tool_schema") || toolName === "huawei_id_tool") {
273
273
  log(`[TOOL START] Skipping generic status for ${toolName}`);
274
274
  return;
275
275
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ynhcj/xiaoyi-channel",
3
- "version": "0.0.119-beta",
3
+ "version": "0.0.120-beta",
4
4
  "description": "OpenClaw Xiaoyi Channel plugin - Xiaoyi A2A protocol integration",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",