fix: fixup multi problem
ci-api / test (push) Successful in 25m0s
ci-web / test (push) Failing after 7m59s

This commit is contained in:
Nuxgrid
2026-07-30 19:29:57 +02:00
parent 0848d3c0a0
commit ac8bdbcab7
14 changed files with 492 additions and 163 deletions
+12 -4
View File
@@ -87,11 +87,19 @@ export interface Contact {
created_at: string
}
export interface ComponentState {
phase: string
cpu_milli: number
cpu_limit_milli: number
memory_mi: number
memory_limit_mi: number
}
export interface DemoState {
api_state: string
web_state: string
db_state: string
dbm_state: string
api: ComponentState
web: ComponentState
db: ComponentState
dbm: ComponentState
}
export interface DemoDetails {