notex-companion 0.2.0 → 0.2.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.
package/dist/cli.js CHANGED
@@ -324,7 +324,7 @@ function traverse(adjacency, allEdges, seedIds, depth, maxNodes) {
324
324
  }
325
325
 
326
326
  // src/ops.ts
327
- var API_VERSION = "0.2.0";
327
+ var API_VERSION = "0.2.1";
328
328
  var CAPABILITIES = ["search", "query", "path", "node", "browse"];
329
329
  var MAX_NODES_CEILING = 1000;
330
330
  var MAX_DEPTH_CEILING = 3;
package/dist/client.js CHANGED
@@ -193,7 +193,7 @@ function traverse(adjacency, allEdges, seedIds, depth, maxNodes) {
193
193
  }
194
194
 
195
195
  // src/ops.ts
196
- var API_VERSION = "0.2.0";
196
+ var API_VERSION = "0.2.1";
197
197
  var CAPABILITIES = ["search", "query", "path", "node", "browse"];
198
198
  var MAX_NODES_CEILING = 1000;
199
199
  var MAX_DEPTH_CEILING = 3;
@@ -366,6 +366,7 @@ export {
366
366
  node,
367
367
  browse,
368
368
  OpError,
369
+ MAX_BROWSE_GROUP_LIMIT,
369
370
  ERROR_CODES,
370
371
  API_VERSION
371
372
  };
package/dist/index.js CHANGED
@@ -193,7 +193,7 @@ function traverse(adjacency, allEdges, seedIds, depth, maxNodes) {
193
193
  }
194
194
 
195
195
  // src/ops.ts
196
- var API_VERSION = "0.2.0";
196
+ var API_VERSION = "0.2.1";
197
197
  var CAPABILITIES = ["search", "query", "path", "node", "browse"];
198
198
  var MAX_NODES_CEILING = 1000;
199
199
  var MAX_DEPTH_CEILING = 3;
@@ -792,6 +792,7 @@ export {
792
792
  createHandler,
793
793
  browse,
794
794
  OpError,
795
+ MAX_BROWSE_GROUP_LIMIT,
795
796
  ERROR_CODES,
796
797
  API_VERSION
797
798
  };
package/dist/ops.d.ts CHANGED
@@ -1,7 +1,10 @@
1
1
  import type { GraphEdge, GraphNode, OpResponse } from "./types.js";
2
2
  import type { GraphIndex } from "./graph.js";
3
3
  /** Also the version /v1/ping reports (companion-api.md §4.1) — the two must never drift apart. */
4
- export declare const API_VERSION = "0.2.0";
4
+ export declare const API_VERSION = "0.2.1";
5
+ /** Exported so clients can request the ceiling explicitly (e.g. a "Load more" action) instead
6
+ * of guessing a number the server would clamp anyway. */
7
+ export declare const MAX_BROWSE_GROUP_LIMIT = 50;
5
8
  export type StatusResult = {
6
9
  apiVersion: string;
7
10
  capabilities: Array<string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "notex-companion",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Local retrieval companion for Notex — reads a checkout's graphify-out/graph.json and serves deterministic search/query/path/node lookups over loopback HTTP and (stub) MCP stdio. No LLM, no graph building, no network beyond 127.0.0.1.",
5
5
  "keywords": ["notex", "graphify", "mcp", "code-graph"],
6
6
  "license": "MIT",