Update
This commit is contained in:
@@ -40,12 +40,23 @@ class LandingPostOut(_Out):
|
||||
slug: str = ""
|
||||
|
||||
|
||||
class TrendingTopicOut(_Out):
|
||||
topic: str = ""
|
||||
count: int = 0
|
||||
|
||||
|
||||
class LandingOut(_Out):
|
||||
is_authenticated: bool = False
|
||||
user_post_count: int = 0
|
||||
user_stars: int = 0
|
||||
user_xp: int = 0
|
||||
user_level: int = 1
|
||||
xp_progress_pct: int = 0
|
||||
unread_count: int = 0
|
||||
landing_articles: list[LandingArticleOut] = []
|
||||
landing_posts: list[LandingPostOut] = []
|
||||
top_contributors: list = []
|
||||
trending_topics: list[TrendingTopicOut] = []
|
||||
|
||||
|
||||
class DeviiPageOut(_Out):
|
||||
|
||||
@@ -50,6 +50,10 @@ class ProfileOut(_Out):
|
||||
ai_modifier_enabled: bool = False
|
||||
ai_modifier_sync: bool = False
|
||||
ai_modifier_prompt: Optional[str] = None
|
||||
interactions_enabled: bool = True
|
||||
interactions_source: Optional[str] = None
|
||||
interactions_default: bool = True
|
||||
interactions_override: Optional[bool] = None
|
||||
telegram_paired: bool = False
|
||||
notif_telegram_paired: bool = False
|
||||
can_manage_customization: bool = False
|
||||
|
||||
Reference in New Issue
Block a user