@signetai/connector-codex 0.196.0 → 0.196.2

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 +38 -4
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -11167,6 +11167,18 @@ function up127(db) {
11167
11167
  ON ontology_contradictions(agent_id, left_source_id, right_source_id);
11168
11168
  `);
11169
11169
  }
11170
+ function up128(db) {
11171
+ db.exec(`
11172
+ CREATE INDEX IF NOT EXISTS idx_memory_jobs_diagnostics_status_created_at
11173
+ ON memory_jobs(status, created_at)
11174
+ WHERE job_type <> 'extract';
11175
+ CREATE INDEX IF NOT EXISTS idx_memory_jobs_diagnostics_error_updated_at
11176
+ ON memory_jobs(updated_at DESC)
11177
+ WHERE status IN ('pending', 'leased', 'dead')
11178
+ AND job_type <> 'extract'
11179
+ AND error IS NOT NULL;
11180
+ `);
11181
+ }
11170
11182
  var MIGRATIONS = [
11171
11183
  {
11172
11184
  version: 1,
@@ -12193,6 +12205,11 @@ var MIGRATIONS = [
12193
12205
  name: "ontology-contradictions",
12194
12206
  up: up127,
12195
12207
  artifacts: { tables: ["ontology_contradictions"] }
12208
+ },
12209
+ {
12210
+ version: 128,
12211
+ name: "bounded-queue-diagnostics",
12212
+ up: up128
12196
12213
  }
12197
12214
  ];
12198
12215
  var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
@@ -19669,7 +19686,7 @@ function memoriesFtsNeedsTokenizerRepair2(sql) {
19669
19686
  return true;
19670
19687
  return !normalized.includes(`tokenize='${MEMORIES_FTS_TOKENIZER2}'`);
19671
19688
  }
19672
- function up128(db) {
19689
+ function up129(db) {
19673
19690
  db.exec(`
19674
19691
  CREATE TABLE IF NOT EXISTS schema_migrations (
19675
19692
  version INTEGER PRIMARY KEY,
@@ -20112,7 +20129,7 @@ function up1110(db) {
20112
20129
  ON session_scores(session_key);
20113
20130
  `);
20114
20131
  }
20115
- function up129(db) {
20132
+ function up1210(db) {
20116
20133
  db.exec(`
20117
20134
  CREATE TABLE IF NOT EXISTS scheduled_tasks (
20118
20135
  id TEXT PRIMARY KEY,
@@ -23775,11 +23792,23 @@ function up1272(db) {
23775
23792
  ON ontology_contradictions(agent_id, left_source_id, right_source_id);
23776
23793
  `);
23777
23794
  }
23795
+ function up1282(db) {
23796
+ db.exec(`
23797
+ CREATE INDEX IF NOT EXISTS idx_memory_jobs_diagnostics_status_created_at
23798
+ ON memory_jobs(status, created_at)
23799
+ WHERE job_type <> 'extract';
23800
+ CREATE INDEX IF NOT EXISTS idx_memory_jobs_diagnostics_error_updated_at
23801
+ ON memory_jobs(updated_at DESC)
23802
+ WHERE status IN ('pending', 'leased', 'dead')
23803
+ AND job_type <> 'extract'
23804
+ AND error IS NOT NULL;
23805
+ `);
23806
+ }
23778
23807
  var MIGRATIONS2 = [
23779
23808
  {
23780
23809
  version: 1,
23781
23810
  name: "baseline",
23782
- up: up128,
23811
+ up: up129,
23783
23812
  artifacts: { tables: ["memories", "conversations", "embeddings"] }
23784
23813
  },
23785
23814
  {
@@ -23851,7 +23880,7 @@ var MIGRATIONS2 = [
23851
23880
  {
23852
23881
  version: 12,
23853
23882
  name: "scheduled-tasks",
23854
- up: up129,
23883
+ up: up1210,
23855
23884
  artifacts: { tables: ["scheduled_tasks", "task_runs"] }
23856
23885
  },
23857
23886
  {
@@ -24801,6 +24830,11 @@ var MIGRATIONS2 = [
24801
24830
  name: "ontology-contradictions",
24802
24831
  up: up1272,
24803
24832
  artifacts: { tables: ["ontology_contradictions"] }
24833
+ },
24834
+ {
24835
+ version: 128,
24836
+ name: "bounded-queue-diagnostics",
24837
+ up: up1282
24804
24838
  }
24805
24839
  ];
24806
24840
  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.196.0",
3
+ "version": "0.196.2",
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.196.0",
28
- "@signetai/core": "0.196.0"
27
+ "@signetai/connector-base": "0.196.2",
28
+ "@signetai/core": "0.196.2"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/node": "^22.0.0",