@camstack/addon-pipeline-orchestrator 0.1.24 → 0.1.26

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/index.mjs CHANGED
@@ -12807,6 +12807,18 @@ const TopologyProcessSchema = object({
12807
12807
  services: array(TopologyServiceSchema).readonly(),
12808
12808
  groupId: string().optional()
12809
12809
  });
12810
+ const TopologyCategoryAddonSchema = object({
12811
+ id: string(),
12812
+ status: string(),
12813
+ cpuPercent: number(),
12814
+ memoryRss: number()
12815
+ });
12816
+ const TopologyCategorySchema = object({
12817
+ category: string(),
12818
+ total: number(),
12819
+ healthy: number(),
12820
+ addons: array(TopologyCategoryAddonSchema).readonly()
12821
+ });
12810
12822
  const TopologyNodeSchema = object({
12811
12823
  id: string(),
12812
12824
  name: string(),
@@ -12831,7 +12843,15 @@ const TopologyNodeSchema = object({
12831
12843
  status: string()
12832
12844
  })
12833
12845
  ).readonly(),
12834
- processes: array(TopologyProcessSchema).readonly()
12846
+ processes: array(TopologyProcessSchema).readonly(),
12847
+ categories: array(TopologyCategorySchema).readonly()
12848
+ });
12849
+ const CapUsageEdgeSchema = object({
12850
+ callerAddonId: string(),
12851
+ providerAddonId: string(),
12852
+ capName: string(),
12853
+ callsPerMin: number(),
12854
+ lastCallAtMs: number()
12835
12855
  });
12836
12856
  const ClusterAddonNodeDeploymentSchema = object({
12837
12857
  nodeId: string(),
@@ -12915,13 +12935,7 @@ const RenameNodeResultSchema = object({
12915
12935
  object({
12916
12936
  windowSeconds: number().int().positive().max(300).default(60)
12917
12937
  }),
12918
- array(object({
12919
- callerAddonId: string(),
12920
- providerAddonId: string(),
12921
- capName: string(),
12922
- callsPerMin: number(),
12923
- lastCallAtMs: number()
12924
- })).readonly(),
12938
+ array(CapUsageEdgeSchema).readonly(),
12925
12939
  { auth: "admin" }
12926
12940
  ),
12927
12941
  /**