@signetai/core 0.226.18 → 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/index.js CHANGED
@@ -16804,6 +16804,14 @@ function up157(db) {
16804
16804
  `);
16805
16805
  }
16806
16806
 
16807
+ // src/migrations/158-dreaming-candidate-scan-index.ts
16808
+ function up158(db) {
16809
+ db.exec(`
16810
+ CREATE INDEX IF NOT EXISTS idx_memories_agent_kind
16811
+ ON memories(agent_id, memory_kind);
16812
+ `);
16813
+ }
16814
+
16807
16815
  // src/migrations/index.ts
16808
16816
  var MIGRATIONS = [
16809
16817
  {
@@ -18085,6 +18093,12 @@ var MIGRATIONS = [
18085
18093
  tables: ["embedding_repair_progress"],
18086
18094
  columns: [{ table: "embedding_repair_checkpoints", column: "profile_fingerprint" }]
18087
18095
  }
18096
+ },
18097
+ {
18098
+ version: 158,
18099
+ name: "dreaming-candidate-scan-index",
18100
+ up: up158,
18101
+ artifacts: { indexes: ["idx_memories_agent_kind"] }
18088
18102
  }
18089
18103
  ];
18090
18104
  function checksum(m) {
@@ -0,0 +1,3 @@
1
+ import type { MigrationDb } from "./contract";
2
+ export declare function up(db: MigrationDb): void;
3
+ //# sourceMappingURL=158-dreaming-candidate-scan-index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"158-dreaming-candidate-scan-index.d.ts","sourceRoot":"","sources":["../../src/migrations/158-dreaming-candidate-scan-index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AAE9C,wBAAgB,EAAE,CAAC,EAAE,EAAE,WAAW,GAAG,IAAI,CAKxC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/migrations/index.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,SAAS,EAAsB,WAAW,EAAE,MAAM,YAAY,CAAC;AA4J7E,YAAY,EAAE,SAAS,EAAE,kBAAkB,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AAC7E,eAAO,MAAM,UAAU,EAAE,SAAS,SAAS,EAiwC1C,CAAC;AA2IF,wBAAgB,oBAAoB,CAAC,EAAE,EAAE,WAAW,GAAG,OAAO,CAa7D;AACD,eAAO,MAAM,qBAAqB,QAAkD,CAAC;AAarF,wBAAgB,aAAa,CAAC,EAAE,EAAE,WAAW,GAAG,IAAI,CAuCnD"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/migrations/index.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,SAAS,EAAsB,WAAW,EAAE,MAAM,YAAY,CAAC;AA6J7E,YAAY,EAAE,SAAS,EAAE,kBAAkB,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AAC7E,eAAO,MAAM,UAAU,EAAE,SAAS,SAAS,EAuwC1C,CAAC;AA2IF,wBAAgB,oBAAoB,CAAC,EAAE,EAAE,WAAW,GAAG,OAAO,CAa7D;AACD,eAAO,MAAM,qBAAqB,QAAkD,CAAC;AAarF,wBAAgB,aAAa,CAAC,EAAE,EAAE,WAAW,GAAG,IAAI,CAuCnD"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signetai/core",
3
- "version": "0.226.18",
3
+ "version": "0.226.20",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Core library for Signet - portable AI agent identity",
6
6
  "type": "module",