@pyxmate/memory 1.17.5 → 1.17.6
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 +4 -2
- package/package.json +1 -1
package/dist/cli/pyx-mem.mjs
CHANGED
|
@@ -835,7 +835,7 @@ function createProxyServer(client, version, uploadLocalFile) {
|
|
|
835
835
|
return server;
|
|
836
836
|
}
|
|
837
837
|
async function runMcpProxyServer(opts) {
|
|
838
|
-
const version = opts.version ?? (true ? "1.17.
|
|
838
|
+
const version = opts.version ?? (true ? "1.17.6" : "0.0.0-dev");
|
|
839
839
|
const read = await opts.readCredentials();
|
|
840
840
|
if (!read.ok) {
|
|
841
841
|
const text = read.result.content.map((c) => c.type === "text" ? c.text : "").join(" ").trim();
|
package/dist/index.d.ts
CHANGED
|
@@ -707,8 +707,10 @@ interface MemoryEntry {
|
|
|
707
707
|
*/
|
|
708
708
|
pinned?: boolean;
|
|
709
709
|
/**
|
|
710
|
-
* Lifecycle status (H8). `'active'`
|
|
711
|
-
*
|
|
710
|
+
* Lifecycle status (H8). Optional on write (absent means `'active'`), but
|
|
711
|
+
* every entry READ back from the store carries it explicitly — a caller can
|
|
712
|
+
* compare `entry.status === 'active'` without special-casing an absent field.
|
|
713
|
+
* `'active'` is a normal retrievable entry. `'superseded'` means a newer near-duplicate
|
|
712
714
|
* UPDATE replaced this one during consolidation. `'archived'` (1b) means decay
|
|
713
715
|
* retired it (no successor) — kept, strength 0, `deep`-tier only. All three
|
|
714
716
|
* are kept (history / lineage / deep recall) but `superseded`/`archived` are
|