@aroman22/codegraph-vba 1.17.0 → 1.17.1

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.
@@ -55,7 +55,8 @@ export interface BehaviorEvidenceRequest {
55
55
  layout?: string;
56
56
  /** Call-path depth budget. Default 5, clamped to 1..20. */
57
57
  maxCallDepth?: number;
58
- /** Maximum evidence entries. Default 50, clamped to 1..500. */
58
+ /** Maximum evidence entries. Default 50, clamped to 1..500.
59
+ * Traversal also visits at most (maxResults + 1) * maxCallDepth path steps. */
59
60
  maxResults?: number;
60
61
  }
61
62
  export interface BehaviorEvidenceTarget {
@@ -127,7 +128,7 @@ export interface BehaviorEvidenceResult {
127
128
  truncated: {
128
129
  /** A path hit `maxCallDepth` and was cut short. */
129
130
  callDepth: boolean;
130
- /** Entries were dropped at `maxResults`. */
131
+ /** Entries were dropped, or the traversal work budget left paths unexplored. */
131
132
  results: boolean;
132
133
  /** A path re-entered a procedure already on it. */
133
134
  cycle: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aroman22/codegraph-vba",
3
- "version": "1.17.0",
3
+ "version": "1.17.1",
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.17.0",
19
- "@aroman22/codegraph-vba-darwin-x64": "1.17.0",
20
- "@aroman22/codegraph-vba-linux-arm64": "1.17.0",
21
- "@aroman22/codegraph-vba-linux-x64": "1.17.0",
22
- "@aroman22/codegraph-vba-win32-arm64": "1.17.0",
23
- "@aroman22/codegraph-vba-win32-x64": "1.17.0"
18
+ "@aroman22/codegraph-vba-darwin-arm64": "1.17.1",
19
+ "@aroman22/codegraph-vba-darwin-x64": "1.17.1",
20
+ "@aroman22/codegraph-vba-linux-arm64": "1.17.1",
21
+ "@aroman22/codegraph-vba-linux-x64": "1.17.1",
22
+ "@aroman22/codegraph-vba-win32-arm64": "1.17.1",
23
+ "@aroman22/codegraph-vba-win32-x64": "1.17.1"
24
24
  },
25
25
  "files": [
26
26
  "npm-shim.js",