@signetai/connector-claude-code 0.176.2 → 0.176.3

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
@@ -10381,6 +10381,12 @@ function up109(db) {
10381
10381
  );
10382
10382
  `);
10383
10383
  }
10384
+ function up110(db) {
10385
+ db.exec(`
10386
+ CREATE INDEX IF NOT EXISTS idx_memory_entity_mentions_entity_memory
10387
+ ON memory_entity_mentions(entity_id, memory_id);
10388
+ `);
10389
+ }
10384
10390
  var MIGRATIONS = [
10385
10391
  {
10386
10392
  version: 1,
@@ -11251,6 +11257,11 @@ var MIGRATIONS = [
11251
11257
  artifacts: {
11252
11258
  tables: ["telemetry_install"]
11253
11259
  }
11260
+ },
11261
+ {
11262
+ version: 110,
11263
+ name: "memory-mention-join-index",
11264
+ up: up110
11254
11265
  }
11255
11266
  ];
11256
11267
  var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
@@ -18540,7 +18551,7 @@ function memoriesFtsNeedsTokenizerRepair2(sql) {
18540
18551
  return true;
18541
18552
  return !normalized.includes(`tokenize='${MEMORIES_FTS_TOKENIZER2}'`);
18542
18553
  }
18543
- function up110(db) {
18554
+ function up111(db) {
18544
18555
  db.exec(`
18545
18556
  CREATE TABLE IF NOT EXISTS schema_migrations (
18546
18557
  version INTEGER PRIMARY KEY,
@@ -21957,11 +21968,17 @@ function up1092(db) {
21957
21968
  );
21958
21969
  `);
21959
21970
  }
21971
+ function up1102(db) {
21972
+ db.exec(`
21973
+ CREATE INDEX IF NOT EXISTS idx_memory_entity_mentions_entity_memory
21974
+ ON memory_entity_mentions(entity_id, memory_id);
21975
+ `);
21976
+ }
21960
21977
  var MIGRATIONS2 = [
21961
21978
  {
21962
21979
  version: 1,
21963
21980
  name: "baseline",
21964
- up: up110,
21981
+ up: up111,
21965
21982
  artifacts: { tables: ["memories", "conversations", "embeddings"] }
21966
21983
  },
21967
21984
  {
@@ -22827,6 +22844,11 @@ var MIGRATIONS2 = [
22827
22844
  artifacts: {
22828
22845
  tables: ["telemetry_install"]
22829
22846
  }
22847
+ },
22848
+ {
22849
+ version: 110,
22850
+ name: "memory-mention-join-index",
22851
+ up: up1102
22830
22852
  }
22831
22853
  ];
22832
22854
  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-claude-code",
3
- "version": "0.176.2",
3
+ "version": "0.176.3",
4
4
  "description": "Signet connector for Claude Code (Anthropic CLI)",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -24,8 +24,8 @@
24
24
  "typecheck": "tsc --noEmit"
25
25
  },
26
26
  "dependencies": {
27
- "@signetai/connector-base": "0.176.2",
28
- "@signetai/core": "0.176.2"
27
+ "@signetai/connector-base": "0.176.3",
28
+ "@signetai/core": "0.176.3"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/node": "^22.0.0",