mirror of
https://github.com/home-assistant/core.git
synced 2026-08-23 06:40:29 +01:00
* new official genie garage integration * move api constants into api module * move scan interval constant to cover.py
15 lines
462 B
Python
15 lines
462 B
Python
"""Constants for the Aladdin Connect Genie integration."""
|
|
|
|
from typing import Final
|
|
|
|
from homeassistant.components.cover import CoverEntityFeature
|
|
|
|
DOMAIN = "aladdin_connect"
|
|
CONFIG_FLOW_VERSION = 2
|
|
CONFIG_FLOW_MINOR_VERSION = 1
|
|
|
|
OAUTH2_AUTHORIZE = "https://app.aladdinconnect.com/login.html"
|
|
OAUTH2_TOKEN = "https://twdvzuefzh.execute-api.us-east-2.amazonaws.com/v1/oauth2/token"
|
|
|
|
SUPPORTED_FEATURES: Final = CoverEntityFeature.OPEN | CoverEntityFeature.CLOSE
|