@signetai/connector-codex 0.226.19 → 0.226.20
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.
- package/dist/index.js +28 -4
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -15906,6 +15906,12 @@ function up157(db) {
|
|
|
15906
15906
|
);
|
|
15907
15907
|
`);
|
|
15908
15908
|
}
|
|
15909
|
+
function up158(db) {
|
|
15910
|
+
db.exec(`
|
|
15911
|
+
CREATE INDEX IF NOT EXISTS idx_memories_agent_kind
|
|
15912
|
+
ON memories(agent_id, memory_kind);
|
|
15913
|
+
`);
|
|
15914
|
+
}
|
|
15909
15915
|
var MIGRATIONS = [
|
|
15910
15916
|
{
|
|
15911
15917
|
version: 1,
|
|
@@ -17186,6 +17192,12 @@ var MIGRATIONS = [
|
|
|
17186
17192
|
tables: ["embedding_repair_progress"],
|
|
17187
17193
|
columns: [{ table: "embedding_repair_checkpoints", column: "profile_fingerprint" }]
|
|
17188
17194
|
}
|
|
17195
|
+
},
|
|
17196
|
+
{
|
|
17197
|
+
version: 158,
|
|
17198
|
+
name: "dreaming-candidate-scan-index",
|
|
17199
|
+
up: up158,
|
|
17200
|
+
artifacts: { indexes: ["idx_memories_agent_kind"] }
|
|
17189
17201
|
}
|
|
17190
17202
|
];
|
|
17191
17203
|
var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
|
|
@@ -27976,7 +27988,7 @@ var DAEMON_DERIVED_MEMORY_SOURCE_TYPES2 = [
|
|
|
27976
27988
|
"checkpoint",
|
|
27977
27989
|
"dreaming"
|
|
27978
27990
|
];
|
|
27979
|
-
function
|
|
27991
|
+
function up159(db) {
|
|
27980
27992
|
const hasColumn26 = (table, column) => {
|
|
27981
27993
|
const statement = db.prepare(`SELECT 1 FROM pragma_table_info('${table}') WHERE name = ?`);
|
|
27982
27994
|
try {
|
|
@@ -28626,7 +28638,7 @@ function up1410(db) {
|
|
|
28626
28638
|
)
|
|
28627
28639
|
`);
|
|
28628
28640
|
}
|
|
28629
|
-
function
|
|
28641
|
+
function up1510(db) {
|
|
28630
28642
|
db.exec(`
|
|
28631
28643
|
CREATE TABLE IF NOT EXISTS session_scores (
|
|
28632
28644
|
id TEXT PRIMARY KEY,
|
|
@@ -33284,6 +33296,12 @@ function up1572(db) {
|
|
|
33284
33296
|
);
|
|
33285
33297
|
`);
|
|
33286
33298
|
}
|
|
33299
|
+
function up1582(db) {
|
|
33300
|
+
db.exec(`
|
|
33301
|
+
CREATE INDEX IF NOT EXISTS idx_memories_agent_kind
|
|
33302
|
+
ON memories(agent_id, memory_kind);
|
|
33303
|
+
`);
|
|
33304
|
+
}
|
|
33287
33305
|
var MIGRATIONS2 = [
|
|
33288
33306
|
{
|
|
33289
33307
|
version: 1,
|
|
@@ -33354,7 +33372,7 @@ var MIGRATIONS2 = [
|
|
|
33354
33372
|
{
|
|
33355
33373
|
version: 11,
|
|
33356
33374
|
name: "session-scores",
|
|
33357
|
-
up:
|
|
33375
|
+
up: up1510,
|
|
33358
33376
|
artifacts: { tables: ["session_scores"] }
|
|
33359
33377
|
},
|
|
33360
33378
|
{
|
|
@@ -34491,7 +34509,7 @@ var MIGRATIONS2 = [
|
|
|
34491
34509
|
{
|
|
34492
34510
|
version: 151,
|
|
34493
34511
|
name: "transcript-import-bytes",
|
|
34494
|
-
up:
|
|
34512
|
+
up: up159,
|
|
34495
34513
|
artifacts: {
|
|
34496
34514
|
tables: [
|
|
34497
34515
|
"source_import_chunks",
|
|
@@ -34564,6 +34582,12 @@ var MIGRATIONS2 = [
|
|
|
34564
34582
|
tables: ["embedding_repair_progress"],
|
|
34565
34583
|
columns: [{ table: "embedding_repair_checkpoints", column: "profile_fingerprint" }]
|
|
34566
34584
|
}
|
|
34585
|
+
},
|
|
34586
|
+
{
|
|
34587
|
+
version: 158,
|
|
34588
|
+
name: "dreaming-candidate-scan-index",
|
|
34589
|
+
up: up1582,
|
|
34590
|
+
artifacts: { indexes: ["idx_memories_agent_kind"] }
|
|
34567
34591
|
}
|
|
34568
34592
|
];
|
|
34569
34593
|
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.226.
|
|
3
|
+
"version": "0.226.20",
|
|
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.226.
|
|
28
|
-
"@signetai/core": "0.226.
|
|
27
|
+
"@signetai/connector-base": "0.226.20",
|
|
28
|
+
"@signetai/core": "0.226.20"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/node": "^22.0.0",
|