Skip to content

Commit

Permalink
chore: update supabase types
Browse files Browse the repository at this point in the history
  • Loading branch information
paranoidPhantom committed Sep 25, 2024
1 parent a569f1f commit adebf49
Showing 1 changed file with 24 additions and 3 deletions.
27 changes: 24 additions & 3 deletions supabase/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ export type Database = {
Row: {
created_at: string
id: number
label: string
md: string
restricted: boolean
slug: string
Expand All @@ -22,7 +21,6 @@ export type Database = {
Insert: {
created_at?: string
id?: number
label?: string
md?: string
restricted?: boolean
slug: string
Expand All @@ -31,14 +29,37 @@ export type Database = {
Update: {
created_at?: string
id?: number
label?: string
md?: string
restricted?: boolean
slug?: string
updated_at?: string
}
Relationships: []
}
"registration-links": {
Row: {
activated_at: string | null
created_at: string
id: string
"initial-perms": string[]
metadata: Json
}
Insert: {
activated_at?: string | null
created_at?: string
id?: string
"initial-perms"?: string[]
metadata?: Json
}
Update: {
activated_at?: string | null
created_at?: string
id?: string
"initial-perms"?: string[]
metadata?: Json
}
Relationships: []
}
users: {
Row: {
created_at: string
Expand Down

0 comments on commit adebf49

Please sign in to comment.