This commit is contained in:
2026-07-19 18:57:43 +02:00
parent 48bb6c2ec2
commit c53e2a3319
179 changed files with 9307 additions and 897 deletions
+11
View File
@@ -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):
+4
View File
@@ -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