diff --git a/striker-ui/types/AnvilStatus.d.ts b/striker-ui/types/AnvilStatus.d.ts index 13e7df01..1f4ebff8 100644 --- a/striker-ui/types/AnvilStatus.d.ts +++ b/striker-ui/types/AnvilStatus.d.ts @@ -1,4 +1,8 @@ declare type AnvilStatus = { - nodes: AnvilNodeStatus[]; - timestamp: number; + anvil_state: 'optimal' | 'not_ready' | 'degraded'; + nodes: Array<{ + state: 'unknown' | 'off' | 'on' | 'accessible' | 'ready'; + state_percent: number; + state_message: string; + }>; };