Skip to content

Commit 641dbc0

Browse files
send token balance profile and batch functions
1 parent 12b12f6 commit 641dbc0

File tree

9 files changed

+782
-281
lines changed

9 files changed

+782
-281
lines changed

supabase/database-generated.types.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -440,6 +440,7 @@ export type Database = {
440440
| null
441441
main_tag: Database["public"]["Tables"]["tags"]["Row"] | null
442442
tags: Database["public"]["Tables"]["tags"]["Row"] | null
443+
verified_at: string | null
443444
}
444445
Insert: {
445446
about?: string | null
@@ -1701,6 +1702,7 @@ export type Database = {
17011702
chain_id: number | null
17021703
id: string | null
17031704
is_public: boolean | null
1705+
is_verified: boolean | null
17041706
links_in_bio:
17051707
| Database["public"]["Tables"]["link_in_bio"]["Row"][]
17061708
| null
@@ -1711,6 +1713,7 @@ export type Database = {
17111713
send_id: number | null
17121714
sendid: number | null
17131715
tag: string | null
1716+
verified_at: string | null
17141717
x_username: string | null
17151718
}
17161719
Relationships: []
@@ -2112,6 +2115,10 @@ export type Database = {
21122115
vault: string
21132116
}[]
21142117
}
2118+
send_token_balance: {
2119+
Args: { p_user_id: string }
2120+
Returns: number
2121+
}
21152122
tag_search: {
21162123
Args: { limit_val: number; offset_val: number; query: string }
21172124
Returns: {
@@ -2157,6 +2164,10 @@ export type Database = {
21572164
Args: Record<PropertyKey, never>
21582165
Returns: number
21592166
}
2167+
verified_at: {
2168+
Args: { "": Database["public"]["Tables"]["profiles"]["Row"] }
2169+
Returns: string
2170+
}
21602171
}
21612172
Enums: {
21622173
key_type_enum: "ES256"
@@ -2223,13 +2234,15 @@ export type Database = {
22232234
| null
22242235
banner_url: string | null
22252236
is_verified: boolean | null
2237+
verified_at: string | null
22262238
}
22272239
tag_search_result: {
22282240
avatar_url: string | null
22292241
tag_name: string | null
22302242
send_id: number | null
22312243
phone: string | null
22322244
is_verified: boolean | null
2245+
verified_at: string | null
22332246
}
22342247
}
22352248
}

0 commit comments

Comments
 (0)