@signetai/connector-codex 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
@@ -10382,6 +10382,12 @@ function up109(db) {
10382
10382
  );
10383
10383
  `);
10384
10384
  }
10385
+ function up110(db) {
10386
+ db.exec(`
10387
+ CREATE INDEX IF NOT EXISTS idx_memory_entity_mentions_entity_memory
10388
+ ON memory_entity_mentions(entity_id, memory_id);
10389
+ `);
10390
+ }
10385
10391
  var MIGRATIONS = [
10386
10392
  {
10387
10393
  version: 1,
@@ -11252,6 +11258,11 @@ var MIGRATIONS = [
11252
11258
  artifacts: {
11253
11259
  tables: ["telemetry_install"]
11254
11260
  }
11261
+ },
11262
+ {
11263
+ version: 110,
11264
+ name: "memory-mention-join-index",
11265
+ up: up110
11255
11266
  }
11256
11267
  ];
11257
11268
  var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
@@ -18631,7 +18642,7 @@ function memoriesFtsNeedsTokenizerRepair2(sql) {
18631
18642
  return true;
18632
18643
  return !normalized.includes(`tokenize='${MEMORIES_FTS_TOKENIZER2}'`);
18633
18644
  }
18634
- function up110(db) {
18645
+ function up111(db) {
18635
18646
  db.exec(`
18636
18647
  CREATE TABLE IF NOT EXISTS schema_migrations (
18637
18648
  version INTEGER PRIMARY KEY,
@@ -22048,11 +22059,17 @@ function up1092(db) {
22048
22059
  );
22049
22060
  `);
22050
22061
  }
22062
+ function up1102(db) {
22063
+ db.exec(`
22064
+ CREATE INDEX IF NOT EXISTS idx_memory_entity_mentions_entity_memory
22065
+ ON memory_entity_mentions(entity_id, memory_id);
22066
+ `);
22067
+ }
22051
22068
  var MIGRATIONS2 = [
22052
22069
  {
22053
22070
  version: 1,
22054
22071
  name: "baseline",
22055
- up: up110,
22072
+ up: up111,
22056
22073
  artifacts: { tables: ["memories", "conversations", "embeddings"] }
22057
22074
  },
22058
22075
  {
@@ -22918,6 +22935,11 @@ var MIGRATIONS2 = [
22918
22935
  artifacts: {
22919
22936
  tables: ["telemetry_install"]
22920
22937
  }
22938
+ },
22939
+ {
22940
+ version: 110,
22941
+ name: "memory-mention-join-index",
22942
+ up: up1102
22921
22943
  }
22922
22944
  ];
22923
22945
  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-codex",
3
- "version": "0.176.2",
3
+ "version": "0.176.3",
4
4
  "description": "Signet connector for Codex 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",