mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-23 15:31:13 -05:00
feat: Implement moderation queue integration
This commit is contained in:
@@ -130,6 +130,8 @@ export type Database = {
|
||||
approval_mode: string | null
|
||||
content: Json
|
||||
created_at: string
|
||||
escalated: boolean | null
|
||||
escalated_at: string | null
|
||||
escalated_by: string | null
|
||||
escalation_reason: string | null
|
||||
id: string
|
||||
@@ -146,6 +148,8 @@ export type Database = {
|
||||
approval_mode?: string | null
|
||||
content: Json
|
||||
created_at?: string
|
||||
escalated?: boolean | null
|
||||
escalated_at?: string | null
|
||||
escalated_by?: string | null
|
||||
escalation_reason?: string | null
|
||||
id?: string
|
||||
@@ -162,6 +166,8 @@ export type Database = {
|
||||
approval_mode?: string | null
|
||||
content?: Json
|
||||
created_at?: string
|
||||
escalated?: boolean | null
|
||||
escalated_at?: string | null
|
||||
escalated_by?: string | null
|
||||
escalation_reason?: string | null
|
||||
id?: string
|
||||
@@ -184,6 +190,36 @@ export type Database = {
|
||||
},
|
||||
]
|
||||
}
|
||||
email_aliases: {
|
||||
Row: {
|
||||
created_at: string
|
||||
description: string | null
|
||||
email: string
|
||||
id: string
|
||||
key: string
|
||||
owner_id: string | null
|
||||
updated_at: string
|
||||
}
|
||||
Insert: {
|
||||
created_at?: string
|
||||
description?: string | null
|
||||
email: string
|
||||
id?: string
|
||||
key: string
|
||||
owner_id?: string | null
|
||||
updated_at?: string
|
||||
}
|
||||
Update: {
|
||||
created_at?: string
|
||||
description?: string | null
|
||||
email?: string
|
||||
id?: string
|
||||
key?: string
|
||||
owner_id?: string | null
|
||||
updated_at?: string
|
||||
}
|
||||
Relationships: []
|
||||
}
|
||||
locations: {
|
||||
Row: {
|
||||
city: string | null
|
||||
|
||||
Reference in New Issue
Block a user