From 6041c0afd88f9e88a636b0b86a47a7f5731c5cf3 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sat, 4 Oct 2025 10:37:24 +0000 Subject: [PATCH] Add streak fields to AethexUserProfile interface cgen-09d127f3b4cc45a18dc3802776bfe485 --- client/lib/aethex-database-adapter.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client/lib/aethex-database-adapter.ts b/client/lib/aethex-database-adapter.ts index b3e53413..e22d0fb7 100644 --- a/client/lib/aethex-database-adapter.ts +++ b/client/lib/aethex-database-adapter.ts @@ -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[]; }