All checks were successful
Auto Tag Develop / tag (push) Successful in 6s
Reviewed-on: #1 Co-authored-by: tristan <tristan@yuno.malio.fr> Co-committed-by: tristan <tristan@yuno.malio.fr>
28 lines
492 B
TypeScript
28 lines
492 B
TypeScript
type DashboardEnvironment = {
|
|
id: number
|
|
name: string
|
|
status: string
|
|
version: string
|
|
}
|
|
|
|
type DashboardApplication = {
|
|
name: string
|
|
slug: string
|
|
giteaUrl?: string
|
|
environments: DashboardEnvironment[]
|
|
}
|
|
|
|
type DashboardResponse = {
|
|
applications: DashboardApplication[]
|
|
}
|
|
|
|
type EnvironmentHealth = {
|
|
status: string
|
|
version: string
|
|
startedAt: string
|
|
cpuPercent: number
|
|
memoryUsage: string
|
|
memoryLimit: string
|
|
memoryPercent: number
|
|
}
|