@signetai/connector-codex 0.155.3 → 0.156.1

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 +2 -0
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -21895,6 +21895,8 @@ function resolveSignetDaemonUrl(opts = {}) {
21895
21895
  const explicit = readEnv(env, "SIGNET_DAEMON_URL");
21896
21896
  if (explicit)
21897
21897
  return normalizeDaemonUrl(explicit, "SIGNET_DAEMON_URL");
21898
+ if (opts.configUrl)
21899
+ return normalizeDaemonUrl(opts.configUrl, "daemon.url");
21898
21900
  const host = readEnv(env, "SIGNET_HOST") ?? fallbackHost;
21899
21901
  assertPlainHost(host);
21900
21902
  const port = normalizePort(readEnv(env, "SIGNET_PORT"), fallbackPort);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signetai/connector-codex",
3
- "version": "0.155.3",
3
+ "version": "0.156.1",
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.155.3",
28
- "@signetai/core": "0.155.3"
27
+ "@signetai/connector-base": "0.156.1",
28
+ "@signetai/core": "0.156.1"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/node": "^22.0.0",