@signetai/connector-openclaw 0.199.2 → 0.199.5

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.
Files changed (2) hide show
  1. package/dist/index.js +3 -3
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@ import { delimiter, join as join4, resolve } from "node:path";
5
5
 
6
6
  // ../../../libs/connector-base/dist/index.js
7
7
  import { randomBytes } from "node:crypto";
8
- import { existsSync, readFileSync, renameSync, statSync as statSync2, unlinkSync as unlinkSync2, writeFileSync } from "node:fs";
8
+ import { existsSync, readFileSync, renameSync as renameSync2, statSync as statSync2, unlinkSync as unlinkSync2, writeFileSync } from "node:fs";
9
9
  import { dirname as dirname5, isAbsolute, join as join3, relative, sep } from "node:path";
10
10
  import { createRequire } from "node:module";
11
11
  import { dirname, join } from "node:path";
@@ -12584,7 +12584,7 @@ class BaseConnector {
12584
12584
  const tmp = join3(basePath, `.${randomBytes(6).toString("hex")}.tmp`);
12585
12585
  try {
12586
12586
  writeFileSync(tmp, cleaned, "utf-8");
12587
- renameSync(tmp, agentsPath);
12587
+ renameSync2(tmp, agentsPath);
12588
12588
  } catch (err) {
12589
12589
  try {
12590
12590
  unlinkSync2(tmp);
@@ -12640,7 +12640,7 @@ function atomicWriteText(path, content, mode) {
12640
12640
  }
12641
12641
  try {
12642
12642
  writeFileSync(tmp, content, { encoding: "utf-8", mode: writeMode });
12643
- renameSync(tmp, path);
12643
+ renameSync2(tmp, path);
12644
12644
  } catch (err) {
12645
12645
  try {
12646
12646
  unlinkSync2(tmp);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signetai/connector-openclaw",
3
- "version": "0.199.2",
3
+ "version": "0.199.5",
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.199.2",
29
- "@signetai/core": "0.199.2"
28
+ "@signetai/connector-base": "0.199.5",
29
+ "@signetai/core": "0.199.5"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@types/node": "^22.0.0",