@poolzin/pool-bot 2026.4.5 → 2026.4.7
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/build-info.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"doctor-gateway-services.d.ts","sourceRoot":"","sources":["../../src/commands/doctor-gateway-services.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAUzD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAIhD,OAAO,KAAK,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;
|
|
1
|
+
{"version":3,"file":"doctor-gateway-services.d.ts","sourceRoot":"","sources":["../../src/commands/doctor-gateway-services.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAUzD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAIhD,OAAO,KAAK,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AAkF1E,wBAAsB,+BAA+B,CACnD,GAAG,EAAE,aAAa,EAClB,IAAI,EAAE,OAAO,GAAG,QAAQ,EACxB,OAAO,EAAE,UAAU,EACnB,QAAQ,EAAE,cAAc,iBAqHzB;AAED,wBAAsB,6BAA6B,CACjD,OAAO,EAAE,aAAa,EACtB,OAAO,EAAE,UAAU,EACnB,QAAQ,EAAE,cAAc,iBAoEzB"}
|
|
@@ -39,7 +39,8 @@ function normalizeExecutablePath(value) {
|
|
|
39
39
|
return path.resolve(value);
|
|
40
40
|
}
|
|
41
41
|
function resolveGatewayAuthToken(cfg, env) {
|
|
42
|
-
const
|
|
42
|
+
const raw = cfg.gateway?.auth?.token;
|
|
43
|
+
const configToken = typeof raw === "string" ? raw.trim() : undefined;
|
|
43
44
|
if (configToken) {
|
|
44
45
|
return configToken;
|
|
45
46
|
}
|
|
@@ -487,7 +487,7 @@ export function attachGatewayWsMessageHandler(params) {
|
|
|
487
487
|
role,
|
|
488
488
|
scopes,
|
|
489
489
|
remoteIp: reportedClientIp,
|
|
490
|
-
silent: isLocalClient
|
|
490
|
+
silent: isLocalClient,
|
|
491
491
|
});
|
|
492
492
|
const context = buildRequestContext();
|
|
493
493
|
if (pairing.request.silent === true) {
|