feat: Add track material column and filtering

This commit is contained in:
gpt-engineer-app[bot]
2025-10-16 19:54:22 +00:00
parent 294019f7bd
commit f176c28df6
8 changed files with 185 additions and 1 deletions

View File

@@ -2487,6 +2487,7 @@ export type Database = {
slug: string
status: string
submission_id: string
track_material: string | null
updated_at: string
}
Insert: {
@@ -2525,6 +2526,7 @@ export type Database = {
slug: string
status?: string
submission_id: string
track_material?: string | null
updated_at?: string
}
Update: {
@@ -2563,6 +2565,7 @@ export type Database = {
slug?: string
status?: string
submission_id?: string
track_material?: string | null
updated_at?: string
}
Relationships: [
@@ -2656,6 +2659,7 @@ export type Database = {
slug: string
status: string
submission_id: string | null
track_material: string | null
version_id: string
version_number: number
}
@@ -2695,6 +2699,7 @@ export type Database = {
slug: string
status: string
submission_id?: string | null
track_material?: string | null
version_id?: string
version_number: number
}
@@ -2734,6 +2739,7 @@ export type Database = {
slug?: string
status?: string
submission_id?: string | null
track_material?: string | null
version_id?: string
version_number?: number
}
@@ -2827,6 +2833,7 @@ export type Database = {
seating_type: string | null
slug: string
status: string
track_material: string | null
updated_at: string
view_count_30d: number | null
view_count_7d: number | null
@@ -2869,6 +2876,7 @@ export type Database = {
seating_type?: string | null
slug: string
status?: string
track_material?: string | null
updated_at?: string
view_count_30d?: number | null
view_count_7d?: number | null
@@ -2911,6 +2919,7 @@ export type Database = {
seating_type?: string | null
slug?: string
status?: string
track_material?: string | null
updated_at?: string
view_count_30d?: number | null
view_count_7d?: number | null