@serve.zone/interfaces 7.23.0 → 7.24.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/changelog.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2026-06-12 - 7.24.0
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- add live health status to node resource usage entries (node)
|
|
8
|
+
- INodeDeploymentResourceUsage gains an optional healthStatus reported by coreflow's in-process health prober.
|
|
9
|
+
|
|
3
10
|
## 2026-06-12 - 7.23.0
|
|
4
11
|
|
|
5
12
|
### Features
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@serve.zone/interfaces',
|
|
6
|
-
version: '7.
|
|
6
|
+
version: '7.24.0',
|
|
7
7
|
description: 'Shared TypeScript interfaces and TypedRequest contracts for the serve.zone ecosystem.'
|
|
8
8
|
};
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSx3QkFBd0I7SUFDOUIsT0FBTyxFQUFFLFFBQVE7SUFDakIsV0FBVyxFQUFFLHVGQUF1RjtDQUNyRyxDQUFBIn0=
|
|
@@ -153,6 +153,8 @@ export interface INodeDeploymentResourceUsage {
|
|
|
153
153
|
deploymentId: string;
|
|
154
154
|
cpuUsagePercent: number;
|
|
155
155
|
memoryUsedMB: number;
|
|
156
|
+
/** Live verdict from coreflow's in-process health prober, when available. */
|
|
157
|
+
healthStatus?: 'healthy' | 'unhealthy' | 'unknown';
|
|
156
158
|
}
|
|
157
159
|
/**
|
|
158
160
|
* Admin UI asks Cloudly for a node's live per-deployment resource usage;
|
package/package.json
CHANGED
package/ts/00_commitinfo_data.ts
CHANGED
package/ts/requests/node.ts
CHANGED
|
@@ -193,6 +193,8 @@ export interface INodeDeploymentResourceUsage {
|
|
|
193
193
|
deploymentId: string;
|
|
194
194
|
cpuUsagePercent: number;
|
|
195
195
|
memoryUsedMB: number;
|
|
196
|
+
/** Live verdict from coreflow's in-process health prober, when available. */
|
|
197
|
+
healthStatus?: 'healthy' | 'unhealthy' | 'unknown';
|
|
196
198
|
}
|
|
197
199
|
|
|
198
200
|
/**
|