@signetai/signet-memory-openclaw 0.182.7 → 0.182.9
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/index.js +14 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10697,6 +10697,15 @@ function up113(db) {
|
|
|
10697
10697
|
ON session_claims(agent_id, state, expires_at);
|
|
10698
10698
|
`);
|
|
10699
10699
|
}
|
|
10700
|
+
function up114(db) {
|
|
10701
|
+
const table = db.prepare("SELECT name FROM sqlite_master WHERE type = 'table' AND name = 'entity_attributes'").get();
|
|
10702
|
+
if (table == null)
|
|
10703
|
+
return;
|
|
10704
|
+
db.exec(`
|
|
10705
|
+
CREATE INDEX IF NOT EXISTS idx_entity_attributes_memory_agent_status
|
|
10706
|
+
ON entity_attributes(memory_id, agent_id, status, importance);
|
|
10707
|
+
`);
|
|
10708
|
+
}
|
|
10700
10709
|
var MIGRATIONS = [
|
|
10701
10710
|
{
|
|
10702
10711
|
version: 1,
|
|
@@ -11609,6 +11618,11 @@ var MIGRATIONS = [
|
|
|
11609
11618
|
{ table: "session_claims", column: "end_marker" }
|
|
11610
11619
|
]
|
|
11611
11620
|
}
|
|
11621
|
+
},
|
|
11622
|
+
{
|
|
11623
|
+
version: 114,
|
|
11624
|
+
name: "memory-traversal-hydration-index",
|
|
11625
|
+
up: up114
|
|
11612
11626
|
}
|
|
11613
11627
|
];
|
|
11614
11628
|
var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
|