mirror of
https://github.com/home-assistant/core.git
synced 2025-12-24 21:06:19 +00:00
Add entity category 'system' (#58595)
* Add entity category 'hidden' * Update cloud * Update Google assistant * Update Alexa * Fix tests * Add ENTITY_CATEGORIES constant * Rename ENTITY_CATEGORY_HIDDEN to ENTITY_CATEGORY_SYSTEM * Correct import in motioneye
This commit is contained in:
@@ -714,3 +714,13 @@ CAST_APP_ID_HOMEASSISTANT: Final = "B12CE3CA"
|
||||
|
||||
ENTITY_CATEGORY_CONFIG: Final = "config"
|
||||
ENTITY_CATEGORY_DIAGNOSTIC: Final = "diagnostic"
|
||||
ENTITY_CATEGORY_SYSTEM: Final = "system"
|
||||
|
||||
# Entity categories which will:
|
||||
# - Not be exposed to cloud, alexa, or google_home components
|
||||
# - Not be included in indirect service calls to devices or areas
|
||||
ENTITY_CATEGORIES: Final[list[str]] = [
|
||||
ENTITY_CATEGORY_CONFIG,
|
||||
ENTITY_CATEGORY_DIAGNOSTIC,
|
||||
ENTITY_CATEGORY_SYSTEM,
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user