mirror of https://github.com/home-assistant/core
19 lines
475 B
Python
19 lines
475 B
Python
"""Define constants for the Point component."""
|
|
|
|
from datetime import timedelta
|
|
|
|
DOMAIN = "point"
|
|
|
|
SCAN_INTERVAL = timedelta(minutes=1)
|
|
|
|
CONF_WEBHOOK_URL = "webhook_url"
|
|
CONF_REFRESH_TOKEN = "refresh_token"
|
|
EVENT_RECEIVED = "point_webhook_received"
|
|
SIGNAL_UPDATE_ENTITY = "point_update"
|
|
SIGNAL_WEBHOOK = "point_webhook"
|
|
|
|
POINT_DISCOVERY_NEW = "point_new_{}"
|
|
|
|
OAUTH2_AUTHORIZE = "https://api.minut.com/v8/oauth/authorize"
|
|
OAUTH2_TOKEN = "https://api.minut.com/v8/oauth/token"
|