Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions supabase/database-generated.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,7 @@ export type Database = {
| null
main_tag: Database["public"]["Tables"]["tags"]["Row"] | null
tags: Database["public"]["Tables"]["tags"]["Row"] | null
verified_at: string | null
}
Insert: {
about?: string | null
Expand Down Expand Up @@ -1701,6 +1702,7 @@ export type Database = {
chain_id: number | null
id: string | null
is_public: boolean | null
is_verified: boolean | null
links_in_bio:
| Database["public"]["Tables"]["link_in_bio"]["Row"][]
| null
Expand All @@ -1711,6 +1713,7 @@ export type Database = {
send_id: number | null
sendid: number | null
tag: string | null
verified_at: string | null
x_username: string | null
}
Relationships: []
Expand Down Expand Up @@ -2112,6 +2115,10 @@ export type Database = {
vault: string
}[]
}
send_token_balance: {
Args: { p_user_id: string }
Returns: number
}
tag_search: {
Args: { limit_val: number; offset_val: number; query: string }
Returns: {
Expand Down Expand Up @@ -2157,6 +2164,10 @@ export type Database = {
Args: Record<PropertyKey, never>
Returns: number
}
verified_at: {
Args: { "": Database["public"]["Tables"]["profiles"]["Row"] }
Returns: string
}
}
Enums: {
key_type_enum: "ES256"
Expand Down Expand Up @@ -2223,13 +2234,15 @@ export type Database = {
| null
banner_url: string | null
is_verified: boolean | null
verified_at: string | null
}
tag_search_result: {
avatar_url: string | null
tag_name: string | null
send_id: number | null
phone: string | null
is_verified: boolean | null
verified_at: string | null
}
}
}
Expand Down
Loading
Loading