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