From 9c0b28b3dc53817417c2493e0d79458b9777ce63 Mon Sep 17 00:00:00 2001 From: Bram Kragten Date: Thu, 23 Oct 2025 15:46:53 +0200 Subject: [PATCH] Descriptions will only be provided by legacy services without translations --- lib/types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/types.ts b/lib/types.ts index f1feaf00..474d302b 100644 --- a/lib/types.ts +++ b/lib/types.ts @@ -99,7 +99,7 @@ export type HassEntities = { [entity_id: string]: HassEntity }; export type HassService = { name?: string; - description: string; + description?: string; target?: {} | null; fields: { [field_name: string]: { @@ -114,7 +114,7 @@ export type HassService = { }; // Custom integrations don't use translations and still have name/description name?: string; - description: string; + description?: string; }; }; response?: { optional: boolean };