feat: Add user profile data to contact submissions

This commit is contained in:
gpt-engineer-app[bot]
2025-10-28 19:14:51 +00:00
parent 8300243bb2
commit 2ebb2eafec
4 changed files with 130 additions and 1 deletions

View File

@@ -538,6 +538,9 @@ export type Database = {
response_count: number | null
status: string
subject: string
submitter_profile_data: Json | null
submitter_reputation: number | null
submitter_username: string | null
thread_id: string | null
ticket_number: string | null
updated_at: string
@@ -560,6 +563,9 @@ export type Database = {
response_count?: number | null
status?: string
subject: string
submitter_profile_data?: Json | null
submitter_reputation?: number | null
submitter_username?: string | null
thread_id?: string | null
ticket_number?: string | null
updated_at?: string
@@ -582,6 +588,9 @@ export type Database = {
response_count?: number | null
status?: string
subject?: string
submitter_profile_data?: Json | null
submitter_reputation?: number | null
submitter_username?: string | null
thread_id?: string | null
ticket_number?: string | null
updated_at?: string