@signetai/connector-openclaw 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
|
@@ -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) {
|
|
@@ -30332,12 +30335,15 @@ function createMemoriesFts2(db) {
|
|
|
30332
30335
|
END;
|
|
30333
30336
|
`);
|
|
30334
30337
|
}
|
|
30335
|
-
function
|
|
30338
|
+
function recreateMemoriesFtsSchema2(db) {
|
|
30336
30339
|
db.exec("DROP TRIGGER IF EXISTS memories_ai");
|
|
30337
30340
|
db.exec("DROP TRIGGER IF EXISTS memories_ad");
|
|
30338
30341
|
db.exec("DROP TRIGGER IF EXISTS memories_au");
|
|
30339
30342
|
db.exec("DROP TABLE IF EXISTS memories_fts");
|
|
30340
30343
|
createMemoriesFts2(db);
|
|
30344
|
+
}
|
|
30345
|
+
function recreateMemoriesFts2(db) {
|
|
30346
|
+
recreateMemoriesFtsSchema2(db);
|
|
30341
30347
|
db.exec("INSERT INTO memories_fts(rowid, content) SELECT rowid, content FROM memories");
|
|
30342
30348
|
}
|
|
30343
30349
|
function readMemoriesFtsSql2(db) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signetai/connector-openclaw",
|
|
3
|
-
"version": "0.205.
|
|
3
|
+
"version": "0.205.10",
|
|
4
4
|
"description": "Signet connector for OpenClaw - configures workspace and memory hooks",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"test": "bun test"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@signetai/connector-base": "0.205.
|
|
29
|
-
"@signetai/core": "0.205.
|
|
28
|
+
"@signetai/connector-base": "0.205.10",
|
|
29
|
+
"@signetai/core": "0.205.10"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/node": "^22.0.0",
|