/
/
/
1"""Constants for the KION Music provider."""
2
3from __future__ import annotations
4
5from typing import Final
6
7# Configuration Keys
8CONF_TOKEN = "token"
9CONF_QUALITY = "quality"
10
11# Actions
12CONF_ACTION_AUTH = "auth"
13CONF_ACTION_CLEAR_AUTH = "clear_auth"
14
15# Labels
16LABEL_TOKEN = "token_label"
17LABEL_AUTH_INSTRUCTIONS = "auth_instructions_label"
18
19# API defaults
20DEFAULT_LIMIT: Final[int] = 50
21
22# Quality options
23QUALITY_HIGH = "high"
24QUALITY_LOSSLESS = "lossless"
25
26# Image sizes
27IMAGE_SIZE_SMALL = "200x200"
28IMAGE_SIZE_MEDIUM = "400x400"
29IMAGE_SIZE_LARGE = "1000x1000"
30
31# ID separators
32PLAYLIST_ID_SPLITTER: Final[str] = ":"
33