@signetai/connector-forge 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
@@ -10396,6 +10396,12 @@ function up109(db) {
10396
10396
  );
10397
10397
  `);
10398
10398
  }
10399
+ function up110(db) {
10400
+ db.exec(`
10401
+ CREATE INDEX IF NOT EXISTS idx_memory_entity_mentions_entity_memory
10402
+ ON memory_entity_mentions(entity_id, memory_id);
10403
+ `);
10404
+ }
10399
10405
  var MIGRATIONS = [
10400
10406
  {
10401
10407
  version: 1,
@@ -11266,6 +11272,11 @@ var MIGRATIONS = [
11266
11272
  artifacts: {
11267
11273
  tables: ["telemetry_install"]
11268
11274
  }
11275
+ },
11276
+ {
11277
+ version: 110,
11278
+ name: "memory-mention-join-index",
11279
+ up: up110
11269
11280
  }
11270
11281
  ];
11271
11282
  var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
@@ -18784,7 +18795,7 @@ function memoriesFtsNeedsTokenizerRepair2(sql) {
18784
18795
  return true;
18785
18796
  return !normalized.includes(`tokenize='${MEMORIES_FTS_TOKENIZER2}'`);
18786
18797
  }
18787
- function up110(db) {
18798
+ function up111(db) {
18788
18799
  db.exec(`
18789
18800
  CREATE TABLE IF NOT EXISTS schema_migrations (
18790
18801
  version INTEGER PRIMARY KEY,
@@ -22201,11 +22212,17 @@ function up1092(db) {
22201
22212
  );
22202
22213
  `);
22203
22214
  }
22215
+ function up1102(db) {
22216
+ db.exec(`
22217
+ CREATE INDEX IF NOT EXISTS idx_memory_entity_mentions_entity_memory
22218
+ ON memory_entity_mentions(entity_id, memory_id);
22219
+ `);
22220
+ }
22204
22221
  var MIGRATIONS2 = [
22205
22222
  {
22206
22223
  version: 1,
22207
22224
  name: "baseline",
22208
- up: up110,
22225
+ up: up111,
22209
22226
  artifacts: { tables: ["memories", "conversations", "embeddings"] }
22210
22227
  },
22211
22228
  {
@@ -23071,6 +23088,11 @@ var MIGRATIONS2 = [
23071
23088
  artifacts: {
23072
23089
  tables: ["telemetry_install"]
23073
23090
  }
23091
+ },
23092
+ {
23093
+ version: 110,
23094
+ name: "memory-mention-join-index",
23095
+ up: up1102
23074
23096
  }
23075
23097
  ];
23076
23098
  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-forge",
3
- "version": "0.176.2",
3
+ "version": "0.176.3",
4
4
  "description": "Signet connector for ForgeCode - installs MCP, identity, and skills integration",
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",