@signetai/connector-claude-code 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
|
@@ -11295,12 +11295,15 @@ function createMemoriesFts(db) {
|
|
|
11295
11295
|
END;
|
|
11296
11296
|
`);
|
|
11297
11297
|
}
|
|
11298
|
-
function
|
|
11298
|
+
function recreateMemoriesFtsSchema(db) {
|
|
11299
11299
|
db.exec("DROP TRIGGER IF EXISTS memories_ai");
|
|
11300
11300
|
db.exec("DROP TRIGGER IF EXISTS memories_ad");
|
|
11301
11301
|
db.exec("DROP TRIGGER IF EXISTS memories_au");
|
|
11302
11302
|
db.exec("DROP TABLE IF EXISTS memories_fts");
|
|
11303
11303
|
createMemoriesFts(db);
|
|
11304
|
+
}
|
|
11305
|
+
function recreateMemoriesFts(db) {
|
|
11306
|
+
recreateMemoriesFtsSchema(db);
|
|
11304
11307
|
db.exec("INSERT INTO memories_fts(rowid, content) SELECT rowid, content FROM memories");
|
|
11305
11308
|
}
|
|
11306
11309
|
function readMemoriesFtsSql(db) {
|
|
@@ -28360,12 +28363,15 @@ function createMemoriesFts2(db) {
|
|
|
28360
28363
|
END;
|
|
28361
28364
|
`);
|
|
28362
28365
|
}
|
|
28363
|
-
function
|
|
28366
|
+
function recreateMemoriesFtsSchema2(db) {
|
|
28364
28367
|
db.exec("DROP TRIGGER IF EXISTS memories_ai");
|
|
28365
28368
|
db.exec("DROP TRIGGER IF EXISTS memories_ad");
|
|
28366
28369
|
db.exec("DROP TRIGGER IF EXISTS memories_au");
|
|
28367
28370
|
db.exec("DROP TABLE IF EXISTS memories_fts");
|
|
28368
28371
|
createMemoriesFts2(db);
|
|
28372
|
+
}
|
|
28373
|
+
function recreateMemoriesFts2(db) {
|
|
28374
|
+
recreateMemoriesFtsSchema2(db);
|
|
28369
28375
|
db.exec("INSERT INTO memories_fts(rowid, content) SELECT rowid, content FROM memories");
|
|
28370
28376
|
}
|
|
28371
28377
|
function readMemoriesFtsSql2(db) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signetai/connector-claude-code",
|
|
3
|
-
"version": "0.205.
|
|
3
|
+
"version": "0.205.10",
|
|
4
4
|
"description": "Signet connector for Claude Code (Anthropic 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",
|