@signetai/connector-codex 0.214.12 → 0.214.13
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
|
@@ -16130,6 +16130,12 @@ function up143(db) {
|
|
|
16130
16130
|
`);
|
|
16131
16131
|
}
|
|
16132
16132
|
}
|
|
16133
|
+
function up144(db) {
|
|
16134
|
+
const columns = new Set(db.prepare("PRAGMA table_info(memory_jobs)").all().map((row) => row.name).filter((name) => typeof name === "string"));
|
|
16135
|
+
if (!columns.has("lease_token")) {
|
|
16136
|
+
db.exec("ALTER TABLE memory_jobs ADD COLUMN lease_token TEXT");
|
|
16137
|
+
}
|
|
16138
|
+
}
|
|
16133
16139
|
var MIGRATIONS = [
|
|
16134
16140
|
{
|
|
16135
16141
|
version: 1,
|
|
@@ -17267,6 +17273,12 @@ var MIGRATIONS = [
|
|
|
17267
17273
|
{ table: "embedding_index_state", column: "provider_endpoint" }
|
|
17268
17274
|
]
|
|
17269
17275
|
}
|
|
17276
|
+
},
|
|
17277
|
+
{
|
|
17278
|
+
version: 144,
|
|
17279
|
+
name: "memory-job-lease-token",
|
|
17280
|
+
up: up144,
|
|
17281
|
+
artifacts: { columns: [{ table: "memory_jobs", column: "lease_token" }] }
|
|
17270
17282
|
}
|
|
17271
17283
|
];
|
|
17272
17284
|
var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
|
|
@@ -29230,7 +29242,7 @@ function memoriesFtsNeedsTokenizerRepair2(sql) {
|
|
|
29230
29242
|
return true;
|
|
29231
29243
|
return !normalized.includes(`tokenize='${MEMORIES_FTS_TOKENIZER2}'`);
|
|
29232
29244
|
}
|
|
29233
|
-
function
|
|
29245
|
+
function up145(db) {
|
|
29234
29246
|
db.exec(`
|
|
29235
29247
|
CREATE TABLE IF NOT EXISTS schema_migrations (
|
|
29236
29248
|
version INTEGER PRIMARY KEY,
|
|
@@ -29740,7 +29752,7 @@ function up1310(db) {
|
|
|
29740
29752
|
addColumnIfMissing52(db, "memories", "source_path", "TEXT");
|
|
29741
29753
|
addColumnIfMissing52(db, "memories", "source_section", "TEXT");
|
|
29742
29754
|
}
|
|
29743
|
-
function
|
|
29755
|
+
function up146(db) {
|
|
29744
29756
|
db.exec(`
|
|
29745
29757
|
CREATE TABLE IF NOT EXISTS telemetry_events (
|
|
29746
29758
|
id TEXT PRIMARY KEY,
|
|
@@ -33979,11 +33991,17 @@ function up1432(db) {
|
|
|
33979
33991
|
`);
|
|
33980
33992
|
}
|
|
33981
33993
|
}
|
|
33994
|
+
function up1442(db) {
|
|
33995
|
+
const columns = new Set(db.prepare("PRAGMA table_info(memory_jobs)").all().map((row) => row.name).filter((name) => typeof name === "string"));
|
|
33996
|
+
if (!columns.has("lease_token")) {
|
|
33997
|
+
db.exec("ALTER TABLE memory_jobs ADD COLUMN lease_token TEXT");
|
|
33998
|
+
}
|
|
33999
|
+
}
|
|
33982
34000
|
var MIGRATIONS2 = [
|
|
33983
34001
|
{
|
|
33984
34002
|
version: 1,
|
|
33985
34003
|
name: "baseline",
|
|
33986
|
-
up:
|
|
34004
|
+
up: up145,
|
|
33987
34005
|
artifacts: { tables: ["memories", "conversations", "embeddings"] }
|
|
33988
34006
|
},
|
|
33989
34007
|
{
|
|
@@ -34072,7 +34090,7 @@ var MIGRATIONS2 = [
|
|
|
34072
34090
|
{
|
|
34073
34091
|
version: 14,
|
|
34074
34092
|
name: "telemetry",
|
|
34075
|
-
up:
|
|
34093
|
+
up: up146,
|
|
34076
34094
|
artifacts: { tables: ["telemetry_events"] }
|
|
34077
34095
|
},
|
|
34078
34096
|
{
|
|
@@ -35116,6 +35134,12 @@ var MIGRATIONS2 = [
|
|
|
35116
35134
|
{ table: "embedding_index_state", column: "provider_endpoint" }
|
|
35117
35135
|
]
|
|
35118
35136
|
}
|
|
35137
|
+
},
|
|
35138
|
+
{
|
|
35139
|
+
version: 144,
|
|
35140
|
+
name: "memory-job-lease-token",
|
|
35141
|
+
up: up1442,
|
|
35142
|
+
artifacts: { columns: [{ table: "memory_jobs", column: "lease_token" }] }
|
|
35119
35143
|
}
|
|
35120
35144
|
];
|
|
35121
35145
|
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.214.
|
|
3
|
+
"version": "0.214.13",
|
|
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.214.
|
|
28
|
-
"@signetai/core": "0.214.
|
|
27
|
+
"@signetai/connector-base": "0.214.13",
|
|
28
|
+
"@signetai/core": "0.214.13"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/node": "^22.0.0",
|