@camstack/addon-advanced-notifier 0.1.30 → 0.1.31

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/addon.js CHANGED
@@ -12714,6 +12714,18 @@ const TopologyProcessSchema = object({
12714
12714
  services: array(TopologyServiceSchema).readonly(),
12715
12715
  groupId: string().optional()
12716
12716
  });
12717
+ const TopologyCategoryAddonSchema = object({
12718
+ id: string(),
12719
+ status: string(),
12720
+ cpuPercent: number(),
12721
+ memoryRss: number()
12722
+ });
12723
+ const TopologyCategorySchema = object({
12724
+ category: string(),
12725
+ total: number(),
12726
+ healthy: number(),
12727
+ addons: array(TopologyCategoryAddonSchema).readonly()
12728
+ });
12717
12729
  const TopologyNodeSchema = object({
12718
12730
  id: string(),
12719
12731
  name: string(),
@@ -12738,7 +12750,15 @@ const TopologyNodeSchema = object({
12738
12750
  status: string()
12739
12751
  })
12740
12752
  ).readonly(),
12741
- processes: array(TopologyProcessSchema).readonly()
12753
+ processes: array(TopologyProcessSchema).readonly(),
12754
+ categories: array(TopologyCategorySchema).readonly()
12755
+ });
12756
+ const CapUsageEdgeSchema = object({
12757
+ callerAddonId: string(),
12758
+ providerAddonId: string(),
12759
+ capName: string(),
12760
+ callsPerMin: number(),
12761
+ lastCallAtMs: number()
12742
12762
  });
12743
12763
  const ClusterAddonNodeDeploymentSchema = object({
12744
12764
  nodeId: string(),
@@ -12822,13 +12842,7 @@ const RenameNodeResultSchema = object({
12822
12842
  object({
12823
12843
  windowSeconds: number().int().positive().max(300).default(60)
12824
12844
  }),
12825
- array(object({
12826
- callerAddonId: string(),
12827
- providerAddonId: string(),
12828
- capName: string(),
12829
- callsPerMin: number(),
12830
- lastCallAtMs: number()
12831
- })).readonly(),
12845
+ array(CapUsageEdgeSchema).readonly(),
12832
12846
  { auth: "admin" }
12833
12847
  ),
12834
12848
  /**