@camstack/addon-export-hap 0.1.8 → 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.
@@ -4649,7 +4649,7 @@ function _instanceof(cls, params = {}) {
4649
4649
  return inst;
4650
4650
  }
4651
4651
  //#endregion
4652
- //#region ../types/dist/index-CgPd35k5.mjs
4652
+ //#region ../types/dist/index-QRlzao1I.mjs
4653
4653
  var MODEL_FORMATS = [
4654
4654
  "onnx",
4655
4655
  "coreml",
@@ -10190,6 +10190,18 @@ var TopologyProcessSchema = object({
10190
10190
  services: array(TopologyServiceSchema).readonly(),
10191
10191
  groupId: string().optional()
10192
10192
  });
10193
+ var TopologyCategoryAddonSchema = object({
10194
+ id: string(),
10195
+ status: string(),
10196
+ cpuPercent: number(),
10197
+ memoryRss: number()
10198
+ });
10199
+ var TopologyCategorySchema = object({
10200
+ category: string(),
10201
+ total: number(),
10202
+ healthy: number(),
10203
+ addons: array(TopologyCategoryAddonSchema).readonly()
10204
+ });
10193
10205
  var TopologyNodeSchema = object({
10194
10206
  id: string(),
10195
10207
  name: string(),
@@ -10212,7 +10224,15 @@ var TopologyNodeSchema = object({
10212
10224
  capabilities: array(string()).readonly(),
10213
10225
  status: string()
10214
10226
  })).readonly(),
10215
- processes: array(TopologyProcessSchema).readonly()
10227
+ processes: array(TopologyProcessSchema).readonly(),
10228
+ categories: array(TopologyCategorySchema).readonly()
10229
+ });
10230
+ var CapUsageEdgeSchema = object({
10231
+ callerAddonId: string(),
10232
+ providerAddonId: string(),
10233
+ capName: string(),
10234
+ callsPerMin: number(),
10235
+ lastCallAtMs: number()
10216
10236
  });
10217
10237
  var ClusterAddonNodeDeploymentSchema = object({
10218
10238
  nodeId: string(),
@@ -10275,13 +10295,7 @@ method(_void(), array(TopologyNodeSchema).readonly(), { auth: "admin" }), method
10275
10295
  }), RenameNodeResultSchema, {
10276
10296
  kind: "mutation",
10277
10297
  auth: "admin"
10278
- }), method(_void(), record(string(), ClusterAddonStatusEntrySchema), { auth: "admin" }), method(object({ windowSeconds: number().int().positive().max(300).default(60) }), array(object({
10279
- callerAddonId: string(),
10280
- providerAddonId: string(),
10281
- capName: string(),
10282
- callsPerMin: number(),
10283
- lastCallAtMs: number()
10284
- })).readonly(), { auth: "admin" }), method(object({ nodeId: string() }), array(NodeAddonEntrySchema).readonly(), { auth: "admin" }), method(object({
10298
+ }), 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({
10285
10299
  nodeId: string(),
10286
10300
  level: string()
10287
10301
  }), SuccessSchema, {