voicecc 1.2.10 → 1.2.11

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.
@@ -7,6 +7,7 @@
7
7
  import { test, describe } from "node:test";
8
8
  import { strict as assert } from "node:assert";
9
9
 
10
+ import type { McpServerStatus } from "@anthropic-ai/claude-agent-sdk";
10
11
  import { mapSdkStatusToEntry } from "./mcp-servers.js";
11
12
 
12
13
  // ============================================================================
@@ -19,7 +20,7 @@ describe("mapSdkStatusToEntry", () => {
19
20
  name: "claude.ai Notion",
20
21
  status: "connected",
21
22
  scope: "claudeai",
22
- config: { url: "https://mcp.notion.com/mcp" },
23
+ config: { url: "https://mcp.notion.com/mcp" } as McpServerStatus["config"],
23
24
  });
24
25
 
25
26
  assert.deepEqual(entry, {
@@ -36,7 +37,7 @@ describe("mapSdkStatusToEntry", () => {
36
37
  name: "chrome-devtools",
37
38
  status: "connected",
38
39
  scope: "user",
39
- config: { command: "npx", args: ["chrome-devtools-mcp@latest"] },
40
+ config: { command: "npx", args: ["chrome-devtools-mcp@latest"] } as McpServerStatus["config"],
40
41
  });
41
42
 
42
43
  assert.equal(entry.scope, "user");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "voicecc",
3
- "version": "1.2.10",
3
+ "version": "1.2.11",
4
4
  "description": "Voice Agent Platform running on Claude Code -- create and deploy conversational voice agents with ElevenLabs STT/TTS and VAD",
5
5
  "repository": {
6
6
  "type": "git",
@@ -36,7 +36,7 @@
36
36
  "linux"
37
37
  ],
38
38
  "dependencies": {
39
- "@anthropic-ai/claude-agent-sdk": "^0.1.8",
39
+ "@anthropic-ai/claude-agent-sdk": "^0.2.78",
40
40
  "@anthropic-ai/sdk": "^0.39.0",
41
41
  "@hono/node-server": "^1.19.9",
42
42
  "archiver": "^7.0.1",