@signetai/connector-base 0.226.19 → 0.226.20

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/agent-dir.js CHANGED
@@ -15947,6 +15947,12 @@ function up157(db) {
15947
15947
  );
15948
15948
  `);
15949
15949
  }
15950
+ function up158(db) {
15951
+ db.exec(`
15952
+ CREATE INDEX IF NOT EXISTS idx_memories_agent_kind
15953
+ ON memories(agent_id, memory_kind);
15954
+ `);
15955
+ }
15950
15956
  var MIGRATIONS = [
15951
15957
  {
15952
15958
  version: 1,
@@ -17227,6 +17233,12 @@ var MIGRATIONS = [
17227
17233
  tables: ["embedding_repair_progress"],
17228
17234
  columns: [{ table: "embedding_repair_checkpoints", column: "profile_fingerprint" }]
17229
17235
  }
17236
+ },
17237
+ {
17238
+ version: 158,
17239
+ name: "dreaming-candidate-scan-index",
17240
+ up: up158,
17241
+ artifacts: { indexes: ["idx_memories_agent_kind"] }
17230
17242
  }
17231
17243
  ];
17232
17244
  var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
package/dist/index.js CHANGED
@@ -15948,6 +15948,12 @@ function up157(db) {
15948
15948
  );
15949
15949
  `);
15950
15950
  }
15951
+ function up158(db) {
15952
+ db.exec(`
15953
+ CREATE INDEX IF NOT EXISTS idx_memories_agent_kind
15954
+ ON memories(agent_id, memory_kind);
15955
+ `);
15956
+ }
15951
15957
  var MIGRATIONS = [
15952
15958
  {
15953
15959
  version: 1,
@@ -17228,6 +17234,12 @@ var MIGRATIONS = [
17228
17234
  tables: ["embedding_repair_progress"],
17229
17235
  columns: [{ table: "embedding_repair_checkpoints", column: "profile_fingerprint" }]
17230
17236
  }
17237
+ },
17238
+ {
17239
+ version: 158,
17240
+ name: "dreaming-candidate-scan-index",
17241
+ up: up158,
17242
+ artifacts: { indexes: ["idx_memories_agent_kind"] }
17231
17243
  }
17232
17244
  ];
17233
17245
  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.226.19",
3
+ "version": "0.226.20",
4
4
  "description": "Base class for Signet harness connectors",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -30,7 +30,7 @@
30
30
  "typecheck": "tsc --noEmit"
31
31
  },
32
32
  "dependencies": {
33
- "@signetai/core": "0.226.19",
33
+ "@signetai/core": "0.226.20",
34
34
  "json5": "^2.2.3",
35
35
  "jsonc-parser": "3.3.1"
36
36
  },