@signetai/connector-forge 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) {
|
|
@@ -28621,12 +28624,15 @@ function createMemoriesFts2(db) {
|
|
|
28621
28624
|
END;
|
|
28622
28625
|
`);
|
|
28623
28626
|
}
|
|
28624
|
-
function
|
|
28627
|
+
function recreateMemoriesFtsSchema2(db) {
|
|
28625
28628
|
db.exec("DROP TRIGGER IF EXISTS memories_ai");
|
|
28626
28629
|
db.exec("DROP TRIGGER IF EXISTS memories_ad");
|
|
28627
28630
|
db.exec("DROP TRIGGER IF EXISTS memories_au");
|
|
28628
28631
|
db.exec("DROP TABLE IF EXISTS memories_fts");
|
|
28629
28632
|
createMemoriesFts2(db);
|
|
28633
|
+
}
|
|
28634
|
+
function recreateMemoriesFts2(db) {
|
|
28635
|
+
recreateMemoriesFtsSchema2(db);
|
|
28630
28636
|
db.exec("INSERT INTO memories_fts(rowid, content) SELECT rowid, content FROM memories");
|
|
28631
28637
|
}
|
|
28632
28638
|
function readMemoriesFtsSql2(db) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signetai/connector-forge",
|
|
3
|
-
"version": "0.205.
|
|
3
|
+
"version": "0.205.10",
|
|
4
4
|
"description": "Signet connector for ForgeCode - installs MCP, identity, and skills integration",
|
|
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",
|