""" Application constants """ APP_NAME: str = "send_push_notifications" ENV_PROD: str = 'prod' ENV_DEV: str = 'dev' REDIS_KEY_TTL: int = 10800 # 3 hours SPOTIFY_TRACK_PREFIX: str = 'spotify:track:' DEFAULT_CHANNEL_ID = 'all' # used for android DEVICE_NOT_REGISTERED_ERROR = 'DeviceNotRegistered' MESSAGES_CHUNK_SIZE = 50 # should be less or equal than 100 (Expo restriction) MULTIPLE_ORGANIZATIONS_ERROR_CODE = "PUSH_TOO_MANY_EXPERIENCE_IDS"