@signetai/connector-base 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 +4 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -11340,12 +11340,15 @@ function createMemoriesFts(db) {
|
|
|
11340
11340
|
END;
|
|
11341
11341
|
`);
|
|
11342
11342
|
}
|
|
11343
|
-
function
|
|
11343
|
+
function recreateMemoriesFtsSchema(db) {
|
|
11344
11344
|
db.exec("DROP TRIGGER IF EXISTS memories_ai");
|
|
11345
11345
|
db.exec("DROP TRIGGER IF EXISTS memories_ad");
|
|
11346
11346
|
db.exec("DROP TRIGGER IF EXISTS memories_au");
|
|
11347
11347
|
db.exec("DROP TABLE IF EXISTS memories_fts");
|
|
11348
11348
|
createMemoriesFts(db);
|
|
11349
|
+
}
|
|
11350
|
+
function recreateMemoriesFts(db) {
|
|
11351
|
+
recreateMemoriesFtsSchema(db);
|
|
11349
11352
|
db.exec("INSERT INTO memories_fts(rowid, content) SELECT rowid, content FROM memories");
|
|
11350
11353
|
}
|
|
11351
11354
|
function readMemoriesFtsSql(db) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signetai/connector-base",
|
|
3
|
-
"version": "0.205.
|
|
3
|
+
"version": "0.205.10",
|
|
4
4
|
"description": "Base class for Signet harness connectors",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"typecheck": "tsc --noEmit"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@signetai/core": "0.205.
|
|
29
|
+
"@signetai/core": "0.205.10",
|
|
30
30
|
"json5": "^2.2.3",
|
|
31
31
|
"jsonc-parser": "3.3.1"
|
|
32
32
|
},
|