1
0
mirror of https://github.com/home-assistant/frontend.git synced 2026-04-24 10:51:01 +01:00

Remove supervisor build (#29132)

This commit is contained in:
Bram Kragten
2026-01-22 13:30:33 +01:00
committed by GitHub
parent 55c74d7959
commit 4e4882b9fa
101 changed files with 80 additions and 12471 deletions

View File

@@ -8,7 +8,7 @@ import type { HassioResponse } from "./common";
import { extractApiErrorMessage, hassioApiResultExtractor } from "./common";
export type AddonCapability = Exclude<
keyof TranslationDict["supervisor"]["app"]["dashboard"]["capability"],
keyof TranslationDict["ui"]["panel"]["config"]["apps"]["dashboard"]["capability"],
"label" | "role" | "stages"
>;
export type AddonStage = "stable" | "experimental" | "deprecated";

View File

@@ -4,8 +4,8 @@ import type { HassioResponse } from "./common";
import { hassioApiResultExtractor } from "./common";
export interface HassioResolution {
unsupported: (keyof TranslationDict["supervisor"]["system"]["supervisor"]["unsupported_reason"])[];
unhealthy: (keyof TranslationDict["supervisor"]["system"]["supervisor"]["unhealthy_reason"])[];
unsupported: (keyof TranslationDict["ui"]["dialogs"]["unsupported"]["reasons"])[];
unhealthy: (keyof TranslationDict["ui"]["dialogs"]["unhealthy"]["reasons"])[];
issues: string[];
suggestions: string[];
}