mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 20:14:49 +00:00
* feature: Adding in the stopping state * chore: Deal with timeout in the sigterm for main * chore: Update the timeout * Update web/projects/ui/src/app/pages/apps-routes/app-list/app-list-pkg/app-list-pkg.component.ts Co-authored-by: Aiden McClelland <3732071+dr-bonez@users.noreply.github.com> * Update web/projects/ui/src/app/pages/apps-routes/app-show/components/app-show-status/app-show-status.component.ts Co-authored-by: Aiden McClelland <3732071+dr-bonez@users.noreply.github.com> --------- Co-authored-by: Aiden McClelland <3732071+dr-bonez@users.noreply.github.com>
21 lines
627 B
TypeScript
21 lines
627 B
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
import type { HealthCheckId } from "./HealthCheckId"
|
|
import type { HealthCheckResult } from "./HealthCheckResult"
|
|
|
|
export type MainStatus =
|
|
| { status: "stopped" }
|
|
| { status: "restarting" }
|
|
| { status: "restoring" }
|
|
| { status: "stopping" }
|
|
| { status: "starting" }
|
|
| {
|
|
status: "running"
|
|
started: string
|
|
health: { [key: HealthCheckId]: HealthCheckResult }
|
|
}
|
|
| {
|
|
status: "backingUp"
|
|
started: string | null
|
|
health: { [key: HealthCheckId]: HealthCheckResult }
|
|
}
|