@signetai/connector-gemini 0.201.2 → 0.202.0

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 +28 -4
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -11325,6 +11325,12 @@ function up131(db) {
11325
11325
  ON dreaming_evidence_consumption(agent_id, pass_id, delivered_offset, source_length);
11326
11326
  `);
11327
11327
  }
11328
+ function up132(db) {
11329
+ db.exec(`
11330
+ CREATE INDEX IF NOT EXISTS idx_epistemic_assertions_observer_entity
11331
+ ON epistemic_assertions(agent_id, subject_entity_id, status, asserted_at DESC, created_at DESC);
11332
+ `);
11333
+ }
11328
11334
  var MIGRATIONS = [
11329
11335
  {
11330
11336
  version: 1,
@@ -12373,6 +12379,12 @@ var MIGRATIONS = [
12373
12379
  name: "dreaming-evidence-consumption",
12374
12380
  up: up131,
12375
12381
  artifacts: { tables: ["dreaming_evidence_consumption"] }
12382
+ },
12383
+ {
12384
+ version: 132,
12385
+ name: "observer-scoped-epistemic-assertions",
12386
+ up: up132,
12387
+ artifacts: { tables: ["epistemic_assertions"] }
12376
12388
  }
12377
12389
  ];
12378
12390
  var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
@@ -19876,7 +19888,7 @@ function memoriesFtsNeedsTokenizerRepair2(sql) {
19876
19888
  return true;
19877
19889
  return !normalized.includes(`tokenize='${MEMORIES_FTS_TOKENIZER2}'`);
19878
19890
  }
19879
- function up132(db) {
19891
+ function up133(db) {
19880
19892
  db.exec(`
19881
19893
  CREATE TABLE IF NOT EXISTS schema_migrations (
19882
19894
  version INTEGER PRIMARY KEY,
@@ -20360,7 +20372,7 @@ function addColumnIfMissing52(db, table, column, definition) {
20360
20372
  db.exec(`ALTER TABLE ${table} ADD COLUMN ${column} ${definition}`);
20361
20373
  }
20362
20374
  }
20363
- function up133(db) {
20375
+ function up134(db) {
20364
20376
  db.exec(`
20365
20377
  CREATE TABLE IF NOT EXISTS ingestion_jobs (
20366
20378
  id TEXT PRIMARY KEY,
@@ -24109,11 +24121,17 @@ function up1312(db) {
24109
24121
  ON dreaming_evidence_consumption(agent_id, pass_id, delivered_offset, source_length);
24110
24122
  `);
24111
24123
  }
24124
+ function up1322(db) {
24125
+ db.exec(`
24126
+ CREATE INDEX IF NOT EXISTS idx_epistemic_assertions_observer_entity
24127
+ ON epistemic_assertions(agent_id, subject_entity_id, status, asserted_at DESC, created_at DESC);
24128
+ `);
24129
+ }
24112
24130
  var MIGRATIONS2 = [
24113
24131
  {
24114
24132
  version: 1,
24115
24133
  name: "baseline",
24116
- up: up132,
24134
+ up: up133,
24117
24135
  artifacts: { tables: ["memories", "conversations", "embeddings"] }
24118
24136
  },
24119
24137
  {
@@ -24191,7 +24209,7 @@ var MIGRATIONS2 = [
24191
24209
  {
24192
24210
  version: 13,
24193
24211
  name: "ingestion-tracking",
24194
- up: up133,
24212
+ up: up134,
24195
24213
  artifacts: {
24196
24214
  columns: [
24197
24215
  { table: "memories", column: "source_path" },
@@ -25157,6 +25175,12 @@ var MIGRATIONS2 = [
25157
25175
  name: "dreaming-evidence-consumption",
25158
25176
  up: up1312,
25159
25177
  artifacts: { tables: ["dreaming_evidence_consumption"] }
25178
+ },
25179
+ {
25180
+ version: 132,
25181
+ name: "observer-scoped-epistemic-assertions",
25182
+ up: up1322,
25183
+ artifacts: { tables: ["epistemic_assertions"] }
25160
25184
  }
25161
25185
  ];
25162
25186
  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.201.2",
3
+ "version": "0.202.0",
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.201.2",
28
- "@signetai/core": "0.201.2"
27
+ "@signetai/connector-base": "0.202.0",
28
+ "@signetai/core": "0.202.0"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/node": "^22.0.0",