@signetai/connector-openclaw 0.176.2 → 0.176.4

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.
Files changed (2) hide show
  1. package/dist/index.js +24 -2
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -10380,6 +10380,12 @@ function up109(db) {
10380
10380
  );
10381
10381
  `);
10382
10382
  }
10383
+ function up110(db) {
10384
+ db.exec(`
10385
+ CREATE INDEX IF NOT EXISTS idx_memory_entity_mentions_entity_memory
10386
+ ON memory_entity_mentions(entity_id, memory_id);
10387
+ `);
10388
+ }
10383
10389
  var MIGRATIONS = [
10384
10390
  {
10385
10391
  version: 1,
@@ -11250,6 +11256,11 @@ var MIGRATIONS = [
11250
11256
  artifacts: {
11251
11257
  tables: ["telemetry_install"]
11252
11258
  }
11259
+ },
11260
+ {
11261
+ version: 110,
11262
+ name: "memory-mention-join-index",
11263
+ up: up110
11253
11264
  }
11254
11265
  ];
11255
11266
  var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
@@ -20513,7 +20524,7 @@ function memoriesFtsNeedsTokenizerRepair2(sql) {
20513
20524
  return true;
20514
20525
  return !normalized.includes(`tokenize='${MEMORIES_FTS_TOKENIZER2}'`);
20515
20526
  }
20516
- function up110(db) {
20527
+ function up111(db) {
20517
20528
  db.exec(`
20518
20529
  CREATE TABLE IF NOT EXISTS schema_migrations (
20519
20530
  version INTEGER PRIMARY KEY,
@@ -23930,11 +23941,17 @@ function up1092(db) {
23930
23941
  );
23931
23942
  `);
23932
23943
  }
23944
+ function up1102(db) {
23945
+ db.exec(`
23946
+ CREATE INDEX IF NOT EXISTS idx_memory_entity_mentions_entity_memory
23947
+ ON memory_entity_mentions(entity_id, memory_id);
23948
+ `);
23949
+ }
23933
23950
  var MIGRATIONS2 = [
23934
23951
  {
23935
23952
  version: 1,
23936
23953
  name: "baseline",
23937
- up: up110,
23954
+ up: up111,
23938
23955
  artifacts: { tables: ["memories", "conversations", "embeddings"] }
23939
23956
  },
23940
23957
  {
@@ -24800,6 +24817,11 @@ var MIGRATIONS2 = [
24800
24817
  artifacts: {
24801
24818
  tables: ["telemetry_install"]
24802
24819
  }
24820
+ },
24821
+ {
24822
+ version: 110,
24823
+ name: "memory-mention-join-index",
24824
+ up: up1102
24803
24825
  }
24804
24826
  ];
24805
24827
  var LATEST_SCHEMA_VERSION2 = MIGRATIONS2[MIGRATIONS2.length - 1]?.version ?? 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signetai/connector-openclaw",
3
- "version": "0.176.2",
3
+ "version": "0.176.4",
4
4
  "description": "Signet connector for OpenClaw - configures workspace and memory hooks",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -25,8 +25,8 @@
25
25
  "test": "bun test"
26
26
  },
27
27
  "dependencies": {
28
- "@signetai/connector-base": "0.176.2",
29
- "@signetai/core": "0.176.2"
28
+ "@signetai/connector-base": "0.176.4",
29
+ "@signetai/core": "0.176.4"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@types/node": "^22.0.0",