@signetai/connector-gemini 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
|
@@ -16155,6 +16155,12 @@ function up143(db) {
|
|
|
16155
16155
|
`);
|
|
16156
16156
|
}
|
|
16157
16157
|
}
|
|
16158
|
+
function up144(db) {
|
|
16159
|
+
const columns = new Set(db.prepare("PRAGMA table_info(memory_jobs)").all().map((row) => row.name).filter((name) => typeof name === "string"));
|
|
16160
|
+
if (!columns.has("lease_token")) {
|
|
16161
|
+
db.exec("ALTER TABLE memory_jobs ADD COLUMN lease_token TEXT");
|
|
16162
|
+
}
|
|
16163
|
+
}
|
|
16158
16164
|
var MIGRATIONS = [
|
|
16159
16165
|
{
|
|
16160
16166
|
version: 1,
|
|
@@ -17292,6 +17298,12 @@ var MIGRATIONS = [
|
|
|
17292
17298
|
{ table: "embedding_index_state", column: "provider_endpoint" }
|
|
17293
17299
|
]
|
|
17294
17300
|
}
|
|
17301
|
+
},
|
|
17302
|
+
{
|
|
17303
|
+
version: 144,
|
|
17304
|
+
name: "memory-job-lease-token",
|
|
17305
|
+
up: up144,
|
|
17306
|
+
artifacts: { columns: [{ table: "memory_jobs", column: "lease_token" }] }
|
|
17295
17307
|
}
|
|
17296
17308
|
];
|
|
17297
17309
|
var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
|
|
@@ -29267,7 +29279,7 @@ function memoriesFtsNeedsTokenizerRepair2(sql) {
|
|
|
29267
29279
|
return true;
|
|
29268
29280
|
return !normalized.includes(`tokenize='${MEMORIES_FTS_TOKENIZER2}'`);
|
|
29269
29281
|
}
|
|
29270
|
-
function
|
|
29282
|
+
function up145(db) {
|
|
29271
29283
|
db.exec(`
|
|
29272
29284
|
CREATE TABLE IF NOT EXISTS schema_migrations (
|
|
29273
29285
|
version INTEGER PRIMARY KEY,
|
|
@@ -29777,7 +29789,7 @@ function up1310(db) {
|
|
|
29777
29789
|
addColumnIfMissing52(db, "memories", "source_path", "TEXT");
|
|
29778
29790
|
addColumnIfMissing52(db, "memories", "source_section", "TEXT");
|
|
29779
29791
|
}
|
|
29780
|
-
function
|
|
29792
|
+
function up146(db) {
|
|
29781
29793
|
db.exec(`
|
|
29782
29794
|
CREATE TABLE IF NOT EXISTS telemetry_events (
|
|
29783
29795
|
id TEXT PRIMARY KEY,
|
|
@@ -34016,11 +34028,17 @@ function up1432(db) {
|
|
|
34016
34028
|
`);
|
|
34017
34029
|
}
|
|
34018
34030
|
}
|
|
34031
|
+
function up1442(db) {
|
|
34032
|
+
const columns = new Set(db.prepare("PRAGMA table_info(memory_jobs)").all().map((row) => row.name).filter((name) => typeof name === "string"));
|
|
34033
|
+
if (!columns.has("lease_token")) {
|
|
34034
|
+
db.exec("ALTER TABLE memory_jobs ADD COLUMN lease_token TEXT");
|
|
34035
|
+
}
|
|
34036
|
+
}
|
|
34019
34037
|
var MIGRATIONS2 = [
|
|
34020
34038
|
{
|
|
34021
34039
|
version: 1,
|
|
34022
34040
|
name: "baseline",
|
|
34023
|
-
up:
|
|
34041
|
+
up: up145,
|
|
34024
34042
|
artifacts: { tables: ["memories", "conversations", "embeddings"] }
|
|
34025
34043
|
},
|
|
34026
34044
|
{
|
|
@@ -34109,7 +34127,7 @@ var MIGRATIONS2 = [
|
|
|
34109
34127
|
{
|
|
34110
34128
|
version: 14,
|
|
34111
34129
|
name: "telemetry",
|
|
34112
|
-
up:
|
|
34130
|
+
up: up146,
|
|
34113
34131
|
artifacts: { tables: ["telemetry_events"] }
|
|
34114
34132
|
},
|
|
34115
34133
|
{
|
|
@@ -35153,6 +35171,12 @@ var MIGRATIONS2 = [
|
|
|
35153
35171
|
{ table: "embedding_index_state", column: "provider_endpoint" }
|
|
35154
35172
|
]
|
|
35155
35173
|
}
|
|
35174
|
+
},
|
|
35175
|
+
{
|
|
35176
|
+
version: 144,
|
|
35177
|
+
name: "memory-job-lease-token",
|
|
35178
|
+
up: up1442,
|
|
35179
|
+
artifacts: { columns: [{ table: "memory_jobs", column: "lease_token" }] }
|
|
35156
35180
|
}
|
|
35157
35181
|
];
|
|
35158
35182
|
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.214.
|
|
3
|
+
"version": "0.214.13",
|
|
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.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",
|