From a4a0c0329babc446fefa5abb36840094ee353517 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sat, 27 Sep 2025 22:29:56 +0000 Subject: [PATCH] Insert banner_url into Insert and Update types for user_profiles cgen-78bc74aae5aa4e009fad1a15f380590c --- client/lib/database.types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/lib/database.types.ts b/client/lib/database.types.ts index 6d0459ef..5fc11805 100644 --- a/client/lib/database.types.ts +++ b/client/lib/database.types.ts @@ -311,6 +311,7 @@ export type Database = { }; Insert: { avatar_url?: string | null; + banner_url?: string | null; bio?: string | null; created_at?: string; experience_level?: @@ -331,6 +332,7 @@ export type Database = { }; Update: { avatar_url?: string | null; + banner_url?: string | null; bio?: string | null; created_at?: string; experience_level?: