@signetai/connector-codex 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
@@ -7,7 +7,7 @@ import { basename as basename3, dirname as dirname6, join as join4 } from "node:
7
7
 
8
8
  // ../../../libs/connector-base/dist/index.js
9
9
  import { randomBytes } from "node:crypto";
10
- import { existsSync, readFileSync, renameSync, statSync as statSync2, unlinkSync as unlinkSync2, writeFileSync } from "node:fs";
10
+ import { existsSync, readFileSync, renameSync as renameSync2, statSync as statSync2, unlinkSync as unlinkSync2, writeFileSync } from "node:fs";
11
11
  import { dirname as dirname5, isAbsolute, join as join3, relative, sep } from "node:path";
12
12
  import { createRequire } from "node:module";
13
13
  import { dirname, join } from "node:path";
@@ -12659,7 +12659,7 @@ class BaseConnector {
12659
12659
  const tmp = join3(basePath, `.${randomBytes(6).toString("hex")}.tmp`);
12660
12660
  try {
12661
12661
  writeFileSync(tmp, cleaned, "utf-8");
12662
- renameSync(tmp, agentsPath);
12662
+ renameSync2(tmp, agentsPath);
12663
12663
  } catch (err) {
12664
12664
  try {
12665
12665
  unlinkSync2(tmp);
@@ -12715,7 +12715,7 @@ function atomicWriteText(path, content, mode) {
12715
12715
  }
12716
12716
  try {
12717
12717
  writeFileSync(tmp, content, { encoding: "utf-8", mode: writeMode });
12718
- renameSync(tmp, path);
12718
+ renameSync2(tmp, path);
12719
12719
  } catch (err) {
12720
12720
  try {
12721
12721
  unlinkSync2(tmp);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signetai/connector-codex",
3
- "version": "0.199.2",
3
+ "version": "0.199.5",
4
4
  "description": "Signet connector for Codex CLI",
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.199.2",
28
- "@signetai/core": "0.199.2"
27
+ "@signetai/connector-base": "0.199.5",
28
+ "@signetai/core": "0.199.5"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/node": "^22.0.0",