@signetai/connector-base 0.182.7 → 0.182.8
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 +2 -2
package/dist/index.js
CHANGED
|
@@ -10474,6 +10474,15 @@ function up113(db) {
|
|
|
10474
10474
|
ON session_claims(agent_id, state, expires_at);
|
|
10475
10475
|
`);
|
|
10476
10476
|
}
|
|
10477
|
+
function up114(db) {
|
|
10478
|
+
const table = db.prepare("SELECT name FROM sqlite_master WHERE type = 'table' AND name = 'entity_attributes'").get();
|
|
10479
|
+
if (table == null)
|
|
10480
|
+
return;
|
|
10481
|
+
db.exec(`
|
|
10482
|
+
CREATE INDEX IF NOT EXISTS idx_entity_attributes_memory_agent_status
|
|
10483
|
+
ON entity_attributes(memory_id, agent_id, status, importance);
|
|
10484
|
+
`);
|
|
10485
|
+
}
|
|
10477
10486
|
var MIGRATIONS = [
|
|
10478
10487
|
{
|
|
10479
10488
|
version: 1,
|
|
@@ -11386,6 +11395,11 @@ var MIGRATIONS = [
|
|
|
11386
11395
|
{ table: "session_claims", column: "end_marker" }
|
|
11387
11396
|
]
|
|
11388
11397
|
}
|
|
11398
|
+
},
|
|
11399
|
+
{
|
|
11400
|
+
version: 114,
|
|
11401
|
+
name: "memory-traversal-hydration-index",
|
|
11402
|
+
up: up114
|
|
11389
11403
|
}
|
|
11390
11404
|
];
|
|
11391
11405
|
var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signetai/connector-base",
|
|
3
|
-
"version": "0.182.
|
|
3
|
+
"version": "0.182.8",
|
|
4
4
|
"description": "Base class for Signet harness connectors",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"typecheck": "tsc --noEmit"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@signetai/core": "0.182.
|
|
29
|
+
"@signetai/core": "0.182.8",
|
|
30
30
|
"json5": "^2.2.3",
|
|
31
31
|
"jsonc-parser": "3.3.1"
|
|
32
32
|
},
|