feat: Implement ticket system and reply button

This commit is contained in:
gpt-engineer-app[bot]
2025-10-28 18:33:32 +00:00
parent 4d21dc4435
commit ab21dc9c82
5 changed files with 172 additions and 20 deletions

View File

@@ -539,6 +539,7 @@ export type Database = {
status: string
subject: string
thread_id: string | null
ticket_number: string | null
updated_at: string
user_agent: string | null
user_id: string | null
@@ -560,6 +561,7 @@ export type Database = {
status?: string
subject: string
thread_id?: string | null
ticket_number?: string | null
updated_at?: string
user_agent?: string | null
user_id?: string | null
@@ -581,6 +583,7 @@ export type Database = {
status?: string
subject?: string
thread_id?: string | null
ticket_number?: string | null
updated_at?: string
user_agent?: string | null
user_id?: string | null
@@ -3954,6 +3957,7 @@ export type Database = {
}
extract_cf_image_id: { Args: { url: string }; Returns: string }
generate_deletion_confirmation_code: { Args: never; Returns: string }
generate_ticket_number: { Args: never; Returns: string }
get_email_change_status: { Args: never; Returns: Json }
get_filtered_profile: {
Args: { _profile_user_id: string; _viewer_id?: string }