@@ -10,7 +10,7 @@ export type Database = {
1010 // Allows to automatically instantiate createClient with right options
1111 // instead of createClient<Database, { PostgrestVersion: 'XX' }>(URL, KEY)
1212 __InternalSupabase : {
13- PostgrestVersion : '13.0.5 '
13+ PostgrestVersion : '13.0.4 '
1414 }
1515 public : {
1616 Tables : {
@@ -471,7 +471,7 @@ export type Database = {
471471 geodb_city_id ?: string | null
472472 has_kids ?: number | null
473473 height_in_inches ?: number | null
474- id ?: never
474+ id ?: number
475475 is_smoker ?: boolean | null
476476 is_vegetarian_or_vegan ?: boolean | null
477477 last_modification_time ?: string
@@ -519,7 +519,7 @@ export type Database = {
519519 geodb_city_id ?: string | null
520520 has_kids ?: number | null
521521 height_in_inches ?: number | null
522- id ?: never
522+ id ?: number
523523 is_smoker ?: boolean | null
524524 is_vegetarian_or_vegan ?: boolean | null
525525 last_modification_time ?: string
@@ -748,20 +748,23 @@ export type Database = {
748748 creator_id : string
749749 description : Json | null
750750 id : number
751+ is_anonymous : boolean | null
751752 title : string
752753 }
753754 Insert : {
754755 created_time ?: string
755756 creator_id : string
756757 description ?: Json | null
757758 id ?: never
759+ is_anonymous ?: boolean | null
758760 title : string
759761 }
760762 Update : {
761763 created_time ?: string
762764 creator_id ?: string
763765 description ?: Json | null
764766 id ?: never
767+ is_anonymous ?: boolean | null
765768 title ?: string
766769 }
767770 Relationships : [
@@ -814,6 +817,7 @@ export type Database = {
814817 creator_id : string
815818 description : Json
816819 id : number
820+ is_anonymous : boolean
817821 priority : number
818822 title : string
819823 votes_abstain : number
@@ -874,7 +878,7 @@ export type Database = {
874878 Returns : Json
875879 }
876880 ts_to_millis : {
877- Args : { ts : string }
881+ Args : { ts : string } | { ts : string }
878882 Returns : number
879883 }
880884 }
0 commit comments