@pyxmate/memory 0.26.3 → 0.26.4
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/pyx-mem.mjs +2 -2
- package/dist/index.d.ts +5 -5
- package/package.json +1 -1
package/dist/cli/pyx-mem.mjs
CHANGED
|
@@ -338,7 +338,7 @@ async function readSingleLineFromStdin() {
|
|
|
338
338
|
|
|
339
339
|
// src/cli/commands/login.ts
|
|
340
340
|
var DEFAULT_ENDPOINT = "https://memory.api.pyxmate.com";
|
|
341
|
-
var PROBE_PATH = "/api/memory/stats
|
|
341
|
+
var PROBE_PATH = "/api/memory/stats";
|
|
342
342
|
var PROBE_TIMEOUT_MS = 8e3;
|
|
343
343
|
async function loginCommand(opts = {}) {
|
|
344
344
|
const provider = opts.keychain ?? getDefaultKeychain();
|
|
@@ -15678,7 +15678,7 @@ var ALL_TOOL_NAMES = ALL_TOOLS.map((t) => t.name);
|
|
|
15678
15678
|
// src/mcp/server.ts
|
|
15679
15679
|
async function runMcpServer(opts) {
|
|
15680
15680
|
const fetchImpl = opts.fetchImpl ?? fetch;
|
|
15681
|
-
const version2 = opts.version ?? (true ? "0.26.
|
|
15681
|
+
const version2 = opts.version ?? (true ? "0.26.4" : "0.0.0-dev");
|
|
15682
15682
|
const server = new McpServer(
|
|
15683
15683
|
{ name: "pyx-memory", version: version2 },
|
|
15684
15684
|
{ instructions: PYX_MEMORY_INSTRUCTIONS, capabilities: { tools: {} } }
|
package/dist/index.d.ts
CHANGED
|
@@ -57,7 +57,7 @@ interface MemoryLogFilters {
|
|
|
57
57
|
interface TenantScopeOptions {
|
|
58
58
|
tenantId?: string;
|
|
59
59
|
/**
|
|
60
|
-
* Graph count mode for stats(). Use raw on
|
|
60
|
+
* Graph count mode for stats(). Use raw on admin-health paths
|
|
61
61
|
* that should avoid the visible graph projection.
|
|
62
62
|
*/
|
|
63
63
|
graphVisibility?: 'visible' | 'raw';
|
|
@@ -326,8 +326,8 @@ declare class MemoryClient implements ExtendedMemoryInterface {
|
|
|
326
326
|
stats: {
|
|
327
327
|
nodeCount: number;
|
|
328
328
|
edgeCount: number;
|
|
329
|
-
rawNodeCount
|
|
330
|
-
rawEdgeCount
|
|
329
|
+
rawNodeCount?: number;
|
|
330
|
+
rawEdgeCount?: number;
|
|
331
331
|
};
|
|
332
332
|
}>;
|
|
333
333
|
graphQuery(query: {
|
|
@@ -678,9 +678,9 @@ interface MemoryStats {
|
|
|
678
678
|
recentAccessCount: number;
|
|
679
679
|
graphNodeCount?: number;
|
|
680
680
|
graphEdgeCount?: number;
|
|
681
|
-
/** Raw graph node count before tenant/ReBAC visibility filtering. */
|
|
681
|
+
/** Raw graph node count before tenant/ReBAC visibility filtering (raw stats mode only). */
|
|
682
682
|
graphRawNodeCount?: number;
|
|
683
|
-
/** Raw graph edge count before tenant/ReBAC visibility filtering. */
|
|
683
|
+
/** Raw graph edge count before tenant/ReBAC visibility filtering (raw stats mode only). */
|
|
684
684
|
graphRawEdgeCount?: number;
|
|
685
685
|
/** Name of the active graph store ('neo4j', 'sqlite', or undefined if none). */
|
|
686
686
|
graphStore?: string;
|