@pyxmate/memory 0.34.0 → 0.35.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.
- package/dist/cli/pyx-mem.mjs +1 -1
- package/dist/index.d.ts +8 -0
- package/package.json +1 -1
package/dist/cli/pyx-mem.mjs
CHANGED
|
@@ -1330,7 +1330,7 @@ var ALL_TOOL_NAMES = ALL_TOOLS.map((t) => t.name);
|
|
|
1330
1330
|
// src/mcp/server.ts
|
|
1331
1331
|
async function runMcpServer(opts) {
|
|
1332
1332
|
const fetchImpl = opts.fetchImpl ?? fetch;
|
|
1333
|
-
const version = opts.version ?? (true ? "0.
|
|
1333
|
+
const version = opts.version ?? (true ? "0.35.0" : "0.0.0-dev");
|
|
1334
1334
|
const server = new McpServer(
|
|
1335
1335
|
{ name: "pyx-memory", version },
|
|
1336
1336
|
{ instructions: PYX_MEMORY_INSTRUCTIONS, capabilities: { tools: {} } }
|
package/dist/index.d.ts
CHANGED
|
@@ -584,6 +584,14 @@ interface MemorySearchParams {
|
|
|
584
584
|
* unless `enableMultiHop` is also set.
|
|
585
585
|
*/
|
|
586
586
|
multiHopBridges?: string[];
|
|
587
|
+
/**
|
|
588
|
+
* Set false for a read-only search that does NOT bump access counts /
|
|
589
|
+
* lastAccessed on returned entries. Access feeds ranking (WEIGHT_ACCESS and
|
|
590
|
+
* the no-eventTime recency fallback), so a measurement that searches the
|
|
591
|
+
* store mutates what it measures — repeated benchmark runs over a persisted
|
|
592
|
+
* index drift. Default true (access tracking is the product's usage signal).
|
|
593
|
+
*/
|
|
594
|
+
trackAccess?: boolean;
|
|
587
595
|
/** Maximum sensitivity level to include in results. Entries above this level are excluded or redacted. */
|
|
588
596
|
maxSensitivity?: SensitivityLevel;
|
|
589
597
|
/** Tenant ID for multi-tenant isolation. */
|