orchestrator-client 5.13.0 → 5.13.2

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.d.cts CHANGED
@@ -280,6 +280,11 @@ interface MetricSnapshot {
280
280
  llmAvgResponseTimeSec: number | null;
281
281
  llmRequestsPerMinute: number | null;
282
282
  avgTaskSolutionTimeSec: number | null;
283
+ taskRunsDaily: TaskRunCount[] | null;
284
+ }
285
+ interface TaskRunCount {
286
+ day: string;
287
+ count: number;
283
288
  }
284
289
 
285
290
  interface SystemStatusSettings {
package/dist/index.d.ts CHANGED
@@ -280,6 +280,11 @@ interface MetricSnapshot {
280
280
  llmAvgResponseTimeSec: number | null;
281
281
  llmRequestsPerMinute: number | null;
282
282
  avgTaskSolutionTimeSec: number | null;
283
+ taskRunsDaily: TaskRunCount[] | null;
284
+ }
285
+ interface TaskRunCount {
286
+ day: string;
287
+ count: number;
283
288
  }
284
289
 
285
290
  interface SystemStatusSettings {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orchestrator-client",
3
- "version": "5.13.0",
3
+ "version": "5.13.2",
4
4
  "description": "TypeScript/JavaScript client for the DAMIT AIOps Orchestrator REST API and Socket.IO realtime events",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Damit Informatika",