@aroman22/codegraph-vba 1.8.0 → 1.9.0

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.
@@ -172,6 +172,9 @@ export interface ToolAnnotations {
172
172
  interface PropertySchema {
173
173
  type: string;
174
174
  description: string;
175
+ items?: {
176
+ type: string;
177
+ };
175
178
  enum?: string[];
176
179
  default?: unknown;
177
180
  }
@@ -352,6 +355,8 @@ export declare class ToolHandler {
352
355
  execute(toolName: string, args: Record<string, unknown>): Promise<ToolResult>;
353
356
  /** Run the CLI sync command and preserve its complete process output. */
354
357
  private handleSync;
358
+ /** Run the CLI-only affected command and preserve its complete process output. */
359
+ private handleAffected;
355
360
  /** Resolve symlinks/junctions and enforce mutation-root boundaries. */
356
361
  private validateMutationTarget;
357
362
  /** Execute a mutating CodeGraph CLI command after enforcing its path allowlist. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aroman22/codegraph-vba",
3
- "version": "1.8.0",
3
+ "version": "1.9.0",
4
4
  "description": "Local-first code intelligence for AI agents (MCP). Self-contained — bundles its own runtime.",
5
5
  "bin": {
6
6
  "codegraph-vba": "npm-shim.js"
@@ -15,12 +15,12 @@
15
15
  "./package.json": "./package.json"
16
16
  },
17
17
  "optionalDependencies": {
18
- "@aroman22/codegraph-vba-darwin-arm64": "1.8.0",
19
- "@aroman22/codegraph-vba-darwin-x64": "1.8.0",
20
- "@aroman22/codegraph-vba-linux-arm64": "1.8.0",
21
- "@aroman22/codegraph-vba-linux-x64": "1.8.0",
22
- "@aroman22/codegraph-vba-win32-arm64": "1.8.0",
23
- "@aroman22/codegraph-vba-win32-x64": "1.8.0"
18
+ "@aroman22/codegraph-vba-darwin-arm64": "1.9.0",
19
+ "@aroman22/codegraph-vba-darwin-x64": "1.9.0",
20
+ "@aroman22/codegraph-vba-linux-arm64": "1.9.0",
21
+ "@aroman22/codegraph-vba-linux-x64": "1.9.0",
22
+ "@aroman22/codegraph-vba-win32-arm64": "1.9.0",
23
+ "@aroman22/codegraph-vba-win32-x64": "1.9.0"
24
24
  },
25
25
  "files": [
26
26
  "npm-shim.js",