@signetai/connector-hermes-agent 0.169.0 → 0.170.0
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 +34 -2
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -10375,6 +10375,14 @@ function up108(db) {
|
|
|
10375
10375
|
);
|
|
10376
10376
|
`);
|
|
10377
10377
|
}
|
|
10378
|
+
function up109(db) {
|
|
10379
|
+
db.exec(`
|
|
10380
|
+
CREATE TABLE IF NOT EXISTS telemetry_install (
|
|
10381
|
+
id TEXT PRIMARY KEY,
|
|
10382
|
+
created_at TEXT NOT NULL
|
|
10383
|
+
);
|
|
10384
|
+
`);
|
|
10385
|
+
}
|
|
10378
10386
|
var MIGRATIONS = [
|
|
10379
10387
|
{
|
|
10380
10388
|
version: 1,
|
|
@@ -11237,6 +11245,14 @@ var MIGRATIONS = [
|
|
|
11237
11245
|
artifacts: {
|
|
11238
11246
|
tables: ["embedding_usage"]
|
|
11239
11247
|
}
|
|
11248
|
+
},
|
|
11249
|
+
{
|
|
11250
|
+
version: 109,
|
|
11251
|
+
name: "telemetry-install",
|
|
11252
|
+
up: up109,
|
|
11253
|
+
artifacts: {
|
|
11254
|
+
tables: ["telemetry_install"]
|
|
11255
|
+
}
|
|
11240
11256
|
}
|
|
11241
11257
|
];
|
|
11242
11258
|
var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
|
|
@@ -18501,7 +18517,7 @@ function memoriesFtsNeedsTokenizerRepair2(sql) {
|
|
|
18501
18517
|
return true;
|
|
18502
18518
|
return !normalized.includes(`tokenize='${MEMORIES_FTS_TOKENIZER2}'`);
|
|
18503
18519
|
}
|
|
18504
|
-
function
|
|
18520
|
+
function up110(db) {
|
|
18505
18521
|
db.exec(`
|
|
18506
18522
|
CREATE TABLE IF NOT EXISTS schema_migrations (
|
|
18507
18523
|
version INTEGER PRIMARY KEY,
|
|
@@ -21910,11 +21926,19 @@ function up1082(db) {
|
|
|
21910
21926
|
);
|
|
21911
21927
|
`);
|
|
21912
21928
|
}
|
|
21929
|
+
function up1092(db) {
|
|
21930
|
+
db.exec(`
|
|
21931
|
+
CREATE TABLE IF NOT EXISTS telemetry_install (
|
|
21932
|
+
id TEXT PRIMARY KEY,
|
|
21933
|
+
created_at TEXT NOT NULL
|
|
21934
|
+
);
|
|
21935
|
+
`);
|
|
21936
|
+
}
|
|
21913
21937
|
var MIGRATIONS2 = [
|
|
21914
21938
|
{
|
|
21915
21939
|
version: 1,
|
|
21916
21940
|
name: "baseline",
|
|
21917
|
-
up:
|
|
21941
|
+
up: up110,
|
|
21918
21942
|
artifacts: { tables: ["memories", "conversations", "embeddings"] }
|
|
21919
21943
|
},
|
|
21920
21944
|
{
|
|
@@ -22772,6 +22796,14 @@ var MIGRATIONS2 = [
|
|
|
22772
22796
|
artifacts: {
|
|
22773
22797
|
tables: ["embedding_usage"]
|
|
22774
22798
|
}
|
|
22799
|
+
},
|
|
22800
|
+
{
|
|
22801
|
+
version: 109,
|
|
22802
|
+
name: "telemetry-install",
|
|
22803
|
+
up: up1092,
|
|
22804
|
+
artifacts: {
|
|
22805
|
+
tables: ["telemetry_install"]
|
|
22806
|
+
}
|
|
22775
22807
|
}
|
|
22776
22808
|
];
|
|
22777
22809
|
var LATEST_SCHEMA_VERSION2 = MIGRATIONS2[MIGRATIONS2.length - 1]?.version ?? 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signetai/connector-hermes-agent",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.170.0",
|
|
4
4
|
"description": "Signet connector for Hermes Agent — installs Signet as a pluggable memory provider",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"typecheck": "tsc --noEmit"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@signetai/connector-base": "0.
|
|
29
|
-
"@signetai/core": "0.
|
|
28
|
+
"@signetai/connector-base": "0.170.0",
|
|
29
|
+
"@signetai/core": "0.170.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/node": "^22.0.0",
|