2022-01-02 19:15:39 +00:00
|
|
|
"""Constants for the Oncue integration."""
|
|
|
|
|
|
|
|
import asyncio
|
|
|
|
|
|
|
|
import aiohttp
|
2023-06-24 20:12:02 +00:00
|
|
|
from aiooncue import ServiceFailedException
|
2022-01-02 19:15:39 +00:00
|
|
|
|
|
|
|
DOMAIN = "oncue"
|
|
|
|
|
2023-06-24 20:12:02 +00:00
|
|
|
CONNECTION_EXCEPTIONS = (
|
|
|
|
asyncio.TimeoutError,
|
|
|
|
aiohttp.ClientError,
|
|
|
|
ServiceFailedException,
|
|
|
|
)
|
2022-10-23 23:01:43 +00:00
|
|
|
|
|
|
|
CONNECTION_ESTABLISHED_KEY: str = "NetworkConnectionEstablished"
|
|
|
|
|
|
|
|
VALUE_UNAVAILABLE: str = "--"
|