Add streak fields to AethexUserProfile interface

cgen-09d127f3b4cc45a18dc3802776bfe485
This commit is contained in:
Builder.io 2025-10-04 10:37:24 +00:00
parent 9120b76477
commit 6041c0afd8

View file

@ -13,6 +13,9 @@ export interface AethexUserProfile extends UserProfile {
onboarded?: boolean;
role?: string;
loyalty_points?: number;
current_streak?: number | null;
longest_streak?: number | null;
last_streak_at?: string | null;
social_links?: any;
skills?: string[];
}