2019-10-18 18:46:45 +00:00
|
|
|
"""Const for conversation integration."""
|
|
|
|
|
|
|
|
DOMAIN = "conversation"
|
2023-02-17 21:19:22 +00:00
|
|
|
|
|
|
|
DEFAULT_EXPOSED_DOMAINS = {
|
2023-02-24 00:40:10 +00:00
|
|
|
"binary_sensor",
|
2023-02-17 21:19:22 +00:00
|
|
|
"climate",
|
|
|
|
"cover",
|
|
|
|
"fan",
|
|
|
|
"humidifier",
|
|
|
|
"light",
|
|
|
|
"lock",
|
|
|
|
"scene",
|
|
|
|
"script",
|
|
|
|
"sensor",
|
|
|
|
"switch",
|
|
|
|
"vacuum",
|
|
|
|
"water_heater",
|
|
|
|
}
|
2023-02-24 00:40:10 +00:00
|
|
|
|
|
|
|
DEFAULT_EXPOSED_ATTRIBUTES = {"device_class"}
|