feat: Implement ticket merging

This commit is contained in:
gpt-engineer-app[bot]
2025-10-28 22:48:03 +00:00
parent 41a3dcd02f
commit 1da0bc04d6
5 changed files with 501 additions and 15 deletions

View File

@@ -540,6 +540,7 @@ export type Database = {
id: string
ip_address_hash: string | null
last_admin_response_at: string | null
merged_ticket_numbers: string[] | null
message: string
name: string
resolved_at: string | null
@@ -567,6 +568,7 @@ export type Database = {
id?: string
ip_address_hash?: string | null
last_admin_response_at?: string | null
merged_ticket_numbers?: string[] | null
message: string
name: string
resolved_at?: string | null
@@ -594,6 +596,7 @@ export type Database = {
id?: string
ip_address_hash?: string | null
last_admin_response_at?: string | null
merged_ticket_numbers?: string[] | null
message?: string
name?: string
resolved_at?: string | null