@signetai/connector-base 0.176.2 → 0.176.3
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 +11 -0
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -10415,6 +10415,12 @@ function up109(db) {
|
|
|
10415
10415
|
);
|
|
10416
10416
|
`);
|
|
10417
10417
|
}
|
|
10418
|
+
function up110(db) {
|
|
10419
|
+
db.exec(`
|
|
10420
|
+
CREATE INDEX IF NOT EXISTS idx_memory_entity_mentions_entity_memory
|
|
10421
|
+
ON memory_entity_mentions(entity_id, memory_id);
|
|
10422
|
+
`);
|
|
10423
|
+
}
|
|
10418
10424
|
var MIGRATIONS = [
|
|
10419
10425
|
{
|
|
10420
10426
|
version: 1,
|
|
@@ -11285,6 +11291,11 @@ var MIGRATIONS = [
|
|
|
11285
11291
|
artifacts: {
|
|
11286
11292
|
tables: ["telemetry_install"]
|
|
11287
11293
|
}
|
|
11294
|
+
},
|
|
11295
|
+
{
|
|
11296
|
+
version: 110,
|
|
11297
|
+
name: "memory-mention-join-index",
|
|
11298
|
+
up: up110
|
|
11288
11299
|
}
|
|
11289
11300
|
];
|
|
11290
11301
|
var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signetai/connector-base",
|
|
3
|
-
"version": "0.176.
|
|
3
|
+
"version": "0.176.3",
|
|
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.176.
|
|
29
|
+
"@signetai/core": "0.176.3",
|
|
30
30
|
"json5": "^2.2.3",
|
|
31
31
|
"jsonc-parser": "3.3.1"
|
|
32
32
|
},
|