mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-12-20 18:38:59 +00:00
27 lines
463 B
Python
27 lines
463 B
Python
"""Constants for homeassistant."""
|
|
from enum import Enum
|
|
|
|
from ..const import CoreState
|
|
|
|
MIN_VERSION = {"supervisor/event": "2021.2.4"}
|
|
|
|
CLOSING_STATES = [
|
|
CoreState.SHUTDOWN,
|
|
CoreState.STOPPING,
|
|
CoreState.CLOSE,
|
|
]
|
|
|
|
|
|
class WSType(str, Enum):
|
|
"""Websocket types."""
|
|
|
|
AUTH = "auth"
|
|
SUPERVISOR_EVENT = "supervisor/event"
|
|
|
|
|
|
class WSEvent(str, Enum):
|
|
"""Websocket events."""
|
|
|
|
ADDON = "addon"
|
|
SUPERVISOR_UPDATE = "supervisor_update"
|