@signetai/connector-hermes-agent 0.199.2 → 0.199.4
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 +2 -2
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -8,7 +8,7 @@ import { fileURLToPath as fileURLToPath3 } from "node:url";
|
|
|
8
8
|
|
|
9
9
|
// ../../../libs/connector-base/dist/index.js
|
|
10
10
|
import { randomBytes } from "node:crypto";
|
|
11
|
-
import { existsSync, readFileSync, renameSync, statSync as statSync2, unlinkSync as unlinkSync2, writeFileSync } from "node:fs";
|
|
11
|
+
import { existsSync, readFileSync, renameSync as renameSync2, statSync as statSync2, unlinkSync as unlinkSync2, writeFileSync } from "node:fs";
|
|
12
12
|
import { dirname as dirname5, isAbsolute, join as join3, relative, sep } from "node:path";
|
|
13
13
|
import { createRequire } from "node:module";
|
|
14
14
|
import { dirname, join } from "node:path";
|
|
@@ -12587,7 +12587,7 @@ class BaseConnector {
|
|
|
12587
12587
|
const tmp = join3(basePath, `.${randomBytes(6).toString("hex")}.tmp`);
|
|
12588
12588
|
try {
|
|
12589
12589
|
writeFileSync(tmp, cleaned, "utf-8");
|
|
12590
|
-
|
|
12590
|
+
renameSync2(tmp, agentsPath);
|
|
12591
12591
|
} catch (err) {
|
|
12592
12592
|
try {
|
|
12593
12593
|
unlinkSync2(tmp);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signetai/connector-hermes-agent",
|
|
3
|
-
"version": "0.199.
|
|
3
|
+
"version": "0.199.4",
|
|
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.199.
|
|
29
|
-
"@signetai/core": "0.199.
|
|
28
|
+
"@signetai/connector-base": "0.199.4",
|
|
29
|
+
"@signetai/core": "0.199.4"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/node": "^22.0.0",
|