Refactor park submission location handling

This commit is contained in:
gpt-engineer-app[bot]
2025-11-05 20:46:02 +00:00
parent f9c11cb064
commit dfd17e8244
4 changed files with 66 additions and 1 deletions

View File

@@ -2026,6 +2026,7 @@ export type Database = {
slug: string
status: string
submission_id: string
temp_location_data: Json | null
updated_at: string
website_url: string | null
}
@@ -2051,6 +2052,7 @@ export type Database = {
slug: string
status?: string
submission_id: string
temp_location_data?: Json | null
updated_at?: string
website_url?: string | null
}
@@ -2076,6 +2078,7 @@ export type Database = {
slug?: string
status?: string
submission_id?: string
temp_location_data?: Json | null
updated_at?: string
website_url?: string | null
}