@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.
@@ -4621,7 +4621,7 @@ function _instanceof(cls, params = {}) {
4621
4621
  return inst;
4622
4622
  }
4623
4623
  //#endregion
4624
- //#region ../types/dist/index-CgPd35k5.mjs
4624
+ //#region ../types/dist/index-QRlzao1I.mjs
4625
4625
  var MODEL_FORMATS = [
4626
4626
  "onnx",
4627
4627
  "coreml",
@@ -10149,6 +10149,18 @@ var TopologyProcessSchema = object({
10149
10149
  services: array(TopologyServiceSchema).readonly(),
10150
10150
  groupId: string().optional()
10151
10151
  });
10152
+ var TopologyCategoryAddonSchema = object({
10153
+ id: string(),
10154
+ status: string(),
10155
+ cpuPercent: number(),
10156
+ memoryRss: number()
10157
+ });
10158
+ var TopologyCategorySchema = object({
10159
+ category: string(),
10160
+ total: number(),
10161
+ healthy: number(),
10162
+ addons: array(TopologyCategoryAddonSchema).readonly()
10163
+ });
10152
10164
  var TopologyNodeSchema = object({
10153
10165
  id: string(),
10154
10166
  name: string(),
@@ -10171,7 +10183,15 @@ var TopologyNodeSchema = object({
10171
10183
  capabilities: array(string()).readonly(),
10172
10184
  status: string()
10173
10185
  })).readonly(),
10174
- processes: array(TopologyProcessSchema).readonly()
10186
+ processes: array(TopologyProcessSchema).readonly(),
10187
+ categories: array(TopologyCategorySchema).readonly()
10188
+ });
10189
+ var CapUsageEdgeSchema = object({
10190
+ callerAddonId: string(),
10191
+ providerAddonId: string(),
10192
+ capName: string(),
10193
+ callsPerMin: number(),
10194
+ lastCallAtMs: number()
10175
10195
  });
10176
10196
  var ClusterAddonNodeDeploymentSchema = object({
10177
10197
  nodeId: string(),
@@ -10234,13 +10254,7 @@ method(_void(), array(TopologyNodeSchema).readonly(), { auth: "admin" }), method
10234
10254
  }), RenameNodeResultSchema, {
10235
10255
  kind: "mutation",
10236
10256
  auth: "admin"
10237
- }), method(_void(), record(string(), ClusterAddonStatusEntrySchema), { auth: "admin" }), method(object({ windowSeconds: number().int().positive().max(300).default(60) }), array(object({
10238
- callerAddonId: string(),
10239
- providerAddonId: string(),
10240
- capName: string(),
10241
- callsPerMin: number(),
10242
- lastCallAtMs: number()
10243
- })).readonly(), { auth: "admin" }), method(object({ nodeId: string() }), array(NodeAddonEntrySchema).readonly(), { auth: "admin" }), method(object({
10257
+ }), 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({
10244
10258
  nodeId: string(),
10245
10259
  level: string()
10246
10260
  }), SuccessSchema, {