@camstack/addon-tailscale-ingress 0.1.8 → 0.1.9

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.
@@ -4617,7 +4617,7 @@ function _instanceof(cls, params = {}) {
4617
4617
  return inst;
4618
4618
  }
4619
4619
  //#endregion
4620
- //#region ../types/dist/index-CgPd35k5.mjs
4620
+ //#region ../types/dist/index-QRlzao1I.mjs
4621
4621
  var MODEL_FORMATS = [
4622
4622
  "onnx",
4623
4623
  "coreml",
@@ -10145,6 +10145,18 @@ var TopologyProcessSchema = object({
10145
10145
  services: array(TopologyServiceSchema).readonly(),
10146
10146
  groupId: string().optional()
10147
10147
  });
10148
+ var TopologyCategoryAddonSchema = object({
10149
+ id: string(),
10150
+ status: string(),
10151
+ cpuPercent: number(),
10152
+ memoryRss: number()
10153
+ });
10154
+ var TopologyCategorySchema = object({
10155
+ category: string(),
10156
+ total: number(),
10157
+ healthy: number(),
10158
+ addons: array(TopologyCategoryAddonSchema).readonly()
10159
+ });
10148
10160
  var TopologyNodeSchema = object({
10149
10161
  id: string(),
10150
10162
  name: string(),
@@ -10167,7 +10179,15 @@ var TopologyNodeSchema = object({
10167
10179
  capabilities: array(string()).readonly(),
10168
10180
  status: string()
10169
10181
  })).readonly(),
10170
- processes: array(TopologyProcessSchema).readonly()
10182
+ processes: array(TopologyProcessSchema).readonly(),
10183
+ categories: array(TopologyCategorySchema).readonly()
10184
+ });
10185
+ var CapUsageEdgeSchema = object({
10186
+ callerAddonId: string(),
10187
+ providerAddonId: string(),
10188
+ capName: string(),
10189
+ callsPerMin: number(),
10190
+ lastCallAtMs: number()
10171
10191
  });
10172
10192
  var ClusterAddonNodeDeploymentSchema = object({
10173
10193
  nodeId: string(),
@@ -10230,13 +10250,7 @@ method(_void(), array(TopologyNodeSchema).readonly(), { auth: "admin" }), method
10230
10250
  }), RenameNodeResultSchema, {
10231
10251
  kind: "mutation",
10232
10252
  auth: "admin"
10233
- }), method(_void(), record(string(), ClusterAddonStatusEntrySchema), { auth: "admin" }), method(object({ windowSeconds: number().int().positive().max(300).default(60) }), array(object({
10234
- callerAddonId: string(),
10235
- providerAddonId: string(),
10236
- capName: string(),
10237
- callsPerMin: number(),
10238
- lastCallAtMs: number()
10239
- })).readonly(), { auth: "admin" }), method(object({ nodeId: string() }), array(NodeAddonEntrySchema).readonly(), { auth: "admin" }), method(object({
10253
+ }), 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({
10240
10254
  nodeId: string(),
10241
10255
  level: string()
10242
10256
  }), SuccessSchema, {