export type Json = | string | number | boolean | null | { [key: string]: Json | undefined } | Json[] export interface Database { public: { Tables: { controller_sessions: { Row: { id: number cid: string name: string callsign: string facility_type: string frequency: string airport: string last_seen: string logon_time: string created_at: string } Insert: { id?: number cid: string name: string callsign: string facility_type: string frequency: string airport: string last_seen: string logon_time: string created_at?: string } Update: { id?: number cid?: string name?: string callsign?: string facility_type?: string frequency?: string airport?: string last_seen?: string logon_time?: string created_at?: string } } } Views: { [_ in never]: never } Functions: { [_ in never]: never } Enums: { [_ in never]: never } } }