@camstack/addon-export-hap 0.1.9 → 0.1.10
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.
|
@@ -4625,7 +4625,7 @@ function _instanceof(cls, params = {}) {
|
|
|
4625
4625
|
return inst;
|
|
4626
4626
|
}
|
|
4627
4627
|
//#endregion
|
|
4628
|
-
//#region ../types/dist/index-
|
|
4628
|
+
//#region ../types/dist/index-QRlzao1I.mjs
|
|
4629
4629
|
var MODEL_FORMATS = [
|
|
4630
4630
|
"onnx",
|
|
4631
4631
|
"coreml",
|
|
@@ -10166,6 +10166,18 @@ var TopologyProcessSchema = object({
|
|
|
10166
10166
|
services: array(TopologyServiceSchema).readonly(),
|
|
10167
10167
|
groupId: string().optional()
|
|
10168
10168
|
});
|
|
10169
|
+
var TopologyCategoryAddonSchema = object({
|
|
10170
|
+
id: string(),
|
|
10171
|
+
status: string(),
|
|
10172
|
+
cpuPercent: number(),
|
|
10173
|
+
memoryRss: number()
|
|
10174
|
+
});
|
|
10175
|
+
var TopologyCategorySchema = object({
|
|
10176
|
+
category: string(),
|
|
10177
|
+
total: number(),
|
|
10178
|
+
healthy: number(),
|
|
10179
|
+
addons: array(TopologyCategoryAddonSchema).readonly()
|
|
10180
|
+
});
|
|
10169
10181
|
var TopologyNodeSchema = object({
|
|
10170
10182
|
id: string(),
|
|
10171
10183
|
name: string(),
|
|
@@ -10188,7 +10200,15 @@ var TopologyNodeSchema = object({
|
|
|
10188
10200
|
capabilities: array(string()).readonly(),
|
|
10189
10201
|
status: string()
|
|
10190
10202
|
})).readonly(),
|
|
10191
|
-
processes: array(TopologyProcessSchema).readonly()
|
|
10203
|
+
processes: array(TopologyProcessSchema).readonly(),
|
|
10204
|
+
categories: array(TopologyCategorySchema).readonly()
|
|
10205
|
+
});
|
|
10206
|
+
var CapUsageEdgeSchema = object({
|
|
10207
|
+
callerAddonId: string(),
|
|
10208
|
+
providerAddonId: string(),
|
|
10209
|
+
capName: string(),
|
|
10210
|
+
callsPerMin: number(),
|
|
10211
|
+
lastCallAtMs: number()
|
|
10192
10212
|
});
|
|
10193
10213
|
var ClusterAddonNodeDeploymentSchema = object({
|
|
10194
10214
|
nodeId: string(),
|
|
@@ -10251,13 +10271,7 @@ method(_void(), array(TopologyNodeSchema).readonly(), { auth: "admin" }), method
|
|
|
10251
10271
|
}), RenameNodeResultSchema, {
|
|
10252
10272
|
kind: "mutation",
|
|
10253
10273
|
auth: "admin"
|
|
10254
|
-
}), method(_void(), record(string(), ClusterAddonStatusEntrySchema), { auth: "admin" }), method(object({ windowSeconds: number().int().positive().max(300).default(60) }), array(object({
|
|
10255
|
-
callerAddonId: string(),
|
|
10256
|
-
providerAddonId: string(),
|
|
10257
|
-
capName: string(),
|
|
10258
|
-
callsPerMin: number(),
|
|
10259
|
-
lastCallAtMs: number()
|
|
10260
|
-
})).readonly(), { auth: "admin" }), method(object({ nodeId: string() }), array(NodeAddonEntrySchema).readonly(), { auth: "admin" }), method(object({
|
|
10274
|
+
}), method(_void(), record(string(), ClusterAddonStatusEntrySchema), { auth: "admin" }), method(object({ windowSeconds: number().int().positive().max(300).default(60) }), array(CapUsageEdgeSchema).readonly(), { auth: "admin" }), method(object({ nodeId: string() }), array(NodeAddonEntrySchema).readonly(), { auth: "admin" }), method(object({
|
|
10261
10275
|
nodeId: string(),
|
|
10262
10276
|
level: string()
|
|
10263
10277
|
}), SuccessSchema, {
|