@signetai/connector-kimi 0.205.3 → 0.206.0
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
|
@@ -11294,12 +11294,15 @@ function createMemoriesFts(db) {
|
|
|
11294
11294
|
END;
|
|
11295
11295
|
`);
|
|
11296
11296
|
}
|
|
11297
|
-
function
|
|
11297
|
+
function recreateMemoriesFtsSchema(db) {
|
|
11298
11298
|
db.exec("DROP TRIGGER IF EXISTS memories_ai");
|
|
11299
11299
|
db.exec("DROP TRIGGER IF EXISTS memories_ad");
|
|
11300
11300
|
db.exec("DROP TRIGGER IF EXISTS memories_au");
|
|
11301
11301
|
db.exec("DROP TABLE IF EXISTS memories_fts");
|
|
11302
11302
|
createMemoriesFts(db);
|
|
11303
|
+
}
|
|
11304
|
+
function recreateMemoriesFts(db) {
|
|
11305
|
+
recreateMemoriesFtsSchema(db);
|
|
11303
11306
|
db.exec("INSERT INTO memories_fts(rowid, content) SELECT rowid, content FROM memories");
|
|
11304
11307
|
}
|
|
11305
11308
|
function readMemoriesFtsSql(db) {
|
|
@@ -28336,12 +28339,15 @@ function createMemoriesFts2(db) {
|
|
|
28336
28339
|
END;
|
|
28337
28340
|
`);
|
|
28338
28341
|
}
|
|
28339
|
-
function
|
|
28342
|
+
function recreateMemoriesFtsSchema2(db) {
|
|
28340
28343
|
db.exec("DROP TRIGGER IF EXISTS memories_ai");
|
|
28341
28344
|
db.exec("DROP TRIGGER IF EXISTS memories_ad");
|
|
28342
28345
|
db.exec("DROP TRIGGER IF EXISTS memories_au");
|
|
28343
28346
|
db.exec("DROP TABLE IF EXISTS memories_fts");
|
|
28344
28347
|
createMemoriesFts2(db);
|
|
28348
|
+
}
|
|
28349
|
+
function recreateMemoriesFts2(db) {
|
|
28350
|
+
recreateMemoriesFtsSchema2(db);
|
|
28345
28351
|
db.exec("INSERT INTO memories_fts(rowid, content) SELECT rowid, content FROM memories");
|
|
28346
28352
|
}
|
|
28347
28353
|
function readMemoriesFtsSql2(db) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signetai/connector-kimi",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.206.0",
|
|
4
4
|
"description": "Signet connector for Kimi CLI / Kimi Code",
|
|
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.
|
|
28
|
-
"@signetai/core": "0.
|
|
27
|
+
"@signetai/connector-base": "0.206.0",
|
|
28
|
+
"@signetai/core": "0.206.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/node": "^22.0.0",
|