@north-light/crouter-api 0.3.262 → 0.3.263
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/api/dto/health.d.ts +2 -0
- package/package.json +1 -1
package/dist/api/dto/health.d.ts
CHANGED
|
@@ -15,6 +15,8 @@ export interface StatusDTO {
|
|
|
15
15
|
tick_interval_ms: number;
|
|
16
16
|
/** Node counts keyed by status. */
|
|
17
17
|
node_counts: Partial<Record<NodeStatusDTO, number>>;
|
|
18
|
+
/** Nodes genuinely mid-turn: their busy marker exists and their recorded pid is alive. Unlike `node_counts.active`, this excludes live-but-waiting, parked, or blocked engines. */
|
|
19
|
+
busy_node_count: number;
|
|
18
20
|
/** Bound listener addresses. `tcp` is null when the TCP listener is off. */
|
|
19
21
|
listeners: {
|
|
20
22
|
socket_path: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@north-light/crouter-api",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.263",
|
|
4
4
|
"description": "Typed crtrd /v1 API contract — DTOs, route builders, the error contract, and the CrtrClient. Zero runtime dependencies.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/api/index.js",
|