From 71c14c7f5b9a0f27dee2c474ace2ab40e13b5ad7 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Mon, 19 Sep 2022 13:11:43 +0200 Subject: [PATCH] Clean up YAML configuration for Uptime (#2280) --- .../src/schemas/configuration.ts | 6 ----- .../src/schemas/integrations/core/index.d.ts | 1 - .../src/schemas/integrations/core/updater.ts | 24 ------------------- 3 files changed, 31 deletions(-) delete mode 100644 src/language-service/src/schemas/integrations/core/updater.ts diff --git a/src/language-service/src/schemas/configuration.ts b/src/language-service/src/schemas/configuration.ts index b5129b9fae..b7ee74c64f 100644 --- a/src/language-service/src/schemas/configuration.ts +++ b/src/language-service/src/schemas/configuration.ts @@ -209,12 +209,6 @@ export interface InternalIntegrations { */ template?: integrations.Core.Template.Schema | IncludeList; - /** - * The updater binary sensor will check daily for new releases. - * https://www.home-assistant.io/integrations/updater - */ - updater?: integrations.Core.Updater.Schema | null; - /** * The vacuum integration enables the ability to control home cleaning robots within Home Assistant. * https://www.home-assistant.io/integrations/vacuum diff --git a/src/language-service/src/schemas/integrations/core/index.d.ts b/src/language-service/src/schemas/integrations/core/index.d.ts index 359a2985cb..363152860d 100644 --- a/src/language-service/src/schemas/integrations/core/index.d.ts +++ b/src/language-service/src/schemas/integrations/core/index.d.ts @@ -34,6 +34,5 @@ export * as Sensor from "./sensor"; export * as Spotify from "./spotify"; export * as Switch from "./switch"; export * as Template from "./template"; -export * as Updater from "./updater"; export * as Vacuum from "./vacuum"; export * as Weather from "./weather"; diff --git a/src/language-service/src/schemas/integrations/core/updater.ts b/src/language-service/src/schemas/integrations/core/updater.ts deleted file mode 100644 index bafb602782..0000000000 --- a/src/language-service/src/schemas/integrations/core/updater.ts +++ /dev/null @@ -1,24 +0,0 @@ -/** - * Updater integration - * Source: https://github.com/home-assistant/core/blob/dev/homeassistant/components/updater/__init__.py - */ -import { Deprecated } from "../../types"; - -export type Domain = "updater"; -export interface Schema { - /** - * DEPRECATED as of Home Assistant Core 2021.4.0 - * - * Replaced by the Analytic integration - * https://www.home-assistant.io/integrations/analytics - */ - include_used_components?: Deprecated; - - /** - * DEPRECATED as of Home Assistant Core 2021.4.0 - * - * Replaced by the Analytic integration - * https://www.home-assistant.io/integrations/analytics - */ - reporting?: Deprecated; -}