From 288e69160567652c622783920e3e9346bd1f5e7b Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Tue, 14 Oct 2025 04:40:51 +0000 Subject: [PATCH] Add applications table definitions to Supabase types cgen-78e5e8d7fc2f4c458bca9e643034c697 --- client/lib/database.types.ts | 54 ++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/client/lib/database.types.ts b/client/lib/database.types.ts index 51833cf7..afb2bb50 100644 --- a/client/lib/database.types.ts +++ b/client/lib/database.types.ts @@ -39,6 +39,60 @@ export type Database = { }; Relationships: []; }; + applications: { + Row: { + id: string; + type: "contributor" | "career"; + full_name: string; + email: string; + location: string | null; + role_interest: string | null; + primary_skill: string | null; + experience_level: string | null; + availability: string | null; + portfolio_url: string | null; + resume_url: string | null; + interests: string[] | null; + message: string | null; + status: string; + submitted_at: string; + }; + Insert: { + id?: string; + type: "contributor" | "career"; + full_name: string; + email: string; + location?: string | null; + role_interest?: string | null; + primary_skill?: string | null; + experience_level?: string | null; + availability?: string | null; + portfolio_url?: string | null; + resume_url?: string | null; + interests?: string[] | null; + message?: string | null; + status?: string; + submitted_at?: string; + }; + Update: { + id?: string; + type?: "contributor" | "career"; + full_name?: string; + email?: string; + location?: string | null; + role_interest?: string | null; + primary_skill?: string | null; + experience_level?: string | null; + availability?: string | null; + portfolio_url?: string | null; + resume_url?: string | null; + interests?: string[] | null; + message?: string | null; + status?: string; + submitted_at?: string; + }; + Relationships: []; + }; comments: { Row: { author_id: string;