@signetai/connector-codex 0.201.2 → 0.202.1

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
@@ -11300,6 +11300,12 @@ function up131(db) {
11300
11300
  ON dreaming_evidence_consumption(agent_id, pass_id, delivered_offset, source_length);
11301
11301
  `);
11302
11302
  }
11303
+ function up132(db) {
11304
+ db.exec(`
11305
+ CREATE INDEX IF NOT EXISTS idx_epistemic_assertions_observer_entity
11306
+ ON epistemic_assertions(agent_id, subject_entity_id, status, asserted_at DESC, created_at DESC);
11307
+ `);
11308
+ }
11303
11309
  var MIGRATIONS = [
11304
11310
  {
11305
11311
  version: 1,
@@ -12348,6 +12354,12 @@ var MIGRATIONS = [
12348
12354
  name: "dreaming-evidence-consumption",
12349
12355
  up: up131,
12350
12356
  artifacts: { tables: ["dreaming_evidence_consumption"] }
12357
+ },
12358
+ {
12359
+ version: 132,
12360
+ name: "observer-scoped-epistemic-assertions",
12361
+ up: up132,
12362
+ artifacts: { tables: ["epistemic_assertions"] }
12351
12363
  }
12352
12364
  ];
12353
12365
  var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
@@ -19839,7 +19851,7 @@ function memoriesFtsNeedsTokenizerRepair2(sql) {
19839
19851
  return true;
19840
19852
  return !normalized.includes(`tokenize='${MEMORIES_FTS_TOKENIZER2}'`);
19841
19853
  }
19842
- function up132(db) {
19854
+ function up133(db) {
19843
19855
  db.exec(`
19844
19856
  CREATE TABLE IF NOT EXISTS schema_migrations (
19845
19857
  version INTEGER PRIMARY KEY,
@@ -20323,7 +20335,7 @@ function addColumnIfMissing52(db, table, column, definition) {
20323
20335
  db.exec(`ALTER TABLE ${table} ADD COLUMN ${column} ${definition}`);
20324
20336
  }
20325
20337
  }
20326
- function up133(db) {
20338
+ function up134(db) {
20327
20339
  db.exec(`
20328
20340
  CREATE TABLE IF NOT EXISTS ingestion_jobs (
20329
20341
  id TEXT PRIMARY KEY,
@@ -24072,11 +24084,17 @@ function up1312(db) {
24072
24084
  ON dreaming_evidence_consumption(agent_id, pass_id, delivered_offset, source_length);
24073
24085
  `);
24074
24086
  }
24087
+ function up1322(db) {
24088
+ db.exec(`
24089
+ CREATE INDEX IF NOT EXISTS idx_epistemic_assertions_observer_entity
24090
+ ON epistemic_assertions(agent_id, subject_entity_id, status, asserted_at DESC, created_at DESC);
24091
+ `);
24092
+ }
24075
24093
  var MIGRATIONS2 = [
24076
24094
  {
24077
24095
  version: 1,
24078
24096
  name: "baseline",
24079
- up: up132,
24097
+ up: up133,
24080
24098
  artifacts: { tables: ["memories", "conversations", "embeddings"] }
24081
24099
  },
24082
24100
  {
@@ -24154,7 +24172,7 @@ var MIGRATIONS2 = [
24154
24172
  {
24155
24173
  version: 13,
24156
24174
  name: "ingestion-tracking",
24157
- up: up133,
24175
+ up: up134,
24158
24176
  artifacts: {
24159
24177
  columns: [
24160
24178
  { table: "memories", column: "source_path" },
@@ -25120,6 +25138,12 @@ var MIGRATIONS2 = [
25120
25138
  name: "dreaming-evidence-consumption",
25121
25139
  up: up1312,
25122
25140
  artifacts: { tables: ["dreaming_evidence_consumption"] }
25141
+ },
25142
+ {
25143
+ version: 132,
25144
+ name: "observer-scoped-epistemic-assertions",
25145
+ up: up1322,
25146
+ artifacts: { tables: ["epistemic_assertions"] }
25123
25147
  }
25124
25148
  ];
25125
25149
  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.201.2",
3
+ "version": "0.202.1",
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.201.2",
28
- "@signetai/core": "0.201.2"
27
+ "@signetai/connector-base": "0.202.1",
28
+ "@signetai/core": "0.202.1"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/node": "^22.0.0",