From 79cd66f17bb3c337003969c7cd1ee73f4b1b399c Mon Sep 17 00:00:00 2001 From: Tsu-ba-me Date: Fri, 29 Sep 2023 15:20:50 -0400 Subject: [PATCH] fix(striker-ui): correct host status definition --- striker-ui/types/APIAnvil.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/striker-ui/types/APIAnvil.d.ts b/striker-ui/types/APIAnvil.d.ts index 216b035d..455fad56 100644 --- a/striker-ui/types/APIAnvil.d.ts +++ b/striker-ui/types/APIAnvil.d.ts @@ -65,12 +65,12 @@ type AnvilSharedStorage = { }; type AnvilStatusHost = { - state: 'offline' | 'booted' | 'crmd' | 'in_ccm' | 'online'; - host_uuid: string; host_name: string; - state_percent: number; + host_uuid: string; + maintenance_mode: boolean; + state: 'offline' | 'booted' | 'crmd' | 'in_ccm' | 'online'; state_message: string; - removable: boolean; + state_percent: number; }; type AnvilStatus = {