@@ -221,45 +221,6 @@ export type Database = {
221221 }
222222 Relationships : [ ]
223223 }
224- profile_comments : {
225- Row : {
226- content : Json
227- created_time : string
228- hidden : boolean
229- id : number
230- on_user_id : string
231- reply_to_comment_id : number | null
232- user_avatar_url : string
233- user_id : string
234- user_name : string
235- user_username : string
236- }
237- Insert : {
238- content : Json
239- created_time ?: string
240- hidden ?: boolean
241- id ?: never
242- on_user_id : string
243- reply_to_comment_id ?: number | null
244- user_avatar_url : string
245- user_id : string
246- user_name : string
247- user_username : string
248- }
249- Update : {
250- content ?: Json
251- created_time ?: string
252- hidden ?: boolean
253- id ?: never
254- on_user_id ?: string
255- reply_to_comment_id ?: number | null
256- user_avatar_url ?: string
257- user_id ?: string
258- user_name ?: string
259- user_username ?: string
260- }
261- Relationships : [ ]
262- }
263224 private_user_message_channel_members : {
264225 Row : {
265226 channel_id : number
@@ -401,10 +362,50 @@ export type Database = {
401362 }
402363 Relationships : [ ]
403364 }
365+ profile_comments : {
366+ Row : {
367+ content : Json
368+ created_time : string
369+ hidden : boolean
370+ id : number
371+ on_user_id : string
372+ reply_to_comment_id : number | null
373+ user_avatar_url : string
374+ user_id : string
375+ user_name : string
376+ user_username : string
377+ }
378+ Insert : {
379+ content : Json
380+ created_time ?: string
381+ hidden ?: boolean
382+ id ?: number
383+ on_user_id : string
384+ reply_to_comment_id ?: number | null
385+ user_avatar_url : string
386+ user_id : string
387+ user_name : string
388+ user_username : string
389+ }
390+ Update : {
391+ content ?: Json
392+ created_time ?: string
393+ hidden ?: boolean
394+ id ?: number
395+ on_user_id ?: string
396+ reply_to_comment_id ?: number | null
397+ user_avatar_url ?: string
398+ user_id ?: string
399+ user_name ?: string
400+ user_username ?: string
401+ }
402+ Relationships : [ ]
403+ }
404404 profiles : {
405405 Row : {
406406 age : number | null
407407 bio : Json | null
408+ bio_length : number | null
408409 born_in_location : string | null
409410 city : string
410411 city_latitude : number | null
@@ -443,13 +444,14 @@ export type Database = {
443444 twitter : string | null
444445 university : string | null
445446 user_id : string
446- visibility : Database [ 'public' ] [ 'Enums' ] [ 'profile_visibility ' ]
447+ visibility : Database [ 'public' ] [ 'Enums' ] [ 'lover_visibility ' ]
447448 wants_kids_strength : number
448449 website : string | null
449450 }
450451 Insert : {
451452 age ?: number | null
452453 bio ?: Json | null
454+ bio_length ?: number | null
453455 born_in_location ?: string | null
454456 city : string
455457 city_latitude ?: number | null
@@ -488,13 +490,14 @@ export type Database = {
488490 twitter ?: string | null
489491 university ?: string | null
490492 user_id : string
491- visibility ?: Database [ 'public' ] [ 'Enums' ] [ 'profile_visibility ' ]
493+ visibility ?: Database [ 'public' ] [ 'Enums' ] [ 'lover_visibility ' ]
492494 wants_kids_strength ?: number
493495 website ?: string | null
494496 }
495497 Update : {
496498 age ?: number | null
497499 bio ?: Json | null
500+ bio_length ?: number | null
498501 born_in_location ?: string | null
499502 city ?: string
500503 city_latitude ?: number | null
@@ -533,7 +536,7 @@ export type Database = {
533536 twitter ?: string | null
534537 university ?: string | null
535538 user_id ?: string
536- visibility ?: Database [ 'public' ] [ 'Enums' ] [ 'profile_visibility ' ]
539+ visibility ?: Database [ 'public' ] [ 'Enums' ] [ 'lover_visibility ' ]
537540 wants_kids_strength ?: number
538541 website ?: string | null
539542 }
@@ -693,6 +696,10 @@ export type Database = {
693696 Args : Record < PropertyKey , never >
694697 Returns : Record < string , unknown > [ ]
695698 }
699+ get_love_question_answers_and_lovers : {
700+ Args : { p_question_id : number }
701+ Returns : Record < string , unknown > [ ]
702+ }
696703 get_love_question_answers_and_profiles : {
697704 Args : { p_question_id : number }
698705 Returns : Record < string , unknown > [ ]
@@ -755,7 +762,7 @@ export type Database = {
755762 }
756763 }
757764 Enums : {
758- profile_visibility : 'public' | 'member'
765+ lover_visibility : 'public' | 'member'
759766 }
760767 CompositeTypes : {
761768 [ _ in never ] : never
@@ -883,7 +890,7 @@ export type CompositeTypes<
883890export const Constants = {
884891 public : {
885892 Enums : {
886- profile_visibility : [ 'public' , 'member' ] ,
893+ lover_visibility : [ 'public' , 'member' ] ,
887894 } ,
888895 } ,
889896} as const
0 commit comments