1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 21:06:19 +00:00

Add additional integration_type options for integration manifests (#79193)

* Add additional integration_type options for integration manifests

* Rename integration_type internal to system
This commit is contained in:
Erik Montnemery
2022-09-28 14:17:39 +02:00
committed by GitHub
parent 84b2c74746
commit cce23683f1
4 changed files with 11 additions and 5 deletions

View File

@@ -162,7 +162,9 @@ MANIFEST_SCHEMA = vol.Schema(
{
vol.Required("domain"): str,
vol.Required("name"): str,
vol.Optional("integration_type"): vol.In(["hardware", "helper"]),
vol.Optional("integration_type"): vol.In(
["entity", "hardware", "helper", "system"]
),
vol.Optional("config_flow"): bool,
vol.Optional("mqtt"): [str],
vol.Optional("zeroconf"): [