@signetai/connector-gemini 0.182.7 → 0.182.9

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 +32 -4
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -10455,6 +10455,15 @@ function up113(db) {
10455
10455
  ON session_claims(agent_id, state, expires_at);
10456
10456
  `);
10457
10457
  }
10458
+ function up114(db) {
10459
+ const table = db.prepare("SELECT name FROM sqlite_master WHERE type = 'table' AND name = 'entity_attributes'").get();
10460
+ if (table == null)
10461
+ return;
10462
+ db.exec(`
10463
+ CREATE INDEX IF NOT EXISTS idx_entity_attributes_memory_agent_status
10464
+ ON entity_attributes(memory_id, agent_id, status, importance);
10465
+ `);
10466
+ }
10458
10467
  var MIGRATIONS = [
10459
10468
  {
10460
10469
  version: 1,
@@ -11367,6 +11376,11 @@ var MIGRATIONS = [
11367
11376
  { table: "session_claims", column: "end_marker" }
11368
11377
  ]
11369
11378
  }
11379
+ },
11380
+ {
11381
+ version: 114,
11382
+ name: "memory-traversal-hydration-index",
11383
+ up: up114
11370
11384
  }
11371
11385
  ];
11372
11386
  var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
@@ -18766,7 +18780,7 @@ function memoriesFtsNeedsTokenizerRepair2(sql) {
18766
18780
  return true;
18767
18781
  return !normalized.includes(`tokenize='${MEMORIES_FTS_TOKENIZER2}'`);
18768
18782
  }
18769
- function up114(db) {
18783
+ function up115(db) {
18770
18784
  db.exec(`
18771
18785
  CREATE TABLE IF NOT EXISTS schema_migrations (
18772
18786
  version INTEGER PRIMARY KEY,
@@ -19189,7 +19203,7 @@ function up1010(db) {
19189
19203
  )
19190
19204
  `);
19191
19205
  }
19192
- function up115(db) {
19206
+ function up116(db) {
19193
19207
  db.exec(`
19194
19208
  CREATE TABLE IF NOT EXISTS session_scores (
19195
19209
  id TEXT PRIMARY KEY,
@@ -22240,11 +22254,20 @@ function up1132(db) {
22240
22254
  ON session_claims(agent_id, state, expires_at);
22241
22255
  `);
22242
22256
  }
22257
+ function up1142(db) {
22258
+ const table = db.prepare("SELECT name FROM sqlite_master WHERE type = 'table' AND name = 'entity_attributes'").get();
22259
+ if (table == null)
22260
+ return;
22261
+ db.exec(`
22262
+ CREATE INDEX IF NOT EXISTS idx_entity_attributes_memory_agent_status
22263
+ ON entity_attributes(memory_id, agent_id, status, importance);
22264
+ `);
22265
+ }
22243
22266
  var MIGRATIONS2 = [
22244
22267
  {
22245
22268
  version: 1,
22246
22269
  name: "baseline",
22247
- up: up114,
22270
+ up: up115,
22248
22271
  artifacts: { tables: ["memories", "conversations", "embeddings"] }
22249
22272
  },
22250
22273
  {
@@ -22310,7 +22333,7 @@ var MIGRATIONS2 = [
22310
22333
  {
22311
22334
  version: 11,
22312
22335
  name: "session-scores",
22313
- up: up115,
22336
+ up: up116,
22314
22337
  artifacts: { tables: ["session_scores"] }
22315
22338
  },
22316
22339
  {
@@ -23152,6 +23175,11 @@ var MIGRATIONS2 = [
23152
23175
  { table: "session_claims", column: "end_marker" }
23153
23176
  ]
23154
23177
  }
23178
+ },
23179
+ {
23180
+ version: 114,
23181
+ name: "memory-traversal-hydration-index",
23182
+ up: up1142
23155
23183
  }
23156
23184
  ];
23157
23185
  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-gemini",
3
- "version": "0.182.7",
3
+ "version": "0.182.9",
4
4
  "description": "Signet connector for Gemini 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.182.7",
28
- "@signetai/core": "0.182.7"
27
+ "@signetai/connector-base": "0.182.9",
28
+ "@signetai/core": "0.182.9"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/node": "^22.0.0",