26 lines
419 B
TypeScript
26 lines
419 B
TypeScript
export type EnvStatus = 'healthy' | 'warning' | 'degraded';
|
|
|
|
export interface Env {
|
|
id: string;
|
|
name: string;
|
|
region: string;
|
|
status: EnvStatus;
|
|
updatedAt: string;
|
|
}
|
|
|
|
export interface HealthResponse {
|
|
status: string;
|
|
uptime: number;
|
|
}
|
|
|
|
export interface VersionResponse {
|
|
version: string;
|
|
commit: string;
|
|
}
|
|
|
|
export interface DeploySummary {
|
|
envId: string;
|
|
lastDeploy: string;
|
|
artifact: string;
|
|
}
|