feat: add homeassistant integration (#578)

This commit is contained in:
Manuel
2024-06-10 21:16:39 +02:00
committed by GitHub
parent 19498854fc
commit 2e782ae442
28 changed files with 468 additions and 31 deletions

View File

@@ -137,4 +137,5 @@ export type IntegrationCategory =
| "mediaSearch"
| "mediaRequest"
| "downloadClient"
| "useNetClient";
| "useNetClient"
| "smartHomeServer";

View File

@@ -1,2 +1,12 @@
export const widgetKinds = ["clock", "weather", "app", "iframe", "video", "notebook", "dnsHoleSummary"] as const;
export const widgetKinds = [
"clock",
"weather",
"app",
"iframe",
"video",
"notebook",
"dnsHoleSummary",
"smartHome-entityState",
"smartHome-executeAutomation",
] as const;
export type WidgetKind = (typeof widgetKinds)[number];