@signetai/connector-base 0.155.2 → 0.156.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 +2 -0
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -10802,6 +10802,8 @@ function resolveSignetDaemonUrl(opts = {}) {
|
|
|
10802
10802
|
const explicit = readEnv(env, "SIGNET_DAEMON_URL");
|
|
10803
10803
|
if (explicit)
|
|
10804
10804
|
return normalizeDaemonUrl(explicit, "SIGNET_DAEMON_URL");
|
|
10805
|
+
if (opts.configUrl)
|
|
10806
|
+
return normalizeDaemonUrl(opts.configUrl, "daemon.url");
|
|
10805
10807
|
const host = readEnv(env, "SIGNET_HOST") ?? fallbackHost;
|
|
10806
10808
|
assertPlainHost(host);
|
|
10807
10809
|
const port = normalizePort(readEnv(env, "SIGNET_PORT"), fallbackPort);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signetai/connector-base",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.156.0",
|
|
4
4
|
"description": "Base class for Signet harness connectors",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"typecheck": "tsc --noEmit"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@signetai/core": "0.
|
|
29
|
+
"@signetai/core": "0.156.0",
|
|
30
30
|
"json5": "^2.2.3",
|
|
31
31
|
"jsonc-parser": "3.3.1"
|
|
32
32
|
},
|