24 lines
685 B
TypeScript
24 lines
685 B
TypeScript
/**
|
|
* Generated by orval v8.3.0 🍺
|
|
* Do not edit manually.
|
|
* Mission Control API
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
import type { DashboardKpis } from "./dashboardKpis";
|
|
import type { DashboardMetricsRange } from "./dashboardMetricsRange";
|
|
import type { DashboardSeriesSet } from "./dashboardSeriesSet";
|
|
import type { DashboardWipSeriesSet } from "./dashboardWipSeriesSet";
|
|
|
|
/**
|
|
* Complete dashboard metrics response payload.
|
|
*/
|
|
export interface DashboardMetrics {
|
|
cycle_time: DashboardSeriesSet;
|
|
error_rate: DashboardSeriesSet;
|
|
generated_at: string;
|
|
kpis: DashboardKpis;
|
|
range: DashboardMetricsRange;
|
|
throughput: DashboardSeriesSet;
|
|
wip: DashboardWipSeriesSet;
|
|
}
|