@signetai/connector-gemini 0.205.2 → 0.205.10
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 +8 -2
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -11321,12 +11321,15 @@ function createMemoriesFts(db) {
|
|
|
11321
11321
|
END;
|
|
11322
11322
|
`);
|
|
11323
11323
|
}
|
|
11324
|
-
function
|
|
11324
|
+
function recreateMemoriesFtsSchema(db) {
|
|
11325
11325
|
db.exec("DROP TRIGGER IF EXISTS memories_ai");
|
|
11326
11326
|
db.exec("DROP TRIGGER IF EXISTS memories_ad");
|
|
11327
11327
|
db.exec("DROP TRIGGER IF EXISTS memories_au");
|
|
11328
11328
|
db.exec("DROP TABLE IF EXISTS memories_fts");
|
|
11329
11329
|
createMemoriesFts(db);
|
|
11330
|
+
}
|
|
11331
|
+
function recreateMemoriesFts(db) {
|
|
11332
|
+
recreateMemoriesFtsSchema(db);
|
|
11330
11333
|
db.exec("INSERT INTO memories_fts(rowid, content) SELECT rowid, content FROM memories");
|
|
11331
11334
|
}
|
|
11332
11335
|
function readMemoriesFtsSql(db) {
|
|
@@ -28492,12 +28495,15 @@ function createMemoriesFts2(db) {
|
|
|
28492
28495
|
END;
|
|
28493
28496
|
`);
|
|
28494
28497
|
}
|
|
28495
|
-
function
|
|
28498
|
+
function recreateMemoriesFtsSchema2(db) {
|
|
28496
28499
|
db.exec("DROP TRIGGER IF EXISTS memories_ai");
|
|
28497
28500
|
db.exec("DROP TRIGGER IF EXISTS memories_ad");
|
|
28498
28501
|
db.exec("DROP TRIGGER IF EXISTS memories_au");
|
|
28499
28502
|
db.exec("DROP TABLE IF EXISTS memories_fts");
|
|
28500
28503
|
createMemoriesFts2(db);
|
|
28504
|
+
}
|
|
28505
|
+
function recreateMemoriesFts2(db) {
|
|
28506
|
+
recreateMemoriesFtsSchema2(db);
|
|
28501
28507
|
db.exec("INSERT INTO memories_fts(rowid, content) SELECT rowid, content FROM memories");
|
|
28502
28508
|
}
|
|
28503
28509
|
function readMemoriesFtsSql2(db) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signetai/connector-gemini",
|
|
3
|
-
"version": "0.205.
|
|
3
|
+
"version": "0.205.10",
|
|
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.205.
|
|
28
|
-
"@signetai/core": "0.205.
|
|
27
|
+
"@signetai/connector-base": "0.205.10",
|
|
28
|
+
"@signetai/core": "0.205.10"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/node": "^22.0.0",
|